blob: b1127ef2675056b2aceaa95814baa61e4f694a38 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hfsplus/extents.c
3 *
4 * Copyright (C) 2001
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
7 *
8 * Handling of Extents both in catalog and extents overflow trees
9 */
10
11#include <linux/errno.h>
12#include <linux/fs.h>
13#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include "hfsplus_fs.h"
16#include "hfsplus_raw.h"
17
18/* Compare two extents keys, returns 0 on same, pos/neg for difference */
David Elliott2179d372006-01-18 17:43:08 -080019int hfsplus_ext_cmp_key(const hfsplus_btree_key *k1,
20 const hfsplus_btree_key *k2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
22 __be32 k1id, k2id;
23 __be32 k1s, k2s;
24
25 k1id = k1->ext.cnid;
26 k2id = k2->ext.cnid;
27 if (k1id != k2id)
28 return be32_to_cpu(k1id) < be32_to_cpu(k2id) ? -1 : 1;
29
30 if (k1->ext.fork_type != k2->ext.fork_type)
31 return k1->ext.fork_type < k2->ext.fork_type ? -1 : 1;
32
33 k1s = k1->ext.start_block;
34 k2s = k2->ext.start_block;
35 if (k1s == k2s)
36 return 0;
37 return be32_to_cpu(k1s) < be32_to_cpu(k2s) ? -1 : 1;
38}
39
40static void hfsplus_ext_build_key(hfsplus_btree_key *key, u32 cnid,
41 u32 block, u8 type)
42{
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;
47 key->ext.pad = 0;
48}
49
50static u32 hfsplus_ext_find_block(struct hfsplus_extent *ext, u32 off)
51{
52 int i;
53 u32 count;
54
55 for (i = 0; i < 8; ext++, i++) {
56 count = be32_to_cpu(ext->block_count);
57 if (off < count)
58 return be32_to_cpu(ext->start_block) + off;
59 off -= count;
60 }
61 /* panic? */
62 return 0;
63}
64
65static int hfsplus_ext_block_count(struct hfsplus_extent *ext)
66{
67 int i;
68 u32 count = 0;
69
70 for (i = 0; i < 8; ext++, i++)
71 count += be32_to_cpu(ext->block_count);
72 return count;
73}
74
75static u32 hfsplus_ext_lastblock(struct hfsplus_extent *ext)
76{
77 int i;
78
79 ext += 7;
80 for (i = 0; i < 7; ext--, i++)
81 if (ext->block_count)
82 break;
83 return be32_to_cpu(ext->start_block) + be32_to_cpu(ext->block_count);
84}
85
86static void __hfsplus_ext_write_extent(struct inode *inode, struct hfs_find_data *fd)
87{
Christoph Hellwig6af502d2010-10-01 05:43:31 +020088 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int res;
90
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +020091 WARN_ON(!mutex_is_locked(&hip->extents_lock));
92
Christoph Hellwig6af502d2010-10-01 05:43:31 +020093 hfsplus_ext_build_key(fd->search_key, inode->i_ino, hip->cached_start,
94 HFSPLUS_IS_RSRC(inode) ?
95 HFSPLUS_TYPE_RSRC : HFSPLUS_TYPE_DATA);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 res = hfs_brec_find(fd);
Christoph Hellwigb33b7922010-11-23 14:38:13 +010098 if (hip->extent_state & HFSPLUS_EXT_NEW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (res != -ENOENT)
100 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200101 hfs_brec_insert(fd, hip->cached_extents,
102 sizeof(hfsplus_extent_rec));
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100103 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 } else {
105 if (res)
106 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200107 hfs_bnode_write(fd->bnode, hip->cached_extents,
108 fd->entryoffset, fd->entrylength);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100109 hip->extent_state &= ~HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100111
112 /*
113 * We can't just use hfsplus_mark_inode_dirty here, because we
114 * also get called from hfsplus_write_inode, which should not
115 * redirty the inode. Instead the callers have to be careful
116 * to explicily mark the inode dirty, too.
117 */
118 set_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200121static void hfsplus_ext_write_extent_locked(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100123 if (HFSPLUS_I(inode)->extent_state & HFSPLUS_EXT_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 struct hfs_find_data fd;
125
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200126 hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 __hfsplus_ext_write_extent(inode, &fd);
128 hfs_find_exit(&fd);
129 }
130}
131
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200132void hfsplus_ext_write_extent(struct inode *inode)
133{
134 mutex_lock(&HFSPLUS_I(inode)->extents_lock);
135 hfsplus_ext_write_extent_locked(inode);
136 mutex_unlock(&HFSPLUS_I(inode)->extents_lock);
137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,
140 struct hfsplus_extent *extent,
141 u32 cnid, u32 block, u8 type)
142{
143 int res;
144
145 hfsplus_ext_build_key(fd->search_key, cnid, block, type);
146 fd->key->ext.cnid = 0;
147 res = hfs_brec_find(fd);
148 if (res && res != -ENOENT)
149 return res;
150 if (fd->key->ext.cnid != fd->search_key->ext.cnid ||
151 fd->key->ext.fork_type != fd->search_key->ext.fork_type)
152 return -ENOENT;
153 if (fd->entrylength != sizeof(hfsplus_extent_rec))
154 return -EIO;
155 hfs_bnode_read(fd->bnode, extent, fd->entryoffset, sizeof(hfsplus_extent_rec));
156 return 0;
157}
158
159static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd, struct inode *inode, u32 block)
160{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200161 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 int res;
163
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200164 WARN_ON(!mutex_is_locked(&hip->extents_lock));
165
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100166 if (hip->extent_state & HFSPLUS_EXT_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 __hfsplus_ext_write_extent(inode, fd);
168
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200169 res = __hfsplus_ext_read_extent(fd, hip->cached_extents, inode->i_ino,
170 block, HFSPLUS_IS_RSRC(inode) ?
171 HFSPLUS_TYPE_RSRC :
172 HFSPLUS_TYPE_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200174 hip->cached_start = be32_to_cpu(fd->key->ext.start_block);
175 hip->cached_blocks = hfsplus_ext_block_count(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200177 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100178 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180 return res;
181}
182
183static int hfsplus_ext_read_extent(struct inode *inode, u32 block)
184{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200185 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 struct hfs_find_data fd;
187 int res;
188
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200189 if (block >= hip->cached_start &&
190 block < hip->cached_start + hip->cached_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return 0;
192
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200193 hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 res = __hfsplus_ext_cache_extent(&fd, inode, block);
195 hfs_find_exit(&fd);
196 return res;
197}
198
199/* Get a block at iblock for inode, possibly allocating if create */
200int hfsplus_get_block(struct inode *inode, sector_t iblock,
201 struct buffer_head *bh_result, int create)
202{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200203 struct super_block *sb = inode->i_sb;
204 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200205 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 int res = -EIO;
207 u32 ablock, dblock, mask;
Christoph Hellwige3494702010-11-23 14:38:15 +0100208 int was_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int shift;
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* Convert inode block to disk allocation block */
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200212 shift = sbi->alloc_blksz_shift - sb->s_blocksize_bits;
213 ablock = iblock >> sbi->fs_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200215 if (iblock >= hip->fs_blocks) {
216 if (iblock > hip->fs_blocks || !create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return -EIO;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200218 if (ablock >= hip->alloc_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 res = hfsplus_file_extend(inode);
220 if (res)
221 return res;
222 }
223 } else
224 create = 0;
225
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200226 if (ablock < hip->first_blocks) {
227 dblock = hfsplus_ext_find_block(hip->first_extents, ablock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 goto done;
229 }
230
Eric Sesterhenn248736c2008-10-18 20:28:02 -0700231 if (inode->i_ino == HFSPLUS_EXT_CNID)
232 return -EIO;
233
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200234 mutex_lock(&hip->extents_lock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100235
236 /*
237 * hfsplus_ext_read_extent will write out a cached extent into
238 * the extents btree. In that case we may have to mark the inode
239 * dirty even for a pure read of an extent here.
240 */
241 was_dirty = (hip->extent_state & HFSPLUS_EXT_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 res = hfsplus_ext_read_extent(inode, ablock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100243 if (res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200244 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return -EIO;
246 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100247 dblock = hfsplus_ext_find_block(hip->cached_extents,
248 ablock - hip->cached_start);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200249 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251done:
252 dprint(DBG_EXTENT, "get_block(%lu): %llu - %u\n", inode->i_ino, (long long)iblock, dblock);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200253 mask = (1 << sbi->fs_shift) - 1;
254 map_bh(bh_result, sb, (dblock << sbi->fs_shift) + sbi->blockoffset + (iblock & mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (create) {
256 set_buffer_new(bh_result);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200257 hip->phys_size += sb->s_blocksize;
258 hip->fs_blocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 inode_add_bytes(inode, sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100261 if (create || was_dirty)
262 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264}
265
266static void hfsplus_dump_extent(struct hfsplus_extent *extent)
267{
268 int i;
269
270 dprint(DBG_EXTENT, " ");
271 for (i = 0; i < 8; i++)
272 dprint(DBG_EXTENT, " %u:%u", be32_to_cpu(extent[i].start_block),
273 be32_to_cpu(extent[i].block_count));
274 dprint(DBG_EXTENT, "\n");
275}
276
277static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset,
278 u32 alloc_block, u32 block_count)
279{
280 u32 count, start;
281 int i;
282
283 hfsplus_dump_extent(extent);
284 for (i = 0; i < 8; extent++, i++) {
285 count = be32_to_cpu(extent->block_count);
286 if (offset == count) {
287 start = be32_to_cpu(extent->start_block);
288 if (alloc_block != start + count) {
289 if (++i >= 8)
290 return -ENOSPC;
291 extent++;
292 extent->start_block = cpu_to_be32(alloc_block);
293 } else
294 block_count += count;
295 extent->block_count = cpu_to_be32(block_count);
296 return 0;
297 } else if (offset < count)
298 break;
299 offset -= count;
300 }
301 /* panic? */
302 return -EIO;
303}
304
305static int hfsplus_free_extents(struct super_block *sb,
306 struct hfsplus_extent *extent,
307 u32 offset, u32 block_nr)
308{
309 u32 count, start;
310 int i;
311
312 hfsplus_dump_extent(extent);
313 for (i = 0; i < 8; extent++, i++) {
314 count = be32_to_cpu(extent->block_count);
315 if (offset == count)
316 goto found;
317 else if (offset < count)
318 break;
319 offset -= count;
320 }
321 /* panic? */
322 return -EIO;
323found:
324 for (;;) {
325 start = be32_to_cpu(extent->start_block);
326 if (count <= block_nr) {
327 hfsplus_block_free(sb, start, count);
328 extent->block_count = 0;
329 extent->start_block = 0;
330 block_nr -= count;
331 } else {
332 count -= block_nr;
333 hfsplus_block_free(sb, start + count, block_nr);
334 extent->block_count = cpu_to_be32(count);
335 block_nr = 0;
336 }
337 if (!block_nr || !i)
338 return 0;
339 i--;
340 extent--;
341 count = be32_to_cpu(extent->block_count);
342 }
343}
344
345int hfsplus_free_fork(struct super_block *sb, u32 cnid, struct hfsplus_fork_raw *fork, int type)
346{
347 struct hfs_find_data fd;
348 hfsplus_extent_rec ext_entry;
349 u32 total_blocks, blocks, start;
350 int res, i;
351
352 total_blocks = be32_to_cpu(fork->total_blocks);
353 if (!total_blocks)
354 return 0;
355
356 blocks = 0;
357 for (i = 0; i < 8; i++)
358 blocks += be32_to_cpu(fork->extents[i].block_count);
359
360 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks);
361 if (res)
362 return res;
363 if (total_blocks == blocks)
364 return 0;
365
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200366 hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 do {
368 res = __hfsplus_ext_read_extent(&fd, ext_entry, cnid,
369 total_blocks, type);
370 if (res)
371 break;
372 start = be32_to_cpu(fd.key->ext.start_block);
373 hfsplus_free_extents(sb, ext_entry,
374 total_blocks - start,
375 total_blocks);
376 hfs_brec_remove(&fd);
377 total_blocks = start;
378 } while (total_blocks > blocks);
379 hfs_find_exit(&fd);
380
381 return res;
382}
383
384int hfsplus_file_extend(struct inode *inode)
385{
386 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200387 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200388 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 u32 start, len, goal;
390 int res;
391
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200392 if (sbi->alloc_file->i_size * 8 <
393 sbi->total_blocks - sbi->free_blocks + 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 // extend alloc file
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200395 printk(KERN_ERR "hfs: extend alloc file! (%Lu,%u,%u)\n",
396 sbi->alloc_file->i_size * 8,
397 sbi->total_blocks, sbi->free_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200401 mutex_lock(&hip->extents_lock);
402 if (hip->alloc_blocks == hip->first_blocks)
403 goal = hfsplus_ext_lastblock(hip->first_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200405 res = hfsplus_ext_read_extent(inode, hip->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (res)
407 goto out;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200408 goal = hfsplus_ext_lastblock(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200411 len = hip->clump_blocks;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200412 start = hfsplus_block_allocate(sb, sbi->total_blocks, goal, &len);
413 if (start >= sbi->total_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 start = hfsplus_block_allocate(sb, goal, 0, &len);
415 if (start >= goal) {
416 res = -ENOSPC;
417 goto out;
418 }
419 }
420
421 dprint(DBG_EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200422
423 if (hip->alloc_blocks <= hip->first_blocks) {
424 if (!hip->first_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 dprint(DBG_EXTENT, "first extents\n");
426 /* no extents yet */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200427 hip->first_extents[0].start_block = cpu_to_be32(start);
428 hip->first_extents[0].block_count = cpu_to_be32(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 res = 0;
430 } else {
431 /* try to append to extents in inode */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200432 res = hfsplus_add_extent(hip->first_extents,
433 hip->alloc_blocks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 start, len);
435 if (res == -ENOSPC)
436 goto insert_extent;
437 }
438 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200439 hfsplus_dump_extent(hip->first_extents);
440 hip->first_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200443 res = hfsplus_add_extent(hip->cached_extents,
444 hip->alloc_blocks - hip->cached_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 start, len);
446 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200447 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100448 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200449 hip->cached_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 } else if (res == -ENOSPC)
451 goto insert_extent;
452 }
453out:
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200454 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200456 hip->alloc_blocks += len;
Christoph Hellwige3494702010-11-23 14:38:15 +0100457 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 return res;
460
461insert_extent:
462 dprint(DBG_EXTENT, "insert new extent\n");
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200463 hfsplus_ext_write_extent_locked(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200465 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
466 hip->cached_extents[0].start_block = cpu_to_be32(start);
467 hip->cached_extents[0].block_count = cpu_to_be32(len);
468 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100469 hip->extent_state |= HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200470 hip->cached_start = hip->alloc_blocks;
471 hip->cached_blocks = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 res = 0;
474 goto out;
475}
476
477void hfsplus_file_truncate(struct inode *inode)
478{
479 struct super_block *sb = inode->i_sb;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200480 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 struct hfs_find_data fd;
482 u32 alloc_cnt, blk_cnt, start;
483 int res;
484
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200485 dprint(DBG_INODE, "truncate: %lu, %Lu -> %Lu\n",
486 inode->i_ino, (long long)hip->phys_size, inode->i_size);
487
488 if (inode->i_size > hip->phys_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct address_space *mapping = inode->i_mapping;
490 struct page *page;
Nick Piggin7c0efc62007-10-16 01:25:09 -0700491 void *fsdata;
492 u32 size = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 int res;
494
Nick Piggin7c0efc62007-10-16 01:25:09 -0700495 res = pagecache_write_begin(NULL, mapping, size, 0,
496 AOP_FLAG_UNINTERRUPTIBLE,
497 &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (res)
Nick Piggin7c0efc62007-10-16 01:25:09 -0700499 return;
500 res = pagecache_write_end(NULL, mapping, size, 0, 0, page, fsdata);
501 if (res < 0)
502 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 mark_inode_dirty(inode);
504 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200505 } else if (inode->i_size == hip->phys_size)
Roman Zippelf76d28d2005-08-01 21:11:40 -0700506 return;
507
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200508 blk_cnt = (inode->i_size + HFSPLUS_SB(sb)->alloc_blksz - 1) >>
509 HFSPLUS_SB(sb)->alloc_blksz_shift;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200510 alloc_cnt = hip->alloc_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (blk_cnt == alloc_cnt)
512 goto out;
513
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200514 mutex_lock(&hip->extents_lock);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200515 hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 while (1) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200517 if (alloc_cnt == hip->first_blocks) {
518 hfsplus_free_extents(sb, hip->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 alloc_cnt, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200520 hfsplus_dump_extent(hip->first_extents);
521 hip->first_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523 }
524 res = __hfsplus_ext_cache_extent(&fd, inode, alloc_cnt);
525 if (res)
526 break;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200527 start = hip->cached_start;
528 hfsplus_free_extents(sb, hip->cached_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 alloc_cnt - start, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200530 hfsplus_dump_extent(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (blk_cnt > start) {
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100532 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 break;
534 }
535 alloc_cnt = start;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200536 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100537 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 hfs_brec_remove(&fd);
539 }
540 hfs_find_exit(&fd);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200541 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200543 hip->alloc_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544out:
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200545 hip->phys_size = inode->i_size;
546 hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
547 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
Christoph Hellwige3494702010-11-23 14:38:15 +0100548 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}