blob: 14b12c4ee026f66fac03ab96b5c335c372c13862 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/inode.c
3 *
4 * (C) 1997 Linus Torvalds
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/fs.h>
8#include <linux/mm.h>
9#include <linux/dcache.h>
10#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/slab.h>
12#include <linux/writeback.h>
13#include <linux/module.h>
14#include <linux/backing-dev.h>
15#include <linux/wait.h>
Nick Piggin88e0fbc2009-09-22 16:43:50 -070016#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/hash.h>
18#include <linux/swap.h>
19#include <linux/security.h>
20#include <linux/pagemap.h>
21#include <linux/cdev.h>
22#include <linux/bootmem.h>
Eric Paris3be25f42009-05-21 17:01:26 -040023#include <linux/fsnotify.h>
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080024#include <linux/mount.h>
Arjan van de Venefaee192009-01-06 07:20:54 -080025#include <linux/async.h>
Al Virof19d4a82009-06-08 19:50:45 -040026#include <linux/posix_acl.h>
Eric Parisa178d202010-10-25 14:41:59 -040027#include <linux/ima.h>
Serge E. Hallyne795b712011-03-23 16:43:25 -070028#include <linux/cred.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*
Dave Chinner250df6e2011-03-22 22:23:36 +110031 * inode locking rules.
32 *
33 * inode->i_lock protects:
34 * inode->i_state, inode->i_hash, __iget()
35 *
36 * Lock ordering:
37 * inode_lock
38 * inode->i_lock
39 */
40
41/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * This is needed for the following functions:
43 * - inode_has_buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * - invalidate_bdev
45 *
46 * FIXME: remove all knowledge of the buffer layer from this file
47 */
48#include <linux/buffer_head.h>
49
50/*
51 * New inode.c implementation.
52 *
53 * This implementation has the basic premise of trying
54 * to be extremely low-overhead and SMP-safe, yet be
55 * simple enough to be "obviously correct".
56 *
57 * Famous last words.
58 */
59
60/* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
61
62/* #define INODE_PARANOIA 1 */
63/* #define INODE_DEBUG 1 */
64
65/*
66 * Inode lookup is no longer as critical as it used to be:
67 * most of the lookups are going to be through the dcache.
68 */
69#define I_HASHBITS i_hash_shift
70#define I_HASHMASK i_hash_mask
71
Eric Dumazetfa3536c2006-03-26 01:37:24 -080072static unsigned int i_hash_mask __read_mostly;
73static unsigned int i_hash_shift __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
76 * Each inode can be on two separate lists. One is
77 * the hash list of the inode, used for lookups. The
78 * other linked list is the "type" list:
79 * "in_use" - valid inode, i_count > 0, i_nlink > 0
80 * "dirty" - as "in_use" but also dirty
81 * "unused" - valid inode, i_count = 0
82 *
83 * A "dirty" list is maintained for each super block,
84 * allowing for low-overhead inode sync() operations.
85 */
86
Nick Piggin7ccf19a2010-10-21 11:49:30 +110087static LIST_HEAD(inode_lru);
Eric Dumazetfa3536c2006-03-26 01:37:24 -080088static struct hlist_head *inode_hashtable __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90/*
91 * A simple spinlock to protect the list manipulations.
92 *
93 * NOTE! You also have to own the lock if you change
94 * the i_state of an inode while it is in use..
95 */
96DEFINE_SPINLOCK(inode_lock);
97
98/*
Christoph Hellwigbab1d942011-03-15 21:51:24 +010099 * iprune_sem provides exclusion between the icache shrinking and the
100 * umount path.
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700101 *
Christoph Hellwigbab1d942011-03-15 21:51:24 +0100102 * We don't actually need it to protect anything in the umount path,
103 * but only need to cycle through it to make sure any inode that
104 * prune_icache took off the LRU list has been fully torn down by the
105 * time we are past evict_inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700107static DECLARE_RWSEM(iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109/*
110 * Statistics gathering..
111 */
112struct inodes_stat_t inodes_stat;
113
Nick Piggin3e880fb2011-01-07 17:49:19 +1100114static DEFINE_PER_CPU(unsigned int, nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400115
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530116static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Nick Piggin3e880fb2011-01-07 17:49:19 +1100118static int get_nr_inodes(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400119{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100120 int i;
121 int sum = 0;
122 for_each_possible_cpu(i)
123 sum += per_cpu(nr_inodes, i);
124 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400125}
126
127static inline int get_nr_inodes_unused(void)
128{
Nick Piggin86c87492011-01-07 17:49:18 +1100129 return inodes_stat.nr_unused;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400130}
131
132int get_nr_dirty_inodes(void)
133{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100134 /* not actually dirty inodes, but a wild approximation */
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400135 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
136 return nr_dirty > 0 ? nr_dirty : 0;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400137}
138
139/*
140 * Handle nr_inode sysctl
141 */
142#ifdef CONFIG_SYSCTL
143int proc_nr_inodes(ctl_table *table, int write,
144 void __user *buffer, size_t *lenp, loff_t *ppos)
145{
146 inodes_stat.nr_inodes = get_nr_inodes();
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400147 return proc_dointvec(table, write, buffer, lenp, ppos);
148}
149#endif
150
David Chinner2cb15992008-10-30 17:32:23 +1100151/**
152 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800153 * @sb: superblock inode belongs to
154 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100155 *
156 * These are initializations that need to be done on every inode
157 * allocation as the fields are not initialised by slab allocation.
158 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300159int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700161 static const struct address_space_operations empty_aops;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700162 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800163 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530164 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100165
166 inode->i_sb = sb;
167 inode->i_blkbits = sb->s_blocksize_bits;
168 inode->i_flags = 0;
169 atomic_set(&inode->i_count, 1);
170 inode->i_op = &empty_iops;
171 inode->i_fop = &empty_fops;
172 inode->i_nlink = 1;
Al Viro56ff5ef2008-12-09 09:34:39 -0500173 inode->i_uid = 0;
174 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100175 atomic_set(&inode->i_writecount, 0);
176 inode->i_size = 0;
177 inode->i_blocks = 0;
178 inode->i_bytes = 0;
179 inode->i_generation = 0;
180#ifdef CONFIG_QUOTA
181 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
182#endif
183 inode->i_pipe = NULL;
184 inode->i_bdev = NULL;
185 inode->i_cdev = NULL;
186 inode->i_rdev = 0;
187 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500188
189 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300190 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100191 spin_lock_init(&inode->i_lock);
192 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
193
194 mutex_init(&inode->i_mutex);
195 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
196
197 init_rwsem(&inode->i_alloc_sem);
198 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
199
200 mapping->a_ops = &empty_aops;
201 mapping->host = inode;
202 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800203 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100204 mapping->assoc_mapping = NULL;
205 mapping->backing_dev_info = &default_backing_dev_info;
206 mapping->writeback_index = 0;
207
208 /*
209 * If the block_device provides a backing_dev_info for client
210 * inodes then use that. Otherwise the inode share the bdev's
211 * backing_dev_info.
212 */
213 if (sb->s_bdev) {
214 struct backing_dev_info *bdi;
215
Jens Axboe2c96ce92009-09-15 09:43:56 +0200216 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100217 mapping->backing_dev_info = bdi;
218 }
219 inode->i_private = NULL;
220 inode->i_mapping = mapping;
Al Virof19d4a82009-06-08 19:50:45 -0400221#ifdef CONFIG_FS_POSIX_ACL
222 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
223#endif
David Chinner2cb15992008-10-30 17:32:23 +1100224
Eric Paris3be25f42009-05-21 17:01:26 -0400225#ifdef CONFIG_FSNOTIFY
226 inode->i_fsnotify_mask = 0;
227#endif
228
Nick Piggin3e880fb2011-01-07 17:49:19 +1100229 this_cpu_inc(nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400230
Christoph Hellwig54e34622009-08-07 14:38:25 -0300231 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300232out:
233 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100234}
235EXPORT_SYMBOL(inode_init_always);
236
237static struct inode *alloc_inode(struct super_block *sb)
238{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 struct inode *inode;
240
241 if (sb->s_op->alloc_inode)
242 inode = sb->s_op->alloc_inode(sb);
243 else
David Chinner2cb15992008-10-30 17:32:23 +1100244 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Christoph Hellwig54e34622009-08-07 14:38:25 -0300246 if (!inode)
247 return NULL;
248
249 if (unlikely(inode_init_always(sb, inode))) {
250 if (inode->i_sb->s_op->destroy_inode)
251 inode->i_sb->s_op->destroy_inode(inode);
252 else
253 kmem_cache_free(inode_cachep, inode);
254 return NULL;
255 }
256
257 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Nick Pigginff0c7d12011-01-07 17:49:50 +1100260void free_inode_nonrcu(struct inode *inode)
261{
262 kmem_cache_free(inode_cachep, inode);
263}
264EXPORT_SYMBOL(free_inode_nonrcu);
265
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300266void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200268 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400270 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400271#ifdef CONFIG_FS_POSIX_ACL
272 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
273 posix_acl_release(inode->i_acl);
274 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
275 posix_acl_release(inode->i_default_acl);
276#endif
Nick Piggin3e880fb2011-01-07 17:49:19 +1100277 this_cpu_dec(nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300278}
279EXPORT_SYMBOL(__destroy_inode);
280
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100281static void i_callback(struct rcu_head *head)
282{
283 struct inode *inode = container_of(head, struct inode, i_rcu);
284 INIT_LIST_HEAD(&inode->i_dentry);
285 kmem_cache_free(inode_cachep, inode);
286}
287
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200288static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300289{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100290 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300291 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (inode->i_sb->s_op->destroy_inode)
293 inode->i_sb->s_op->destroy_inode(inode);
294 else
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100295 call_rcu(&inode->i_rcu, i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100298void address_space_init_once(struct address_space *mapping)
299{
300 memset(mapping, 0, sizeof(*mapping));
301 INIT_RADIX_TREE(&mapping->page_tree, GFP_ATOMIC);
302 spin_lock_init(&mapping->tree_lock);
303 spin_lock_init(&mapping->i_mmap_lock);
304 INIT_LIST_HEAD(&mapping->private_list);
305 spin_lock_init(&mapping->private_lock);
306 INIT_RAW_PRIO_TREE_ROOT(&mapping->i_mmap);
307 INIT_LIST_HEAD(&mapping->i_mmap_nonlinear);
308 mutex_init(&mapping->unmap_mutex);
309}
310EXPORT_SYMBOL(address_space_init_once);
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/*
313 * These are initializations that only need to be done
314 * once, because the fields are idempotent across use
315 * of the inode, so let the slab aware of that.
316 */
317void inode_init_once(struct inode *inode)
318{
319 memset(inode, 0, sizeof(*inode));
320 INIT_HLIST_NODE(&inode->i_hash);
321 INIT_LIST_HEAD(&inode->i_dentry);
322 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100323 INIT_LIST_HEAD(&inode->i_wb_list);
324 INIT_LIST_HEAD(&inode->i_lru);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100325 address_space_init_once(&inode->i_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400327#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500328 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400329#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331EXPORT_SYMBOL(inode_init_once);
332
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700333static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530335 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Christoph Lametera35afb82007-05-16 22:10:57 -0700337 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340/*
Dave Chinner250df6e2011-03-22 22:23:36 +1100341 * inode->i_lock must be held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530343void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Nick Piggin9e38d862010-10-23 06:55:17 -0400345 atomic_inc(&inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
Al Viro7de9c6e2010-10-23 11:11:40 -0400348/*
349 * get additional reference to inode; caller must already hold one.
350 */
351void ihold(struct inode *inode)
352{
353 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
354}
355EXPORT_SYMBOL(ihold);
356
Nick Piggin9e38d862010-10-23 06:55:17 -0400357static void inode_lru_list_add(struct inode *inode)
358{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100359 if (list_empty(&inode->i_lru)) {
360 list_add(&inode->i_lru, &inode_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100361 inodes_stat.nr_unused++;
Nick Piggin9e38d862010-10-23 06:55:17 -0400362 }
363}
364
365static void inode_lru_list_del(struct inode *inode)
366{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100367 if (!list_empty(&inode->i_lru)) {
368 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100369 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Christoph Hellwig646ec462010-10-23 07:15:32 -0400373static inline void __inode_sb_list_add(struct inode *inode)
374{
375 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
376}
377
378/**
379 * inode_sb_list_add - add inode to the superblock list of inodes
380 * @inode: inode to add
381 */
382void inode_sb_list_add(struct inode *inode)
383{
384 spin_lock(&inode_lock);
385 __inode_sb_list_add(inode);
386 spin_unlock(&inode_lock);
387}
388EXPORT_SYMBOL_GPL(inode_sb_list_add);
389
390static inline void __inode_sb_list_del(struct inode *inode)
391{
392 list_del_init(&inode->i_sb_list);
393}
394
Dave Chinner4c51acb2010-10-23 06:58:09 -0400395static unsigned long hash(struct super_block *sb, unsigned long hashval)
396{
397 unsigned long tmp;
398
399 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
400 L1_CACHE_BYTES;
401 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
402 return tmp & I_HASHMASK;
403}
404
405/**
406 * __insert_inode_hash - hash an inode
407 * @inode: unhashed inode
408 * @hashval: unsigned long value used to locate this object in the
409 * inode_hashtable.
410 *
411 * Add an inode to the inode hash for this superblock.
412 */
413void __insert_inode_hash(struct inode *inode, unsigned long hashval)
414{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400415 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
416
Dave Chinner4c51acb2010-10-23 06:58:09 -0400417 spin_lock(&inode_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100418 spin_lock(&inode->i_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400419 hlist_add_head(&inode->i_hash, b);
Dave Chinner250df6e2011-03-22 22:23:36 +1100420 spin_unlock(&inode->i_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400421 spin_unlock(&inode_lock);
422}
423EXPORT_SYMBOL(__insert_inode_hash);
424
425/**
426 * __remove_inode_hash - remove an inode from the hash
427 * @inode: inode to unhash
428 *
429 * Remove an inode from the superblock.
430 */
431static void __remove_inode_hash(struct inode *inode)
432{
433 hlist_del_init(&inode->i_hash);
434}
435
436/**
437 * remove_inode_hash - remove an inode from the hash
438 * @inode: inode to unhash
439 *
440 * Remove an inode from the superblock.
441 */
442void remove_inode_hash(struct inode *inode)
443{
444 spin_lock(&inode_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100445 spin_lock(&inode->i_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400446 hlist_del_init(&inode->i_hash);
Dave Chinner250df6e2011-03-22 22:23:36 +1100447 spin_unlock(&inode->i_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400448 spin_unlock(&inode_lock);
449}
450EXPORT_SYMBOL(remove_inode_hash);
451
Al Virob0683aa2010-06-04 20:55:25 -0400452void end_writeback(struct inode *inode)
453{
454 might_sleep();
455 BUG_ON(inode->i_data.nrpages);
456 BUG_ON(!list_empty(&inode->i_data.private_list));
457 BUG_ON(!(inode->i_state & I_FREEING));
458 BUG_ON(inode->i_state & I_CLEAR);
459 inode_sync_wait(inode);
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100460 /* don't need i_lock here, no concurrent mods to i_state */
Al Virob0683aa2010-06-04 20:55:25 -0400461 inode->i_state = I_FREEING | I_CLEAR;
462}
463EXPORT_SYMBOL(end_writeback);
464
Al Viro644da592010-06-07 13:21:05 -0400465static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400466{
467 const struct super_operations *op = inode->i_sb->s_op;
468
Al Virobe7ce412010-06-04 19:40:39 -0400469 if (op->evict_inode) {
470 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400471 } else {
472 if (inode->i_data.nrpages)
473 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400474 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400475 }
Al Viro661074e2010-06-04 20:19:55 -0400476 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
477 bd_forget(inode);
478 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
479 cd_forget(inode);
Al Virob4272d42010-06-04 19:33:20 -0400480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*
483 * dispose_list - dispose of the contents of a local list
484 * @head: the head of the list to free
485 *
486 * Dispose-list gets a local list with local inodes in it, so it doesn't
487 * need to worry about list corruption and SMP locks.
488 */
489static void dispose_list(struct list_head *head)
490{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 while (!list_empty(head)) {
492 struct inode *inode;
493
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100494 inode = list_first_entry(head, struct inode, i_lru);
495 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Al Viro644da592010-06-07 13:21:05 -0400497 evict(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700498
499 spin_lock(&inode_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400500 __remove_inode_hash(inode);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400501 __inode_sb_list_del(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700502 spin_unlock(&inode_lock);
503
Dave Chinner250df6e2011-03-22 22:23:36 +1100504 spin_lock(&inode->i_lock);
505 wake_up_bit(&inode->i_state, __I_NEW);
506 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/**
Al Viro63997e92010-10-25 20:49:35 -0400512 * evict_inodes - evict all evictable inodes for a superblock
513 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 *
Al Viro63997e92010-10-25 20:49:35 -0400515 * Make sure that no inodes with zero refcount are retained. This is
516 * called by superblock shutdown after having MS_ACTIVE flag removed,
517 * so any inode reaching zero refcount during or after that call will
518 * be immediately evicted.
519 */
520void evict_inodes(struct super_block *sb)
521{
522 struct inode *inode, *next;
523 LIST_HEAD(dispose);
524
Al Viro63997e92010-10-25 20:49:35 -0400525 spin_lock(&inode_lock);
526 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
527 if (atomic_read(&inode->i_count))
528 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100529
530 spin_lock(&inode->i_lock);
531 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
532 spin_unlock(&inode->i_lock);
Al Viro63997e92010-10-25 20:49:35 -0400533 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100534 }
Al Viro63997e92010-10-25 20:49:35 -0400535
536 inode->i_state |= I_FREEING;
Dave Chinner250df6e2011-03-22 22:23:36 +1100537 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
538 inodes_stat.nr_unused--;
539 spin_unlock(&inode->i_lock);
Al Viro63997e92010-10-25 20:49:35 -0400540
541 /*
542 * Move the inode off the IO lists and LRU once I_FREEING is
543 * set so that it won't get moved back on there if it is dirty.
544 */
545 list_move(&inode->i_lru, &dispose);
546 list_del_init(&inode->i_wb_list);
Al Viro63997e92010-10-25 20:49:35 -0400547 }
548 spin_unlock(&inode_lock);
549
550 dispose_list(&dispose);
Christoph Hellwigbab1d942011-03-15 21:51:24 +0100551
552 /*
553 * Cycle through iprune_sem to make sure any inode that prune_icache
554 * moved off the list before we took the lock has been fully torn
555 * down.
556 */
557 down_write(&iprune_sem);
Al Viro63997e92010-10-25 20:49:35 -0400558 up_write(&iprune_sem);
559}
560
561/**
Christoph Hellwiga0318782010-10-24 19:40:33 +0200562 * invalidate_inodes - attempt to free all inodes on a superblock
563 * @sb: superblock to operate on
NeilBrown93b270f2011-02-24 17:25:47 +1100564 * @kill_dirty: flag to guide handling of dirty inodes
Christoph Hellwiga0318782010-10-24 19:40:33 +0200565 *
566 * Attempts to free all inodes for a given superblock. If there were any
567 * busy inodes return a non-zero value, else zero.
NeilBrown93b270f2011-02-24 17:25:47 +1100568 * If @kill_dirty is set, discard dirty inodes too, otherwise treat
569 * them as busy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 */
NeilBrown93b270f2011-02-24 17:25:47 +1100571int invalidate_inodes(struct super_block *sb, bool kill_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400573 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200574 struct inode *inode, *next;
575 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 spin_lock(&inode_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200578 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100579 spin_lock(&inode->i_lock);
580 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
581 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100583 }
NeilBrown93b270f2011-02-24 17:25:47 +1100584 if (inode->i_state & I_DIRTY && !kill_dirty) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100585 spin_unlock(&inode->i_lock);
NeilBrown93b270f2011-02-24 17:25:47 +1100586 busy = 1;
587 continue;
588 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200589 if (atomic_read(&inode->i_count)) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100590 spin_unlock(&inode->i_lock);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200591 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 continue;
593 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200594
Christoph Hellwig99a38912010-10-23 19:07:20 +0200595 inode->i_state |= I_FREEING;
Dave Chinner250df6e2011-03-22 22:23:36 +1100596 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
597 inodes_stat.nr_unused--;
598 spin_unlock(&inode->i_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100599
600 /*
601 * Move the inode off the IO lists and LRU once I_FREEING is
602 * set so that it won't get moved back on there if it is dirty.
603 */
Christoph Hellwiga0318782010-10-24 19:40:33 +0200604 list_move(&inode->i_lru, &dispose);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100605 list_del_init(&inode->i_wb_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 spin_unlock(&inode_lock);
608
Christoph Hellwiga0318782010-10-24 19:40:33 +0200609 dispose_list(&dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 return busy;
612}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614static int can_unuse(struct inode *inode)
615{
Nick Piggin9e38d862010-10-23 06:55:17 -0400616 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return 0;
618 if (inode_has_buffers(inode))
619 return 0;
620 if (atomic_read(&inode->i_count))
621 return 0;
622 if (inode->i_data.nrpages)
623 return 0;
624 return 1;
625}
626
627/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400628 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
629 * temporary list and then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 *
631 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400632 * pagecache removed. If the inode has metadata buffers attached to
633 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400635 * If the inode has the I_REFERENCED flag set, then it means that it has been
636 * used recently - the flag is set in iput_final(). When we encounter such an
637 * inode, clear the flag and move it to the back of the LRU so it gets another
638 * pass through the LRU before it gets reclaimed. This is necessary because of
639 * the fact we are doing lazy LRU updates to minimise lock contention so the
640 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
641 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
643static void prune_icache(int nr_to_scan)
644{
645 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 int nr_scanned;
647 unsigned long reap = 0;
648
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700649 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 spin_lock(&inode_lock);
651 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
652 struct inode *inode;
653
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100654 if (list_empty(&inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 break;
656
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100657 inode = list_entry(inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Nick Piggin9e38d862010-10-23 06:55:17 -0400659 /*
660 * Referenced or dirty inodes are still in use. Give them
661 * another pass through the LRU as we canot reclaim them now.
662 */
Dave Chinner250df6e2011-03-22 22:23:36 +1100663 spin_lock(&inode->i_lock);
Nick Piggin9e38d862010-10-23 06:55:17 -0400664 if (atomic_read(&inode->i_count) ||
665 (inode->i_state & ~I_REFERENCED)) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100666 spin_unlock(&inode->i_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100667 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100668 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400669 continue;
670 }
671
672 /* recently referenced inodes get one more pass */
673 if (inode->i_state & I_REFERENCED) {
Nick Piggin9e38d862010-10-23 06:55:17 -0400674 inode->i_state &= ~I_REFERENCED;
Dave Chinner250df6e2011-03-22 22:23:36 +1100675 spin_unlock(&inode->i_lock);
676 list_move(&inode->i_lru, &inode_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 continue;
678 }
679 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
680 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100681 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 spin_unlock(&inode_lock);
683 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800684 reap += invalidate_mapping_pages(&inode->i_data,
685 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 iput(inode);
687 spin_lock(&inode_lock);
688
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100689 if (inode != list_entry(inode_lru.next,
690 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 continue; /* wrong inode or list_empty */
Dave Chinner250df6e2011-03-22 22:23:36 +1100692 spin_lock(&inode->i_lock);
693 if (!can_unuse(inode)) {
694 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700698 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 inode->i_state |= I_FREEING;
Dave Chinner250df6e2011-03-22 22:23:36 +1100700 spin_unlock(&inode->i_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100701
702 /*
703 * Move the inode off the IO lists and LRU once I_FREEING is
704 * set so that it won't get moved back on there if it is dirty.
705 */
706 list_move(&inode->i_lru, &freeable);
707 list_del_init(&inode->i_wb_list);
Nick Piggin86c87492011-01-07 17:49:18 +1100708 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700710 if (current_is_kswapd())
711 __count_vm_events(KSWAPD_INODESTEAL, reap);
712 else
713 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 spin_unlock(&inode_lock);
715
716 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700717 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
720/*
721 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
722 * "unused" means that no dentries are referring to the inodes: the files are
723 * not open and the dcache references to those inodes have already been
724 * reclaimed.
725 *
726 * This function is passed the number of inodes to scan, and it returns the
727 * total number of remaining possibly-reclaimable inodes.
728 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000729static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 if (nr) {
732 /*
733 * Nasty deadlock avoidance. We may hold various FS locks,
734 * and we don't want to recurse into the FS that called us
735 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530736 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!(gfp_mask & __GFP_FS))
738 return -1;
739 prune_icache(nr);
740 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400741 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Rusty Russell8e1f9362007-07-17 04:03:17 -0700744static struct shrinker icache_shrinker = {
745 .shrink = shrink_icache_memory,
746 .seeks = DEFAULT_SEEKS,
747};
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749static void __wait_on_freeing_inode(struct inode *inode);
750/*
751 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530753static struct inode *find_inode(struct super_block *sb,
754 struct hlist_head *head,
755 int (*test)(struct inode *, void *),
756 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530759 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700762 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (inode->i_sb != sb)
764 continue;
765 if (!test(inode, data))
766 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100767 spin_lock(&inode->i_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -0400768 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 __wait_on_freeing_inode(inode);
770 goto repeat;
771 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400772 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100773 spin_unlock(&inode->i_lock);
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400774 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400776 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
779/*
780 * find_inode_fast is the fast path version of find_inode, see the comment at
781 * iget_locked for details.
782 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530783static struct inode *find_inode_fast(struct super_block *sb,
784 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530787 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700790 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (inode->i_ino != ino)
792 continue;
793 if (inode->i_sb != sb)
794 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100795 spin_lock(&inode->i_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -0400796 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 __wait_on_freeing_inode(inode);
798 goto repeat;
799 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400800 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100801 spin_unlock(&inode->i_lock);
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400802 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400804 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Eric Dumazetf991bd22010-10-23 11:18:01 -0400807/*
808 * Each cpu owns a range of LAST_INO_BATCH numbers.
809 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
810 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100811 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400812 * This does not significantly increase overflow rate because every CPU can
813 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
814 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
815 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
816 * overflow rate by 2x, which does not seem too significant.
817 *
818 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
819 * error if st_ino won't fit in target struct field. Use 32bit counter
820 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100821 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400822#define LAST_INO_BATCH 1024
823static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100824
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400825unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400826{
827 unsigned int *p = &get_cpu_var(last_ino);
828 unsigned int res = *p;
829
830#ifdef CONFIG_SMP
831 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
832 static atomic_t shared_last_ino;
833 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
834
835 res = next - LAST_INO_BATCH;
836 }
837#endif
838
839 *p = ++res;
840 put_cpu_var(last_ino);
841 return res;
David Chinner8290c352008-10-30 17:35:24 +1100842}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400843EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/**
846 * new_inode - obtain an inode
847 * @sb: superblock
848 *
Mel Gorman769848c2007-07-17 04:03:05 -0700849 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800850 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700851 * If HIGHMEM pages are unsuitable or it is known that pages allocated
852 * for the page cache are not reclaimable or migratable,
853 * mapping_set_gfp_mask() must be called with suitable flags on the
854 * newly created inode's mapping
855 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 */
857struct inode *new_inode(struct super_block *sb)
858{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530859 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 inode = alloc_inode(sb);
864 if (inode) {
865 spin_lock(&inode_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100866 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 inode->i_state = 0;
Dave Chinner250df6e2011-03-22 22:23:36 +1100868 spin_unlock(&inode->i_lock);
869 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 spin_unlock(&inode_lock);
871 }
872 return inode;
873}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874EXPORT_SYMBOL(new_inode);
875
Dave Chinner250df6e2011-03-22 22:23:36 +1100876/**
877 * unlock_new_inode - clear the I_NEW state and wake up any waiters
878 * @inode: new inode to unlock
879 *
880 * Called when the inode is fully initialised to clear the new state of the
881 * inode and wake up anyone waiting for the inode to finish initialisation.
882 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883void unlock_new_inode(struct inode *inode)
884{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200885#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900886 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200887 struct file_system_type *type = inode->i_sb->s_type;
888
Jan Kara9a7aa122009-06-04 15:26:49 +0200889 /* Set new key only if filesystem hasn't already changed it */
890 if (!lockdep_match_class(&inode->i_mutex,
891 &type->i_mutex_key)) {
892 /*
893 * ensure nobody is actually holding i_mutex
894 */
895 mutex_destroy(&inode->i_mutex);
896 mutex_init(&inode->i_mutex);
897 lockdep_set_class(&inode->i_mutex,
898 &type->i_mutex_dir_key);
899 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200900 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200901#endif
Dave Chinner250df6e2011-03-22 22:23:36 +1100902 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100903 WARN_ON(!(inode->i_state & I_NEW));
904 inode->i_state &= ~I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +1100905 wake_up_bit(&inode->i_state, __I_NEW);
906 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908EXPORT_SYMBOL(unlock_new_inode);
909
910/*
911 * This is called without the inode lock held.. Be careful.
912 *
913 * We no longer cache the sb_flags in i_flags - see fs.h
914 * -- rmk@arm.uk.linux.org
915 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530916static struct inode *get_new_inode(struct super_block *sb,
917 struct hlist_head *head,
918 int (*test)(struct inode *, void *),
919 int (*set)(struct inode *, void *),
920 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530922 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 inode = alloc_inode(sb);
925 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530926 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 spin_lock(&inode_lock);
929 /* We released the lock, so.. */
930 old = find_inode(sb, head, test, data);
931 if (!old) {
932 if (set(inode, data))
933 goto set_failed;
934
Dave Chinner250df6e2011-03-22 22:23:36 +1100935 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100936 inode->i_state = I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +1100937 hlist_add_head(&inode->i_hash, head);
938 spin_unlock(&inode->i_lock);
939 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 spin_unlock(&inode_lock);
941
942 /* Return the locked inode with I_NEW set, the
943 * caller is responsible for filling in the contents
944 */
945 return inode;
946 }
947
948 /*
949 * Uhhuh, somebody else created the same inode under
950 * us. Use the old inode instead of the one we just
951 * allocated.
952 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 spin_unlock(&inode_lock);
954 destroy_inode(inode);
955 inode = old;
956 wait_on_inode(inode);
957 }
958 return inode;
959
960set_failed:
961 spin_unlock(&inode_lock);
962 destroy_inode(inode);
963 return NULL;
964}
965
966/*
967 * get_new_inode_fast is the fast path version of get_new_inode, see the
968 * comment at iget_locked for details.
969 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530970static struct inode *get_new_inode_fast(struct super_block *sb,
971 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530973 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 inode = alloc_inode(sb);
976 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530977 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 spin_lock(&inode_lock);
980 /* We released the lock, so.. */
981 old = find_inode_fast(sb, head, ino);
982 if (!old) {
983 inode->i_ino = ino;
Dave Chinner250df6e2011-03-22 22:23:36 +1100984 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100985 inode->i_state = I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +1100986 hlist_add_head(&inode->i_hash, head);
987 spin_unlock(&inode->i_lock);
988 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 spin_unlock(&inode_lock);
990
991 /* Return the locked inode with I_NEW set, the
992 * caller is responsible for filling in the contents
993 */
994 return inode;
995 }
996
997 /*
998 * Uhhuh, somebody else created the same inode under
999 * us. Use the old inode instead of the one we just
1000 * allocated.
1001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 spin_unlock(&inode_lock);
1003 destroy_inode(inode);
1004 inode = old;
1005 wait_on_inode(inode);
1006 }
1007 return inode;
1008}
1009
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001010/*
1011 * search the inode cache for a matching inode number.
1012 * If we find one, then the inode number we are trying to
1013 * allocate is not unique and so we should not use it.
1014 *
1015 * Returns 1 if the inode number is unique, 0 if it is not.
1016 */
1017static int test_inode_iunique(struct super_block *sb, unsigned long ino)
1018{
1019 struct hlist_head *b = inode_hashtable + hash(sb, ino);
1020 struct hlist_node *node;
1021 struct inode *inode;
1022
1023 hlist_for_each_entry(inode, node, b, i_hash) {
1024 if (inode->i_ino == ino && inode->i_sb == sb)
1025 return 0;
1026 }
1027
1028 return 1;
1029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031/**
1032 * iunique - get a unique inode number
1033 * @sb: superblock
1034 * @max_reserved: highest reserved inode number
1035 *
1036 * Obtain an inode number that is unique on the system for a given
1037 * superblock. This is used by file systems that have no natural
1038 * permanent inode numbering system. An inode number is returned that
1039 * is higher than the reserved limit but unique.
1040 *
1041 * BUGS:
1042 * With a large number of inodes live on the file system this function
1043 * currently becomes quite slow.
1044 */
1045ino_t iunique(struct super_block *sb, ino_t max_reserved)
1046{
Jeff Layton866b04f2007-05-08 00:32:29 -07001047 /*
1048 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
1049 * error if st_ino won't fit in target struct field. Use 32bit counter
1050 * here to attempt to avoid that.
1051 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001052 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -07001053 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001056 spin_lock(&inode_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001057 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001058 do {
1059 if (counter <= max_reserved)
1060 counter = max_reserved + 1;
1061 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001062 } while (!test_inode_iunique(sb, res));
1063 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001064 spin_unlock(&inode_lock);
1065
1066 return res;
1067}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068EXPORT_SYMBOL(iunique);
1069
1070struct inode *igrab(struct inode *inode)
1071{
1072 spin_lock(&inode_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +11001073 spin_lock(&inode->i_lock);
1074 if (!(inode->i_state & (I_FREEING|I_WILL_FREE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +11001076 spin_unlock(&inode->i_lock);
1077 } else {
1078 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /*
1080 * Handle the case where s_op->clear_inode is not been
1081 * called yet, and somebody is calling igrab
1082 * while the inode is getting freed.
1083 */
1084 inode = NULL;
Dave Chinner250df6e2011-03-22 22:23:36 +11001085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 spin_unlock(&inode_lock);
1087 return inode;
1088}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089EXPORT_SYMBOL(igrab);
1090
1091/**
1092 * ifind - internal function, you want ilookup5() or iget5().
1093 * @sb: super block of file system to search
1094 * @head: the head of the list to search
1095 * @test: callback used for comparisons between inodes
1096 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001097 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 *
1099 * ifind() searches for the inode specified by @data in the inode
1100 * cache. This is a generalized version of ifind_fast() for file systems where
1101 * the inode number is not sufficient for unique identification of an inode.
1102 *
1103 * If the inode is in the cache, the inode is returned with an incremented
1104 * reference count.
1105 *
1106 * Otherwise NULL is returned.
1107 *
1108 * Note, @test is called with the inode_lock held, so can't sleep.
1109 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001110static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001112 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
1114 struct inode *inode;
1115
1116 spin_lock(&inode_lock);
1117 inode = find_inode(sb, head, test, data);
1118 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001120 if (likely(wait))
1121 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return inode;
1123 }
1124 spin_unlock(&inode_lock);
1125 return NULL;
1126}
1127
1128/**
1129 * ifind_fast - internal function, you want ilookup() or iget().
1130 * @sb: super block of file system to search
1131 * @head: head of the list to search
1132 * @ino: inode number to search for
1133 *
1134 * ifind_fast() searches for the inode @ino in the inode cache. This is for
1135 * file systems where the inode number is sufficient for unique identification
1136 * of an inode.
1137 *
1138 * If the inode is in the cache, the inode is returned with an incremented
1139 * reference count.
1140 *
1141 * Otherwise NULL is returned.
1142 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001143static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 struct hlist_head *head, unsigned long ino)
1145{
1146 struct inode *inode;
1147
1148 spin_lock(&inode_lock);
1149 inode = find_inode_fast(sb, head, ino);
1150 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 spin_unlock(&inode_lock);
1152 wait_on_inode(inode);
1153 return inode;
1154 }
1155 spin_unlock(&inode_lock);
1156 return NULL;
1157}
1158
1159/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001160 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 * @sb: super block of file system to search
1162 * @hashval: hash value (usually inode number) to search for
1163 * @test: callback used for comparisons between inodes
1164 * @data: opaque data pointer to pass to @test
1165 *
1166 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1167 * @data in the inode cache. This is a generalized version of ilookup() for
1168 * file systems where the inode number is not sufficient for unique
1169 * identification of an inode.
1170 *
1171 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001172 * reference count. Note, the inode lock is not waited upon so you have to be
1173 * very careful what you do with the returned inode. You probably should be
1174 * using ilookup5() instead.
1175 *
1176 * Otherwise NULL is returned.
1177 *
1178 * Note, @test is called with the inode_lock held, so can't sleep.
1179 */
1180struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1181 int (*test)(struct inode *, void *), void *data)
1182{
1183 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1184
1185 return ifind(sb, head, test, data, 0);
1186}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001187EXPORT_SYMBOL(ilookup5_nowait);
1188
1189/**
1190 * ilookup5 - search for an inode in the inode cache
1191 * @sb: super block of file system to search
1192 * @hashval: hash value (usually inode number) to search for
1193 * @test: callback used for comparisons between inodes
1194 * @data: opaque data pointer to pass to @test
1195 *
1196 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1197 * @data in the inode cache. This is a generalized version of ilookup() for
1198 * file systems where the inode number is not sufficient for unique
1199 * identification of an inode.
1200 *
1201 * If the inode is in the cache, the inode lock is waited upon and the inode is
1202 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 *
1204 * Otherwise NULL is returned.
1205 *
1206 * Note, @test is called with the inode_lock held, so can't sleep.
1207 */
1208struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1209 int (*test)(struct inode *, void *), void *data)
1210{
1211 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1212
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001213 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215EXPORT_SYMBOL(ilookup5);
1216
1217/**
1218 * ilookup - search for an inode in the inode cache
1219 * @sb: super block of file system to search
1220 * @ino: inode number to search for
1221 *
1222 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1223 * This is for file systems where the inode number is sufficient for unique
1224 * identification of an inode.
1225 *
1226 * If the inode is in the cache, the inode is returned with an incremented
1227 * reference count.
1228 *
1229 * Otherwise NULL is returned.
1230 */
1231struct inode *ilookup(struct super_block *sb, unsigned long ino)
1232{
1233 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1234
1235 return ifind_fast(sb, head, ino);
1236}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237EXPORT_SYMBOL(ilookup);
1238
1239/**
1240 * iget5_locked - obtain an inode from a mounted file system
1241 * @sb: super block of file system
1242 * @hashval: hash value (usually inode number) to get
1243 * @test: callback used for comparisons between inodes
1244 * @set: callback used to initialize a new struct inode
1245 * @data: opaque data pointer to pass to @test and @set
1246 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1248 * and @data in the inode cache and if present it is returned with an increased
1249 * reference count. This is a generalized version of iget_locked() for file
1250 * systems where the inode number is not sufficient for unique identification
1251 * of an inode.
1252 *
1253 * If the inode is not in cache, get_new_inode() is called to allocate a new
1254 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1255 * file system gets to fill it in before unlocking it via unlock_new_inode().
1256 *
1257 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1258 */
1259struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1260 int (*test)(struct inode *, void *),
1261 int (*set)(struct inode *, void *), void *data)
1262{
1263 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1264 struct inode *inode;
1265
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001266 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (inode)
1268 return inode;
1269 /*
1270 * get_new_inode() will do the right thing, re-trying the search
1271 * in case it had to block at any point.
1272 */
1273 return get_new_inode(sb, head, test, set, data);
1274}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275EXPORT_SYMBOL(iget5_locked);
1276
1277/**
1278 * iget_locked - obtain an inode from a mounted file system
1279 * @sb: super block of file system
1280 * @ino: inode number to get
1281 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1283 * the inode cache and if present it is returned with an increased reference
1284 * count. This is for file systems where the inode number is sufficient for
1285 * unique identification of an inode.
1286 *
1287 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1288 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1289 * The file system gets to fill it in before unlocking it via
1290 * unlock_new_inode().
1291 */
1292struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1293{
1294 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1295 struct inode *inode;
1296
1297 inode = ifind_fast(sb, head, ino);
1298 if (inode)
1299 return inode;
1300 /*
1301 * get_new_inode_fast() will do the right thing, re-trying the search
1302 * in case it had to block at any point.
1303 */
1304 return get_new_inode_fast(sb, head, ino);
1305}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306EXPORT_SYMBOL(iget_locked);
1307
Al Viro261bca82008-12-30 01:48:21 -05001308int insert_inode_locked(struct inode *inode)
1309{
1310 struct super_block *sb = inode->i_sb;
1311 ino_t ino = inode->i_ino;
1312 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001313
Al Viro261bca82008-12-30 01:48:21 -05001314 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001315 struct hlist_node *node;
1316 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001317 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001318 hlist_for_each_entry(old, node, head, i_hash) {
1319 if (old->i_ino != ino)
1320 continue;
1321 if (old->i_sb != sb)
1322 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001323 spin_lock(&old->i_lock);
1324 if (old->i_state & (I_FREEING|I_WILL_FREE)) {
1325 spin_unlock(&old->i_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001326 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001327 }
Al Viro72a43d62009-05-13 19:13:40 +01001328 break;
1329 }
1330 if (likely(!node)) {
Dave Chinner250df6e2011-03-22 22:23:36 +11001331 spin_lock(&inode->i_lock);
1332 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001333 hlist_add_head(&inode->i_hash, head);
Dave Chinner250df6e2011-03-22 22:23:36 +11001334 spin_unlock(&inode->i_lock);
Al Viro261bca82008-12-30 01:48:21 -05001335 spin_unlock(&inode_lock);
1336 return 0;
1337 }
1338 __iget(old);
Dave Chinner250df6e2011-03-22 22:23:36 +11001339 spin_unlock(&old->i_lock);
Al Viro261bca82008-12-30 01:48:21 -05001340 spin_unlock(&inode_lock);
1341 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001342 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001343 iput(old);
1344 return -EBUSY;
1345 }
1346 iput(old);
1347 }
1348}
Al Viro261bca82008-12-30 01:48:21 -05001349EXPORT_SYMBOL(insert_inode_locked);
1350
1351int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1352 int (*test)(struct inode *, void *), void *data)
1353{
1354 struct super_block *sb = inode->i_sb;
1355 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001356
Al Viro261bca82008-12-30 01:48:21 -05001357 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001358 struct hlist_node *node;
1359 struct inode *old = NULL;
1360
Al Viro261bca82008-12-30 01:48:21 -05001361 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001362 hlist_for_each_entry(old, node, head, i_hash) {
1363 if (old->i_sb != sb)
1364 continue;
1365 if (!test(old, data))
1366 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001367 spin_lock(&old->i_lock);
1368 if (old->i_state & (I_FREEING|I_WILL_FREE)) {
1369 spin_unlock(&old->i_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001370 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001371 }
Al Viro72a43d62009-05-13 19:13:40 +01001372 break;
1373 }
1374 if (likely(!node)) {
Dave Chinner250df6e2011-03-22 22:23:36 +11001375 spin_lock(&inode->i_lock);
1376 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001377 hlist_add_head(&inode->i_hash, head);
Dave Chinner250df6e2011-03-22 22:23:36 +11001378 spin_unlock(&inode->i_lock);
Al Viro261bca82008-12-30 01:48:21 -05001379 spin_unlock(&inode_lock);
1380 return 0;
1381 }
1382 __iget(old);
Dave Chinner250df6e2011-03-22 22:23:36 +11001383 spin_unlock(&old->i_lock);
Al Viro261bca82008-12-30 01:48:21 -05001384 spin_unlock(&inode_lock);
1385 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001386 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001387 iput(old);
1388 return -EBUSY;
1389 }
1390 iput(old);
1391 }
1392}
Al Viro261bca82008-12-30 01:48:21 -05001393EXPORT_SYMBOL(insert_inode_locked4);
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Al Viro45321ac2010-06-07 13:43:19 -04001396int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Al Viro45321ac2010-06-07 13:43:19 -04001398 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400EXPORT_SYMBOL(generic_delete_inode);
1401
Al Viro45321ac2010-06-07 13:43:19 -04001402/*
1403 * Normal UNIX filesystem behaviour: delete the
1404 * inode when the usage count drops to zero, and
1405 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001406 */
Al Viro45321ac2010-06-07 13:43:19 -04001407int generic_drop_inode(struct inode *inode)
1408{
Al Viro1d3382c2010-10-23 15:19:20 -04001409 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001410}
1411EXPORT_SYMBOL_GPL(generic_drop_inode);
1412
1413/*
1414 * Called when we're dropping the last reference
1415 * to an inode.
1416 *
1417 * Call the FS "drop_inode()" function, defaulting to
1418 * the legacy UNIX filesystem behaviour. If it tells
1419 * us to evict inode, do so. Otherwise, retain inode
1420 * in cache if fs is alive, sync and evict if fs is
1421 * shutting down.
1422 */
1423static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
1425 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001426 const struct super_operations *op = inode->i_sb->s_op;
1427 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Dave Chinner250df6e2011-03-22 22:23:36 +11001429 spin_lock(&inode->i_lock);
1430 WARN_ON(inode->i_state & I_NEW);
1431
Al Viro45321ac2010-06-07 13:43:19 -04001432 if (op && op->drop_inode)
1433 drop = op->drop_inode(inode);
1434 else
1435 drop = generic_drop_inode(inode);
1436
1437 if (!drop) {
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001438 if (sb->s_flags & MS_ACTIVE) {
Nick Piggin9e38d862010-10-23 06:55:17 -04001439 inode->i_state |= I_REFERENCED;
1440 if (!(inode->i_state & (I_DIRTY|I_SYNC))) {
1441 inode_lru_list_add(inode);
1442 }
Dave Chinner250df6e2011-03-22 22:23:36 +11001443 spin_unlock(&inode->i_lock);
Alexander Viro991114c2005-06-23 00:09:01 -07001444 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001445 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001446 }
1447 inode->i_state |= I_WILL_FREE;
Dave Chinner250df6e2011-03-22 22:23:36 +11001448 spin_unlock(&inode->i_lock);
Alexander Viro991114c2005-06-23 00:09:01 -07001449 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 write_inode_now(inode, 1);
1451 spin_lock(&inode_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +11001452 spin_lock(&inode->i_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001453 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001454 inode->i_state &= ~I_WILL_FREE;
Dave Chinner4c51acb2010-10-23 06:58:09 -04001455 __remove_inode_hash(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001457
Alexander Viro991114c2005-06-23 00:09:01 -07001458 inode->i_state |= I_FREEING;
Dave Chinner250df6e2011-03-22 22:23:36 +11001459 spin_unlock(&inode->i_lock);
Nick Piggin9e38d862010-10-23 06:55:17 -04001460
1461 /*
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001462 * Move the inode off the IO lists and LRU once I_FREEING is
1463 * set so that it won't get moved back on there if it is dirty.
Nick Piggin9e38d862010-10-23 06:55:17 -04001464 */
1465 inode_lru_list_del(inode);
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001466 list_del_init(&inode->i_wb_list);
Nick Piggin9e38d862010-10-23 06:55:17 -04001467
Christoph Hellwig646ec462010-10-23 07:15:32 -04001468 __inode_sb_list_del(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001470 evict(inode);
Dave Chinner4c51acb2010-10-23 06:58:09 -04001471 remove_inode_hash(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +11001472 spin_lock(&inode->i_lock);
1473 wake_up_bit(&inode->i_state, __I_NEW);
Al Viro45321ac2010-06-07 13:43:19 -04001474 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Dave Chinner250df6e2011-03-22 22:23:36 +11001475 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 destroy_inode(inode);
1477}
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301480 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 * @inode: inode to put
1482 *
1483 * Puts an inode, dropping its usage count. If the inode use count hits
1484 * zero, the inode is then freed and may also be destroyed.
1485 *
1486 * Consequently, iput() can sleep.
1487 */
1488void iput(struct inode *inode)
1489{
1490 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001491 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1494 iput_final(inode);
1495 }
1496}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497EXPORT_SYMBOL(iput);
1498
1499/**
1500 * bmap - find a block number in a file
1501 * @inode: inode of file
1502 * @block: block to find
1503 *
1504 * Returns the block number on the device holding the inode that
1505 * is the disk block number for the block of the file requested.
1506 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301507 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 * file.
1509 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301510sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 sector_t res = 0;
1513 if (inode->i_mapping->a_ops->bmap)
1514 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1515 return res;
1516}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517EXPORT_SYMBOL(bmap);
1518
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001519/*
1520 * With relative atime, only update atime if the previous atime is
1521 * earlier than either the ctime or mtime or if at least a day has
1522 * passed since the last atime update.
1523 */
1524static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1525 struct timespec now)
1526{
1527
1528 if (!(mnt->mnt_flags & MNT_RELATIME))
1529 return 1;
1530 /*
1531 * Is mtime younger than atime? If yes, update atime:
1532 */
1533 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1534 return 1;
1535 /*
1536 * Is ctime younger than atime? If yes, update atime:
1537 */
1538 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1539 return 1;
1540
1541 /*
1542 * Is the previous atime value older than a day? If yes,
1543 * update atime:
1544 */
1545 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1546 return 1;
1547 /*
1548 * Good, we can skip the atime update:
1549 */
1550 return 0;
1551}
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001554 * touch_atime - update the access time
1555 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001556 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 *
1558 * Update the accessed time on an inode and mark it for writeback.
1559 * This function automatically handles read only file systems and media,
1560 * as well as the "noatime" flag and inode specific "noatime" markers.
1561 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001562void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001564 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 struct timespec now;
1566
Andrew Mortonb2276132006-12-13 00:34:33 -08001567 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001568 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001569 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001570 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001571 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001572 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001573
Dave Hansencdb70f32008-02-15 14:37:41 -08001574 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001575 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001576 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001577 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001580
1581 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001582 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001583
Valerie Henson47ae32d2006-12-13 00:34:34 -08001584 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001585 return;
1586
1587 if (mnt_want_write(mnt))
1588 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001589
1590 inode->i_atime = now;
1591 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001592 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001594EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001597 * file_update_time - update mtime and ctime time
1598 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001600 * Update the mtime and ctime members of an inode and mark the inode
1601 * for writeback. Note that this function is meant exclusively for
1602 * usage in the file write path of filesystems, and filesystems may
1603 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001604 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001605 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 */
1607
Christoph Hellwig870f4812006-01-09 20:52:01 -08001608void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001610 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001612 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Andi Kleence06e0b2009-09-18 13:05:48 -07001614 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (IS_NOCMTIME(inode))
1616 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001617
Andi Kleence06e0b2009-09-18 13:05:48 -07001618 now = current_fs_time(inode->i_sb);
1619 if (!timespec_equal(&inode->i_mtime, &now))
1620 sync_it = S_MTIME;
1621
1622 if (!timespec_equal(&inode->i_ctime, &now))
1623 sync_it |= S_CTIME;
1624
1625 if (IS_I_VERSION(inode))
1626 sync_it |= S_VERSION;
1627
1628 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return;
1630
Andi Kleence06e0b2009-09-18 13:05:48 -07001631 /* Finally allowed to write? Takes lock. */
1632 if (mnt_want_write_file(file))
1633 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Andi Kleence06e0b2009-09-18 13:05:48 -07001635 /* Only change inode inside the lock region */
1636 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001637 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001638 if (sync_it & S_CTIME)
1639 inode->i_ctime = now;
1640 if (sync_it & S_MTIME)
1641 inode->i_mtime = now;
1642 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001643 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001645EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647int inode_needs_sync(struct inode *inode)
1648{
1649 if (IS_SYNC(inode))
1650 return 1;
1651 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1652 return 1;
1653 return 0;
1654}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655EXPORT_SYMBOL(inode_needs_sync);
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657int inode_wait(void *word)
1658{
1659 schedule();
1660 return 0;
1661}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001662EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001665 * If we try to find an inode in the inode hash while it is being
1666 * deleted, we have to wait until the filesystem completes its
1667 * deletion before reporting that it isn't found. This function waits
1668 * until the deletion _might_ have completed. Callers are responsible
1669 * to recheck inode state.
1670 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001671 * It doesn't matter if I_NEW is not set initially, a call to
Dave Chinner250df6e2011-03-22 22:23:36 +11001672 * wake_up_bit(&inode->i_state, __I_NEW) after removing from the hash list
1673 * will DTRT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 */
1675static void __wait_on_freeing_inode(struct inode *inode)
1676{
1677 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001678 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1679 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
Dave Chinner250df6e2011-03-22 22:23:36 +11001681 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 spin_unlock(&inode_lock);
1683 schedule();
1684 finish_wait(wq, &wait.wait);
1685 spin_lock(&inode_lock);
1686}
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688static __initdata unsigned long ihash_entries;
1689static int __init set_ihash_entries(char *str)
1690{
1691 if (!str)
1692 return 0;
1693 ihash_entries = simple_strtoul(str, &str, 0);
1694 return 1;
1695}
1696__setup("ihash_entries=", set_ihash_entries);
1697
1698/*
1699 * Initialize the waitqueues and inode hash table.
1700 */
1701void __init inode_init_early(void)
1702{
1703 int loop;
1704
1705 /* If hashes are distributed across NUMA nodes, defer
1706 * hash allocation until vmalloc space is available.
1707 */
1708 if (hashdist)
1709 return;
1710
1711 inode_hashtable =
1712 alloc_large_system_hash("Inode-cache",
1713 sizeof(struct hlist_head),
1714 ihash_entries,
1715 14,
1716 HASH_EARLY,
1717 &i_hash_shift,
1718 &i_hash_mask,
1719 0);
1720
1721 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1722 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1723}
1724
Denis Cheng74bf17c2007-10-16 23:26:30 -07001725void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
1727 int loop;
1728
1729 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001730 inode_cachep = kmem_cache_create("inode_cache",
1731 sizeof(struct inode),
1732 0,
1733 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1734 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001735 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001736 register_shrinker(&icache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 /* Hash may have been set up in inode_init_early */
1739 if (!hashdist)
1740 return;
1741
1742 inode_hashtable =
1743 alloc_large_system_hash("Inode-cache",
1744 sizeof(struct hlist_head),
1745 ihash_entries,
1746 14,
1747 0,
1748 &i_hash_shift,
1749 &i_hash_mask,
1750 0);
1751
1752 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1753 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1754}
1755
1756void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1757{
1758 inode->i_mode = mode;
1759 if (S_ISCHR(mode)) {
1760 inode->i_fop = &def_chr_fops;
1761 inode->i_rdev = rdev;
1762 } else if (S_ISBLK(mode)) {
1763 inode->i_fop = &def_blk_fops;
1764 inode->i_rdev = rdev;
1765 } else if (S_ISFIFO(mode))
1766 inode->i_fop = &def_fifo_fops;
1767 else if (S_ISSOCK(mode))
1768 inode->i_fop = &bad_sock_fops;
1769 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001770 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1771 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1772 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773}
1774EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001775
1776/**
Ben Hutchingseaae6682011-02-15 12:48:09 +00001777 * inode_init_owner - Init uid,gid,mode for new inode according to posix standards
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001778 * @inode: New inode
1779 * @dir: Directory inode
1780 * @mode: mode of the new inode
1781 */
1782void inode_init_owner(struct inode *inode, const struct inode *dir,
1783 mode_t mode)
1784{
1785 inode->i_uid = current_fsuid();
1786 if (dir && dir->i_mode & S_ISGID) {
1787 inode->i_gid = dir->i_gid;
1788 if (S_ISDIR(mode))
1789 mode |= S_ISGID;
1790 } else
1791 inode->i_gid = current_fsgid();
1792 inode->i_mode = mode;
1793}
1794EXPORT_SYMBOL(inode_init_owner);
Serge E. Hallyne795b712011-03-23 16:43:25 -07001795
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001796/**
1797 * inode_owner_or_capable - check current task permissions to inode
1798 * @inode: inode being checked
1799 *
1800 * Return true if current either has CAP_FOWNER to the inode, or
1801 * owns the file.
Serge E. Hallyne795b712011-03-23 16:43:25 -07001802 */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001803bool inode_owner_or_capable(const struct inode *inode)
Serge E. Hallyne795b712011-03-23 16:43:25 -07001804{
1805 struct user_namespace *ns = inode_userns(inode);
1806
1807 if (current_user_ns() == ns && current_fsuid() == inode->i_uid)
1808 return true;
1809 if (ns_capable(ns, CAP_FOWNER))
1810 return true;
1811 return false;
1812}
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001813EXPORT_SYMBOL(inode_owner_or_capable);