]> git.ipfire.org Git - people/ms/linux.git/blame - fs/nilfs2/inode.c
Merge tag 'fuse-update-6.0' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi...
[people/ms/linux.git] / fs / nilfs2 / inode.c
CommitLineData
ae98043f 1// SPDX-License-Identifier: GPL-2.0+
05fe58fd 2/*
94ee1d91 3 * NILFS inode operations.
05fe58fd
RK
4 *
5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
6 *
4b420ab4 7 * Written by Ryusuke Konishi.
05fe58fd
RK
8 *
9 */
10
11#include <linux/buffer_head.h>
5a0e3ad6 12#include <linux/gfp.h>
05fe58fd 13#include <linux/mpage.h>
56d7acc7 14#include <linux/pagemap.h>
05fe58fd 15#include <linux/writeback.h>
e2e40f2c 16#include <linux/uio.h>
10c5db28 17#include <linux/fiemap.h>
05fe58fd 18#include "nilfs.h"
6fd1e5c9 19#include "btnode.h"
05fe58fd
RK
20#include "segment.h"
21#include "page.h"
22#include "mdt.h"
23#include "cpfile.h"
24#include "ifile.h"
25
f5974c8f
VD
26/**
27 * struct nilfs_iget_args - arguments used during comparison between inodes
28 * @ino: inode number
29 * @cno: checkpoint number
30 * @root: pointer on NILFS root object (mounted checkpoint)
31 * @for_gc: inode for GC flag
e897be17 32 * @for_btnc: inode for B-tree node cache flag
6e211930 33 * @for_shadow: inode for shadowed page cache flag
f5974c8f 34 */
0e14a359
RK
35struct nilfs_iget_args {
36 u64 ino;
37 __u64 cno;
4d8d9293 38 struct nilfs_root *root;
e897be17
RK
39 bool for_gc;
40 bool for_btnc;
6e211930 41 bool for_shadow;
0e14a359 42};
05fe58fd 43
705304a8
RK
44static int nilfs_iget_test(struct inode *inode, void *opaque);
45
be667377
RK
46void nilfs_inode_add_blocks(struct inode *inode, int n)
47{
48 struct nilfs_root *root = NILFS_I(inode)->i_root;
49
93407472 50 inode_add_bytes(inode, i_blocksize(inode) * n);
be667377 51 if (root)
e5f7f848 52 atomic64_add(n, &root->blocks_count);
be667377
RK
53}
54
55void nilfs_inode_sub_blocks(struct inode *inode, int n)
56{
57 struct nilfs_root *root = NILFS_I(inode)->i_root;
58
93407472 59 inode_sub_bytes(inode, i_blocksize(inode) * n);
be667377 60 if (root)
e5f7f848 61 atomic64_sub(n, &root->blocks_count);
be667377
RK
62}
63
05fe58fd
RK
64/**
65 * nilfs_get_block() - get a file block on the filesystem (callback function)
516edb45
YL
66 * @inode: inode struct of the target file
67 * @blkoff: file block number
68 * @bh_result: buffer head to be mapped on
69 * @create: indicate whether allocating the block or not when it has not
05fe58fd
RK
70 * been allocated yet.
71 *
72 * This function does not issue actual read request of the specified data
73 * block. It is done by VFS.
05fe58fd
RK
74 */
75int nilfs_get_block(struct inode *inode, sector_t blkoff,
76 struct buffer_head *bh_result, int create)
77{
78 struct nilfs_inode_info *ii = NILFS_I(inode);
0ef28f9a 79 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
c3a7abf0 80 __u64 blknum = 0;
05fe58fd 81 int err = 0, ret;
0c6c44cb 82 unsigned int maxblocks = bh_result->b_size >> inode->i_blkbits;
05fe58fd 83
0ef28f9a 84 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
c3a7abf0 85 ret = nilfs_bmap_lookup_contig(ii->i_bmap, blkoff, &blknum, maxblocks);
0ef28f9a 86 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
c3a7abf0 87 if (ret >= 0) { /* found */
05fe58fd 88 map_bh(bh_result, inode->i_sb, blknum);
c3a7abf0
RK
89 if (ret > 0)
90 bh_result->b_size = (ret << inode->i_blkbits);
05fe58fd
RK
91 goto out;
92 }
05fe58fd
RK
93 /* data block was not found */
94 if (ret == -ENOENT && create) {
95 struct nilfs_transaction_info ti;
96
97 bh_result->b_blocknr = 0;
98 err = nilfs_transaction_begin(inode->i_sb, &ti, 1);
99 if (unlikely(err))
100 goto out;
3568a13f 101 err = nilfs_bmap_insert(ii->i_bmap, blkoff,
05fe58fd 102 (unsigned long)bh_result);
05fe58fd
RK
103 if (unlikely(err != 0)) {
104 if (err == -EEXIST) {
105 /*
106 * The get_block() function could be called
107 * from multiple callers for an inode.
108 * However, the page having this block must
109 * be locked in this case.
110 */
a1d0747a
JP
111 nilfs_warn(inode->i_sb,
112 "%s (ino=%lu): a race condition while inserting a data block at offset=%llu",
113 __func__, inode->i_ino,
114 (unsigned long long)blkoff);
1f5abe7e 115 err = 0;
05fe58fd 116 }
47420c79 117 nilfs_transaction_abort(inode->i_sb);
05fe58fd
RK
118 goto out;
119 }
b9f66140 120 nilfs_mark_inode_dirty_sync(inode);
47420c79 121 nilfs_transaction_commit(inode->i_sb); /* never fails */
05fe58fd
RK
122 /* Error handling should be detailed */
123 set_buffer_new(bh_result);
27e6c7a3 124 set_buffer_delay(bh_result);
076a378b
RK
125 map_bh(bh_result, inode->i_sb, 0);
126 /* Disk block number must be changed to proper value */
127
05fe58fd 128 } else if (ret == -ENOENT) {
076a378b
RK
129 /*
130 * not found is not error (e.g. hole); must return without
131 * the mapped state flag.
132 */
05fe58fd
RK
133 ;
134 } else {
135 err = ret;
136 }
137
138 out:
139 return err;
140}
141
142/**
f132ab7d 143 * nilfs_read_folio() - implement read_folio() method of nilfs_aops {}
05fe58fd 144 * address_space_operations.
516edb45
YL
145 * @file: file struct of the file to be read
146 * @folio: the folio to be read
05fe58fd 147 */
f132ab7d 148static int nilfs_read_folio(struct file *file, struct folio *folio)
05fe58fd 149{
f132ab7d 150 return mpage_read_folio(folio, nilfs_get_block);
05fe58fd
RK
151}
152
d4388340 153static void nilfs_readahead(struct readahead_control *rac)
05fe58fd 154{
d4388340 155 mpage_readahead(rac, nilfs_get_block);
05fe58fd
RK
156}
157
158static int nilfs_writepages(struct address_space *mapping,
159 struct writeback_control *wbc)
160{
f30bf3e4
RK
161 struct inode *inode = mapping->host;
162 int err = 0;
163
bc98a42c 164 if (sb_rdonly(inode->i_sb)) {
8c26c4e2
VD
165 nilfs_clear_dirty_pages(mapping, false);
166 return -EROFS;
167 }
168
f30bf3e4
RK
169 if (wbc->sync_mode == WB_SYNC_ALL)
170 err = nilfs_construct_dsync_segment(inode->i_sb, inode,
171 wbc->range_start,
172 wbc->range_end);
173 return err;
05fe58fd
RK
174}
175
176static int nilfs_writepage(struct page *page, struct writeback_control *wbc)
177{
178 struct inode *inode = page->mapping->host;
179 int err;
180
bc98a42c 181 if (sb_rdonly(inode->i_sb)) {
8c26c4e2
VD
182 /*
183 * It means that filesystem was remounted in read-only
184 * mode because of error or metadata corruption. But we
185 * have dirty pages that try to be flushed in background.
186 * So, here we simply discard this dirty page.
187 */
188 nilfs_clear_dirty_page(page, false);
189 unlock_page(page);
190 return -EROFS;
191 }
192
05fe58fd
RK
193 redirty_page_for_writepage(wbc, page);
194 unlock_page(page);
195
196 if (wbc->sync_mode == WB_SYNC_ALL) {
197 err = nilfs_construct_segment(inode->i_sb);
198 if (unlikely(err))
199 return err;
200 } else if (wbc->for_reclaim)
201 nilfs_flush_segment(inode->i_sb, inode->i_ino);
202
203 return 0;
204}
205
af7afdc7
MWO
206static bool nilfs_dirty_folio(struct address_space *mapping,
207 struct folio *folio)
05fe58fd 208{
af7afdc7
MWO
209 struct inode *inode = mapping->host;
210 struct buffer_head *head;
211 unsigned int nr_dirty = 0;
212 bool ret = filemap_dirty_folio(mapping, folio);
213
214 /*
215 * The page may not be locked, eg if called from try_to_unmap_one()
216 */
217 spin_lock(&mapping->private_lock);
218 head = folio_buffers(folio);
219 if (head) {
220 struct buffer_head *bh = head;
05fe58fd 221
136e8770
RK
222 do {
223 /* Do not mark hole blocks dirty */
224 if (buffer_dirty(bh) || !buffer_mapped(bh))
225 continue;
226
227 set_buffer_dirty(bh);
228 nr_dirty++;
229 } while (bh = bh->b_this_page, bh != head);
56d7acc7 230 } else if (ret) {
af7afdc7
MWO
231 nr_dirty = 1 << (folio_shift(folio) - inode->i_blkbits);
232 }
233 spin_unlock(&mapping->private_lock);
56d7acc7 234
af7afdc7 235 if (nr_dirty)
56d7acc7 236 nilfs_set_file_dirty(inode, nr_dirty);
05fe58fd
RK
237 return ret;
238}
239
2d1b399b
MS
240void nilfs_write_failed(struct address_space *mapping, loff_t to)
241{
242 struct inode *inode = mapping->host;
243
244 if (to > inode->i_size) {
7caef267 245 truncate_pagecache(inode, inode->i_size);
2d1b399b
MS
246 nilfs_truncate(inode);
247 }
248}
249
05fe58fd 250static int nilfs_write_begin(struct file *file, struct address_space *mapping,
9d6b0cd7 251 loff_t pos, unsigned len,
05fe58fd
RK
252 struct page **pagep, void **fsdata)
253
254{
255 struct inode *inode = mapping->host;
256 int err = nilfs_transaction_begin(inode->i_sb, NULL, 1);
257
258 if (unlikely(err))
259 return err;
260
b3992d1e 261 err = block_write_begin(mapping, pos, len, pagep, nilfs_get_block);
155130a4 262 if (unlikely(err)) {
2d1b399b 263 nilfs_write_failed(mapping, pos + len);
47420c79 264 nilfs_transaction_abort(inode->i_sb);
155130a4 265 }
05fe58fd
RK
266 return err;
267}
268
269static int nilfs_write_end(struct file *file, struct address_space *mapping,
270 loff_t pos, unsigned len, unsigned copied,
271 struct page *page, void *fsdata)
272{
273 struct inode *inode = mapping->host;
0c6c44cb
RK
274 unsigned int start = pos & (PAGE_SIZE - 1);
275 unsigned int nr_dirty;
05fe58fd
RK
276 int err;
277
278 nr_dirty = nilfs_page_count_clean_buffers(page, start,
279 start + copied);
280 copied = generic_write_end(file, mapping, pos, len, copied, page,
281 fsdata);
bcbc8c64 282 nilfs_set_file_dirty(inode, nr_dirty);
47420c79 283 err = nilfs_transaction_commit(inode->i_sb);
05fe58fd
RK
284 return err ? : copied;
285}
286
287static ssize_t
c8b8e32d 288nilfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
05fe58fd 289{
6b6dabc8 290 struct inode *inode = file_inode(iocb->ki_filp);
05fe58fd 291
6f673763 292 if (iov_iter_rw(iter) == WRITE)
05fe58fd
RK
293 return 0;
294
295 /* Needs synchronization with the cleaner */
c8b8e32d 296 return blockdev_direct_IO(iocb, inode, iter, nilfs_get_block);
05fe58fd
RK
297}
298
7f09410b 299const struct address_space_operations nilfs_aops = {
05fe58fd 300 .writepage = nilfs_writepage,
f132ab7d 301 .read_folio = nilfs_read_folio,
05fe58fd 302 .writepages = nilfs_writepages,
af7afdc7 303 .dirty_folio = nilfs_dirty_folio,
d4388340 304 .readahead = nilfs_readahead,
05fe58fd
RK
305 .write_begin = nilfs_write_begin,
306 .write_end = nilfs_write_end,
7ba13abb 307 .invalidate_folio = block_invalidate_folio,
05fe58fd 308 .direct_IO = nilfs_direct_IO,
258ef67e 309 .is_partially_uptodate = block_is_partially_uptodate,
05fe58fd
RK
310};
311
705304a8
RK
312static int nilfs_insert_inode_locked(struct inode *inode,
313 struct nilfs_root *root,
314 unsigned long ino)
315{
316 struct nilfs_iget_args args = {
e897be17 317 .ino = ino, .root = root, .cno = 0, .for_gc = false,
6e211930 318 .for_btnc = false, .for_shadow = false
705304a8
RK
319 };
320
321 return insert_inode_locked4(inode, ino, nilfs_iget_test, &args);
322}
323
c6e49e3f 324struct inode *nilfs_new_inode(struct inode *dir, umode_t mode)
05fe58fd
RK
325{
326 struct super_block *sb = dir->i_sb;
e3154e97 327 struct the_nilfs *nilfs = sb->s_fs_info;
05fe58fd
RK
328 struct inode *inode;
329 struct nilfs_inode_info *ii;
4d8d9293 330 struct nilfs_root *root;
05fe58fd
RK
331 int err = -ENOMEM;
332 ino_t ino;
333
334 inode = new_inode(sb);
335 if (unlikely(!inode))
336 goto failed;
337
338 mapping_set_gfp_mask(inode->i_mapping,
c62d2555 339 mapping_gfp_constraint(inode->i_mapping, ~__GFP_FS));
05fe58fd 340
4d8d9293 341 root = NILFS_I(dir)->i_root;
05fe58fd 342 ii = NILFS_I(inode);
4ce5c342 343 ii->i_state = BIT(NILFS_I_NEW);
4d8d9293 344 ii->i_root = root;
05fe58fd 345
e912a5b6 346 err = nilfs_ifile_create_inode(root->ifile, &ino, &ii->i_bh);
05fe58fd
RK
347 if (unlikely(err))
348 goto failed_ifile_create_inode;
349 /* reference count of i_bh inherits from nilfs_mdt_read_block() */
350
e5f7f848 351 atomic64_inc(&root->inodes_count);
21cb47be 352 inode_init_owner(&init_user_ns, inode, dir, mode);
05fe58fd 353 inode->i_ino = ino;
078cd827 354 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
05fe58fd
RK
355
356 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)) {
357 err = nilfs_bmap_read(ii->i_bmap, NULL);
358 if (err < 0)
705304a8 359 goto failed_after_creation;
05fe58fd
RK
360
361 set_bit(NILFS_I_BMAP, &ii->i_state);
362 /* No lock is needed; iget() ensures it. */
363 }
364
b253a3e4
RK
365 ii->i_flags = nilfs_mask_flags(
366 mode, NILFS_I(dir)->i_flags & NILFS_FL_INHERITED);
05fe58fd
RK
367
368 /* ii->i_file_acl = 0; */
369 /* ii->i_dir_acl = 0; */
05fe58fd 370 ii->i_dir_start_lookup = 0;
05fe58fd 371 nilfs_set_inode_flags(inode);
9b1fc4e4
RK
372 spin_lock(&nilfs->ns_next_gen_lock);
373 inode->i_generation = nilfs->ns_next_generation++;
374 spin_unlock(&nilfs->ns_next_gen_lock);
705304a8
RK
375 if (nilfs_insert_inode_locked(inode, root, ino) < 0) {
376 err = -EIO;
377 goto failed_after_creation;
378 }
05fe58fd
RK
379
380 err = nilfs_init_acl(inode, dir);
381 if (unlikely(err))
076a378b
RK
382 /*
383 * Never occur. When supporting nilfs_init_acl(),
384 * proper cancellation of above jobs should be considered.
385 */
386 goto failed_after_creation;
05fe58fd 387
05fe58fd
RK
388 return inode;
389
705304a8 390 failed_after_creation:
6d6b77f1 391 clear_nlink(inode);
1b0e3186
EB
392 if (inode->i_state & I_NEW)
393 unlock_new_inode(inode);
076a378b
RK
394 iput(inode); /*
395 * raw_inode will be deleted through
396 * nilfs_evict_inode().
397 */
05fe58fd
RK
398 goto failed;
399
400 failed_ifile_create_inode:
401 make_bad_inode(inode);
076a378b 402 iput(inode);
05fe58fd
RK
403 failed:
404 return ERR_PTR(err);
405}
406
05fe58fd
RK
407void nilfs_set_inode_flags(struct inode *inode)
408{
409 unsigned int flags = NILFS_I(inode)->i_flags;
faea2c53 410 unsigned int new_fl = 0;
05fe58fd 411
f0c9f242 412 if (flags & FS_SYNC_FL)
faea2c53 413 new_fl |= S_SYNC;
f0c9f242 414 if (flags & FS_APPEND_FL)
faea2c53 415 new_fl |= S_APPEND;
f0c9f242 416 if (flags & FS_IMMUTABLE_FL)
faea2c53 417 new_fl |= S_IMMUTABLE;
f0c9f242 418 if (flags & FS_NOATIME_FL)
faea2c53 419 new_fl |= S_NOATIME;
f0c9f242 420 if (flags & FS_DIRSYNC_FL)
faea2c53
RK
421 new_fl |= S_DIRSYNC;
422 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE |
423 S_NOATIME | S_DIRSYNC);
05fe58fd
RK
424}
425
426int nilfs_read_inode_common(struct inode *inode,
427 struct nilfs_inode *raw_inode)
428{
429 struct nilfs_inode_info *ii = NILFS_I(inode);
430 int err;
431
432 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
305d3d0d
EB
433 i_uid_write(inode, le32_to_cpu(raw_inode->i_uid));
434 i_gid_write(inode, le32_to_cpu(raw_inode->i_gid));
bfe86848 435 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
05fe58fd
RK
436 inode->i_size = le64_to_cpu(raw_inode->i_size);
437 inode->i_atime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
438 inode->i_ctime.tv_sec = le64_to_cpu(raw_inode->i_ctime);
439 inode->i_mtime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
61239230
RK
440 inode->i_atime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
441 inode->i_ctime.tv_nsec = le32_to_cpu(raw_inode->i_ctime_nsec);
442 inode->i_mtime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
705304a8
RK
443 if (inode->i_nlink == 0)
444 return -ESTALE; /* this inode is deleted */
05fe58fd
RK
445
446 inode->i_blocks = le64_to_cpu(raw_inode->i_blocks);
447 ii->i_flags = le32_to_cpu(raw_inode->i_flags);
448#if 0
449 ii->i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
450 ii->i_dir_acl = S_ISREG(inode->i_mode) ?
451 0 : le32_to_cpu(raw_inode->i_dir_acl);
452#endif
3cc811bf 453 ii->i_dir_start_lookup = 0;
05fe58fd
RK
454 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
455
456 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
457 S_ISLNK(inode->i_mode)) {
458 err = nilfs_bmap_read(ii->i_bmap, raw_inode);
459 if (err < 0)
460 return err;
461 set_bit(NILFS_I_BMAP, &ii->i_state);
462 /* No lock is needed; iget() ensures it. */
463 }
464 return 0;
465}
466
e912a5b6
RK
467static int __nilfs_read_inode(struct super_block *sb,
468 struct nilfs_root *root, unsigned long ino,
05fe58fd
RK
469 struct inode *inode)
470{
e3154e97 471 struct the_nilfs *nilfs = sb->s_fs_info;
05fe58fd
RK
472 struct buffer_head *bh;
473 struct nilfs_inode *raw_inode;
474 int err;
475
365e215c 476 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
e912a5b6 477 err = nilfs_ifile_get_inode_block(root->ifile, ino, &bh);
05fe58fd
RK
478 if (unlikely(err))
479 goto bad_inode;
480
e912a5b6 481 raw_inode = nilfs_ifile_map_inode(root->ifile, ino, bh);
05fe58fd 482
1b2f5a64
RK
483 err = nilfs_read_inode_common(inode, raw_inode);
484 if (err)
05fe58fd
RK
485 goto failed_unmap;
486
487 if (S_ISREG(inode->i_mode)) {
488 inode->i_op = &nilfs_file_inode_operations;
489 inode->i_fop = &nilfs_file_operations;
490 inode->i_mapping->a_ops = &nilfs_aops;
05fe58fd
RK
491 } else if (S_ISDIR(inode->i_mode)) {
492 inode->i_op = &nilfs_dir_inode_operations;
493 inode->i_fop = &nilfs_dir_operations;
494 inode->i_mapping->a_ops = &nilfs_aops;
495 } else if (S_ISLNK(inode->i_mode)) {
496 inode->i_op = &nilfs_symlink_inode_operations;
21fc61c7 497 inode_nohighmem(inode);
05fe58fd
RK
498 inode->i_mapping->a_ops = &nilfs_aops;
499 } else {
500 inode->i_op = &nilfs_special_inode_operations;
501 init_special_inode(
502 inode, inode->i_mode,
cdce214e 503 huge_decode_dev(le64_to_cpu(raw_inode->i_device_code)));
05fe58fd 504 }
e912a5b6 505 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
05fe58fd 506 brelse(bh);
365e215c 507 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
05fe58fd 508 nilfs_set_inode_flags(inode);
0ce187c4 509 mapping_set_gfp_mask(inode->i_mapping,
c62d2555 510 mapping_gfp_constraint(inode->i_mapping, ~__GFP_FS));
05fe58fd
RK
511 return 0;
512
513 failed_unmap:
e912a5b6 514 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
05fe58fd
RK
515 brelse(bh);
516
517 bad_inode:
365e215c 518 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
05fe58fd
RK
519 return err;
520}
521
0e14a359
RK
522static int nilfs_iget_test(struct inode *inode, void *opaque)
523{
524 struct nilfs_iget_args *args = opaque;
525 struct nilfs_inode_info *ii;
526
4d8d9293 527 if (args->ino != inode->i_ino || args->root != NILFS_I(inode)->i_root)
0e14a359
RK
528 return 0;
529
530 ii = NILFS_I(inode);
e897be17
RK
531 if (test_bit(NILFS_I_BTNC, &ii->i_state)) {
532 if (!args->for_btnc)
533 return 0;
534 } else if (args->for_btnc) {
535 return 0;
536 }
6e211930
RK
537 if (test_bit(NILFS_I_SHADOW, &ii->i_state)) {
538 if (!args->for_shadow)
539 return 0;
540 } else if (args->for_shadow) {
541 return 0;
542 }
e897be17 543
0e14a359
RK
544 if (!test_bit(NILFS_I_GCINODE, &ii->i_state))
545 return !args->for_gc;
546
547 return args->for_gc && args->cno == ii->i_cno;
548}
549
550static int nilfs_iget_set(struct inode *inode, void *opaque)
551{
552 struct nilfs_iget_args *args = opaque;
553
554 inode->i_ino = args->ino;
e897be17
RK
555 NILFS_I(inode)->i_cno = args->cno;
556 NILFS_I(inode)->i_root = args->root;
557 if (args->root && args->ino == NILFS_ROOT_INO)
558 nilfs_get_root(args->root);
559
560 if (args->for_gc)
4ce5c342 561 NILFS_I(inode)->i_state = BIT(NILFS_I_GCINODE);
e897be17
RK
562 if (args->for_btnc)
563 NILFS_I(inode)->i_state |= BIT(NILFS_I_BTNC);
6e211930
RK
564 if (args->for_shadow)
565 NILFS_I(inode)->i_state |= BIT(NILFS_I_SHADOW);
0e14a359
RK
566 return 0;
567}
568
032dbb3b
RK
569struct inode *nilfs_ilookup(struct super_block *sb, struct nilfs_root *root,
570 unsigned long ino)
571{
572 struct nilfs_iget_args args = {
e897be17 573 .ino = ino, .root = root, .cno = 0, .for_gc = false,
6e211930 574 .for_btnc = false, .for_shadow = false
032dbb3b
RK
575 };
576
577 return ilookup5(sb, ino, nilfs_iget_test, &args);
578}
579
f1e89c86
RK
580struct inode *nilfs_iget_locked(struct super_block *sb, struct nilfs_root *root,
581 unsigned long ino)
05fe58fd 582{
4d8d9293 583 struct nilfs_iget_args args = {
e897be17 584 .ino = ino, .root = root, .cno = 0, .for_gc = false,
6e211930 585 .for_btnc = false, .for_shadow = false
4d8d9293 586 };
f1e89c86
RK
587
588 return iget5_locked(sb, ino, nilfs_iget_test, nilfs_iget_set, &args);
589}
590
591struct inode *nilfs_iget(struct super_block *sb, struct nilfs_root *root,
592 unsigned long ino)
593{
05fe58fd
RK
594 struct inode *inode;
595 int err;
596
f1e89c86 597 inode = nilfs_iget_locked(sb, root, ino);
05fe58fd
RK
598 if (unlikely(!inode))
599 return ERR_PTR(-ENOMEM);
600 if (!(inode->i_state & I_NEW))
601 return inode;
602
e912a5b6 603 err = __nilfs_read_inode(sb, root, ino, inode);
05fe58fd
RK
604 if (unlikely(err)) {
605 iget_failed(inode);
606 return ERR_PTR(err);
607 }
608 unlock_new_inode(inode);
609 return inode;
610}
611
263d90ce
RK
612struct inode *nilfs_iget_for_gc(struct super_block *sb, unsigned long ino,
613 __u64 cno)
614{
4d8d9293 615 struct nilfs_iget_args args = {
e897be17 616 .ino = ino, .root = NULL, .cno = cno, .for_gc = true,
6e211930 617 .for_btnc = false, .for_shadow = false
4d8d9293 618 };
263d90ce
RK
619 struct inode *inode;
620 int err;
621
622 inode = iget5_locked(sb, ino, nilfs_iget_test, nilfs_iget_set, &args);
623 if (unlikely(!inode))
624 return ERR_PTR(-ENOMEM);
625 if (!(inode->i_state & I_NEW))
626 return inode;
627
628 err = nilfs_init_gcinode(inode);
629 if (unlikely(err)) {
630 iget_failed(inode);
631 return ERR_PTR(err);
632 }
633 unlock_new_inode(inode);
634 return inode;
635}
636
e897be17
RK
637/**
638 * nilfs_attach_btree_node_cache - attach a B-tree node cache to the inode
639 * @inode: inode object
640 *
641 * nilfs_attach_btree_node_cache() attaches a B-tree node cache to @inode,
642 * or does nothing if the inode already has it. This function allocates
643 * an additional inode to maintain page cache of B-tree nodes one-on-one.
644 *
645 * Return Value: On success, 0 is returned. On errors, one of the following
646 * negative error code is returned.
647 *
648 * %-ENOMEM - Insufficient memory available.
649 */
650int nilfs_attach_btree_node_cache(struct inode *inode)
651{
652 struct nilfs_inode_info *ii = NILFS_I(inode);
653 struct inode *btnc_inode;
654 struct nilfs_iget_args args;
655
656 if (ii->i_assoc_inode)
657 return 0;
658
659 args.ino = inode->i_ino;
660 args.root = ii->i_root;
661 args.cno = ii->i_cno;
662 args.for_gc = test_bit(NILFS_I_GCINODE, &ii->i_state) != 0;
663 args.for_btnc = true;
6e211930 664 args.for_shadow = test_bit(NILFS_I_SHADOW, &ii->i_state) != 0;
e897be17
RK
665
666 btnc_inode = iget5_locked(inode->i_sb, inode->i_ino, nilfs_iget_test,
667 nilfs_iget_set, &args);
668 if (unlikely(!btnc_inode))
669 return -ENOMEM;
670 if (btnc_inode->i_state & I_NEW) {
671 nilfs_init_btnc_inode(btnc_inode);
672 unlock_new_inode(btnc_inode);
673 }
674 NILFS_I(btnc_inode)->i_assoc_inode = inode;
675 NILFS_I(btnc_inode)->i_bmap = ii->i_bmap;
676 ii->i_assoc_inode = btnc_inode;
677
678 return 0;
679}
680
681/**
682 * nilfs_detach_btree_node_cache - detach the B-tree node cache from the inode
683 * @inode: inode object
684 *
685 * nilfs_detach_btree_node_cache() detaches the B-tree node cache and its
686 * holder inode bound to @inode, or does nothing if @inode doesn't have it.
687 */
688void nilfs_detach_btree_node_cache(struct inode *inode)
689{
690 struct nilfs_inode_info *ii = NILFS_I(inode);
691 struct inode *btnc_inode = ii->i_assoc_inode;
692
693 if (btnc_inode) {
694 NILFS_I(btnc_inode)->i_assoc_inode = NULL;
695 ii->i_assoc_inode = NULL;
696 iput(btnc_inode);
697 }
698}
699
6e211930
RK
700/**
701 * nilfs_iget_for_shadow - obtain inode for shadow mapping
702 * @inode: inode object that uses shadow mapping
703 *
704 * nilfs_iget_for_shadow() allocates a pair of inodes that holds page
705 * caches for shadow mapping. The page cache for data pages is set up
706 * in one inode and the one for b-tree node pages is set up in the
707 * other inode, which is attached to the former inode.
708 *
709 * Return Value: On success, a pointer to the inode for data pages is
710 * returned. On errors, one of the following negative error code is returned
711 * in a pointer type.
712 *
713 * %-ENOMEM - Insufficient memory available.
714 */
715struct inode *nilfs_iget_for_shadow(struct inode *inode)
716{
717 struct nilfs_iget_args args = {
718 .ino = inode->i_ino, .root = NULL, .cno = 0, .for_gc = false,
719 .for_btnc = false, .for_shadow = true
720 };
721 struct inode *s_inode;
722 int err;
723
724 s_inode = iget5_locked(inode->i_sb, inode->i_ino, nilfs_iget_test,
725 nilfs_iget_set, &args);
726 if (unlikely(!s_inode))
727 return ERR_PTR(-ENOMEM);
728 if (!(s_inode->i_state & I_NEW))
729 return inode;
730
731 NILFS_I(s_inode)->i_flags = 0;
732 memset(NILFS_I(s_inode)->i_bmap, 0, sizeof(struct nilfs_bmap));
733 mapping_set_gfp_mask(s_inode->i_mapping, GFP_NOFS);
734
735 err = nilfs_attach_btree_node_cache(s_inode);
736 if (unlikely(err)) {
737 iget_failed(s_inode);
738 return ERR_PTR(err);
739 }
740 unlock_new_inode(s_inode);
741 return s_inode;
742}
743
05fe58fd
RK
744void nilfs_write_inode_common(struct inode *inode,
745 struct nilfs_inode *raw_inode, int has_bmap)
746{
747 struct nilfs_inode_info *ii = NILFS_I(inode);
748
749 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
305d3d0d
EB
750 raw_inode->i_uid = cpu_to_le32(i_uid_read(inode));
751 raw_inode->i_gid = cpu_to_le32(i_gid_read(inode));
05fe58fd
RK
752 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
753 raw_inode->i_size = cpu_to_le64(inode->i_size);
754 raw_inode->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
755 raw_inode->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
61239230
RK
756 raw_inode->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
757 raw_inode->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
05fe58fd
RK
758 raw_inode->i_blocks = cpu_to_le64(inode->i_blocks);
759
05fe58fd
RK
760 raw_inode->i_flags = cpu_to_le32(ii->i_flags);
761 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
762
56eb5538
RK
763 if (NILFS_ROOT_METADATA_FILE(inode->i_ino)) {
764 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
765
766 /* zero-fill unused portion in the case of super root block */
767 raw_inode->i_xattr = 0;
768 raw_inode->i_pad = 0;
769 memset((void *)raw_inode + sizeof(*raw_inode), 0,
770 nilfs->ns_inode_size - sizeof(*raw_inode));
771 }
772
05fe58fd
RK
773 if (has_bmap)
774 nilfs_bmap_write(ii->i_bmap, raw_inode);
775 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
776 raw_inode->i_device_code =
cdce214e 777 cpu_to_le64(huge_encode_dev(inode->i_rdev));
076a378b
RK
778 /*
779 * When extending inode, nilfs->ns_inode_size should be checked
780 * for substitutions of appended fields.
781 */
05fe58fd
RK
782}
783
b9f66140 784void nilfs_update_inode(struct inode *inode, struct buffer_head *ibh, int flags)
05fe58fd
RK
785{
786 ino_t ino = inode->i_ino;
787 struct nilfs_inode_info *ii = NILFS_I(inode);
e912a5b6 788 struct inode *ifile = ii->i_root->ifile;
05fe58fd
RK
789 struct nilfs_inode *raw_inode;
790
e912a5b6 791 raw_inode = nilfs_ifile_map_inode(ifile, ino, ibh);
05fe58fd 792
05fe58fd 793 if (test_and_clear_bit(NILFS_I_NEW, &ii->i_state))
e912a5b6 794 memset(raw_inode, 0, NILFS_MDT(ifile)->mi_entry_size);
b9f66140
AR
795 if (flags & I_DIRTY_DATASYNC)
796 set_bit(NILFS_I_INODE_SYNC, &ii->i_state);
05fe58fd
RK
797
798 nilfs_write_inode_common(inode, raw_inode, 0);
076a378b
RK
799 /*
800 * XXX: call with has_bmap = 0 is a workaround to avoid
801 * deadlock of bmap. This delays update of i_bmap to just
802 * before writing.
803 */
804
e912a5b6 805 nilfs_ifile_unmap_inode(ifile, ino, ibh);
05fe58fd
RK
806}
807
808#define NILFS_MAX_TRUNCATE_BLOCKS 16384 /* 64MB for 4KB block */
809
810static void nilfs_truncate_bmap(struct nilfs_inode_info *ii,
811 unsigned long from)
812{
3568a13f 813 __u64 b;
05fe58fd
RK
814 int ret;
815
816 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
817 return;
e828949e 818repeat:
05fe58fd
RK
819 ret = nilfs_bmap_last_key(ii->i_bmap, &b);
820 if (ret == -ENOENT)
821 return;
822 else if (ret < 0)
823 goto failed;
824
825 if (b < from)
826 return;
827
3568a13f 828 b -= min_t(__u64, NILFS_MAX_TRUNCATE_BLOCKS, b - from);
05fe58fd
RK
829 ret = nilfs_bmap_truncate(ii->i_bmap, b);
830 nilfs_relax_pressure_in_lock(ii->vfs_inode.i_sb);
831 if (!ret || (ret == -ENOMEM &&
832 nilfs_bmap_truncate(ii->i_bmap, b) == 0))
833 goto repeat;
834
e828949e 835failed:
a1d0747a
JP
836 nilfs_warn(ii->vfs_inode.i_sb, "error %d truncating bmap (ino=%lu)",
837 ret, ii->vfs_inode.i_ino);
05fe58fd
RK
838}
839
840void nilfs_truncate(struct inode *inode)
841{
842 unsigned long blkoff;
843 unsigned int blocksize;
844 struct nilfs_transaction_info ti;
845 struct super_block *sb = inode->i_sb;
846 struct nilfs_inode_info *ii = NILFS_I(inode);
05fe58fd
RK
847
848 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
849 return;
850 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
851 return;
852
853 blocksize = sb->s_blocksize;
854 blkoff = (inode->i_size + blocksize - 1) >> sb->s_blocksize_bits;
1f5abe7e 855 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
05fe58fd
RK
856
857 block_truncate_page(inode->i_mapping, inode->i_size, nilfs_get_block);
858
859 nilfs_truncate_bmap(ii, blkoff);
860
078cd827 861 inode->i_mtime = inode->i_ctime = current_time(inode);
05fe58fd
RK
862 if (IS_SYNC(inode))
863 nilfs_set_transaction_flag(NILFS_TI_SYNC);
864
abdb318b 865 nilfs_mark_inode_dirty(inode);
bcbc8c64 866 nilfs_set_file_dirty(inode, 0);
47420c79 867 nilfs_transaction_commit(sb);
076a378b
RK
868 /*
869 * May construct a logical segment and may fail in sync mode.
870 * But truncate has no return value.
871 */
05fe58fd
RK
872}
873
6fd1e5c9
AV
874static void nilfs_clear_inode(struct inode *inode)
875{
876 struct nilfs_inode_info *ii = NILFS_I(inode);
877
878 /*
879 * Free resources allocated in nilfs_read_inode(), here.
880 */
881 BUG_ON(!list_empty(&ii->i_dirty));
882 brelse(ii->i_bh);
883 ii->i_bh = NULL;
884
2d19961d
RK
885 if (nilfs_is_metadata_file_inode(inode))
886 nilfs_mdt_clear(inode);
518d1a6a 887
6fd1e5c9
AV
888 if (test_bit(NILFS_I_BMAP, &ii->i_state))
889 nilfs_bmap_clear(ii->i_bmap);
890
e897be17
RK
891 if (!test_bit(NILFS_I_BTNC, &ii->i_state))
892 nilfs_detach_btree_node_cache(inode);
4d8d9293
RK
893
894 if (ii->i_root && inode->i_ino == NILFS_ROOT_INO)
895 nilfs_put_root(ii->i_root);
6fd1e5c9
AV
896}
897
898void nilfs_evict_inode(struct inode *inode)
05fe58fd
RK
899{
900 struct nilfs_transaction_info ti;
901 struct super_block *sb = inode->i_sb;
902 struct nilfs_inode_info *ii = NILFS_I(inode);
25b18d39 903 int ret;
05fe58fd 904
4d8d9293 905 if (inode->i_nlink || !ii->i_root || unlikely(is_bad_inode(inode))) {
91b0abe3 906 truncate_inode_pages_final(&inode->i_data);
dbd5768f 907 clear_inode(inode);
6fd1e5c9 908 nilfs_clear_inode(inode);
05fe58fd
RK
909 return;
910 }
1f5abe7e
RK
911 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
912
91b0abe3 913 truncate_inode_pages_final(&inode->i_data);
05fe58fd 914
e912a5b6 915 /* TODO: some of the following operations may fail. */
05fe58fd 916 nilfs_truncate_bmap(ii, 0);
abdb318b 917 nilfs_mark_inode_dirty(inode);
dbd5768f 918 clear_inode(inode);
e912a5b6 919
25b18d39
RK
920 ret = nilfs_ifile_delete_inode(ii->i_root->ifile, inode->i_ino);
921 if (!ret)
e5f7f848 922 atomic64_dec(&ii->i_root->inodes_count);
e912a5b6 923
6fd1e5c9 924 nilfs_clear_inode(inode);
e912a5b6 925
05fe58fd
RK
926 if (IS_SYNC(inode))
927 nilfs_set_transaction_flag(NILFS_TI_SYNC);
47420c79 928 nilfs_transaction_commit(sb);
076a378b
RK
929 /*
930 * May construct a logical segment and may fail in sync mode.
931 * But delete_inode has no return value.
932 */
05fe58fd
RK
933}
934
549c7297
CB
935int nilfs_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
936 struct iattr *iattr)
05fe58fd
RK
937{
938 struct nilfs_transaction_info ti;
2b0143b5 939 struct inode *inode = d_inode(dentry);
05fe58fd 940 struct super_block *sb = inode->i_sb;
47420c79 941 int err;
05fe58fd 942
2f221d6f 943 err = setattr_prepare(&init_user_ns, dentry, iattr);
05fe58fd
RK
944 if (err)
945 return err;
946
947 err = nilfs_transaction_begin(sb, &ti, 0);
948 if (unlikely(err))
949 return err;
1025774c
CH
950
951 if ((iattr->ia_valid & ATTR_SIZE) &&
952 iattr->ia_size != i_size_read(inode)) {
562c72aa 953 inode_dio_wait(inode);
2d1b399b
MS
954 truncate_setsize(inode, iattr->ia_size);
955 nilfs_truncate(inode);
1025774c
CH
956 }
957
2f221d6f 958 setattr_copy(&init_user_ns, inode, iattr);
1025774c
CH
959 mark_inode_dirty(inode);
960
961 if (iattr->ia_valid & ATTR_MODE) {
05fe58fd 962 err = nilfs_acl_chmod(inode);
1025774c
CH
963 if (unlikely(err))
964 goto out_err;
965 }
966
967 return nilfs_transaction_commit(sb);
47420c79 968
1025774c
CH
969out_err:
970 nilfs_transaction_abort(sb);
47420c79 971 return err;
05fe58fd
RK
972}
973
549c7297
CB
974int nilfs_permission(struct user_namespace *mnt_userns, struct inode *inode,
975 int mask)
dc3d3b81 976{
730e908f 977 struct nilfs_root *root = NILFS_I(inode)->i_root;
4ad364ca 978
dc3d3b81
RK
979 if ((mask & MAY_WRITE) && root &&
980 root->cno != NILFS_CPTREE_CURRENT_CNO)
981 return -EROFS; /* snapshot is not writable */
982
47291baa 983 return generic_permission(&init_user_ns, inode, mask);
dc3d3b81
RK
984}
985
bcbc8c64 986int nilfs_load_inode_block(struct inode *inode, struct buffer_head **pbh)
05fe58fd 987{
e3154e97 988 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
05fe58fd
RK
989 struct nilfs_inode_info *ii = NILFS_I(inode);
990 int err;
991
693dd321 992 spin_lock(&nilfs->ns_inode_lock);
05fe58fd 993 if (ii->i_bh == NULL) {
693dd321 994 spin_unlock(&nilfs->ns_inode_lock);
e912a5b6
RK
995 err = nilfs_ifile_get_inode_block(ii->i_root->ifile,
996 inode->i_ino, pbh);
05fe58fd
RK
997 if (unlikely(err))
998 return err;
693dd321 999 spin_lock(&nilfs->ns_inode_lock);
05fe58fd
RK
1000 if (ii->i_bh == NULL)
1001 ii->i_bh = *pbh;
1002 else {
1003 brelse(*pbh);
1004 *pbh = ii->i_bh;
1005 }
1006 } else
1007 *pbh = ii->i_bh;
1008
1009 get_bh(*pbh);
693dd321 1010 spin_unlock(&nilfs->ns_inode_lock);
05fe58fd
RK
1011 return 0;
1012}
1013
1014int nilfs_inode_dirty(struct inode *inode)
1015{
1016 struct nilfs_inode_info *ii = NILFS_I(inode);
e3154e97 1017 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
05fe58fd
RK
1018 int ret = 0;
1019
1020 if (!list_empty(&ii->i_dirty)) {
693dd321 1021 spin_lock(&nilfs->ns_inode_lock);
05fe58fd
RK
1022 ret = test_bit(NILFS_I_DIRTY, &ii->i_state) ||
1023 test_bit(NILFS_I_BUSY, &ii->i_state);
693dd321 1024 spin_unlock(&nilfs->ns_inode_lock);
05fe58fd
RK
1025 }
1026 return ret;
1027}
1028
0c6c44cb 1029int nilfs_set_file_dirty(struct inode *inode, unsigned int nr_dirty)
05fe58fd
RK
1030{
1031 struct nilfs_inode_info *ii = NILFS_I(inode);
e3154e97 1032 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
05fe58fd 1033
693dd321 1034 atomic_add(nr_dirty, &nilfs->ns_ndirtyblks);
05fe58fd 1035
458c5b08 1036 if (test_and_set_bit(NILFS_I_DIRTY, &ii->i_state))
05fe58fd
RK
1037 return 0;
1038
693dd321 1039 spin_lock(&nilfs->ns_inode_lock);
05fe58fd
RK
1040 if (!test_bit(NILFS_I_QUEUED, &ii->i_state) &&
1041 !test_bit(NILFS_I_BUSY, &ii->i_state)) {
076a378b
RK
1042 /*
1043 * Because this routine may race with nilfs_dispose_list(),
1044 * we have to check NILFS_I_QUEUED here, too.
1045 */
05fe58fd 1046 if (list_empty(&ii->i_dirty) && igrab(inode) == NULL) {
076a378b
RK
1047 /*
1048 * This will happen when somebody is freeing
1049 * this inode.
1050 */
a1d0747a
JP
1051 nilfs_warn(inode->i_sb,
1052 "cannot set file dirty (ino=%lu): the file is being freed",
1053 inode->i_ino);
693dd321 1054 spin_unlock(&nilfs->ns_inode_lock);
076a378b
RK
1055 return -EINVAL; /*
1056 * NILFS_I_DIRTY may remain for
1057 * freeing inode.
1058 */
05fe58fd 1059 }
eaae0f37 1060 list_move_tail(&ii->i_dirty, &nilfs->ns_dirty_files);
05fe58fd
RK
1061 set_bit(NILFS_I_QUEUED, &ii->i_state);
1062 }
693dd321 1063 spin_unlock(&nilfs->ns_inode_lock);
05fe58fd
RK
1064 return 0;
1065}
1066
b9f66140 1067int __nilfs_mark_inode_dirty(struct inode *inode, int flags)
05fe58fd 1068{
05fe58fd
RK
1069 struct buffer_head *ibh;
1070 int err;
1071
bcbc8c64 1072 err = nilfs_load_inode_block(inode, &ibh);
05fe58fd 1073 if (unlikely(err)) {
a1d0747a
JP
1074 nilfs_warn(inode->i_sb,
1075 "cannot mark inode dirty (ino=%lu): error %d loading inode block",
1076 inode->i_ino, err);
05fe58fd
RK
1077 return err;
1078 }
b9f66140 1079 nilfs_update_inode(inode, ibh, flags);
5fc7b141 1080 mark_buffer_dirty(ibh);
e912a5b6 1081 nilfs_mdt_mark_dirty(NILFS_I(inode)->i_root->ifile);
05fe58fd
RK
1082 brelse(ibh);
1083 return 0;
1084}
1085
1086/**
1087 * nilfs_dirty_inode - reflect changes on given inode to an inode block.
1088 * @inode: inode of the file to be registered.
516edb45 1089 * @flags: flags to determine the dirty state of the inode
05fe58fd
RK
1090 *
1091 * nilfs_dirty_inode() loads a inode block containing the specified
1092 * @inode and copies data from a nilfs_inode to a corresponding inode
1093 * entry in the inode block. This operation is excluded from the segment
1094 * construction. This function can be called both as a single operation
1095 * and as a part of indivisible file operations.
1096 */
aa385729 1097void nilfs_dirty_inode(struct inode *inode, int flags)
05fe58fd
RK
1098{
1099 struct nilfs_transaction_info ti;
7d6cd92f 1100 struct nilfs_mdt_info *mdi = NILFS_MDT(inode);
05fe58fd
RK
1101
1102 if (is_bad_inode(inode)) {
a1d0747a
JP
1103 nilfs_warn(inode->i_sb,
1104 "tried to mark bad_inode dirty. ignored.");
05fe58fd
RK
1105 dump_stack();
1106 return;
1107 }
7d6cd92f
RK
1108 if (mdi) {
1109 nilfs_mdt_mark_dirty(inode);
1110 return;
1111 }
05fe58fd 1112 nilfs_transaction_begin(inode->i_sb, &ti, 0);
b9f66140 1113 __nilfs_mark_inode_dirty(inode, flags);
47420c79 1114 nilfs_transaction_commit(inode->i_sb); /* never fails */
05fe58fd 1115}
622daaff
RK
1116
1117int nilfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1118 __u64 start, __u64 len)
1119{
0ef28f9a 1120 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
622daaff
RK
1121 __u64 logical = 0, phys = 0, size = 0;
1122 __u32 flags = 0;
1123 loff_t isize;
1124 sector_t blkoff, end_blkoff;
1125 sector_t delalloc_blkoff;
1126 unsigned long delalloc_blklen;
1127 unsigned int blkbits = inode->i_blkbits;
1128 int ret, n;
1129
45dd052e 1130 ret = fiemap_prep(inode, fieinfo, start, &len, 0);
622daaff
RK
1131 if (ret)
1132 return ret;
1133
5955102c 1134 inode_lock(inode);
622daaff
RK
1135
1136 isize = i_size_read(inode);
1137
1138 blkoff = start >> blkbits;
1139 end_blkoff = (start + len - 1) >> blkbits;
1140
1141 delalloc_blklen = nilfs_find_uncommitted_extent(inode, blkoff,
1142 &delalloc_blkoff);
1143
1144 do {
1145 __u64 blkphy;
1146 unsigned int maxblocks;
1147
1148 if (delalloc_blklen && blkoff == delalloc_blkoff) {
1149 if (size) {
1150 /* End of the current extent */
1151 ret = fiemap_fill_next_extent(
1152 fieinfo, logical, phys, size, flags);
1153 if (ret)
1154 break;
1155 }
1156 if (blkoff > end_blkoff)
1157 break;
1158
1159 flags = FIEMAP_EXTENT_MERGED | FIEMAP_EXTENT_DELALLOC;
1160 logical = blkoff << blkbits;
1161 phys = 0;
1162 size = delalloc_blklen << blkbits;
1163
1164 blkoff = delalloc_blkoff + delalloc_blklen;
1165 delalloc_blklen = nilfs_find_uncommitted_extent(
1166 inode, blkoff, &delalloc_blkoff);
1167 continue;
1168 }
1169
1170 /*
1171 * Limit the number of blocks that we look up so as
1172 * not to get into the next delayed allocation extent.
1173 */
1174 maxblocks = INT_MAX;
1175 if (delalloc_blklen)
1176 maxblocks = min_t(sector_t, delalloc_blkoff - blkoff,
1177 maxblocks);
1178 blkphy = 0;
1179
1180 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1181 n = nilfs_bmap_lookup_contig(
1182 NILFS_I(inode)->i_bmap, blkoff, &blkphy, maxblocks);
1183 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1184
1185 if (n < 0) {
1186 int past_eof;
1187
1188 if (unlikely(n != -ENOENT))
1189 break; /* error */
1190
1191 /* HOLE */
1192 blkoff++;
1193 past_eof = ((blkoff << blkbits) >= isize);
1194
1195 if (size) {
1196 /* End of the current extent */
1197
1198 if (past_eof)
1199 flags |= FIEMAP_EXTENT_LAST;
1200
1201 ret = fiemap_fill_next_extent(
1202 fieinfo, logical, phys, size, flags);
1203 if (ret)
1204 break;
1205 size = 0;
1206 }
1207 if (blkoff > end_blkoff || past_eof)
1208 break;
1209 } else {
1210 if (size) {
1211 if (phys && blkphy << blkbits == phys + size) {
1212 /* The current extent goes on */
1213 size += n << blkbits;
1214 } else {
1215 /* Terminate the current extent */
1216 ret = fiemap_fill_next_extent(
1217 fieinfo, logical, phys, size,
1218 flags);
1219 if (ret || blkoff > end_blkoff)
1220 break;
1221
1222 /* Start another extent */
1223 flags = FIEMAP_EXTENT_MERGED;
1224 logical = blkoff << blkbits;
1225 phys = blkphy << blkbits;
1226 size = n << blkbits;
1227 }
1228 } else {
1229 /* Start a new extent */
1230 flags = FIEMAP_EXTENT_MERGED;
1231 logical = blkoff << blkbits;
1232 phys = blkphy << blkbits;
1233 size = n << blkbits;
1234 }
1235 blkoff += n;
1236 }
1237 cond_resched();
1238 } while (true);
1239
1240 /* If ret is 1 then we just hit the end of the extent array */
1241 if (ret == 1)
1242 ret = 0;
1243
5955102c 1244 inode_unlock(inode);
622daaff
RK
1245 return ret;
1246}