blob: 95065a89e7e23de93d39210584066e03fdb112dc [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
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020086static void __hfsplus_ext_write_extent(struct inode *inode,
87 struct hfs_find_data *fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Christoph Hellwig6af502d2010-10-01 05:43:31 +020089 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int res;
91
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +020092 WARN_ON(!mutex_is_locked(&hip->extents_lock));
93
Christoph Hellwig6af502d2010-10-01 05:43:31 +020094 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);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 res = hfs_brec_find(fd);
Christoph Hellwigb33b7922010-11-23 14:38:13 +010099 if (hip->extent_state & HFSPLUS_EXT_NEW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (res != -ENOENT)
101 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200102 hfs_brec_insert(fd, hip->cached_extents,
103 sizeof(hfsplus_extent_rec));
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100104 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 } else {
106 if (res)
107 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200108 hfs_bnode_write(fd->bnode, hip->cached_extents,
109 fd->entryoffset, fd->entrylength);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100110 hip->extent_state &= ~HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100112
113 /*
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.
118 */
119 set_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200122static void hfsplus_ext_write_extent_locked(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100124 if (HFSPLUS_I(inode)->extent_state & HFSPLUS_EXT_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct hfs_find_data fd;
126
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400127 if (!hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd)) {
128 __hfsplus_ext_write_extent(inode, &fd);
129 hfs_find_exit(&fd);
130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132}
133
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200134void hfsplus_ext_write_extent(struct inode *inode)
135{
136 mutex_lock(&HFSPLUS_I(inode)->extents_lock);
137 hfsplus_ext_write_extent_locked(inode);
138 mutex_unlock(&HFSPLUS_I(inode)->extents_lock);
139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,
142 struct hfsplus_extent *extent,
143 u32 cnid, u32 block, u8 type)
144{
145 int res;
146
147 hfsplus_ext_build_key(fd->search_key, cnid, block, type);
148 fd->key->ext.cnid = 0;
149 res = hfs_brec_find(fd);
150 if (res && res != -ENOENT)
151 return res;
152 if (fd->key->ext.cnid != fd->search_key->ext.cnid ||
153 fd->key->ext.fork_type != fd->search_key->ext.fork_type)
154 return -ENOENT;
155 if (fd->entrylength != sizeof(hfsplus_extent_rec))
156 return -EIO;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200157 hfs_bnode_read(fd->bnode, extent, fd->entryoffset,
158 sizeof(hfsplus_extent_rec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return 0;
160}
161
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200162static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd,
163 struct inode *inode, u32 block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200165 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 int res;
167
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200168 WARN_ON(!mutex_is_locked(&hip->extents_lock));
169
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100170 if (hip->extent_state & HFSPLUS_EXT_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 __hfsplus_ext_write_extent(inode, fd);
172
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200173 res = __hfsplus_ext_read_extent(fd, hip->cached_extents, inode->i_ino,
174 block, HFSPLUS_IS_RSRC(inode) ?
175 HFSPLUS_TYPE_RSRC :
176 HFSPLUS_TYPE_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200178 hip->cached_start = be32_to_cpu(fd->key->ext.start_block);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200179 hip->cached_blocks =
180 hfsplus_ext_block_count(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200182 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100183 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185 return res;
186}
187
188static int hfsplus_ext_read_extent(struct inode *inode, u32 block)
189{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200190 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct hfs_find_data fd;
192 int res;
193
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200194 if (block >= hip->cached_start &&
195 block < hip->cached_start + hip->cached_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return 0;
197
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400198 res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
199 if (!res) {
200 res = __hfsplus_ext_cache_extent(&fd, inode, block);
201 hfs_find_exit(&fd);
202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return res;
204}
205
206/* Get a block at iblock for inode, possibly allocating if create */
207int hfsplus_get_block(struct inode *inode, sector_t iblock,
208 struct buffer_head *bh_result, int create)
209{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200210 struct super_block *sb = inode->i_sb;
211 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200212 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int res = -EIO;
214 u32 ablock, dblock, mask;
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100215 sector_t sector;
Christoph Hellwige3494702010-11-23 14:38:15 +0100216 int was_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int shift;
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /* Convert inode block to disk allocation block */
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200220 shift = sbi->alloc_blksz_shift - sb->s_blocksize_bits;
221 ablock = iblock >> sbi->fs_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200223 if (iblock >= hip->fs_blocks) {
224 if (iblock > hip->fs_blocks || !create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return -EIO;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200226 if (ablock >= hip->alloc_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 res = hfsplus_file_extend(inode);
228 if (res)
229 return res;
230 }
231 } else
232 create = 0;
233
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200234 if (ablock < hip->first_blocks) {
235 dblock = hfsplus_ext_find_block(hip->first_extents, ablock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto done;
237 }
238
Eric Sesterhenn248736c2008-10-18 20:28:02 -0700239 if (inode->i_ino == HFSPLUS_EXT_CNID)
240 return -EIO;
241
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200242 mutex_lock(&hip->extents_lock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100243
244 /*
245 * hfsplus_ext_read_extent will write out a cached extent into
246 * the extents btree. In that case we may have to mark the inode
247 * dirty even for a pure read of an extent here.
248 */
249 was_dirty = (hip->extent_state & HFSPLUS_EXT_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 res = hfsplus_ext_read_extent(inode, ablock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100251 if (res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200252 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return -EIO;
254 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100255 dblock = hfsplus_ext_find_block(hip->cached_extents,
256 ablock - hip->cached_start);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200257 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259done:
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200260 dprint(DBG_EXTENT, "get_block(%lu): %llu - %u\n",
261 inode->i_ino, (long long)iblock, dblock);
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100262
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200263 mask = (1 << sbi->fs_shift) - 1;
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100264 sector = ((sector_t)dblock << sbi->fs_shift) +
265 sbi->blockoffset + (iblock & mask);
266 map_bh(bh_result, sb, sector);
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (create) {
269 set_buffer_new(bh_result);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200270 hip->phys_size += sb->s_blocksize;
271 hip->fs_blocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 inode_add_bytes(inode, sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100274 if (create || was_dirty)
275 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return 0;
277}
278
279static void hfsplus_dump_extent(struct hfsplus_extent *extent)
280{
281 int i;
282
283 dprint(DBG_EXTENT, " ");
284 for (i = 0; i < 8; i++)
285 dprint(DBG_EXTENT, " %u:%u", be32_to_cpu(extent[i].start_block),
286 be32_to_cpu(extent[i].block_count));
287 dprint(DBG_EXTENT, "\n");
288}
289
290static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset,
291 u32 alloc_block, u32 block_count)
292{
293 u32 count, start;
294 int i;
295
296 hfsplus_dump_extent(extent);
297 for (i = 0; i < 8; extent++, i++) {
298 count = be32_to_cpu(extent->block_count);
299 if (offset == count) {
300 start = be32_to_cpu(extent->start_block);
301 if (alloc_block != start + count) {
302 if (++i >= 8)
303 return -ENOSPC;
304 extent++;
305 extent->start_block = cpu_to_be32(alloc_block);
306 } else
307 block_count += count;
308 extent->block_count = cpu_to_be32(block_count);
309 return 0;
310 } else if (offset < count)
311 break;
312 offset -= count;
313 }
314 /* panic? */
315 return -EIO;
316}
317
318static int hfsplus_free_extents(struct super_block *sb,
319 struct hfsplus_extent *extent,
320 u32 offset, u32 block_nr)
321{
322 u32 count, start;
323 int i;
324
325 hfsplus_dump_extent(extent);
326 for (i = 0; i < 8; extent++, i++) {
327 count = be32_to_cpu(extent->block_count);
328 if (offset == count)
329 goto found;
330 else if (offset < count)
331 break;
332 offset -= count;
333 }
334 /* panic? */
335 return -EIO;
336found:
337 for (;;) {
338 start = be32_to_cpu(extent->start_block);
339 if (count <= block_nr) {
340 hfsplus_block_free(sb, start, count);
341 extent->block_count = 0;
342 extent->start_block = 0;
343 block_nr -= count;
344 } else {
345 count -= block_nr;
346 hfsplus_block_free(sb, start + count, block_nr);
347 extent->block_count = cpu_to_be32(count);
348 block_nr = 0;
349 }
350 if (!block_nr || !i)
351 return 0;
352 i--;
353 extent--;
354 count = be32_to_cpu(extent->block_count);
355 }
356}
357
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200358int hfsplus_free_fork(struct super_block *sb, u32 cnid,
359 struct hfsplus_fork_raw *fork, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 struct hfs_find_data fd;
362 hfsplus_extent_rec ext_entry;
363 u32 total_blocks, blocks, start;
364 int res, i;
365
366 total_blocks = be32_to_cpu(fork->total_blocks);
367 if (!total_blocks)
368 return 0;
369
370 blocks = 0;
371 for (i = 0; i < 8; i++)
372 blocks += be32_to_cpu(fork->extents[i].block_count);
373
374 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks);
375 if (res)
376 return res;
377 if (total_blocks == blocks)
378 return 0;
379
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400380 res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
381 if (res)
382 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 do {
384 res = __hfsplus_ext_read_extent(&fd, ext_entry, cnid,
385 total_blocks, type);
386 if (res)
387 break;
388 start = be32_to_cpu(fd.key->ext.start_block);
389 hfsplus_free_extents(sb, ext_entry,
390 total_blocks - start,
391 total_blocks);
392 hfs_brec_remove(&fd);
393 total_blocks = start;
394 } while (total_blocks > blocks);
395 hfs_find_exit(&fd);
396
397 return res;
398}
399
400int hfsplus_file_extend(struct inode *inode)
401{
402 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200403 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200404 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 u32 start, len, goal;
406 int res;
407
Christoph Hellwig10653482011-02-02 09:40:33 -0700408 if (sbi->alloc_file->i_size * 8 <
409 sbi->total_blocks - sbi->free_blocks + 8) {
Anton Salikhmetov21f22962010-12-16 18:08:39 +0200410 /* extend alloc file */
Anton Salikhmetovb2837fc2010-12-16 18:08:41 +0200411 printk(KERN_ERR "hfs: extend alloc file! "
412 "(%llu,%u,%u)\n",
413 sbi->alloc_file->i_size * 8,
414 sbi->total_blocks, sbi->free_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200418 mutex_lock(&hip->extents_lock);
419 if (hip->alloc_blocks == hip->first_blocks)
420 goal = hfsplus_ext_lastblock(hip->first_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200422 res = hfsplus_ext_read_extent(inode, hip->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (res)
424 goto out;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200425 goal = hfsplus_ext_lastblock(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200428 len = hip->clump_blocks;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200429 start = hfsplus_block_allocate(sb, sbi->total_blocks, goal, &len);
430 if (start >= sbi->total_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 start = hfsplus_block_allocate(sb, goal, 0, &len);
432 if (start >= goal) {
433 res = -ENOSPC;
434 goto out;
435 }
436 }
437
438 dprint(DBG_EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200439
440 if (hip->alloc_blocks <= hip->first_blocks) {
441 if (!hip->first_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 dprint(DBG_EXTENT, "first extents\n");
443 /* no extents yet */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200444 hip->first_extents[0].start_block = cpu_to_be32(start);
445 hip->first_extents[0].block_count = cpu_to_be32(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 res = 0;
447 } else {
448 /* try to append to extents in inode */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200449 res = hfsplus_add_extent(hip->first_extents,
450 hip->alloc_blocks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 start, len);
452 if (res == -ENOSPC)
453 goto insert_extent;
454 }
455 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200456 hfsplus_dump_extent(hip->first_extents);
457 hip->first_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200460 res = hfsplus_add_extent(hip->cached_extents,
461 hip->alloc_blocks - hip->cached_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 start, len);
463 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200464 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100465 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200466 hip->cached_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 } else if (res == -ENOSPC)
468 goto insert_extent;
469 }
470out:
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200471 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200473 hip->alloc_blocks += len;
Christoph Hellwige3494702010-11-23 14:38:15 +0100474 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 return res;
477
478insert_extent:
479 dprint(DBG_EXTENT, "insert new extent\n");
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200480 hfsplus_ext_write_extent_locked(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200482 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
483 hip->cached_extents[0].start_block = cpu_to_be32(start);
484 hip->cached_extents[0].block_count = cpu_to_be32(len);
485 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100486 hip->extent_state |= HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200487 hip->cached_start = hip->alloc_blocks;
488 hip->cached_blocks = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 res = 0;
491 goto out;
492}
493
494void hfsplus_file_truncate(struct inode *inode)
495{
496 struct super_block *sb = inode->i_sb;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200497 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 struct hfs_find_data fd;
499 u32 alloc_cnt, blk_cnt, start;
500 int res;
501
Anton Salikhmetovb2837fc2010-12-16 18:08:41 +0200502 dprint(DBG_INODE, "truncate: %lu, %llu -> %llu\n",
503 inode->i_ino, (long long)hip->phys_size,
504 inode->i_size);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200505
506 if (inode->i_size > hip->phys_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct address_space *mapping = inode->i_mapping;
508 struct page *page;
Nick Piggin7c0efc62007-10-16 01:25:09 -0700509 void *fsdata;
510 u32 size = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Nick Piggin7c0efc62007-10-16 01:25:09 -0700512 res = pagecache_write_begin(NULL, mapping, size, 0,
513 AOP_FLAG_UNINTERRUPTIBLE,
514 &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (res)
Nick Piggin7c0efc62007-10-16 01:25:09 -0700516 return;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200517 res = pagecache_write_end(NULL, mapping, size,
518 0, 0, page, fsdata);
Nick Piggin7c0efc62007-10-16 01:25:09 -0700519 if (res < 0)
520 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 mark_inode_dirty(inode);
522 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200523 } else if (inode->i_size == hip->phys_size)
Roman Zippelf76d28d2005-08-01 21:11:40 -0700524 return;
525
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200526 blk_cnt = (inode->i_size + HFSPLUS_SB(sb)->alloc_blksz - 1) >>
527 HFSPLUS_SB(sb)->alloc_blksz_shift;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200528 alloc_cnt = hip->alloc_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (blk_cnt == alloc_cnt)
530 goto out;
531
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200532 mutex_lock(&hip->extents_lock);
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400533 res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
534 if (res) {
535 mutex_unlock(&hip->extents_lock);
536 /* XXX: We lack error handling of hfsplus_file_truncate() */
537 return;
538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 while (1) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200540 if (alloc_cnt == hip->first_blocks) {
541 hfsplus_free_extents(sb, hip->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 alloc_cnt, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200543 hfsplus_dump_extent(hip->first_extents);
544 hip->first_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 break;
546 }
547 res = __hfsplus_ext_cache_extent(&fd, inode, alloc_cnt);
548 if (res)
549 break;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200550 start = hip->cached_start;
551 hfsplus_free_extents(sb, hip->cached_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 alloc_cnt - start, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200553 hfsplus_dump_extent(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (blk_cnt > start) {
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100555 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 break;
557 }
558 alloc_cnt = start;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200559 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100560 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 hfs_brec_remove(&fd);
562 }
563 hfs_find_exit(&fd);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200564 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200566 hip->alloc_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567out:
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200568 hip->phys_size = inode->i_size;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200569 hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >>
570 sb->s_blocksize_bits;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200571 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
Christoph Hellwige3494702010-11-23 14:38:15 +0100572 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}