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 void __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
);
122 static int hfsplus_ext_write_extent_locked(struct inode
*inode
)
126 if (HFSPLUS_I(inode
)->extent_state
& HFSPLUS_EXT_DIRTY
) {
127 struct hfs_find_data fd
;
129 res
= hfs_find_init(HFSPLUS_SB(inode
->i_sb
)->ext_tree
, &fd
);
132 __hfsplus_ext_write_extent(inode
, &fd
);
138 int hfsplus_ext_write_extent(struct inode
*inode
)
142 mutex_lock(&HFSPLUS_I(inode
)->extents_lock
);
143 res
= hfsplus_ext_write_extent_locked(inode
);
144 mutex_unlock(&HFSPLUS_I(inode
)->extents_lock
);
149 static inline int __hfsplus_ext_read_extent(struct hfs_find_data
*fd
,
150 struct hfsplus_extent
*extent
,
151 u32 cnid
, u32 block
, u8 type
)
155 hfsplus_ext_build_key(fd
->search_key
, cnid
, block
, type
);
156 fd
->key
->ext
.cnid
= 0;
157 res
= hfs_brec_find(fd
, hfs_find_rec_by_key
);
158 if (res
&& res
!= -ENOENT
)
160 if (fd
->key
->ext
.cnid
!= fd
->search_key
->ext
.cnid
||
161 fd
->key
->ext
.fork_type
!= fd
->search_key
->ext
.fork_type
)
163 if (fd
->entrylength
!= sizeof(hfsplus_extent_rec
))
165 hfs_bnode_read(fd
->bnode
, extent
, fd
->entryoffset
,
166 sizeof(hfsplus_extent_rec
));
170 static inline int __hfsplus_ext_cache_extent(struct hfs_find_data
*fd
,
171 struct inode
*inode
, u32 block
)
173 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
176 WARN_ON(!mutex_is_locked(&hip
->extents_lock
));
178 if (hip
->extent_state
& HFSPLUS_EXT_DIRTY
)
179 __hfsplus_ext_write_extent(inode
, fd
);
181 res
= __hfsplus_ext_read_extent(fd
, hip
->cached_extents
, inode
->i_ino
,
182 block
, HFSPLUS_IS_RSRC(inode
) ?
186 hip
->cached_start
= be32_to_cpu(fd
->key
->ext
.start_block
);
188 hfsplus_ext_block_count(hip
->cached_extents
);
190 hip
->cached_start
= hip
->cached_blocks
= 0;
191 hip
->extent_state
&= ~(HFSPLUS_EXT_DIRTY
| HFSPLUS_EXT_NEW
);
196 static int hfsplus_ext_read_extent(struct inode
*inode
, u32 block
)
198 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
199 struct hfs_find_data fd
;
202 if (block
>= hip
->cached_start
&&
203 block
< hip
->cached_start
+ hip
->cached_blocks
)
206 res
= hfs_find_init(HFSPLUS_SB(inode
->i_sb
)->ext_tree
, &fd
);
208 res
= __hfsplus_ext_cache_extent(&fd
, inode
, block
);
214 /* Get a block at iblock for inode, possibly allocating if create */
215 int hfsplus_get_block(struct inode
*inode
, sector_t iblock
,
216 struct buffer_head
*bh_result
, int create
)
218 struct super_block
*sb
= inode
->i_sb
;
219 struct hfsplus_sb_info
*sbi
= HFSPLUS_SB(sb
);
220 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
222 u32 ablock
, dblock
, mask
;
227 /* Convert inode block to disk allocation block */
228 shift
= sbi
->alloc_blksz_shift
- sb
->s_blocksize_bits
;
229 ablock
= iblock
>> sbi
->fs_shift
;
231 if (iblock
>= hip
->fs_blocks
) {
232 if (iblock
> hip
->fs_blocks
|| !create
)
234 if (ablock
>= hip
->alloc_blocks
) {
235 res
= hfsplus_file_extend(inode
);
242 if (ablock
< hip
->first_blocks
) {
243 dblock
= hfsplus_ext_find_block(hip
->first_extents
, ablock
);
247 if (inode
->i_ino
== HFSPLUS_EXT_CNID
)
250 mutex_lock(&hip
->extents_lock
);
253 * hfsplus_ext_read_extent will write out a cached extent into
254 * the extents btree. In that case we may have to mark the inode
255 * dirty even for a pure read of an extent here.
257 was_dirty
= (hip
->extent_state
& HFSPLUS_EXT_DIRTY
);
258 res
= hfsplus_ext_read_extent(inode
, ablock
);
260 mutex_unlock(&hip
->extents_lock
);
263 dblock
= hfsplus_ext_find_block(hip
->cached_extents
,
264 ablock
- hip
->cached_start
);
265 mutex_unlock(&hip
->extents_lock
);
268 dprint(DBG_EXTENT
, "get_block(%lu): %llu - %u\n",
269 inode
->i_ino
, (long long)iblock
, dblock
);
271 mask
= (1 << sbi
->fs_shift
) - 1;
272 sector
= ((sector_t
)dblock
<< sbi
->fs_shift
) +
273 sbi
->blockoffset
+ (iblock
& mask
);
274 map_bh(bh_result
, sb
, sector
);
277 set_buffer_new(bh_result
);
278 hip
->phys_size
+= sb
->s_blocksize
;
280 inode_add_bytes(inode
, sb
->s_blocksize
);
282 if (create
|| was_dirty
)
283 mark_inode_dirty(inode
);
287 static void hfsplus_dump_extent(struct hfsplus_extent
*extent
)
291 dprint(DBG_EXTENT
, " ");
292 for (i
= 0; i
< 8; i
++)
293 dprint(DBG_EXTENT
, " %u:%u", be32_to_cpu(extent
[i
].start_block
),
294 be32_to_cpu(extent
[i
].block_count
));
295 dprint(DBG_EXTENT
, "\n");
298 static int hfsplus_add_extent(struct hfsplus_extent
*extent
, u32 offset
,
299 u32 alloc_block
, u32 block_count
)
304 hfsplus_dump_extent(extent
);
305 for (i
= 0; i
< 8; extent
++, i
++) {
306 count
= be32_to_cpu(extent
->block_count
);
307 if (offset
== count
) {
308 start
= be32_to_cpu(extent
->start_block
);
309 if (alloc_block
!= start
+ count
) {
313 extent
->start_block
= cpu_to_be32(alloc_block
);
315 block_count
+= count
;
316 extent
->block_count
= cpu_to_be32(block_count
);
318 } else if (offset
< count
)
326 static int hfsplus_free_extents(struct super_block
*sb
,
327 struct hfsplus_extent
*extent
,
328 u32 offset
, u32 block_nr
)
334 hfsplus_dump_extent(extent
);
335 for (i
= 0; i
< 8; extent
++, i
++) {
336 count
= be32_to_cpu(extent
->block_count
);
339 else if (offset
< count
)
347 start
= be32_to_cpu(extent
->start_block
);
348 if (count
<= block_nr
) {
349 err
= hfsplus_block_free(sb
, start
, count
);
351 printk(KERN_ERR
"hfs: can't free extent\n");
352 dprint(DBG_EXTENT
, " start: %u count: %u\n",
355 extent
->block_count
= 0;
356 extent
->start_block
= 0;
360 err
= hfsplus_block_free(sb
, start
+ count
, block_nr
);
362 printk(KERN_ERR
"hfs: can't free extent\n");
363 dprint(DBG_EXTENT
, " start: %u count: %u\n",
366 extent
->block_count
= cpu_to_be32(count
);
369 if (!block_nr
|| !i
) {
371 * Try to free all extents and
372 * return only last error
378 count
= be32_to_cpu(extent
->block_count
);
382 int hfsplus_free_fork(struct super_block
*sb
, u32 cnid
,
383 struct hfsplus_fork_raw
*fork
, int type
)
385 struct hfs_find_data fd
;
386 hfsplus_extent_rec ext_entry
;
387 u32 total_blocks
, blocks
, start
;
390 total_blocks
= be32_to_cpu(fork
->total_blocks
);
395 for (i
= 0; i
< 8; i
++)
396 blocks
+= be32_to_cpu(fork
->extents
[i
].block_count
);
398 res
= hfsplus_free_extents(sb
, fork
->extents
, blocks
, blocks
);
401 if (total_blocks
== blocks
)
404 res
= hfs_find_init(HFSPLUS_SB(sb
)->ext_tree
, &fd
);
408 res
= __hfsplus_ext_read_extent(&fd
, ext_entry
, cnid
,
412 start
= be32_to_cpu(fd
.key
->ext
.start_block
);
413 hfsplus_free_extents(sb
, ext_entry
,
414 total_blocks
- start
,
416 hfs_brec_remove(&fd
);
417 total_blocks
= start
;
418 } while (total_blocks
> blocks
);
424 int hfsplus_file_extend(struct inode
*inode
)
426 struct super_block
*sb
= inode
->i_sb
;
427 struct hfsplus_sb_info
*sbi
= HFSPLUS_SB(sb
);
428 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
429 u32 start
, len
, goal
;
432 if (sbi
->alloc_file
->i_size
* 8 <
433 sbi
->total_blocks
- sbi
->free_blocks
+ 8) {
434 /* extend alloc file */
435 printk(KERN_ERR
"hfs: extend alloc file! "
437 sbi
->alloc_file
->i_size
* 8,
438 sbi
->total_blocks
, sbi
->free_blocks
);
442 mutex_lock(&hip
->extents_lock
);
443 if (hip
->alloc_blocks
== hip
->first_blocks
)
444 goal
= hfsplus_ext_lastblock(hip
->first_extents
);
446 res
= hfsplus_ext_read_extent(inode
, hip
->alloc_blocks
);
449 goal
= hfsplus_ext_lastblock(hip
->cached_extents
);
452 len
= hip
->clump_blocks
;
453 start
= hfsplus_block_allocate(sb
, sbi
->total_blocks
, goal
, &len
);
454 if (start
>= sbi
->total_blocks
) {
455 start
= hfsplus_block_allocate(sb
, goal
, 0, &len
);
462 dprint(DBG_EXTENT
, "extend %lu: %u,%u\n", inode
->i_ino
, start
, len
);
464 if (hip
->alloc_blocks
<= hip
->first_blocks
) {
465 if (!hip
->first_blocks
) {
466 dprint(DBG_EXTENT
, "first extents\n");
468 hip
->first_extents
[0].start_block
= cpu_to_be32(start
);
469 hip
->first_extents
[0].block_count
= cpu_to_be32(len
);
472 /* try to append to extents in inode */
473 res
= hfsplus_add_extent(hip
->first_extents
,
480 hfsplus_dump_extent(hip
->first_extents
);
481 hip
->first_blocks
+= len
;
484 res
= hfsplus_add_extent(hip
->cached_extents
,
485 hip
->alloc_blocks
- hip
->cached_start
,
488 hfsplus_dump_extent(hip
->cached_extents
);
489 hip
->extent_state
|= HFSPLUS_EXT_DIRTY
;
490 hip
->cached_blocks
+= len
;
491 } else if (res
== -ENOSPC
)
495 mutex_unlock(&hip
->extents_lock
);
497 hip
->alloc_blocks
+= len
;
498 hfsplus_mark_inode_dirty(inode
, HFSPLUS_I_ALLOC_DIRTY
);
503 dprint(DBG_EXTENT
, "insert new extent\n");
504 res
= hfsplus_ext_write_extent_locked(inode
);
508 memset(hip
->cached_extents
, 0, sizeof(hfsplus_extent_rec
));
509 hip
->cached_extents
[0].start_block
= cpu_to_be32(start
);
510 hip
->cached_extents
[0].block_count
= cpu_to_be32(len
);
511 hfsplus_dump_extent(hip
->cached_extents
);
512 hip
->extent_state
|= HFSPLUS_EXT_DIRTY
| HFSPLUS_EXT_NEW
;
513 hip
->cached_start
= hip
->alloc_blocks
;
514 hip
->cached_blocks
= len
;
520 void hfsplus_file_truncate(struct inode
*inode
)
522 struct super_block
*sb
= inode
->i_sb
;
523 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
524 struct hfs_find_data fd
;
525 u32 alloc_cnt
, blk_cnt
, start
;
528 dprint(DBG_INODE
, "truncate: %lu, %llu -> %llu\n",
529 inode
->i_ino
, (long long)hip
->phys_size
,
532 if (inode
->i_size
> hip
->phys_size
) {
533 struct address_space
*mapping
= inode
->i_mapping
;
536 u32 size
= inode
->i_size
;
538 res
= pagecache_write_begin(NULL
, mapping
, size
, 0,
539 AOP_FLAG_UNINTERRUPTIBLE
,
543 res
= pagecache_write_end(NULL
, mapping
, size
,
547 mark_inode_dirty(inode
);
549 } else if (inode
->i_size
== hip
->phys_size
)
552 blk_cnt
= (inode
->i_size
+ HFSPLUS_SB(sb
)->alloc_blksz
- 1) >>
553 HFSPLUS_SB(sb
)->alloc_blksz_shift
;
554 alloc_cnt
= hip
->alloc_blocks
;
555 if (blk_cnt
== alloc_cnt
)
558 mutex_lock(&hip
->extents_lock
);
559 res
= hfs_find_init(HFSPLUS_SB(sb
)->ext_tree
, &fd
);
561 mutex_unlock(&hip
->extents_lock
);
562 /* XXX: We lack error handling of hfsplus_file_truncate() */
566 if (alloc_cnt
== hip
->first_blocks
) {
567 hfsplus_free_extents(sb
, hip
->first_extents
,
568 alloc_cnt
, alloc_cnt
- blk_cnt
);
569 hfsplus_dump_extent(hip
->first_extents
);
570 hip
->first_blocks
= blk_cnt
;
573 res
= __hfsplus_ext_cache_extent(&fd
, inode
, alloc_cnt
);
576 start
= hip
->cached_start
;
577 hfsplus_free_extents(sb
, hip
->cached_extents
,
578 alloc_cnt
- start
, alloc_cnt
- blk_cnt
);
579 hfsplus_dump_extent(hip
->cached_extents
);
580 if (blk_cnt
> start
) {
581 hip
->extent_state
|= HFSPLUS_EXT_DIRTY
;
585 hip
->cached_start
= hip
->cached_blocks
= 0;
586 hip
->extent_state
&= ~(HFSPLUS_EXT_DIRTY
| HFSPLUS_EXT_NEW
);
587 hfs_brec_remove(&fd
);
590 mutex_unlock(&hip
->extents_lock
);
592 hip
->alloc_blocks
= blk_cnt
;
594 hip
->phys_size
= inode
->i_size
;
595 hip
->fs_blocks
= (inode
->i_size
+ sb
->s_blocksize
- 1) >>
596 sb
->s_blocksize_bits
;
597 inode_set_bytes(inode
, hip
->fs_blocks
<< sb
->s_blocksize_bits
);
598 hfsplus_mark_inode_dirty(inode
, HFSPLUS_I_ALLOC_DIRTY
);