blob: 204bfcf063149b09fcf48c920982175375eff792 [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 Rohner78d8eef2014-09-25 16:05:14 -070027#include <linux/pagemap.h>
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070028#include <linux/writeback.h>
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -070029#include <linux/uio.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
Ryusuke Konishi0e14a352010-08-20 21:20:29 +090038struct nilfs_iget_args {
39 u64 ino;
40 __u64 cno;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +090041 struct nilfs_root *root;
Ryusuke Konishi0e14a352010-08-20 21:20:29 +090042 int for_gc;
43};
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070044
Ryusuke Konishibe667372011-03-05 00:19:32 +090045void nilfs_inode_add_blocks(struct inode *inode, int n)
46{
47 struct nilfs_root *root = NILFS_I(inode)->i_root;
48
49 inode_add_bytes(inode, (1 << inode->i_blkbits) * n);
50 if (root)
51 atomic_add(n, &root->blocks_count);
52}
53
54void nilfs_inode_sub_blocks(struct inode *inode, int n)
55{
56 struct nilfs_root *root = NILFS_I(inode)->i_root;
57
58 inode_sub_bytes(inode, (1 << inode->i_blkbits) * n);
59 if (root)
60 atomic_sub(n, &root->blocks_count);
61}
62
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070063/**
64 * nilfs_get_block() - get a file block on the filesystem (callback function)
65 * @inode - inode struct of the target file
66 * @blkoff - file block number
67 * @bh_result - buffer head to be mapped on
68 * @create - indicate whether allocating the block or not when it has not
69 * been allocated yet.
70 *
71 * This function does not issue actual read request of the specified data
72 * block. It is done by VFS.
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070073 */
74int nilfs_get_block(struct inode *inode, sector_t blkoff,
75 struct buffer_head *bh_result, int create)
76{
77 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090078 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090079 __u64 blknum = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070080 int err = 0, ret;
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090081 unsigned maxblocks = bh_result->b_size >> inode->i_blkbits;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070082
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090083 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090084 ret = nilfs_bmap_lookup_contig(ii->i_bmap, blkoff, &blknum, maxblocks);
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090085 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090086 if (ret >= 0) { /* found */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070087 map_bh(bh_result, inode->i_sb, blknum);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090088 if (ret > 0)
89 bh_result->b_size = (ret << inode->i_blkbits);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070090 goto out;
91 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -070092 /* data block was not found */
93 if (ret == -ENOENT && create) {
94 struct nilfs_transaction_info ti;
95
96 bh_result->b_blocknr = 0;
97 err = nilfs_transaction_begin(inode->i_sb, &ti, 1);
98 if (unlikely(err))
99 goto out;
100 err = nilfs_bmap_insert(ii->i_bmap, (unsigned long)blkoff,
101 (unsigned long)bh_result);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700102 if (unlikely(err != 0)) {
103 if (err == -EEXIST) {
104 /*
105 * The get_block() function could be called
106 * from multiple callers for an inode.
107 * However, the page having this block must
108 * be locked in this case.
109 */
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700110 printk(KERN_WARNING
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700111 "nilfs_get_block: a race condition "
112 "while inserting a data block. "
113 "(inode number=%lu, file block "
114 "offset=%llu)\n",
115 inode->i_ino,
116 (unsigned long long)blkoff);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700117 err = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700118 }
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700119 nilfs_transaction_abort(inode->i_sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700120 goto out;
121 }
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900122 nilfs_mark_inode_dirty(inode);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700123 nilfs_transaction_commit(inode->i_sb); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700124 /* Error handling should be detailed */
125 set_buffer_new(bh_result);
Ryusuke Konishi27e6c7a2010-12-26 16:28:28 +0900126 set_buffer_delay(bh_result);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700127 map_bh(bh_result, inode->i_sb, 0); /* dbn must be changed
128 to proper value */
129 } else if (ret == -ENOENT) {
130 /* not found is not error (e.g. hole); must return without
131 the mapped state flag. */
132 ;
133 } else {
134 err = ret;
135 }
136
137 out:
138 return err;
139}
140
141/**
142 * nilfs_readpage() - implement readpage() method of nilfs_aops {}
143 * address_space_operations.
144 * @file - file struct of the file to be read
145 * @page - the page to be read
146 */
147static int nilfs_readpage(struct file *file, struct page *page)
148{
149 return mpage_readpage(page, nilfs_get_block);
150}
151
152/**
153 * nilfs_readpages() - implement readpages() method of nilfs_aops {}
154 * address_space_operations.
155 * @file - file struct of the file to be read
156 * @mapping - address_space struct used for reading multiple pages
157 * @pages - the pages to be read
158 * @nr_pages - number of pages to be read
159 */
160static int nilfs_readpages(struct file *file, struct address_space *mapping,
161 struct list_head *pages, unsigned nr_pages)
162{
163 return mpage_readpages(mapping, pages, nr_pages, nilfs_get_block);
164}
165
166static int nilfs_writepages(struct address_space *mapping,
167 struct writeback_control *wbc)
168{
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700169 struct inode *inode = mapping->host;
170 int err = 0;
171
172 if (wbc->sync_mode == WB_SYNC_ALL)
173 err = nilfs_construct_dsync_segment(inode->i_sb, inode,
174 wbc->range_start,
175 wbc->range_end);
176 return err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700177}
178
179static int nilfs_writepage(struct page *page, struct writeback_control *wbc)
180{
181 struct inode *inode = page->mapping->host;
182 int err;
183
184 redirty_page_for_writepage(wbc, page);
185 unlock_page(page);
186
187 if (wbc->sync_mode == WB_SYNC_ALL) {
188 err = nilfs_construct_segment(inode->i_sb);
189 if (unlikely(err))
190 return err;
191 } else if (wbc->for_reclaim)
192 nilfs_flush_segment(inode->i_sb, inode->i_ino);
193
194 return 0;
195}
196
197static int nilfs_set_page_dirty(struct page *page)
198{
Andreas Rohner78d8eef2014-09-25 16:05:14 -0700199 struct inode *inode = page->mapping->host;
Ryusuke Konishic846d9b2013-05-24 15:55:29 -0700200 int ret = __set_page_dirty_nobuffers(page);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700201
Ryusuke Konishic846d9b2013-05-24 15:55:29 -0700202 if (page_has_buffers(page)) {
Ryusuke Konishic846d9b2013-05-24 15:55:29 -0700203 unsigned nr_dirty = 0;
204 struct buffer_head *bh, *head;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700205
Ryusuke Konishic846d9b2013-05-24 15:55:29 -0700206 /*
207 * This page is locked by callers, and no other thread
208 * concurrently marks its buffers dirty since they are
209 * only dirtied through routines in fs/buffer.c in
210 * which call sites of mark_buffer_dirty are protected
211 * by page lock.
212 */
213 bh = head = page_buffers(page);
214 do {
215 /* Do not mark hole blocks dirty */
216 if (buffer_dirty(bh) || !buffer_mapped(bh))
217 continue;
218
219 set_buffer_dirty(bh);
220 nr_dirty++;
221 } while (bh = bh->b_this_page, bh != head);
222
223 if (nr_dirty)
224 nilfs_set_file_dirty(inode, nr_dirty);
Andreas Rohner78d8eef2014-09-25 16:05:14 -0700225 } else if (ret) {
226 unsigned nr_dirty = 1 << (PAGE_CACHE_SHIFT - inode->i_blkbits);
227
228 nilfs_set_file_dirty(inode, nr_dirty);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700229 }
230 return ret;
231}
232
233static int nilfs_write_begin(struct file *file, struct address_space *mapping,
234 loff_t pos, unsigned len, unsigned flags,
235 struct page **pagep, void **fsdata)
236
237{
238 struct inode *inode = mapping->host;
239 int err = nilfs_transaction_begin(inode->i_sb, NULL, 1);
240
241 if (unlikely(err))
242 return err;
243
Christoph Hellwig155130a2010-06-04 11:29:58 +0200244 err = block_write_begin(mapping, pos, len, flags, pagep,
245 nilfs_get_block);
246 if (unlikely(err)) {
247 loff_t isize = mapping->host->i_size;
248 if (pos + len > isize)
249 vmtruncate(mapping->host, isize);
250
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700251 nilfs_transaction_abort(inode->i_sb);
Christoph Hellwig155130a2010-06-04 11:29:58 +0200252 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700253 return err;
254}
255
256static int nilfs_write_end(struct file *file, struct address_space *mapping,
257 loff_t pos, unsigned len, unsigned copied,
258 struct page *page, void *fsdata)
259{
260 struct inode *inode = mapping->host;
261 unsigned start = pos & (PAGE_CACHE_SIZE - 1);
262 unsigned nr_dirty;
263 int err;
264
265 nr_dirty = nilfs_page_count_clean_buffers(page, start,
266 start + copied);
267 copied = generic_write_end(file, mapping, pos, len, copied, page,
268 fsdata);
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900269 nilfs_set_file_dirty(inode, nr_dirty);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700270 err = nilfs_transaction_commit(inode->i_sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700271 return err ? : copied;
272}
273
274static ssize_t
275nilfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
276 loff_t offset, unsigned long nr_segs)
277{
278 struct file *file = iocb->ki_filp;
279 struct inode *inode = file->f_mapping->host;
280 ssize_t size;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700281
282 if (rw == WRITE)
283 return 0;
284
285 /* Needs synchronization with the cleaner */
Christoph Hellwigaacfc192011-06-24 14:29:47 -0400286 size = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs,
287 nilfs_get_block);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200288
289 /*
290 * In case of error extending write may have instantiated a few
291 * blocks outside i_size. Trim these off again.
292 */
293 if (unlikely((rw & WRITE) && size < 0)) {
294 loff_t isize = i_size_read(inode);
295 loff_t end = offset + iov_length(iov, nr_segs);
296
297 if (end > isize)
298 vmtruncate(inode, isize);
299 }
300
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700301 return size;
302}
303
Alexey Dobriyan7f094102009-09-21 17:01:10 -0700304const struct address_space_operations nilfs_aops = {
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700305 .writepage = nilfs_writepage,
306 .readpage = nilfs_readpage,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700307 .writepages = nilfs_writepages,
308 .set_page_dirty = nilfs_set_page_dirty,
309 .readpages = nilfs_readpages,
310 .write_begin = nilfs_write_begin,
311 .write_end = nilfs_write_end,
312 /* .releasepage = nilfs_releasepage, */
313 .invalidatepage = block_invalidatepage,
314 .direct_IO = nilfs_direct_IO,
Hisashi Hifumi258ef672009-05-13 11:19:40 +0900315 .is_partially_uptodate = block_is_partially_uptodate,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700316};
317
Al Viroc6e49e32011-07-26 03:07:14 -0400318struct inode *nilfs_new_inode(struct inode *dir, umode_t mode)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700319{
320 struct super_block *sb = dir->i_sb;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900321 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700322 struct inode *inode;
323 struct nilfs_inode_info *ii;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900324 struct nilfs_root *root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700325 int err = -ENOMEM;
326 ino_t ino;
327
328 inode = new_inode(sb);
329 if (unlikely(!inode))
330 goto failed;
331
332 mapping_set_gfp_mask(inode->i_mapping,
333 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
334
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900335 root = NILFS_I(dir)->i_root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700336 ii = NILFS_I(inode);
337 ii->i_state = 1 << NILFS_I_NEW;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900338 ii->i_root = root;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700339
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900340 err = nilfs_ifile_create_inode(root->ifile, &ino, &ii->i_bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700341 if (unlikely(err))
342 goto failed_ifile_create_inode;
343 /* reference count of i_bh inherits from nilfs_mdt_read_block() */
344
Ryusuke Konishib7c06342010-08-14 14:48:32 +0900345 atomic_inc(&root->inodes_count);
Dmitry Monakhov73459dc2010-03-04 17:32:15 +0300346 inode_init_owner(inode, dir, mode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700347 inode->i_ino = ino;
348 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
349
350 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)) {
351 err = nilfs_bmap_read(ii->i_bmap, NULL);
352 if (err < 0)
353 goto failed_bmap;
354
355 set_bit(NILFS_I_BMAP, &ii->i_state);
356 /* No lock is needed; iget() ensures it. */
357 }
358
Ryusuke Konishib253a3e2011-01-20 02:09:53 +0900359 ii->i_flags = nilfs_mask_flags(
360 mode, NILFS_I(dir)->i_flags & NILFS_FL_INHERITED);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700361
362 /* ii->i_file_acl = 0; */
363 /* ii->i_dir_acl = 0; */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700364 ii->i_dir_start_lookup = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700365 nilfs_set_inode_flags(inode);
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +0900366 spin_lock(&nilfs->ns_next_gen_lock);
367 inode->i_generation = nilfs->ns_next_generation++;
368 spin_unlock(&nilfs->ns_next_gen_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700369 insert_inode_hash(inode);
370
371 err = nilfs_init_acl(inode, dir);
372 if (unlikely(err))
373 goto failed_acl; /* never occur. When supporting
374 nilfs_init_acl(), proper cancellation of
375 above jobs should be considered */
376
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700377 return inode;
378
379 failed_acl:
380 failed_bmap:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200381 clear_nlink(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700382 iput(inode); /* raw_inode will be deleted through
383 generic_delete_inode() */
384 goto failed;
385
386 failed_ifile_create_inode:
387 make_bad_inode(inode);
388 iput(inode); /* if i_nlink == 1, generic_forget_inode() will be
389 called */
390 failed:
391 return ERR_PTR(err);
392}
393
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700394void nilfs_set_inode_flags(struct inode *inode)
395{
396 unsigned int flags = NILFS_I(inode)->i_flags;
397
398 inode->i_flags &= ~(S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME |
399 S_DIRSYNC);
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900400 if (flags & FS_SYNC_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700401 inode->i_flags |= S_SYNC;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900402 if (flags & FS_APPEND_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700403 inode->i_flags |= S_APPEND;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900404 if (flags & FS_IMMUTABLE_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700405 inode->i_flags |= S_IMMUTABLE;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900406 if (flags & FS_NOATIME_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700407 inode->i_flags |= S_NOATIME;
Ryusuke Konishif0c9f242011-01-20 02:09:52 +0900408 if (flags & FS_DIRSYNC_FL)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700409 inode->i_flags |= S_DIRSYNC;
410 mapping_set_gfp_mask(inode->i_mapping,
411 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
412}
413
414int nilfs_read_inode_common(struct inode *inode,
415 struct nilfs_inode *raw_inode)
416{
417 struct nilfs_inode_info *ii = NILFS_I(inode);
418 int err;
419
420 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
421 inode->i_uid = (uid_t)le32_to_cpu(raw_inode->i_uid);
422 inode->i_gid = (gid_t)le32_to_cpu(raw_inode->i_gid);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200423 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700424 inode->i_size = le64_to_cpu(raw_inode->i_size);
425 inode->i_atime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
426 inode->i_ctime.tv_sec = le64_to_cpu(raw_inode->i_ctime);
427 inode->i_mtime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
Ryusuke Konishi61239232009-04-06 19:02:00 -0700428 inode->i_atime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
429 inode->i_ctime.tv_nsec = le32_to_cpu(raw_inode->i_ctime_nsec);
430 inode->i_mtime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
431 if (inode->i_nlink == 0 && inode->i_mode == 0)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700432 return -EINVAL; /* this inode is deleted */
433
434 inode->i_blocks = le64_to_cpu(raw_inode->i_blocks);
435 ii->i_flags = le32_to_cpu(raw_inode->i_flags);
436#if 0
437 ii->i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
438 ii->i_dir_acl = S_ISREG(inode->i_mode) ?
439 0 : le32_to_cpu(raw_inode->i_dir_acl);
440#endif
Ryusuke Konishi3cc811b2009-09-28 13:02:46 +0900441 ii->i_dir_start_lookup = 0;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700442 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
443
444 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
445 S_ISLNK(inode->i_mode)) {
446 err = nilfs_bmap_read(ii->i_bmap, raw_inode);
447 if (err < 0)
448 return err;
449 set_bit(NILFS_I_BMAP, &ii->i_state);
450 /* No lock is needed; iget() ensures it. */
451 }
452 return 0;
453}
454
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900455static int __nilfs_read_inode(struct super_block *sb,
456 struct nilfs_root *root, unsigned long ino,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700457 struct inode *inode)
458{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900459 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700460 struct buffer_head *bh;
461 struct nilfs_inode *raw_inode;
462 int err;
463
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900464 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900465 err = nilfs_ifile_get_inode_block(root->ifile, ino, &bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700466 if (unlikely(err))
467 goto bad_inode;
468
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900469 raw_inode = nilfs_ifile_map_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700470
Ryusuke Konishi1b2f5a62009-08-22 19:10:07 +0900471 err = nilfs_read_inode_common(inode, raw_inode);
472 if (err)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700473 goto failed_unmap;
474
475 if (S_ISREG(inode->i_mode)) {
476 inode->i_op = &nilfs_file_inode_operations;
477 inode->i_fop = &nilfs_file_operations;
478 inode->i_mapping->a_ops = &nilfs_aops;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700479 } else if (S_ISDIR(inode->i_mode)) {
480 inode->i_op = &nilfs_dir_inode_operations;
481 inode->i_fop = &nilfs_dir_operations;
482 inode->i_mapping->a_ops = &nilfs_aops;
483 } else if (S_ISLNK(inode->i_mode)) {
484 inode->i_op = &nilfs_symlink_inode_operations;
485 inode->i_mapping->a_ops = &nilfs_aops;
486 } else {
487 inode->i_op = &nilfs_special_inode_operations;
488 init_special_inode(
489 inode, inode->i_mode,
Ryusuke Konishicdce2142010-05-09 15:31:22 +0900490 huge_decode_dev(le64_to_cpu(raw_inode->i_device_code)));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700491 }
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900492 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700493 brelse(bh);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900494 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700495 nilfs_set_inode_flags(inode);
496 return 0;
497
498 failed_unmap:
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900499 nilfs_ifile_unmap_inode(root->ifile, ino, bh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700500 brelse(bh);
501
502 bad_inode:
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900503 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700504 return err;
505}
506
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900507static int nilfs_iget_test(struct inode *inode, void *opaque)
508{
509 struct nilfs_iget_args *args = opaque;
510 struct nilfs_inode_info *ii;
511
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900512 if (args->ino != inode->i_ino || args->root != NILFS_I(inode)->i_root)
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900513 return 0;
514
515 ii = NILFS_I(inode);
516 if (!test_bit(NILFS_I_GCINODE, &ii->i_state))
517 return !args->for_gc;
518
519 return args->for_gc && args->cno == ii->i_cno;
520}
521
522static int nilfs_iget_set(struct inode *inode, void *opaque)
523{
524 struct nilfs_iget_args *args = opaque;
525
526 inode->i_ino = args->ino;
527 if (args->for_gc) {
528 NILFS_I(inode)->i_state = 1 << NILFS_I_GCINODE;
529 NILFS_I(inode)->i_cno = args->cno;
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900530 NILFS_I(inode)->i_root = NULL;
531 } else {
532 if (args->root && args->ino == NILFS_ROOT_INO)
533 nilfs_get_root(args->root);
534 NILFS_I(inode)->i_root = args->root;
Ryusuke Konishi0e14a352010-08-20 21:20:29 +0900535 }
536 return 0;
537}
538
Ryusuke Konishi032dbb32010-09-13 11:16:34 +0900539struct inode *nilfs_ilookup(struct super_block *sb, struct nilfs_root *root,
540 unsigned long ino)
541{
542 struct nilfs_iget_args args = {
543 .ino = ino, .root = root, .cno = 0, .for_gc = 0
544 };
545
546 return ilookup5(sb, ino, nilfs_iget_test, &args);
547}
548
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900549struct inode *nilfs_iget_locked(struct super_block *sb, struct nilfs_root *root,
550 unsigned long ino)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700551{
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900552 struct nilfs_iget_args args = {
553 .ino = ino, .root = root, .cno = 0, .for_gc = 0
554 };
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900555
556 return iget5_locked(sb, ino, nilfs_iget_test, nilfs_iget_set, &args);
557}
558
559struct inode *nilfs_iget(struct super_block *sb, struct nilfs_root *root,
560 unsigned long ino)
561{
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700562 struct inode *inode;
563 int err;
564
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900565 inode = nilfs_iget_locked(sb, root, ino);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700566 if (unlikely(!inode))
567 return ERR_PTR(-ENOMEM);
568 if (!(inode->i_state & I_NEW))
569 return inode;
570
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900571 err = __nilfs_read_inode(sb, root, ino, inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700572 if (unlikely(err)) {
573 iget_failed(inode);
574 return ERR_PTR(err);
575 }
576 unlock_new_inode(inode);
577 return inode;
578}
579
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900580struct inode *nilfs_iget_for_gc(struct super_block *sb, unsigned long ino,
581 __u64 cno)
582{
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900583 struct nilfs_iget_args args = {
584 .ino = ino, .root = NULL, .cno = cno, .for_gc = 1
585 };
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900586 struct inode *inode;
587 int err;
588
589 inode = iget5_locked(sb, ino, nilfs_iget_test, nilfs_iget_set, &args);
590 if (unlikely(!inode))
591 return ERR_PTR(-ENOMEM);
592 if (!(inode->i_state & I_NEW))
593 return inode;
594
595 err = nilfs_init_gcinode(inode);
596 if (unlikely(err)) {
597 iget_failed(inode);
598 return ERR_PTR(err);
599 }
600 unlock_new_inode(inode);
601 return inode;
602}
603
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700604void nilfs_write_inode_common(struct inode *inode,
605 struct nilfs_inode *raw_inode, int has_bmap)
606{
607 struct nilfs_inode_info *ii = NILFS_I(inode);
608
609 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
610 raw_inode->i_uid = cpu_to_le32(inode->i_uid);
611 raw_inode->i_gid = cpu_to_le32(inode->i_gid);
612 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
613 raw_inode->i_size = cpu_to_le64(inode->i_size);
614 raw_inode->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
615 raw_inode->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
Ryusuke Konishi61239232009-04-06 19:02:00 -0700616 raw_inode->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
617 raw_inode->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700618 raw_inode->i_blocks = cpu_to_le64(inode->i_blocks);
619
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700620 raw_inode->i_flags = cpu_to_le32(ii->i_flags);
621 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
622
Ryusuke Konishi56eb5532011-04-30 18:56:12 +0900623 if (NILFS_ROOT_METADATA_FILE(inode->i_ino)) {
624 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
625
626 /* zero-fill unused portion in the case of super root block */
627 raw_inode->i_xattr = 0;
628 raw_inode->i_pad = 0;
629 memset((void *)raw_inode + sizeof(*raw_inode), 0,
630 nilfs->ns_inode_size - sizeof(*raw_inode));
631 }
632
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700633 if (has_bmap)
634 nilfs_bmap_write(ii->i_bmap, raw_inode);
635 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
636 raw_inode->i_device_code =
Ryusuke Konishicdce2142010-05-09 15:31:22 +0900637 cpu_to_le64(huge_encode_dev(inode->i_rdev));
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700638 /* When extending inode, nilfs->ns_inode_size should be checked
639 for substitutions of appended fields */
640}
641
642void nilfs_update_inode(struct inode *inode, struct buffer_head *ibh)
643{
644 ino_t ino = inode->i_ino;
645 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900646 struct inode *ifile = ii->i_root->ifile;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700647 struct nilfs_inode *raw_inode;
648
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900649 raw_inode = nilfs_ifile_map_inode(ifile, ino, ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700650
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700651 if (test_and_clear_bit(NILFS_I_NEW, &ii->i_state))
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900652 memset(raw_inode, 0, NILFS_MDT(ifile)->mi_entry_size);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700653 set_bit(NILFS_I_INODE_DIRTY, &ii->i_state);
654
655 nilfs_write_inode_common(inode, raw_inode, 0);
656 /* XXX: call with has_bmap = 0 is a workaround to avoid
657 deadlock of bmap. This delays update of i_bmap to just
658 before writing */
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900659 nilfs_ifile_unmap_inode(ifile, ino, ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700660}
661
662#define NILFS_MAX_TRUNCATE_BLOCKS 16384 /* 64MB for 4KB block */
663
664static void nilfs_truncate_bmap(struct nilfs_inode_info *ii,
665 unsigned long from)
666{
667 unsigned long b;
668 int ret;
669
670 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
671 return;
Ryusuke Konishie8289492010-11-19 15:26:20 +0900672repeat:
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700673 ret = nilfs_bmap_last_key(ii->i_bmap, &b);
674 if (ret == -ENOENT)
675 return;
676 else if (ret < 0)
677 goto failed;
678
679 if (b < from)
680 return;
681
682 b -= min_t(unsigned long, NILFS_MAX_TRUNCATE_BLOCKS, b - from);
683 ret = nilfs_bmap_truncate(ii->i_bmap, b);
684 nilfs_relax_pressure_in_lock(ii->vfs_inode.i_sb);
685 if (!ret || (ret == -ENOMEM &&
686 nilfs_bmap_truncate(ii->i_bmap, b) == 0))
687 goto repeat;
688
Ryusuke Konishie8289492010-11-19 15:26:20 +0900689failed:
690 nilfs_warning(ii->vfs_inode.i_sb, __func__,
691 "failed to truncate bmap (ino=%lu, err=%d)",
692 ii->vfs_inode.i_ino, ret);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700693}
694
695void nilfs_truncate(struct inode *inode)
696{
697 unsigned long blkoff;
698 unsigned int blocksize;
699 struct nilfs_transaction_info ti;
700 struct super_block *sb = inode->i_sb;
701 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700702
703 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
704 return;
705 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
706 return;
707
708 blocksize = sb->s_blocksize;
709 blkoff = (inode->i_size + blocksize - 1) >> sb->s_blocksize_bits;
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700710 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700711
712 block_truncate_page(inode->i_mapping, inode->i_size, nilfs_get_block);
713
714 nilfs_truncate_bmap(ii, blkoff);
715
716 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
717 if (IS_SYNC(inode))
718 nilfs_set_transaction_flag(NILFS_TI_SYNC);
719
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900720 nilfs_mark_inode_dirty(inode);
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900721 nilfs_set_file_dirty(inode, 0);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700722 nilfs_transaction_commit(sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700723 /* May construct a logical segment and may fail in sync mode.
724 But truncate has no return value. */
725}
726
Al Viro6fd1e5c2010-06-07 11:55:00 -0400727static void nilfs_clear_inode(struct inode *inode)
728{
729 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi518d1a62010-08-20 23:40:54 +0900730 struct nilfs_mdt_info *mdi = NILFS_MDT(inode);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400731
732 /*
733 * Free resources allocated in nilfs_read_inode(), here.
734 */
735 BUG_ON(!list_empty(&ii->i_dirty));
736 brelse(ii->i_bh);
737 ii->i_bh = NULL;
738
Ryusuke Konishi518d1a62010-08-20 23:40:54 +0900739 if (mdi && mdi->mi_palloc_cache)
740 nilfs_palloc_destroy_cache(inode);
741
Al Viro6fd1e5c2010-06-07 11:55:00 -0400742 if (test_bit(NILFS_I_BMAP, &ii->i_state))
743 nilfs_bmap_clear(ii->i_bmap);
744
745 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900746
747 if (ii->i_root && inode->i_ino == NILFS_ROOT_INO)
748 nilfs_put_root(ii->i_root);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400749}
750
751void nilfs_evict_inode(struct inode *inode)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700752{
753 struct nilfs_transaction_info ti;
754 struct super_block *sb = inode->i_sb;
755 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishi25b18d32011-02-11 15:23:27 +0900756 int ret;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700757
Ryusuke Konishi4d8d9292010-08-25 17:45:44 +0900758 if (inode->i_nlink || !ii->i_root || unlikely(is_bad_inode(inode))) {
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700759 if (inode->i_data.nrpages)
760 truncate_inode_pages(&inode->i_data, 0);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400761 end_writeback(inode);
762 nilfs_clear_inode(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700763 return;
764 }
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700765 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
766
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700767 if (inode->i_data.nrpages)
768 truncate_inode_pages(&inode->i_data, 0);
769
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900770 /* TODO: some of the following operations may fail. */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700771 nilfs_truncate_bmap(ii, 0);
Jiro SEKIBAabdb3182009-11-27 19:41:14 +0900772 nilfs_mark_inode_dirty(inode);
Al Viro6fd1e5c2010-06-07 11:55:00 -0400773 end_writeback(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900774
Ryusuke Konishi25b18d32011-02-11 15:23:27 +0900775 ret = nilfs_ifile_delete_inode(ii->i_root->ifile, inode->i_ino);
776 if (!ret)
777 atomic_dec(&ii->i_root->inodes_count);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900778
Al Viro6fd1e5c2010-06-07 11:55:00 -0400779 nilfs_clear_inode(inode);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900780
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700781 if (IS_SYNC(inode))
782 nilfs_set_transaction_flag(NILFS_TI_SYNC);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700783 nilfs_transaction_commit(sb);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700784 /* May construct a logical segment and may fail in sync mode.
785 But delete_inode has no return value. */
786}
787
788int nilfs_setattr(struct dentry *dentry, struct iattr *iattr)
789{
790 struct nilfs_transaction_info ti;
791 struct inode *inode = dentry->d_inode;
792 struct super_block *sb = inode->i_sb;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700793 int err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700794
795 err = inode_change_ok(inode, iattr);
796 if (err)
797 return err;
798
799 err = nilfs_transaction_begin(sb, &ti, 0);
800 if (unlikely(err))
801 return err;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700802
Christoph Hellwig10257742010-06-04 11:30:02 +0200803 if ((iattr->ia_valid & ATTR_SIZE) &&
804 iattr->ia_size != i_size_read(inode)) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -0400805 inode_dio_wait(inode);
806
Christoph Hellwig10257742010-06-04 11:30:02 +0200807 err = vmtruncate(inode, iattr->ia_size);
808 if (unlikely(err))
809 goto out_err;
810 }
811
812 setattr_copy(inode, iattr);
813 mark_inode_dirty(inode);
814
815 if (iattr->ia_valid & ATTR_MODE) {
816 err = nilfs_acl_chmod(inode);
817 if (unlikely(err))
818 goto out_err;
819 }
820
821 return nilfs_transaction_commit(sb);
822
823out_err:
824 nilfs_transaction_abort(sb);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700825 return err;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700826}
827
Al Viro10556cb2011-06-20 19:28:19 -0400828int nilfs_permission(struct inode *inode, int mask)
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900829{
Al Viro730e9082011-06-18 20:21:44 -0400830 struct nilfs_root *root = NILFS_I(inode)->i_root;
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900831 if ((mask & MAY_WRITE) && root &&
832 root->cno != NILFS_CPTREE_CURRENT_CNO)
833 return -EROFS; /* snapshot is not writable */
834
Al Viro2830ba72011-06-20 19:16:29 -0400835 return generic_permission(inode, mask);
Ryusuke Konishidc3d3b82010-08-15 23:33:57 +0900836}
837
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900838int nilfs_load_inode_block(struct inode *inode, struct buffer_head **pbh)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700839{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900840 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700841 struct nilfs_inode_info *ii = NILFS_I(inode);
842 int err;
843
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900844 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700845 if (ii->i_bh == NULL) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900846 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900847 err = nilfs_ifile_get_inode_block(ii->i_root->ifile,
848 inode->i_ino, pbh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700849 if (unlikely(err))
850 return err;
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900851 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700852 if (ii->i_bh == NULL)
853 ii->i_bh = *pbh;
854 else {
855 brelse(*pbh);
856 *pbh = ii->i_bh;
857 }
858 } else
859 *pbh = ii->i_bh;
860
861 get_bh(*pbh);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900862 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700863 return 0;
864}
865
866int nilfs_inode_dirty(struct inode *inode)
867{
868 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900869 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700870 int ret = 0;
871
872 if (!list_empty(&ii->i_dirty)) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900873 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700874 ret = test_bit(NILFS_I_DIRTY, &ii->i_state) ||
875 test_bit(NILFS_I_BUSY, &ii->i_state);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900876 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700877 }
878 return ret;
879}
880
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900881int nilfs_set_file_dirty(struct inode *inode, unsigned nr_dirty)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700882{
883 struct nilfs_inode_info *ii = NILFS_I(inode);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900884 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700885
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900886 atomic_add(nr_dirty, &nilfs->ns_ndirtyblks);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700887
Ryusuke Konishi458c5b02009-04-06 19:01:56 -0700888 if (test_and_set_bit(NILFS_I_DIRTY, &ii->i_state))
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700889 return 0;
890
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900891 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700892 if (!test_bit(NILFS_I_QUEUED, &ii->i_state) &&
893 !test_bit(NILFS_I_BUSY, &ii->i_state)) {
894 /* Because this routine may race with nilfs_dispose_list(),
895 we have to check NILFS_I_QUEUED here, too. */
896 if (list_empty(&ii->i_dirty) && igrab(inode) == NULL) {
897 /* This will happen when somebody is freeing
898 this inode. */
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900899 nilfs_warning(inode->i_sb, __func__,
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700900 "cannot get inode (ino=%lu)\n",
901 inode->i_ino);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900902 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700903 return -EINVAL; /* NILFS_I_DIRTY may remain for
904 freeing inode */
905 }
Nicolas Kaisereaae0f32011-03-19 16:45:30 +0100906 list_move_tail(&ii->i_dirty, &nilfs->ns_dirty_files);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700907 set_bit(NILFS_I_QUEUED, &ii->i_state);
908 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900909 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700910 return 0;
911}
912
913int nilfs_mark_inode_dirty(struct inode *inode)
914{
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700915 struct buffer_head *ibh;
916 int err;
917
Ryusuke Konishibcbc8c62010-12-27 00:05:49 +0900918 err = nilfs_load_inode_block(inode, &ibh);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700919 if (unlikely(err)) {
920 nilfs_warning(inode->i_sb, __func__,
921 "failed to reget inode block.\n");
922 return err;
923 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700924 nilfs_update_inode(inode, ibh);
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900925 mark_buffer_dirty(ibh);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900926 nilfs_mdt_mark_dirty(NILFS_I(inode)->i_root->ifile);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700927 brelse(ibh);
928 return 0;
929}
930
931/**
932 * nilfs_dirty_inode - reflect changes on given inode to an inode block.
933 * @inode: inode of the file to be registered.
934 *
935 * nilfs_dirty_inode() loads a inode block containing the specified
936 * @inode and copies data from a nilfs_inode to a corresponding inode
937 * entry in the inode block. This operation is excluded from the segment
938 * construction. This function can be called both as a single operation
939 * and as a part of indivisible file operations.
940 */
Christoph Hellwigaa385722011-05-27 06:53:02 -0400941void nilfs_dirty_inode(struct inode *inode, int flags)
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700942{
943 struct nilfs_transaction_info ti;
Ryusuke Konishi7d6cd922010-08-21 00:30:39 +0900944 struct nilfs_mdt_info *mdi = NILFS_MDT(inode);
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700945
946 if (is_bad_inode(inode)) {
947 nilfs_warning(inode->i_sb, __func__,
948 "tried to mark bad_inode dirty. ignored.\n");
949 dump_stack();
950 return;
951 }
Ryusuke Konishi7d6cd922010-08-21 00:30:39 +0900952 if (mdi) {
953 nilfs_mdt_mark_dirty(inode);
954 return;
955 }
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700956 nilfs_transaction_begin(inode->i_sb, &ti, 0);
Ryusuke Konishi458c5b02009-04-06 19:01:56 -0700957 nilfs_mark_inode_dirty(inode);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700958 nilfs_transaction_commit(inode->i_sb); /* never fails */
Ryusuke Konishi05fe58f2009-04-06 19:01:32 -0700959}
Ryusuke Konishi622daaf2010-12-26 16:38:43 +0900960
961int nilfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
962 __u64 start, __u64 len)
963{
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +0900964 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi622daaf2010-12-26 16:38:43 +0900965 __u64 logical = 0, phys = 0, size = 0;
966 __u32 flags = 0;
967 loff_t isize;
968 sector_t blkoff, end_blkoff;
969 sector_t delalloc_blkoff;
970 unsigned long delalloc_blklen;
971 unsigned int blkbits = inode->i_blkbits;
972 int ret, n;
973
974 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
975 if (ret)
976 return ret;
977
978 mutex_lock(&inode->i_mutex);
979
980 isize = i_size_read(inode);
981
982 blkoff = start >> blkbits;
983 end_blkoff = (start + len - 1) >> blkbits;
984
985 delalloc_blklen = nilfs_find_uncommitted_extent(inode, blkoff,
986 &delalloc_blkoff);
987
988 do {
989 __u64 blkphy;
990 unsigned int maxblocks;
991
992 if (delalloc_blklen && blkoff == delalloc_blkoff) {
993 if (size) {
994 /* End of the current extent */
995 ret = fiemap_fill_next_extent(
996 fieinfo, logical, phys, size, flags);
997 if (ret)
998 break;
999 }
1000 if (blkoff > end_blkoff)
1001 break;
1002
1003 flags = FIEMAP_EXTENT_MERGED | FIEMAP_EXTENT_DELALLOC;
1004 logical = blkoff << blkbits;
1005 phys = 0;
1006 size = delalloc_blklen << blkbits;
1007
1008 blkoff = delalloc_blkoff + delalloc_blklen;
1009 delalloc_blklen = nilfs_find_uncommitted_extent(
1010 inode, blkoff, &delalloc_blkoff);
1011 continue;
1012 }
1013
1014 /*
1015 * Limit the number of blocks that we look up so as
1016 * not to get into the next delayed allocation extent.
1017 */
1018 maxblocks = INT_MAX;
1019 if (delalloc_blklen)
1020 maxblocks = min_t(sector_t, delalloc_blkoff - blkoff,
1021 maxblocks);
1022 blkphy = 0;
1023
1024 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1025 n = nilfs_bmap_lookup_contig(
1026 NILFS_I(inode)->i_bmap, blkoff, &blkphy, maxblocks);
1027 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
1028
1029 if (n < 0) {
1030 int past_eof;
1031
1032 if (unlikely(n != -ENOENT))
1033 break; /* error */
1034
1035 /* HOLE */
1036 blkoff++;
1037 past_eof = ((blkoff << blkbits) >= isize);
1038
1039 if (size) {
1040 /* End of the current extent */
1041
1042 if (past_eof)
1043 flags |= FIEMAP_EXTENT_LAST;
1044
1045 ret = fiemap_fill_next_extent(
1046 fieinfo, logical, phys, size, flags);
1047 if (ret)
1048 break;
1049 size = 0;
1050 }
1051 if (blkoff > end_blkoff || past_eof)
1052 break;
1053 } else {
1054 if (size) {
1055 if (phys && blkphy << blkbits == phys + size) {
1056 /* The current extent goes on */
1057 size += n << blkbits;
1058 } else {
1059 /* Terminate the current extent */
1060 ret = fiemap_fill_next_extent(
1061 fieinfo, logical, phys, size,
1062 flags);
1063 if (ret || blkoff > end_blkoff)
1064 break;
1065
1066 /* Start another extent */
1067 flags = FIEMAP_EXTENT_MERGED;
1068 logical = blkoff << blkbits;
1069 phys = blkphy << blkbits;
1070 size = n << blkbits;
1071 }
1072 } else {
1073 /* Start a new extent */
1074 flags = FIEMAP_EXTENT_MERGED;
1075 logical = blkoff << blkbits;
1076 phys = blkphy << blkbits;
1077 size = n << blkbits;
1078 }
1079 blkoff += n;
1080 }
1081 cond_resched();
1082 } while (true);
1083
1084 /* If ret is 1 then we just hit the end of the extent array */
1085 if (ret == 1)
1086 ret = 0;
1087
1088 mutex_unlock(&inode->i_mutex);
1089 return ret;
1090}