]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/hfsplus/extents.c
hfsplus: assignments inside `if' condition clean-up
[mirror_ubuntu-bionic-kernel.git] / fs / hfsplus / extents.c
CommitLineData
1da177e4
LT
1/*
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>
1da177e4
LT
14
15#include "hfsplus_fs.h"
16#include "hfsplus_raw.h"
17
18/* Compare two extents keys, returns 0 on same, pos/neg for difference */
2179d372
DE
19int hfsplus_ext_cmp_key(const hfsplus_btree_key *k1,
20 const hfsplus_btree_key *k2)
1da177e4
LT
21{
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
2753cc28
AS
86static void __hfsplus_ext_write_extent(struct inode *inode,
87 struct hfs_find_data *fd)
1da177e4 88{
6af502de 89 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
1da177e4
LT
90 int res;
91
7fcc99f4
CH
92 WARN_ON(!mutex_is_locked(&hip->extents_lock));
93
6af502de
CH
94 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
1da177e4 98 res = hfs_brec_find(fd);
b33b7921 99 if (hip->extent_state & HFSPLUS_EXT_NEW) {
1da177e4
LT
100 if (res != -ENOENT)
101 return;
6af502de
CH
102 hfs_brec_insert(fd, hip->cached_extents,
103 sizeof(hfsplus_extent_rec));
b33b7921 104 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
1da177e4
LT
105 } else {
106 if (res)
107 return;
6af502de
CH
108 hfs_bnode_write(fd->bnode, hip->cached_extents,
109 fd->entryoffset, fd->entrylength);
b33b7921 110 hip->extent_state &= ~HFSPLUS_EXT_DIRTY;
1da177e4 111 }
e3494705
CH
112
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);
1da177e4
LT
120}
121
7fcc99f4 122static void hfsplus_ext_write_extent_locked(struct inode *inode)
1da177e4 123{
b33b7921 124 if (HFSPLUS_I(inode)->extent_state & HFSPLUS_EXT_DIRTY) {
1da177e4
LT
125 struct hfs_find_data fd;
126
dd73a01a 127 hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
1da177e4
LT
128 __hfsplus_ext_write_extent(inode, &fd);
129 hfs_find_exit(&fd);
130 }
131}
132
7fcc99f4
CH
133void hfsplus_ext_write_extent(struct inode *inode)
134{
135 mutex_lock(&HFSPLUS_I(inode)->extents_lock);
136 hfsplus_ext_write_extent_locked(inode);
137 mutex_unlock(&HFSPLUS_I(inode)->extents_lock);
138}
139
1da177e4
LT
140static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,
141 struct hfsplus_extent *extent,
142 u32 cnid, u32 block, u8 type)
143{
144 int res;
145
146 hfsplus_ext_build_key(fd->search_key, cnid, block, type);
147 fd->key->ext.cnid = 0;
148 res = hfs_brec_find(fd);
149 if (res && res != -ENOENT)
150 return res;
151 if (fd->key->ext.cnid != fd->search_key->ext.cnid ||
152 fd->key->ext.fork_type != fd->search_key->ext.fork_type)
153 return -ENOENT;
154 if (fd->entrylength != sizeof(hfsplus_extent_rec))
155 return -EIO;
2753cc28
AS
156 hfs_bnode_read(fd->bnode, extent, fd->entryoffset,
157 sizeof(hfsplus_extent_rec));
1da177e4
LT
158 return 0;
159}
160
2753cc28
AS
161static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd,
162 struct inode *inode, u32 block)
1da177e4 163{
6af502de 164 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
1da177e4
LT
165 int res;
166
7fcc99f4
CH
167 WARN_ON(!mutex_is_locked(&hip->extents_lock));
168
b33b7921 169 if (hip->extent_state & HFSPLUS_EXT_DIRTY)
1da177e4
LT
170 __hfsplus_ext_write_extent(inode, fd);
171
6af502de
CH
172 res = __hfsplus_ext_read_extent(fd, hip->cached_extents, inode->i_ino,
173 block, HFSPLUS_IS_RSRC(inode) ?
174 HFSPLUS_TYPE_RSRC :
175 HFSPLUS_TYPE_DATA);
1da177e4 176 if (!res) {
6af502de 177 hip->cached_start = be32_to_cpu(fd->key->ext.start_block);
2753cc28
AS
178 hip->cached_blocks =
179 hfsplus_ext_block_count(hip->cached_extents);
1da177e4 180 } else {
6af502de 181 hip->cached_start = hip->cached_blocks = 0;
b33b7921 182 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
1da177e4
LT
183 }
184 return res;
185}
186
187static int hfsplus_ext_read_extent(struct inode *inode, u32 block)
188{
6af502de 189 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
1da177e4
LT
190 struct hfs_find_data fd;
191 int res;
192
6af502de
CH
193 if (block >= hip->cached_start &&
194 block < hip->cached_start + hip->cached_blocks)
1da177e4
LT
195 return 0;
196
dd73a01a 197 hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
1da177e4
LT
198 res = __hfsplus_ext_cache_extent(&fd, inode, block);
199 hfs_find_exit(&fd);
200 return res;
201}
202
203/* Get a block at iblock for inode, possibly allocating if create */
204int hfsplus_get_block(struct inode *inode, sector_t iblock,
205 struct buffer_head *bh_result, int create)
206{
dd73a01a
CH
207 struct super_block *sb = inode->i_sb;
208 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
6af502de 209 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
1da177e4
LT
210 int res = -EIO;
211 u32 ablock, dblock, mask;
e3494705 212 int was_dirty = 0;
1da177e4
LT
213 int shift;
214
1da177e4 215 /* Convert inode block to disk allocation block */
dd73a01a
CH
216 shift = sbi->alloc_blksz_shift - sb->s_blocksize_bits;
217 ablock = iblock >> sbi->fs_shift;
1da177e4 218
6af502de
CH
219 if (iblock >= hip->fs_blocks) {
220 if (iblock > hip->fs_blocks || !create)
1da177e4 221 return -EIO;
6af502de 222 if (ablock >= hip->alloc_blocks) {
1da177e4
LT
223 res = hfsplus_file_extend(inode);
224 if (res)
225 return res;
226 }
227 } else
228 create = 0;
229
6af502de
CH
230 if (ablock < hip->first_blocks) {
231 dblock = hfsplus_ext_find_block(hip->first_extents, ablock);
1da177e4
LT
232 goto done;
233 }
234
248736c2
ES
235 if (inode->i_ino == HFSPLUS_EXT_CNID)
236 return -EIO;
237
6af502de 238 mutex_lock(&hip->extents_lock);
e3494705
CH
239
240 /*
241 * hfsplus_ext_read_extent will write out a cached extent into
242 * the extents btree. In that case we may have to mark the inode
243 * dirty even for a pure read of an extent here.
244 */
245 was_dirty = (hip->extent_state & HFSPLUS_EXT_DIRTY);
1da177e4 246 res = hfsplus_ext_read_extent(inode, ablock);
e3494705 247 if (res) {
6af502de 248 mutex_unlock(&hip->extents_lock);
1da177e4
LT
249 return -EIO;
250 }
e3494705
CH
251 dblock = hfsplus_ext_find_block(hip->cached_extents,
252 ablock - hip->cached_start);
6af502de 253 mutex_unlock(&hip->extents_lock);
1da177e4
LT
254
255done:
2753cc28
AS
256 dprint(DBG_EXTENT, "get_block(%lu): %llu - %u\n",
257 inode->i_ino, (long long)iblock, dblock);
dd73a01a 258 mask = (1 << sbi->fs_shift) - 1;
2753cc28
AS
259 map_bh(bh_result, sb,
260 (dblock << sbi->fs_shift) + sbi->blockoffset +
261 (iblock & mask));
1da177e4
LT
262 if (create) {
263 set_buffer_new(bh_result);
6af502de
CH
264 hip->phys_size += sb->s_blocksize;
265 hip->fs_blocks++;
1da177e4 266 inode_add_bytes(inode, sb->s_blocksize);
1da177e4 267 }
e3494705
CH
268 if (create || was_dirty)
269 mark_inode_dirty(inode);
1da177e4
LT
270 return 0;
271}
272
273static void hfsplus_dump_extent(struct hfsplus_extent *extent)
274{
275 int i;
276
277 dprint(DBG_EXTENT, " ");
278 for (i = 0; i < 8; i++)
279 dprint(DBG_EXTENT, " %u:%u", be32_to_cpu(extent[i].start_block),
280 be32_to_cpu(extent[i].block_count));
281 dprint(DBG_EXTENT, "\n");
282}
283
284static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset,
285 u32 alloc_block, u32 block_count)
286{
287 u32 count, start;
288 int i;
289
290 hfsplus_dump_extent(extent);
291 for (i = 0; i < 8; extent++, i++) {
292 count = be32_to_cpu(extent->block_count);
293 if (offset == count) {
294 start = be32_to_cpu(extent->start_block);
295 if (alloc_block != start + count) {
296 if (++i >= 8)
297 return -ENOSPC;
298 extent++;
299 extent->start_block = cpu_to_be32(alloc_block);
300 } else
301 block_count += count;
302 extent->block_count = cpu_to_be32(block_count);
303 return 0;
304 } else if (offset < count)
305 break;
306 offset -= count;
307 }
308 /* panic? */
309 return -EIO;
310}
311
312static int hfsplus_free_extents(struct super_block *sb,
313 struct hfsplus_extent *extent,
314 u32 offset, u32 block_nr)
315{
316 u32 count, start;
317 int i;
318
319 hfsplus_dump_extent(extent);
320 for (i = 0; i < 8; extent++, i++) {
321 count = be32_to_cpu(extent->block_count);
322 if (offset == count)
323 goto found;
324 else if (offset < count)
325 break;
326 offset -= count;
327 }
328 /* panic? */
329 return -EIO;
330found:
331 for (;;) {
332 start = be32_to_cpu(extent->start_block);
333 if (count <= block_nr) {
334 hfsplus_block_free(sb, start, count);
335 extent->block_count = 0;
336 extent->start_block = 0;
337 block_nr -= count;
338 } else {
339 count -= block_nr;
340 hfsplus_block_free(sb, start + count, block_nr);
341 extent->block_count = cpu_to_be32(count);
342 block_nr = 0;
343 }
344 if (!block_nr || !i)
345 return 0;
346 i--;
347 extent--;
348 count = be32_to_cpu(extent->block_count);
349 }
350}
351
2753cc28
AS
352int hfsplus_free_fork(struct super_block *sb, u32 cnid,
353 struct hfsplus_fork_raw *fork, int type)
1da177e4
LT
354{
355 struct hfs_find_data fd;
356 hfsplus_extent_rec ext_entry;
357 u32 total_blocks, blocks, start;
358 int res, i;
359
360 total_blocks = be32_to_cpu(fork->total_blocks);
361 if (!total_blocks)
362 return 0;
363
364 blocks = 0;
365 for (i = 0; i < 8; i++)
366 blocks += be32_to_cpu(fork->extents[i].block_count);
367
368 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks);
369 if (res)
370 return res;
371 if (total_blocks == blocks)
372 return 0;
373
dd73a01a 374 hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
1da177e4
LT
375 do {
376 res = __hfsplus_ext_read_extent(&fd, ext_entry, cnid,
377 total_blocks, type);
378 if (res)
379 break;
380 start = be32_to_cpu(fd.key->ext.start_block);
381 hfsplus_free_extents(sb, ext_entry,
382 total_blocks - start,
383 total_blocks);
384 hfs_brec_remove(&fd);
385 total_blocks = start;
386 } while (total_blocks > blocks);
387 hfs_find_exit(&fd);
388
389 return res;
390}
391
392int hfsplus_file_extend(struct inode *inode)
393{
394 struct super_block *sb = inode->i_sb;
dd73a01a 395 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
6af502de 396 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
1da177e4
LT
397 u32 start, len, goal;
398 int res;
399
1065348d
CH
400 if (sbi->alloc_file->i_size * 8 <
401 sbi->total_blocks - sbi->free_blocks + 8) {
21f2296a 402 /* extend alloc file */
b2837fcf
AS
403 printk(KERN_ERR "hfs: extend alloc file! "
404 "(%llu,%u,%u)\n",
405 sbi->alloc_file->i_size * 8,
406 sbi->total_blocks, sbi->free_blocks);
1da177e4 407 return -ENOSPC;
1da177e4
LT
408 }
409
6af502de
CH
410 mutex_lock(&hip->extents_lock);
411 if (hip->alloc_blocks == hip->first_blocks)
412 goal = hfsplus_ext_lastblock(hip->first_extents);
1da177e4 413 else {
6af502de 414 res = hfsplus_ext_read_extent(inode, hip->alloc_blocks);
1da177e4
LT
415 if (res)
416 goto out;
6af502de 417 goal = hfsplus_ext_lastblock(hip->cached_extents);
1da177e4
LT
418 }
419
6af502de 420 len = hip->clump_blocks;
dd73a01a
CH
421 start = hfsplus_block_allocate(sb, sbi->total_blocks, goal, &len);
422 if (start >= sbi->total_blocks) {
1da177e4
LT
423 start = hfsplus_block_allocate(sb, goal, 0, &len);
424 if (start >= goal) {
425 res = -ENOSPC;
426 goto out;
427 }
428 }
429
430 dprint(DBG_EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len);
6af502de
CH
431
432 if (hip->alloc_blocks <= hip->first_blocks) {
433 if (!hip->first_blocks) {
1da177e4
LT
434 dprint(DBG_EXTENT, "first extents\n");
435 /* no extents yet */
6af502de
CH
436 hip->first_extents[0].start_block = cpu_to_be32(start);
437 hip->first_extents[0].block_count = cpu_to_be32(len);
1da177e4
LT
438 res = 0;
439 } else {
440 /* try to append to extents in inode */
6af502de
CH
441 res = hfsplus_add_extent(hip->first_extents,
442 hip->alloc_blocks,
1da177e4
LT
443 start, len);
444 if (res == -ENOSPC)
445 goto insert_extent;
446 }
447 if (!res) {
6af502de
CH
448 hfsplus_dump_extent(hip->first_extents);
449 hip->first_blocks += len;
1da177e4
LT
450 }
451 } else {
6af502de
CH
452 res = hfsplus_add_extent(hip->cached_extents,
453 hip->alloc_blocks - hip->cached_start,
1da177e4
LT
454 start, len);
455 if (!res) {
6af502de 456 hfsplus_dump_extent(hip->cached_extents);
b33b7921 457 hip->extent_state |= HFSPLUS_EXT_DIRTY;
6af502de 458 hip->cached_blocks += len;
1da177e4
LT
459 } else if (res == -ENOSPC)
460 goto insert_extent;
461 }
462out:
6af502de 463 mutex_unlock(&hip->extents_lock);
1da177e4 464 if (!res) {
6af502de 465 hip->alloc_blocks += len;
e3494705 466 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
1da177e4
LT
467 }
468 return res;
469
470insert_extent:
471 dprint(DBG_EXTENT, "insert new extent\n");
7fcc99f4 472 hfsplus_ext_write_extent_locked(inode);
1da177e4 473
6af502de
CH
474 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
475 hip->cached_extents[0].start_block = cpu_to_be32(start);
476 hip->cached_extents[0].block_count = cpu_to_be32(len);
477 hfsplus_dump_extent(hip->cached_extents);
b33b7921 478 hip->extent_state |= HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW;
6af502de
CH
479 hip->cached_start = hip->alloc_blocks;
480 hip->cached_blocks = len;
1da177e4
LT
481
482 res = 0;
483 goto out;
484}
485
486void hfsplus_file_truncate(struct inode *inode)
487{
488 struct super_block *sb = inode->i_sb;
6af502de 489 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
1da177e4
LT
490 struct hfs_find_data fd;
491 u32 alloc_cnt, blk_cnt, start;
492 int res;
493
b2837fcf
AS
494 dprint(DBG_INODE, "truncate: %lu, %llu -> %llu\n",
495 inode->i_ino, (long long)hip->phys_size,
496 inode->i_size);
6af502de
CH
497
498 if (inode->i_size > hip->phys_size) {
1da177e4
LT
499 struct address_space *mapping = inode->i_mapping;
500 struct page *page;
7c0efc62
NP
501 void *fsdata;
502 u32 size = inode->i_size;
1da177e4
LT
503 int res;
504
7c0efc62
NP
505 res = pagecache_write_begin(NULL, mapping, size, 0,
506 AOP_FLAG_UNINTERRUPTIBLE,
507 &page, &fsdata);
1da177e4 508 if (res)
7c0efc62 509 return;
2753cc28
AS
510 res = pagecache_write_end(NULL, mapping, size,
511 0, 0, page, fsdata);
7c0efc62
NP
512 if (res < 0)
513 return;
1da177e4
LT
514 mark_inode_dirty(inode);
515 return;
6af502de 516 } else if (inode->i_size == hip->phys_size)
f76d28d2
RZ
517 return;
518
dd73a01a
CH
519 blk_cnt = (inode->i_size + HFSPLUS_SB(sb)->alloc_blksz - 1) >>
520 HFSPLUS_SB(sb)->alloc_blksz_shift;
6af502de 521 alloc_cnt = hip->alloc_blocks;
1da177e4
LT
522 if (blk_cnt == alloc_cnt)
523 goto out;
524
6af502de 525 mutex_lock(&hip->extents_lock);
dd73a01a 526 hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
1da177e4 527 while (1) {
6af502de
CH
528 if (alloc_cnt == hip->first_blocks) {
529 hfsplus_free_extents(sb, hip->first_extents,
1da177e4 530 alloc_cnt, alloc_cnt - blk_cnt);
6af502de
CH
531 hfsplus_dump_extent(hip->first_extents);
532 hip->first_blocks = blk_cnt;
1da177e4
LT
533 break;
534 }
535 res = __hfsplus_ext_cache_extent(&fd, inode, alloc_cnt);
536 if (res)
537 break;
6af502de
CH
538 start = hip->cached_start;
539 hfsplus_free_extents(sb, hip->cached_extents,
1da177e4 540 alloc_cnt - start, alloc_cnt - blk_cnt);
6af502de 541 hfsplus_dump_extent(hip->cached_extents);
1da177e4 542 if (blk_cnt > start) {
b33b7921 543 hip->extent_state |= HFSPLUS_EXT_DIRTY;
1da177e4
LT
544 break;
545 }
546 alloc_cnt = start;
6af502de 547 hip->cached_start = hip->cached_blocks = 0;
b33b7921 548 hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);
1da177e4
LT
549 hfs_brec_remove(&fd);
550 }
551 hfs_find_exit(&fd);
6af502de 552 mutex_unlock(&hip->extents_lock);
1da177e4 553
6af502de 554 hip->alloc_blocks = blk_cnt;
1da177e4 555out:
6af502de 556 hip->phys_size = inode->i_size;
2753cc28
AS
557 hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >>
558 sb->s_blocksize_bits;
6af502de 559 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
e3494705 560 hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);
1da177e4 561}