blob: a0ebdb17e9124c25520033b1f4137e6bcb3ddaaa [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 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -070016 * Written by Ryusuke Konishi.
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070017 *
18 */
19
20#include <linux/buffer_head.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/gfp.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070022#include <linux/mpage.h>
Andreas Rohner56d7acc2014-09-25 16:05:14 -070023#include <linux/pagemap.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070024#include <linux/writeback.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080025#include <linux/uio.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070026#include "nilfs.h"
Al Viro6fd1e5c2010-06-07 11:55:00 -040027#include "btnode.h"
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070028#include "segment.h"
29#include "page.h"
30#include "mdt.h"
31#include "cpfile.h"
32#include "ifile.h"
33
Vyacheslav Dubeykof5974c82012-07-30 14:42:10 -070034/**
35 * struct nilfs_iget_args - arguments used during comparison between inodes
36 * @ino: inode number
37 * @cno: checkpoint number
38 * @root: pointer on NILFS root object (mounted checkpoint)
39 * @for_gc: inode for GC flag
40 */
Ryusuke Konishi0e14a352010-08-20 21:20:29 +090041struct nilfs_iget_args {
42 u64 ino;
43 __u64 cno;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +090044 struct nilfs_root *root;
Ryusuke Konishi0e14a352010-08-20 21:20:29 +090045 int for_gc;
46};
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070047
Ryusuke Konishi705304a2014-12-10 15:54:34 -080048static int nilfs_iget_test(struct inode *inode, void *opaque);
49
Ryusuke Konishibe667372011-03-05 00:19:32 +090050void nilfs_inode_add_blocks(struct inode *inode, int n)
51{
52 struct nilfs_root *root = NILFS_I(inode)->i_root;
53
54 inode_add_bytes(inode, (1 << inode->i_blkbits) * n);
55 if (root)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -070056 atomic64_add(n, &root->blocks_count);
Ryusuke Konishibe667372011-03-05 00:19:32 +090057}
58
59void nilfs_inode_sub_blocks(struct inode *inode, int n)
60{
61 struct nilfs_root *root = NILFS_I(inode)->i_root;
62
63 inode_sub_bytes(inode, (1 << inode->i_blkbits) * n);
64 if (root)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -070065 atomic64_sub(n, &root->blocks_count);
Ryusuke Konishibe667372011-03-05 00:19:32 +090066}
67
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070068/**
69 * nilfs_get_block() - get a file block on the filesystem (callback function)
70 * @inode - inode struct of the target file
71 * @blkoff - file block number
72 * @bh_result - buffer head to be mapped on
73 * @create - indicate whether allocating the block or not when it has not
74 * been allocated yet.
75 *
76 * This function does not issue actual read request of the specified data
77 * block. It is done by VFS.
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070078 */
79int nilfs_get_block(struct inode *inode, sector_t blkoff,
80 struct buffer_head *bh_result, int create)
81{
82 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090083 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090084 __u64 blknum = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070085 int err = 0, ret;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -070086 unsigned int maxblocks = bh_result->b_size >> inode->i_blkbits;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070087
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090088 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090089 ret = nilfs_bmap_lookup_contig(ii->i_bmap, blkoff, &blknum, maxblocks);
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090090 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090091 if (ret >= 0) { /* found */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070092 map_bh(bh_result, inode->i_sb, blknum);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090093 if (ret > 0)
94 bh_result->b_size = (ret << inode->i_blkbits);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070095 goto out;
96 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070097 /* data block was not found */
98 if (ret == -ENOENT && create) {
99 struct nilfs_transaction_info ti;
100
101 bh_result->b_blocknr = 0;
102 err = nilfs_transaction_begin(inode->i_sb, &ti, 1);
103 if (unlikely(err))
104 goto out;
Ryusuke Konishi3568a132015-04-16 12:46:34 -0700105 err = nilfs_bmap_insert(ii->i_bmap, blkoff,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700106 (unsigned long)bh_result);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700107 if (unlikely(err != 0)) {
108 if (err == -EEXIST) {
109 /*
110 * The get_block() function could be called
111 * from multiple callers for an inode.
112 * However, the page having this block must
113 * be locked in this case.
114 */
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700115 printk(KERN_WARNING
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700116 "nilfs_get_block: a race condition "
117 "while inserting a data block. "
118 "(inode number=%lu, file block "
119 "offset=%llu)\n",
120 inode->i_ino,
121 (unsigned long long)blkoff);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700122 err = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700123 }
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700124 nilfs_transaction_abort(inode->i_sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700125 goto out;
126 }
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700127 nilfs_mark_inode_dirty_sync(inode);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700128 nilfs_transaction_commit(inode->i_sb); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700129 /* Error handling should be detailed */
130 set_buffer_new(bh_result);
Ryusuke Konishi27e6c7a2010-12-26 16:28:28 +0900131 set_buffer_delay(bh_result);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700132 map_bh(bh_result, inode->i_sb, 0);
133 /* Disk block number must be changed to proper value */
134
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700135 } else if (ret == -ENOENT) {
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700136 /*
137 * not found is not error (e.g. hole); must return without
138 * the mapped state flag.
139 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700140 ;
141 } else {
142 err = ret;
143 }
144
145 out:
146 return err;
147}
148
149/**
150 * nilfs_readpage() - implement readpage() method of nilfs_aops {}
151 * address_space_operations.
152 * @file - file struct of the file to be read
153 * @page - the page to be read
154 */
155static int nilfs_readpage(struct file *file, struct page *page)
156{
157 return mpage_readpage(page, nilfs_get_block);
158}
159
160/**
161 * nilfs_readpages() - implement readpages() method of nilfs_aops {}
162 * address_space_operations.
163 * @file - file struct of the file to be read
164 * @mapping - address_space struct used for reading multiple pages
165 * @pages - the pages to be read
166 * @nr_pages - number of pages to be read
167 */
168static int nilfs_readpages(struct file *file, struct address_space *mapping,
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700169 struct list_head *pages, unsigned int nr_pages)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700170{
171 return mpage_readpages(mapping, pages, nr_pages, nilfs_get_block);
172}
173
174static int nilfs_writepages(struct address_space *mapping,
175 struct writeback_control *wbc)
176{
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700177 struct inode *inode = mapping->host;
178 int err = 0;
179
Vyacheslav Dubeyko8c26c4e2013-04-30 15:27:48 -0700180 if (inode->i_sb->s_flags & MS_RDONLY) {
181 nilfs_clear_dirty_pages(mapping, false);
182 return -EROFS;
183 }
184
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700185 if (wbc->sync_mode == WB_SYNC_ALL)
186 err = nilfs_construct_dsync_segment(inode->i_sb, inode,
187 wbc->range_start,
188 wbc->range_end);
189 return err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700190}
191
192static int nilfs_writepage(struct page *page, struct writeback_control *wbc)
193{
194 struct inode *inode = page->mapping->host;
195 int err;
196
Vyacheslav Dubeykoeb53b6d2013-04-30 15:27:51 -0700197 if (inode->i_sb->s_flags & MS_RDONLY) {
Vyacheslav Dubeyko8c26c4e2013-04-30 15:27:48 -0700198 /*
199 * It means that filesystem was remounted in read-only
200 * mode because of error or metadata corruption. But we
201 * have dirty pages that try to be flushed in background.
202 * So, here we simply discard this dirty page.
203 */
204 nilfs_clear_dirty_page(page, false);
205 unlock_page(page);
206 return -EROFS;
207 }
208
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700209 redirty_page_for_writepage(wbc, page);
210 unlock_page(page);
211
212 if (wbc->sync_mode == WB_SYNC_ALL) {
213 err = nilfs_construct_segment(inode->i_sb);
214 if (unlikely(err))
215 return err;
216 } else if (wbc->for_reclaim)
217 nilfs_flush_segment(inode->i_sb, inode->i_ino);
218
219 return 0;
220}
221
222static int nilfs_set_page_dirty(struct page *page)
223{
Andreas Rohner56d7acc2014-09-25 16:05:14 -0700224 struct inode *inode = page->mapping->host;
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700225 int ret = __set_page_dirty_nobuffers(page);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700226
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700227 if (page_has_buffers(page)) {
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700228 unsigned int nr_dirty = 0;
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700229 struct buffer_head *bh, *head;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700230
Ryusuke Konishi136e8772013-05-24 15:55:29 -0700231 /*
232 * This page is locked by callers, and no other thread
233 * concurrently marks its buffers dirty since they are
234 * only dirtied through routines in fs/buffer.c in
235 * which call sites of mark_buffer_dirty are protected
236 * by page lock.
237 */
238 bh = head = page_buffers(page);
239 do {
240 /* Do not mark hole blocks dirty */
241 if (buffer_dirty(bh) || !buffer_mapped(bh))
242 continue;
243
244 set_buffer_dirty(bh);
245 nr_dirty++;
246 } while (bh = bh->b_this_page, bh != head);
247
248 if (nr_dirty)
249 nilfs_set_file_dirty(inode, nr_dirty);
Andreas Rohner56d7acc2014-09-25 16:05:14 -0700250 } else if (ret) {
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700251 unsigned int nr_dirty = 1 << (PAGE_SHIFT - inode->i_blkbits);
Andreas Rohner56d7acc2014-09-25 16:05:14 -0700252
253 nilfs_set_file_dirty(inode, nr_dirty);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700254 }
255 return ret;
256}
257
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100258void nilfs_write_failed(struct address_space *mapping, loff_t to)
259{
260 struct inode *inode = mapping->host;
261
262 if (to > inode->i_size) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700263 truncate_pagecache(inode, inode->i_size);
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100264 nilfs_truncate(inode);
265 }
266}
267
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700268static int nilfs_write_begin(struct file *file, struct address_space *mapping,
269 loff_t pos, unsigned len, unsigned flags,
270 struct page **pagep, void **fsdata)
271
272{
273 struct inode *inode = mapping->host;
274 int err = nilfs_transaction_begin(inode->i_sb, NULL, 1);
275
276 if (unlikely(err))
277 return err;
278
Christoph Hellwig155130a2010-06-04 11:29:58 +0200279 err = block_write_begin(mapping, pos, len, flags, pagep,
280 nilfs_get_block);
281 if (unlikely(err)) {
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100282 nilfs_write_failed(mapping, pos + len);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700283 nilfs_transaction_abort(inode->i_sb);
Christoph Hellwig155130a2010-06-04 11:29:58 +0200284 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700285 return err;
286}
287
288static int nilfs_write_end(struct file *file, struct address_space *mapping,
289 loff_t pos, unsigned len, unsigned copied,
290 struct page *page, void *fsdata)
291{
292 struct inode *inode = mapping->host;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700293 unsigned int start = pos & (PAGE_SIZE - 1);
294 unsigned int nr_dirty;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700295 int err;
296
297 nr_dirty = nilfs_page_count_clean_buffers(page, start,
298 start + copied);
299 copied = generic_write_end(file, mapping, pos, len, copied, page,
300 fsdata);
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900301 nilfs_set_file_dirty(inode, nr_dirty);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700302 err = nilfs_transaction_commit(inode->i_sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700303 return err ? : copied;
304}
305
306static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700307nilfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700308{
Al Viro6b6dabc2015-06-21 01:37:24 -0400309 struct inode *inode = file_inode(iocb->ki_filp);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700310
Omar Sandoval6f673762015-03-16 04:33:52 -0700311 if (iov_iter_rw(iter) == WRITE)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700312 return 0;
313
314 /* Needs synchronization with the cleaner */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700315 return blockdev_direct_IO(iocb, inode, iter, nilfs_get_block);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700316}
317
Alexey Dobriyan7f094102009-09-21 17:01:10 -0700318const struct address_space_operations nilfs_aops = {
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700319 .writepage = nilfs_writepage,
320 .readpage = nilfs_readpage,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700321 .writepages = nilfs_writepages,
322 .set_page_dirty = nilfs_set_page_dirty,
323 .readpages = nilfs_readpages,
324 .write_begin = nilfs_write_begin,
325 .write_end = nilfs_write_end,
326 /* .releasepage = nilfs_releasepage, */
327 .invalidatepage = block_invalidatepage,
328 .direct_IO = nilfs_direct_IO,
Hisashi Hifumi258ef672009-05-13 11:19:40 +0900329 .is_partially_uptodate = block_is_partially_uptodate,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700330};
331
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800332static int nilfs_insert_inode_locked(struct inode *inode,
333 struct nilfs_root *root,
334 unsigned long ino)
335{
336 struct nilfs_iget_args args = {
337 .ino = ino, .root = root, .cno = 0, .for_gc = 0
338 };
339
340 return insert_inode_locked4(inode, ino, nilfs_iget_test, &args);
341}
342
Al Viroc6e49e32011-07-26 03:07:14 -0400343struct inode *nilfs_new_inode(struct inode *dir, umode_t mode)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700344{
345 struct super_block *sb = dir->i_sb;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900346 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700347 struct inode *inode;
348 struct nilfs_inode_info *ii;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900349 struct nilfs_root *root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700350 int err = -ENOMEM;
351 ino_t ino;
352
353 inode = new_inode(sb);
354 if (unlikely(!inode))
355 goto failed;
356
357 mapping_set_gfp_mask(inode->i_mapping,
Michal Hockoc62d2552015-11-06 16:28:49 -0800358 mapping_gfp_constraint(inode->i_mapping, ~__GFP_FS));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700359
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900360 root = NILFS_I(dir)->i_root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700361 ii = NILFS_I(inode);
362 ii->i_state = 1 << NILFS_I_NEW;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900363 ii->i_root = root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700364
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900365 err = nilfs_ifile_create_inode(root->ifile, &ino, &ii->i_bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700366 if (unlikely(err))
367 goto failed_ifile_create_inode;
368 /* reference count of i_bh inherits from nilfs_mdt_read_block() */
369
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700370 atomic64_inc(&root->inodes_count);
Dmitry Monakhov73459dc2010-03-04 17:32:15 +0300371 inode_init_owner(inode, dir, mode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700372 inode->i_ino = ino;
373 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
374
375 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)) {
376 err = nilfs_bmap_read(ii->i_bmap, NULL);
377 if (err < 0)
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800378 goto failed_after_creation;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700379
380 set_bit(NILFS_I_BMAP, &ii->i_state);
381 /* No lock is needed; iget() ensures it. */
382 }
383
Ryusuke Konishib253a3e2011-01-20 02:09:53 +0900384 ii->i_flags = nilfs_mask_flags(
385 mode, NILFS_I(dir)->i_flags & NILFS_FL_INHERITED);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700386
387 /* ii->i_file_acl = 0; */
388 /* ii->i_dir_acl = 0; */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700389 ii->i_dir_start_lookup = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700390 nilfs_set_inode_flags(inode);
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +0900391 spin_lock(&nilfs->ns_next_gen_lock);
392 inode->i_generation = nilfs->ns_next_generation++;
393 spin_unlock(&nilfs->ns_next_gen_lock);
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800394 if (nilfs_insert_inode_locked(inode, root, ino) < 0) {
395 err = -EIO;
396 goto failed_after_creation;
397 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700398
399 err = nilfs_init_acl(inode, dir);
400 if (unlikely(err))
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700401 /*
402 * Never occur. When supporting nilfs_init_acl(),
403 * proper cancellation of above jobs should be considered.
404 */
405 goto failed_after_creation;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700406
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700407 return inode;
408
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800409 failed_after_creation:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200410 clear_nlink(inode);
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800411 unlock_new_inode(inode);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700412 iput(inode); /*
413 * raw_inode will be deleted through
414 * nilfs_evict_inode().
415 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700416 goto failed;
417
418 failed_ifile_create_inode:
419 make_bad_inode(inode);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700420 iput(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700421 failed:
422 return ERR_PTR(err);
423}
424
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700425void nilfs_set_inode_flags(struct inode *inode)
426{
427 unsigned int flags = NILFS_I(inode)->i_flags;
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700428 unsigned int new_fl = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700429
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900430 if (flags & FS_SYNC_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700431 new_fl |= S_SYNC;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900432 if (flags & FS_APPEND_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700433 new_fl |= S_APPEND;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900434 if (flags & FS_IMMUTABLE_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700435 new_fl |= S_IMMUTABLE;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900436 if (flags & FS_NOATIME_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700437 new_fl |= S_NOATIME;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900438 if (flags & FS_DIRSYNC_FL)
Ryusuke Konishifaea2c52015-04-16 12:46:50 -0700439 new_fl |= S_DIRSYNC;
440 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE |
441 S_NOATIME | S_DIRSYNC);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700442}
443
444int nilfs_read_inode_common(struct inode *inode,
445 struct nilfs_inode *raw_inode)
446{
447 struct nilfs_inode_info *ii = NILFS_I(inode);
448 int err;
449
450 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman305d3d02012-02-10 12:31:23 -0800451 i_uid_write(inode, le32_to_cpu(raw_inode->i_uid));
452 i_gid_write(inode, le32_to_cpu(raw_inode->i_gid));
Miklos Szeredibfe86842011-10-28 14:13:29 +0200453 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700454 inode->i_size = le64_to_cpu(raw_inode->i_size);
455 inode->i_atime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
456 inode->i_ctime.tv_sec = le64_to_cpu(raw_inode->i_ctime);
457 inode->i_mtime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
Ryusuke Konishi61239232009-04-06 19:02:00 -0700458 inode->i_atime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
459 inode->i_ctime.tv_nsec = le32_to_cpu(raw_inode->i_ctime_nsec);
460 inode->i_mtime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
Ryusuke Konishi705304a2014-12-10 15:54:34 -0800461 if (inode->i_nlink == 0)
462 return -ESTALE; /* this inode is deleted */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700463
464 inode->i_blocks = le64_to_cpu(raw_inode->i_blocks);
465 ii->i_flags = le32_to_cpu(raw_inode->i_flags);
466#if 0
467 ii->i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
468 ii->i_dir_acl = S_ISREG(inode->i_mode) ?
469 0 : le32_to_cpu(raw_inode->i_dir_acl);
470#endif
Ryusuke Konishi3cc811b2009-09-28 13:02:46 +0900471 ii->i_dir_start_lookup = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700472 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
473
474 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
475 S_ISLNK(inode->i_mode)) {
476 err = nilfs_bmap_read(ii->i_bmap, raw_inode);
477 if (err < 0)
478 return err;
479 set_bit(NILFS_I_BMAP, &ii->i_state);
480 /* No lock is needed; iget() ensures it. */
481 }
482 return 0;
483}
484
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900485static int __nilfs_read_inode(struct super_block *sb,
486 struct nilfs_root *root, unsigned long ino,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700487 struct inode *inode)
488{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900489 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700490 struct buffer_head *bh;
491 struct nilfs_inode *raw_inode;
492 int err;
493
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900494 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900495 err = nilfs_ifile_get_inode_block(root->ifile, ino, &bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700496 if (unlikely(err))
497 goto bad_inode;
498
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900499 raw_inode = nilfs_ifile_map_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700500
Ryusuke Konishi1b2f5a62009-08-22 19:10:07 +0900501 err = nilfs_read_inode_common(inode, raw_inode);
502 if (err)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700503 goto failed_unmap;
504
505 if (S_ISREG(inode->i_mode)) {
506 inode->i_op = &nilfs_file_inode_operations;
507 inode->i_fop = &nilfs_file_operations;
508 inode->i_mapping->a_ops = &nilfs_aops;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700509 } else if (S_ISDIR(inode->i_mode)) {
510 inode->i_op = &nilfs_dir_inode_operations;
511 inode->i_fop = &nilfs_dir_operations;
512 inode->i_mapping->a_ops = &nilfs_aops;
513 } else if (S_ISLNK(inode->i_mode)) {
514 inode->i_op = &nilfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500515 inode_nohighmem(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700516 inode->i_mapping->a_ops = &nilfs_aops;
517 } else {
518 inode->i_op = &nilfs_special_inode_operations;
519 init_special_inode(
520 inode, inode->i_mode,
Ryusuke Konishicdce2142010-05-09 15:31:22 +0900521 huge_decode_dev(le64_to_cpu(raw_inode->i_device_code)));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700522 }
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900523 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700524 brelse(bh);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900525 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700526 nilfs_set_inode_flags(inode);
Ryusuke Konishi0ce187c2015-04-16 12:46:47 -0700527 mapping_set_gfp_mask(inode->i_mapping,
Michal Hockoc62d2552015-11-06 16:28:49 -0800528 mapping_gfp_constraint(inode->i_mapping, ~__GFP_FS));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700529 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 Konishi076a3782016-05-23 16:23:48 -0700671 /*
672 * When extending inode, nilfs->ns_inode_size should be checked
673 * for substitutions of appended fields.
674 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700675}
676
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700677void nilfs_update_inode(struct inode *inode, struct buffer_head *ibh, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700678{
679 ino_t ino = inode->i_ino;
680 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900681 struct inode *ifile = ii->i_root->ifile;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700682 struct nilfs_inode *raw_inode;
683
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900684 raw_inode = nilfs_ifile_map_inode(ifile, ino, ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700685
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700686 if (test_and_clear_bit(NILFS_I_NEW, &ii->i_state))
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900687 memset(raw_inode, 0, NILFS_MDT(ifile)->mi_entry_size);
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700688 if (flags & I_DIRTY_DATASYNC)
689 set_bit(NILFS_I_INODE_SYNC, &ii->i_state);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700690
691 nilfs_write_inode_common(inode, raw_inode, 0);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700692 /*
693 * XXX: call with has_bmap = 0 is a workaround to avoid
694 * deadlock of bmap. This delays update of i_bmap to just
695 * before writing.
696 */
697
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900698 nilfs_ifile_unmap_inode(ifile, ino, ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700699}
700
701#define NILFS_MAX_TRUNCATE_BLOCKS 16384 /* 64MB for 4KB block */
702
703static void nilfs_truncate_bmap(struct nilfs_inode_info *ii,
704 unsigned long from)
705{
Ryusuke Konishi3568a132015-04-16 12:46:34 -0700706 __u64 b;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700707 int ret;
708
709 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
710 return;
Ryusuke Konishie8289492010-11-19 15:26:20 +0900711repeat:
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700712 ret = nilfs_bmap_last_key(ii->i_bmap, &b);
713 if (ret == -ENOENT)
714 return;
715 else if (ret < 0)
716 goto failed;
717
718 if (b < from)
719 return;
720
Ryusuke Konishi3568a132015-04-16 12:46:34 -0700721 b -= min_t(__u64, NILFS_MAX_TRUNCATE_BLOCKS, b - from);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700722 ret = nilfs_bmap_truncate(ii->i_bmap, b);
723 nilfs_relax_pressure_in_lock(ii->vfs_inode.i_sb);
724 if (!ret || (ret == -ENOMEM &&
725 nilfs_bmap_truncate(ii->i_bmap, b) == 0))
726 goto repeat;
727
Ryusuke Konishie8289492010-11-19 15:26:20 +0900728failed:
729 nilfs_warning(ii->vfs_inode.i_sb, __func__,
730 "failed to truncate bmap (ino=%lu, err=%d)",
731 ii->vfs_inode.i_ino, ret);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700732}
733
734void nilfs_truncate(struct inode *inode)
735{
736 unsigned long blkoff;
737 unsigned int blocksize;
738 struct nilfs_transaction_info ti;
739 struct super_block *sb = inode->i_sb;
740 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700741
742 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
743 return;
744 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
745 return;
746
747 blocksize = sb->s_blocksize;
748 blkoff = (inode->i_size + blocksize - 1) >> sb->s_blocksize_bits;
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700749 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700750
751 block_truncate_page(inode->i_mapping, inode->i_size, nilfs_get_block);
752
753 nilfs_truncate_bmap(ii, blkoff);
754
755 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
756 if (IS_SYNC(inode))
757 nilfs_set_transaction_flag(NILFS_TI_SYNC);
758
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900759 nilfs_mark_inode_dirty(inode);
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900760 nilfs_set_file_dirty(inode, 0);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700761 nilfs_transaction_commit(sb);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700762 /*
763 * May construct a logical segment and may fail in sync mode.
764 * But truncate has no return value.
765 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700766}
767
Al Viro6fd1e5c2010-06-07 11:55:00 -0400768static void nilfs_clear_inode(struct inode *inode)
769{
770 struct nilfs_inode_info *ii = NILFS_I(inode);
771
772 /*
773 * Free resources allocated in nilfs_read_inode(), here.
774 */
775 BUG_ON(!list_empty(&ii->i_dirty));
776 brelse(ii->i_bh);
777 ii->i_bh = NULL;
778
Ryusuke Konishi2d199612016-05-23 16:23:20 -0700779 if (nilfs_is_metadata_file_inode(inode))
780 nilfs_mdt_clear(inode);
Ryusuke Konishi518d1a62010-08-20 23:40:54 +0900781
Al Viro6fd1e5c2010-06-07 11:55:00 -0400782 if (test_bit(NILFS_I_BMAP, &ii->i_state))
783 nilfs_bmap_clear(ii->i_bmap);
784
785 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900786
787 if (ii->i_root && inode->i_ino == NILFS_ROOT_INO)
788 nilfs_put_root(ii->i_root);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400789}
790
791void nilfs_evict_inode(struct inode *inode)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700792{
793 struct nilfs_transaction_info ti;
794 struct super_block *sb = inode->i_sb;
795 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi25b18d32011-02-11 15:23:27 +0900796 int ret;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700797
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900798 if (inode->i_nlink || !ii->i_root || unlikely(is_bad_inode(inode))) {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700799 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200800 clear_inode(inode);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400801 nilfs_clear_inode(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700802 return;
803 }
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700804 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
805
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700806 truncate_inode_pages_final(&inode->i_data);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700807
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900808 /* TODO: some of the following operations may fail. */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700809 nilfs_truncate_bmap(ii, 0);
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900810 nilfs_mark_inode_dirty(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200811 clear_inode(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900812
Ryusuke Konishi25b18d32011-02-11 15:23:27 +0900813 ret = nilfs_ifile_delete_inode(ii->i_root->ifile, inode->i_ino);
814 if (!ret)
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700815 atomic64_dec(&ii->i_root->inodes_count);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900816
Al Viro6fd1e5c2010-06-07 11:55:00 -0400817 nilfs_clear_inode(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900818
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700819 if (IS_SYNC(inode))
820 nilfs_set_transaction_flag(NILFS_TI_SYNC);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700821 nilfs_transaction_commit(sb);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700822 /*
823 * May construct a logical segment and may fail in sync mode.
824 * But delete_inode has no return value.
825 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700826}
827
828int nilfs_setattr(struct dentry *dentry, struct iattr *iattr)
829{
830 struct nilfs_transaction_info ti;
David Howells2b0143b2015-03-17 22:25:59 +0000831 struct inode *inode = d_inode(dentry);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700832 struct super_block *sb = inode->i_sb;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700833 int err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700834
835 err = inode_change_ok(inode, iattr);
836 if (err)
837 return err;
838
839 err = nilfs_transaction_begin(sb, &ti, 0);
840 if (unlikely(err))
841 return err;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700842
Christoph Hellwig10257742010-06-04 11:30:02 +0200843 if ((iattr->ia_valid & ATTR_SIZE) &&
844 iattr->ia_size != i_size_read(inode)) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -0400845 inode_dio_wait(inode);
Marco Stornelli2d1b3992012-12-15 11:57:37 +0100846 truncate_setsize(inode, iattr->ia_size);
847 nilfs_truncate(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +0200848 }
849
850 setattr_copy(inode, iattr);
851 mark_inode_dirty(inode);
852
853 if (iattr->ia_valid & ATTR_MODE) {
854 err = nilfs_acl_chmod(inode);
855 if (unlikely(err))
856 goto out_err;
857 }
858
859 return nilfs_transaction_commit(sb);
860
861out_err:
862 nilfs_transaction_abort(sb);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700863 return err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700864}
865
Al Viro10556cb2011-06-20 19:28:19 -0400866int nilfs_permission(struct inode *inode, int mask)
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900867{
Al Viro730e9082011-06-18 20:21:44 -0400868 struct nilfs_root *root = NILFS_I(inode)->i_root;
Ryusuke Konishi4ad364c2016-05-23 16:23:25 -0700869
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900870 if ((mask & MAY_WRITE) && root &&
871 root->cno != NILFS_CPTREE_CURRENT_CNO)
872 return -EROFS; /* snapshot is not writable */
873
Al Viro2830ba72011-06-20 19:16:29 -0400874 return generic_permission(inode, mask);
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900875}
876
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900877int nilfs_load_inode_block(struct inode *inode, struct buffer_head **pbh)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700878{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900879 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700880 struct nilfs_inode_info *ii = NILFS_I(inode);
881 int err;
882
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900883 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700884 if (ii->i_bh == NULL) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900885 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900886 err = nilfs_ifile_get_inode_block(ii->i_root->ifile,
887 inode->i_ino, pbh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700888 if (unlikely(err))
889 return err;
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900890 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700891 if (ii->i_bh == NULL)
892 ii->i_bh = *pbh;
893 else {
894 brelse(*pbh);
895 *pbh = ii->i_bh;
896 }
897 } else
898 *pbh = ii->i_bh;
899
900 get_bh(*pbh);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900901 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700902 return 0;
903}
904
905int nilfs_inode_dirty(struct inode *inode)
906{
907 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900908 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700909 int ret = 0;
910
911 if (!list_empty(&ii->i_dirty)) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900912 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700913 ret = test_bit(NILFS_I_DIRTY, &ii->i_state) ||
914 test_bit(NILFS_I_BUSY, &ii->i_state);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900915 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700916 }
917 return ret;
918}
919
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700920int nilfs_set_file_dirty(struct inode *inode, unsigned int nr_dirty)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700921{
922 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900923 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700924
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900925 atomic_add(nr_dirty, &nilfs->ns_ndirtyblks);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700926
Ryusuke Konishi458c5b02009-04-06 19:01:56 -0700927 if (test_and_set_bit(NILFS_I_DIRTY, &ii->i_state))
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700928 return 0;
929
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900930 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700931 if (!test_bit(NILFS_I_QUEUED, &ii->i_state) &&
932 !test_bit(NILFS_I_BUSY, &ii->i_state)) {
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700933 /*
934 * Because this routine may race with nilfs_dispose_list(),
935 * we have to check NILFS_I_QUEUED here, too.
936 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700937 if (list_empty(&ii->i_dirty) && igrab(inode) == NULL) {
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700938 /*
939 * This will happen when somebody is freeing
940 * this inode.
941 */
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900942 nilfs_warning(inode->i_sb, __func__,
Ryusuke Konishi06f4abf2016-05-23 16:23:31 -0700943 "cannot get inode (ino=%lu)",
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700944 inode->i_ino);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900945 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700946 return -EINVAL; /*
947 * NILFS_I_DIRTY may remain for
948 * freeing inode.
949 */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700950 }
Nicolas Kaisereaae0f32011-03-19 16:45:30 +0100951 list_move_tail(&ii->i_dirty, &nilfs->ns_dirty_files);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700952 set_bit(NILFS_I_QUEUED, &ii->i_state);
953 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900954 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700955 return 0;
956}
957
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700958int __nilfs_mark_inode_dirty(struct inode *inode, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700959{
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700960 struct buffer_head *ibh;
961 int err;
962
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900963 err = nilfs_load_inode_block(inode, &ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700964 if (unlikely(err)) {
965 nilfs_warning(inode->i_sb, __func__,
Ryusuke Konishi06f4abf2016-05-23 16:23:31 -0700966 "failed to reget inode block.");
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700967 return err;
968 }
Andreas Rohnerb9f66142014-10-13 15:53:22 -0700969 nilfs_update_inode(inode, ibh, flags);
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900970 mark_buffer_dirty(ibh);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900971 nilfs_mdt_mark_dirty(NILFS_I(inode)->i_root->ifile);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700972 brelse(ibh);
973 return 0;
974}
975
976/**
977 * nilfs_dirty_inode - reflect changes on given inode to an inode block.
978 * @inode: inode of the file to be registered.
979 *
980 * nilfs_dirty_inode() loads a inode block containing the specified
981 * @inode and copies data from a nilfs_inode to a corresponding inode
982 * entry in the inode block. This operation is excluded from the segment
983 * construction. This function can be called both as a single operation
984 * and as a part of indivisible file operations.
985 */
Christoph Hellwigaa385722011-05-27 06:53:02 -0400986void nilfs_dirty_inode(struct inode *inode, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700987{
988 struct nilfs_transaction_info ti;
Ryusuke Konishi7d6cd922010-08-21 00:30:39 +0900989 struct nilfs_mdt_info *mdi = NILFS_MDT(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700990
991 if (is_bad_inode(inode)) {
992 nilfs_warning(inode->i_sb, __func__,
Ryusuke Konishi06f4abf2016-05-23 16:23:31 -0700993 "tried to mark bad_inode dirty. ignored.");
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700994 dump_stack();
995 return;
996 }
Ryusuke Konishi7d6cd922010-08-21 00:30:39 +0900997 if (mdi) {
998 nilfs_mdt_mark_dirty(inode);
999 return;
1000 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -07001001 nilfs_transaction_begin(inode->i_sb, &ti, 0);
Andreas Rohnerb9f66142014-10-13 15:53:22 -07001002 __nilfs_mark_inode_dirty(inode, flags);
Ryusuke Konishi47420c72009-04-06 19:01:45 -07001003 nilfs_transaction_commit(inode->i_sb); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -07001004}
Ryusuke Konishi622daaff2010-12-26 16:38:43 +09001005
1006int nilfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1007 __u64 start, __u64 len)
1008{
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +09001009 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi622daaff2010-12-26 16:38:43 +09001010 __u64 logical = 0, phys = 0, size = 0;
1011 __u32 flags = 0;
1012 loff_t isize;
1013 sector_t blkoff, end_blkoff;
1014 sector_t delalloc_blkoff;
1015 unsigned long delalloc_blklen;
1016 unsigned int blkbits = inode->i_blkbits;
1017 int ret, n;
1018
1019 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
1020 if (ret)
1021 return ret;
1022
Al Viro59551022016-01-22 15:40:57 -05001023 inode_lock(inode);
Ryusuke Konishi622daaff2010-12-26 16:38:43 +09001024
1025 isize = i_size_read(inode);
1026
1027 blkoff = start >> blkbits;
1028 end_blkoff = (start + len - 1) >> blkbits;
1029
1030 delalloc_blklen = nilfs_find_uncommitted_extent(inode, blkoff,
1031 &delalloc_blkoff);
1032
1033 do {
1034 __u64 blkphy;
1035 unsigned int maxblocks;
1036
1037 if (delalloc_blklen && blkoff == delalloc_blkoff) {
1038 if (size) {
1039 /* End of the current extent */
1040 ret = fiemap_fill_next_extent(
1041 fieinfo, logical, phys, size, flags);
1042 if (ret)
1043 break;
1044 }
1045 if (blkoff > end_blkoff)
1046 break;
1047
1048 flags = FIEMAP_EXTENT_MERGED | FIEMAP_EXTENT_DELALLOC;
1049 logical = blkoff << blkbits;
1050 phys = 0;
1051 size = delalloc_blklen << blkbits;
1052
1053 blkoff = delalloc_blkoff + delalloc_blklen;
1054 delalloc_blklen = nilfs_find_uncommitted_extent(
1055 inode, blkoff, &delalloc_blkoff);
1056 continue;
1057 }
1058
1059 /*
1060 * Limit the number of blocks that we look up so as
1061 * not to get into the next delayed allocation extent.
1062 */
1063 maxblocks = INT_MAX;
1064 if (delalloc_blklen)
1065 maxblocks = min_t(sector_t, delalloc_blkoff - blkoff,
1066 maxblocks);
1067 blkphy = 0;
1068
1069 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1070 n = nilfs_bmap_lookup_contig(
1071 NILFS_I(inode)->i_bmap, blkoff, &blkphy, maxblocks);
1072 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1073
1074 if (n < 0) {
1075 int past_eof;
1076
1077 if (unlikely(n != -ENOENT))
1078 break; /* error */
1079
1080 /* HOLE */
1081 blkoff++;
1082 past_eof = ((blkoff << blkbits) >= isize);
1083
1084 if (size) {
1085 /* End of the current extent */
1086
1087 if (past_eof)
1088 flags |= FIEMAP_EXTENT_LAST;
1089
1090 ret = fiemap_fill_next_extent(
1091 fieinfo, logical, phys, size, flags);
1092 if (ret)
1093 break;
1094 size = 0;
1095 }
1096 if (blkoff > end_blkoff || past_eof)
1097 break;
1098 } else {
1099 if (size) {
1100 if (phys && blkphy << blkbits == phys + size) {
1101 /* The current extent goes on */
1102 size += n << blkbits;
1103 } else {
1104 /* Terminate the current extent */
1105 ret = fiemap_fill_next_extent(
1106 fieinfo, logical, phys, size,
1107 flags);
1108 if (ret || blkoff > end_blkoff)
1109 break;
1110
1111 /* Start another extent */
1112 flags = FIEMAP_EXTENT_MERGED;
1113 logical = blkoff << blkbits;
1114 phys = blkphy << blkbits;
1115 size = n << blkbits;
1116 }
1117 } else {
1118 /* Start a new extent */
1119 flags = FIEMAP_EXTENT_MERGED;
1120 logical = blkoff << blkbits;
1121 phys = blkphy << blkbits;
1122 size = n << blkbits;
1123 }
1124 blkoff += n;
1125 }
1126 cond_resched();
1127 } while (true);
1128
1129 /* If ret is 1 then we just hit the end of the extent array */
1130 if (ret == 1)
1131 ret = 0;
1132
Al Viro59551022016-01-22 15:40:57 -05001133 inode_unlock(inode);
Ryusuke Konishi622daaff2010-12-26 16:38:43 +09001134 return ret;
1135}