blob: 671085512e0fde9e8be3274629db21e8c0561b96 [file] [log] [blame]
Ryusuke Konishiae980432018-09-04 15:46:30 -07001// SPDX-License-Identifier: GPL-2.0+
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -07002/*
3 * inode.c - NILFS inode operations.
4 *
5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
6 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -07007 * Written by Ryusuke Konishi.
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -07008 *
9 */
10
11#include <linux/buffer_head.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070013#include <linux/mpage.h>
Andreas Rohner56d7acc2014-09-25 16:05:14 -070014#include <linux/pagemap.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070015#include <linux/writeback.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080016#include <linux/uio.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070017#include "nilfs.h"
Al Viro6fd1e5c2010-06-07 11:55:00 -040018#include "btnode.h"
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070019#include "segment.h"
20#include "page.h"
21#include "mdt.h"
22#include "cpfile.h"
23#include "ifile.h"
24
Vyacheslav Dubeykof5974c82012-07-30 14:42:10 -070025/**
26 * struct nilfs_iget_args - arguments used during comparison between inodes
27 * @ino: inode number
28 * @cno: checkpoint number
29 * @root: pointer on NILFS root object (mounted checkpoint)
30 * @for_gc: inode for GC flag
31 */
Ryusuke Konishi0e14a352010-08-20 21:20:29 +090032struct nilfs_iget_args {
33 u64 ino;
34 __u64 cno;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +090035 struct nilfs_root *root;
Ryusuke Konishi0e14a352010-08-20 21:20:29 +090036 int for_gc;
37};
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070038
Ryusuke Konishi705304a2014-12-10 15:54:34 -080039static int nilfs_iget_test(struct inode *inode, void *opaque);
40
Ryusuke Konishibe667372011-03-05 00:19:32 +090041void nilfs_inode_add_blocks(struct inode *inode, int n)
42{
43 struct nilfs_root *root = NILFS_I(inode)->i_root;
44
Fabian Frederick93407472017-02-27 14:28:32 -080045 inode_add_bytes(inode, i_blocksize(inode) * n);
Ryusuke Konishibe667372011-03-05 00:19:32 +090046 if (root)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -070047 atomic64_add(n, &root->blocks_count);
Ryusuke Konishibe667372011-03-05 00:19:32 +090048}
49
50void nilfs_inode_sub_blocks(struct inode *inode, int n)
51{
52 struct nilfs_root *root = NILFS_I(inode)->i_root;
53
Fabian Frederick93407472017-02-27 14:28:32 -080054 inode_sub_bytes(inode, i_blocksize(inode) * n);
Ryusuke Konishibe667372011-03-05 00:19:32 +090055 if (root)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -070056 atomic64_sub(n, &root->blocks_count);
Ryusuke Konishibe667372011-03-05 00:19:32 +090057}
58
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070059/**
60 * nilfs_get_block() - get a file block on the filesystem (callback function)
61 * @inode - inode struct of the target file
62 * @blkoff - file block number
63 * @bh_result - buffer head to be mapped on
64 * @create - indicate whether allocating the block or not when it has not
65 * been allocated yet.
66 *
67 * This function does not issue actual read request of the specified data
68 * block. It is done by VFS.
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070069 */
70int nilfs_get_block(struct inode *inode, sector_t blkoff,
71 struct buffer_head *bh_result, int create)
72{
73 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090074 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090075 __u64 blknum = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070076 int err = 0, ret;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -070077 unsigned int maxblocks = bh_result->b_size >> inode->i_blkbits;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070078
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090079 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090080 ret = nilfs_bmap_lookup_contig(ii->i_bmap, blkoff, &blknum, maxblocks);
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090081 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090082 if (ret >= 0) { /* found */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070083 map_bh(bh_result, inode->i_sb, blknum);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090084 if (ret > 0)
85 bh_result->b_size = (ret << inode->i_blkbits);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070086 goto out;
87 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070088 /* data block was not found */
89 if (ret == -ENOENT && create) {
90 struct nilfs_transaction_info ti;
91
92 bh_result->b_blocknr = 0;
93 err = nilfs_transaction_begin(inode->i_sb, &ti, 1);
94 if (unlikely(err))
95 goto out;
Ryusuke Konishi3568a132015-04-16 12:46:34 -070096 err = nilfs_bmap_insert(ii->i_bmap, blkoff,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070097 (unsigned long)bh_result);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070098 if (unlikely(err != 0)) {
99 if (err == -EEXIST) {
100 /*
101 * The get_block() function could be called
102 * from multiple callers for an inode.
103 * However, the page having this block must
104 * be locked in this case.
105 */
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700106 nilfs_msg(inode->i_sb, KERN_WARNING,
107 "%s (ino=%lu): a race condition while inserting a data block at offset=%llu",
108 __func__, inode->i_ino,
109 (unsigned long long)blkoff);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700110 err = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700111 }
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700112 nilfs_transaction_abort(inode->i_sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700113 goto out;
114 }
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700115 nilfs_mark_inode_dirty_sync(inode);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700116 nilfs_transaction_commit(inode->i_sb); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700117 /* Error handling should be detailed */
118 set_buffer_new(bh_result);
Ryusuke Konishi27e6c7a2010-12-26 16:28:28 +0900119 set_buffer_delay(bh_result);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700120 map_bh(bh_result, inode->i_sb, 0);
121 /* Disk block number must be changed to proper value */
122
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700123 } else if (ret == -ENOENT) {
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700124 /*
125 * not found is not error (e.g. hole); must return without
126 * the mapped state flag.
127 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700128 ;
129 } else {
130 err = ret;
131 }
132
133 out:
134 return err;
135}
136
137/**
138 * nilfs_readpage() - implement readpage() method of nilfs_aops {}
139 * address_space_operations.
140 * @file - file struct of the file to be read
141 * @page - the page to be read
142 */
143static int nilfs_readpage(struct file *file, struct page *page)
144{
145 return mpage_readpage(page, nilfs_get_block);
146}
147
148/**
149 * nilfs_readpages() - implement readpages() method of nilfs_aops {}
150 * address_space_operations.
151 * @file - file struct of the file to be read
152 * @mapping - address_space struct used for reading multiple pages
153 * @pages - the pages to be read
154 * @nr_pages - number of pages to be read
155 */
156static int nilfs_readpages(struct file *file, struct address_space *mapping,
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700157 struct list_head *pages, unsigned int nr_pages)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700158{
159 return mpage_readpages(mapping, pages, nr_pages, nilfs_get_block);
160}
161
162static int nilfs_writepages(struct address_space *mapping,
163 struct writeback_control *wbc)
164{
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700165 struct inode *inode = mapping->host;
166 int err = 0;
167
David Howellsbc98a422017-07-17 08:45:34 +0100168 if (sb_rdonly(inode->i_sb)) {
Vyacheslav Dubeyko8c26c4e2013-04-30 15:27:48 -0700169 nilfs_clear_dirty_pages(mapping, false);
170 return -EROFS;
171 }
172
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700173 if (wbc->sync_mode == WB_SYNC_ALL)
174 err = nilfs_construct_dsync_segment(inode->i_sb, inode,
175 wbc->range_start,
176 wbc->range_end);
177 return err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700178}
179
180static int nilfs_writepage(struct page *page, struct writeback_control *wbc)
181{
182 struct inode *inode = page->mapping->host;
183 int err;
184
David Howellsbc98a422017-07-17 08:45:34 +0100185 if (sb_rdonly(inode->i_sb)) {
Vyacheslav Dubeyko8c26c4e2013-04-30 15:27:48 -0700186 /*
187 * It means that filesystem was remounted in read-only
188 * mode because of error or metadata corruption. But we
189 * have dirty pages that try to be flushed in background.
190 * So, here we simply discard this dirty page.
191 */
192 nilfs_clear_dirty_page(page, false);
193 unlock_page(page);
194 return -EROFS;
195 }
196
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700197 redirty_page_for_writepage(wbc, page);
198 unlock_page(page);
199
200 if (wbc->sync_mode == WB_SYNC_ALL) {
201 err = nilfs_construct_segment(inode->i_sb);
202 if (unlikely(err))
203 return err;
204 } else if (wbc->for_reclaim)
205 nilfs_flush_segment(inode->i_sb, inode->i_ino);
206
207 return 0;
208}
209
210static int nilfs_set_page_dirty(struct page *page)
211{
Andreas Rohner56d7acc2014-09-25 16:05:14 -0700212 struct inode *inode = page->mapping->host;
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700213 int ret = __set_page_dirty_nobuffers(page);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700214
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700215 if (page_has_buffers(page)) {
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700216 unsigned int nr_dirty = 0;
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700217 struct buffer_head *bh, *head;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700218
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700219 /*
220 * This page is locked by callers, and no other thread
221 * concurrently marks its buffers dirty since they are
222 * only dirtied through routines in fs/buffer.c in
223 * which call sites of mark_buffer_dirty are protected
224 * by page lock.
225 */
226 bh = head = page_buffers(page);
227 do {
228 /* Do not mark hole blocks dirty */
229 if (buffer_dirty(bh) || !buffer_mapped(bh))
230 continue;
231
232 set_buffer_dirty(bh);
233 nr_dirty++;
234 } while (bh = bh->b_this_page, bh != head);
235
236 if (nr_dirty)
237 nilfs_set_file_dirty(inode, nr_dirty);
Andreas Rohner56d7acc2014-09-25 16:05:14 -0700238 } else if (ret) {
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700239 unsigned int nr_dirty = 1 << (PAGE_SHIFT - inode->i_blkbits);
Andreas Rohner56d7acc2014-09-25 16:05:14 -0700240
241 nilfs_set_file_dirty(inode, nr_dirty);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700242 }
243 return ret;
244}
245
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100246void nilfs_write_failed(struct address_space *mapping, loff_t to)
247{
248 struct inode *inode = mapping->host;
249
250 if (to > inode->i_size) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700251 truncate_pagecache(inode, inode->i_size);
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100252 nilfs_truncate(inode);
253 }
254}
255
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700256static int nilfs_write_begin(struct file *file, struct address_space *mapping,
257 loff_t pos, unsigned len, unsigned flags,
258 struct page **pagep, void **fsdata)
259
260{
261 struct inode *inode = mapping->host;
262 int err = nilfs_transaction_begin(inode->i_sb, NULL, 1);
263
264 if (unlikely(err))
265 return err;
266
Christoph Hellwig155130a2010-06-04 11:29:58 +0200267 err = block_write_begin(mapping, pos, len, flags, pagep,
268 nilfs_get_block);
269 if (unlikely(err)) {
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100270 nilfs_write_failed(mapping, pos + len);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700271 nilfs_transaction_abort(inode->i_sb);
Christoph Hellwig155130a2010-06-04 11:29:58 +0200272 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700273 return err;
274}
275
276static int nilfs_write_end(struct file *file, struct address_space *mapping,
277 loff_t pos, unsigned len, unsigned copied,
278 struct page *page, void *fsdata)
279{
280 struct inode *inode = mapping->host;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700281 unsigned int start = pos & (PAGE_SIZE - 1);
282 unsigned int nr_dirty;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700283 int err;
284
285 nr_dirty = nilfs_page_count_clean_buffers(page, start,
286 start + copied);
287 copied = generic_write_end(file, mapping, pos, len, copied, page,
288 fsdata);
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900289 nilfs_set_file_dirty(inode, nr_dirty);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700290 err = nilfs_transaction_commit(inode->i_sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700291 return err ? : copied;
292}
293
294static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700295nilfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700296{
Al Viro6b6dabc2015-06-21 01:37:24 -0400297 struct inode *inode = file_inode(iocb->ki_filp);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700298
Omar Sandoval6f673762015-03-16 04:33:52 -0700299 if (iov_iter_rw(iter) == WRITE)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700300 return 0;
301
302 /* Needs synchronization with the cleaner */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700303 return blockdev_direct_IO(iocb, inode, iter, nilfs_get_block);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700304}
305
Alexey Dobriyan7f094102009-09-21 17:01:10 -0700306const struct address_space_operations nilfs_aops = {
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700307 .writepage = nilfs_writepage,
308 .readpage = nilfs_readpage,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700309 .writepages = nilfs_writepages,
310 .set_page_dirty = nilfs_set_page_dirty,
311 .readpages = nilfs_readpages,
312 .write_begin = nilfs_write_begin,
313 .write_end = nilfs_write_end,
314 /* .releasepage = nilfs_releasepage, */
315 .invalidatepage = block_invalidatepage,
316 .direct_IO = nilfs_direct_IO,
Hisashi Hifumi258ef672009-05-13 11:19:40 +0900317 .is_partially_uptodate = block_is_partially_uptodate,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700318};
319
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800320static int nilfs_insert_inode_locked(struct inode *inode,
321 struct nilfs_root *root,
322 unsigned long ino)
323{
324 struct nilfs_iget_args args = {
325 .ino = ino, .root = root, .cno = 0, .for_gc = 0
326 };
327
328 return insert_inode_locked4(inode, ino, nilfs_iget_test, &args);
329}
330
Al Viroc6e49e32011-07-26 03:07:14 -0400331struct inode *nilfs_new_inode(struct inode *dir, umode_t mode)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700332{
333 struct super_block *sb = dir->i_sb;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900334 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700335 struct inode *inode;
336 struct nilfs_inode_info *ii;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900337 struct nilfs_root *root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700338 int err = -ENOMEM;
339 ino_t ino;
340
341 inode = new_inode(sb);
342 if (unlikely(!inode))
343 goto failed;
344
345 mapping_set_gfp_mask(inode->i_mapping,
Michal Hockoc62d2552015-11-06 16:28:49 -0800346 mapping_gfp_constraint(inode->i_mapping, ~__GFP_FS));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700347
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900348 root = NILFS_I(dir)->i_root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700349 ii = NILFS_I(inode);
Ryusuke Konishi4ce5c342016-08-02 14:05:28 -0700350 ii->i_state = BIT(NILFS_I_NEW);
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900351 ii->i_root = root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700352
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900353 err = nilfs_ifile_create_inode(root->ifile, &ino, &ii->i_bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700354 if (unlikely(err))
355 goto failed_ifile_create_inode;
356 /* reference count of i_bh inherits from nilfs_mdt_read_block() */
357
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700358 atomic64_inc(&root->inodes_count);
Dmitry Monakhov73459dc2010-03-04 17:32:15 +0300359 inode_init_owner(inode, dir, mode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700360 inode->i_ino = ino;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700361 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700362
363 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)) {
364 err = nilfs_bmap_read(ii->i_bmap, NULL);
365 if (err < 0)
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800366 goto failed_after_creation;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700367
368 set_bit(NILFS_I_BMAP, &ii->i_state);
369 /* No lock is needed; iget() ensures it. */
370 }
371
Ryusuke Konishib253a3e2011-01-20 02:09:53 +0900372 ii->i_flags = nilfs_mask_flags(
373 mode, NILFS_I(dir)->i_flags & NILFS_FL_INHERITED);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700374
375 /* ii->i_file_acl = 0; */
376 /* ii->i_dir_acl = 0; */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700377 ii->i_dir_start_lookup = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700378 nilfs_set_inode_flags(inode);
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +0900379 spin_lock(&nilfs->ns_next_gen_lock);
380 inode->i_generation = nilfs->ns_next_generation++;
381 spin_unlock(&nilfs->ns_next_gen_lock);
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800382 if (nilfs_insert_inode_locked(inode, root, ino) < 0) {
383 err = -EIO;
384 goto failed_after_creation;
385 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700386
387 err = nilfs_init_acl(inode, dir);
388 if (unlikely(err))
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700389 /*
390 * Never occur. When supporting nilfs_init_acl(),
391 * proper cancellation of above jobs should be considered.
392 */
393 goto failed_after_creation;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700394
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700395 return inode;
396
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800397 failed_after_creation:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200398 clear_nlink(inode);
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800399 unlock_new_inode(inode);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700400 iput(inode); /*
401 * raw_inode will be deleted through
402 * nilfs_evict_inode().
403 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700404 goto failed;
405
406 failed_ifile_create_inode:
407 make_bad_inode(inode);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700408 iput(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700409 failed:
410 return ERR_PTR(err);
411}
412
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700413void nilfs_set_inode_flags(struct inode *inode)
414{
415 unsigned int flags = NILFS_I(inode)->i_flags;
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700416 unsigned int new_fl = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700417
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900418 if (flags & FS_SYNC_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700419 new_fl |= S_SYNC;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900420 if (flags & FS_APPEND_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700421 new_fl |= S_APPEND;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900422 if (flags & FS_IMMUTABLE_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700423 new_fl |= S_IMMUTABLE;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900424 if (flags & FS_NOATIME_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700425 new_fl |= S_NOATIME;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900426 if (flags & FS_DIRSYNC_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700427 new_fl |= S_DIRSYNC;
428 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE |
429 S_NOATIME | S_DIRSYNC);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700430}
431
432int nilfs_read_inode_common(struct inode *inode,
433 struct nilfs_inode *raw_inode)
434{
435 struct nilfs_inode_info *ii = NILFS_I(inode);
436 int err;
437
438 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman305d3d02012-02-10 12:31:23 -0800439 i_uid_write(inode, le32_to_cpu(raw_inode->i_uid));
440 i_gid_write(inode, le32_to_cpu(raw_inode->i_gid));
Miklos Szeredibfe86842011-10-28 14:13:29 +0200441 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700442 inode->i_size = le64_to_cpu(raw_inode->i_size);
443 inode->i_atime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
444 inode->i_ctime.tv_sec = le64_to_cpu(raw_inode->i_ctime);
445 inode->i_mtime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
Ryusuke Konishi61239232009-04-06 19:02:00 -0700446 inode->i_atime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
447 inode->i_ctime.tv_nsec = le32_to_cpu(raw_inode->i_ctime_nsec);
448 inode->i_mtime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800449 if (inode->i_nlink == 0)
450 return -ESTALE; /* this inode is deleted */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700451
452 inode->i_blocks = le64_to_cpu(raw_inode->i_blocks);
453 ii->i_flags = le32_to_cpu(raw_inode->i_flags);
454#if 0
455 ii->i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
456 ii->i_dir_acl = S_ISREG(inode->i_mode) ?
457 0 : le32_to_cpu(raw_inode->i_dir_acl);
458#endif
Ryusuke Konishi3cc811b2009-09-28 13:02:46 +0900459 ii->i_dir_start_lookup = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700460 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
461
462 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
463 S_ISLNK(inode->i_mode)) {
464 err = nilfs_bmap_read(ii->i_bmap, raw_inode);
465 if (err < 0)
466 return err;
467 set_bit(NILFS_I_BMAP, &ii->i_state);
468 /* No lock is needed; iget() ensures it. */
469 }
470 return 0;
471}
472
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900473static int __nilfs_read_inode(struct super_block *sb,
474 struct nilfs_root *root, unsigned long ino,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700475 struct inode *inode)
476{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900477 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700478 struct buffer_head *bh;
479 struct nilfs_inode *raw_inode;
480 int err;
481
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900482 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900483 err = nilfs_ifile_get_inode_block(root->ifile, ino, &bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700484 if (unlikely(err))
485 goto bad_inode;
486
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900487 raw_inode = nilfs_ifile_map_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700488
Ryusuke Konishi1b2f5a62009-08-22 19:10:07 +0900489 err = nilfs_read_inode_common(inode, raw_inode);
490 if (err)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700491 goto failed_unmap;
492
493 if (S_ISREG(inode->i_mode)) {
494 inode->i_op = &nilfs_file_inode_operations;
495 inode->i_fop = &nilfs_file_operations;
496 inode->i_mapping->a_ops = &nilfs_aops;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700497 } else if (S_ISDIR(inode->i_mode)) {
498 inode->i_op = &nilfs_dir_inode_operations;
499 inode->i_fop = &nilfs_dir_operations;
500 inode->i_mapping->a_ops = &nilfs_aops;
501 } else if (S_ISLNK(inode->i_mode)) {
502 inode->i_op = &nilfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500503 inode_nohighmem(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700504 inode->i_mapping->a_ops = &nilfs_aops;
505 } else {
506 inode->i_op = &nilfs_special_inode_operations;
507 init_special_inode(
508 inode, inode->i_mode,
Ryusuke Konishicdce2142010-05-09 15:31:22 +0900509 huge_decode_dev(le64_to_cpu(raw_inode->i_device_code)));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700510 }
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900511 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700512 brelse(bh);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900513 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700514 nilfs_set_inode_flags(inode);
Ryusuke Konishi0ce187c2015-04-16 12:46:47 -0700515 mapping_set_gfp_mask(inode->i_mapping,
Michal Hockoc62d2552015-11-06 16:28:49 -0800516 mapping_gfp_constraint(inode->i_mapping, ~__GFP_FS));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700517 return 0;
518
519 failed_unmap:
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900520 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700521 brelse(bh);
522
523 bad_inode:
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900524 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700525 return err;
526}
527
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900528static int nilfs_iget_test(struct inode *inode, void *opaque)
529{
530 struct nilfs_iget_args *args = opaque;
531 struct nilfs_inode_info *ii;
532
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900533 if (args->ino != inode->i_ino || args->root != NILFS_I(inode)->i_root)
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900534 return 0;
535
536 ii = NILFS_I(inode);
537 if (!test_bit(NILFS_I_GCINODE, &ii->i_state))
538 return !args->for_gc;
539
540 return args->for_gc && args->cno == ii->i_cno;
541}
542
543static int nilfs_iget_set(struct inode *inode, void *opaque)
544{
545 struct nilfs_iget_args *args = opaque;
546
547 inode->i_ino = args->ino;
548 if (args->for_gc) {
Ryusuke Konishi4ce5c342016-08-02 14:05:28 -0700549 NILFS_I(inode)->i_state = BIT(NILFS_I_GCINODE);
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900550 NILFS_I(inode)->i_cno = args->cno;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900551 NILFS_I(inode)->i_root = NULL;
552 } else {
553 if (args->root && args->ino == NILFS_ROOT_INO)
554 nilfs_get_root(args->root);
555 NILFS_I(inode)->i_root = args->root;
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900556 }
557 return 0;
558}
559
Ryusuke Konishi032dbb32010-09-13 11:16:34 +0900560struct inode *nilfs_ilookup(struct super_block *sb, struct nilfs_root *root,
561 unsigned long ino)
562{
563 struct nilfs_iget_args args = {
564 .ino = ino, .root = root, .cno = 0, .for_gc = 0
565 };
566
567 return ilookup5(sb, ino, nilfs_iget_test, &args);
568}
569
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900570struct inode *nilfs_iget_locked(struct super_block *sb, struct nilfs_root *root,
571 unsigned long ino)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700572{
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900573 struct nilfs_iget_args args = {
574 .ino = ino, .root = root, .cno = 0, .for_gc = 0
575 };
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900576
577 return iget5_locked(sb, ino, nilfs_iget_test, nilfs_iget_set, &args);
578}
579
580struct inode *nilfs_iget(struct super_block *sb, struct nilfs_root *root,
581 unsigned long ino)
582{
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700583 struct inode *inode;
584 int err;
585
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900586 inode = nilfs_iget_locked(sb, root, ino);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700587 if (unlikely(!inode))
588 return ERR_PTR(-ENOMEM);
589 if (!(inode->i_state & I_NEW))
590 return inode;
591
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900592 err = __nilfs_read_inode(sb, root, ino, inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700593 if (unlikely(err)) {
594 iget_failed(inode);
595 return ERR_PTR(err);
596 }
597 unlock_new_inode(inode);
598 return inode;
599}
600
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900601struct inode *nilfs_iget_for_gc(struct super_block *sb, unsigned long ino,
602 __u64 cno)
603{
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900604 struct nilfs_iget_args args = {
605 .ino = ino, .root = NULL, .cno = cno, .for_gc = 1
606 };
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900607 struct inode *inode;
608 int err;
609
610 inode = iget5_locked(sb, ino, nilfs_iget_test, nilfs_iget_set, &args);
611 if (unlikely(!inode))
612 return ERR_PTR(-ENOMEM);
613 if (!(inode->i_state & I_NEW))
614 return inode;
615
616 err = nilfs_init_gcinode(inode);
617 if (unlikely(err)) {
618 iget_failed(inode);
619 return ERR_PTR(err);
620 }
621 unlock_new_inode(inode);
622 return inode;
623}
624
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700625void nilfs_write_inode_common(struct inode *inode,
626 struct nilfs_inode *raw_inode, int has_bmap)
627{
628 struct nilfs_inode_info *ii = NILFS_I(inode);
629
630 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman305d3d02012-02-10 12:31:23 -0800631 raw_inode->i_uid = cpu_to_le32(i_uid_read(inode));
632 raw_inode->i_gid = cpu_to_le32(i_gid_read(inode));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700633 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
634 raw_inode->i_size = cpu_to_le64(inode->i_size);
635 raw_inode->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
636 raw_inode->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
Ryusuke Konishi61239232009-04-06 19:02:00 -0700637 raw_inode->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
638 raw_inode->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700639 raw_inode->i_blocks = cpu_to_le64(inode->i_blocks);
640
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700641 raw_inode->i_flags = cpu_to_le32(ii->i_flags);
642 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
643
Ryusuke Konishi56eb5532011-04-30 18:56:12 +0900644 if (NILFS_ROOT_METADATA_FILE(inode->i_ino)) {
645 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
646
647 /* zero-fill unused portion in the case of super root block */
648 raw_inode->i_xattr = 0;
649 raw_inode->i_pad = 0;
650 memset((void *)raw_inode + sizeof(*raw_inode), 0,
651 nilfs->ns_inode_size - sizeof(*raw_inode));
652 }
653
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700654 if (has_bmap)
655 nilfs_bmap_write(ii->i_bmap, raw_inode);
656 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
657 raw_inode->i_device_code =
Ryusuke Konishicdce2142010-05-09 15:31:22 +0900658 cpu_to_le64(huge_encode_dev(inode->i_rdev));
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700659 /*
660 * When extending inode, nilfs->ns_inode_size should be checked
661 * for substitutions of appended fields.
662 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700663}
664
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700665void nilfs_update_inode(struct inode *inode, struct buffer_head *ibh, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700666{
667 ino_t ino = inode->i_ino;
668 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900669 struct inode *ifile = ii->i_root->ifile;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700670 struct nilfs_inode *raw_inode;
671
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900672 raw_inode = nilfs_ifile_map_inode(ifile, ino, ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700673
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700674 if (test_and_clear_bit(NILFS_I_NEW, &ii->i_state))
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900675 memset(raw_inode, 0, NILFS_MDT(ifile)->mi_entry_size);
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700676 if (flags & I_DIRTY_DATASYNC)
677 set_bit(NILFS_I_INODE_SYNC, &ii->i_state);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700678
679 nilfs_write_inode_common(inode, raw_inode, 0);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700680 /*
681 * XXX: call with has_bmap = 0 is a workaround to avoid
682 * deadlock of bmap. This delays update of i_bmap to just
683 * before writing.
684 */
685
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900686 nilfs_ifile_unmap_inode(ifile, ino, ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700687}
688
689#define NILFS_MAX_TRUNCATE_BLOCKS 16384 /* 64MB for 4KB block */
690
691static void nilfs_truncate_bmap(struct nilfs_inode_info *ii,
692 unsigned long from)
693{
Ryusuke Konishi3568a132015-04-16 12:46:34 -0700694 __u64 b;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700695 int ret;
696
697 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
698 return;
Ryusuke Konishie8289492010-11-19 15:26:20 +0900699repeat:
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700700 ret = nilfs_bmap_last_key(ii->i_bmap, &b);
701 if (ret == -ENOENT)
702 return;
703 else if (ret < 0)
704 goto failed;
705
706 if (b < from)
707 return;
708
Ryusuke Konishi3568a132015-04-16 12:46:34 -0700709 b -= min_t(__u64, NILFS_MAX_TRUNCATE_BLOCKS, b - from);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700710 ret = nilfs_bmap_truncate(ii->i_bmap, b);
711 nilfs_relax_pressure_in_lock(ii->vfs_inode.i_sb);
712 if (!ret || (ret == -ENOMEM &&
713 nilfs_bmap_truncate(ii->i_bmap, b) == 0))
714 goto repeat;
715
Ryusuke Konishie8289492010-11-19 15:26:20 +0900716failed:
Ryusuke Konishid6517de2016-08-02 14:05:14 -0700717 nilfs_msg(ii->vfs_inode.i_sb, KERN_WARNING,
718 "error %d truncating bmap (ino=%lu)", ret,
719 ii->vfs_inode.i_ino);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700720}
721
722void nilfs_truncate(struct inode *inode)
723{
724 unsigned long blkoff;
725 unsigned int blocksize;
726 struct nilfs_transaction_info ti;
727 struct super_block *sb = inode->i_sb;
728 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700729
730 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
731 return;
732 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
733 return;
734
735 blocksize = sb->s_blocksize;
736 blkoff = (inode->i_size + blocksize - 1) >> sb->s_blocksize_bits;
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700737 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700738
739 block_truncate_page(inode->i_mapping, inode->i_size, nilfs_get_block);
740
741 nilfs_truncate_bmap(ii, blkoff);
742
Deepa Dinamani078cd822016-09-14 07:48:04 -0700743 inode->i_mtime = inode->i_ctime = current_time(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700744 if (IS_SYNC(inode))
745 nilfs_set_transaction_flag(NILFS_TI_SYNC);
746
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900747 nilfs_mark_inode_dirty(inode);
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900748 nilfs_set_file_dirty(inode, 0);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700749 nilfs_transaction_commit(sb);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700750 /*
751 * May construct a logical segment and may fail in sync mode.
752 * But truncate has no return value.
753 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700754}
755
Al Viro6fd1e5c2010-06-07 11:55:00 -0400756static void nilfs_clear_inode(struct inode *inode)
757{
758 struct nilfs_inode_info *ii = NILFS_I(inode);
759
760 /*
761 * Free resources allocated in nilfs_read_inode(), here.
762 */
763 BUG_ON(!list_empty(&ii->i_dirty));
764 brelse(ii->i_bh);
765 ii->i_bh = NULL;
766
Ryusuke Konishi2d199612016-05-23 16:23:20 -0700767 if (nilfs_is_metadata_file_inode(inode))
768 nilfs_mdt_clear(inode);
Ryusuke Konishi518d1a62010-08-20 23:40:54 +0900769
Al Viro6fd1e5c2010-06-07 11:55:00 -0400770 if (test_bit(NILFS_I_BMAP, &ii->i_state))
771 nilfs_bmap_clear(ii->i_bmap);
772
773 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900774
775 if (ii->i_root && inode->i_ino == NILFS_ROOT_INO)
776 nilfs_put_root(ii->i_root);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400777}
778
779void nilfs_evict_inode(struct inode *inode)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700780{
781 struct nilfs_transaction_info ti;
782 struct super_block *sb = inode->i_sb;
783 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi25b18d32011-02-11 15:23:27 +0900784 int ret;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700785
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900786 if (inode->i_nlink || !ii->i_root || unlikely(is_bad_inode(inode))) {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700787 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200788 clear_inode(inode);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400789 nilfs_clear_inode(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700790 return;
791 }
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700792 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
793
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700794 truncate_inode_pages_final(&inode->i_data);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700795
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900796 /* TODO: some of the following operations may fail. */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700797 nilfs_truncate_bmap(ii, 0);
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900798 nilfs_mark_inode_dirty(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200799 clear_inode(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900800
Ryusuke Konishi25b18d32011-02-11 15:23:27 +0900801 ret = nilfs_ifile_delete_inode(ii->i_root->ifile, inode->i_ino);
802 if (!ret)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700803 atomic64_dec(&ii->i_root->inodes_count);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900804
Al Viro6fd1e5c2010-06-07 11:55:00 -0400805 nilfs_clear_inode(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900806
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700807 if (IS_SYNC(inode))
808 nilfs_set_transaction_flag(NILFS_TI_SYNC);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700809 nilfs_transaction_commit(sb);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700810 /*
811 * May construct a logical segment and may fail in sync mode.
812 * But delete_inode has no return value.
813 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700814}
815
816int nilfs_setattr(struct dentry *dentry, struct iattr *iattr)
817{
818 struct nilfs_transaction_info ti;
David Howells2b0143b2015-03-17 22:25:59 +0000819 struct inode *inode = d_inode(dentry);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700820 struct super_block *sb = inode->i_sb;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700821 int err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700822
Jan Kara31051c82016-05-26 16:55:18 +0200823 err = setattr_prepare(dentry, iattr);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700824 if (err)
825 return err;
826
827 err = nilfs_transaction_begin(sb, &ti, 0);
828 if (unlikely(err))
829 return err;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700830
Christoph Hellwig10257742010-06-04 11:30:02 +0200831 if ((iattr->ia_valid & ATTR_SIZE) &&
832 iattr->ia_size != i_size_read(inode)) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -0400833 inode_dio_wait(inode);
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100834 truncate_setsize(inode, iattr->ia_size);
835 nilfs_truncate(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +0200836 }
837
838 setattr_copy(inode, iattr);
839 mark_inode_dirty(inode);
840
841 if (iattr->ia_valid & ATTR_MODE) {
842 err = nilfs_acl_chmod(inode);
843 if (unlikely(err))
844 goto out_err;
845 }
846
847 return nilfs_transaction_commit(sb);
848
849out_err:
850 nilfs_transaction_abort(sb);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700851 return err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700852}
853
Al Viro10556cb2011-06-20 19:28:19 -0400854int nilfs_permission(struct inode *inode, int mask)
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900855{
Al Viro730e9082011-06-18 20:21:44 -0400856 struct nilfs_root *root = NILFS_I(inode)->i_root;
Ryusuke Konishi4ad364c2016-05-23 16:23:25 -0700857
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900858 if ((mask & MAY_WRITE) && root &&
859 root->cno != NILFS_CPTREE_CURRENT_CNO)
860 return -EROFS; /* snapshot is not writable */
861
Al Viro2830ba72011-06-20 19:16:29 -0400862 return generic_permission(inode, mask);
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900863}
864
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900865int nilfs_load_inode_block(struct inode *inode, struct buffer_head **pbh)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700866{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900867 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700868 struct nilfs_inode_info *ii = NILFS_I(inode);
869 int err;
870
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900871 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700872 if (ii->i_bh == NULL) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900873 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900874 err = nilfs_ifile_get_inode_block(ii->i_root->ifile,
875 inode->i_ino, pbh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700876 if (unlikely(err))
877 return err;
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900878 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700879 if (ii->i_bh == NULL)
880 ii->i_bh = *pbh;
881 else {
882 brelse(*pbh);
883 *pbh = ii->i_bh;
884 }
885 } else
886 *pbh = ii->i_bh;
887
888 get_bh(*pbh);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900889 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700890 return 0;
891}
892
893int nilfs_inode_dirty(struct inode *inode)
894{
895 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900896 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700897 int ret = 0;
898
899 if (!list_empty(&ii->i_dirty)) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900900 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700901 ret = test_bit(NILFS_I_DIRTY, &ii->i_state) ||
902 test_bit(NILFS_I_BUSY, &ii->i_state);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900903 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700904 }
905 return ret;
906}
907
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700908int nilfs_set_file_dirty(struct inode *inode, unsigned int nr_dirty)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700909{
910 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900911 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700912
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900913 atomic_add(nr_dirty, &nilfs->ns_ndirtyblks);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700914
Ryusuke Konishi458c5b02009-04-06 19:01:56 -0700915 if (test_and_set_bit(NILFS_I_DIRTY, &ii->i_state))
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700916 return 0;
917
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900918 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700919 if (!test_bit(NILFS_I_QUEUED, &ii->i_state) &&
920 !test_bit(NILFS_I_BUSY, &ii->i_state)) {
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700921 /*
922 * Because this routine may race with nilfs_dispose_list(),
923 * we have to check NILFS_I_QUEUED here, too.
924 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700925 if (list_empty(&ii->i_dirty) && igrab(inode) == NULL) {
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700926 /*
927 * This will happen when somebody is freeing
928 * this inode.
929 */
Ryusuke Konishid6517de2016-08-02 14:05:14 -0700930 nilfs_msg(inode->i_sb, KERN_WARNING,
931 "cannot set file dirty (ino=%lu): the file is being freed",
932 inode->i_ino);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900933 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700934 return -EINVAL; /*
935 * NILFS_I_DIRTY may remain for
936 * freeing inode.
937 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700938 }
Nicolas Kaisereaae0f32011-03-19 16:45:30 +0100939 list_move_tail(&ii->i_dirty, &nilfs->ns_dirty_files);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700940 set_bit(NILFS_I_QUEUED, &ii->i_state);
941 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900942 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700943 return 0;
944}
945
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700946int __nilfs_mark_inode_dirty(struct inode *inode, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700947{
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700948 struct buffer_head *ibh;
949 int err;
950
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900951 err = nilfs_load_inode_block(inode, &ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700952 if (unlikely(err)) {
Ryusuke Konishid6517de2016-08-02 14:05:14 -0700953 nilfs_msg(inode->i_sb, KERN_WARNING,
954 "cannot mark inode dirty (ino=%lu): error %d loading inode block",
955 inode->i_ino, err);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700956 return err;
957 }
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700958 nilfs_update_inode(inode, ibh, flags);
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900959 mark_buffer_dirty(ibh);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900960 nilfs_mdt_mark_dirty(NILFS_I(inode)->i_root->ifile);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700961 brelse(ibh);
962 return 0;
963}
964
965/**
966 * nilfs_dirty_inode - reflect changes on given inode to an inode block.
967 * @inode: inode of the file to be registered.
968 *
969 * nilfs_dirty_inode() loads a inode block containing the specified
970 * @inode and copies data from a nilfs_inode to a corresponding inode
971 * entry in the inode block. This operation is excluded from the segment
972 * construction. This function can be called both as a single operation
973 * and as a part of indivisible file operations.
974 */
Christoph Hellwigaa385722011-05-27 06:53:02 -0400975void nilfs_dirty_inode(struct inode *inode, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700976{
977 struct nilfs_transaction_info ti;
Ryusuke Konishi7d6cd922010-08-21 00:30:39 +0900978 struct nilfs_mdt_info *mdi = NILFS_MDT(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700979
980 if (is_bad_inode(inode)) {
Ryusuke Konishid6517de2016-08-02 14:05:14 -0700981 nilfs_msg(inode->i_sb, KERN_WARNING,
982 "tried to mark bad_inode dirty. ignored.");
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700983 dump_stack();
984 return;
985 }
Ryusuke Konishi7d6cd922010-08-21 00:30:39 +0900986 if (mdi) {
987 nilfs_mdt_mark_dirty(inode);
988 return;
989 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700990 nilfs_transaction_begin(inode->i_sb, &ti, 0);
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700991 __nilfs_mark_inode_dirty(inode, flags);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700992 nilfs_transaction_commit(inode->i_sb); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700993}
Ryusuke Konishi622daaff2010-12-26 16:38:43 +0900994
995int nilfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
996 __u64 start, __u64 len)
997{
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +0900998 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi622daaff2010-12-26 16:38:43 +0900999 __u64 logical = 0, phys = 0, size = 0;
1000 __u32 flags = 0;
1001 loff_t isize;
1002 sector_t blkoff, end_blkoff;
1003 sector_t delalloc_blkoff;
1004 unsigned long delalloc_blklen;
1005 unsigned int blkbits = inode->i_blkbits;
1006 int ret, n;
1007
1008 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
1009 if (ret)
1010 return ret;
1011
Al Viro59551022016-01-22 15:40:57 -05001012 inode_lock(inode);
Ryusuke Konishi622daaff2010-12-26 16:38:43 +09001013
1014 isize = i_size_read(inode);
1015
1016 blkoff = start >> blkbits;
1017 end_blkoff = (start + len - 1) >> blkbits;
1018
1019 delalloc_blklen = nilfs_find_uncommitted_extent(inode, blkoff,
1020 &delalloc_blkoff);
1021
1022 do {
1023 __u64 blkphy;
1024 unsigned int maxblocks;
1025
1026 if (delalloc_blklen && blkoff == delalloc_blkoff) {
1027 if (size) {
1028 /* End of the current extent */
1029 ret = fiemap_fill_next_extent(
1030 fieinfo, logical, phys, size, flags);
1031 if (ret)
1032 break;
1033 }
1034 if (blkoff > end_blkoff)
1035 break;
1036
1037 flags = FIEMAP_EXTENT_MERGED | FIEMAP_EXTENT_DELALLOC;
1038 logical = blkoff << blkbits;
1039 phys = 0;
1040 size = delalloc_blklen << blkbits;
1041
1042 blkoff = delalloc_blkoff + delalloc_blklen;
1043 delalloc_blklen = nilfs_find_uncommitted_extent(
1044 inode, blkoff, &delalloc_blkoff);
1045 continue;
1046 }
1047
1048 /*
1049 * Limit the number of blocks that we look up so as
1050 * not to get into the next delayed allocation extent.
1051 */
1052 maxblocks = INT_MAX;
1053 if (delalloc_blklen)
1054 maxblocks = min_t(sector_t, delalloc_blkoff - blkoff,
1055 maxblocks);
1056 blkphy = 0;
1057
1058 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1059 n = nilfs_bmap_lookup_contig(
1060 NILFS_I(inode)->i_bmap, blkoff, &blkphy, maxblocks);
1061 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1062
1063 if (n < 0) {
1064 int past_eof;
1065
1066 if (unlikely(n != -ENOENT))
1067 break; /* error */
1068
1069 /* HOLE */
1070 blkoff++;
1071 past_eof = ((blkoff << blkbits) >= isize);
1072
1073 if (size) {
1074 /* End of the current extent */
1075
1076 if (past_eof)
1077 flags |= FIEMAP_EXTENT_LAST;
1078
1079 ret = fiemap_fill_next_extent(
1080 fieinfo, logical, phys, size, flags);
1081 if (ret)
1082 break;
1083 size = 0;
1084 }
1085 if (blkoff > end_blkoff || past_eof)
1086 break;
1087 } else {
1088 if (size) {
1089 if (phys && blkphy << blkbits == phys + size) {
1090 /* The current extent goes on */
1091 size += n << blkbits;
1092 } else {
1093 /* Terminate the current extent */
1094 ret = fiemap_fill_next_extent(
1095 fieinfo, logical, phys, size,
1096 flags);
1097 if (ret || blkoff > end_blkoff)
1098 break;
1099
1100 /* Start another extent */
1101 flags = FIEMAP_EXTENT_MERGED;
1102 logical = blkoff << blkbits;
1103 phys = blkphy << blkbits;
1104 size = n << blkbits;
1105 }
1106 } else {
1107 /* Start a new extent */
1108 flags = FIEMAP_EXTENT_MERGED;
1109 logical = blkoff << blkbits;
1110 phys = blkphy << blkbits;
1111 size = n << blkbits;
1112 }
1113 blkoff += n;
1114 }
1115 cond_resched();
1116 } while (true);
1117
1118 /* If ret is 1 then we just hit the end of the extent array */
1119 if (ret == 1)
1120 ret = 0;
1121
Al Viro59551022016-01-22 15:40:57 -05001122 inode_unlock(inode);
Ryusuke Konishi622daaff2010-12-26 16:38:43 +09001123 return ret;
1124}