blob: 740cba79c2b928b44f9e0d0a77ff78f475f3fe49 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) 1997 Linus Torvalds
Christoph Hellwig4b4563d2011-05-27 09:28:01 -04003 * (C) 1999 Andrea Arcangeli <andrea@suse.de> (dynamic inode allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
Al Viroe59cc472011-12-07 13:17:19 -05005#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/fs.h>
7#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/hash.h>
10#include <linux/swap.h>
11#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/cdev.h>
13#include <linux/bootmem.h>
Eric Paris3be25f42009-05-21 17:01:26 -040014#include <linux/fsnotify.h>
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080015#include <linux/mount.h>
Al Virof19d4a82009-06-08 19:50:45 -040016#include <linux/posix_acl.h>
Heiko Carstens9ce6e0b2011-05-22 18:54:21 +020017#include <linux/prefetch.h>
Christoph Hellwig4b4563d2011-05-27 09:28:01 -040018#include <linux/buffer_head.h> /* for inode_has_buffers */
Miklos Szeredi7ada4db2011-11-21 12:11:32 +010019#include <linux/ratelimit.h>
Dave Chinnerbc3b14c2013-08-28 10:17:58 +100020#include <linux/list_lru.h>
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050021#include <trace/events/writeback.h>
Dave Chinnera66979a2011-03-22 22:23:41 +110022#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/*
Christoph Hellwig4b4563d2011-05-27 09:28:01 -040025 * Inode locking rules:
Dave Chinner250df6e2011-03-22 22:23:36 +110026 *
27 * inode->i_lock protects:
28 * inode->i_state, inode->i_hash, __iget()
Dave Chinnerbc3b14c2013-08-28 10:17:58 +100029 * Inode LRU list locks protect:
Dave Chinner98b745c2011-07-08 14:14:39 +100030 * inode->i_sb->s_inode_lru, inode->i_lru
Dave Chinner55fa6092011-03-22 22:23:40 +110031 * inode_sb_list_lock protects:
32 * sb->s_inodes, inode->i_sb_list
Christoph Hellwigf758eea2011-04-21 18:19:44 -060033 * bdi->wb.list_lock protects:
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050034 * bdi->wb.b_{dirty,io,more_io,dirty_time}, inode->i_wb_list
Dave Chinner67a23c42011-03-22 22:23:42 +110035 * inode_hash_lock protects:
36 * inode_hashtable, inode->i_hash
Dave Chinner250df6e2011-03-22 22:23:36 +110037 *
38 * Lock ordering:
Dave Chinner55fa6092011-03-22 22:23:40 +110039 *
40 * inode_sb_list_lock
41 * inode->i_lock
Dave Chinnerbc3b14c2013-08-28 10:17:58 +100042 * Inode LRU list locks
Dave Chinnera66979a2011-03-22 22:23:41 +110043 *
Christoph Hellwigf758eea2011-04-21 18:19:44 -060044 * bdi->wb.list_lock
Dave Chinnera66979a2011-03-22 22:23:41 +110045 * inode->i_lock
Dave Chinner67a23c42011-03-22 22:23:42 +110046 *
47 * inode_hash_lock
48 * inode_sb_list_lock
49 * inode->i_lock
50 *
51 * iunique_lock
52 * inode_hash_lock
Dave Chinner250df6e2011-03-22 22:23:36 +110053 */
54
Eric Dumazetfa3536c2006-03-26 01:37:24 -080055static unsigned int i_hash_mask __read_mostly;
56static unsigned int i_hash_shift __read_mostly;
Dave Chinner67a23c42011-03-22 22:23:42 +110057static struct hlist_head *inode_hashtable __read_mostly;
58static __cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Dave Chinner55fa6092011-03-22 22:23:40 +110060__cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_sb_list_lock);
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
Jens Axboe7dcda1c2011-04-05 23:51:48 +020063 * Empty aops. Can be used for the cases where the user does not
64 * define any of the address_space operations.
65 */
66const struct address_space_operations empty_aops = {
67};
68EXPORT_SYMBOL(empty_aops);
69
70/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * Statistics gathering..
72 */
73struct inodes_stat_t inodes_stat;
74
Glauber Costa3942c072013-08-28 10:17:53 +100075static DEFINE_PER_CPU(unsigned long, nr_inodes);
76static DEFINE_PER_CPU(unsigned long, nr_unused);
Dave Chinnercffbc8a2010-10-23 05:03:02 -040077
Manish Katiyar6b3304b2009-03-31 19:35:54 +053078static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Glauber Costa3942c072013-08-28 10:17:53 +100080static long get_nr_inodes(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -040081{
Nick Piggin3e880fb2011-01-07 17:49:19 +110082 int i;
Glauber Costa3942c072013-08-28 10:17:53 +100083 long sum = 0;
Nick Piggin3e880fb2011-01-07 17:49:19 +110084 for_each_possible_cpu(i)
85 sum += per_cpu(nr_inodes, i);
86 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -040087}
88
Glauber Costa3942c072013-08-28 10:17:53 +100089static inline long get_nr_inodes_unused(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -040090{
Dave Chinnerfcb94f72011-07-08 14:14:38 +100091 int i;
Glauber Costa3942c072013-08-28 10:17:53 +100092 long sum = 0;
Dave Chinnerfcb94f72011-07-08 14:14:38 +100093 for_each_possible_cpu(i)
94 sum += per_cpu(nr_unused, i);
95 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -040096}
97
Glauber Costa3942c072013-08-28 10:17:53 +100098long get_nr_dirty_inodes(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -040099{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100100 /* not actually dirty inodes, but a wild approximation */
Glauber Costa3942c072013-08-28 10:17:53 +1000101 long nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400102 return nr_dirty > 0 ? nr_dirty : 0;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400103}
104
105/*
106 * Handle nr_inode sysctl
107 */
108#ifdef CONFIG_SYSCTL
Joe Perches1f7e0612014-06-06 14:38:05 -0700109int proc_nr_inodes(struct ctl_table *table, int write,
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400110 void __user *buffer, size_t *lenp, loff_t *ppos)
111{
112 inodes_stat.nr_inodes = get_nr_inodes();
Dave Chinnerfcb94f72011-07-08 14:14:38 +1000113 inodes_stat.nr_unused = get_nr_inodes_unused();
Glauber Costa3942c072013-08-28 10:17:53 +1000114 return proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400115}
116#endif
117
Al Virobd9b51e2014-11-18 23:38:21 -0500118static int no_open(struct inode *inode, struct file *file)
119{
120 return -ENXIO;
121}
122
David Chinner2cb15992008-10-30 17:32:23 +1100123/**
124 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800125 * @sb: superblock inode belongs to
126 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100127 *
128 * These are initializations that need to be done on every inode
129 * allocation as the fields are not initialised by slab allocation.
130 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300131int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700133 static const struct inode_operations empty_iops;
Al Virobd9b51e2014-11-18 23:38:21 -0500134 static const struct file_operations no_open_fops = {.open = no_open};
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530135 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100136
137 inode->i_sb = sb;
138 inode->i_blkbits = sb->s_blocksize_bits;
139 inode->i_flags = 0;
140 atomic_set(&inode->i_count, 1);
141 inode->i_op = &empty_iops;
Al Virobd9b51e2014-11-18 23:38:21 -0500142 inode->i_fop = &no_open_fops;
Miklos Szeredia78ef702011-10-28 14:13:30 +0200143 inode->__i_nlink = 1;
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700144 inode->i_opflags = 0;
Eric W. Biederman92361632012-02-08 07:07:50 -0800145 i_uid_write(inode, 0);
146 i_gid_write(inode, 0);
David Chinner2cb15992008-10-30 17:32:23 +1100147 atomic_set(&inode->i_writecount, 0);
148 inode->i_size = 0;
149 inode->i_blocks = 0;
150 inode->i_bytes = 0;
151 inode->i_generation = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100152 inode->i_pipe = NULL;
153 inode->i_bdev = NULL;
154 inode->i_cdev = NULL;
155 inode->i_rdev = 0;
156 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500157
158 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300159 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100160 spin_lock_init(&inode->i_lock);
161 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
162
163 mutex_init(&inode->i_mutex);
164 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
165
Christoph Hellwigbd5fe6c2011-06-24 14:29:43 -0400166 atomic_set(&inode->i_dio_count, 0);
David Chinner2cb15992008-10-30 17:32:23 +1100167
168 mapping->a_ops = &empty_aops;
169 mapping->host = inode;
170 mapping->flags = 0;
David Herrmann4bb5f5d2014-08-08 14:25:25 -0700171 atomic_set(&mapping->i_mmap_writable, 0);
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800172 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
Rafael Aquini252aa6f2012-12-11 16:02:35 -0800173 mapping->private_data = NULL;
David Chinner2cb15992008-10-30 17:32:23 +1100174 mapping->backing_dev_info = &default_backing_dev_info;
175 mapping->writeback_index = 0;
176
177 /*
178 * If the block_device provides a backing_dev_info for client
179 * inodes then use that. Otherwise the inode share the bdev's
180 * backing_dev_info.
181 */
182 if (sb->s_bdev) {
183 struct backing_dev_info *bdi;
184
Jens Axboe2c96ce92009-09-15 09:43:56 +0200185 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100186 mapping->backing_dev_info = bdi;
187 }
188 inode->i_private = NULL;
189 inode->i_mapping = mapping;
Al Virob3d9b7a2012-06-09 13:51:19 -0400190 INIT_HLIST_HEAD(&inode->i_dentry); /* buggered by rcu freeing */
Al Virof19d4a82009-06-08 19:50:45 -0400191#ifdef CONFIG_FS_POSIX_ACL
192 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
193#endif
David Chinner2cb15992008-10-30 17:32:23 +1100194
Eric Paris3be25f42009-05-21 17:01:26 -0400195#ifdef CONFIG_FSNOTIFY
196 inode->i_fsnotify_mask = 0;
197#endif
198
Nick Piggin3e880fb2011-01-07 17:49:19 +1100199 this_cpu_inc(nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400200
Christoph Hellwig54e34622009-08-07 14:38:25 -0300201 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300202out:
203 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100204}
205EXPORT_SYMBOL(inode_init_always);
206
207static struct inode *alloc_inode(struct super_block *sb)
208{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct inode *inode;
210
211 if (sb->s_op->alloc_inode)
212 inode = sb->s_op->alloc_inode(sb);
213 else
David Chinner2cb15992008-10-30 17:32:23 +1100214 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Christoph Hellwig54e34622009-08-07 14:38:25 -0300216 if (!inode)
217 return NULL;
218
219 if (unlikely(inode_init_always(sb, inode))) {
220 if (inode->i_sb->s_op->destroy_inode)
221 inode->i_sb->s_op->destroy_inode(inode);
222 else
223 kmem_cache_free(inode_cachep, inode);
224 return NULL;
225 }
226
227 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Nick Pigginff0c7d12011-01-07 17:49:50 +1100230void free_inode_nonrcu(struct inode *inode)
231{
232 kmem_cache_free(inode_cachep, inode);
233}
234EXPORT_SYMBOL(free_inode_nonrcu);
235
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300236void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200238 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400240 fsnotify_inode_delete(inode);
Miklos Szeredi7ada4db2011-11-21 12:11:32 +0100241 if (!inode->i_nlink) {
242 WARN_ON(atomic_long_read(&inode->i_sb->s_remove_count) == 0);
243 atomic_long_dec(&inode->i_sb->s_remove_count);
244 }
245
Al Virof19d4a82009-06-08 19:50:45 -0400246#ifdef CONFIG_FS_POSIX_ACL
247 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
248 posix_acl_release(inode->i_acl);
249 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
250 posix_acl_release(inode->i_default_acl);
251#endif
Nick Piggin3e880fb2011-01-07 17:49:19 +1100252 this_cpu_dec(nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300253}
254EXPORT_SYMBOL(__destroy_inode);
255
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100256static void i_callback(struct rcu_head *head)
257{
258 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100259 kmem_cache_free(inode_cachep, inode);
260}
261
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200262static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300263{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100264 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300265 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (inode->i_sb->s_op->destroy_inode)
267 inode->i_sb->s_op->destroy_inode(inode);
268 else
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100269 call_rcu(&inode->i_rcu, i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Miklos Szeredi7ada4db2011-11-21 12:11:32 +0100272/**
273 * drop_nlink - directly drop an inode's link count
274 * @inode: inode
275 *
276 * This is a low-level filesystem helper to replace any
277 * direct filesystem manipulation of i_nlink. In cases
278 * where we are attempting to track writes to the
279 * filesystem, a decrement to zero means an imminent
280 * write when the file is truncated and actually unlinked
281 * on the filesystem.
282 */
283void drop_nlink(struct inode *inode)
284{
285 WARN_ON(inode->i_nlink == 0);
286 inode->__i_nlink--;
287 if (!inode->i_nlink)
288 atomic_long_inc(&inode->i_sb->s_remove_count);
289}
290EXPORT_SYMBOL(drop_nlink);
291
292/**
293 * clear_nlink - directly zero an inode's link count
294 * @inode: inode
295 *
296 * This is a low-level filesystem helper to replace any
297 * direct filesystem manipulation of i_nlink. See
298 * drop_nlink() for why we care about i_nlink hitting zero.
299 */
300void clear_nlink(struct inode *inode)
301{
302 if (inode->i_nlink) {
303 inode->__i_nlink = 0;
304 atomic_long_inc(&inode->i_sb->s_remove_count);
305 }
306}
307EXPORT_SYMBOL(clear_nlink);
308
309/**
310 * set_nlink - directly set an inode's link count
311 * @inode: inode
312 * @nlink: new nlink (should be non-zero)
313 *
314 * This is a low-level filesystem helper to replace any
315 * direct filesystem manipulation of i_nlink.
316 */
317void set_nlink(struct inode *inode, unsigned int nlink)
318{
319 if (!nlink) {
Miklos Szeredi7ada4db2011-11-21 12:11:32 +0100320 clear_nlink(inode);
321 } else {
322 /* Yes, some filesystems do change nlink from zero to one */
323 if (inode->i_nlink == 0)
324 atomic_long_dec(&inode->i_sb->s_remove_count);
325
326 inode->__i_nlink = nlink;
327 }
328}
329EXPORT_SYMBOL(set_nlink);
330
331/**
332 * inc_nlink - directly increment an inode's link count
333 * @inode: inode
334 *
335 * This is a low-level filesystem helper to replace any
336 * direct filesystem manipulation of i_nlink. Currently,
337 * it is only here for parity with dec_nlink().
338 */
339void inc_nlink(struct inode *inode)
340{
Al Virof4e0c302013-06-11 08:34:36 +0400341 if (unlikely(inode->i_nlink == 0)) {
342 WARN_ON(!(inode->i_state & I_LINKABLE));
Miklos Szeredi7ada4db2011-11-21 12:11:32 +0100343 atomic_long_dec(&inode->i_sb->s_remove_count);
Al Virof4e0c302013-06-11 08:34:36 +0400344 }
Miklos Szeredi7ada4db2011-11-21 12:11:32 +0100345
346 inode->__i_nlink++;
347}
348EXPORT_SYMBOL(inc_nlink);
349
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100350void address_space_init_once(struct address_space *mapping)
351{
352 memset(mapping, 0, sizeof(*mapping));
353 INIT_RADIX_TREE(&mapping->page_tree, GFP_ATOMIC);
354 spin_lock_init(&mapping->tree_lock);
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800355 init_rwsem(&mapping->i_mmap_rwsem);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100356 INIT_LIST_HEAD(&mapping->private_list);
357 spin_lock_init(&mapping->private_lock);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700358 mapping->i_mmap = RB_ROOT;
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100359 INIT_LIST_HEAD(&mapping->i_mmap_nonlinear);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100360}
361EXPORT_SYMBOL(address_space_init_once);
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363/*
364 * These are initializations that only need to be done
365 * once, because the fields are idempotent across use
366 * of the inode, so let the slab aware of that.
367 */
368void inode_init_once(struct inode *inode)
369{
370 memset(inode, 0, sizeof(*inode));
371 INIT_HLIST_NODE(&inode->i_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100373 INIT_LIST_HEAD(&inode->i_wb_list);
374 INIT_LIST_HEAD(&inode->i_lru);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100375 address_space_init_once(&inode->i_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400377#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500378 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400379#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381EXPORT_SYMBOL(inode_init_once);
382
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700383static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530385 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Christoph Lametera35afb82007-05-16 22:10:57 -0700387 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390/*
Dave Chinner250df6e2011-03-22 22:23:36 +1100391 * inode->i_lock must be held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530393void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Nick Piggin9e38d862010-10-23 06:55:17 -0400395 atomic_inc(&inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Al Viro7de9c6ee2010-10-23 11:11:40 -0400398/*
399 * get additional reference to inode; caller must already hold one.
400 */
401void ihold(struct inode *inode)
402{
403 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
404}
405EXPORT_SYMBOL(ihold);
406
Nick Piggin9e38d862010-10-23 06:55:17 -0400407static void inode_lru_list_add(struct inode *inode)
408{
Dave Chinnerbc3b14c2013-08-28 10:17:58 +1000409 if (list_lru_add(&inode->i_sb->s_inode_lru, &inode->i_lru))
Dave Chinnerfcb94f72011-07-08 14:14:38 +1000410 this_cpu_inc(nr_unused);
Nick Piggin9e38d862010-10-23 06:55:17 -0400411}
412
Jan Kara4eff96d2012-11-26 16:29:51 -0800413/*
414 * Add inode to LRU if needed (inode is unused and clean).
415 *
416 * Needs inode->i_lock held.
417 */
418void inode_add_lru(struct inode *inode)
419{
Theodore Ts'o0ae45f62015-02-02 00:37:00 -0500420 if (!(inode->i_state & (I_DIRTY_ALL | I_SYNC |
421 I_FREEING | I_WILL_FREE)) &&
Jan Kara4eff96d2012-11-26 16:29:51 -0800422 !atomic_read(&inode->i_count) && inode->i_sb->s_flags & MS_ACTIVE)
423 inode_lru_list_add(inode);
424}
425
426
Nick Piggin9e38d862010-10-23 06:55:17 -0400427static void inode_lru_list_del(struct inode *inode)
428{
Dave Chinnerbc3b14c2013-08-28 10:17:58 +1000429
430 if (list_lru_del(&inode->i_sb->s_inode_lru, &inode->i_lru))
Dave Chinnerfcb94f72011-07-08 14:14:38 +1000431 this_cpu_dec(nr_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Christoph Hellwig646ec462010-10-23 07:15:32 -0400434/**
435 * inode_sb_list_add - add inode to the superblock list of inodes
436 * @inode: inode to add
437 */
438void inode_sb_list_add(struct inode *inode)
439{
Dave Chinner55fa6092011-03-22 22:23:40 +1100440 spin_lock(&inode_sb_list_lock);
441 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
442 spin_unlock(&inode_sb_list_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400443}
444EXPORT_SYMBOL_GPL(inode_sb_list_add);
445
Dave Chinner55fa6092011-03-22 22:23:40 +1100446static inline void inode_sb_list_del(struct inode *inode)
Christoph Hellwig646ec462010-10-23 07:15:32 -0400447{
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200448 if (!list_empty(&inode->i_sb_list)) {
449 spin_lock(&inode_sb_list_lock);
450 list_del_init(&inode->i_sb_list);
451 spin_unlock(&inode_sb_list_lock);
452 }
Christoph Hellwig646ec462010-10-23 07:15:32 -0400453}
454
Dave Chinner4c51acb2010-10-23 06:58:09 -0400455static unsigned long hash(struct super_block *sb, unsigned long hashval)
456{
457 unsigned long tmp;
458
459 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
460 L1_CACHE_BYTES;
Christoph Hellwig4b4563d2011-05-27 09:28:01 -0400461 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> i_hash_shift);
462 return tmp & i_hash_mask;
Dave Chinner4c51acb2010-10-23 06:58:09 -0400463}
464
465/**
466 * __insert_inode_hash - hash an inode
467 * @inode: unhashed inode
468 * @hashval: unsigned long value used to locate this object in the
469 * inode_hashtable.
470 *
471 * Add an inode to the inode hash for this superblock.
472 */
473void __insert_inode_hash(struct inode *inode, unsigned long hashval)
474{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400475 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
476
Dave Chinner67a23c42011-03-22 22:23:42 +1100477 spin_lock(&inode_hash_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100478 spin_lock(&inode->i_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400479 hlist_add_head(&inode->i_hash, b);
Dave Chinner250df6e2011-03-22 22:23:36 +1100480 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100481 spin_unlock(&inode_hash_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400482}
483EXPORT_SYMBOL(__insert_inode_hash);
484
485/**
Eric Dumazetf2ee7ab2011-07-28 06:41:09 +0200486 * __remove_inode_hash - remove an inode from the hash
Dave Chinner4c51acb2010-10-23 06:58:09 -0400487 * @inode: inode to unhash
488 *
489 * Remove an inode from the superblock.
490 */
Eric Dumazetf2ee7ab2011-07-28 06:41:09 +0200491void __remove_inode_hash(struct inode *inode)
Dave Chinner4c51acb2010-10-23 06:58:09 -0400492{
Dave Chinner67a23c42011-03-22 22:23:42 +1100493 spin_lock(&inode_hash_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100494 spin_lock(&inode->i_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400495 hlist_del_init(&inode->i_hash);
Dave Chinner250df6e2011-03-22 22:23:36 +1100496 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100497 spin_unlock(&inode_hash_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400498}
Eric Dumazetf2ee7ab2011-07-28 06:41:09 +0200499EXPORT_SYMBOL(__remove_inode_hash);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400500
Jan Karadbd57682012-05-03 14:48:02 +0200501void clear_inode(struct inode *inode)
Al Virob0683aa2010-06-04 20:55:25 -0400502{
503 might_sleep();
Jan Kara08142572011-06-27 16:18:10 -0700504 /*
505 * We have to cycle tree_lock here because reclaim can be still in the
506 * process of removing the last page (in __delete_from_page_cache())
507 * and we must not free mapping under it.
508 */
509 spin_lock_irq(&inode->i_data.tree_lock);
Al Virob0683aa2010-06-04 20:55:25 -0400510 BUG_ON(inode->i_data.nrpages);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700511 BUG_ON(inode->i_data.nrshadows);
Jan Kara08142572011-06-27 16:18:10 -0700512 spin_unlock_irq(&inode->i_data.tree_lock);
Al Virob0683aa2010-06-04 20:55:25 -0400513 BUG_ON(!list_empty(&inode->i_data.private_list));
514 BUG_ON(!(inode->i_state & I_FREEING));
515 BUG_ON(inode->i_state & I_CLEAR);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100516 /* don't need i_lock here, no concurrent mods to i_state */
Al Virob0683aa2010-06-04 20:55:25 -0400517 inode->i_state = I_FREEING | I_CLEAR;
518}
Jan Karadbd57682012-05-03 14:48:02 +0200519EXPORT_SYMBOL(clear_inode);
Al Virob0683aa2010-06-04 20:55:25 -0400520
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100521/*
522 * Free the inode passed in, removing it from the lists it is still connected
523 * to. We remove any pages still attached to the inode and wait for any IO that
524 * is still in progress before finally destroying the inode.
525 *
526 * An inode must already be marked I_FREEING so that we avoid the inode being
527 * moved back onto lists if we race with other code that manipulates the lists
528 * (e.g. writeback_single_inode). The caller is responsible for setting this.
529 *
530 * An inode must already be removed from the LRU list before being evicted from
531 * the cache. This should occur atomically with setting the I_FREEING state
532 * flag, so no inodes here should ever be on the LRU when being evicted.
533 */
Al Viro644da592010-06-07 13:21:05 -0400534static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400535{
536 const struct super_operations *op = inode->i_sb->s_op;
537
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100538 BUG_ON(!(inode->i_state & I_FREEING));
539 BUG_ON(!list_empty(&inode->i_lru));
540
Eric Dumazetb12362b2011-07-28 06:11:47 +0200541 if (!list_empty(&inode->i_wb_list))
542 inode_wb_list_del(inode);
543
Dave Chinner55fa6092011-03-22 22:23:40 +1100544 inode_sb_list_del(inode);
545
Jan Kara169ebd92012-05-03 14:48:03 +0200546 /*
547 * Wait for flusher thread to be done with the inode so that filesystem
548 * does not start destroying it while writeback is still running. Since
549 * the inode has I_FREEING set, flusher thread won't start new work on
550 * the inode. We just have to wait for running writeback to finish.
551 */
552 inode_wait_for_writeback(inode);
Jan Kara7994e6f2012-05-03 14:48:01 +0200553
Al Virobe7ce412010-06-04 19:40:39 -0400554 if (op->evict_inode) {
555 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400556 } else {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700557 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200558 clear_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400559 }
Al Viro661074e2010-06-04 20:19:55 -0400560 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
561 bd_forget(inode);
562 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
563 cd_forget(inode);
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100564
565 remove_inode_hash(inode);
566
567 spin_lock(&inode->i_lock);
568 wake_up_bit(&inode->i_state, __I_NEW);
569 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
570 spin_unlock(&inode->i_lock);
571
572 destroy_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575/*
576 * dispose_list - dispose of the contents of a local list
577 * @head: the head of the list to free
578 *
579 * Dispose-list gets a local list with local inodes in it, so it doesn't
580 * need to worry about list corruption and SMP locks.
581 */
582static void dispose_list(struct list_head *head)
583{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 while (!list_empty(head)) {
585 struct inode *inode;
586
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100587 inode = list_first_entry(head, struct inode, i_lru);
588 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Al Viro644da592010-06-07 13:21:05 -0400590 evict(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/**
Al Viro63997e92010-10-25 20:49:35 -0400595 * evict_inodes - evict all evictable inodes for a superblock
596 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 *
Al Viro63997e92010-10-25 20:49:35 -0400598 * Make sure that no inodes with zero refcount are retained. This is
599 * called by superblock shutdown after having MS_ACTIVE flag removed,
600 * so any inode reaching zero refcount during or after that call will
601 * be immediately evicted.
602 */
603void evict_inodes(struct super_block *sb)
604{
605 struct inode *inode, *next;
606 LIST_HEAD(dispose);
607
Dave Chinner55fa6092011-03-22 22:23:40 +1100608 spin_lock(&inode_sb_list_lock);
Al Viro63997e92010-10-25 20:49:35 -0400609 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
610 if (atomic_read(&inode->i_count))
611 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100612
613 spin_lock(&inode->i_lock);
614 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
615 spin_unlock(&inode->i_lock);
Al Viro63997e92010-10-25 20:49:35 -0400616 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100617 }
Al Viro63997e92010-10-25 20:49:35 -0400618
619 inode->i_state |= I_FREEING;
Dave Chinner02afc412011-03-22 22:23:38 +1100620 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100621 spin_unlock(&inode->i_lock);
Dave Chinner02afc412011-03-22 22:23:38 +1100622 list_add(&inode->i_lru, &dispose);
Al Viro63997e92010-10-25 20:49:35 -0400623 }
Dave Chinner55fa6092011-03-22 22:23:40 +1100624 spin_unlock(&inode_sb_list_lock);
Al Viro63997e92010-10-25 20:49:35 -0400625
626 dispose_list(&dispose);
Al Viro63997e92010-10-25 20:49:35 -0400627}
628
629/**
Christoph Hellwiga0318782010-10-24 19:40:33 +0200630 * invalidate_inodes - attempt to free all inodes on a superblock
631 * @sb: superblock to operate on
NeilBrown93b270f2011-02-24 17:25:47 +1100632 * @kill_dirty: flag to guide handling of dirty inodes
Christoph Hellwiga0318782010-10-24 19:40:33 +0200633 *
634 * Attempts to free all inodes for a given superblock. If there were any
635 * busy inodes return a non-zero value, else zero.
NeilBrown93b270f2011-02-24 17:25:47 +1100636 * If @kill_dirty is set, discard dirty inodes too, otherwise treat
637 * them as busy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
NeilBrown93b270f2011-02-24 17:25:47 +1100639int invalidate_inodes(struct super_block *sb, bool kill_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400641 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200642 struct inode *inode, *next;
643 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Dave Chinner55fa6092011-03-22 22:23:40 +1100645 spin_lock(&inode_sb_list_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200646 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100647 spin_lock(&inode->i_lock);
648 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
649 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100651 }
Theodore Ts'o0ae45f62015-02-02 00:37:00 -0500652 if (inode->i_state & I_DIRTY_ALL && !kill_dirty) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100653 spin_unlock(&inode->i_lock);
NeilBrown93b270f2011-02-24 17:25:47 +1100654 busy = 1;
655 continue;
656 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200657 if (atomic_read(&inode->i_count)) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100658 spin_unlock(&inode->i_lock);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200659 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 continue;
661 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200662
Christoph Hellwig99a38912010-10-23 19:07:20 +0200663 inode->i_state |= I_FREEING;
Dave Chinner02afc412011-03-22 22:23:38 +1100664 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100665 spin_unlock(&inode->i_lock);
Dave Chinner02afc412011-03-22 22:23:38 +1100666 list_add(&inode->i_lru, &dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
Dave Chinner55fa6092011-03-22 22:23:40 +1100668 spin_unlock(&inode_sb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Christoph Hellwiga0318782010-10-24 19:40:33 +0200670 dispose_list(&dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 return busy;
673}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/*
Dave Chinnerbc3b14c2013-08-28 10:17:58 +1000676 * Isolate the inode from the LRU in preparation for freeing it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
678 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400679 * pagecache removed. If the inode has metadata buffers attached to
680 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400682 * If the inode has the I_REFERENCED flag set, then it means that it has been
683 * used recently - the flag is set in iput_final(). When we encounter such an
684 * inode, clear the flag and move it to the back of the LRU so it gets another
685 * pass through the LRU before it gets reclaimed. This is necessary because of
686 * the fact we are doing lazy LRU updates to minimise lock contention so the
687 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
688 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 */
Dave Chinnerbc3b14c2013-08-28 10:17:58 +1000690static enum lru_status
691inode_lru_isolate(struct list_head *item, spinlock_t *lru_lock, void *arg)
692{
693 struct list_head *freeable = arg;
694 struct inode *inode = container_of(item, struct inode, i_lru);
695
696 /*
697 * we are inverting the lru lock/inode->i_lock here, so use a trylock.
698 * If we fail to get the lock, just skip it.
699 */
700 if (!spin_trylock(&inode->i_lock))
701 return LRU_SKIP;
702
703 /*
704 * Referenced or dirty inodes are still in use. Give them another pass
705 * through the LRU as we canot reclaim them now.
706 */
707 if (atomic_read(&inode->i_count) ||
708 (inode->i_state & ~I_REFERENCED)) {
709 list_del_init(&inode->i_lru);
710 spin_unlock(&inode->i_lock);
711 this_cpu_dec(nr_unused);
712 return LRU_REMOVED;
713 }
714
715 /* recently referenced inodes get one more pass */
716 if (inode->i_state & I_REFERENCED) {
717 inode->i_state &= ~I_REFERENCED;
718 spin_unlock(&inode->i_lock);
719 return LRU_ROTATE;
720 }
721
722 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
723 __iget(inode);
724 spin_unlock(&inode->i_lock);
725 spin_unlock(lru_lock);
726 if (remove_inode_buffers(inode)) {
727 unsigned long reap;
728 reap = invalidate_mapping_pages(&inode->i_data, 0, -1);
729 if (current_is_kswapd())
730 __count_vm_events(KSWAPD_INODESTEAL, reap);
731 else
732 __count_vm_events(PGINODESTEAL, reap);
733 if (current->reclaim_state)
734 current->reclaim_state->reclaimed_slab += reap;
735 }
736 iput(inode);
737 spin_lock(lru_lock);
738 return LRU_RETRY;
739 }
740
741 WARN_ON(inode->i_state & I_NEW);
742 inode->i_state |= I_FREEING;
Glauber Costad38fa692013-08-28 10:17:59 +1000743 list_move(&inode->i_lru, freeable);
Dave Chinnerbc3b14c2013-08-28 10:17:58 +1000744 spin_unlock(&inode->i_lock);
745
Dave Chinnerbc3b14c2013-08-28 10:17:58 +1000746 this_cpu_dec(nr_unused);
747 return LRU_REMOVED;
748}
749
750/*
751 * Walk the superblock inode LRU for freeable inodes and attempt to free them.
752 * This is called from the superblock shrinker function with a number of inodes
753 * to trim from the LRU. Inodes to be freed are moved to a temporary list and
754 * then are freed outside inode_lock by dispose_list().
755 */
Dave Chinner9b17c622013-08-28 10:18:05 +1000756long prune_icache_sb(struct super_block *sb, unsigned long nr_to_scan,
757 int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 LIST_HEAD(freeable);
Dave Chinnerbc3b14c2013-08-28 10:17:58 +1000760 long freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Dave Chinner9b17c622013-08-28 10:18:05 +1000762 freed = list_lru_walk_node(&sb->s_inode_lru, nid, inode_lru_isolate,
763 &freeable, &nr_to_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 dispose_list(&freeable);
Dave Chinner0a234c62013-08-28 10:17:57 +1000765 return freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768static void __wait_on_freeing_inode(struct inode *inode);
769/*
770 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530772static struct inode *find_inode(struct super_block *sb,
773 struct hlist_head *head,
774 int (*test)(struct inode *, void *),
775 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530777 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779repeat:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800780 hlist_for_each_entry(inode, head, i_hash) {
Al Viro5a3cd99282013-11-06 09:54:52 -0500781 if (inode->i_sb != sb)
782 continue;
783 if (!test(inode, data))
784 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100785 spin_lock(&inode->i_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -0400786 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 __wait_on_freeing_inode(inode);
788 goto repeat;
789 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400790 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100791 spin_unlock(&inode->i_lock);
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400792 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400794 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/*
798 * find_inode_fast is the fast path version of find_inode, see the comment at
799 * iget_locked for details.
800 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530801static struct inode *find_inode_fast(struct super_block *sb,
802 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530804 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806repeat:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800807 hlist_for_each_entry(inode, head, i_hash) {
Al Viro5a3cd99282013-11-06 09:54:52 -0500808 if (inode->i_ino != ino)
809 continue;
810 if (inode->i_sb != sb)
811 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100812 spin_lock(&inode->i_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -0400813 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 __wait_on_freeing_inode(inode);
815 goto repeat;
816 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400817 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100818 spin_unlock(&inode->i_lock);
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400819 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400821 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Eric Dumazetf991bd22010-10-23 11:18:01 -0400824/*
825 * Each cpu owns a range of LAST_INO_BATCH numbers.
826 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
827 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100828 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400829 * This does not significantly increase overflow rate because every CPU can
830 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
831 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
832 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
833 * overflow rate by 2x, which does not seem too significant.
834 *
835 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
836 * error if st_ino won't fit in target struct field. Use 32bit counter
837 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100838 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400839#define LAST_INO_BATCH 1024
840static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100841
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400842unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400843{
844 unsigned int *p = &get_cpu_var(last_ino);
845 unsigned int res = *p;
846
847#ifdef CONFIG_SMP
848 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
849 static atomic_t shared_last_ino;
850 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
851
852 res = next - LAST_INO_BATCH;
853 }
854#endif
855
856 *p = ++res;
857 put_cpu_var(last_ino);
858 return res;
David Chinner8290c352008-10-30 17:35:24 +1100859}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400860EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862/**
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200863 * new_inode_pseudo - obtain an inode
864 * @sb: superblock
865 *
866 * Allocates a new inode for given superblock.
867 * Inode wont be chained in superblock s_inodes list
868 * This means :
869 * - fs can't be unmount
870 * - quotas, fsnotify, writeback can't work
871 */
872struct inode *new_inode_pseudo(struct super_block *sb)
873{
874 struct inode *inode = alloc_inode(sb);
875
876 if (inode) {
877 spin_lock(&inode->i_lock);
878 inode->i_state = 0;
879 spin_unlock(&inode->i_lock);
880 INIT_LIST_HEAD(&inode->i_sb_list);
881 }
882 return inode;
883}
884
885/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 * new_inode - obtain an inode
887 * @sb: superblock
888 *
Mel Gorman769848c2007-07-17 04:03:05 -0700889 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800890 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700891 * If HIGHMEM pages are unsuitable or it is known that pages allocated
892 * for the page cache are not reclaimable or migratable,
893 * mapping_set_gfp_mask() must be called with suitable flags on the
894 * newly created inode's mapping
895 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 */
897struct inode *new_inode(struct super_block *sb)
898{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530899 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Dave Chinner55fa6092011-03-22 22:23:40 +1100901 spin_lock_prefetch(&inode_sb_list_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530902
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200903 inode = new_inode_pseudo(sb);
904 if (inode)
Dave Chinner55fa6092011-03-22 22:23:40 +1100905 inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return inode;
907}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908EXPORT_SYMBOL(new_inode);
909
Peter Zijlstra14358e62007-10-14 01:38:33 +0200910#ifdef CONFIG_DEBUG_LOCK_ALLOC
Josh Boyere096d0c2011-08-25 07:48:12 -0400911void lockdep_annotate_inode_mutex_key(struct inode *inode)
912{
Namhyung Kima3314a02010-10-11 22:38:00 +0900913 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200914 struct file_system_type *type = inode->i_sb->s_type;
915
Jan Kara9a7aa122009-06-04 15:26:49 +0200916 /* Set new key only if filesystem hasn't already changed it */
Tyler Hicks978d6d82011-12-12 10:02:30 -0600917 if (lockdep_match_class(&inode->i_mutex, &type->i_mutex_key)) {
Jan Kara9a7aa122009-06-04 15:26:49 +0200918 /*
919 * ensure nobody is actually holding i_mutex
920 */
921 mutex_destroy(&inode->i_mutex);
922 mutex_init(&inode->i_mutex);
923 lockdep_set_class(&inode->i_mutex,
924 &type->i_mutex_dir_key);
925 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200926 }
Josh Boyere096d0c2011-08-25 07:48:12 -0400927}
928EXPORT_SYMBOL(lockdep_annotate_inode_mutex_key);
Peter Zijlstra14358e62007-10-14 01:38:33 +0200929#endif
Josh Boyere096d0c2011-08-25 07:48:12 -0400930
931/**
932 * unlock_new_inode - clear the I_NEW state and wake up any waiters
933 * @inode: new inode to unlock
934 *
935 * Called when the inode is fully initialised to clear the new state of the
936 * inode and wake up anyone waiting for the inode to finish initialisation.
937 */
938void unlock_new_inode(struct inode *inode)
939{
940 lockdep_annotate_inode_mutex_key(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100941 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100942 WARN_ON(!(inode->i_state & I_NEW));
943 inode->i_state &= ~I_NEW;
Al Viro310fa7a2012-03-10 17:07:28 -0500944 smp_mb();
Dave Chinner250df6e2011-03-22 22:23:36 +1100945 wake_up_bit(&inode->i_state, __I_NEW);
946 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948EXPORT_SYMBOL(unlock_new_inode);
949
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400950/**
J. Bruce Fields375e2892012-04-18 15:16:33 -0400951 * lock_two_nondirectories - take two i_mutexes on non-directory objects
J. Bruce Fields4fd699a2014-04-01 17:08:43 +0200952 *
953 * Lock any non-NULL argument that is not a directory.
954 * Zero, one or two objects may be locked by this function.
955 *
J. Bruce Fields375e2892012-04-18 15:16:33 -0400956 * @inode1: first inode to lock
957 * @inode2: second inode to lock
958 */
959void lock_two_nondirectories(struct inode *inode1, struct inode *inode2)
960{
J. Bruce Fields4fd699a2014-04-01 17:08:43 +0200961 if (inode1 > inode2)
962 swap(inode1, inode2);
963
964 if (inode1 && !S_ISDIR(inode1->i_mode))
J. Bruce Fields275555162012-04-25 07:19:52 -0400965 mutex_lock(&inode1->i_mutex);
J. Bruce Fields4fd699a2014-04-01 17:08:43 +0200966 if (inode2 && !S_ISDIR(inode2->i_mode) && inode2 != inode1)
J. Bruce Fields40bd22c2012-04-18 15:21:34 -0400967 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_NONDIR2);
J. Bruce Fields375e2892012-04-18 15:16:33 -0400968}
969EXPORT_SYMBOL(lock_two_nondirectories);
970
971/**
972 * unlock_two_nondirectories - release locks from lock_two_nondirectories()
973 * @inode1: first inode to unlock
974 * @inode2: second inode to unlock
975 */
976void unlock_two_nondirectories(struct inode *inode1, struct inode *inode2)
977{
J. Bruce Fields4fd699a2014-04-01 17:08:43 +0200978 if (inode1 && !S_ISDIR(inode1->i_mode))
979 mutex_unlock(&inode1->i_mutex);
980 if (inode2 && !S_ISDIR(inode2->i_mode) && inode2 != inode1)
J. Bruce Fields375e2892012-04-18 15:16:33 -0400981 mutex_unlock(&inode2->i_mutex);
982}
983EXPORT_SYMBOL(unlock_two_nondirectories);
984
985/**
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400986 * iget5_locked - obtain an inode from a mounted file system
987 * @sb: super block of file system
988 * @hashval: hash value (usually inode number) to get
989 * @test: callback used for comparisons between inodes
990 * @set: callback used to initialize a new struct inode
991 * @data: opaque data pointer to pass to @test and @set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400993 * Search for the inode specified by @hashval and @data in the inode cache,
994 * and if present it is return it with an increased reference count. This is
995 * a generalized version of iget_locked() for file systems where the inode
996 * number is not sufficient for unique identification of an inode.
997 *
998 * If the inode is not in cache, allocate a new inode and return it locked,
999 * hashed, and with the I_NEW flag set. The file system gets to fill it in
1000 * before unlocking it via unlock_new_inode().
1001 *
1002 * Note both @test and @set are called with the inode_hash_lock held, so can't
1003 * sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 */
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001005struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1006 int (*test)(struct inode *, void *),
1007 int (*set)(struct inode *, void *), void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001009 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301010 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001012 spin_lock(&inode_hash_lock);
1013 inode = find_inode(sb, head, test, data);
1014 spin_unlock(&inode_hash_lock);
1015
1016 if (inode) {
1017 wait_on_inode(inode);
1018 return inode;
1019 }
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 inode = alloc_inode(sb);
1022 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301023 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Dave Chinner67a23c42011-03-22 22:23:42 +11001025 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 /* We released the lock, so.. */
1027 old = find_inode(sb, head, test, data);
1028 if (!old) {
1029 if (set(inode, data))
1030 goto set_failed;
1031
Dave Chinner250df6e2011-03-22 22:23:36 +11001032 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001033 inode->i_state = I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +11001034 hlist_add_head(&inode->i_hash, head);
1035 spin_unlock(&inode->i_lock);
Dave Chinner55fa6092011-03-22 22:23:40 +11001036 inode_sb_list_add(inode);
Dave Chinner67a23c42011-03-22 22:23:42 +11001037 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 /* Return the locked inode with I_NEW set, the
1040 * caller is responsible for filling in the contents
1041 */
1042 return inode;
1043 }
1044
1045 /*
1046 * Uhhuh, somebody else created the same inode under
1047 * us. Use the old inode instead of the one we just
1048 * allocated.
1049 */
Dave Chinner67a23c42011-03-22 22:23:42 +11001050 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 destroy_inode(inode);
1052 inode = old;
1053 wait_on_inode(inode);
1054 }
1055 return inode;
1056
1057set_failed:
Dave Chinner67a23c42011-03-22 22:23:42 +11001058 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 destroy_inode(inode);
1060 return NULL;
1061}
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001062EXPORT_SYMBOL(iget5_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001064/**
1065 * iget_locked - obtain an inode from a mounted file system
1066 * @sb: super block of file system
1067 * @ino: inode number to get
1068 *
1069 * Search for the inode specified by @ino in the inode cache and if present
1070 * return it with an increased reference count. This is for file systems
1071 * where the inode number is sufficient for unique identification of an inode.
1072 *
1073 * If the inode is not in cache, allocate a new inode and return it locked,
1074 * hashed, and with the I_NEW flag set. The file system gets to fill it in
1075 * before unlocking it via unlock_new_inode().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 */
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001077struct inode *iget_locked(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001079 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301080 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001082 spin_lock(&inode_hash_lock);
1083 inode = find_inode_fast(sb, head, ino);
1084 spin_unlock(&inode_hash_lock);
1085 if (inode) {
1086 wait_on_inode(inode);
1087 return inode;
1088 }
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 inode = alloc_inode(sb);
1091 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301092 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Dave Chinner67a23c42011-03-22 22:23:42 +11001094 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /* We released the lock, so.. */
1096 old = find_inode_fast(sb, head, ino);
1097 if (!old) {
1098 inode->i_ino = ino;
Dave Chinner250df6e2011-03-22 22:23:36 +11001099 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001100 inode->i_state = I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +11001101 hlist_add_head(&inode->i_hash, head);
1102 spin_unlock(&inode->i_lock);
Dave Chinner55fa6092011-03-22 22:23:40 +11001103 inode_sb_list_add(inode);
Dave Chinner67a23c42011-03-22 22:23:42 +11001104 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 /* Return the locked inode with I_NEW set, the
1107 * caller is responsible for filling in the contents
1108 */
1109 return inode;
1110 }
1111
1112 /*
1113 * Uhhuh, somebody else created the same inode under
1114 * us. Use the old inode instead of the one we just
1115 * allocated.
1116 */
Dave Chinner67a23c42011-03-22 22:23:42 +11001117 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 destroy_inode(inode);
1119 inode = old;
1120 wait_on_inode(inode);
1121 }
1122 return inode;
1123}
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001124EXPORT_SYMBOL(iget_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001126/*
1127 * search the inode cache for a matching inode number.
1128 * If we find one, then the inode number we are trying to
1129 * allocate is not unique and so we should not use it.
1130 *
1131 * Returns 1 if the inode number is unique, 0 if it is not.
1132 */
1133static int test_inode_iunique(struct super_block *sb, unsigned long ino)
1134{
1135 struct hlist_head *b = inode_hashtable + hash(sb, ino);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001136 struct inode *inode;
1137
Dave Chinner67a23c42011-03-22 22:23:42 +11001138 spin_lock(&inode_hash_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001139 hlist_for_each_entry(inode, b, i_hash) {
Dave Chinner67a23c42011-03-22 22:23:42 +11001140 if (inode->i_ino == ino && inode->i_sb == sb) {
1141 spin_unlock(&inode_hash_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001142 return 0;
Dave Chinner67a23c42011-03-22 22:23:42 +11001143 }
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001144 }
Dave Chinner67a23c42011-03-22 22:23:42 +11001145 spin_unlock(&inode_hash_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001146
1147 return 1;
1148}
1149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150/**
1151 * iunique - get a unique inode number
1152 * @sb: superblock
1153 * @max_reserved: highest reserved inode number
1154 *
1155 * Obtain an inode number that is unique on the system for a given
1156 * superblock. This is used by file systems that have no natural
1157 * permanent inode numbering system. An inode number is returned that
1158 * is higher than the reserved limit but unique.
1159 *
1160 * BUGS:
1161 * With a large number of inodes live on the file system this function
1162 * currently becomes quite slow.
1163 */
1164ino_t iunique(struct super_block *sb, ino_t max_reserved)
1165{
Jeff Layton866b04f2007-05-08 00:32:29 -07001166 /*
1167 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
1168 * error if st_ino won't fit in target struct field. Use 32bit counter
1169 * here to attempt to avoid that.
1170 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001171 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -07001172 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001175 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001176 do {
1177 if (counter <= max_reserved)
1178 counter = max_reserved + 1;
1179 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001180 } while (!test_inode_iunique(sb, res));
1181 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001182
1183 return res;
1184}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185EXPORT_SYMBOL(iunique);
1186
1187struct inode *igrab(struct inode *inode)
1188{
Dave Chinner250df6e2011-03-22 22:23:36 +11001189 spin_lock(&inode->i_lock);
1190 if (!(inode->i_state & (I_FREEING|I_WILL_FREE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +11001192 spin_unlock(&inode->i_lock);
1193 } else {
1194 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 /*
1196 * Handle the case where s_op->clear_inode is not been
1197 * called yet, and somebody is calling igrab
1198 * while the inode is getting freed.
1199 */
1200 inode = NULL;
Dave Chinner250df6e2011-03-22 22:23:36 +11001201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return inode;
1203}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204EXPORT_SYMBOL(igrab);
1205
1206/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001207 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 * @sb: super block of file system to search
1209 * @hashval: hash value (usually inode number) to search for
1210 * @test: callback used for comparisons between inodes
1211 * @data: opaque data pointer to pass to @test
1212 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001213 * Search for the inode specified by @hashval and @data in the inode cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 * If the inode is in the cache, the inode is returned with an incremented
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001215 * reference count.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001216 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001217 * Note: I_NEW is not waited upon so you have to be very careful what you do
1218 * with the returned inode. You probably should be using ilookup5() instead.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001219 *
Randy Dunlapb6d0ad62011-03-26 13:27:47 -07001220 * Note2: @test is called with the inode_hash_lock held, so can't sleep.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001221 */
1222struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1223 int (*test)(struct inode *, void *), void *data)
1224{
1225 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001226 struct inode *inode;
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001227
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001228 spin_lock(&inode_hash_lock);
1229 inode = find_inode(sb, head, test, data);
1230 spin_unlock(&inode_hash_lock);
1231
1232 return inode;
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001233}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001234EXPORT_SYMBOL(ilookup5_nowait);
1235
1236/**
1237 * ilookup5 - search for an inode in the inode cache
1238 * @sb: super block of file system to search
1239 * @hashval: hash value (usually inode number) to search for
1240 * @test: callback used for comparisons between inodes
1241 * @data: opaque data pointer to pass to @test
1242 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001243 * Search for the inode specified by @hashval and @data in the inode cache,
1244 * and if the inode is in the cache, return the inode with an incremented
1245 * reference count. Waits on I_NEW before returning the inode.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001246 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001248 * This is a generalized version of ilookup() for file systems where the
1249 * inode number is not sufficient for unique identification of an inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001251 * Note: @test is called with the inode_hash_lock held, so can't sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 */
1253struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1254 int (*test)(struct inode *, void *), void *data)
1255{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001256 struct inode *inode = ilookup5_nowait(sb, hashval, test, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001258 if (inode)
1259 wait_on_inode(inode);
1260 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262EXPORT_SYMBOL(ilookup5);
1263
1264/**
1265 * ilookup - search for an inode in the inode cache
1266 * @sb: super block of file system to search
1267 * @ino: inode number to search for
1268 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001269 * Search for the inode @ino in the inode cache, and if the inode is in the
1270 * cache, the inode is returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 */
1272struct inode *ilookup(struct super_block *sb, unsigned long ino)
1273{
1274 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001275 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001277 spin_lock(&inode_hash_lock);
1278 inode = find_inode_fast(sb, head, ino);
1279 spin_unlock(&inode_hash_lock);
1280
1281 if (inode)
1282 wait_on_inode(inode);
1283 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285EXPORT_SYMBOL(ilookup);
1286
Theodore Ts'ofe032c42015-02-02 00:37:01 -05001287/**
1288 * find_inode_nowait - find an inode in the inode cache
1289 * @sb: super block of file system to search
1290 * @hashval: hash value (usually inode number) to search for
1291 * @match: callback used for comparisons between inodes
1292 * @data: opaque data pointer to pass to @match
1293 *
1294 * Search for the inode specified by @hashval and @data in the inode
1295 * cache, where the helper function @match will return 0 if the inode
1296 * does not match, 1 if the inode does match, and -1 if the search
1297 * should be stopped. The @match function must be responsible for
1298 * taking the i_lock spin_lock and checking i_state for an inode being
1299 * freed or being initialized, and incrementing the reference count
1300 * before returning 1. It also must not sleep, since it is called with
1301 * the inode_hash_lock spinlock held.
1302 *
1303 * This is a even more generalized version of ilookup5() when the
1304 * function must never block --- find_inode() can block in
1305 * __wait_on_freeing_inode() --- or when the caller can not increment
1306 * the reference count because the resulting iput() might cause an
1307 * inode eviction. The tradeoff is that the @match funtion must be
1308 * very carefully implemented.
1309 */
1310struct inode *find_inode_nowait(struct super_block *sb,
1311 unsigned long hashval,
1312 int (*match)(struct inode *, unsigned long,
1313 void *),
1314 void *data)
1315{
1316 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1317 struct inode *inode, *ret_inode = NULL;
1318 int mval;
1319
1320 spin_lock(&inode_hash_lock);
1321 hlist_for_each_entry(inode, head, i_hash) {
1322 if (inode->i_sb != sb)
1323 continue;
1324 mval = match(inode, hashval, data);
1325 if (mval == 0)
1326 continue;
1327 if (mval == 1)
1328 ret_inode = inode;
1329 goto out;
1330 }
1331out:
1332 spin_unlock(&inode_hash_lock);
1333 return ret_inode;
1334}
1335EXPORT_SYMBOL(find_inode_nowait);
1336
Al Viro261bca82008-12-30 01:48:21 -05001337int insert_inode_locked(struct inode *inode)
1338{
1339 struct super_block *sb = inode->i_sb;
1340 ino_t ino = inode->i_ino;
1341 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001342
Al Viro261bca82008-12-30 01:48:21 -05001343 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001344 struct inode *old = NULL;
Dave Chinner67a23c42011-03-22 22:23:42 +11001345 spin_lock(&inode_hash_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001346 hlist_for_each_entry(old, head, i_hash) {
Al Viro72a43d62009-05-13 19:13:40 +01001347 if (old->i_ino != ino)
1348 continue;
1349 if (old->i_sb != sb)
1350 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001351 spin_lock(&old->i_lock);
1352 if (old->i_state & (I_FREEING|I_WILL_FREE)) {
1353 spin_unlock(&old->i_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001354 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001355 }
Al Viro72a43d62009-05-13 19:13:40 +01001356 break;
1357 }
Sasha Levinb67bfe02013-02-27 17:06:00 -08001358 if (likely(!old)) {
Dave Chinner250df6e2011-03-22 22:23:36 +11001359 spin_lock(&inode->i_lock);
1360 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001361 hlist_add_head(&inode->i_hash, head);
Dave Chinner250df6e2011-03-22 22:23:36 +11001362 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001363 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001364 return 0;
1365 }
1366 __iget(old);
Dave Chinner250df6e2011-03-22 22:23:36 +11001367 spin_unlock(&old->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001368 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001369 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001370 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001371 iput(old);
1372 return -EBUSY;
1373 }
1374 iput(old);
1375 }
1376}
Al Viro261bca82008-12-30 01:48:21 -05001377EXPORT_SYMBOL(insert_inode_locked);
1378
1379int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1380 int (*test)(struct inode *, void *), void *data)
1381{
1382 struct super_block *sb = inode->i_sb;
1383 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001384
Al Viro261bca82008-12-30 01:48:21 -05001385 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001386 struct inode *old = NULL;
1387
Dave Chinner67a23c42011-03-22 22:23:42 +11001388 spin_lock(&inode_hash_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001389 hlist_for_each_entry(old, head, i_hash) {
Al Viro72a43d62009-05-13 19:13:40 +01001390 if (old->i_sb != sb)
1391 continue;
1392 if (!test(old, data))
1393 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001394 spin_lock(&old->i_lock);
1395 if (old->i_state & (I_FREEING|I_WILL_FREE)) {
1396 spin_unlock(&old->i_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001397 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001398 }
Al Viro72a43d62009-05-13 19:13:40 +01001399 break;
1400 }
Sasha Levinb67bfe02013-02-27 17:06:00 -08001401 if (likely(!old)) {
Dave Chinner250df6e2011-03-22 22:23:36 +11001402 spin_lock(&inode->i_lock);
1403 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001404 hlist_add_head(&inode->i_hash, head);
Dave Chinner250df6e2011-03-22 22:23:36 +11001405 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001406 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001407 return 0;
1408 }
1409 __iget(old);
Dave Chinner250df6e2011-03-22 22:23:36 +11001410 spin_unlock(&old->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001411 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001412 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001413 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001414 iput(old);
1415 return -EBUSY;
1416 }
1417 iput(old);
1418 }
1419}
Al Viro261bca82008-12-30 01:48:21 -05001420EXPORT_SYMBOL(insert_inode_locked4);
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Al Viro45321ac2010-06-07 13:43:19 -04001423int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Al Viro45321ac2010-06-07 13:43:19 -04001425 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427EXPORT_SYMBOL(generic_delete_inode);
1428
Al Viro45321ac2010-06-07 13:43:19 -04001429/*
Al Viro45321ac2010-06-07 13:43:19 -04001430 * Called when we're dropping the last reference
1431 * to an inode.
1432 *
1433 * Call the FS "drop_inode()" function, defaulting to
1434 * the legacy UNIX filesystem behaviour. If it tells
1435 * us to evict inode, do so. Otherwise, retain inode
1436 * in cache if fs is alive, sync and evict if fs is
1437 * shutting down.
1438 */
1439static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
1441 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001442 const struct super_operations *op = inode->i_sb->s_op;
1443 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Dave Chinner250df6e2011-03-22 22:23:36 +11001445 WARN_ON(inode->i_state & I_NEW);
1446
Al Viroe7f59092011-07-07 15:45:59 -04001447 if (op->drop_inode)
Al Viro45321ac2010-06-07 13:43:19 -04001448 drop = op->drop_inode(inode);
1449 else
1450 drop = generic_drop_inode(inode);
1451
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001452 if (!drop && (sb->s_flags & MS_ACTIVE)) {
1453 inode->i_state |= I_REFERENCED;
Jan Kara4eff96d2012-11-26 16:29:51 -08001454 inode_add_lru(inode);
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001455 spin_unlock(&inode->i_lock);
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001456 return;
1457 }
1458
Al Viro45321ac2010-06-07 13:43:19 -04001459 if (!drop) {
Alexander Viro991114c2005-06-23 00:09:01 -07001460 inode->i_state |= I_WILL_FREE;
Dave Chinner250df6e2011-03-22 22:23:36 +11001461 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 write_inode_now(inode, 1);
Dave Chinner250df6e2011-03-22 22:23:36 +11001463 spin_lock(&inode->i_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001464 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001465 inode->i_state &= ~I_WILL_FREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001467
Alexander Viro991114c2005-06-23 00:09:01 -07001468 inode->i_state |= I_FREEING;
Eric Dumazetc4ae0c62011-07-28 06:55:13 +02001469 if (!list_empty(&inode->i_lru))
1470 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +11001471 spin_unlock(&inode->i_lock);
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001472
1473 evict(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474}
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301477 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 * @inode: inode to put
1479 *
1480 * Puts an inode, dropping its usage count. If the inode use count hits
1481 * zero, the inode is then freed and may also be destroyed.
1482 *
1483 * Consequently, iput() can sleep.
1484 */
1485void iput(struct inode *inode)
1486{
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05001487 if (!inode)
1488 return;
1489 BUG_ON(inode->i_state & I_CLEAR);
1490retry:
1491 if (atomic_dec_and_lock(&inode->i_count, &inode->i_lock)) {
1492 if (inode->i_nlink && (inode->i_state & I_DIRTY_TIME)) {
1493 atomic_inc(&inode->i_count);
1494 inode->i_state &= ~I_DIRTY_TIME;
1495 spin_unlock(&inode->i_lock);
1496 trace_writeback_lazytime_iput(inode);
1497 mark_inode_dirty_sync(inode);
1498 goto retry;
1499 }
1500 iput_final(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
1502}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503EXPORT_SYMBOL(iput);
1504
1505/**
1506 * bmap - find a block number in a file
1507 * @inode: inode of file
1508 * @block: block to find
1509 *
1510 * Returns the block number on the device holding the inode that
1511 * is the disk block number for the block of the file requested.
1512 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301513 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 * file.
1515 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301516sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
1518 sector_t res = 0;
1519 if (inode->i_mapping->a_ops->bmap)
1520 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1521 return res;
1522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523EXPORT_SYMBOL(bmap);
1524
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001525/*
1526 * With relative atime, only update atime if the previous atime is
1527 * earlier than either the ctime or mtime or if at least a day has
1528 * passed since the last atime update.
1529 */
1530static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1531 struct timespec now)
1532{
1533
1534 if (!(mnt->mnt_flags & MNT_RELATIME))
1535 return 1;
1536 /*
1537 * Is mtime younger than atime? If yes, update atime:
1538 */
1539 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1540 return 1;
1541 /*
1542 * Is ctime younger than atime? If yes, update atime:
1543 */
1544 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1545 return 1;
1546
1547 /*
1548 * Is the previous atime value older than a day? If yes,
1549 * update atime:
1550 */
1551 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1552 return 1;
1553 /*
1554 * Good, we can skip the atime update:
1555 */
1556 return 0;
1557}
1558
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05001559int generic_update_time(struct inode *inode, struct timespec *time, int flags)
Josef Bacikc3b2da32012-03-26 09:59:21 -04001560{
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05001561 int iflags = I_DIRTY_TIME;
Josef Bacikc3b2da32012-03-26 09:59:21 -04001562
1563 if (flags & S_ATIME)
1564 inode->i_atime = *time;
1565 if (flags & S_VERSION)
1566 inode_inc_iversion(inode);
1567 if (flags & S_CTIME)
1568 inode->i_ctime = *time;
1569 if (flags & S_MTIME)
1570 inode->i_mtime = *time;
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05001571
1572 if (!(inode->i_sb->s_flags & MS_LAZYTIME) || (flags & S_VERSION))
1573 iflags |= I_DIRTY_SYNC;
1574 __mark_inode_dirty(inode, iflags);
Josef Bacikc3b2da32012-03-26 09:59:21 -04001575 return 0;
1576}
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05001577EXPORT_SYMBOL(generic_update_time);
1578
1579/*
1580 * This does the actual work of updating an inodes time or version. Must have
1581 * had called mnt_want_write() before calling this.
1582 */
1583static int update_time(struct inode *inode, struct timespec *time, int flags)
1584{
1585 int (*update_time)(struct inode *, struct timespec *, int);
1586
1587 update_time = inode->i_op->update_time ? inode->i_op->update_time :
1588 generic_update_time;
1589
1590 return update_time(inode, time, flags);
1591}
Josef Bacikc3b2da32012-03-26 09:59:21 -04001592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001594 * touch_atime - update the access time
Randy Dunlap185553b2012-04-17 17:03:25 -07001595 * @path: the &struct path to update
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 *
1597 * Update the accessed time on an inode and mark it for writeback.
1598 * This function automatically handles read only file systems and media,
1599 * as well as the "noatime" flag and inode specific "noatime" markers.
1600 */
Al Virobadcf2b2013-07-16 18:15:46 +04001601void touch_atime(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Al Viro68ac1232012-03-15 08:21:57 -04001603 struct vfsmount *mnt = path->mnt;
1604 struct inode *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 struct timespec now;
1606
Andrew Mortonb2276132006-12-13 00:34:33 -08001607 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001608 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001609 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001610 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001611 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001612 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001613
Dave Hansencdb70f32008-02-15 14:37:41 -08001614 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001615 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001616 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001617 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001620
1621 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001622 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001623
Valerie Henson47ae32d2006-12-13 00:34:34 -08001624 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001625 return;
1626
Jan Kara5d37e9e2012-06-12 16:20:36 +02001627 if (!sb_start_write_trylock(inode->i_sb))
Andi Kleenb12536c2009-09-18 13:05:47 -07001628 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001629
Jan Kara5d37e9e2012-06-12 16:20:36 +02001630 if (__mnt_want_write(mnt))
1631 goto skip_update;
Josef Bacikc3b2da32012-03-26 09:59:21 -04001632 /*
1633 * File systems can error out when updating inodes if they need to
1634 * allocate new space to modify an inode (such is the case for
1635 * Btrfs), but since we touch atime while walking down the path we
1636 * really don't care if we failed to update the atime of the file,
1637 * so just ignore the return value.
Alexander Block2bc5565282012-06-15 09:49:33 +02001638 * We may also fail on filesystems that have the ability to make parts
1639 * of the fs read only, e.g. subvolumes in Btrfs.
Josef Bacikc3b2da32012-03-26 09:59:21 -04001640 */
1641 update_time(inode, &now, S_ATIME);
Jan Kara5d37e9e2012-06-12 16:20:36 +02001642 __mnt_drop_write(mnt);
1643skip_update:
1644 sb_end_write(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001646EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Cong Wang3ed37642012-05-15 14:57:33 +08001648/*
1649 * The logic we want is
1650 *
1651 * if suid or (sgid and xgrp)
1652 * remove privs
1653 */
1654int should_remove_suid(struct dentry *dentry)
1655{
1656 umode_t mode = dentry->d_inode->i_mode;
1657 int kill = 0;
1658
1659 /* suid always must be killed */
1660 if (unlikely(mode & S_ISUID))
1661 kill = ATTR_KILL_SUID;
1662
1663 /*
1664 * sgid without any exec bits is just a mandatory locking mark; leave
1665 * it alone. If some exec bits are set, it's a real sgid; kill it.
1666 */
1667 if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1668 kill |= ATTR_KILL_SGID;
1669
1670 if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode)))
1671 return kill;
1672
1673 return 0;
1674}
1675EXPORT_SYMBOL(should_remove_suid);
1676
1677static int __remove_suid(struct dentry *dentry, int kill)
1678{
1679 struct iattr newattrs;
1680
1681 newattrs.ia_valid = ATTR_FORCE | kill;
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -04001682 /*
1683 * Note we call this on write, so notify_change will not
1684 * encounter any conflicting delegations:
1685 */
1686 return notify_change(dentry, &newattrs, NULL);
Cong Wang3ed37642012-05-15 14:57:33 +08001687}
1688
1689int file_remove_suid(struct file *file)
1690{
1691 struct dentry *dentry = file->f_path.dentry;
1692 struct inode *inode = dentry->d_inode;
1693 int killsuid;
1694 int killpriv;
1695 int error = 0;
1696
1697 /* Fast path for nothing security related */
1698 if (IS_NOSEC(inode))
1699 return 0;
1700
1701 killsuid = should_remove_suid(dentry);
1702 killpriv = security_inode_need_killpriv(dentry);
1703
1704 if (killpriv < 0)
1705 return killpriv;
1706 if (killpriv)
1707 error = security_inode_killpriv(dentry);
1708 if (!error && killsuid)
1709 error = __remove_suid(dentry, killsuid);
1710 if (!error && (inode->i_sb->s_flags & MS_NOSEC))
1711 inode->i_flags |= S_NOSEC;
1712
1713 return error;
1714}
1715EXPORT_SYMBOL(file_remove_suid);
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001718 * file_update_time - update mtime and ctime time
1719 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001721 * Update the mtime and ctime members of an inode and mark the inode
1722 * for writeback. Note that this function is meant exclusively for
1723 * usage in the file write path of filesystems, and filesystems may
1724 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001725 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Josef Bacikc3b2da32012-03-26 09:59:21 -04001726 * timestamps are handled by the server. This can return an error for
1727 * file systems who need to allocate space in order to update an inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 */
1729
Josef Bacikc3b2da32012-03-26 09:59:21 -04001730int file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
Al Viro496ad9a2013-01-23 17:07:38 -05001732 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct timespec now;
Josef Bacikc3b2da32012-03-26 09:59:21 -04001734 int sync_it = 0;
1735 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Andi Kleence06e0b2009-09-18 13:05:48 -07001737 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (IS_NOCMTIME(inode))
Josef Bacikc3b2da32012-03-26 09:59:21 -04001739 return 0;
Dave Hansen20ddee22008-02-15 14:37:43 -08001740
Andi Kleence06e0b2009-09-18 13:05:48 -07001741 now = current_fs_time(inode->i_sb);
1742 if (!timespec_equal(&inode->i_mtime, &now))
1743 sync_it = S_MTIME;
1744
1745 if (!timespec_equal(&inode->i_ctime, &now))
1746 sync_it |= S_CTIME;
1747
1748 if (IS_I_VERSION(inode))
1749 sync_it |= S_VERSION;
1750
1751 if (!sync_it)
Josef Bacikc3b2da32012-03-26 09:59:21 -04001752 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Andi Kleence06e0b2009-09-18 13:05:48 -07001754 /* Finally allowed to write? Takes lock. */
Jan Karaeb04c282012-06-12 16:20:35 +02001755 if (__mnt_want_write_file(file))
Josef Bacikc3b2da32012-03-26 09:59:21 -04001756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Josef Bacikc3b2da32012-03-26 09:59:21 -04001758 ret = update_time(inode, &now, sync_it);
Jan Karaeb04c282012-06-12 16:20:35 +02001759 __mnt_drop_write_file(file);
Josef Bacikc3b2da32012-03-26 09:59:21 -04001760
1761 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001763EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765int inode_needs_sync(struct inode *inode)
1766{
1767 if (IS_SYNC(inode))
1768 return 1;
1769 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1770 return 1;
1771 return 0;
1772}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773EXPORT_SYMBOL(inode_needs_sync);
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001776 * If we try to find an inode in the inode hash while it is being
1777 * deleted, we have to wait until the filesystem completes its
1778 * deletion before reporting that it isn't found. This function waits
1779 * until the deletion _might_ have completed. Callers are responsible
1780 * to recheck inode state.
1781 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001782 * It doesn't matter if I_NEW is not set initially, a call to
Dave Chinner250df6e2011-03-22 22:23:36 +11001783 * wake_up_bit(&inode->i_state, __I_NEW) after removing from the hash list
1784 * will DTRT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 */
1786static void __wait_on_freeing_inode(struct inode *inode)
1787{
1788 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001789 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1790 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
Dave Chinner250df6e2011-03-22 22:23:36 +11001792 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001793 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 schedule();
1795 finish_wait(wq, &wait.wait);
Dave Chinner67a23c42011-03-22 22:23:42 +11001796 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799static __initdata unsigned long ihash_entries;
1800static int __init set_ihash_entries(char *str)
1801{
1802 if (!str)
1803 return 0;
1804 ihash_entries = simple_strtoul(str, &str, 0);
1805 return 1;
1806}
1807__setup("ihash_entries=", set_ihash_entries);
1808
1809/*
1810 * Initialize the waitqueues and inode hash table.
1811 */
1812void __init inode_init_early(void)
1813{
Dimitri Sivanich074b8512012-02-08 12:39:07 -08001814 unsigned int loop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 /* If hashes are distributed across NUMA nodes, defer
1817 * hash allocation until vmalloc space is available.
1818 */
1819 if (hashdist)
1820 return;
1821
1822 inode_hashtable =
1823 alloc_large_system_hash("Inode-cache",
1824 sizeof(struct hlist_head),
1825 ihash_entries,
1826 14,
1827 HASH_EARLY,
1828 &i_hash_shift,
1829 &i_hash_mask,
Tim Bird31fe62b2012-05-23 13:33:35 +00001830 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 0);
1832
Dimitri Sivanich074b8512012-02-08 12:39:07 -08001833 for (loop = 0; loop < (1U << i_hash_shift); loop++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1835}
1836
Denis Cheng74bf17c2007-10-16 23:26:30 -07001837void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
Dimitri Sivanich074b8512012-02-08 12:39:07 -08001839 unsigned int loop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001842 inode_cachep = kmem_cache_create("inode_cache",
1843 sizeof(struct inode),
1844 0,
1845 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1846 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001847 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 /* Hash may have been set up in inode_init_early */
1850 if (!hashdist)
1851 return;
1852
1853 inode_hashtable =
1854 alloc_large_system_hash("Inode-cache",
1855 sizeof(struct hlist_head),
1856 ihash_entries,
1857 14,
1858 0,
1859 &i_hash_shift,
1860 &i_hash_mask,
Tim Bird31fe62b2012-05-23 13:33:35 +00001861 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 0);
1863
Dimitri Sivanich074b8512012-02-08 12:39:07 -08001864 for (loop = 0; loop < (1U << i_hash_shift); loop++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1866}
1867
1868void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1869{
1870 inode->i_mode = mode;
1871 if (S_ISCHR(mode)) {
1872 inode->i_fop = &def_chr_fops;
1873 inode->i_rdev = rdev;
1874 } else if (S_ISBLK(mode)) {
1875 inode->i_fop = &def_blk_fops;
1876 inode->i_rdev = rdev;
1877 } else if (S_ISFIFO(mode))
Al Viro599a0ac2013-03-12 09:58:10 -04001878 inode->i_fop = &pipefifo_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 else if (S_ISSOCK(mode))
Al Virobd9b51e2014-11-18 23:38:21 -05001880 ; /* leave it no_open_fops */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001882 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1883 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1884 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001887
1888/**
Ben Hutchingseaae668d2011-02-15 12:48:09 +00001889 * inode_init_owner - Init uid,gid,mode for new inode according to posix standards
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001890 * @inode: New inode
1891 * @dir: Directory inode
1892 * @mode: mode of the new inode
1893 */
1894void inode_init_owner(struct inode *inode, const struct inode *dir,
Al Viro62bb1092011-07-24 23:20:18 -04001895 umode_t mode)
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001896{
1897 inode->i_uid = current_fsuid();
1898 if (dir && dir->i_mode & S_ISGID) {
1899 inode->i_gid = dir->i_gid;
1900 if (S_ISDIR(mode))
1901 mode |= S_ISGID;
1902 } else
1903 inode->i_gid = current_fsgid();
1904 inode->i_mode = mode;
1905}
1906EXPORT_SYMBOL(inode_init_owner);
Serge E. Hallyne795b712011-03-23 16:43:25 -07001907
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001908/**
1909 * inode_owner_or_capable - check current task permissions to inode
1910 * @inode: inode being checked
1911 *
Andy Lutomirski23adbe12014-06-10 12:45:42 -07001912 * Return true if current either has CAP_FOWNER in a namespace with the
1913 * inode owner uid mapped, or owns the file.
Serge E. Hallyne795b712011-03-23 16:43:25 -07001914 */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001915bool inode_owner_or_capable(const struct inode *inode)
Serge E. Hallyne795b712011-03-23 16:43:25 -07001916{
Andy Lutomirski23adbe12014-06-10 12:45:42 -07001917 struct user_namespace *ns;
1918
Eric W. Biederman92361632012-02-08 07:07:50 -08001919 if (uid_eq(current_fsuid(), inode->i_uid))
Serge E. Hallyne795b712011-03-23 16:43:25 -07001920 return true;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07001921
1922 ns = current_user_ns();
1923 if (ns_capable(ns, CAP_FOWNER) && kuid_has_mapping(ns, inode->i_uid))
Serge E. Hallyne795b712011-03-23 16:43:25 -07001924 return true;
1925 return false;
1926}
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001927EXPORT_SYMBOL(inode_owner_or_capable);
Trond Myklebust1d59d612012-05-31 12:22:33 -04001928
1929/*
1930 * Direct i/o helper functions
1931 */
1932static void __inode_dio_wait(struct inode *inode)
1933{
1934 wait_queue_head_t *wq = bit_waitqueue(&inode->i_state, __I_DIO_WAKEUP);
1935 DEFINE_WAIT_BIT(q, &inode->i_state, __I_DIO_WAKEUP);
1936
1937 do {
1938 prepare_to_wait(wq, &q.wait, TASK_UNINTERRUPTIBLE);
1939 if (atomic_read(&inode->i_dio_count))
1940 schedule();
1941 } while (atomic_read(&inode->i_dio_count));
1942 finish_wait(wq, &q.wait);
1943}
1944
1945/**
1946 * inode_dio_wait - wait for outstanding DIO requests to finish
1947 * @inode: inode to wait for
1948 *
1949 * Waits for all pending direct I/O requests to finish so that we can
1950 * proceed with a truncate or equivalent operation.
1951 *
1952 * Must be called under a lock that serializes taking new references
1953 * to i_dio_count, usually by inode->i_mutex.
1954 */
1955void inode_dio_wait(struct inode *inode)
1956{
1957 if (atomic_read(&inode->i_dio_count))
1958 __inode_dio_wait(inode);
1959}
1960EXPORT_SYMBOL(inode_dio_wait);
1961
1962/*
1963 * inode_dio_done - signal finish of a direct I/O requests
1964 * @inode: inode the direct I/O happens on
1965 *
1966 * This is called once we've finished processing a direct I/O request,
1967 * and is used to wake up callers waiting for direct I/O to be quiesced.
1968 */
1969void inode_dio_done(struct inode *inode)
1970{
1971 if (atomic_dec_and_test(&inode->i_dio_count))
1972 wake_up_bit(&inode->i_state, __I_DIO_WAKEUP);
1973}
1974EXPORT_SYMBOL(inode_dio_done);
Theodore Ts'o5f16f322014-03-24 14:43:12 -04001975
1976/*
1977 * inode_set_flags - atomically set some inode flags
1978 *
1979 * Note: the caller should be holding i_mutex, or else be sure that
1980 * they have exclusive access to the inode structure (i.e., while the
1981 * inode is being instantiated). The reason for the cmpxchg() loop
1982 * --- which wouldn't be necessary if all code paths which modify
1983 * i_flags actually followed this rule, is that there is at least one
1984 * code path which doesn't today --- for example,
1985 * __generic_file_aio_write() calls file_remove_suid() without holding
1986 * i_mutex --- so we use cmpxchg() out of an abundance of caution.
1987 *
1988 * In the long run, i_mutex is overkill, and we should probably look
1989 * at using the i_lock spinlock to protect i_flags, and then make sure
1990 * it is so documented in include/linux/fs.h and that all code follows
1991 * the locking convention!!
1992 */
1993void inode_set_flags(struct inode *inode, unsigned int flags,
1994 unsigned int mask)
1995{
1996 unsigned int old_flags, new_flags;
1997
1998 WARN_ON_ONCE(flags & ~mask);
1999 do {
2000 old_flags = ACCESS_ONCE(inode->i_flags);
2001 new_flags = (old_flags & ~mask) | flags;
2002 } while (unlikely(cmpxchg(&inode->i_flags, old_flags,
2003 new_flags) != old_flags));
2004}
2005EXPORT_SYMBOL(inode_set_flags);