blob: e1fa69b341b95e5ad970e92664b6a15dd8216e6d [file] [log] [blame]
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -07001/*
2 * inode.c - NILFS inode operations.
3 *
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
5 *
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.
10 *
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.
15 *
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
19 *
20 * Written by Ryusuke Konishi <ryusuke@osrg.net>
21 *
22 */
23
24#include <linux/buffer_head.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/gfp.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070026#include <linux/mpage.h>
Andreas Rohner56d7acc2014-09-25 16:05:14 -070027#include <linux/pagemap.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070028#include <linux/writeback.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070029#include <linux/aio.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070030#include "nilfs.h"
Al Viro6fd1e5c2010-06-07 11:55:00 -040031#include "btnode.h"
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070032#include "segment.h"
33#include "page.h"
34#include "mdt.h"
35#include "cpfile.h"
36#include "ifile.h"
37
Vyacheslav Dubeykof5974c82012-07-30 14:42:10 -070038/**
39 * struct nilfs_iget_args - arguments used during comparison between inodes
40 * @ino: inode number
41 * @cno: checkpoint number
42 * @root: pointer on NILFS root object (mounted checkpoint)
43 * @for_gc: inode for GC flag
44 */
Ryusuke Konishi0e14a352010-08-20 21:20:29 +090045struct nilfs_iget_args {
46 u64 ino;
47 __u64 cno;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +090048 struct nilfs_root *root;
Ryusuke Konishi0e14a352010-08-20 21:20:29 +090049 int for_gc;
50};
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070051
Ryusuke Konishibe667372011-03-05 00:19:32 +090052void nilfs_inode_add_blocks(struct inode *inode, int n)
53{
54 struct nilfs_root *root = NILFS_I(inode)->i_root;
55
56 inode_add_bytes(inode, (1 << inode->i_blkbits) * n);
57 if (root)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -070058 atomic64_add(n, &root->blocks_count);
Ryusuke Konishibe667372011-03-05 00:19:32 +090059}
60
61void nilfs_inode_sub_blocks(struct inode *inode, int n)
62{
63 struct nilfs_root *root = NILFS_I(inode)->i_root;
64
65 inode_sub_bytes(inode, (1 << inode->i_blkbits) * n);
66 if (root)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -070067 atomic64_sub(n, &root->blocks_count);
Ryusuke Konishibe667372011-03-05 00:19:32 +090068}
69
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070070/**
71 * nilfs_get_block() - get a file block on the filesystem (callback function)
72 * @inode - inode struct of the target file
73 * @blkoff - file block number
74 * @bh_result - buffer head to be mapped on
75 * @create - indicate whether allocating the block or not when it has not
76 * been allocated yet.
77 *
78 * This function does not issue actual read request of the specified data
79 * block. It is done by VFS.
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070080 */
81int nilfs_get_block(struct inode *inode, sector_t blkoff,
82 struct buffer_head *bh_result, int create)
83{
84 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090085 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090086 __u64 blknum = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070087 int err = 0, ret;
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090088 unsigned maxblocks = bh_result->b_size >> inode->i_blkbits;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070089
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090090 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090091 ret = nilfs_bmap_lookup_contig(ii->i_bmap, blkoff, &blknum, maxblocks);
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090092 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090093 if (ret >= 0) { /* found */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070094 map_bh(bh_result, inode->i_sb, blknum);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090095 if (ret > 0)
96 bh_result->b_size = (ret << inode->i_blkbits);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070097 goto out;
98 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070099 /* data block was not found */
100 if (ret == -ENOENT && create) {
101 struct nilfs_transaction_info ti;
102
103 bh_result->b_blocknr = 0;
104 err = nilfs_transaction_begin(inode->i_sb, &ti, 1);
105 if (unlikely(err))
106 goto out;
107 err = nilfs_bmap_insert(ii->i_bmap, (unsigned long)blkoff,
108 (unsigned long)bh_result);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700109 if (unlikely(err != 0)) {
110 if (err == -EEXIST) {
111 /*
112 * The get_block() function could be called
113 * from multiple callers for an inode.
114 * However, the page having this block must
115 * be locked in this case.
116 */
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700117 printk(KERN_WARNING
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700118 "nilfs_get_block: a race condition "
119 "while inserting a data block. "
120 "(inode number=%lu, file block "
121 "offset=%llu)\n",
122 inode->i_ino,
123 (unsigned long long)blkoff);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700124 err = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700125 }
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700126 nilfs_transaction_abort(inode->i_sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700127 goto out;
128 }
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700129 nilfs_mark_inode_dirty_sync(inode);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700130 nilfs_transaction_commit(inode->i_sb); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700131 /* Error handling should be detailed */
132 set_buffer_new(bh_result);
Ryusuke Konishi27e6c7a2010-12-26 16:28:28 +0900133 set_buffer_delay(bh_result);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700134 map_bh(bh_result, inode->i_sb, 0); /* dbn must be changed
135 to proper value */
136 } else if (ret == -ENOENT) {
137 /* not found is not error (e.g. hole); must return without
138 the mapped state flag. */
139 ;
140 } else {
141 err = ret;
142 }
143
144 out:
145 return err;
146}
147
148/**
149 * nilfs_readpage() - implement readpage() method of nilfs_aops {}
150 * address_space_operations.
151 * @file - file struct of the file to be read
152 * @page - the page to be read
153 */
154static int nilfs_readpage(struct file *file, struct page *page)
155{
156 return mpage_readpage(page, nilfs_get_block);
157}
158
159/**
160 * nilfs_readpages() - implement readpages() method of nilfs_aops {}
161 * address_space_operations.
162 * @file - file struct of the file to be read
163 * @mapping - address_space struct used for reading multiple pages
164 * @pages - the pages to be read
165 * @nr_pages - number of pages to be read
166 */
167static int nilfs_readpages(struct file *file, struct address_space *mapping,
168 struct list_head *pages, unsigned nr_pages)
169{
170 return mpage_readpages(mapping, pages, nr_pages, nilfs_get_block);
171}
172
173static int nilfs_writepages(struct address_space *mapping,
174 struct writeback_control *wbc)
175{
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700176 struct inode *inode = mapping->host;
177 int err = 0;
178
Vyacheslav Dubeyko8c26c4e2013-04-30 15:27:48 -0700179 if (inode->i_sb->s_flags & MS_RDONLY) {
180 nilfs_clear_dirty_pages(mapping, false);
181 return -EROFS;
182 }
183
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700184 if (wbc->sync_mode == WB_SYNC_ALL)
185 err = nilfs_construct_dsync_segment(inode->i_sb, inode,
186 wbc->range_start,
187 wbc->range_end);
188 return err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700189}
190
191static int nilfs_writepage(struct page *page, struct writeback_control *wbc)
192{
193 struct inode *inode = page->mapping->host;
194 int err;
195
Vyacheslav Dubeykoeb53b6d2013-04-30 15:27:51 -0700196 if (inode->i_sb->s_flags & MS_RDONLY) {
Vyacheslav Dubeyko8c26c4e2013-04-30 15:27:48 -0700197 /*
198 * It means that filesystem was remounted in read-only
199 * mode because of error or metadata corruption. But we
200 * have dirty pages that try to be flushed in background.
201 * So, here we simply discard this dirty page.
202 */
203 nilfs_clear_dirty_page(page, false);
204 unlock_page(page);
205 return -EROFS;
206 }
207
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700208 redirty_page_for_writepage(wbc, page);
209 unlock_page(page);
210
211 if (wbc->sync_mode == WB_SYNC_ALL) {
212 err = nilfs_construct_segment(inode->i_sb);
213 if (unlikely(err))
214 return err;
215 } else if (wbc->for_reclaim)
216 nilfs_flush_segment(inode->i_sb, inode->i_ino);
217
218 return 0;
219}
220
221static int nilfs_set_page_dirty(struct page *page)
222{
Andreas Rohner56d7acc2014-09-25 16:05:14 -0700223 struct inode *inode = page->mapping->host;
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700224 int ret = __set_page_dirty_nobuffers(page);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700225
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700226 if (page_has_buffers(page)) {
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700227 unsigned nr_dirty = 0;
228 struct buffer_head *bh, *head;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700229
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700230 /*
231 * This page is locked by callers, and no other thread
232 * concurrently marks its buffers dirty since they are
233 * only dirtied through routines in fs/buffer.c in
234 * which call sites of mark_buffer_dirty are protected
235 * by page lock.
236 */
237 bh = head = page_buffers(page);
238 do {
239 /* Do not mark hole blocks dirty */
240 if (buffer_dirty(bh) || !buffer_mapped(bh))
241 continue;
242
243 set_buffer_dirty(bh);
244 nr_dirty++;
245 } while (bh = bh->b_this_page, bh != head);
246
247 if (nr_dirty)
248 nilfs_set_file_dirty(inode, nr_dirty);
Andreas Rohner56d7acc2014-09-25 16:05:14 -0700249 } else if (ret) {
250 unsigned nr_dirty = 1 << (PAGE_CACHE_SHIFT - inode->i_blkbits);
251
252 nilfs_set_file_dirty(inode, nr_dirty);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700253 }
254 return ret;
255}
256
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100257void nilfs_write_failed(struct address_space *mapping, loff_t to)
258{
259 struct inode *inode = mapping->host;
260
261 if (to > inode->i_size) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700262 truncate_pagecache(inode, inode->i_size);
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100263 nilfs_truncate(inode);
264 }
265}
266
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700267static int nilfs_write_begin(struct file *file, struct address_space *mapping,
268 loff_t pos, unsigned len, unsigned flags,
269 struct page **pagep, void **fsdata)
270
271{
272 struct inode *inode = mapping->host;
273 int err = nilfs_transaction_begin(inode->i_sb, NULL, 1);
274
275 if (unlikely(err))
276 return err;
277
Christoph Hellwig155130a2010-06-04 11:29:58 +0200278 err = block_write_begin(mapping, pos, len, flags, pagep,
279 nilfs_get_block);
280 if (unlikely(err)) {
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100281 nilfs_write_failed(mapping, pos + len);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700282 nilfs_transaction_abort(inode->i_sb);
Christoph Hellwig155130a2010-06-04 11:29:58 +0200283 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700284 return err;
285}
286
287static int nilfs_write_end(struct file *file, struct address_space *mapping,
288 loff_t pos, unsigned len, unsigned copied,
289 struct page *page, void *fsdata)
290{
291 struct inode *inode = mapping->host;
292 unsigned start = pos & (PAGE_CACHE_SIZE - 1);
293 unsigned nr_dirty;
294 int err;
295
296 nr_dirty = nilfs_page_count_clean_buffers(page, start,
297 start + copied);
298 copied = generic_write_end(file, mapping, pos, len, copied, page,
299 fsdata);
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900300 nilfs_set_file_dirty(inode, nr_dirty);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700301 err = nilfs_transaction_commit(inode->i_sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700302 return err ? : copied;
303}
304
305static ssize_t
Al Virod8d3d942014-03-04 21:27:34 -0500306nilfs_direct_IO(int rw, struct kiocb *iocb, struct iov_iter *iter,
307 loff_t offset)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700308{
309 struct file *file = iocb->ki_filp;
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100310 struct address_space *mapping = file->f_mapping;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700311 struct inode *inode = file->f_mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -0500312 size_t count = iov_iter_count(iter);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700313 ssize_t size;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700314
315 if (rw == WRITE)
316 return 0;
317
318 /* Needs synchronization with the cleaner */
Al Viro31b14032014-03-05 01:33:16 -0500319 size = blockdev_direct_IO(rw, iocb, inode, iter, offset,
320 nilfs_get_block);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200321
322 /*
323 * In case of error extending write may have instantiated a few
324 * blocks outside i_size. Trim these off again.
325 */
326 if (unlikely((rw & WRITE) && size < 0)) {
327 loff_t isize = i_size_read(inode);
Al Viroa6cbcd42014-03-04 22:38:00 -0500328 loff_t end = offset + count;
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200329
330 if (end > isize)
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100331 nilfs_write_failed(mapping, end);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200332 }
333
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700334 return size;
335}
336
Alexey Dobriyan7f094102009-09-21 17:01:10 -0700337const struct address_space_operations nilfs_aops = {
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700338 .writepage = nilfs_writepage,
339 .readpage = nilfs_readpage,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700340 .writepages = nilfs_writepages,
341 .set_page_dirty = nilfs_set_page_dirty,
342 .readpages = nilfs_readpages,
343 .write_begin = nilfs_write_begin,
344 .write_end = nilfs_write_end,
345 /* .releasepage = nilfs_releasepage, */
346 .invalidatepage = block_invalidatepage,
347 .direct_IO = nilfs_direct_IO,
Hisashi Hifumi258ef672009-05-13 11:19:40 +0900348 .is_partially_uptodate = block_is_partially_uptodate,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700349};
350
Al Viroc6e49e32011-07-26 03:07:14 -0400351struct inode *nilfs_new_inode(struct inode *dir, umode_t mode)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700352{
353 struct super_block *sb = dir->i_sb;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900354 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700355 struct inode *inode;
356 struct nilfs_inode_info *ii;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900357 struct nilfs_root *root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700358 int err = -ENOMEM;
359 ino_t ino;
360
361 inode = new_inode(sb);
362 if (unlikely(!inode))
363 goto failed;
364
365 mapping_set_gfp_mask(inode->i_mapping,
366 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
367
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900368 root = NILFS_I(dir)->i_root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700369 ii = NILFS_I(inode);
370 ii->i_state = 1 << NILFS_I_NEW;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900371 ii->i_root = root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700372
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900373 err = nilfs_ifile_create_inode(root->ifile, &ino, &ii->i_bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700374 if (unlikely(err))
375 goto failed_ifile_create_inode;
376 /* reference count of i_bh inherits from nilfs_mdt_read_block() */
377
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700378 atomic64_inc(&root->inodes_count);
Dmitry Monakhov73459dc2010-03-04 17:32:15 +0300379 inode_init_owner(inode, dir, mode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700380 inode->i_ino = ino;
381 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
382
383 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)) {
384 err = nilfs_bmap_read(ii->i_bmap, NULL);
385 if (err < 0)
386 goto failed_bmap;
387
388 set_bit(NILFS_I_BMAP, &ii->i_state);
389 /* No lock is needed; iget() ensures it. */
390 }
391
Ryusuke Konishib253a3e2011-01-20 02:09:53 +0900392 ii->i_flags = nilfs_mask_flags(
393 mode, NILFS_I(dir)->i_flags & NILFS_FL_INHERITED);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700394
395 /* ii->i_file_acl = 0; */
396 /* ii->i_dir_acl = 0; */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700397 ii->i_dir_start_lookup = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700398 nilfs_set_inode_flags(inode);
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +0900399 spin_lock(&nilfs->ns_next_gen_lock);
400 inode->i_generation = nilfs->ns_next_generation++;
401 spin_unlock(&nilfs->ns_next_gen_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700402 insert_inode_hash(inode);
403
404 err = nilfs_init_acl(inode, dir);
405 if (unlikely(err))
406 goto failed_acl; /* never occur. When supporting
407 nilfs_init_acl(), proper cancellation of
408 above jobs should be considered */
409
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700410 return inode;
411
412 failed_acl:
413 failed_bmap:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200414 clear_nlink(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700415 iput(inode); /* raw_inode will be deleted through
416 generic_delete_inode() */
417 goto failed;
418
419 failed_ifile_create_inode:
420 make_bad_inode(inode);
421 iput(inode); /* if i_nlink == 1, generic_forget_inode() will be
422 called */
423 failed:
424 return ERR_PTR(err);
425}
426
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700427void nilfs_set_inode_flags(struct inode *inode)
428{
429 unsigned int flags = NILFS_I(inode)->i_flags;
430
431 inode->i_flags &= ~(S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME |
432 S_DIRSYNC);
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900433 if (flags & FS_SYNC_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700434 inode->i_flags |= S_SYNC;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900435 if (flags & FS_APPEND_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700436 inode->i_flags |= S_APPEND;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900437 if (flags & FS_IMMUTABLE_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700438 inode->i_flags |= S_IMMUTABLE;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900439 if (flags & FS_NOATIME_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700440 inode->i_flags |= S_NOATIME;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900441 if (flags & FS_DIRSYNC_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700442 inode->i_flags |= S_DIRSYNC;
443 mapping_set_gfp_mask(inode->i_mapping,
444 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
445}
446
447int nilfs_read_inode_common(struct inode *inode,
448 struct nilfs_inode *raw_inode)
449{
450 struct nilfs_inode_info *ii = NILFS_I(inode);
451 int err;
452
453 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman305d3d02012-02-10 12:31:23 -0800454 i_uid_write(inode, le32_to_cpu(raw_inode->i_uid));
455 i_gid_write(inode, le32_to_cpu(raw_inode->i_gid));
Miklos Szeredibfe86842011-10-28 14:13:29 +0200456 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700457 inode->i_size = le64_to_cpu(raw_inode->i_size);
458 inode->i_atime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
459 inode->i_ctime.tv_sec = le64_to_cpu(raw_inode->i_ctime);
460 inode->i_mtime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
Ryusuke Konishi61239232009-04-06 19:02:00 -0700461 inode->i_atime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
462 inode->i_ctime.tv_nsec = le32_to_cpu(raw_inode->i_ctime_nsec);
463 inode->i_mtime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
464 if (inode->i_nlink == 0 && inode->i_mode == 0)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700465 return -EINVAL; /* this inode is deleted */
466
467 inode->i_blocks = le64_to_cpu(raw_inode->i_blocks);
468 ii->i_flags = le32_to_cpu(raw_inode->i_flags);
469#if 0
470 ii->i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
471 ii->i_dir_acl = S_ISREG(inode->i_mode) ?
472 0 : le32_to_cpu(raw_inode->i_dir_acl);
473#endif
Ryusuke Konishi3cc811b2009-09-28 13:02:46 +0900474 ii->i_dir_start_lookup = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700475 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
476
477 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
478 S_ISLNK(inode->i_mode)) {
479 err = nilfs_bmap_read(ii->i_bmap, raw_inode);
480 if (err < 0)
481 return err;
482 set_bit(NILFS_I_BMAP, &ii->i_state);
483 /* No lock is needed; iget() ensures it. */
484 }
485 return 0;
486}
487
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900488static int __nilfs_read_inode(struct super_block *sb,
489 struct nilfs_root *root, unsigned long ino,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700490 struct inode *inode)
491{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900492 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700493 struct buffer_head *bh;
494 struct nilfs_inode *raw_inode;
495 int err;
496
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900497 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900498 err = nilfs_ifile_get_inode_block(root->ifile, ino, &bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700499 if (unlikely(err))
500 goto bad_inode;
501
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900502 raw_inode = nilfs_ifile_map_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700503
Ryusuke Konishi1b2f5a62009-08-22 19:10:07 +0900504 err = nilfs_read_inode_common(inode, raw_inode);
505 if (err)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700506 goto failed_unmap;
507
508 if (S_ISREG(inode->i_mode)) {
509 inode->i_op = &nilfs_file_inode_operations;
510 inode->i_fop = &nilfs_file_operations;
511 inode->i_mapping->a_ops = &nilfs_aops;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700512 } else if (S_ISDIR(inode->i_mode)) {
513 inode->i_op = &nilfs_dir_inode_operations;
514 inode->i_fop = &nilfs_dir_operations;
515 inode->i_mapping->a_ops = &nilfs_aops;
516 } else if (S_ISLNK(inode->i_mode)) {
517 inode->i_op = &nilfs_symlink_inode_operations;
518 inode->i_mapping->a_ops = &nilfs_aops;
519 } else {
520 inode->i_op = &nilfs_special_inode_operations;
521 init_special_inode(
522 inode, inode->i_mode,
Ryusuke Konishicdce2142010-05-09 15:31:22 +0900523 huge_decode_dev(le64_to_cpu(raw_inode->i_device_code)));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700524 }
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900525 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700526 brelse(bh);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900527 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700528 nilfs_set_inode_flags(inode);
529 return 0;
530
531 failed_unmap:
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900532 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700533 brelse(bh);
534
535 bad_inode:
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900536 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700537 return err;
538}
539
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900540static int nilfs_iget_test(struct inode *inode, void *opaque)
541{
542 struct nilfs_iget_args *args = opaque;
543 struct nilfs_inode_info *ii;
544
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900545 if (args->ino != inode->i_ino || args->root != NILFS_I(inode)->i_root)
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900546 return 0;
547
548 ii = NILFS_I(inode);
549 if (!test_bit(NILFS_I_GCINODE, &ii->i_state))
550 return !args->for_gc;
551
552 return args->for_gc && args->cno == ii->i_cno;
553}
554
555static int nilfs_iget_set(struct inode *inode, void *opaque)
556{
557 struct nilfs_iget_args *args = opaque;
558
559 inode->i_ino = args->ino;
560 if (args->for_gc) {
561 NILFS_I(inode)->i_state = 1 << NILFS_I_GCINODE;
562 NILFS_I(inode)->i_cno = args->cno;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900563 NILFS_I(inode)->i_root = NULL;
564 } else {
565 if (args->root && args->ino == NILFS_ROOT_INO)
566 nilfs_get_root(args->root);
567 NILFS_I(inode)->i_root = args->root;
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900568 }
569 return 0;
570}
571
Ryusuke Konishi032dbb32010-09-13 11:16:34 +0900572struct inode *nilfs_ilookup(struct super_block *sb, struct nilfs_root *root,
573 unsigned long ino)
574{
575 struct nilfs_iget_args args = {
576 .ino = ino, .root = root, .cno = 0, .for_gc = 0
577 };
578
579 return ilookup5(sb, ino, nilfs_iget_test, &args);
580}
581
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900582struct inode *nilfs_iget_locked(struct super_block *sb, struct nilfs_root *root,
583 unsigned long ino)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700584{
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900585 struct nilfs_iget_args args = {
586 .ino = ino, .root = root, .cno = 0, .for_gc = 0
587 };
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900588
589 return iget5_locked(sb, ino, nilfs_iget_test, nilfs_iget_set, &args);
590}
591
592struct inode *nilfs_iget(struct super_block *sb, struct nilfs_root *root,
593 unsigned long ino)
594{
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700595 struct inode *inode;
596 int err;
597
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900598 inode = nilfs_iget_locked(sb, root, ino);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700599 if (unlikely(!inode))
600 return ERR_PTR(-ENOMEM);
601 if (!(inode->i_state & I_NEW))
602 return inode;
603
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900604 err = __nilfs_read_inode(sb, root, ino, inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700605 if (unlikely(err)) {
606 iget_failed(inode);
607 return ERR_PTR(err);
608 }
609 unlock_new_inode(inode);
610 return inode;
611}
612
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900613struct inode *nilfs_iget_for_gc(struct super_block *sb, unsigned long ino,
614 __u64 cno)
615{
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900616 struct nilfs_iget_args args = {
617 .ino = ino, .root = NULL, .cno = cno, .for_gc = 1
618 };
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900619 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
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700637void nilfs_write_inode_common(struct inode *inode,
638 struct nilfs_inode *raw_inode, int has_bmap)
639{
640 struct nilfs_inode_info *ii = NILFS_I(inode);
641
642 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman305d3d02012-02-10 12:31:23 -0800643 raw_inode->i_uid = cpu_to_le32(i_uid_read(inode));
644 raw_inode->i_gid = cpu_to_le32(i_gid_read(inode));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700645 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
646 raw_inode->i_size = cpu_to_le64(inode->i_size);
647 raw_inode->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
648 raw_inode->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
Ryusuke Konishi61239232009-04-06 19:02:00 -0700649 raw_inode->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
650 raw_inode->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700651 raw_inode->i_blocks = cpu_to_le64(inode->i_blocks);
652
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700653 raw_inode->i_flags = cpu_to_le32(ii->i_flags);
654 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
655
Ryusuke Konishi56eb5532011-04-30 18:56:12 +0900656 if (NILFS_ROOT_METADATA_FILE(inode->i_ino)) {
657 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
658
659 /* zero-fill unused portion in the case of super root block */
660 raw_inode->i_xattr = 0;
661 raw_inode->i_pad = 0;
662 memset((void *)raw_inode + sizeof(*raw_inode), 0,
663 nilfs->ns_inode_size - sizeof(*raw_inode));
664 }
665
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700666 if (has_bmap)
667 nilfs_bmap_write(ii->i_bmap, raw_inode);
668 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
669 raw_inode->i_device_code =
Ryusuke Konishicdce2142010-05-09 15:31:22 +0900670 cpu_to_le64(huge_encode_dev(inode->i_rdev));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700671 /* When extending inode, nilfs->ns_inode_size should be checked
672 for substitutions of appended fields */
673}
674
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700675void nilfs_update_inode(struct inode *inode, struct buffer_head *ibh, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700676{
677 ino_t ino = inode->i_ino;
678 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900679 struct inode *ifile = ii->i_root->ifile;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700680 struct nilfs_inode *raw_inode;
681
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900682 raw_inode = nilfs_ifile_map_inode(ifile, ino, ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700683
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700684 if (test_and_clear_bit(NILFS_I_NEW, &ii->i_state))
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900685 memset(raw_inode, 0, NILFS_MDT(ifile)->mi_entry_size);
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700686 if (flags & I_DIRTY_DATASYNC)
687 set_bit(NILFS_I_INODE_SYNC, &ii->i_state);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700688
689 nilfs_write_inode_common(inode, raw_inode, 0);
690 /* XXX: call with has_bmap = 0 is a workaround to avoid
691 deadlock of bmap. This delays update of i_bmap to just
692 before writing */
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900693 nilfs_ifile_unmap_inode(ifile, ino, ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700694}
695
696#define NILFS_MAX_TRUNCATE_BLOCKS 16384 /* 64MB for 4KB block */
697
698static void nilfs_truncate_bmap(struct nilfs_inode_info *ii,
699 unsigned long from)
700{
701 unsigned long b;
702 int ret;
703
704 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
705 return;
Ryusuke Konishie8289492010-11-19 15:26:20 +0900706repeat:
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700707 ret = nilfs_bmap_last_key(ii->i_bmap, &b);
708 if (ret == -ENOENT)
709 return;
710 else if (ret < 0)
711 goto failed;
712
713 if (b < from)
714 return;
715
716 b -= min_t(unsigned long, NILFS_MAX_TRUNCATE_BLOCKS, b - from);
717 ret = nilfs_bmap_truncate(ii->i_bmap, b);
718 nilfs_relax_pressure_in_lock(ii->vfs_inode.i_sb);
719 if (!ret || (ret == -ENOMEM &&
720 nilfs_bmap_truncate(ii->i_bmap, b) == 0))
721 goto repeat;
722
Ryusuke Konishie8289492010-11-19 15:26:20 +0900723failed:
724 nilfs_warning(ii->vfs_inode.i_sb, __func__,
725 "failed to truncate bmap (ino=%lu, err=%d)",
726 ii->vfs_inode.i_ino, ret);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700727}
728
729void nilfs_truncate(struct inode *inode)
730{
731 unsigned long blkoff;
732 unsigned int blocksize;
733 struct nilfs_transaction_info ti;
734 struct super_block *sb = inode->i_sb;
735 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700736
737 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
738 return;
739 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
740 return;
741
742 blocksize = sb->s_blocksize;
743 blkoff = (inode->i_size + blocksize - 1) >> sb->s_blocksize_bits;
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700744 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700745
746 block_truncate_page(inode->i_mapping, inode->i_size, nilfs_get_block);
747
748 nilfs_truncate_bmap(ii, blkoff);
749
750 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
751 if (IS_SYNC(inode))
752 nilfs_set_transaction_flag(NILFS_TI_SYNC);
753
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900754 nilfs_mark_inode_dirty(inode);
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900755 nilfs_set_file_dirty(inode, 0);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700756 nilfs_transaction_commit(sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700757 /* May construct a logical segment and may fail in sync mode.
758 But truncate has no return value. */
759}
760
Al Viro6fd1e5c2010-06-07 11:55:00 -0400761static void nilfs_clear_inode(struct inode *inode)
762{
763 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi518d1a62010-08-20 23:40:54 +0900764 struct nilfs_mdt_info *mdi = NILFS_MDT(inode);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400765
766 /*
767 * Free resources allocated in nilfs_read_inode(), here.
768 */
769 BUG_ON(!list_empty(&ii->i_dirty));
770 brelse(ii->i_bh);
771 ii->i_bh = NULL;
772
Ryusuke Konishi518d1a62010-08-20 23:40:54 +0900773 if (mdi && mdi->mi_palloc_cache)
774 nilfs_palloc_destroy_cache(inode);
775
Al Viro6fd1e5c2010-06-07 11:55:00 -0400776 if (test_bit(NILFS_I_BMAP, &ii->i_state))
777 nilfs_bmap_clear(ii->i_bmap);
778
779 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900780
781 if (ii->i_root && inode->i_ino == NILFS_ROOT_INO)
782 nilfs_put_root(ii->i_root);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400783}
784
785void nilfs_evict_inode(struct inode *inode)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700786{
787 struct nilfs_transaction_info ti;
788 struct super_block *sb = inode->i_sb;
789 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi25b18d32011-02-11 15:23:27 +0900790 int ret;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700791
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900792 if (inode->i_nlink || !ii->i_root || unlikely(is_bad_inode(inode))) {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700793 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200794 clear_inode(inode);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400795 nilfs_clear_inode(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700796 return;
797 }
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700798 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
799
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700800 truncate_inode_pages_final(&inode->i_data);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700801
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900802 /* TODO: some of the following operations may fail. */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700803 nilfs_truncate_bmap(ii, 0);
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900804 nilfs_mark_inode_dirty(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200805 clear_inode(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900806
Ryusuke Konishi25b18d32011-02-11 15:23:27 +0900807 ret = nilfs_ifile_delete_inode(ii->i_root->ifile, inode->i_ino);
808 if (!ret)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700809 atomic64_dec(&ii->i_root->inodes_count);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900810
Al Viro6fd1e5c2010-06-07 11:55:00 -0400811 nilfs_clear_inode(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900812
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700813 if (IS_SYNC(inode))
814 nilfs_set_transaction_flag(NILFS_TI_SYNC);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700815 nilfs_transaction_commit(sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700816 /* May construct a logical segment and may fail in sync mode.
817 But delete_inode has no return value. */
818}
819
820int nilfs_setattr(struct dentry *dentry, struct iattr *iattr)
821{
822 struct nilfs_transaction_info ti;
823 struct inode *inode = dentry->d_inode;
824 struct super_block *sb = inode->i_sb;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700825 int err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700826
827 err = inode_change_ok(inode, iattr);
828 if (err)
829 return err;
830
831 err = nilfs_transaction_begin(sb, &ti, 0);
832 if (unlikely(err))
833 return err;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700834
Christoph Hellwig10257742010-06-04 11:30:02 +0200835 if ((iattr->ia_valid & ATTR_SIZE) &&
836 iattr->ia_size != i_size_read(inode)) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -0400837 inode_dio_wait(inode);
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100838 truncate_setsize(inode, iattr->ia_size);
839 nilfs_truncate(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +0200840 }
841
842 setattr_copy(inode, iattr);
843 mark_inode_dirty(inode);
844
845 if (iattr->ia_valid & ATTR_MODE) {
846 err = nilfs_acl_chmod(inode);
847 if (unlikely(err))
848 goto out_err;
849 }
850
851 return nilfs_transaction_commit(sb);
852
853out_err:
854 nilfs_transaction_abort(sb);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700855 return err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700856}
857
Al Viro10556cb2011-06-20 19:28:19 -0400858int nilfs_permission(struct inode *inode, int mask)
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900859{
Al Viro730e9082011-06-18 20:21:44 -0400860 struct nilfs_root *root = NILFS_I(inode)->i_root;
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900861 if ((mask & MAY_WRITE) && root &&
862 root->cno != NILFS_CPTREE_CURRENT_CNO)
863 return -EROFS; /* snapshot is not writable */
864
Al Viro2830ba72011-06-20 19:16:29 -0400865 return generic_permission(inode, mask);
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900866}
867
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900868int nilfs_load_inode_block(struct inode *inode, struct buffer_head **pbh)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700869{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900870 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700871 struct nilfs_inode_info *ii = NILFS_I(inode);
872 int err;
873
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900874 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700875 if (ii->i_bh == NULL) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900876 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900877 err = nilfs_ifile_get_inode_block(ii->i_root->ifile,
878 inode->i_ino, pbh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700879 if (unlikely(err))
880 return err;
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900881 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700882 if (ii->i_bh == NULL)
883 ii->i_bh = *pbh;
884 else {
885 brelse(*pbh);
886 *pbh = ii->i_bh;
887 }
888 } else
889 *pbh = ii->i_bh;
890
891 get_bh(*pbh);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900892 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700893 return 0;
894}
895
896int nilfs_inode_dirty(struct inode *inode)
897{
898 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900899 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700900 int ret = 0;
901
902 if (!list_empty(&ii->i_dirty)) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900903 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700904 ret = test_bit(NILFS_I_DIRTY, &ii->i_state) ||
905 test_bit(NILFS_I_BUSY, &ii->i_state);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900906 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700907 }
908 return ret;
909}
910
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900911int nilfs_set_file_dirty(struct inode *inode, unsigned nr_dirty)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700912{
913 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900914 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700915
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900916 atomic_add(nr_dirty, &nilfs->ns_ndirtyblks);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700917
Ryusuke Konishi458c5b02009-04-06 19:01:56 -0700918 if (test_and_set_bit(NILFS_I_DIRTY, &ii->i_state))
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700919 return 0;
920
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900921 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700922 if (!test_bit(NILFS_I_QUEUED, &ii->i_state) &&
923 !test_bit(NILFS_I_BUSY, &ii->i_state)) {
924 /* Because this routine may race with nilfs_dispose_list(),
925 we have to check NILFS_I_QUEUED here, too. */
926 if (list_empty(&ii->i_dirty) && igrab(inode) == NULL) {
927 /* This will happen when somebody is freeing
928 this inode. */
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900929 nilfs_warning(inode->i_sb, __func__,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700930 "cannot get inode (ino=%lu)\n",
931 inode->i_ino);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900932 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700933 return -EINVAL; /* NILFS_I_DIRTY may remain for
934 freeing inode */
935 }
Nicolas Kaisereaae0f32011-03-19 16:45:30 +0100936 list_move_tail(&ii->i_dirty, &nilfs->ns_dirty_files);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700937 set_bit(NILFS_I_QUEUED, &ii->i_state);
938 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900939 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700940 return 0;
941}
942
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700943int __nilfs_mark_inode_dirty(struct inode *inode, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700944{
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700945 struct buffer_head *ibh;
946 int err;
947
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900948 err = nilfs_load_inode_block(inode, &ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700949 if (unlikely(err)) {
950 nilfs_warning(inode->i_sb, __func__,
951 "failed to reget inode block.\n");
952 return err;
953 }
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700954 nilfs_update_inode(inode, ibh, flags);
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900955 mark_buffer_dirty(ibh);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900956 nilfs_mdt_mark_dirty(NILFS_I(inode)->i_root->ifile);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700957 brelse(ibh);
958 return 0;
959}
960
961/**
962 * nilfs_dirty_inode - reflect changes on given inode to an inode block.
963 * @inode: inode of the file to be registered.
964 *
965 * nilfs_dirty_inode() loads a inode block containing the specified
966 * @inode and copies data from a nilfs_inode to a corresponding inode
967 * entry in the inode block. This operation is excluded from the segment
968 * construction. This function can be called both as a single operation
969 * and as a part of indivisible file operations.
970 */
Christoph Hellwigaa385722011-05-27 06:53:02 -0400971void nilfs_dirty_inode(struct inode *inode, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700972{
973 struct nilfs_transaction_info ti;
Ryusuke Konishi7d6cd922010-08-21 00:30:39 +0900974 struct nilfs_mdt_info *mdi = NILFS_MDT(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700975
976 if (is_bad_inode(inode)) {
977 nilfs_warning(inode->i_sb, __func__,
978 "tried to mark bad_inode dirty. ignored.\n");
979 dump_stack();
980 return;
981 }
Ryusuke Konishi7d6cd922010-08-21 00:30:39 +0900982 if (mdi) {
983 nilfs_mdt_mark_dirty(inode);
984 return;
985 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700986 nilfs_transaction_begin(inode->i_sb, &ti, 0);
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700987 __nilfs_mark_inode_dirty(inode, flags);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700988 nilfs_transaction_commit(inode->i_sb); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700989}
Ryusuke Konishi622daaff2010-12-26 16:38:43 +0900990
991int nilfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
992 __u64 start, __u64 len)
993{
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +0900994 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi622daaff2010-12-26 16:38:43 +0900995 __u64 logical = 0, phys = 0, size = 0;
996 __u32 flags = 0;
997 loff_t isize;
998 sector_t blkoff, end_blkoff;
999 sector_t delalloc_blkoff;
1000 unsigned long delalloc_blklen;
1001 unsigned int blkbits = inode->i_blkbits;
1002 int ret, n;
1003
1004 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
1005 if (ret)
1006 return ret;
1007
1008 mutex_lock(&inode->i_mutex);
1009
1010 isize = i_size_read(inode);
1011
1012 blkoff = start >> blkbits;
1013 end_blkoff = (start + len - 1) >> blkbits;
1014
1015 delalloc_blklen = nilfs_find_uncommitted_extent(inode, blkoff,
1016 &delalloc_blkoff);
1017
1018 do {
1019 __u64 blkphy;
1020 unsigned int maxblocks;
1021
1022 if (delalloc_blklen && blkoff == delalloc_blkoff) {
1023 if (size) {
1024 /* End of the current extent */
1025 ret = fiemap_fill_next_extent(
1026 fieinfo, logical, phys, size, flags);
1027 if (ret)
1028 break;
1029 }
1030 if (blkoff > end_blkoff)
1031 break;
1032
1033 flags = FIEMAP_EXTENT_MERGED | FIEMAP_EXTENT_DELALLOC;
1034 logical = blkoff << blkbits;
1035 phys = 0;
1036 size = delalloc_blklen << blkbits;
1037
1038 blkoff = delalloc_blkoff + delalloc_blklen;
1039 delalloc_blklen = nilfs_find_uncommitted_extent(
1040 inode, blkoff, &delalloc_blkoff);
1041 continue;
1042 }
1043
1044 /*
1045 * Limit the number of blocks that we look up so as
1046 * not to get into the next delayed allocation extent.
1047 */
1048 maxblocks = INT_MAX;
1049 if (delalloc_blklen)
1050 maxblocks = min_t(sector_t, delalloc_blkoff - blkoff,
1051 maxblocks);
1052 blkphy = 0;
1053
1054 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1055 n = nilfs_bmap_lookup_contig(
1056 NILFS_I(inode)->i_bmap, blkoff, &blkphy, maxblocks);
1057 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1058
1059 if (n < 0) {
1060 int past_eof;
1061
1062 if (unlikely(n != -ENOENT))
1063 break; /* error */
1064
1065 /* HOLE */
1066 blkoff++;
1067 past_eof = ((blkoff << blkbits) >= isize);
1068
1069 if (size) {
1070 /* End of the current extent */
1071
1072 if (past_eof)
1073 flags |= FIEMAP_EXTENT_LAST;
1074
1075 ret = fiemap_fill_next_extent(
1076 fieinfo, logical, phys, size, flags);
1077 if (ret)
1078 break;
1079 size = 0;
1080 }
1081 if (blkoff > end_blkoff || past_eof)
1082 break;
1083 } else {
1084 if (size) {
1085 if (phys && blkphy << blkbits == phys + size) {
1086 /* The current extent goes on */
1087 size += n << blkbits;
1088 } else {
1089 /* Terminate the current extent */
1090 ret = fiemap_fill_next_extent(
1091 fieinfo, logical, phys, size,
1092 flags);
1093 if (ret || blkoff > end_blkoff)
1094 break;
1095
1096 /* Start another extent */
1097 flags = FIEMAP_EXTENT_MERGED;
1098 logical = blkoff << blkbits;
1099 phys = blkphy << blkbits;
1100 size = n << blkbits;
1101 }
1102 } else {
1103 /* Start a new extent */
1104 flags = FIEMAP_EXTENT_MERGED;
1105 logical = blkoff << blkbits;
1106 phys = blkphy << blkbits;
1107 size = n << blkbits;
1108 }
1109 blkoff += n;
1110 }
1111 cond_resched();
1112 } while (true);
1113
1114 /* If ret is 1 then we just hit the end of the extent array */
1115 if (ret == 1)
1116 ret = 0;
1117
1118 mutex_unlock(&inode->i_mutex);
1119 return ret;
1120}