blob: 9c2b795ccc938e3db2d75378bae1ec4fc4e198ff [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/*
30 * This is needed for the following functions:
31 * - inode_has_buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * - invalidate_bdev
33 *
34 * FIXME: remove all knowledge of the buffer layer from this file
35 */
36#include <linux/buffer_head.h>
37
38/*
39 * New inode.c implementation.
40 *
41 * This implementation has the basic premise of trying
42 * to be extremely low-overhead and SMP-safe, yet be
43 * simple enough to be "obviously correct".
44 *
45 * Famous last words.
46 */
47
48/* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
49
50/* #define INODE_PARANOIA 1 */
51/* #define INODE_DEBUG 1 */
52
53/*
54 * Inode lookup is no longer as critical as it used to be:
55 * most of the lookups are going to be through the dcache.
56 */
57#define I_HASHBITS i_hash_shift
58#define I_HASHMASK i_hash_mask
59
Eric Dumazetfa3536c2006-03-26 01:37:24 -080060static unsigned int i_hash_mask __read_mostly;
61static unsigned int i_hash_shift __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
64 * Each inode can be on two separate lists. One is
65 * the hash list of the inode, used for lookups. The
66 * other linked list is the "type" list:
67 * "in_use" - valid inode, i_count > 0, i_nlink > 0
68 * "dirty" - as "in_use" but also dirty
69 * "unused" - valid inode, i_count = 0
70 *
71 * A "dirty" list is maintained for each super block,
72 * allowing for low-overhead inode sync() operations.
73 */
74
Nick Piggin7ccf19a2010-10-21 11:49:30 +110075static LIST_HEAD(inode_lru);
Eric Dumazetfa3536c2006-03-26 01:37:24 -080076static struct hlist_head *inode_hashtable __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * A simple spinlock to protect the list manipulations.
80 *
81 * NOTE! You also have to own the lock if you change
82 * the i_state of an inode while it is in use..
83 */
84DEFINE_SPINLOCK(inode_lock);
85
86/*
Nick Piggin88e0fbc2009-09-22 16:43:50 -070087 * iprune_sem provides exclusion between the kswapd or try_to_free_pages
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * icache shrinking path, and the umount path. Without this exclusion,
89 * by the time prune_icache calls iput for the inode whose pages it has
90 * been invalidating, or by the time it calls clear_inode & destroy_inode
91 * from its final dispose_list, the struct super_block they refer to
92 * (for inode->i_sb->s_op) may already have been freed and reused.
Nick Piggin88e0fbc2009-09-22 16:43:50 -070093 *
94 * We make this an rwsem because the fastpath is icache shrinking. In
95 * some cases a filesystem may be doing a significant amount of work in
96 * its inode reclaim code, so this should improve parallelism.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
Nick Piggin88e0fbc2009-09-22 16:43:50 -070098static DECLARE_RWSEM(iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
101 * Statistics gathering..
102 */
103struct inodes_stat_t inodes_stat;
104
Nick Piggin3e880fb2011-01-07 17:49:19 +1100105static DEFINE_PER_CPU(unsigned int, nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400106
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530107static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Nick Piggin3e880fb2011-01-07 17:49:19 +1100109static int get_nr_inodes(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400110{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100111 int i;
112 int sum = 0;
113 for_each_possible_cpu(i)
114 sum += per_cpu(nr_inodes, i);
115 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400116}
117
118static inline int get_nr_inodes_unused(void)
119{
Nick Piggin86c87492011-01-07 17:49:18 +1100120 return inodes_stat.nr_unused;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400121}
122
123int get_nr_dirty_inodes(void)
124{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100125 /* not actually dirty inodes, but a wild approximation */
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400126 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
127 return nr_dirty > 0 ? nr_dirty : 0;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400128}
129
130/*
131 * Handle nr_inode sysctl
132 */
133#ifdef CONFIG_SYSCTL
134int proc_nr_inodes(ctl_table *table, int write,
135 void __user *buffer, size_t *lenp, loff_t *ppos)
136{
137 inodes_stat.nr_inodes = get_nr_inodes();
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400138 return proc_dointvec(table, write, buffer, lenp, ppos);
139}
140#endif
141
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700142static void wake_up_inode(struct inode *inode)
143{
144 /*
145 * Prevent speculative execution through spin_unlock(&inode_lock);
146 */
147 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100148 wake_up_bit(&inode->i_state, __I_NEW);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700149}
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/*
341 * inode_lock must be held
342 */
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);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400418 hlist_add_head(&inode->i_hash, b);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400419 spin_unlock(&inode_lock);
420}
421EXPORT_SYMBOL(__insert_inode_hash);
422
423/**
424 * __remove_inode_hash - remove an inode from the hash
425 * @inode: inode to unhash
426 *
427 * Remove an inode from the superblock.
428 */
429static void __remove_inode_hash(struct inode *inode)
430{
431 hlist_del_init(&inode->i_hash);
432}
433
434/**
435 * remove_inode_hash - remove an inode from the hash
436 * @inode: inode to unhash
437 *
438 * Remove an inode from the superblock.
439 */
440void remove_inode_hash(struct inode *inode)
441{
442 spin_lock(&inode_lock);
443 hlist_del_init(&inode->i_hash);
444 spin_unlock(&inode_lock);
445}
446EXPORT_SYMBOL(remove_inode_hash);
447
Al Virob0683aa2010-06-04 20:55:25 -0400448void end_writeback(struct inode *inode)
449{
450 might_sleep();
451 BUG_ON(inode->i_data.nrpages);
452 BUG_ON(!list_empty(&inode->i_data.private_list));
453 BUG_ON(!(inode->i_state & I_FREEING));
454 BUG_ON(inode->i_state & I_CLEAR);
455 inode_sync_wait(inode);
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100456 /* don't need i_lock here, no concurrent mods to i_state */
Al Virob0683aa2010-06-04 20:55:25 -0400457 inode->i_state = I_FREEING | I_CLEAR;
458}
459EXPORT_SYMBOL(end_writeback);
460
Al Viro644da592010-06-07 13:21:05 -0400461static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400462{
463 const struct super_operations *op = inode->i_sb->s_op;
464
Al Virobe7ce412010-06-04 19:40:39 -0400465 if (op->evict_inode) {
466 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400467 } else {
468 if (inode->i_data.nrpages)
469 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400470 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400471 }
Al Viro661074e2010-06-04 20:19:55 -0400472 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
473 bd_forget(inode);
474 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
475 cd_forget(inode);
Al Virob4272d42010-06-04 19:33:20 -0400476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478/*
479 * dispose_list - dispose of the contents of a local list
480 * @head: the head of the list to free
481 *
482 * Dispose-list gets a local list with local inodes in it, so it doesn't
483 * need to worry about list corruption and SMP locks.
484 */
485static void dispose_list(struct list_head *head)
486{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 while (!list_empty(head)) {
488 struct inode *inode;
489
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100490 inode = list_first_entry(head, struct inode, i_lru);
491 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Al Viro644da592010-06-07 13:21:05 -0400493 evict(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700494
495 spin_lock(&inode_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400496 __remove_inode_hash(inode);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400497 __inode_sb_list_del(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700498 spin_unlock(&inode_lock);
499
500 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505/**
Al Viro63997e92010-10-25 20:49:35 -0400506 * evict_inodes - evict all evictable inodes for a superblock
507 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 *
Al Viro63997e92010-10-25 20:49:35 -0400509 * Make sure that no inodes with zero refcount are retained. This is
510 * called by superblock shutdown after having MS_ACTIVE flag removed,
511 * so any inode reaching zero refcount during or after that call will
512 * be immediately evicted.
513 */
514void evict_inodes(struct super_block *sb)
515{
516 struct inode *inode, *next;
517 LIST_HEAD(dispose);
518
519 down_write(&iprune_sem);
520
521 spin_lock(&inode_lock);
522 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
523 if (atomic_read(&inode->i_count))
524 continue;
525
526 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
527 WARN_ON(1);
528 continue;
529 }
530
531 inode->i_state |= I_FREEING;
532
533 /*
534 * Move the inode off the IO lists and LRU once I_FREEING is
535 * set so that it won't get moved back on there if it is dirty.
536 */
537 list_move(&inode->i_lru, &dispose);
538 list_del_init(&inode->i_wb_list);
539 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100540 inodes_stat.nr_unused--;
Al Viro63997e92010-10-25 20:49:35 -0400541 }
542 spin_unlock(&inode_lock);
543
544 dispose_list(&dispose);
545 up_write(&iprune_sem);
546}
547
548/**
Christoph Hellwiga0318782010-10-24 19:40:33 +0200549 * invalidate_inodes - attempt to free all inodes on a superblock
550 * @sb: superblock to operate on
551 *
552 * Attempts to free all inodes for a given superblock. If there were any
553 * busy inodes return a non-zero value, else zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530555int invalidate_inodes(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400557 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200558 struct inode *inode, *next;
559 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700561 down_write(&iprune_sem);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 spin_lock(&inode_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200564 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Al Viro63997e92010-10-25 20:49:35 -0400565 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 continue;
Christoph Hellwig99a38912010-10-23 19:07:20 +0200567 if (atomic_read(&inode->i_count)) {
568 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 continue;
570 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200571
Christoph Hellwig99a38912010-10-23 19:07:20 +0200572 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100573
574 /*
575 * Move the inode off the IO lists and LRU once I_FREEING is
576 * set so that it won't get moved back on there if it is dirty.
577 */
Christoph Hellwiga0318782010-10-24 19:40:33 +0200578 list_move(&inode->i_lru, &dispose);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100579 list_del_init(&inode->i_wb_list);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200580 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100581 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 spin_unlock(&inode_lock);
584
Christoph Hellwiga0318782010-10-24 19:40:33 +0200585 dispose_list(&dispose);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700586 up_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 return busy;
589}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591static int can_unuse(struct inode *inode)
592{
Nick Piggin9e38d862010-10-23 06:55:17 -0400593 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return 0;
595 if (inode_has_buffers(inode))
596 return 0;
597 if (atomic_read(&inode->i_count))
598 return 0;
599 if (inode->i_data.nrpages)
600 return 0;
601 return 1;
602}
603
604/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400605 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
606 * temporary list and then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 *
608 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400609 * pagecache removed. If the inode has metadata buffers attached to
610 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400612 * If the inode has the I_REFERENCED flag set, then it means that it has been
613 * used recently - the flag is set in iput_final(). When we encounter such an
614 * inode, clear the flag and move it to the back of the LRU so it gets another
615 * pass through the LRU before it gets reclaimed. This is necessary because of
616 * the fact we are doing lazy LRU updates to minimise lock contention so the
617 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
618 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 */
620static void prune_icache(int nr_to_scan)
621{
622 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 int nr_scanned;
624 unsigned long reap = 0;
625
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700626 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 spin_lock(&inode_lock);
628 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
629 struct inode *inode;
630
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100631 if (list_empty(&inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 break;
633
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100634 inode = list_entry(inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Nick Piggin9e38d862010-10-23 06:55:17 -0400636 /*
637 * Referenced or dirty inodes are still in use. Give them
638 * another pass through the LRU as we canot reclaim them now.
639 */
640 if (atomic_read(&inode->i_count) ||
641 (inode->i_state & ~I_REFERENCED)) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100642 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100643 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400644 continue;
645 }
646
647 /* recently referenced inodes get one more pass */
648 if (inode->i_state & I_REFERENCED) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100649 list_move(&inode->i_lru, &inode_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400650 inode->i_state &= ~I_REFERENCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 continue;
652 }
653 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
654 __iget(inode);
655 spin_unlock(&inode_lock);
656 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800657 reap += invalidate_mapping_pages(&inode->i_data,
658 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 iput(inode);
660 spin_lock(&inode_lock);
661
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100662 if (inode != list_entry(inode_lru.next,
663 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 continue; /* wrong inode or list_empty */
665 if (!can_unuse(inode))
666 continue;
667 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700668 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100670
671 /*
672 * Move the inode off the IO lists and LRU once I_FREEING is
673 * set so that it won't get moved back on there if it is dirty.
674 */
675 list_move(&inode->i_lru, &freeable);
676 list_del_init(&inode->i_wb_list);
Nick Piggin86c87492011-01-07 17:49:18 +1100677 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700679 if (current_is_kswapd())
680 __count_vm_events(KSWAPD_INODESTEAL, reap);
681 else
682 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 spin_unlock(&inode_lock);
684
685 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700686 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
689/*
690 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
691 * "unused" means that no dentries are referring to the inodes: the files are
692 * not open and the dcache references to those inodes have already been
693 * reclaimed.
694 *
695 * This function is passed the number of inodes to scan, and it returns the
696 * total number of remaining possibly-reclaimable inodes.
697 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000698static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 if (nr) {
701 /*
702 * Nasty deadlock avoidance. We may hold various FS locks,
703 * and we don't want to recurse into the FS that called us
704 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530705 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (!(gfp_mask & __GFP_FS))
707 return -1;
708 prune_icache(nr);
709 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400710 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
Rusty Russell8e1f9362007-07-17 04:03:17 -0700713static struct shrinker icache_shrinker = {
714 .shrink = shrink_icache_memory,
715 .seeks = DEFAULT_SEEKS,
716};
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718static void __wait_on_freeing_inode(struct inode *inode);
719/*
720 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530722static struct inode *find_inode(struct super_block *sb,
723 struct hlist_head *head,
724 int (*test)(struct inode *, void *),
725 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530728 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700731 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (inode->i_sb != sb)
733 continue;
734 if (!test(inode, data))
735 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400736 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 __wait_on_freeing_inode(inode);
738 goto repeat;
739 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400740 __iget(inode);
741 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400743 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/*
747 * find_inode_fast is the fast path version of find_inode, see the comment at
748 * iget_locked for details.
749 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530750static struct inode *find_inode_fast(struct super_block *sb,
751 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530754 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700757 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (inode->i_ino != ino)
759 continue;
760 if (inode->i_sb != sb)
761 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400762 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 __wait_on_freeing_inode(inode);
764 goto repeat;
765 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400766 __iget(inode);
767 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400769 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Eric Dumazetf991bd22010-10-23 11:18:01 -0400772/*
773 * Each cpu owns a range of LAST_INO_BATCH numbers.
774 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
775 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100776 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400777 * This does not significantly increase overflow rate because every CPU can
778 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
779 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
780 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
781 * overflow rate by 2x, which does not seem too significant.
782 *
783 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
784 * error if st_ino won't fit in target struct field. Use 32bit counter
785 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100786 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400787#define LAST_INO_BATCH 1024
788static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100789
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400790unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400791{
792 unsigned int *p = &get_cpu_var(last_ino);
793 unsigned int res = *p;
794
795#ifdef CONFIG_SMP
796 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
797 static atomic_t shared_last_ino;
798 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
799
800 res = next - LAST_INO_BATCH;
801 }
802#endif
803
804 *p = ++res;
805 put_cpu_var(last_ino);
806 return res;
David Chinner8290c352008-10-30 17:35:24 +1100807}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400808EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810/**
811 * new_inode - obtain an inode
812 * @sb: superblock
813 *
Mel Gorman769848c2007-07-17 04:03:05 -0700814 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800815 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700816 * If HIGHMEM pages are unsuitable or it is known that pages allocated
817 * for the page cache are not reclaimable or migratable,
818 * mapping_set_gfp_mask() must be called with suitable flags on the
819 * newly created inode's mapping
820 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 */
822struct inode *new_inode(struct super_block *sb)
823{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530824 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 inode = alloc_inode(sb);
829 if (inode) {
830 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400831 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 inode->i_state = 0;
833 spin_unlock(&inode_lock);
834 }
835 return inode;
836}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837EXPORT_SYMBOL(new_inode);
838
839void unlock_new_inode(struct inode *inode)
840{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200841#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900842 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200843 struct file_system_type *type = inode->i_sb->s_type;
844
Jan Kara9a7aa122009-06-04 15:26:49 +0200845 /* Set new key only if filesystem hasn't already changed it */
846 if (!lockdep_match_class(&inode->i_mutex,
847 &type->i_mutex_key)) {
848 /*
849 * ensure nobody is actually holding i_mutex
850 */
851 mutex_destroy(&inode->i_mutex);
852 mutex_init(&inode->i_mutex);
853 lockdep_set_class(&inode->i_mutex,
854 &type->i_mutex_dir_key);
855 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200856 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200857#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /*
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100859 * This is special! We do not need the spinlock when clearing I_NEW,
Jan Kara580be082009-09-21 17:01:06 -0700860 * because we're guaranteed that nobody else tries to do anything about
861 * the state of the inode when it is locked, as we just created it (so
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100862 * there can be no old holders that haven't tested I_NEW).
Jan Kara580be082009-09-21 17:01:06 -0700863 * However we must emit the memory barrier so that other CPUs reliably
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100864 * see the clearing of I_NEW after the other inode initialisation has
Jan Kara580be082009-09-21 17:01:06 -0700865 * completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 */
Jan Kara580be082009-09-21 17:01:06 -0700867 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100868 WARN_ON(!(inode->i_state & I_NEW));
869 inode->i_state &= ~I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 wake_up_inode(inode);
871}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872EXPORT_SYMBOL(unlock_new_inode);
873
874/*
875 * This is called without the inode lock held.. Be careful.
876 *
877 * We no longer cache the sb_flags in i_flags - see fs.h
878 * -- rmk@arm.uk.linux.org
879 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530880static struct inode *get_new_inode(struct super_block *sb,
881 struct hlist_head *head,
882 int (*test)(struct inode *, void *),
883 int (*set)(struct inode *, void *),
884 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530886 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 inode = alloc_inode(sb);
889 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530890 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 spin_lock(&inode_lock);
893 /* We released the lock, so.. */
894 old = find_inode(sb, head, test, data);
895 if (!old) {
896 if (set(inode, data))
897 goto set_failed;
898
Christoph Hellwig646ec462010-10-23 07:15:32 -0400899 hlist_add_head(&inode->i_hash, head);
900 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100901 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 spin_unlock(&inode_lock);
903
904 /* Return the locked inode with I_NEW set, the
905 * caller is responsible for filling in the contents
906 */
907 return inode;
908 }
909
910 /*
911 * Uhhuh, somebody else created the same inode under
912 * us. Use the old inode instead of the one we just
913 * allocated.
914 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 spin_unlock(&inode_lock);
916 destroy_inode(inode);
917 inode = old;
918 wait_on_inode(inode);
919 }
920 return inode;
921
922set_failed:
923 spin_unlock(&inode_lock);
924 destroy_inode(inode);
925 return NULL;
926}
927
928/*
929 * get_new_inode_fast is the fast path version of get_new_inode, see the
930 * comment at iget_locked for details.
931 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530932static struct inode *get_new_inode_fast(struct super_block *sb,
933 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530935 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 inode = alloc_inode(sb);
938 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530939 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 spin_lock(&inode_lock);
942 /* We released the lock, so.. */
943 old = find_inode_fast(sb, head, ino);
944 if (!old) {
945 inode->i_ino = ino;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400946 hlist_add_head(&inode->i_hash, head);
947 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100948 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 spin_unlock(&inode_lock);
950
951 /* Return the locked inode with I_NEW set, the
952 * caller is responsible for filling in the contents
953 */
954 return inode;
955 }
956
957 /*
958 * Uhhuh, somebody else created the same inode under
959 * us. Use the old inode instead of the one we just
960 * allocated.
961 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 spin_unlock(&inode_lock);
963 destroy_inode(inode);
964 inode = old;
965 wait_on_inode(inode);
966 }
967 return inode;
968}
969
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400970/*
971 * search the inode cache for a matching inode number.
972 * If we find one, then the inode number we are trying to
973 * allocate is not unique and so we should not use it.
974 *
975 * Returns 1 if the inode number is unique, 0 if it is not.
976 */
977static int test_inode_iunique(struct super_block *sb, unsigned long ino)
978{
979 struct hlist_head *b = inode_hashtable + hash(sb, ino);
980 struct hlist_node *node;
981 struct inode *inode;
982
983 hlist_for_each_entry(inode, node, b, i_hash) {
984 if (inode->i_ino == ino && inode->i_sb == sb)
985 return 0;
986 }
987
988 return 1;
989}
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991/**
992 * iunique - get a unique inode number
993 * @sb: superblock
994 * @max_reserved: highest reserved inode number
995 *
996 * Obtain an inode number that is unique on the system for a given
997 * superblock. This is used by file systems that have no natural
998 * permanent inode numbering system. An inode number is returned that
999 * is higher than the reserved limit but unique.
1000 *
1001 * BUGS:
1002 * With a large number of inodes live on the file system this function
1003 * currently becomes quite slow.
1004 */
1005ino_t iunique(struct super_block *sb, ino_t max_reserved)
1006{
Jeff Layton866b04f2007-05-08 00:32:29 -07001007 /*
1008 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
1009 * error if st_ino won't fit in target struct field. Use 32bit counter
1010 * here to attempt to avoid that.
1011 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001012 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -07001013 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001016 spin_lock(&inode_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001017 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001018 do {
1019 if (counter <= max_reserved)
1020 counter = max_reserved + 1;
1021 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001022 } while (!test_inode_iunique(sb, res));
1023 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001024 spin_unlock(&inode_lock);
1025
1026 return res;
1027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028EXPORT_SYMBOL(iunique);
1029
1030struct inode *igrab(struct inode *inode)
1031{
1032 spin_lock(&inode_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -04001033 if (!(inode->i_state & (I_FREEING|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 __iget(inode);
1035 else
1036 /*
1037 * Handle the case where s_op->clear_inode is not been
1038 * called yet, and somebody is calling igrab
1039 * while the inode is getting freed.
1040 */
1041 inode = NULL;
1042 spin_unlock(&inode_lock);
1043 return inode;
1044}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045EXPORT_SYMBOL(igrab);
1046
1047/**
1048 * ifind - internal function, you want ilookup5() or iget5().
1049 * @sb: super block of file system to search
1050 * @head: the head of the list to search
1051 * @test: callback used for comparisons between inodes
1052 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001053 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 *
1055 * ifind() searches for the inode specified by @data in the inode
1056 * cache. This is a generalized version of ifind_fast() for file systems where
1057 * the inode number is not sufficient for unique identification of an inode.
1058 *
1059 * If the inode is in the cache, the inode is returned with an incremented
1060 * reference count.
1061 *
1062 * Otherwise NULL is returned.
1063 *
1064 * Note, @test is called with the inode_lock held, so can't sleep.
1065 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001066static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001068 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 struct inode *inode;
1071
1072 spin_lock(&inode_lock);
1073 inode = find_inode(sb, head, test, data);
1074 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001076 if (likely(wait))
1077 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return inode;
1079 }
1080 spin_unlock(&inode_lock);
1081 return NULL;
1082}
1083
1084/**
1085 * ifind_fast - internal function, you want ilookup() or iget().
1086 * @sb: super block of file system to search
1087 * @head: head of the list to search
1088 * @ino: inode number to search for
1089 *
1090 * ifind_fast() searches for the inode @ino in the inode cache. This is for
1091 * file systems where the inode number is sufficient for unique identification
1092 * of an inode.
1093 *
1094 * If the inode is in the cache, the inode is returned with an incremented
1095 * reference count.
1096 *
1097 * Otherwise NULL is returned.
1098 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001099static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 struct hlist_head *head, unsigned long ino)
1101{
1102 struct inode *inode;
1103
1104 spin_lock(&inode_lock);
1105 inode = find_inode_fast(sb, head, ino);
1106 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 spin_unlock(&inode_lock);
1108 wait_on_inode(inode);
1109 return inode;
1110 }
1111 spin_unlock(&inode_lock);
1112 return NULL;
1113}
1114
1115/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001116 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 * @sb: super block of file system to search
1118 * @hashval: hash value (usually inode number) to search for
1119 * @test: callback used for comparisons between inodes
1120 * @data: opaque data pointer to pass to @test
1121 *
1122 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1123 * @data in the inode cache. This is a generalized version of ilookup() for
1124 * file systems where the inode number is not sufficient for unique
1125 * identification of an inode.
1126 *
1127 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001128 * reference count. Note, the inode lock is not waited upon so you have to be
1129 * very careful what you do with the returned inode. You probably should be
1130 * using ilookup5() instead.
1131 *
1132 * Otherwise NULL is returned.
1133 *
1134 * Note, @test is called with the inode_lock held, so can't sleep.
1135 */
1136struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1137 int (*test)(struct inode *, void *), void *data)
1138{
1139 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1140
1141 return ifind(sb, head, test, data, 0);
1142}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001143EXPORT_SYMBOL(ilookup5_nowait);
1144
1145/**
1146 * ilookup5 - search for an inode in the inode cache
1147 * @sb: super block of file system to search
1148 * @hashval: hash value (usually inode number) to search for
1149 * @test: callback used for comparisons between inodes
1150 * @data: opaque data pointer to pass to @test
1151 *
1152 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1153 * @data in the inode cache. This is a generalized version of ilookup() for
1154 * file systems where the inode number is not sufficient for unique
1155 * identification of an inode.
1156 *
1157 * If the inode is in the cache, the inode lock is waited upon and the inode is
1158 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 *
1160 * Otherwise NULL is returned.
1161 *
1162 * Note, @test is called with the inode_lock held, so can't sleep.
1163 */
1164struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1165 int (*test)(struct inode *, void *), void *data)
1166{
1167 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1168
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001169 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171EXPORT_SYMBOL(ilookup5);
1172
1173/**
1174 * ilookup - search for an inode in the inode cache
1175 * @sb: super block of file system to search
1176 * @ino: inode number to search for
1177 *
1178 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1179 * This is for file systems where the inode number is sufficient for unique
1180 * identification of an inode.
1181 *
1182 * If the inode is in the cache, the inode is returned with an incremented
1183 * reference count.
1184 *
1185 * Otherwise NULL is returned.
1186 */
1187struct inode *ilookup(struct super_block *sb, unsigned long ino)
1188{
1189 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1190
1191 return ifind_fast(sb, head, ino);
1192}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193EXPORT_SYMBOL(ilookup);
1194
1195/**
1196 * iget5_locked - obtain an inode from a mounted file system
1197 * @sb: super block of file system
1198 * @hashval: hash value (usually inode number) to get
1199 * @test: callback used for comparisons between inodes
1200 * @set: callback used to initialize a new struct inode
1201 * @data: opaque data pointer to pass to @test and @set
1202 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1204 * and @data in the inode cache and if present it is returned with an increased
1205 * reference count. This is a generalized version of iget_locked() for file
1206 * systems where the inode number is not sufficient for unique identification
1207 * of an inode.
1208 *
1209 * If the inode is not in cache, get_new_inode() is called to allocate a new
1210 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1211 * file system gets to fill it in before unlocking it via unlock_new_inode().
1212 *
1213 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1214 */
1215struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1216 int (*test)(struct inode *, void *),
1217 int (*set)(struct inode *, void *), void *data)
1218{
1219 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1220 struct inode *inode;
1221
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001222 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (inode)
1224 return inode;
1225 /*
1226 * get_new_inode() will do the right thing, re-trying the search
1227 * in case it had to block at any point.
1228 */
1229 return get_new_inode(sb, head, test, set, data);
1230}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231EXPORT_SYMBOL(iget5_locked);
1232
1233/**
1234 * iget_locked - obtain an inode from a mounted file system
1235 * @sb: super block of file system
1236 * @ino: inode number to get
1237 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1239 * the inode cache and if present it is returned with an increased reference
1240 * count. This is for file systems where the inode number is sufficient for
1241 * unique identification of an inode.
1242 *
1243 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1244 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1245 * The file system gets to fill it in before unlocking it via
1246 * unlock_new_inode().
1247 */
1248struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1249{
1250 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1251 struct inode *inode;
1252
1253 inode = ifind_fast(sb, head, ino);
1254 if (inode)
1255 return inode;
1256 /*
1257 * get_new_inode_fast() will do the right thing, re-trying the search
1258 * in case it had to block at any point.
1259 */
1260 return get_new_inode_fast(sb, head, ino);
1261}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262EXPORT_SYMBOL(iget_locked);
1263
Al Viro261bca82008-12-30 01:48:21 -05001264int insert_inode_locked(struct inode *inode)
1265{
1266 struct super_block *sb = inode->i_sb;
1267 ino_t ino = inode->i_ino;
1268 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001269
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001270 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001271 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001272 struct hlist_node *node;
1273 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001274 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001275 hlist_for_each_entry(old, node, head, i_hash) {
1276 if (old->i_ino != ino)
1277 continue;
1278 if (old->i_sb != sb)
1279 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001280 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001281 continue;
1282 break;
1283 }
1284 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001285 hlist_add_head(&inode->i_hash, head);
1286 spin_unlock(&inode_lock);
1287 return 0;
1288 }
1289 __iget(old);
1290 spin_unlock(&inode_lock);
1291 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001292 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001293 iput(old);
1294 return -EBUSY;
1295 }
1296 iput(old);
1297 }
1298}
Al Viro261bca82008-12-30 01:48:21 -05001299EXPORT_SYMBOL(insert_inode_locked);
1300
1301int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1302 int (*test)(struct inode *, void *), void *data)
1303{
1304 struct super_block *sb = inode->i_sb;
1305 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001306
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001307 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001308
1309 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001310 struct hlist_node *node;
1311 struct inode *old = NULL;
1312
Al Viro261bca82008-12-30 01:48:21 -05001313 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001314 hlist_for_each_entry(old, node, head, i_hash) {
1315 if (old->i_sb != sb)
1316 continue;
1317 if (!test(old, data))
1318 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001319 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001320 continue;
1321 break;
1322 }
1323 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001324 hlist_add_head(&inode->i_hash, head);
1325 spin_unlock(&inode_lock);
1326 return 0;
1327 }
1328 __iget(old);
1329 spin_unlock(&inode_lock);
1330 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001331 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001332 iput(old);
1333 return -EBUSY;
1334 }
1335 iput(old);
1336 }
1337}
Al Viro261bca82008-12-30 01:48:21 -05001338EXPORT_SYMBOL(insert_inode_locked4);
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Al Viro45321ac2010-06-07 13:43:19 -04001341int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
Al Viro45321ac2010-06-07 13:43:19 -04001343 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345EXPORT_SYMBOL(generic_delete_inode);
1346
Al Viro45321ac2010-06-07 13:43:19 -04001347/*
1348 * Normal UNIX filesystem behaviour: delete the
1349 * inode when the usage count drops to zero, and
1350 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001351 */
Al Viro45321ac2010-06-07 13:43:19 -04001352int generic_drop_inode(struct inode *inode)
1353{
Al Viro1d3382c2010-10-23 15:19:20 -04001354 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001355}
1356EXPORT_SYMBOL_GPL(generic_drop_inode);
1357
1358/*
1359 * Called when we're dropping the last reference
1360 * to an inode.
1361 *
1362 * Call the FS "drop_inode()" function, defaulting to
1363 * the legacy UNIX filesystem behaviour. If it tells
1364 * us to evict inode, do so. Otherwise, retain inode
1365 * in cache if fs is alive, sync and evict if fs is
1366 * shutting down.
1367 */
1368static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001371 const struct super_operations *op = inode->i_sb->s_op;
1372 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Al Viro45321ac2010-06-07 13:43:19 -04001374 if (op && op->drop_inode)
1375 drop = op->drop_inode(inode);
1376 else
1377 drop = generic_drop_inode(inode);
1378
1379 if (!drop) {
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001380 if (sb->s_flags & MS_ACTIVE) {
Nick Piggin9e38d862010-10-23 06:55:17 -04001381 inode->i_state |= I_REFERENCED;
1382 if (!(inode->i_state & (I_DIRTY|I_SYNC))) {
1383 inode_lru_list_add(inode);
1384 }
Alexander Viro991114c2005-06-23 00:09:01 -07001385 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001386 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001387 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001388 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001389 inode->i_state |= I_WILL_FREE;
1390 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 write_inode_now(inode, 1);
1392 spin_lock(&inode_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001393 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001394 inode->i_state &= ~I_WILL_FREE;
Dave Chinner4c51acb2010-10-23 06:58:09 -04001395 __remove_inode_hash(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001397
Nick Piggin7ef0d732009-03-12 14:31:38 -07001398 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001399 inode->i_state |= I_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -04001400
1401 /*
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001402 * Move the inode off the IO lists and LRU once I_FREEING is
1403 * set so that it won't get moved back on there if it is dirty.
Nick Piggin9e38d862010-10-23 06:55:17 -04001404 */
1405 inode_lru_list_del(inode);
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001406 list_del_init(&inode->i_wb_list);
Nick Piggin9e38d862010-10-23 06:55:17 -04001407
Christoph Hellwig646ec462010-10-23 07:15:32 -04001408 __inode_sb_list_del(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001410 evict(inode);
Dave Chinner4c51acb2010-10-23 06:58:09 -04001411 remove_inode_hash(inode);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001412 wake_up_inode(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001413 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 destroy_inode(inode);
1415}
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301418 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 * @inode: inode to put
1420 *
1421 * Puts an inode, dropping its usage count. If the inode use count hits
1422 * zero, the inode is then freed and may also be destroyed.
1423 *
1424 * Consequently, iput() can sleep.
1425 */
1426void iput(struct inode *inode)
1427{
1428 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001429 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1432 iput_final(inode);
1433 }
1434}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435EXPORT_SYMBOL(iput);
1436
1437/**
1438 * bmap - find a block number in a file
1439 * @inode: inode of file
1440 * @block: block to find
1441 *
1442 * Returns the block number on the device holding the inode that
1443 * is the disk block number for the block of the file requested.
1444 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301445 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 * file.
1447 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301448sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 sector_t res = 0;
1451 if (inode->i_mapping->a_ops->bmap)
1452 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1453 return res;
1454}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455EXPORT_SYMBOL(bmap);
1456
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001457/*
1458 * With relative atime, only update atime if the previous atime is
1459 * earlier than either the ctime or mtime or if at least a day has
1460 * passed since the last atime update.
1461 */
1462static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1463 struct timespec now)
1464{
1465
1466 if (!(mnt->mnt_flags & MNT_RELATIME))
1467 return 1;
1468 /*
1469 * Is mtime younger than atime? If yes, update atime:
1470 */
1471 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1472 return 1;
1473 /*
1474 * Is ctime younger than atime? If yes, update atime:
1475 */
1476 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1477 return 1;
1478
1479 /*
1480 * Is the previous atime value older than a day? If yes,
1481 * update atime:
1482 */
1483 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1484 return 1;
1485 /*
1486 * Good, we can skip the atime update:
1487 */
1488 return 0;
1489}
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001492 * touch_atime - update the access time
1493 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001494 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 *
1496 * Update the accessed time on an inode and mark it for writeback.
1497 * This function automatically handles read only file systems and media,
1498 * as well as the "noatime" flag and inode specific "noatime" markers.
1499 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001500void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001502 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 struct timespec now;
1504
Andrew Mortonb2276132006-12-13 00:34:33 -08001505 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001506 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001507 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001508 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001509 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001510 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001511
Dave Hansencdb70f32008-02-15 14:37:41 -08001512 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001513 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001514 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001515 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001518
1519 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001520 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001521
Valerie Henson47ae32d2006-12-13 00:34:34 -08001522 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001523 return;
1524
1525 if (mnt_want_write(mnt))
1526 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001527
1528 inode->i_atime = now;
1529 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001530 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001532EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001535 * file_update_time - update mtime and ctime time
1536 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001538 * Update the mtime and ctime members of an inode and mark the inode
1539 * for writeback. Note that this function is meant exclusively for
1540 * usage in the file write path of filesystems, and filesystems may
1541 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001542 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001543 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 */
1545
Christoph Hellwig870f4812006-01-09 20:52:01 -08001546void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001548 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001550 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Andi Kleence06e0b2009-09-18 13:05:48 -07001552 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (IS_NOCMTIME(inode))
1554 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001555
Andi Kleence06e0b2009-09-18 13:05:48 -07001556 now = current_fs_time(inode->i_sb);
1557 if (!timespec_equal(&inode->i_mtime, &now))
1558 sync_it = S_MTIME;
1559
1560 if (!timespec_equal(&inode->i_ctime, &now))
1561 sync_it |= S_CTIME;
1562
1563 if (IS_I_VERSION(inode))
1564 sync_it |= S_VERSION;
1565
1566 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 return;
1568
Andi Kleence06e0b2009-09-18 13:05:48 -07001569 /* Finally allowed to write? Takes lock. */
1570 if (mnt_want_write_file(file))
1571 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Andi Kleence06e0b2009-09-18 13:05:48 -07001573 /* Only change inode inside the lock region */
1574 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001575 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001576 if (sync_it & S_CTIME)
1577 inode->i_ctime = now;
1578 if (sync_it & S_MTIME)
1579 inode->i_mtime = now;
1580 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001581 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001583EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585int inode_needs_sync(struct inode *inode)
1586{
1587 if (IS_SYNC(inode))
1588 return 1;
1589 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1590 return 1;
1591 return 0;
1592}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593EXPORT_SYMBOL(inode_needs_sync);
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595int inode_wait(void *word)
1596{
1597 schedule();
1598 return 0;
1599}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001600EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001603 * If we try to find an inode in the inode hash while it is being
1604 * deleted, we have to wait until the filesystem completes its
1605 * deletion before reporting that it isn't found. This function waits
1606 * until the deletion _might_ have completed. Callers are responsible
1607 * to recheck inode state.
1608 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001609 * It doesn't matter if I_NEW is not set initially, a call to
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001610 * wake_up_inode() after removing from the hash list will DTRT.
1611 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 * This is called with inode_lock held.
1613 */
1614static void __wait_on_freeing_inode(struct inode *inode)
1615{
1616 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001617 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1618 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1620 spin_unlock(&inode_lock);
1621 schedule();
1622 finish_wait(wq, &wait.wait);
1623 spin_lock(&inode_lock);
1624}
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626static __initdata unsigned long ihash_entries;
1627static int __init set_ihash_entries(char *str)
1628{
1629 if (!str)
1630 return 0;
1631 ihash_entries = simple_strtoul(str, &str, 0);
1632 return 1;
1633}
1634__setup("ihash_entries=", set_ihash_entries);
1635
1636/*
1637 * Initialize the waitqueues and inode hash table.
1638 */
1639void __init inode_init_early(void)
1640{
1641 int loop;
1642
1643 /* If hashes are distributed across NUMA nodes, defer
1644 * hash allocation until vmalloc space is available.
1645 */
1646 if (hashdist)
1647 return;
1648
1649 inode_hashtable =
1650 alloc_large_system_hash("Inode-cache",
1651 sizeof(struct hlist_head),
1652 ihash_entries,
1653 14,
1654 HASH_EARLY,
1655 &i_hash_shift,
1656 &i_hash_mask,
1657 0);
1658
1659 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1660 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1661}
1662
Denis Cheng74bf17c2007-10-16 23:26:30 -07001663void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
1665 int loop;
1666
1667 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001668 inode_cachep = kmem_cache_create("inode_cache",
1669 sizeof(struct inode),
1670 0,
1671 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1672 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001673 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001674 register_shrinker(&icache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 /* Hash may have been set up in inode_init_early */
1677 if (!hashdist)
1678 return;
1679
1680 inode_hashtable =
1681 alloc_large_system_hash("Inode-cache",
1682 sizeof(struct hlist_head),
1683 ihash_entries,
1684 14,
1685 0,
1686 &i_hash_shift,
1687 &i_hash_mask,
1688 0);
1689
1690 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1691 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1692}
1693
1694void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1695{
1696 inode->i_mode = mode;
1697 if (S_ISCHR(mode)) {
1698 inode->i_fop = &def_chr_fops;
1699 inode->i_rdev = rdev;
1700 } else if (S_ISBLK(mode)) {
1701 inode->i_fop = &def_blk_fops;
1702 inode->i_rdev = rdev;
1703 } else if (S_ISFIFO(mode))
1704 inode->i_fop = &def_fifo_fops;
1705 else if (S_ISSOCK(mode))
1706 inode->i_fop = &bad_sock_fops;
1707 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001708 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1709 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1710 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001713
1714/**
1715 * Init uid,gid,mode for new inode according to posix standards
1716 * @inode: New inode
1717 * @dir: Directory inode
1718 * @mode: mode of the new inode
1719 */
1720void inode_init_owner(struct inode *inode, const struct inode *dir,
1721 mode_t mode)
1722{
1723 inode->i_uid = current_fsuid();
1724 if (dir && dir->i_mode & S_ISGID) {
1725 inode->i_gid = dir->i_gid;
1726 if (S_ISDIR(mode))
1727 mode |= S_ISGID;
1728 } else
1729 inode->i_gid = current_fsgid();
1730 inode->i_mode = mode;
1731}
1732EXPORT_SYMBOL(inode_init_owner);