blob: a930ddd156819caf54635655382d27ab5998fab9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/hfsplus/extents.c
4 *
5 * Copyright (C) 2001
6 * Brad Boyer (flar@allandria.com)
7 * (C) 2003 Ardis Technologies <roman@ardistech.com>
8 *
9 * Handling of Extents both in catalog and extents overflow trees
10 */
11
12#include <linux/errno.h>
13#include <linux/fs.h>
14#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include "hfsplus_fs.h"
17#include "hfsplus_raw.h"
18
19/* Compare two extents keys, returns 0 on same, pos/neg for difference */
David Elliott2179d372006-01-18 17:43:08 -080020int hfsplus_ext_cmp_key(const hfsplus_btree_key *k1,
21 const hfsplus_btree_key *k2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
23 __be32 k1id, k2id;
24 __be32 k1s, k2s;
25
26 k1id = k1->ext.cnid;
27 k2id = k2->ext.cnid;
28 if (k1id != k2id)
29 return be32_to_cpu(k1id) < be32_to_cpu(k2id) ? -1 : 1;
30
31 if (k1->ext.fork_type != k2->ext.fork_type)
32 return k1->ext.fork_type < k2->ext.fork_type ? -1 : 1;
33
34 k1s = k1->ext.start_block;
35 k2s = k2->ext.start_block;
36 if (k1s == k2s)
37 return 0;
38 return be32_to_cpu(k1s) < be32_to_cpu(k2s) ? -1 : 1;
39}
40
41static void hfsplus_ext_build_key(hfsplus_btree_key *key, u32 cnid,
42 u32 block, u8 type)
43{
44 key->key_len = cpu_to_be16(HFSPLUS_EXT_KEYLEN - 2);
45 key->ext.cnid = cpu_to_be32(cnid);
46 key->ext.start_block = cpu_to_be32(block);
47 key->ext.fork_type = type;
48 key->ext.pad = 0;
49}
50
51static u32 hfsplus_ext_find_block(struct hfsplus_extent *ext, u32 off)
52{
53 int i;
54 u32 count;
55
56 for (i = 0; i < 8; ext++, i++) {
57 count = be32_to_cpu(ext->block_count);
58 if (off < count)
59 return be32_to_cpu(ext->start_block) + off;
60 off -= count;
61 }
62 /* panic? */
63 return 0;
64}
65
66static int hfsplus_ext_block_count(struct hfsplus_extent *ext)
67{
68 int i;
69 u32 count = 0;
70
71 for (i = 0; i < 8; ext++, i++)
72 count += be32_to_cpu(ext->block_count);
73 return count;
74}
75
76static u32 hfsplus_ext_lastblock(struct hfsplus_extent *ext)
77{
78 int i;
79
80 ext += 7;
81 for (i = 0; i < 7; ext--, i++)
82 if (ext->block_count)
83 break;
84 return be32_to_cpu(ext->start_block) + be32_to_cpu(ext->block_count);
85}
86
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -070087static int __hfsplus_ext_write_extent(struct inode *inode,
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020088 struct hfs_find_data *fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Christoph Hellwig6af502d2010-10-01 05:43:31 +020090 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int res;
92
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +020093 WARN_ON(!mutex_is_locked(&hip->extents_lock));
94
Christoph Hellwig6af502d2010-10-01 05:43:31 +020095 hfsplus_ext_build_key(fd->search_key, inode->i_ino, hip->cached_start,
96 HFSPLUS_IS_RSRC(inode) ?
97 HFSPLUS_TYPE_RSRC : HFSPLUS_TYPE_DATA);
98
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -080099 res = hfs_brec_find(fd, hfs_find_rec_by_key);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100100 if (hip->extent_state & HFSPLUS_EXT_NEW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (res != -ENOENT)
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700102 return res;
Ernesto A. Fernándezd92915c2018-10-30 15:06:14 -0700103 /* Fail early and avoid ENOSPC during the btree operation */
104 res = hfs_bmap_reserve(fd->tree, fd->tree->depth + 1);
105 if (res)
106 return res;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200107 hfs_brec_insert(fd, hip->cached_extents,
108 sizeof(hfsplus_extent_rec));
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100109 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 } else {
111 if (res)
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700112 return res;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200113 hfs_bnode_write(fd->bnode, hip->cached_extents,
114 fd->entryoffset, fd->entrylength);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100115 hip->extent_state &= ~HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100117
118 /*
119 * We can't just use hfsplus_mark_inode_dirty here, because we
120 * also get called from hfsplus_write_inode, which should not
121 * redirty the inode. Instead the callers have to be careful
122 * to explicily mark the inode dirty, too.
123 */
124 set_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags);
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700125
126 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400129static int hfsplus_ext_write_extent_locked(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700131 int res = 0;
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400132
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100133 if (HFSPLUS_I(inode)->extent_state & HFSPLUS_EXT_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 struct hfs_find_data fd;
135
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400136 res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
137 if (res)
138 return res;
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700139 res = __hfsplus_ext_write_extent(inode, &fd);
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400140 hfs_find_exit(&fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700142 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400145int hfsplus_ext_write_extent(struct inode *inode)
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200146{
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400147 int res;
148
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200149 mutex_lock(&HFSPLUS_I(inode)->extents_lock);
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400150 res = hfsplus_ext_write_extent_locked(inode);
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200151 mutex_unlock(&HFSPLUS_I(inode)->extents_lock);
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400152
153 return res;
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,
157 struct hfsplus_extent *extent,
158 u32 cnid, u32 block, u8 type)
159{
160 int res;
161
162 hfsplus_ext_build_key(fd->search_key, cnid, block, type);
163 fd->key->ext.cnid = 0;
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800164 res = hfs_brec_find(fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (res && res != -ENOENT)
166 return res;
167 if (fd->key->ext.cnid != fd->search_key->ext.cnid ||
168 fd->key->ext.fork_type != fd->search_key->ext.fork_type)
169 return -ENOENT;
170 if (fd->entrylength != sizeof(hfsplus_extent_rec))
171 return -EIO;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200172 hfs_bnode_read(fd->bnode, extent, fd->entryoffset,
173 sizeof(hfsplus_extent_rec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return 0;
175}
176
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200177static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd,
178 struct inode *inode, u32 block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200180 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int res;
182
Christoph Hellwig7fcc99f2010-10-01 05:46:31 +0200183 WARN_ON(!mutex_is_locked(&hip->extents_lock));
184
Alexey Khoroshilovd7a475d2013-04-30 15:27:56 -0700185 if (hip->extent_state & HFSPLUS_EXT_DIRTY) {
186 res = __hfsplus_ext_write_extent(inode, fd);
187 if (res)
188 return res;
189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200191 res = __hfsplus_ext_read_extent(fd, hip->cached_extents, inode->i_ino,
192 block, HFSPLUS_IS_RSRC(inode) ?
193 HFSPLUS_TYPE_RSRC :
194 HFSPLUS_TYPE_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200196 hip->cached_start = be32_to_cpu(fd->key->ext.start_block);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200197 hip->cached_blocks =
198 hfsplus_ext_block_count(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200200 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100201 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203 return res;
204}
205
206static int hfsplus_ext_read_extent(struct inode *inode, u32 block)
207{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200208 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct hfs_find_data fd;
210 int res;
211
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200212 if (block >= hip->cached_start &&
213 block < hip->cached_start + hip->cached_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
215
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400216 res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
217 if (!res) {
218 res = __hfsplus_ext_cache_extent(&fd, inode, block);
219 hfs_find_exit(&fd);
220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return res;
222}
223
224/* Get a block at iblock for inode, possibly allocating if create */
225int hfsplus_get_block(struct inode *inode, sector_t iblock,
226 struct buffer_head *bh_result, int create)
227{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200228 struct super_block *sb = inode->i_sb;
229 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200230 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 int res = -EIO;
232 u32 ablock, dblock, mask;
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100233 sector_t sector;
Christoph Hellwige3494702010-11-23 14:38:15 +0100234 int was_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* Convert inode block to disk allocation block */
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200237 ablock = iblock >> sbi->fs_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200239 if (iblock >= hip->fs_blocks) {
Ernesto A. Fernández839c3a6a2018-10-30 15:06:21 -0700240 if (!create)
241 return 0;
242 if (iblock > hip->fs_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return -EIO;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200244 if (ablock >= hip->alloc_blocks) {
Sergei Antonov2cd282a2014-06-06 14:36:28 -0700245 res = hfsplus_file_extend(inode, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (res)
247 return res;
248 }
249 } else
250 create = 0;
251
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200252 if (ablock < hip->first_blocks) {
253 dblock = hfsplus_ext_find_block(hip->first_extents, ablock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 goto done;
255 }
256
Eric Sesterhenn248736c2008-10-18 20:28:02 -0700257 if (inode->i_ino == HFSPLUS_EXT_CNID)
258 return -EIO;
259
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200260 mutex_lock(&hip->extents_lock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100261
262 /*
263 * hfsplus_ext_read_extent will write out a cached extent into
264 * the extents btree. In that case we may have to mark the inode
265 * dirty even for a pure read of an extent here.
266 */
267 was_dirty = (hip->extent_state & HFSPLUS_EXT_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 res = hfsplus_ext_read_extent(inode, ablock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100269 if (res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200270 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return -EIO;
272 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100273 dblock = hfsplus_ext_find_block(hip->cached_extents,
274 ablock - hip->cached_start);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200275 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277done:
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700278 hfs_dbg(EXTENT, "get_block(%lu): %llu - %u\n",
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200279 inode->i_ino, (long long)iblock, dblock);
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100280
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200281 mask = (1 << sbi->fs_shift) - 1;
Christoph Hellwigbf1a1b32011-02-16 09:34:17 +0100282 sector = ((sector_t)dblock << sbi->fs_shift) +
283 sbi->blockoffset + (iblock & mask);
284 map_bh(bh_result, sb, sector);
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (create) {
287 set_buffer_new(bh_result);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200288 hip->phys_size += sb->s_blocksize;
289 hip->fs_blocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 inode_add_bytes(inode, sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100292 if (create || was_dirty)
293 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return 0;
295}
296
297static void hfsplus_dump_extent(struct hfsplus_extent *extent)
298{
299 int i;
300
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700301 hfs_dbg(EXTENT, " ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 for (i = 0; i < 8; i++)
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700303 hfs_dbg_cont(EXTENT, " %u:%u",
304 be32_to_cpu(extent[i].start_block),
305 be32_to_cpu(extent[i].block_count));
306 hfs_dbg_cont(EXTENT, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset,
310 u32 alloc_block, u32 block_count)
311{
312 u32 count, start;
313 int i;
314
315 hfsplus_dump_extent(extent);
316 for (i = 0; i < 8; extent++, i++) {
317 count = be32_to_cpu(extent->block_count);
318 if (offset == count) {
319 start = be32_to_cpu(extent->start_block);
320 if (alloc_block != start + count) {
321 if (++i >= 8)
322 return -ENOSPC;
323 extent++;
324 extent->start_block = cpu_to_be32(alloc_block);
325 } else
326 block_count += count;
327 extent->block_count = cpu_to_be32(block_count);
328 return 0;
329 } else if (offset < count)
330 break;
331 offset -= count;
332 }
333 /* panic? */
334 return -EIO;
335}
336
337static int hfsplus_free_extents(struct super_block *sb,
338 struct hfsplus_extent *extent,
339 u32 offset, u32 block_nr)
340{
341 u32 count, start;
342 int i;
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800343 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Ernesto A. Fernández31651c62018-08-21 21:59:16 -0700345 /* Mapping the allocation file may lock the extent tree */
346 WARN_ON(mutex_is_locked(&HFSPLUS_SB(sb)->ext_tree->tree_lock));
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 hfsplus_dump_extent(extent);
349 for (i = 0; i < 8; extent++, i++) {
350 count = be32_to_cpu(extent->block_count);
351 if (offset == count)
352 goto found;
353 else if (offset < count)
354 break;
355 offset -= count;
356 }
357 /* panic? */
358 return -EIO;
359found:
360 for (;;) {
361 start = be32_to_cpu(extent->start_block);
362 if (count <= block_nr) {
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800363 err = hfsplus_block_free(sb, start, count);
364 if (err) {
Joe Perchesd6142672013-04-30 15:27:55 -0700365 pr_err("can't free extent\n");
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700366 hfs_dbg(EXTENT, " start: %u count: %u\n",
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800367 start, count);
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 extent->block_count = 0;
370 extent->start_block = 0;
371 block_nr -= count;
372 } else {
373 count -= block_nr;
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800374 err = hfsplus_block_free(sb, start + count, block_nr);
375 if (err) {
Joe Perchesd6142672013-04-30 15:27:55 -0700376 pr_err("can't free extent\n");
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700377 hfs_dbg(EXTENT, " start: %u count: %u\n",
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800378 start, count);
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 extent->block_count = cpu_to_be32(count);
381 block_nr = 0;
382 }
Vyacheslav Dubeyko1b243fd2012-12-20 15:05:25 -0800383 if (!block_nr || !i) {
384 /*
385 * Try to free all extents and
386 * return only last error
387 */
388 return err;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 i--;
391 extent--;
392 count = be32_to_cpu(extent->block_count);
393 }
394}
395
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200396int hfsplus_free_fork(struct super_block *sb, u32 cnid,
397 struct hfsplus_fork_raw *fork, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 struct hfs_find_data fd;
400 hfsplus_extent_rec ext_entry;
401 u32 total_blocks, blocks, start;
402 int res, i;
403
404 total_blocks = be32_to_cpu(fork->total_blocks);
405 if (!total_blocks)
406 return 0;
407
408 blocks = 0;
409 for (i = 0; i < 8; i++)
410 blocks += be32_to_cpu(fork->extents[i].block_count);
411
412 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks);
413 if (res)
414 return res;
415 if (total_blocks == blocks)
416 return 0;
417
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400418 res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
419 if (res)
420 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 do {
422 res = __hfsplus_ext_read_extent(&fd, ext_entry, cnid,
423 total_blocks, type);
424 if (res)
425 break;
426 start = be32_to_cpu(fd.key->ext.start_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 hfs_brec_remove(&fd);
Ernesto A. Fernández31651c62018-08-21 21:59:16 -0700428
429 mutex_unlock(&fd.tree->tree_lock);
430 hfsplus_free_extents(sb, ext_entry, total_blocks - start,
431 total_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 total_blocks = start;
Ernesto A. Fernández31651c62018-08-21 21:59:16 -0700433 mutex_lock(&fd.tree->tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 } while (total_blocks > blocks);
435 hfs_find_exit(&fd);
436
437 return res;
438}
439
Sergei Antonov2cd282a2014-06-06 14:36:28 -0700440int hfsplus_file_extend(struct inode *inode, bool zeroout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200443 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200444 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 u32 start, len, goal;
446 int res;
447
Christoph Hellwig1065348d2011-02-02 09:40:33 -0700448 if (sbi->alloc_file->i_size * 8 <
449 sbi->total_blocks - sbi->free_blocks + 8) {
Anton Salikhmetov21f22962010-12-16 18:08:39 +0200450 /* extend alloc file */
Fabian Frederickb73f3d02014-06-06 14:36:31 -0700451 pr_err("extend alloc file! (%llu,%u,%u)\n",
452 sbi->alloc_file->i_size * 8,
453 sbi->total_blocks, sbi->free_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200457 mutex_lock(&hip->extents_lock);
458 if (hip->alloc_blocks == hip->first_blocks)
459 goal = hfsplus_ext_lastblock(hip->first_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200461 res = hfsplus_ext_read_extent(inode, hip->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (res)
463 goto out;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200464 goal = hfsplus_ext_lastblock(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200467 len = hip->clump_blocks;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200468 start = hfsplus_block_allocate(sb, sbi->total_blocks, goal, &len);
469 if (start >= sbi->total_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 start = hfsplus_block_allocate(sb, goal, 0, &len);
471 if (start >= goal) {
472 res = -ENOSPC;
473 goto out;
474 }
475 }
476
Sergei Antonov2cd282a2014-06-06 14:36:28 -0700477 if (zeroout) {
478 res = sb_issue_zeroout(sb, start, len, GFP_NOFS);
479 if (res)
480 goto out;
481 }
482
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700483 hfs_dbg(EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200484
485 if (hip->alloc_blocks <= hip->first_blocks) {
486 if (!hip->first_blocks) {
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700487 hfs_dbg(EXTENT, "first extents\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* no extents yet */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200489 hip->first_extents[0].start_block = cpu_to_be32(start);
490 hip->first_extents[0].block_count = cpu_to_be32(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 res = 0;
492 } else {
493 /* try to append to extents in inode */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200494 res = hfsplus_add_extent(hip->first_extents,
495 hip->alloc_blocks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 start, len);
497 if (res == -ENOSPC)
498 goto insert_extent;
499 }
500 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200501 hfsplus_dump_extent(hip->first_extents);
502 hip->first_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200505 res = hfsplus_add_extent(hip->cached_extents,
506 hip->alloc_blocks - hip->cached_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 start, len);
508 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200509 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100510 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200511 hip->cached_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 } else if (res == -ENOSPC)
513 goto insert_extent;
514 }
515out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200517 hip->alloc_blocks += len;
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700518 mutex_unlock(&hip->extents_lock);
Christoph Hellwige3494702010-11-23 14:38:15 +0100519 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700522 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return res;
524
525insert_extent:
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700526 hfs_dbg(EXTENT, "insert new extent\n");
Alexey Khoroshilovdd7f3d52011-07-06 02:30:00 +0400527 res = hfsplus_ext_write_extent_locked(inode);
528 if (res)
529 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200531 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
532 hip->cached_extents[0].start_block = cpu_to_be32(start);
533 hip->cached_extents[0].block_count = cpu_to_be32(len);
534 hfsplus_dump_extent(hip->cached_extents);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100535 hip->extent_state |= HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200536 hip->cached_start = hip->alloc_blocks;
537 hip->cached_blocks = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 res = 0;
540 goto out;
541}
542
543void hfsplus_file_truncate(struct inode *inode)
544{
545 struct super_block *sb = inode->i_sb;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200546 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct hfs_find_data fd;
548 u32 alloc_cnt, blk_cnt, start;
549 int res;
550
Joe Perchesc2b3e1f2013-04-30 15:27:54 -0700551 hfs_dbg(INODE, "truncate: %lu, %llu -> %llu\n",
552 inode->i_ino, (long long)hip->phys_size, inode->i_size);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200553
554 if (inode->i_size > hip->phys_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct address_space *mapping = inode->i_mapping;
556 struct page *page;
Nick Piggin7c0efc62007-10-16 01:25:09 -0700557 void *fsdata;
Vyacheslav Dubeyko12f267a2013-04-17 15:58:33 -0700558 loff_t size = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Tetsuo Handac718a972017-05-08 15:58:59 -0700560 res = pagecache_write_begin(NULL, mapping, size, 0, 0,
561 &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (res)
Nick Piggin7c0efc62007-10-16 01:25:09 -0700563 return;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200564 res = pagecache_write_end(NULL, mapping, size,
565 0, 0, page, fsdata);
Nick Piggin7c0efc62007-10-16 01:25:09 -0700566 if (res < 0)
567 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 mark_inode_dirty(inode);
569 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200570 } else if (inode->i_size == hip->phys_size)
Roman Zippelf76d28d2005-08-01 21:11:40 -0700571 return;
572
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200573 blk_cnt = (inode->i_size + HFSPLUS_SB(sb)->alloc_blksz - 1) >>
574 HFSPLUS_SB(sb)->alloc_blksz_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200576 mutex_lock(&hip->extents_lock);
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700577
578 alloc_cnt = hip->alloc_blocks;
579 if (blk_cnt == alloc_cnt)
580 goto out_unlock;
581
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400582 res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
583 if (res) {
584 mutex_unlock(&hip->extents_lock);
585 /* XXX: We lack error handling of hfsplus_file_truncate() */
586 return;
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 while (1) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200589 if (alloc_cnt == hip->first_blocks) {
Ernesto A. Fernández31651c62018-08-21 21:59:16 -0700590 mutex_unlock(&fd.tree->tree_lock);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200591 hfsplus_free_extents(sb, hip->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 alloc_cnt, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200593 hfsplus_dump_extent(hip->first_extents);
594 hip->first_blocks = blk_cnt;
Ernesto A. Fernández31651c62018-08-21 21:59:16 -0700595 mutex_lock(&fd.tree->tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 break;
597 }
598 res = __hfsplus_ext_cache_extent(&fd, inode, alloc_cnt);
599 if (res)
600 break;
Ernesto A. Fernández31651c62018-08-21 21:59:16 -0700601 hfs_brec_remove(&fd);
602
603 mutex_unlock(&fd.tree->tree_lock);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200604 start = hip->cached_start;
605 hfsplus_free_extents(sb, hip->cached_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 alloc_cnt - start, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200607 hfsplus_dump_extent(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (blk_cnt > start) {
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100609 hip->extent_state |= HFSPLUS_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 break;
611 }
612 alloc_cnt = start;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200613 hip->cached_start = hip->cached_blocks = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100614 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
Ernesto A. Fernández31651c62018-08-21 21:59:16 -0700615 mutex_lock(&fd.tree->tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 hfs_find_exit(&fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200619 hip->alloc_blocks = blk_cnt;
Sougata Santrad7bdb9962014-04-03 14:50:34 -0700620out_unlock:
621 mutex_unlock(&hip->extents_lock);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200622 hip->phys_size = inode->i_size;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200623 hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >>
624 sb->s_blocksize_bits;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200625 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
Christoph Hellwige3494702010-11-23 14:38:15 +0100626 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}