2 * linux/fs/hfsplus/extents.c
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
8 * Handling of Extents both in catalog and extents overflow trees
11 #include <linux/errno.h>
13 #include <linux/pagemap.h>
15 #include "hfsplus_fs.h"
16 #include "hfsplus_raw.h"
18 /* Compare two extents keys, returns 0 on same, pos/neg for difference */
19 int hfsplus_ext_cmp_key(const hfsplus_btree_key
*k1
,
20 const hfsplus_btree_key
*k2
)
28 return be32_to_cpu(k1id
) < be32_to_cpu(k2id
) ? -1 : 1;
30 if (k1
->ext
.fork_type
!= k2
->ext
.fork_type
)
31 return k1
->ext
.fork_type
< k2
->ext
.fork_type
? -1 : 1;
33 k1s
= k1
->ext
.start_block
;
34 k2s
= k2
->ext
.start_block
;
37 return be32_to_cpu(k1s
) < be32_to_cpu(k2s
) ? -1 : 1;
40 static void hfsplus_ext_build_key(hfsplus_btree_key
*key
, u32 cnid
,
43 key
->key_len
= cpu_to_be16(HFSPLUS_EXT_KEYLEN
- 2);
44 key
->ext
.cnid
= cpu_to_be32(cnid
);
45 key
->ext
.start_block
= cpu_to_be32(block
);
46 key
->ext
.fork_type
= type
;
50 static u32
hfsplus_ext_find_block(struct hfsplus_extent
*ext
, u32 off
)
55 for (i
= 0; i
< 8; ext
++, i
++) {
56 count
= be32_to_cpu(ext
->block_count
);
58 return be32_to_cpu(ext
->start_block
) + off
;
65 static int hfsplus_ext_block_count(struct hfsplus_extent
*ext
)
70 for (i
= 0; i
< 8; ext
++, i
++)
71 count
+= be32_to_cpu(ext
->block_count
);
75 static u32
hfsplus_ext_lastblock(struct hfsplus_extent
*ext
)
80 for (i
= 0; i
< 7; ext
--, i
++)
83 return be32_to_cpu(ext
->start_block
) + be32_to_cpu(ext
->block_count
);
86 static int __hfsplus_ext_write_extent(struct inode
*inode
,
87 struct hfs_find_data
*fd
)
89 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
92 WARN_ON(!mutex_is_locked(&hip
->extents_lock
));
94 hfsplus_ext_build_key(fd
->search_key
, inode
->i_ino
, hip
->cached_start
,
95 HFSPLUS_IS_RSRC(inode
) ?
96 HFSPLUS_TYPE_RSRC
: HFSPLUS_TYPE_DATA
);
98 res
= hfs_brec_find(fd
, hfs_find_rec_by_key
);
99 if (hip
->extent_state
& HFSPLUS_EXT_NEW
) {
102 hfs_brec_insert(fd
, hip
->cached_extents
,
103 sizeof(hfsplus_extent_rec
));
104 hip
->extent_state
&= ~(HFSPLUS_EXT_DIRTY
| HFSPLUS_EXT_NEW
);
108 hfs_bnode_write(fd
->bnode
, hip
->cached_extents
,
109 fd
->entryoffset
, fd
->entrylength
);
110 hip
->extent_state
&= ~HFSPLUS_EXT_DIRTY
;
114 * We can't just use hfsplus_mark_inode_dirty here, because we
115 * also get called from hfsplus_write_inode, which should not
116 * redirty the inode. Instead the callers have to be careful
117 * to explicily mark the inode dirty, too.
119 set_bit(HFSPLUS_I_EXT_DIRTY
, &hip
->flags
);
124 static int hfsplus_ext_write_extent_locked(struct inode
*inode
)
128 if (HFSPLUS_I(inode
)->extent_state
& HFSPLUS_EXT_DIRTY
) {
129 struct hfs_find_data fd
;
131 res
= hfs_find_init(HFSPLUS_SB(inode
->i_sb
)->ext_tree
, &fd
);
134 res
= __hfsplus_ext_write_extent(inode
, &fd
);
140 int hfsplus_ext_write_extent(struct inode
*inode
)
144 mutex_lock(&HFSPLUS_I(inode
)->extents_lock
);
145 res
= hfsplus_ext_write_extent_locked(inode
);
146 mutex_unlock(&HFSPLUS_I(inode
)->extents_lock
);
151 static inline int __hfsplus_ext_read_extent(struct hfs_find_data
*fd
,
152 struct hfsplus_extent
*extent
,
153 u32 cnid
, u32 block
, u8 type
)
157 hfsplus_ext_build_key(fd
->search_key
, cnid
, block
, type
);
158 fd
->key
->ext
.cnid
= 0;
159 res
= hfs_brec_find(fd
, hfs_find_rec_by_key
);
160 if (res
&& res
!= -ENOENT
)
162 if (fd
->key
->ext
.cnid
!= fd
->search_key
->ext
.cnid
||
163 fd
->key
->ext
.fork_type
!= fd
->search_key
->ext
.fork_type
)
165 if (fd
->entrylength
!= sizeof(hfsplus_extent_rec
))
167 hfs_bnode_read(fd
->bnode
, extent
, fd
->entryoffset
,
168 sizeof(hfsplus_extent_rec
));
172 static inline int __hfsplus_ext_cache_extent(struct hfs_find_data
*fd
,
173 struct inode
*inode
, u32 block
)
175 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
178 WARN_ON(!mutex_is_locked(&hip
->extents_lock
));
180 if (hip
->extent_state
& HFSPLUS_EXT_DIRTY
) {
181 res
= __hfsplus_ext_write_extent(inode
, fd
);
186 res
= __hfsplus_ext_read_extent(fd
, hip
->cached_extents
, inode
->i_ino
,
187 block
, HFSPLUS_IS_RSRC(inode
) ?
191 hip
->cached_start
= be32_to_cpu(fd
->key
->ext
.start_block
);
193 hfsplus_ext_block_count(hip
->cached_extents
);
195 hip
->cached_start
= hip
->cached_blocks
= 0;
196 hip
->extent_state
&= ~(HFSPLUS_EXT_DIRTY
| HFSPLUS_EXT_NEW
);
201 static int hfsplus_ext_read_extent(struct inode
*inode
, u32 block
)
203 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
204 struct hfs_find_data fd
;
207 if (block
>= hip
->cached_start
&&
208 block
< hip
->cached_start
+ hip
->cached_blocks
)
211 res
= hfs_find_init(HFSPLUS_SB(inode
->i_sb
)->ext_tree
, &fd
);
213 res
= __hfsplus_ext_cache_extent(&fd
, inode
, block
);
219 /* Get a block at iblock for inode, possibly allocating if create */
220 int hfsplus_get_block(struct inode
*inode
, sector_t iblock
,
221 struct buffer_head
*bh_result
, int create
)
223 struct super_block
*sb
= inode
->i_sb
;
224 struct hfsplus_sb_info
*sbi
= HFSPLUS_SB(sb
);
225 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
227 u32 ablock
, dblock
, mask
;
231 /* Convert inode block to disk allocation block */
232 ablock
= iblock
>> sbi
->fs_shift
;
234 if (iblock
>= hip
->fs_blocks
) {
235 if (iblock
> hip
->fs_blocks
|| !create
)
237 if (ablock
>= hip
->alloc_blocks
) {
238 res
= hfsplus_file_extend(inode
, false);
245 if (ablock
< hip
->first_blocks
) {
246 dblock
= hfsplus_ext_find_block(hip
->first_extents
, ablock
);
250 if (inode
->i_ino
== HFSPLUS_EXT_CNID
)
253 mutex_lock(&hip
->extents_lock
);
256 * hfsplus_ext_read_extent will write out a cached extent into
257 * the extents btree. In that case we may have to mark the inode
258 * dirty even for a pure read of an extent here.
260 was_dirty
= (hip
->extent_state
& HFSPLUS_EXT_DIRTY
);
261 res
= hfsplus_ext_read_extent(inode
, ablock
);
263 mutex_unlock(&hip
->extents_lock
);
266 dblock
= hfsplus_ext_find_block(hip
->cached_extents
,
267 ablock
- hip
->cached_start
);
268 mutex_unlock(&hip
->extents_lock
);
271 hfs_dbg(EXTENT
, "get_block(%lu): %llu - %u\n",
272 inode
->i_ino
, (long long)iblock
, dblock
);
274 mask
= (1 << sbi
->fs_shift
) - 1;
275 sector
= ((sector_t
)dblock
<< sbi
->fs_shift
) +
276 sbi
->blockoffset
+ (iblock
& mask
);
277 map_bh(bh_result
, sb
, sector
);
280 set_buffer_new(bh_result
);
281 hip
->phys_size
+= sb
->s_blocksize
;
283 inode_add_bytes(inode
, sb
->s_blocksize
);
285 if (create
|| was_dirty
)
286 mark_inode_dirty(inode
);
290 static void hfsplus_dump_extent(struct hfsplus_extent
*extent
)
294 hfs_dbg(EXTENT
, " ");
295 for (i
= 0; i
< 8; i
++)
296 hfs_dbg_cont(EXTENT
, " %u:%u",
297 be32_to_cpu(extent
[i
].start_block
),
298 be32_to_cpu(extent
[i
].block_count
));
299 hfs_dbg_cont(EXTENT
, "\n");
302 static int hfsplus_add_extent(struct hfsplus_extent
*extent
, u32 offset
,
303 u32 alloc_block
, u32 block_count
)
308 hfsplus_dump_extent(extent
);
309 for (i
= 0; i
< 8; extent
++, i
++) {
310 count
= be32_to_cpu(extent
->block_count
);
311 if (offset
== count
) {
312 start
= be32_to_cpu(extent
->start_block
);
313 if (alloc_block
!= start
+ count
) {
317 extent
->start_block
= cpu_to_be32(alloc_block
);
319 block_count
+= count
;
320 extent
->block_count
= cpu_to_be32(block_count
);
322 } else if (offset
< count
)
330 static int hfsplus_free_extents(struct super_block
*sb
,
331 struct hfsplus_extent
*extent
,
332 u32 offset
, u32 block_nr
)
338 hfsplus_dump_extent(extent
);
339 for (i
= 0; i
< 8; extent
++, i
++) {
340 count
= be32_to_cpu(extent
->block_count
);
343 else if (offset
< count
)
351 start
= be32_to_cpu(extent
->start_block
);
352 if (count
<= block_nr
) {
353 err
= hfsplus_block_free(sb
, start
, count
);
355 pr_err("can't free extent\n");
356 hfs_dbg(EXTENT
, " start: %u count: %u\n",
359 extent
->block_count
= 0;
360 extent
->start_block
= 0;
364 err
= hfsplus_block_free(sb
, start
+ count
, block_nr
);
366 pr_err("can't free extent\n");
367 hfs_dbg(EXTENT
, " start: %u count: %u\n",
370 extent
->block_count
= cpu_to_be32(count
);
373 if (!block_nr
|| !i
) {
375 * Try to free all extents and
376 * return only last error
382 count
= be32_to_cpu(extent
->block_count
);
386 int hfsplus_free_fork(struct super_block
*sb
, u32 cnid
,
387 struct hfsplus_fork_raw
*fork
, int type
)
389 struct hfs_find_data fd
;
390 hfsplus_extent_rec ext_entry
;
391 u32 total_blocks
, blocks
, start
;
394 total_blocks
= be32_to_cpu(fork
->total_blocks
);
399 for (i
= 0; i
< 8; i
++)
400 blocks
+= be32_to_cpu(fork
->extents
[i
].block_count
);
402 res
= hfsplus_free_extents(sb
, fork
->extents
, blocks
, blocks
);
405 if (total_blocks
== blocks
)
408 res
= hfs_find_init(HFSPLUS_SB(sb
)->ext_tree
, &fd
);
412 res
= __hfsplus_ext_read_extent(&fd
, ext_entry
, cnid
,
416 start
= be32_to_cpu(fd
.key
->ext
.start_block
);
417 hfsplus_free_extents(sb
, ext_entry
,
418 total_blocks
- start
,
420 hfs_brec_remove(&fd
);
421 total_blocks
= start
;
422 } while (total_blocks
> blocks
);
428 int hfsplus_file_extend(struct inode
*inode
, bool zeroout
)
430 struct super_block
*sb
= inode
->i_sb
;
431 struct hfsplus_sb_info
*sbi
= HFSPLUS_SB(sb
);
432 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
433 u32 start
, len
, goal
;
436 if (sbi
->alloc_file
->i_size
* 8 <
437 sbi
->total_blocks
- sbi
->free_blocks
+ 8) {
438 /* extend alloc file */
439 pr_err("extend alloc file! (%llu,%u,%u)\n",
440 sbi
->alloc_file
->i_size
* 8,
441 sbi
->total_blocks
, sbi
->free_blocks
);
445 mutex_lock(&hip
->extents_lock
);
446 if (hip
->alloc_blocks
== hip
->first_blocks
)
447 goal
= hfsplus_ext_lastblock(hip
->first_extents
);
449 res
= hfsplus_ext_read_extent(inode
, hip
->alloc_blocks
);
452 goal
= hfsplus_ext_lastblock(hip
->cached_extents
);
455 len
= hip
->clump_blocks
;
456 start
= hfsplus_block_allocate(sb
, sbi
->total_blocks
, goal
, &len
);
457 if (start
>= sbi
->total_blocks
) {
458 start
= hfsplus_block_allocate(sb
, goal
, 0, &len
);
466 res
= sb_issue_zeroout(sb
, start
, len
, GFP_NOFS
);
471 hfs_dbg(EXTENT
, "extend %lu: %u,%u\n", inode
->i_ino
, start
, len
);
473 if (hip
->alloc_blocks
<= hip
->first_blocks
) {
474 if (!hip
->first_blocks
) {
475 hfs_dbg(EXTENT
, "first extents\n");
477 hip
->first_extents
[0].start_block
= cpu_to_be32(start
);
478 hip
->first_extents
[0].block_count
= cpu_to_be32(len
);
481 /* try to append to extents in inode */
482 res
= hfsplus_add_extent(hip
->first_extents
,
489 hfsplus_dump_extent(hip
->first_extents
);
490 hip
->first_blocks
+= len
;
493 res
= hfsplus_add_extent(hip
->cached_extents
,
494 hip
->alloc_blocks
- hip
->cached_start
,
497 hfsplus_dump_extent(hip
->cached_extents
);
498 hip
->extent_state
|= HFSPLUS_EXT_DIRTY
;
499 hip
->cached_blocks
+= len
;
500 } else if (res
== -ENOSPC
)
505 hip
->alloc_blocks
+= len
;
506 mutex_unlock(&hip
->extents_lock
);
507 hfsplus_mark_inode_dirty(inode
, HFSPLUS_I_ALLOC_DIRTY
);
510 mutex_unlock(&hip
->extents_lock
);
514 hfs_dbg(EXTENT
, "insert new extent\n");
515 res
= hfsplus_ext_write_extent_locked(inode
);
519 memset(hip
->cached_extents
, 0, sizeof(hfsplus_extent_rec
));
520 hip
->cached_extents
[0].start_block
= cpu_to_be32(start
);
521 hip
->cached_extents
[0].block_count
= cpu_to_be32(len
);
522 hfsplus_dump_extent(hip
->cached_extents
);
523 hip
->extent_state
|= HFSPLUS_EXT_DIRTY
| HFSPLUS_EXT_NEW
;
524 hip
->cached_start
= hip
->alloc_blocks
;
525 hip
->cached_blocks
= len
;
531 void hfsplus_file_truncate(struct inode
*inode
)
533 struct super_block
*sb
= inode
->i_sb
;
534 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
535 struct hfs_find_data fd
;
536 u32 alloc_cnt
, blk_cnt
, start
;
539 hfs_dbg(INODE
, "truncate: %lu, %llu -> %llu\n",
540 inode
->i_ino
, (long long)hip
->phys_size
, inode
->i_size
);
542 if (inode
->i_size
> hip
->phys_size
) {
543 struct address_space
*mapping
= inode
->i_mapping
;
546 loff_t size
= inode
->i_size
;
548 res
= pagecache_write_begin(NULL
, mapping
, size
, 0,
549 AOP_FLAG_UNINTERRUPTIBLE
,
553 res
= pagecache_write_end(NULL
, mapping
, size
,
557 mark_inode_dirty(inode
);
559 } else if (inode
->i_size
== hip
->phys_size
)
562 blk_cnt
= (inode
->i_size
+ HFSPLUS_SB(sb
)->alloc_blksz
- 1) >>
563 HFSPLUS_SB(sb
)->alloc_blksz_shift
;
565 mutex_lock(&hip
->extents_lock
);
567 alloc_cnt
= hip
->alloc_blocks
;
568 if (blk_cnt
== alloc_cnt
)
571 res
= hfs_find_init(HFSPLUS_SB(sb
)->ext_tree
, &fd
);
573 mutex_unlock(&hip
->extents_lock
);
574 /* XXX: We lack error handling of hfsplus_file_truncate() */
578 if (alloc_cnt
== hip
->first_blocks
) {
579 hfsplus_free_extents(sb
, hip
->first_extents
,
580 alloc_cnt
, alloc_cnt
- blk_cnt
);
581 hfsplus_dump_extent(hip
->first_extents
);
582 hip
->first_blocks
= blk_cnt
;
585 res
= __hfsplus_ext_cache_extent(&fd
, inode
, alloc_cnt
);
588 start
= hip
->cached_start
;
589 hfsplus_free_extents(sb
, hip
->cached_extents
,
590 alloc_cnt
- start
, alloc_cnt
- blk_cnt
);
591 hfsplus_dump_extent(hip
->cached_extents
);
592 if (blk_cnt
> start
) {
593 hip
->extent_state
|= HFSPLUS_EXT_DIRTY
;
597 hip
->cached_start
= hip
->cached_blocks
= 0;
598 hip
->extent_state
&= ~(HFSPLUS_EXT_DIRTY
| HFSPLUS_EXT_NEW
);
599 hfs_brec_remove(&fd
);
603 hip
->alloc_blocks
= blk_cnt
;
605 mutex_unlock(&hip
->extents_lock
);
606 hip
->phys_size
= inode
->i_size
;
607 hip
->fs_blocks
= (inode
->i_size
+ sb
->s_blocksize
- 1) >>
608 sb
->s_blocksize_bits
;
609 inode_set_bytes(inode
, hip
->fs_blocks
<< sb
->s_blocksize_bits
);
610 hfsplus_mark_inode_dirty(inode
, HFSPLUS_I_ALLOC_DIRTY
);