2 * inode.c - NILFS inode operations.
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Written by Ryusuke Konishi <ryusuke@osrg.net>
24 #include <linux/buffer_head.h>
25 #include <linux/gfp.h>
26 #include <linux/mpage.h>
27 #include <linux/pagemap.h>
28 #include <linux/writeback.h>
29 #include <linux/aio.h>
39 * struct nilfs_iget_args - arguments used during comparison between inodes
41 * @cno: checkpoint number
42 * @root: pointer on NILFS root object (mounted checkpoint)
43 * @for_gc: inode for GC flag
45 struct nilfs_iget_args
{
48 struct nilfs_root
*root
;
52 static int nilfs_iget_test(struct inode
*inode
, void *opaque
);
54 void nilfs_inode_add_blocks(struct inode
*inode
, int n
)
56 struct nilfs_root
*root
= NILFS_I(inode
)->i_root
;
58 inode_add_bytes(inode
, (1 << inode
->i_blkbits
) * n
);
60 atomic64_add(n
, &root
->blocks_count
);
63 void nilfs_inode_sub_blocks(struct inode
*inode
, int n
)
65 struct nilfs_root
*root
= NILFS_I(inode
)->i_root
;
67 inode_sub_bytes(inode
, (1 << inode
->i_blkbits
) * n
);
69 atomic64_sub(n
, &root
->blocks_count
);
73 * nilfs_get_block() - get a file block on the filesystem (callback function)
74 * @inode - inode struct of the target file
75 * @blkoff - file block number
76 * @bh_result - buffer head to be mapped on
77 * @create - indicate whether allocating the block or not when it has not
80 * This function does not issue actual read request of the specified data
81 * block. It is done by VFS.
83 int nilfs_get_block(struct inode
*inode
, sector_t blkoff
,
84 struct buffer_head
*bh_result
, int create
)
86 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
87 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
90 unsigned maxblocks
= bh_result
->b_size
>> inode
->i_blkbits
;
92 down_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
93 ret
= nilfs_bmap_lookup_contig(ii
->i_bmap
, blkoff
, &blknum
, maxblocks
);
94 up_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
95 if (ret
>= 0) { /* found */
96 map_bh(bh_result
, inode
->i_sb
, blknum
);
98 bh_result
->b_size
= (ret
<< inode
->i_blkbits
);
101 /* data block was not found */
102 if (ret
== -ENOENT
&& create
) {
103 struct nilfs_transaction_info ti
;
105 bh_result
->b_blocknr
= 0;
106 err
= nilfs_transaction_begin(inode
->i_sb
, &ti
, 1);
109 err
= nilfs_bmap_insert(ii
->i_bmap
, (unsigned long)blkoff
,
110 (unsigned long)bh_result
);
111 if (unlikely(err
!= 0)) {
112 if (err
== -EEXIST
) {
114 * The get_block() function could be called
115 * from multiple callers for an inode.
116 * However, the page having this block must
117 * be locked in this case.
120 "nilfs_get_block: a race condition "
121 "while inserting a data block. "
122 "(inode number=%lu, file block "
125 (unsigned long long)blkoff
);
128 nilfs_transaction_abort(inode
->i_sb
);
131 nilfs_mark_inode_dirty_sync(inode
);
132 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
133 /* Error handling should be detailed */
134 set_buffer_new(bh_result
);
135 set_buffer_delay(bh_result
);
136 map_bh(bh_result
, inode
->i_sb
, 0); /* dbn must be changed
138 } else if (ret
== -ENOENT
) {
139 /* not found is not error (e.g. hole); must return without
140 the mapped state flag. */
151 * nilfs_readpage() - implement readpage() method of nilfs_aops {}
152 * address_space_operations.
153 * @file - file struct of the file to be read
154 * @page - the page to be read
156 static int nilfs_readpage(struct file
*file
, struct page
*page
)
158 return mpage_readpage(page
, nilfs_get_block
);
162 * nilfs_readpages() - implement readpages() method of nilfs_aops {}
163 * address_space_operations.
164 * @file - file struct of the file to be read
165 * @mapping - address_space struct used for reading multiple pages
166 * @pages - the pages to be read
167 * @nr_pages - number of pages to be read
169 static int nilfs_readpages(struct file
*file
, struct address_space
*mapping
,
170 struct list_head
*pages
, unsigned nr_pages
)
172 return mpage_readpages(mapping
, pages
, nr_pages
, nilfs_get_block
);
175 static int nilfs_writepages(struct address_space
*mapping
,
176 struct writeback_control
*wbc
)
178 struct inode
*inode
= mapping
->host
;
181 if (inode
->i_sb
->s_flags
& MS_RDONLY
) {
182 nilfs_clear_dirty_pages(mapping
, false);
186 if (wbc
->sync_mode
== WB_SYNC_ALL
)
187 err
= nilfs_construct_dsync_segment(inode
->i_sb
, inode
,
193 static int nilfs_writepage(struct page
*page
, struct writeback_control
*wbc
)
195 struct inode
*inode
= page
->mapping
->host
;
198 if (inode
->i_sb
->s_flags
& MS_RDONLY
) {
200 * It means that filesystem was remounted in read-only
201 * mode because of error or metadata corruption. But we
202 * have dirty pages that try to be flushed in background.
203 * So, here we simply discard this dirty page.
205 nilfs_clear_dirty_page(page
, false);
210 redirty_page_for_writepage(wbc
, page
);
213 if (wbc
->sync_mode
== WB_SYNC_ALL
) {
214 err
= nilfs_construct_segment(inode
->i_sb
);
217 } else if (wbc
->for_reclaim
)
218 nilfs_flush_segment(inode
->i_sb
, inode
->i_ino
);
223 static int nilfs_set_page_dirty(struct page
*page
)
225 struct inode
*inode
= page
->mapping
->host
;
226 int ret
= __set_page_dirty_nobuffers(page
);
228 if (page_has_buffers(page
)) {
229 unsigned nr_dirty
= 0;
230 struct buffer_head
*bh
, *head
;
233 * This page is locked by callers, and no other thread
234 * concurrently marks its buffers dirty since they are
235 * only dirtied through routines in fs/buffer.c in
236 * which call sites of mark_buffer_dirty are protected
239 bh
= head
= page_buffers(page
);
241 /* Do not mark hole blocks dirty */
242 if (buffer_dirty(bh
) || !buffer_mapped(bh
))
245 set_buffer_dirty(bh
);
247 } while (bh
= bh
->b_this_page
, bh
!= head
);
250 nilfs_set_file_dirty(inode
, nr_dirty
);
252 unsigned nr_dirty
= 1 << (PAGE_CACHE_SHIFT
- inode
->i_blkbits
);
254 nilfs_set_file_dirty(inode
, nr_dirty
);
259 void nilfs_write_failed(struct address_space
*mapping
, loff_t to
)
261 struct inode
*inode
= mapping
->host
;
263 if (to
> inode
->i_size
) {
264 truncate_pagecache(inode
, inode
->i_size
);
265 nilfs_truncate(inode
);
269 static int nilfs_write_begin(struct file
*file
, struct address_space
*mapping
,
270 loff_t pos
, unsigned len
, unsigned flags
,
271 struct page
**pagep
, void **fsdata
)
274 struct inode
*inode
= mapping
->host
;
275 int err
= nilfs_transaction_begin(inode
->i_sb
, NULL
, 1);
280 err
= block_write_begin(mapping
, pos
, len
, flags
, pagep
,
283 nilfs_write_failed(mapping
, pos
+ len
);
284 nilfs_transaction_abort(inode
->i_sb
);
289 static int nilfs_write_end(struct file
*file
, struct address_space
*mapping
,
290 loff_t pos
, unsigned len
, unsigned copied
,
291 struct page
*page
, void *fsdata
)
293 struct inode
*inode
= mapping
->host
;
294 unsigned start
= pos
& (PAGE_CACHE_SIZE
- 1);
298 nr_dirty
= nilfs_page_count_clean_buffers(page
, start
,
300 copied
= generic_write_end(file
, mapping
, pos
, len
, copied
, page
,
302 nilfs_set_file_dirty(inode
, nr_dirty
);
303 err
= nilfs_transaction_commit(inode
->i_sb
);
304 return err
? : copied
;
308 nilfs_direct_IO(int rw
, struct kiocb
*iocb
, struct iov_iter
*iter
,
311 struct file
*file
= iocb
->ki_filp
;
312 struct address_space
*mapping
= file
->f_mapping
;
313 struct inode
*inode
= file
->f_mapping
->host
;
314 size_t count
= iov_iter_count(iter
);
320 /* Needs synchronization with the cleaner */
321 size
= blockdev_direct_IO(rw
, iocb
, inode
, iter
, offset
,
325 * In case of error extending write may have instantiated a few
326 * blocks outside i_size. Trim these off again.
328 if (unlikely((rw
& WRITE
) && size
< 0)) {
329 loff_t isize
= i_size_read(inode
);
330 loff_t end
= offset
+ count
;
333 nilfs_write_failed(mapping
, end
);
339 const struct address_space_operations nilfs_aops
= {
340 .writepage
= nilfs_writepage
,
341 .readpage
= nilfs_readpage
,
342 .writepages
= nilfs_writepages
,
343 .set_page_dirty
= nilfs_set_page_dirty
,
344 .readpages
= nilfs_readpages
,
345 .write_begin
= nilfs_write_begin
,
346 .write_end
= nilfs_write_end
,
347 /* .releasepage = nilfs_releasepage, */
348 .invalidatepage
= block_invalidatepage
,
349 .direct_IO
= nilfs_direct_IO
,
350 .is_partially_uptodate
= block_is_partially_uptodate
,
353 static int nilfs_insert_inode_locked(struct inode
*inode
,
354 struct nilfs_root
*root
,
357 struct nilfs_iget_args args
= {
358 .ino
= ino
, .root
= root
, .cno
= 0, .for_gc
= 0
361 return insert_inode_locked4(inode
, ino
, nilfs_iget_test
, &args
);
364 struct inode
*nilfs_new_inode(struct inode
*dir
, umode_t mode
)
366 struct super_block
*sb
= dir
->i_sb
;
367 struct the_nilfs
*nilfs
= sb
->s_fs_info
;
369 struct nilfs_inode_info
*ii
;
370 struct nilfs_root
*root
;
374 inode
= new_inode(sb
);
375 if (unlikely(!inode
))
378 mapping_set_gfp_mask(inode
->i_mapping
,
379 mapping_gfp_mask(inode
->i_mapping
) & ~__GFP_FS
);
381 root
= NILFS_I(dir
)->i_root
;
383 ii
->i_state
= 1 << NILFS_I_NEW
;
386 err
= nilfs_ifile_create_inode(root
->ifile
, &ino
, &ii
->i_bh
);
388 goto failed_ifile_create_inode
;
389 /* reference count of i_bh inherits from nilfs_mdt_read_block() */
391 atomic64_inc(&root
->inodes_count
);
392 inode_init_owner(inode
, dir
, mode
);
394 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
396 if (S_ISREG(mode
) || S_ISDIR(mode
) || S_ISLNK(mode
)) {
397 err
= nilfs_bmap_read(ii
->i_bmap
, NULL
);
399 goto failed_after_creation
;
401 set_bit(NILFS_I_BMAP
, &ii
->i_state
);
402 /* No lock is needed; iget() ensures it. */
405 ii
->i_flags
= nilfs_mask_flags(
406 mode
, NILFS_I(dir
)->i_flags
& NILFS_FL_INHERITED
);
408 /* ii->i_file_acl = 0; */
409 /* ii->i_dir_acl = 0; */
410 ii
->i_dir_start_lookup
= 0;
411 nilfs_set_inode_flags(inode
);
412 spin_lock(&nilfs
->ns_next_gen_lock
);
413 inode
->i_generation
= nilfs
->ns_next_generation
++;
414 spin_unlock(&nilfs
->ns_next_gen_lock
);
415 if (nilfs_insert_inode_locked(inode
, root
, ino
) < 0) {
417 goto failed_after_creation
;
420 err
= nilfs_init_acl(inode
, dir
);
422 goto failed_after_creation
; /* never occur. When supporting
423 nilfs_init_acl(), proper cancellation of
424 above jobs should be considered */
428 failed_after_creation
:
430 unlock_new_inode(inode
);
431 iput(inode
); /* raw_inode will be deleted through
432 nilfs_evict_inode() */
435 failed_ifile_create_inode
:
436 make_bad_inode(inode
);
437 iput(inode
); /* if i_nlink == 1, generic_forget_inode() will be
443 void nilfs_set_inode_flags(struct inode
*inode
)
445 unsigned int flags
= NILFS_I(inode
)->i_flags
;
447 inode
->i_flags
&= ~(S_SYNC
| S_APPEND
| S_IMMUTABLE
| S_NOATIME
|
449 if (flags
& FS_SYNC_FL
)
450 inode
->i_flags
|= S_SYNC
;
451 if (flags
& FS_APPEND_FL
)
452 inode
->i_flags
|= S_APPEND
;
453 if (flags
& FS_IMMUTABLE_FL
)
454 inode
->i_flags
|= S_IMMUTABLE
;
455 if (flags
& FS_NOATIME_FL
)
456 inode
->i_flags
|= S_NOATIME
;
457 if (flags
& FS_DIRSYNC_FL
)
458 inode
->i_flags
|= S_DIRSYNC
;
459 mapping_set_gfp_mask(inode
->i_mapping
,
460 mapping_gfp_mask(inode
->i_mapping
) & ~__GFP_FS
);
463 int nilfs_read_inode_common(struct inode
*inode
,
464 struct nilfs_inode
*raw_inode
)
466 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
469 inode
->i_mode
= le16_to_cpu(raw_inode
->i_mode
);
470 i_uid_write(inode
, le32_to_cpu(raw_inode
->i_uid
));
471 i_gid_write(inode
, le32_to_cpu(raw_inode
->i_gid
));
472 set_nlink(inode
, le16_to_cpu(raw_inode
->i_links_count
));
473 inode
->i_size
= le64_to_cpu(raw_inode
->i_size
);
474 inode
->i_atime
.tv_sec
= le64_to_cpu(raw_inode
->i_mtime
);
475 inode
->i_ctime
.tv_sec
= le64_to_cpu(raw_inode
->i_ctime
);
476 inode
->i_mtime
.tv_sec
= le64_to_cpu(raw_inode
->i_mtime
);
477 inode
->i_atime
.tv_nsec
= le32_to_cpu(raw_inode
->i_mtime_nsec
);
478 inode
->i_ctime
.tv_nsec
= le32_to_cpu(raw_inode
->i_ctime_nsec
);
479 inode
->i_mtime
.tv_nsec
= le32_to_cpu(raw_inode
->i_mtime_nsec
);
480 if (inode
->i_nlink
== 0)
481 return -ESTALE
; /* this inode is deleted */
483 inode
->i_blocks
= le64_to_cpu(raw_inode
->i_blocks
);
484 ii
->i_flags
= le32_to_cpu(raw_inode
->i_flags
);
486 ii
->i_file_acl
= le32_to_cpu(raw_inode
->i_file_acl
);
487 ii
->i_dir_acl
= S_ISREG(inode
->i_mode
) ?
488 0 : le32_to_cpu(raw_inode
->i_dir_acl
);
490 ii
->i_dir_start_lookup
= 0;
491 inode
->i_generation
= le32_to_cpu(raw_inode
->i_generation
);
493 if (S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
494 S_ISLNK(inode
->i_mode
)) {
495 err
= nilfs_bmap_read(ii
->i_bmap
, raw_inode
);
498 set_bit(NILFS_I_BMAP
, &ii
->i_state
);
499 /* No lock is needed; iget() ensures it. */
504 static int __nilfs_read_inode(struct super_block
*sb
,
505 struct nilfs_root
*root
, unsigned long ino
,
508 struct the_nilfs
*nilfs
= sb
->s_fs_info
;
509 struct buffer_head
*bh
;
510 struct nilfs_inode
*raw_inode
;
513 down_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
514 err
= nilfs_ifile_get_inode_block(root
->ifile
, ino
, &bh
);
518 raw_inode
= nilfs_ifile_map_inode(root
->ifile
, ino
, bh
);
520 err
= nilfs_read_inode_common(inode
, raw_inode
);
524 if (S_ISREG(inode
->i_mode
)) {
525 inode
->i_op
= &nilfs_file_inode_operations
;
526 inode
->i_fop
= &nilfs_file_operations
;
527 inode
->i_mapping
->a_ops
= &nilfs_aops
;
528 } else if (S_ISDIR(inode
->i_mode
)) {
529 inode
->i_op
= &nilfs_dir_inode_operations
;
530 inode
->i_fop
= &nilfs_dir_operations
;
531 inode
->i_mapping
->a_ops
= &nilfs_aops
;
532 } else if (S_ISLNK(inode
->i_mode
)) {
533 inode
->i_op
= &nilfs_symlink_inode_operations
;
534 inode
->i_mapping
->a_ops
= &nilfs_aops
;
536 inode
->i_op
= &nilfs_special_inode_operations
;
538 inode
, inode
->i_mode
,
539 huge_decode_dev(le64_to_cpu(raw_inode
->i_device_code
)));
541 nilfs_ifile_unmap_inode(root
->ifile
, ino
, bh
);
543 up_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
544 nilfs_set_inode_flags(inode
);
548 nilfs_ifile_unmap_inode(root
->ifile
, ino
, bh
);
552 up_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
556 static int nilfs_iget_test(struct inode
*inode
, void *opaque
)
558 struct nilfs_iget_args
*args
= opaque
;
559 struct nilfs_inode_info
*ii
;
561 if (args
->ino
!= inode
->i_ino
|| args
->root
!= NILFS_I(inode
)->i_root
)
565 if (!test_bit(NILFS_I_GCINODE
, &ii
->i_state
))
566 return !args
->for_gc
;
568 return args
->for_gc
&& args
->cno
== ii
->i_cno
;
571 static int nilfs_iget_set(struct inode
*inode
, void *opaque
)
573 struct nilfs_iget_args
*args
= opaque
;
575 inode
->i_ino
= args
->ino
;
577 NILFS_I(inode
)->i_state
= 1 << NILFS_I_GCINODE
;
578 NILFS_I(inode
)->i_cno
= args
->cno
;
579 NILFS_I(inode
)->i_root
= NULL
;
581 if (args
->root
&& args
->ino
== NILFS_ROOT_INO
)
582 nilfs_get_root(args
->root
);
583 NILFS_I(inode
)->i_root
= args
->root
;
588 struct inode
*nilfs_ilookup(struct super_block
*sb
, struct nilfs_root
*root
,
591 struct nilfs_iget_args args
= {
592 .ino
= ino
, .root
= root
, .cno
= 0, .for_gc
= 0
595 return ilookup5(sb
, ino
, nilfs_iget_test
, &args
);
598 struct inode
*nilfs_iget_locked(struct super_block
*sb
, struct nilfs_root
*root
,
601 struct nilfs_iget_args args
= {
602 .ino
= ino
, .root
= root
, .cno
= 0, .for_gc
= 0
605 return iget5_locked(sb
, ino
, nilfs_iget_test
, nilfs_iget_set
, &args
);
608 struct inode
*nilfs_iget(struct super_block
*sb
, struct nilfs_root
*root
,
614 inode
= nilfs_iget_locked(sb
, root
, ino
);
615 if (unlikely(!inode
))
616 return ERR_PTR(-ENOMEM
);
617 if (!(inode
->i_state
& I_NEW
))
620 err
= __nilfs_read_inode(sb
, root
, ino
, inode
);
625 unlock_new_inode(inode
);
629 struct inode
*nilfs_iget_for_gc(struct super_block
*sb
, unsigned long ino
,
632 struct nilfs_iget_args args
= {
633 .ino
= ino
, .root
= NULL
, .cno
= cno
, .for_gc
= 1
638 inode
= iget5_locked(sb
, ino
, nilfs_iget_test
, nilfs_iget_set
, &args
);
639 if (unlikely(!inode
))
640 return ERR_PTR(-ENOMEM
);
641 if (!(inode
->i_state
& I_NEW
))
644 err
= nilfs_init_gcinode(inode
);
649 unlock_new_inode(inode
);
653 void nilfs_write_inode_common(struct inode
*inode
,
654 struct nilfs_inode
*raw_inode
, int has_bmap
)
656 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
658 raw_inode
->i_mode
= cpu_to_le16(inode
->i_mode
);
659 raw_inode
->i_uid
= cpu_to_le32(i_uid_read(inode
));
660 raw_inode
->i_gid
= cpu_to_le32(i_gid_read(inode
));
661 raw_inode
->i_links_count
= cpu_to_le16(inode
->i_nlink
);
662 raw_inode
->i_size
= cpu_to_le64(inode
->i_size
);
663 raw_inode
->i_ctime
= cpu_to_le64(inode
->i_ctime
.tv_sec
);
664 raw_inode
->i_mtime
= cpu_to_le64(inode
->i_mtime
.tv_sec
);
665 raw_inode
->i_ctime_nsec
= cpu_to_le32(inode
->i_ctime
.tv_nsec
);
666 raw_inode
->i_mtime_nsec
= cpu_to_le32(inode
->i_mtime
.tv_nsec
);
667 raw_inode
->i_blocks
= cpu_to_le64(inode
->i_blocks
);
669 raw_inode
->i_flags
= cpu_to_le32(ii
->i_flags
);
670 raw_inode
->i_generation
= cpu_to_le32(inode
->i_generation
);
672 if (NILFS_ROOT_METADATA_FILE(inode
->i_ino
)) {
673 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
675 /* zero-fill unused portion in the case of super root block */
676 raw_inode
->i_xattr
= 0;
677 raw_inode
->i_pad
= 0;
678 memset((void *)raw_inode
+ sizeof(*raw_inode
), 0,
679 nilfs
->ns_inode_size
- sizeof(*raw_inode
));
683 nilfs_bmap_write(ii
->i_bmap
, raw_inode
);
684 else if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
))
685 raw_inode
->i_device_code
=
686 cpu_to_le64(huge_encode_dev(inode
->i_rdev
));
687 /* When extending inode, nilfs->ns_inode_size should be checked
688 for substitutions of appended fields */
691 void nilfs_update_inode(struct inode
*inode
, struct buffer_head
*ibh
, int flags
)
693 ino_t ino
= inode
->i_ino
;
694 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
695 struct inode
*ifile
= ii
->i_root
->ifile
;
696 struct nilfs_inode
*raw_inode
;
698 raw_inode
= nilfs_ifile_map_inode(ifile
, ino
, ibh
);
700 if (test_and_clear_bit(NILFS_I_NEW
, &ii
->i_state
))
701 memset(raw_inode
, 0, NILFS_MDT(ifile
)->mi_entry_size
);
702 if (flags
& I_DIRTY_DATASYNC
)
703 set_bit(NILFS_I_INODE_SYNC
, &ii
->i_state
);
705 nilfs_write_inode_common(inode
, raw_inode
, 0);
706 /* XXX: call with has_bmap = 0 is a workaround to avoid
707 deadlock of bmap. This delays update of i_bmap to just
709 nilfs_ifile_unmap_inode(ifile
, ino
, ibh
);
712 #define NILFS_MAX_TRUNCATE_BLOCKS 16384 /* 64MB for 4KB block */
714 static void nilfs_truncate_bmap(struct nilfs_inode_info
*ii
,
720 if (!test_bit(NILFS_I_BMAP
, &ii
->i_state
))
723 ret
= nilfs_bmap_last_key(ii
->i_bmap
, &b
);
732 b
-= min_t(unsigned long, NILFS_MAX_TRUNCATE_BLOCKS
, b
- from
);
733 ret
= nilfs_bmap_truncate(ii
->i_bmap
, b
);
734 nilfs_relax_pressure_in_lock(ii
->vfs_inode
.i_sb
);
735 if (!ret
|| (ret
== -ENOMEM
&&
736 nilfs_bmap_truncate(ii
->i_bmap
, b
) == 0))
740 nilfs_warning(ii
->vfs_inode
.i_sb
, __func__
,
741 "failed to truncate bmap (ino=%lu, err=%d)",
742 ii
->vfs_inode
.i_ino
, ret
);
745 void nilfs_truncate(struct inode
*inode
)
747 unsigned long blkoff
;
748 unsigned int blocksize
;
749 struct nilfs_transaction_info ti
;
750 struct super_block
*sb
= inode
->i_sb
;
751 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
753 if (!test_bit(NILFS_I_BMAP
, &ii
->i_state
))
755 if (IS_APPEND(inode
) || IS_IMMUTABLE(inode
))
758 blocksize
= sb
->s_blocksize
;
759 blkoff
= (inode
->i_size
+ blocksize
- 1) >> sb
->s_blocksize_bits
;
760 nilfs_transaction_begin(sb
, &ti
, 0); /* never fails */
762 block_truncate_page(inode
->i_mapping
, inode
->i_size
, nilfs_get_block
);
764 nilfs_truncate_bmap(ii
, blkoff
);
766 inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
768 nilfs_set_transaction_flag(NILFS_TI_SYNC
);
770 nilfs_mark_inode_dirty(inode
);
771 nilfs_set_file_dirty(inode
, 0);
772 nilfs_transaction_commit(sb
);
773 /* May construct a logical segment and may fail in sync mode.
774 But truncate has no return value. */
777 static void nilfs_clear_inode(struct inode
*inode
)
779 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
780 struct nilfs_mdt_info
*mdi
= NILFS_MDT(inode
);
783 * Free resources allocated in nilfs_read_inode(), here.
785 BUG_ON(!list_empty(&ii
->i_dirty
));
789 if (mdi
&& mdi
->mi_palloc_cache
)
790 nilfs_palloc_destroy_cache(inode
);
792 if (test_bit(NILFS_I_BMAP
, &ii
->i_state
))
793 nilfs_bmap_clear(ii
->i_bmap
);
795 nilfs_btnode_cache_clear(&ii
->i_btnode_cache
);
797 if (ii
->i_root
&& inode
->i_ino
== NILFS_ROOT_INO
)
798 nilfs_put_root(ii
->i_root
);
801 void nilfs_evict_inode(struct inode
*inode
)
803 struct nilfs_transaction_info ti
;
804 struct super_block
*sb
= inode
->i_sb
;
805 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
808 if (inode
->i_nlink
|| !ii
->i_root
|| unlikely(is_bad_inode(inode
))) {
809 truncate_inode_pages_final(&inode
->i_data
);
811 nilfs_clear_inode(inode
);
814 nilfs_transaction_begin(sb
, &ti
, 0); /* never fails */
816 truncate_inode_pages_final(&inode
->i_data
);
818 /* TODO: some of the following operations may fail. */
819 nilfs_truncate_bmap(ii
, 0);
820 nilfs_mark_inode_dirty(inode
);
823 ret
= nilfs_ifile_delete_inode(ii
->i_root
->ifile
, inode
->i_ino
);
825 atomic64_dec(&ii
->i_root
->inodes_count
);
827 nilfs_clear_inode(inode
);
830 nilfs_set_transaction_flag(NILFS_TI_SYNC
);
831 nilfs_transaction_commit(sb
);
832 /* May construct a logical segment and may fail in sync mode.
833 But delete_inode has no return value. */
836 int nilfs_setattr(struct dentry
*dentry
, struct iattr
*iattr
)
838 struct nilfs_transaction_info ti
;
839 struct inode
*inode
= dentry
->d_inode
;
840 struct super_block
*sb
= inode
->i_sb
;
843 err
= inode_change_ok(inode
, iattr
);
847 err
= nilfs_transaction_begin(sb
, &ti
, 0);
851 if ((iattr
->ia_valid
& ATTR_SIZE
) &&
852 iattr
->ia_size
!= i_size_read(inode
)) {
853 inode_dio_wait(inode
);
854 truncate_setsize(inode
, iattr
->ia_size
);
855 nilfs_truncate(inode
);
858 setattr_copy(inode
, iattr
);
859 mark_inode_dirty(inode
);
861 if (iattr
->ia_valid
& ATTR_MODE
) {
862 err
= nilfs_acl_chmod(inode
);
867 return nilfs_transaction_commit(sb
);
870 nilfs_transaction_abort(sb
);
874 int nilfs_permission(struct inode
*inode
, int mask
)
876 struct nilfs_root
*root
= NILFS_I(inode
)->i_root
;
877 if ((mask
& MAY_WRITE
) && root
&&
878 root
->cno
!= NILFS_CPTREE_CURRENT_CNO
)
879 return -EROFS
; /* snapshot is not writable */
881 return generic_permission(inode
, mask
);
884 int nilfs_load_inode_block(struct inode
*inode
, struct buffer_head
**pbh
)
886 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
887 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
890 spin_lock(&nilfs
->ns_inode_lock
);
891 if (ii
->i_bh
== NULL
) {
892 spin_unlock(&nilfs
->ns_inode_lock
);
893 err
= nilfs_ifile_get_inode_block(ii
->i_root
->ifile
,
897 spin_lock(&nilfs
->ns_inode_lock
);
898 if (ii
->i_bh
== NULL
)
908 spin_unlock(&nilfs
->ns_inode_lock
);
912 int nilfs_inode_dirty(struct inode
*inode
)
914 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
915 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
918 if (!list_empty(&ii
->i_dirty
)) {
919 spin_lock(&nilfs
->ns_inode_lock
);
920 ret
= test_bit(NILFS_I_DIRTY
, &ii
->i_state
) ||
921 test_bit(NILFS_I_BUSY
, &ii
->i_state
);
922 spin_unlock(&nilfs
->ns_inode_lock
);
927 int nilfs_set_file_dirty(struct inode
*inode
, unsigned nr_dirty
)
929 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
930 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
932 atomic_add(nr_dirty
, &nilfs
->ns_ndirtyblks
);
934 if (test_and_set_bit(NILFS_I_DIRTY
, &ii
->i_state
))
937 spin_lock(&nilfs
->ns_inode_lock
);
938 if (!test_bit(NILFS_I_QUEUED
, &ii
->i_state
) &&
939 !test_bit(NILFS_I_BUSY
, &ii
->i_state
)) {
940 /* Because this routine may race with nilfs_dispose_list(),
941 we have to check NILFS_I_QUEUED here, too. */
942 if (list_empty(&ii
->i_dirty
) && igrab(inode
) == NULL
) {
943 /* This will happen when somebody is freeing
945 nilfs_warning(inode
->i_sb
, __func__
,
946 "cannot get inode (ino=%lu)\n",
948 spin_unlock(&nilfs
->ns_inode_lock
);
949 return -EINVAL
; /* NILFS_I_DIRTY may remain for
952 list_move_tail(&ii
->i_dirty
, &nilfs
->ns_dirty_files
);
953 set_bit(NILFS_I_QUEUED
, &ii
->i_state
);
955 spin_unlock(&nilfs
->ns_inode_lock
);
959 int __nilfs_mark_inode_dirty(struct inode
*inode
, int flags
)
961 struct buffer_head
*ibh
;
964 err
= nilfs_load_inode_block(inode
, &ibh
);
966 nilfs_warning(inode
->i_sb
, __func__
,
967 "failed to reget inode block.\n");
970 nilfs_update_inode(inode
, ibh
, flags
);
971 mark_buffer_dirty(ibh
);
972 nilfs_mdt_mark_dirty(NILFS_I(inode
)->i_root
->ifile
);
978 * nilfs_dirty_inode - reflect changes on given inode to an inode block.
979 * @inode: inode of the file to be registered.
981 * nilfs_dirty_inode() loads a inode block containing the specified
982 * @inode and copies data from a nilfs_inode to a corresponding inode
983 * entry in the inode block. This operation is excluded from the segment
984 * construction. This function can be called both as a single operation
985 * and as a part of indivisible file operations.
987 void nilfs_dirty_inode(struct inode
*inode
, int flags
)
989 struct nilfs_transaction_info ti
;
990 struct nilfs_mdt_info
*mdi
= NILFS_MDT(inode
);
992 if (is_bad_inode(inode
)) {
993 nilfs_warning(inode
->i_sb
, __func__
,
994 "tried to mark bad_inode dirty. ignored.\n");
999 nilfs_mdt_mark_dirty(inode
);
1002 nilfs_transaction_begin(inode
->i_sb
, &ti
, 0);
1003 __nilfs_mark_inode_dirty(inode
, flags
);
1004 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
1007 int nilfs_fiemap(struct inode
*inode
, struct fiemap_extent_info
*fieinfo
,
1008 __u64 start
, __u64 len
)
1010 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
1011 __u64 logical
= 0, phys
= 0, size
= 0;
1014 sector_t blkoff
, end_blkoff
;
1015 sector_t delalloc_blkoff
;
1016 unsigned long delalloc_blklen
;
1017 unsigned int blkbits
= inode
->i_blkbits
;
1020 ret
= fiemap_check_flags(fieinfo
, FIEMAP_FLAG_SYNC
);
1024 mutex_lock(&inode
->i_mutex
);
1026 isize
= i_size_read(inode
);
1028 blkoff
= start
>> blkbits
;
1029 end_blkoff
= (start
+ len
- 1) >> blkbits
;
1031 delalloc_blklen
= nilfs_find_uncommitted_extent(inode
, blkoff
,
1036 unsigned int maxblocks
;
1038 if (delalloc_blklen
&& blkoff
== delalloc_blkoff
) {
1040 /* End of the current extent */
1041 ret
= fiemap_fill_next_extent(
1042 fieinfo
, logical
, phys
, size
, flags
);
1046 if (blkoff
> end_blkoff
)
1049 flags
= FIEMAP_EXTENT_MERGED
| FIEMAP_EXTENT_DELALLOC
;
1050 logical
= blkoff
<< blkbits
;
1052 size
= delalloc_blklen
<< blkbits
;
1054 blkoff
= delalloc_blkoff
+ delalloc_blklen
;
1055 delalloc_blklen
= nilfs_find_uncommitted_extent(
1056 inode
, blkoff
, &delalloc_blkoff
);
1061 * Limit the number of blocks that we look up so as
1062 * not to get into the next delayed allocation extent.
1064 maxblocks
= INT_MAX
;
1065 if (delalloc_blklen
)
1066 maxblocks
= min_t(sector_t
, delalloc_blkoff
- blkoff
,
1070 down_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
1071 n
= nilfs_bmap_lookup_contig(
1072 NILFS_I(inode
)->i_bmap
, blkoff
, &blkphy
, maxblocks
);
1073 up_read(&NILFS_MDT(nilfs
->ns_dat
)->mi_sem
);
1078 if (unlikely(n
!= -ENOENT
))
1083 past_eof
= ((blkoff
<< blkbits
) >= isize
);
1086 /* End of the current extent */
1089 flags
|= FIEMAP_EXTENT_LAST
;
1091 ret
= fiemap_fill_next_extent(
1092 fieinfo
, logical
, phys
, size
, flags
);
1097 if (blkoff
> end_blkoff
|| past_eof
)
1101 if (phys
&& blkphy
<< blkbits
== phys
+ size
) {
1102 /* The current extent goes on */
1103 size
+= n
<< blkbits
;
1105 /* Terminate the current extent */
1106 ret
= fiemap_fill_next_extent(
1107 fieinfo
, logical
, phys
, size
,
1109 if (ret
|| blkoff
> end_blkoff
)
1112 /* Start another extent */
1113 flags
= FIEMAP_EXTENT_MERGED
;
1114 logical
= blkoff
<< blkbits
;
1115 phys
= blkphy
<< blkbits
;
1116 size
= n
<< blkbits
;
1119 /* Start a new extent */
1120 flags
= FIEMAP_EXTENT_MERGED
;
1121 logical
= blkoff
<< blkbits
;
1122 phys
= blkphy
<< blkbits
;
1123 size
= n
<< blkbits
;
1130 /* If ret is 1 then we just hit the end of the extent array */
1134 mutex_unlock(&inode
->i_mutex
);