blob: 43658c6694c82c69a27338cafd20dd8e82204f97 [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
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -080098 res = hfs_brec_find(fd, hfs_find_rec_by_key);
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
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400122static int hfsplus_ext_write_extent_locked(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400124 int res;
125
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100126 if (HFSPLUS_I(inode)->extent_state & HFSPLUS_EXT_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 struct hfs_find_data fd;
128
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400129 res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
130 if (res)
131 return res;
132 __hfsplus_ext_write_extent(inode, &fd);
133 hfs_find_exit(&fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400135 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400138int hfsplus_ext_write_extent(struct inode *inode)
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200139{
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400140 int res;
141
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200142 mutex_lock(&HFSPLUS_I(inode)->extents_lock);
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400143 res = hfsplus_ext_write_extent_locked(inode);
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200144 mutex_unlock(&HFSPLUS_I(inode)->extents_lock);
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400145
146 return res;
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,
150 struct hfsplus_extent *extent,
151 u32 cnid, u32 block, u8 type)
152{
153 int res;
154
155 hfsplus_ext_build_key(fd->search_key, cnid, block, type);
156 fd->key->ext.cnid = 0;
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800157 res = hfs_brec_find(fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (res && res != -ENOENT)
159 return res;
160 if (fd->key->ext.cnid != fd->search_key->ext.cnid ||
161 fd->key->ext.fork_type != fd->search_key->ext.fork_type)
162 return -ENOENT;
163 if (fd->entrylength != sizeof(hfsplus_extent_rec))
164 return -EIO;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200165 hfs_bnode_read(fd->bnode, extent, fd->entryoffset,
166 sizeof(hfsplus_extent_rec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return 0;
168}
169
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200170static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd,
171 struct inode *inode, u32 block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200173 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 int res;
175
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200176 WARN_ON(!mutex_is_locked(&hip->extents_lock));
177
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100178 if (hip->extent_state & HFSPLUS_EXT_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 __hfsplus_ext_write_extent(inode, fd);
180
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200181 res = __hfsplus_ext_read_extent(fd, hip->cached_extents, inode->i_ino,
182 block, HFSPLUS_IS_RSRC(inode) ?
183 HFSPLUS_TYPE_RSRC :
184 HFSPLUS_TYPE_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200186 hip->cached_start = be32_to_cpu(fd->key->ext.start_block);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200187 hip->cached_blocks =
188 hfsplus_ext_block_count(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200190 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100191 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193 return res;
194}
195
196static int hfsplus_ext_read_extent(struct inode *inode, u32 block)
197{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200198 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct hfs_find_data fd;
200 int res;
201
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200202 if (block >= hip->cached_start &&
203 block < hip->cached_start + hip->cached_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return 0;
205
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400206 res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
207 if (!res) {
208 res = __hfsplus_ext_cache_extent(&fd, inode, block);
209 hfs_find_exit(&fd);
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return res;
212}
213
214/* Get a block at iblock for inode, possibly allocating if create */
215int hfsplus_get_block(struct inode *inode, sector_t iblock,
216 struct buffer_head *bh_result, int create)
217{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200218 struct super_block *sb = inode->i_sb;
219 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200220 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 int res = -EIO;
222 u32 ablock, dblock, mask;
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100223 sector_t sector;
Christoph Hellwige3494702010-11-23 14:38:15 +0100224 int was_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 int shift;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* Convert inode block to disk allocation block */
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200228 shift = sbi->alloc_blksz_shift - sb->s_blocksize_bits;
229 ablock = iblock >> sbi->fs_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200231 if (iblock >= hip->fs_blocks) {
232 if (iblock > hip->fs_blocks || !create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return -EIO;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200234 if (ablock >= hip->alloc_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 res = hfsplus_file_extend(inode);
236 if (res)
237 return res;
238 }
239 } else
240 create = 0;
241
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200242 if (ablock < hip->first_blocks) {
243 dblock = hfsplus_ext_find_block(hip->first_extents, ablock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 goto done;
245 }
246
Eric Sesterhenn248736c2008-10-18 20:28:02 -0700247 if (inode->i_ino == HFSPLUS_EXT_CNID)
248 return -EIO;
249
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200250 mutex_lock(&hip->extents_lock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100251
252 /*
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.
256 */
257 was_dirty = (hip->extent_state & HFSPLUS_EXT_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 res = hfsplus_ext_read_extent(inode, ablock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100259 if (res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200260 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return -EIO;
262 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100263 dblock = hfsplus_ext_find_block(hip->cached_extents,
264 ablock - hip->cached_start);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200265 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267done:
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700268 hfs_dbg(EXTENT, "get_block(%lu): %llu - %u\n",
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200269 inode->i_ino, (long long)iblock, dblock);
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100270
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200271 mask = (1 << sbi->fs_shift) - 1;
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100272 sector = ((sector_t)dblock << sbi->fs_shift) +
273 sbi->blockoffset + (iblock & mask);
274 map_bh(bh_result, sb, sector);
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (create) {
277 set_buffer_new(bh_result);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200278 hip->phys_size += sb->s_blocksize;
279 hip->fs_blocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 inode_add_bytes(inode, sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100282 if (create || was_dirty)
283 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return 0;
285}
286
287static void hfsplus_dump_extent(struct hfsplus_extent *extent)
288{
289 int i;
290
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700291 hfs_dbg(EXTENT, " ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 for (i = 0; i < 8; i++)
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700293 hfs_dbg_cont(EXTENT, " %u:%u",
294 be32_to_cpu(extent[i].start_block),
295 be32_to_cpu(extent[i].block_count));
296 hfs_dbg_cont(EXTENT, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset,
300 u32 alloc_block, u32 block_count)
301{
302 u32 count, start;
303 int i;
304
305 hfsplus_dump_extent(extent);
306 for (i = 0; i < 8; extent++, i++) {
307 count = be32_to_cpu(extent->block_count);
308 if (offset == count) {
309 start = be32_to_cpu(extent->start_block);
310 if (alloc_block != start + count) {
311 if (++i >= 8)
312 return -ENOSPC;
313 extent++;
314 extent->start_block = cpu_to_be32(alloc_block);
315 } else
316 block_count += count;
317 extent->block_count = cpu_to_be32(block_count);
318 return 0;
319 } else if (offset < count)
320 break;
321 offset -= count;
322 }
323 /* panic? */
324 return -EIO;
325}
326
327static int hfsplus_free_extents(struct super_block *sb,
328 struct hfsplus_extent *extent,
329 u32 offset, u32 block_nr)
330{
331 u32 count, start;
332 int i;
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800333 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 hfsplus_dump_extent(extent);
336 for (i = 0; i < 8; extent++, i++) {
337 count = be32_to_cpu(extent->block_count);
338 if (offset == count)
339 goto found;
340 else if (offset < count)
341 break;
342 offset -= count;
343 }
344 /* panic? */
345 return -EIO;
346found:
347 for (;;) {
348 start = be32_to_cpu(extent->start_block);
349 if (count <= block_nr) {
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800350 err = hfsplus_block_free(sb, start, count);
351 if (err) {
Joe Perchesd6142672013-04-30 15:27:55 -0700352 pr_err("can't free extent\n");
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700353 hfs_dbg(EXTENT, " start: %u count: %u\n",
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800354 start, count);
355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 extent->block_count = 0;
357 extent->start_block = 0;
358 block_nr -= count;
359 } else {
360 count -= block_nr;
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800361 err = hfsplus_block_free(sb, start + count, block_nr);
362 if (err) {
Joe Perchesd6142672013-04-30 15:27:55 -0700363 pr_err("can't free extent\n");
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700364 hfs_dbg(EXTENT, " start: %u count: %u\n",
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800365 start, count);
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 extent->block_count = cpu_to_be32(count);
368 block_nr = 0;
369 }
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800370 if (!block_nr || !i) {
371 /*
372 * Try to free all extents and
373 * return only last error
374 */
375 return err;
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 i--;
378 extent--;
379 count = be32_to_cpu(extent->block_count);
380 }
381}
382
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200383int hfsplus_free_fork(struct super_block *sb, u32 cnid,
384 struct hfsplus_fork_raw *fork, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct hfs_find_data fd;
387 hfsplus_extent_rec ext_entry;
388 u32 total_blocks, blocks, start;
389 int res, i;
390
391 total_blocks = be32_to_cpu(fork->total_blocks);
392 if (!total_blocks)
393 return 0;
394
395 blocks = 0;
396 for (i = 0; i < 8; i++)
397 blocks += be32_to_cpu(fork->extents[i].block_count);
398
399 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks);
400 if (res)
401 return res;
402 if (total_blocks == blocks)
403 return 0;
404
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400405 res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
406 if (res)
407 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 do {
409 res = __hfsplus_ext_read_extent(&fd, ext_entry, cnid,
410 total_blocks, type);
411 if (res)
412 break;
413 start = be32_to_cpu(fd.key->ext.start_block);
414 hfsplus_free_extents(sb, ext_entry,
415 total_blocks - start,
416 total_blocks);
417 hfs_brec_remove(&fd);
418 total_blocks = start;
419 } while (total_blocks > blocks);
420 hfs_find_exit(&fd);
421
422 return res;
423}
424
425int hfsplus_file_extend(struct inode *inode)
426{
427 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200428 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200429 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 u32 start, len, goal;
431 int res;
432
Christoph Hellwig10653482011-02-02 09:40:33 -0700433 if (sbi->alloc_file->i_size * 8 <
434 sbi->total_blocks - sbi->free_blocks + 8) {
Anton Salikhmetov21f22962010-12-16 18:08:39 +0200435 /* extend alloc file */
Joe Perchesd6142672013-04-30 15:27:55 -0700436 pr_err("extend alloc file! "
Anton Salikhmetovb2837fc2010-12-16 18:08:41 +0200437 "(%llu,%u,%u)\n",
438 sbi->alloc_file->i_size * 8,
439 sbi->total_blocks, sbi->free_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200443 mutex_lock(&hip->extents_lock);
444 if (hip->alloc_blocks == hip->first_blocks)
445 goal = hfsplus_ext_lastblock(hip->first_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200447 res = hfsplus_ext_read_extent(inode, hip->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (res)
449 goto out;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200450 goal = hfsplus_ext_lastblock(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200453 len = hip->clump_blocks;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200454 start = hfsplus_block_allocate(sb, sbi->total_blocks, goal, &len);
455 if (start >= sbi->total_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 start = hfsplus_block_allocate(sb, goal, 0, &len);
457 if (start >= goal) {
458 res = -ENOSPC;
459 goto out;
460 }
461 }
462
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700463 hfs_dbg(EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200464
465 if (hip->alloc_blocks <= hip->first_blocks) {
466 if (!hip->first_blocks) {
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700467 hfs_dbg(EXTENT, "first extents\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /* no extents yet */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200469 hip->first_extents[0].start_block = cpu_to_be32(start);
470 hip->first_extents[0].block_count = cpu_to_be32(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 res = 0;
472 } else {
473 /* try to append to extents in inode */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200474 res = hfsplus_add_extent(hip->first_extents,
475 hip->alloc_blocks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 start, len);
477 if (res == -ENOSPC)
478 goto insert_extent;
479 }
480 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200481 hfsplus_dump_extent(hip->first_extents);
482 hip->first_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200485 res = hfsplus_add_extent(hip->cached_extents,
486 hip->alloc_blocks - hip->cached_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 start, len);
488 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200489 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100490 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200491 hip->cached_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 } else if (res == -ENOSPC)
493 goto insert_extent;
494 }
495out:
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200496 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200498 hip->alloc_blocks += len;
Christoph Hellwige3494702010-11-23 14:38:15 +0100499 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501 return res;
502
503insert_extent:
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700504 hfs_dbg(EXTENT, "insert new extent\n");
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400505 res = hfsplus_ext_write_extent_locked(inode);
506 if (res)
507 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200509 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
510 hip->cached_extents[0].start_block = cpu_to_be32(start);
511 hip->cached_extents[0].block_count = cpu_to_be32(len);
512 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100513 hip->extent_state |= HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200514 hip->cached_start = hip->alloc_blocks;
515 hip->cached_blocks = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 res = 0;
518 goto out;
519}
520
521void hfsplus_file_truncate(struct inode *inode)
522{
523 struct super_block *sb = inode->i_sb;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200524 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 struct hfs_find_data fd;
526 u32 alloc_cnt, blk_cnt, start;
527 int res;
528
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700529 hfs_dbg(INODE, "truncate: %lu, %llu -> %llu\n",
530 inode->i_ino, (long long)hip->phys_size, inode->i_size);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200531
532 if (inode->i_size > hip->phys_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 struct address_space *mapping = inode->i_mapping;
534 struct page *page;
Nick Piggin7c0efc62007-10-16 01:25:09 -0700535 void *fsdata;
Vyacheslav Dubeyko12f267a2013-04-17 15:58:33 -0700536 loff_t size = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Nick Piggin7c0efc62007-10-16 01:25:09 -0700538 res = pagecache_write_begin(NULL, mapping, size, 0,
539 AOP_FLAG_UNINTERRUPTIBLE,
540 &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (res)
Nick Piggin7c0efc62007-10-16 01:25:09 -0700542 return;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200543 res = pagecache_write_end(NULL, mapping, size,
544 0, 0, page, fsdata);
Nick Piggin7c0efc62007-10-16 01:25:09 -0700545 if (res < 0)
546 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 mark_inode_dirty(inode);
548 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200549 } else if (inode->i_size == hip->phys_size)
Roman Zippelf76d28d2005-08-01 21:11:40 -0700550 return;
551
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200552 blk_cnt = (inode->i_size + HFSPLUS_SB(sb)->alloc_blksz - 1) >>
553 HFSPLUS_SB(sb)->alloc_blksz_shift;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200554 alloc_cnt = hip->alloc_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (blk_cnt == alloc_cnt)
556 goto out;
557
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200558 mutex_lock(&hip->extents_lock);
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400559 res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
560 if (res) {
561 mutex_unlock(&hip->extents_lock);
562 /* XXX: We lack error handling of hfsplus_file_truncate() */
563 return;
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 while (1) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200566 if (alloc_cnt == hip->first_blocks) {
567 hfsplus_free_extents(sb, hip->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 alloc_cnt, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200569 hfsplus_dump_extent(hip->first_extents);
570 hip->first_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
572 }
573 res = __hfsplus_ext_cache_extent(&fd, inode, alloc_cnt);
574 if (res)
575 break;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200576 start = hip->cached_start;
577 hfsplus_free_extents(sb, hip->cached_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 alloc_cnt - start, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200579 hfsplus_dump_extent(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (blk_cnt > start) {
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100581 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 break;
583 }
584 alloc_cnt = start;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200585 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100586 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 hfs_brec_remove(&fd);
588 }
589 hfs_find_exit(&fd);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200590 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200592 hip->alloc_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593out:
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200594 hip->phys_size = inode->i_size;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200595 hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >>
596 sb->s_blocksize_bits;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200597 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
Christoph Hellwige3494702010-11-23 14:38:15 +0100598 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}