blob: d93c051559cb880231e8ab165c1ec6176a336aba [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
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -070086static int __hfsplus_ext_write_extent(struct inode *inode,
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020087 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)
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700101 return res;
Ernesto A. Fernández376270e2018-10-30 15:06:14 -0700102 /* Fail early and avoid ENOSPC during the btree operation */
103 res = hfs_bmap_reserve(fd->tree, fd->tree->depth + 1);
104 if (res)
105 return res;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200106 hfs_brec_insert(fd, hip->cached_extents,
107 sizeof(hfsplus_extent_rec));
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100108 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 } else {
110 if (res)
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700111 return res;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200112 hfs_bnode_write(fd->bnode, hip->cached_extents,
113 fd->entryoffset, fd->entrylength);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100114 hip->extent_state &= ~HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100116
117 /*
118 * We can't just use hfsplus_mark_inode_dirty here, because we
119 * also get called from hfsplus_write_inode, which should not
120 * redirty the inode. Instead the callers have to be careful
121 * to explicily mark the inode dirty, too.
122 */
123 set_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags);
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700124
125 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400128static int hfsplus_ext_write_extent_locked(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700130 int res = 0;
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400131
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100132 if (HFSPLUS_I(inode)->extent_state & HFSPLUS_EXT_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 struct hfs_find_data fd;
134
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400135 res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
136 if (res)
137 return res;
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700138 res = __hfsplus_ext_write_extent(inode, &fd);
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400139 hfs_find_exit(&fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700141 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400144int hfsplus_ext_write_extent(struct inode *inode)
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200145{
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400146 int res;
147
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200148 mutex_lock(&HFSPLUS_I(inode)->extents_lock);
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400149 res = hfsplus_ext_write_extent_locked(inode);
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200150 mutex_unlock(&HFSPLUS_I(inode)->extents_lock);
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400151
152 return res;
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,
156 struct hfsplus_extent *extent,
157 u32 cnid, u32 block, u8 type)
158{
159 int res;
160
161 hfsplus_ext_build_key(fd->search_key, cnid, block, type);
162 fd->key->ext.cnid = 0;
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800163 res = hfs_brec_find(fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (res && res != -ENOENT)
165 return res;
166 if (fd->key->ext.cnid != fd->search_key->ext.cnid ||
167 fd->key->ext.fork_type != fd->search_key->ext.fork_type)
168 return -ENOENT;
169 if (fd->entrylength != sizeof(hfsplus_extent_rec))
170 return -EIO;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200171 hfs_bnode_read(fd->bnode, extent, fd->entryoffset,
172 sizeof(hfsplus_extent_rec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return 0;
174}
175
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200176static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd,
177 struct inode *inode, u32 block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200179 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 int res;
181
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200182 WARN_ON(!mutex_is_locked(&hip->extents_lock));
183
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700184 if (hip->extent_state & HFSPLUS_EXT_DIRTY) {
185 res = __hfsplus_ext_write_extent(inode, fd);
186 if (res)
187 return res;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200190 res = __hfsplus_ext_read_extent(fd, hip->cached_extents, inode->i_ino,
191 block, HFSPLUS_IS_RSRC(inode) ?
192 HFSPLUS_TYPE_RSRC :
193 HFSPLUS_TYPE_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200195 hip->cached_start = be32_to_cpu(fd->key->ext.start_block);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200196 hip->cached_blocks =
197 hfsplus_ext_block_count(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200199 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100200 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202 return res;
203}
204
205static int hfsplus_ext_read_extent(struct inode *inode, u32 block)
206{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200207 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 struct hfs_find_data fd;
209 int res;
210
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200211 if (block >= hip->cached_start &&
212 block < hip->cached_start + hip->cached_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return 0;
214
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400215 res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
216 if (!res) {
217 res = __hfsplus_ext_cache_extent(&fd, inode, block);
218 hfs_find_exit(&fd);
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return res;
221}
222
223/* Get a block at iblock for inode, possibly allocating if create */
224int hfsplus_get_block(struct inode *inode, sector_t iblock,
225 struct buffer_head *bh_result, int create)
226{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200227 struct super_block *sb = inode->i_sb;
228 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200229 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int res = -EIO;
231 u32 ablock, dblock, mask;
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100232 sector_t sector;
Christoph Hellwige3494702010-11-23 14:38:15 +0100233 int was_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* Convert inode block to disk allocation block */
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200236 ablock = iblock >> sbi->fs_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200238 if (iblock >= hip->fs_blocks) {
Ernesto A. Fernándezface88e2018-10-30 15:06:21 -0700239 if (!create)
240 return 0;
241 if (iblock > hip->fs_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return -EIO;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200243 if (ablock >= hip->alloc_blocks) {
Sergei Antonov2cd282a2014-06-06 14:36:28 -0700244 res = hfsplus_file_extend(inode, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (res)
246 return res;
247 }
248 } else
249 create = 0;
250
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200251 if (ablock < hip->first_blocks) {
252 dblock = hfsplus_ext_find_block(hip->first_extents, ablock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 goto done;
254 }
255
Eric Sesterhenn248736c2008-10-18 20:28:02 -0700256 if (inode->i_ino == HFSPLUS_EXT_CNID)
257 return -EIO;
258
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200259 mutex_lock(&hip->extents_lock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100260
261 /*
262 * hfsplus_ext_read_extent will write out a cached extent into
263 * the extents btree. In that case we may have to mark the inode
264 * dirty even for a pure read of an extent here.
265 */
266 was_dirty = (hip->extent_state & HFSPLUS_EXT_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 res = hfsplus_ext_read_extent(inode, ablock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100268 if (res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200269 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return -EIO;
271 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100272 dblock = hfsplus_ext_find_block(hip->cached_extents,
273 ablock - hip->cached_start);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200274 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276done:
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700277 hfs_dbg(EXTENT, "get_block(%lu): %llu - %u\n",
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200278 inode->i_ino, (long long)iblock, dblock);
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100279
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200280 mask = (1 << sbi->fs_shift) - 1;
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100281 sector = ((sector_t)dblock << sbi->fs_shift) +
282 sbi->blockoffset + (iblock & mask);
283 map_bh(bh_result, sb, sector);
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (create) {
286 set_buffer_new(bh_result);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200287 hip->phys_size += sb->s_blocksize;
288 hip->fs_blocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 inode_add_bytes(inode, sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100291 if (create || was_dirty)
292 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return 0;
294}
295
296static void hfsplus_dump_extent(struct hfsplus_extent *extent)
297{
298 int i;
299
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700300 hfs_dbg(EXTENT, " ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 for (i = 0; i < 8; i++)
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700302 hfs_dbg_cont(EXTENT, " %u:%u",
303 be32_to_cpu(extent[i].start_block),
304 be32_to_cpu(extent[i].block_count));
305 hfs_dbg_cont(EXTENT, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset,
309 u32 alloc_block, u32 block_count)
310{
311 u32 count, start;
312 int i;
313
314 hfsplus_dump_extent(extent);
315 for (i = 0; i < 8; extent++, i++) {
316 count = be32_to_cpu(extent->block_count);
317 if (offset == count) {
318 start = be32_to_cpu(extent->start_block);
319 if (alloc_block != start + count) {
320 if (++i >= 8)
321 return -ENOSPC;
322 extent++;
323 extent->start_block = cpu_to_be32(alloc_block);
324 } else
325 block_count += count;
326 extent->block_count = cpu_to_be32(block_count);
327 return 0;
328 } else if (offset < count)
329 break;
330 offset -= count;
331 }
332 /* panic? */
333 return -EIO;
334}
335
336static int hfsplus_free_extents(struct super_block *sb,
337 struct hfsplus_extent *extent,
338 u32 offset, u32 block_nr)
339{
340 u32 count, start;
341 int i;
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800342 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 hfsplus_dump_extent(extent);
345 for (i = 0; i < 8; extent++, i++) {
346 count = be32_to_cpu(extent->block_count);
347 if (offset == count)
348 goto found;
349 else if (offset < count)
350 break;
351 offset -= count;
352 }
353 /* panic? */
354 return -EIO;
355found:
356 for (;;) {
357 start = be32_to_cpu(extent->start_block);
358 if (count <= block_nr) {
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800359 err = hfsplus_block_free(sb, start, count);
360 if (err) {
Joe Perchesd6142672013-04-30 15:27:55 -0700361 pr_err("can't free extent\n");
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700362 hfs_dbg(EXTENT, " start: %u count: %u\n",
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800363 start, count);
364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 extent->block_count = 0;
366 extent->start_block = 0;
367 block_nr -= count;
368 } else {
369 count -= block_nr;
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800370 err = hfsplus_block_free(sb, start + count, block_nr);
371 if (err) {
Joe Perchesd6142672013-04-30 15:27:55 -0700372 pr_err("can't free extent\n");
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700373 hfs_dbg(EXTENT, " start: %u count: %u\n",
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800374 start, count);
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 extent->block_count = cpu_to_be32(count);
377 block_nr = 0;
378 }
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800379 if (!block_nr || !i) {
380 /*
381 * Try to free all extents and
382 * return only last error
383 */
384 return err;
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 i--;
387 extent--;
388 count = be32_to_cpu(extent->block_count);
389 }
390}
391
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200392int hfsplus_free_fork(struct super_block *sb, u32 cnid,
393 struct hfsplus_fork_raw *fork, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 struct hfs_find_data fd;
396 hfsplus_extent_rec ext_entry;
397 u32 total_blocks, blocks, start;
398 int res, i;
399
400 total_blocks = be32_to_cpu(fork->total_blocks);
401 if (!total_blocks)
402 return 0;
403
404 blocks = 0;
405 for (i = 0; i < 8; i++)
406 blocks += be32_to_cpu(fork->extents[i].block_count);
407
408 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks);
409 if (res)
410 return res;
411 if (total_blocks == blocks)
412 return 0;
413
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400414 res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
415 if (res)
416 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 do {
418 res = __hfsplus_ext_read_extent(&fd, ext_entry, cnid,
419 total_blocks, type);
420 if (res)
421 break;
422 start = be32_to_cpu(fd.key->ext.start_block);
423 hfsplus_free_extents(sb, ext_entry,
424 total_blocks - start,
425 total_blocks);
426 hfs_brec_remove(&fd);
427 total_blocks = start;
428 } while (total_blocks > blocks);
429 hfs_find_exit(&fd);
430
431 return res;
432}
433
Sergei Antonov2cd282a2014-06-06 14:36:28 -0700434int hfsplus_file_extend(struct inode *inode, bool zeroout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200437 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200438 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 u32 start, len, goal;
440 int res;
441
Christoph Hellwig10653482011-02-02 09:40:33 -0700442 if (sbi->alloc_file->i_size * 8 <
443 sbi->total_blocks - sbi->free_blocks + 8) {
Anton Salikhmetov21f22962010-12-16 18:08:39 +0200444 /* extend alloc file */
Fabian Frederickb73f3d02014-06-06 14:36:31 -0700445 pr_err("extend alloc file! (%llu,%u,%u)\n",
446 sbi->alloc_file->i_size * 8,
447 sbi->total_blocks, sbi->free_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200451 mutex_lock(&hip->extents_lock);
452 if (hip->alloc_blocks == hip->first_blocks)
453 goal = hfsplus_ext_lastblock(hip->first_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200455 res = hfsplus_ext_read_extent(inode, hip->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (res)
457 goto out;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200458 goal = hfsplus_ext_lastblock(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200461 len = hip->clump_blocks;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200462 start = hfsplus_block_allocate(sb, sbi->total_blocks, goal, &len);
463 if (start >= sbi->total_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 start = hfsplus_block_allocate(sb, goal, 0, &len);
465 if (start >= goal) {
466 res = -ENOSPC;
467 goto out;
468 }
469 }
470
Sergei Antonov2cd282a2014-06-06 14:36:28 -0700471 if (zeroout) {
472 res = sb_issue_zeroout(sb, start, len, GFP_NOFS);
473 if (res)
474 goto out;
475 }
476
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700477 hfs_dbg(EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200478
479 if (hip->alloc_blocks <= hip->first_blocks) {
480 if (!hip->first_blocks) {
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700481 hfs_dbg(EXTENT, "first extents\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 /* no extents yet */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200483 hip->first_extents[0].start_block = cpu_to_be32(start);
484 hip->first_extents[0].block_count = cpu_to_be32(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 res = 0;
486 } else {
487 /* try to append to extents in inode */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200488 res = hfsplus_add_extent(hip->first_extents,
489 hip->alloc_blocks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 start, len);
491 if (res == -ENOSPC)
492 goto insert_extent;
493 }
494 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200495 hfsplus_dump_extent(hip->first_extents);
496 hip->first_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200499 res = hfsplus_add_extent(hip->cached_extents,
500 hip->alloc_blocks - hip->cached_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 start, len);
502 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200503 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100504 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200505 hip->cached_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 } else if (res == -ENOSPC)
507 goto insert_extent;
508 }
509out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200511 hip->alloc_blocks += len;
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700512 mutex_unlock(&hip->extents_lock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100513 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700514 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700516 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return res;
518
519insert_extent:
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700520 hfs_dbg(EXTENT, "insert new extent\n");
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400521 res = hfsplus_ext_write_extent_locked(inode);
522 if (res)
523 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200525 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
526 hip->cached_extents[0].start_block = cpu_to_be32(start);
527 hip->cached_extents[0].block_count = cpu_to_be32(len);
528 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100529 hip->extent_state |= HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200530 hip->cached_start = hip->alloc_blocks;
531 hip->cached_blocks = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 res = 0;
534 goto out;
535}
536
537void hfsplus_file_truncate(struct inode *inode)
538{
539 struct super_block *sb = inode->i_sb;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200540 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct hfs_find_data fd;
542 u32 alloc_cnt, blk_cnt, start;
543 int res;
544
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700545 hfs_dbg(INODE, "truncate: %lu, %llu -> %llu\n",
546 inode->i_ino, (long long)hip->phys_size, inode->i_size);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200547
548 if (inode->i_size > hip->phys_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct address_space *mapping = inode->i_mapping;
550 struct page *page;
Nick Piggin7c0efc62007-10-16 01:25:09 -0700551 void *fsdata;
Vyacheslav Dubeyko12f267a2013-04-17 15:58:33 -0700552 loff_t size = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Nick Piggin7c0efc62007-10-16 01:25:09 -0700554 res = pagecache_write_begin(NULL, mapping, size, 0,
555 AOP_FLAG_UNINTERRUPTIBLE,
556 &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (res)
Nick Piggin7c0efc62007-10-16 01:25:09 -0700558 return;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200559 res = pagecache_write_end(NULL, mapping, size,
560 0, 0, page, fsdata);
Nick Piggin7c0efc62007-10-16 01:25:09 -0700561 if (res < 0)
562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 mark_inode_dirty(inode);
564 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200565 } else if (inode->i_size == hip->phys_size)
Roman Zippelf76d28d2005-08-01 21:11:40 -0700566 return;
567
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200568 blk_cnt = (inode->i_size + HFSPLUS_SB(sb)->alloc_blksz - 1) >>
569 HFSPLUS_SB(sb)->alloc_blksz_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200571 mutex_lock(&hip->extents_lock);
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700572
573 alloc_cnt = hip->alloc_blocks;
574 if (blk_cnt == alloc_cnt)
575 goto out_unlock;
576
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400577 res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
578 if (res) {
579 mutex_unlock(&hip->extents_lock);
580 /* XXX: We lack error handling of hfsplus_file_truncate() */
581 return;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 while (1) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200584 if (alloc_cnt == hip->first_blocks) {
585 hfsplus_free_extents(sb, hip->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 alloc_cnt, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200587 hfsplus_dump_extent(hip->first_extents);
588 hip->first_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 break;
590 }
591 res = __hfsplus_ext_cache_extent(&fd, inode, alloc_cnt);
592 if (res)
593 break;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200594 start = hip->cached_start;
595 hfsplus_free_extents(sb, hip->cached_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 alloc_cnt - start, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200597 hfsplus_dump_extent(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (blk_cnt > start) {
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100599 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 break;
601 }
602 alloc_cnt = start;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200603 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100604 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 hfs_brec_remove(&fd);
606 }
607 hfs_find_exit(&fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200609 hip->alloc_blocks = blk_cnt;
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700610out_unlock:
611 mutex_unlock(&hip->extents_lock);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200612 hip->phys_size = inode->i_size;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200613 hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >>
614 sb->s_blocksize_bits;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200615 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
Christoph Hellwige3494702010-11-23 14:38:15 +0100616 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}