blob: 6751dfe8cc06cb56c6c635b0c0aa57151cc0ea48 [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
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300260void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200262 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400264 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400265#ifdef CONFIG_FS_POSIX_ACL
266 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
267 posix_acl_release(inode->i_acl);
268 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
269 posix_acl_release(inode->i_default_acl);
270#endif
Nick Piggin3e880fb2011-01-07 17:49:19 +1100271 this_cpu_dec(nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300272}
273EXPORT_SYMBOL(__destroy_inode);
274
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100275static void i_callback(struct rcu_head *head)
276{
277 struct inode *inode = container_of(head, struct inode, i_rcu);
278 INIT_LIST_HEAD(&inode->i_dentry);
279 kmem_cache_free(inode_cachep, inode);
280}
281
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200282static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300283{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100284 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300285 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (inode->i_sb->s_op->destroy_inode)
287 inode->i_sb->s_op->destroy_inode(inode);
288 else
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100289 call_rcu(&inode->i_rcu, i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292/*
293 * These are initializations that only need to be done
294 * once, because the fields are idempotent across use
295 * of the inode, so let the slab aware of that.
296 */
297void inode_init_once(struct inode *inode)
298{
299 memset(inode, 0, sizeof(*inode));
300 INIT_HLIST_NODE(&inode->i_hash);
301 INIT_LIST_HEAD(&inode->i_dentry);
302 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100303 INIT_LIST_HEAD(&inode->i_wb_list);
304 INIT_LIST_HEAD(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC);
Nick Piggin19fd6232008-07-25 19:45:32 -0700306 spin_lock_init(&inode->i_data.tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 spin_lock_init(&inode->i_data.i_mmap_lock);
308 INIT_LIST_HEAD(&inode->i_data.private_list);
309 spin_lock_init(&inode->i_data.private_lock);
310 INIT_RAW_PRIO_TREE_ROOT(&inode->i_data.i_mmap);
311 INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400313#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500314 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400315#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317EXPORT_SYMBOL(inode_init_once);
318
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700319static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530321 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Christoph Lametera35afb82007-05-16 22:10:57 -0700323 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326/*
327 * inode_lock must be held
328 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530329void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Nick Piggin9e38d862010-10-23 06:55:17 -0400331 atomic_inc(&inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Al Viro7de9c6ee2010-10-23 11:11:40 -0400334/*
335 * get additional reference to inode; caller must already hold one.
336 */
337void ihold(struct inode *inode)
338{
339 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
340}
341EXPORT_SYMBOL(ihold);
342
Nick Piggin9e38d862010-10-23 06:55:17 -0400343static void inode_lru_list_add(struct inode *inode)
344{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100345 if (list_empty(&inode->i_lru)) {
346 list_add(&inode->i_lru, &inode_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100347 inodes_stat.nr_unused++;
Nick Piggin9e38d862010-10-23 06:55:17 -0400348 }
349}
350
351static void inode_lru_list_del(struct inode *inode)
352{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100353 if (!list_empty(&inode->i_lru)) {
354 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100355 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Christoph Hellwig646ec462010-10-23 07:15:32 -0400359static inline void __inode_sb_list_add(struct inode *inode)
360{
361 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
362}
363
364/**
365 * inode_sb_list_add - add inode to the superblock list of inodes
366 * @inode: inode to add
367 */
368void inode_sb_list_add(struct inode *inode)
369{
370 spin_lock(&inode_lock);
371 __inode_sb_list_add(inode);
372 spin_unlock(&inode_lock);
373}
374EXPORT_SYMBOL_GPL(inode_sb_list_add);
375
376static inline void __inode_sb_list_del(struct inode *inode)
377{
378 list_del_init(&inode->i_sb_list);
379}
380
Dave Chinner4c51acb2010-10-23 06:58:09 -0400381static unsigned long hash(struct super_block *sb, unsigned long hashval)
382{
383 unsigned long tmp;
384
385 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
386 L1_CACHE_BYTES;
387 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
388 return tmp & I_HASHMASK;
389}
390
391/**
392 * __insert_inode_hash - hash an inode
393 * @inode: unhashed inode
394 * @hashval: unsigned long value used to locate this object in the
395 * inode_hashtable.
396 *
397 * Add an inode to the inode hash for this superblock.
398 */
399void __insert_inode_hash(struct inode *inode, unsigned long hashval)
400{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400401 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
402
Dave Chinner4c51acb2010-10-23 06:58:09 -0400403 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400404 hlist_add_head(&inode->i_hash, b);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400405 spin_unlock(&inode_lock);
406}
407EXPORT_SYMBOL(__insert_inode_hash);
408
409/**
410 * __remove_inode_hash - remove an inode from the hash
411 * @inode: inode to unhash
412 *
413 * Remove an inode from the superblock.
414 */
415static void __remove_inode_hash(struct inode *inode)
416{
417 hlist_del_init(&inode->i_hash);
418}
419
420/**
421 * remove_inode_hash - remove an inode from the hash
422 * @inode: inode to unhash
423 *
424 * Remove an inode from the superblock.
425 */
426void remove_inode_hash(struct inode *inode)
427{
428 spin_lock(&inode_lock);
429 hlist_del_init(&inode->i_hash);
430 spin_unlock(&inode_lock);
431}
432EXPORT_SYMBOL(remove_inode_hash);
433
Al Virob0683aa2010-06-04 20:55:25 -0400434void end_writeback(struct inode *inode)
435{
436 might_sleep();
437 BUG_ON(inode->i_data.nrpages);
438 BUG_ON(!list_empty(&inode->i_data.private_list));
439 BUG_ON(!(inode->i_state & I_FREEING));
440 BUG_ON(inode->i_state & I_CLEAR);
441 inode_sync_wait(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100442 /* don't need i_lock here, no concurrent mods to i_state */
Al Virob0683aa2010-06-04 20:55:25 -0400443 inode->i_state = I_FREEING | I_CLEAR;
444}
445EXPORT_SYMBOL(end_writeback);
446
Al Viro644da592010-06-07 13:21:05 -0400447static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400448{
449 const struct super_operations *op = inode->i_sb->s_op;
450
Al Virobe7ce412010-06-04 19:40:39 -0400451 if (op->evict_inode) {
452 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400453 } else {
454 if (inode->i_data.nrpages)
455 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400456 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400457 }
Al Viro661074e2010-06-04 20:19:55 -0400458 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
459 bd_forget(inode);
460 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
461 cd_forget(inode);
Al Virob4272d42010-06-04 19:33:20 -0400462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/*
465 * dispose_list - dispose of the contents of a local list
466 * @head: the head of the list to free
467 *
468 * Dispose-list gets a local list with local inodes in it, so it doesn't
469 * need to worry about list corruption and SMP locks.
470 */
471static void dispose_list(struct list_head *head)
472{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 while (!list_empty(head)) {
474 struct inode *inode;
475
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100476 inode = list_first_entry(head, struct inode, i_lru);
477 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Al Viro644da592010-06-07 13:21:05 -0400479 evict(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700480
481 spin_lock(&inode_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400482 __remove_inode_hash(inode);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400483 __inode_sb_list_del(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700484 spin_unlock(&inode_lock);
485
486 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491/**
Al Viro63997e92010-10-25 20:49:35 -0400492 * evict_inodes - evict all evictable inodes for a superblock
493 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 *
Al Viro63997e92010-10-25 20:49:35 -0400495 * Make sure that no inodes with zero refcount are retained. This is
496 * called by superblock shutdown after having MS_ACTIVE flag removed,
497 * so any inode reaching zero refcount during or after that call will
498 * be immediately evicted.
499 */
500void evict_inodes(struct super_block *sb)
501{
502 struct inode *inode, *next;
503 LIST_HEAD(dispose);
504
505 down_write(&iprune_sem);
506
507 spin_lock(&inode_lock);
508 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
509 if (atomic_read(&inode->i_count))
510 continue;
511
512 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
513 WARN_ON(1);
514 continue;
515 }
516
517 inode->i_state |= I_FREEING;
518
519 /*
520 * Move the inode off the IO lists and LRU once I_FREEING is
521 * set so that it won't get moved back on there if it is dirty.
522 */
523 list_move(&inode->i_lru, &dispose);
524 list_del_init(&inode->i_wb_list);
525 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100526 inodes_stat.nr_unused--;
Al Viro63997e92010-10-25 20:49:35 -0400527 }
528 spin_unlock(&inode_lock);
529
530 dispose_list(&dispose);
531 up_write(&iprune_sem);
532}
533
534/**
Christoph Hellwiga0318782010-10-24 19:40:33 +0200535 * invalidate_inodes - attempt to free all inodes on a superblock
536 * @sb: superblock to operate on
537 *
538 * Attempts to free all inodes for a given superblock. If there were any
539 * busy inodes return a non-zero value, else zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530541int invalidate_inodes(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400543 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200544 struct inode *inode, *next;
545 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700547 down_write(&iprune_sem);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 spin_lock(&inode_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200550 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Al Viro63997e92010-10-25 20:49:35 -0400551 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 continue;
Christoph Hellwig99a38912010-10-23 19:07:20 +0200553 if (atomic_read(&inode->i_count)) {
554 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 continue;
556 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200557
Christoph Hellwig99a38912010-10-23 19:07:20 +0200558 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100559
560 /*
561 * Move the inode off the IO lists and LRU once I_FREEING is
562 * set so that it won't get moved back on there if it is dirty.
563 */
Christoph Hellwiga0318782010-10-24 19:40:33 +0200564 list_move(&inode->i_lru, &dispose);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100565 list_del_init(&inode->i_wb_list);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200566 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100567 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 spin_unlock(&inode_lock);
570
Christoph Hellwiga0318782010-10-24 19:40:33 +0200571 dispose_list(&dispose);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700572 up_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 return busy;
575}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577static int can_unuse(struct inode *inode)
578{
Nick Piggin9e38d862010-10-23 06:55:17 -0400579 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return 0;
581 if (inode_has_buffers(inode))
582 return 0;
583 if (atomic_read(&inode->i_count))
584 return 0;
585 if (inode->i_data.nrpages)
586 return 0;
587 return 1;
588}
589
590/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400591 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
592 * temporary list and then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 *
594 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400595 * pagecache removed. If the inode has metadata buffers attached to
596 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400598 * If the inode has the I_REFERENCED flag set, then it means that it has been
599 * used recently - the flag is set in iput_final(). When we encounter such an
600 * inode, clear the flag and move it to the back of the LRU so it gets another
601 * pass through the LRU before it gets reclaimed. This is necessary because of
602 * the fact we are doing lazy LRU updates to minimise lock contention so the
603 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
604 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
606static void prune_icache(int nr_to_scan)
607{
608 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 int nr_scanned;
610 unsigned long reap = 0;
611
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700612 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 spin_lock(&inode_lock);
614 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
615 struct inode *inode;
616
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100617 if (list_empty(&inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 break;
619
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100620 inode = list_entry(inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Nick Piggin9e38d862010-10-23 06:55:17 -0400622 /*
623 * Referenced or dirty inodes are still in use. Give them
624 * another pass through the LRU as we canot reclaim them now.
625 */
626 if (atomic_read(&inode->i_count) ||
627 (inode->i_state & ~I_REFERENCED)) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100628 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100629 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400630 continue;
631 }
632
633 /* recently referenced inodes get one more pass */
634 if (inode->i_state & I_REFERENCED) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100635 list_move(&inode->i_lru, &inode_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400636 inode->i_state &= ~I_REFERENCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 continue;
638 }
639 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
640 __iget(inode);
641 spin_unlock(&inode_lock);
642 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800643 reap += invalidate_mapping_pages(&inode->i_data,
644 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 iput(inode);
646 spin_lock(&inode_lock);
647
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100648 if (inode != list_entry(inode_lru.next,
649 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 continue; /* wrong inode or list_empty */
651 if (!can_unuse(inode))
652 continue;
653 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700654 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100656
657 /*
658 * Move the inode off the IO lists and LRU once I_FREEING is
659 * set so that it won't get moved back on there if it is dirty.
660 */
661 list_move(&inode->i_lru, &freeable);
662 list_del_init(&inode->i_wb_list);
Nick Piggin86c87492011-01-07 17:49:18 +1100663 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700665 if (current_is_kswapd())
666 __count_vm_events(KSWAPD_INODESTEAL, reap);
667 else
668 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 spin_unlock(&inode_lock);
670
671 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700672 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
675/*
676 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
677 * "unused" means that no dentries are referring to the inodes: the files are
678 * not open and the dcache references to those inodes have already been
679 * reclaimed.
680 *
681 * This function is passed the number of inodes to scan, and it returns the
682 * total number of remaining possibly-reclaimable inodes.
683 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000684static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 if (nr) {
687 /*
688 * Nasty deadlock avoidance. We may hold various FS locks,
689 * and we don't want to recurse into the FS that called us
690 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530691 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (!(gfp_mask & __GFP_FS))
693 return -1;
694 prune_icache(nr);
695 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400696 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Rusty Russell8e1f9362007-07-17 04:03:17 -0700699static struct shrinker icache_shrinker = {
700 .shrink = shrink_icache_memory,
701 .seeks = DEFAULT_SEEKS,
702};
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704static void __wait_on_freeing_inode(struct inode *inode);
705/*
706 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530708static struct inode *find_inode(struct super_block *sb,
709 struct hlist_head *head,
710 int (*test)(struct inode *, void *),
711 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530714 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700717 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (inode->i_sb != sb)
719 continue;
720 if (!test(inode, data))
721 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400722 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 __wait_on_freeing_inode(inode);
724 goto repeat;
725 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400726 __iget(inode);
727 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400729 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732/*
733 * find_inode_fast is the fast path version of find_inode, see the comment at
734 * iget_locked for details.
735 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530736static struct inode *find_inode_fast(struct super_block *sb,
737 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530740 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700743 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (inode->i_ino != ino)
745 continue;
746 if (inode->i_sb != sb)
747 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400748 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 __wait_on_freeing_inode(inode);
750 goto repeat;
751 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400752 __iget(inode);
753 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400755 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Eric Dumazetf991bd22010-10-23 11:18:01 -0400758/*
759 * Each cpu owns a range of LAST_INO_BATCH numbers.
760 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
761 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100762 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400763 * This does not significantly increase overflow rate because every CPU can
764 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
765 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
766 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
767 * overflow rate by 2x, which does not seem too significant.
768 *
769 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
770 * error if st_ino won't fit in target struct field. Use 32bit counter
771 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100772 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400773#define LAST_INO_BATCH 1024
774static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100775
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400776unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400777{
778 unsigned int *p = &get_cpu_var(last_ino);
779 unsigned int res = *p;
780
781#ifdef CONFIG_SMP
782 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
783 static atomic_t shared_last_ino;
784 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
785
786 res = next - LAST_INO_BATCH;
787 }
788#endif
789
790 *p = ++res;
791 put_cpu_var(last_ino);
792 return res;
David Chinner8290c352008-10-30 17:35:24 +1100793}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400794EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/**
797 * new_inode - obtain an inode
798 * @sb: superblock
799 *
Mel Gorman769848c2007-07-17 04:03:05 -0700800 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800801 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700802 * If HIGHMEM pages are unsuitable or it is known that pages allocated
803 * for the page cache are not reclaimable or migratable,
804 * mapping_set_gfp_mask() must be called with suitable flags on the
805 * newly created inode's mapping
806 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 */
808struct inode *new_inode(struct super_block *sb)
809{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530810 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 inode = alloc_inode(sb);
815 if (inode) {
816 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400817 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 inode->i_state = 0;
819 spin_unlock(&inode_lock);
820 }
821 return inode;
822}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823EXPORT_SYMBOL(new_inode);
824
825void unlock_new_inode(struct inode *inode)
826{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200827#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900828 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200829 struct file_system_type *type = inode->i_sb->s_type;
830
Jan Kara9a7aa122009-06-04 15:26:49 +0200831 /* Set new key only if filesystem hasn't already changed it */
832 if (!lockdep_match_class(&inode->i_mutex,
833 &type->i_mutex_key)) {
834 /*
835 * ensure nobody is actually holding i_mutex
836 */
837 mutex_destroy(&inode->i_mutex);
838 mutex_init(&inode->i_mutex);
839 lockdep_set_class(&inode->i_mutex,
840 &type->i_mutex_dir_key);
841 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200842 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200843#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /*
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100845 * This is special! We do not need the spinlock when clearing I_NEW,
Jan Kara580be082009-09-21 17:01:06 -0700846 * because we're guaranteed that nobody else tries to do anything about
847 * the state of the inode when it is locked, as we just created it (so
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100848 * there can be no old holders that haven't tested I_NEW).
Jan Kara580be082009-09-21 17:01:06 -0700849 * However we must emit the memory barrier so that other CPUs reliably
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100850 * see the clearing of I_NEW after the other inode initialisation has
Jan Kara580be082009-09-21 17:01:06 -0700851 * completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 */
Jan Kara580be082009-09-21 17:01:06 -0700853 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100854 WARN_ON(!(inode->i_state & I_NEW));
855 inode->i_state &= ~I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 wake_up_inode(inode);
857}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858EXPORT_SYMBOL(unlock_new_inode);
859
860/*
861 * This is called without the inode lock held.. Be careful.
862 *
863 * We no longer cache the sb_flags in i_flags - see fs.h
864 * -- rmk@arm.uk.linux.org
865 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530866static struct inode *get_new_inode(struct super_block *sb,
867 struct hlist_head *head,
868 int (*test)(struct inode *, void *),
869 int (*set)(struct inode *, void *),
870 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530872 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 inode = alloc_inode(sb);
875 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530876 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 spin_lock(&inode_lock);
879 /* We released the lock, so.. */
880 old = find_inode(sb, head, test, data);
881 if (!old) {
882 if (set(inode, data))
883 goto set_failed;
884
Christoph Hellwig646ec462010-10-23 07:15:32 -0400885 hlist_add_head(&inode->i_hash, head);
886 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100887 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 spin_unlock(&inode_lock);
889
890 /* Return the locked inode with I_NEW set, the
891 * caller is responsible for filling in the contents
892 */
893 return inode;
894 }
895
896 /*
897 * Uhhuh, somebody else created the same inode under
898 * us. Use the old inode instead of the one we just
899 * allocated.
900 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 spin_unlock(&inode_lock);
902 destroy_inode(inode);
903 inode = old;
904 wait_on_inode(inode);
905 }
906 return inode;
907
908set_failed:
909 spin_unlock(&inode_lock);
910 destroy_inode(inode);
911 return NULL;
912}
913
914/*
915 * get_new_inode_fast is the fast path version of get_new_inode, see the
916 * comment at iget_locked for details.
917 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530918static struct inode *get_new_inode_fast(struct super_block *sb,
919 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530921 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 inode = alloc_inode(sb);
924 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530925 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 spin_lock(&inode_lock);
928 /* We released the lock, so.. */
929 old = find_inode_fast(sb, head, ino);
930 if (!old) {
931 inode->i_ino = ino;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400932 hlist_add_head(&inode->i_hash, head);
933 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100934 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 spin_unlock(&inode_lock);
936
937 /* Return the locked inode with I_NEW set, the
938 * caller is responsible for filling in the contents
939 */
940 return inode;
941 }
942
943 /*
944 * Uhhuh, somebody else created the same inode under
945 * us. Use the old inode instead of the one we just
946 * allocated.
947 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 spin_unlock(&inode_lock);
949 destroy_inode(inode);
950 inode = old;
951 wait_on_inode(inode);
952 }
953 return inode;
954}
955
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400956/*
957 * search the inode cache for a matching inode number.
958 * If we find one, then the inode number we are trying to
959 * allocate is not unique and so we should not use it.
960 *
961 * Returns 1 if the inode number is unique, 0 if it is not.
962 */
963static int test_inode_iunique(struct super_block *sb, unsigned long ino)
964{
965 struct hlist_head *b = inode_hashtable + hash(sb, ino);
966 struct hlist_node *node;
967 struct inode *inode;
968
969 hlist_for_each_entry(inode, node, b, i_hash) {
970 if (inode->i_ino == ino && inode->i_sb == sb)
971 return 0;
972 }
973
974 return 1;
975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/**
978 * iunique - get a unique inode number
979 * @sb: superblock
980 * @max_reserved: highest reserved inode number
981 *
982 * Obtain an inode number that is unique on the system for a given
983 * superblock. This is used by file systems that have no natural
984 * permanent inode numbering system. An inode number is returned that
985 * is higher than the reserved limit but unique.
986 *
987 * BUGS:
988 * With a large number of inodes live on the file system this function
989 * currently becomes quite slow.
990 */
991ino_t iunique(struct super_block *sb, ino_t max_reserved)
992{
Jeff Layton866b04f2007-05-08 00:32:29 -0700993 /*
994 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
995 * error if st_ino won't fit in target struct field. Use 32bit counter
996 * here to attempt to avoid that.
997 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400998 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -0700999 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001002 spin_lock(&inode_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001003 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001004 do {
1005 if (counter <= max_reserved)
1006 counter = max_reserved + 1;
1007 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001008 } while (!test_inode_iunique(sb, res));
1009 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001010 spin_unlock(&inode_lock);
1011
1012 return res;
1013}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014EXPORT_SYMBOL(iunique);
1015
1016struct inode *igrab(struct inode *inode)
1017{
1018 spin_lock(&inode_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -04001019 if (!(inode->i_state & (I_FREEING|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 __iget(inode);
1021 else
1022 /*
1023 * Handle the case where s_op->clear_inode is not been
1024 * called yet, and somebody is calling igrab
1025 * while the inode is getting freed.
1026 */
1027 inode = NULL;
1028 spin_unlock(&inode_lock);
1029 return inode;
1030}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031EXPORT_SYMBOL(igrab);
1032
1033/**
1034 * ifind - internal function, you want ilookup5() or iget5().
1035 * @sb: super block of file system to search
1036 * @head: the head of the list to search
1037 * @test: callback used for comparisons between inodes
1038 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001039 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 *
1041 * ifind() searches for the inode specified by @data in the inode
1042 * cache. This is a generalized version of ifind_fast() for file systems where
1043 * the inode number is not sufficient for unique identification of an inode.
1044 *
1045 * If the inode is in the cache, the inode is returned with an incremented
1046 * reference count.
1047 *
1048 * Otherwise NULL is returned.
1049 *
1050 * Note, @test is called with the inode_lock held, so can't sleep.
1051 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001052static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001054 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 struct inode *inode;
1057
1058 spin_lock(&inode_lock);
1059 inode = find_inode(sb, head, test, data);
1060 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001062 if (likely(wait))
1063 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return inode;
1065 }
1066 spin_unlock(&inode_lock);
1067 return NULL;
1068}
1069
1070/**
1071 * ifind_fast - internal function, you want ilookup() or iget().
1072 * @sb: super block of file system to search
1073 * @head: head of the list to search
1074 * @ino: inode number to search for
1075 *
1076 * ifind_fast() searches for the inode @ino in the inode cache. This is for
1077 * file systems where the inode number is sufficient for unique identification
1078 * of an inode.
1079 *
1080 * If the inode is in the cache, the inode is returned with an incremented
1081 * reference count.
1082 *
1083 * Otherwise NULL is returned.
1084 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001085static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 struct hlist_head *head, unsigned long ino)
1087{
1088 struct inode *inode;
1089
1090 spin_lock(&inode_lock);
1091 inode = find_inode_fast(sb, head, ino);
1092 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 spin_unlock(&inode_lock);
1094 wait_on_inode(inode);
1095 return inode;
1096 }
1097 spin_unlock(&inode_lock);
1098 return NULL;
1099}
1100
1101/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001102 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * @sb: super block of file system to search
1104 * @hashval: hash value (usually inode number) to search for
1105 * @test: callback used for comparisons between inodes
1106 * @data: opaque data pointer to pass to @test
1107 *
1108 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1109 * @data in the inode cache. This is a generalized version of ilookup() for
1110 * file systems where the inode number is not sufficient for unique
1111 * identification of an inode.
1112 *
1113 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001114 * reference count. Note, the inode lock is not waited upon so you have to be
1115 * very careful what you do with the returned inode. You probably should be
1116 * using ilookup5() instead.
1117 *
1118 * Otherwise NULL is returned.
1119 *
1120 * Note, @test is called with the inode_lock held, so can't sleep.
1121 */
1122struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1123 int (*test)(struct inode *, void *), void *data)
1124{
1125 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1126
1127 return ifind(sb, head, test, data, 0);
1128}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001129EXPORT_SYMBOL(ilookup5_nowait);
1130
1131/**
1132 * ilookup5 - search for an inode in the inode cache
1133 * @sb: super block of file system to search
1134 * @hashval: hash value (usually inode number) to search for
1135 * @test: callback used for comparisons between inodes
1136 * @data: opaque data pointer to pass to @test
1137 *
1138 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1139 * @data in the inode cache. This is a generalized version of ilookup() for
1140 * file systems where the inode number is not sufficient for unique
1141 * identification of an inode.
1142 *
1143 * If the inode is in the cache, the inode lock is waited upon and the inode is
1144 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 *
1146 * Otherwise NULL is returned.
1147 *
1148 * Note, @test is called with the inode_lock held, so can't sleep.
1149 */
1150struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1151 int (*test)(struct inode *, void *), void *data)
1152{
1153 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1154
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001155 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157EXPORT_SYMBOL(ilookup5);
1158
1159/**
1160 * ilookup - search for an inode in the inode cache
1161 * @sb: super block of file system to search
1162 * @ino: inode number to search for
1163 *
1164 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1165 * This is for file systems where the inode number is sufficient for unique
1166 * identification of an inode.
1167 *
1168 * If the inode is in the cache, the inode is returned with an incremented
1169 * reference count.
1170 *
1171 * Otherwise NULL is returned.
1172 */
1173struct inode *ilookup(struct super_block *sb, unsigned long ino)
1174{
1175 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1176
1177 return ifind_fast(sb, head, ino);
1178}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179EXPORT_SYMBOL(ilookup);
1180
1181/**
1182 * iget5_locked - obtain an inode from a mounted file system
1183 * @sb: super block of file system
1184 * @hashval: hash value (usually inode number) to get
1185 * @test: callback used for comparisons between inodes
1186 * @set: callback used to initialize a new struct inode
1187 * @data: opaque data pointer to pass to @test and @set
1188 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1190 * and @data in the inode cache and if present it is returned with an increased
1191 * reference count. This is a generalized version of iget_locked() for file
1192 * systems where the inode number is not sufficient for unique identification
1193 * of an inode.
1194 *
1195 * If the inode is not in cache, get_new_inode() is called to allocate a new
1196 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1197 * file system gets to fill it in before unlocking it via unlock_new_inode().
1198 *
1199 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1200 */
1201struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1202 int (*test)(struct inode *, void *),
1203 int (*set)(struct inode *, void *), void *data)
1204{
1205 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1206 struct inode *inode;
1207
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001208 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if (inode)
1210 return inode;
1211 /*
1212 * get_new_inode() will do the right thing, re-trying the search
1213 * in case it had to block at any point.
1214 */
1215 return get_new_inode(sb, head, test, set, data);
1216}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217EXPORT_SYMBOL(iget5_locked);
1218
1219/**
1220 * iget_locked - obtain an inode from a mounted file system
1221 * @sb: super block of file system
1222 * @ino: inode number to get
1223 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1225 * the inode cache and if present it is returned with an increased reference
1226 * count. This is for file systems where the inode number is sufficient for
1227 * unique identification of an inode.
1228 *
1229 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1230 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1231 * The file system gets to fill it in before unlocking it via
1232 * unlock_new_inode().
1233 */
1234struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1235{
1236 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1237 struct inode *inode;
1238
1239 inode = ifind_fast(sb, head, ino);
1240 if (inode)
1241 return inode;
1242 /*
1243 * get_new_inode_fast() will do the right thing, re-trying the search
1244 * in case it had to block at any point.
1245 */
1246 return get_new_inode_fast(sb, head, ino);
1247}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248EXPORT_SYMBOL(iget_locked);
1249
Al Viro261bca82008-12-30 01:48:21 -05001250int insert_inode_locked(struct inode *inode)
1251{
1252 struct super_block *sb = inode->i_sb;
1253 ino_t ino = inode->i_ino;
1254 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001255
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001256 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001257 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001258 struct hlist_node *node;
1259 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001260 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001261 hlist_for_each_entry(old, node, head, i_hash) {
1262 if (old->i_ino != ino)
1263 continue;
1264 if (old->i_sb != sb)
1265 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001266 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001267 continue;
1268 break;
1269 }
1270 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001271 hlist_add_head(&inode->i_hash, head);
1272 spin_unlock(&inode_lock);
1273 return 0;
1274 }
1275 __iget(old);
1276 spin_unlock(&inode_lock);
1277 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001278 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001279 iput(old);
1280 return -EBUSY;
1281 }
1282 iput(old);
1283 }
1284}
Al Viro261bca82008-12-30 01:48:21 -05001285EXPORT_SYMBOL(insert_inode_locked);
1286
1287int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1288 int (*test)(struct inode *, void *), void *data)
1289{
1290 struct super_block *sb = inode->i_sb;
1291 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001292
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001293 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001294
1295 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001296 struct hlist_node *node;
1297 struct inode *old = NULL;
1298
Al Viro261bca82008-12-30 01:48:21 -05001299 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001300 hlist_for_each_entry(old, node, head, i_hash) {
1301 if (old->i_sb != sb)
1302 continue;
1303 if (!test(old, data))
1304 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001305 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001306 continue;
1307 break;
1308 }
1309 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001310 hlist_add_head(&inode->i_hash, head);
1311 spin_unlock(&inode_lock);
1312 return 0;
1313 }
1314 __iget(old);
1315 spin_unlock(&inode_lock);
1316 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001317 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001318 iput(old);
1319 return -EBUSY;
1320 }
1321 iput(old);
1322 }
1323}
Al Viro261bca82008-12-30 01:48:21 -05001324EXPORT_SYMBOL(insert_inode_locked4);
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Al Viro45321ac2010-06-07 13:43:19 -04001327int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Al Viro45321ac2010-06-07 13:43:19 -04001329 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331EXPORT_SYMBOL(generic_delete_inode);
1332
Al Viro45321ac2010-06-07 13:43:19 -04001333/*
1334 * Normal UNIX filesystem behaviour: delete the
1335 * inode when the usage count drops to zero, and
1336 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001337 */
Al Viro45321ac2010-06-07 13:43:19 -04001338int generic_drop_inode(struct inode *inode)
1339{
Al Viro1d3382cb2010-10-23 15:19:20 -04001340 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001341}
1342EXPORT_SYMBOL_GPL(generic_drop_inode);
1343
1344/*
1345 * Called when we're dropping the last reference
1346 * to an inode.
1347 *
1348 * Call the FS "drop_inode()" function, defaulting to
1349 * the legacy UNIX filesystem behaviour. If it tells
1350 * us to evict inode, do so. Otherwise, retain inode
1351 * in cache if fs is alive, sync and evict if fs is
1352 * shutting down.
1353 */
1354static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001357 const struct super_operations *op = inode->i_sb->s_op;
1358 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Al Viro45321ac2010-06-07 13:43:19 -04001360 if (op && op->drop_inode)
1361 drop = op->drop_inode(inode);
1362 else
1363 drop = generic_drop_inode(inode);
1364
1365 if (!drop) {
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001366 if (sb->s_flags & MS_ACTIVE) {
Nick Piggin9e38d862010-10-23 06:55:17 -04001367 inode->i_state |= I_REFERENCED;
1368 if (!(inode->i_state & (I_DIRTY|I_SYNC))) {
1369 inode_lru_list_add(inode);
1370 }
Alexander Viro991114c2005-06-23 00:09:01 -07001371 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001372 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001373 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001374 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001375 inode->i_state |= I_WILL_FREE;
1376 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 write_inode_now(inode, 1);
1378 spin_lock(&inode_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001379 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001380 inode->i_state &= ~I_WILL_FREE;
Dave Chinner4c51acb2010-10-23 06:58:09 -04001381 __remove_inode_hash(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001383
Nick Piggin7ef0d732009-03-12 14:31:38 -07001384 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001385 inode->i_state |= I_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -04001386
1387 /*
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001388 * Move the inode off the IO lists and LRU once I_FREEING is
1389 * set so that it won't get moved back on there if it is dirty.
Nick Piggin9e38d862010-10-23 06:55:17 -04001390 */
1391 inode_lru_list_del(inode);
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001392 list_del_init(&inode->i_wb_list);
Nick Piggin9e38d862010-10-23 06:55:17 -04001393
Christoph Hellwig646ec462010-10-23 07:15:32 -04001394 __inode_sb_list_del(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001396 evict(inode);
Dave Chinner4c51acb2010-10-23 06:58:09 -04001397 remove_inode_hash(inode);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001398 wake_up_inode(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001399 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 destroy_inode(inode);
1401}
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301404 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 * @inode: inode to put
1406 *
1407 * Puts an inode, dropping its usage count. If the inode use count hits
1408 * zero, the inode is then freed and may also be destroyed.
1409 *
1410 * Consequently, iput() can sleep.
1411 */
1412void iput(struct inode *inode)
1413{
1414 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001415 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1418 iput_final(inode);
1419 }
1420}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421EXPORT_SYMBOL(iput);
1422
1423/**
1424 * bmap - find a block number in a file
1425 * @inode: inode of file
1426 * @block: block to find
1427 *
1428 * Returns the block number on the device holding the inode that
1429 * is the disk block number for the block of the file requested.
1430 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301431 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 * file.
1433 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301434sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
1436 sector_t res = 0;
1437 if (inode->i_mapping->a_ops->bmap)
1438 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1439 return res;
1440}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441EXPORT_SYMBOL(bmap);
1442
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001443/*
1444 * With relative atime, only update atime if the previous atime is
1445 * earlier than either the ctime or mtime or if at least a day has
1446 * passed since the last atime update.
1447 */
1448static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1449 struct timespec now)
1450{
1451
1452 if (!(mnt->mnt_flags & MNT_RELATIME))
1453 return 1;
1454 /*
1455 * Is mtime younger than atime? If yes, update atime:
1456 */
1457 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1458 return 1;
1459 /*
1460 * Is ctime younger than atime? If yes, update atime:
1461 */
1462 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1463 return 1;
1464
1465 /*
1466 * Is the previous atime value older than a day? If yes,
1467 * update atime:
1468 */
1469 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1470 return 1;
1471 /*
1472 * Good, we can skip the atime update:
1473 */
1474 return 0;
1475}
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001478 * touch_atime - update the access time
1479 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001480 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 *
1482 * Update the accessed time on an inode and mark it for writeback.
1483 * This function automatically handles read only file systems and media,
1484 * as well as the "noatime" flag and inode specific "noatime" markers.
1485 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001486void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001488 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 struct timespec now;
1490
Andrew Mortonb2276132006-12-13 00:34:33 -08001491 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001492 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001493 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001494 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001495 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001496 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001497
Dave Hansencdb70f32008-02-15 14:37:41 -08001498 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001499 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001500 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001501 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001504
1505 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001506 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001507
Valerie Henson47ae32d2006-12-13 00:34:34 -08001508 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001509 return;
1510
1511 if (mnt_want_write(mnt))
1512 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001513
1514 inode->i_atime = now;
1515 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001516 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001518EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001521 * file_update_time - update mtime and ctime time
1522 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001524 * Update the mtime and ctime members of an inode and mark the inode
1525 * for writeback. Note that this function is meant exclusively for
1526 * usage in the file write path of filesystems, and filesystems may
1527 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001528 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001529 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 */
1531
Christoph Hellwig870f4812006-01-09 20:52:01 -08001532void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001534 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001536 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Andi Kleence06e0b2009-09-18 13:05:48 -07001538 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (IS_NOCMTIME(inode))
1540 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001541
Andi Kleence06e0b2009-09-18 13:05:48 -07001542 now = current_fs_time(inode->i_sb);
1543 if (!timespec_equal(&inode->i_mtime, &now))
1544 sync_it = S_MTIME;
1545
1546 if (!timespec_equal(&inode->i_ctime, &now))
1547 sync_it |= S_CTIME;
1548
1549 if (IS_I_VERSION(inode))
1550 sync_it |= S_VERSION;
1551
1552 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 return;
1554
Andi Kleence06e0b2009-09-18 13:05:48 -07001555 /* Finally allowed to write? Takes lock. */
1556 if (mnt_want_write_file(file))
1557 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Andi Kleence06e0b2009-09-18 13:05:48 -07001559 /* Only change inode inside the lock region */
1560 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001561 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001562 if (sync_it & S_CTIME)
1563 inode->i_ctime = now;
1564 if (sync_it & S_MTIME)
1565 inode->i_mtime = now;
1566 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001567 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001569EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571int inode_needs_sync(struct inode *inode)
1572{
1573 if (IS_SYNC(inode))
1574 return 1;
1575 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1576 return 1;
1577 return 0;
1578}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579EXPORT_SYMBOL(inode_needs_sync);
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581int inode_wait(void *word)
1582{
1583 schedule();
1584 return 0;
1585}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001586EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001589 * If we try to find an inode in the inode hash while it is being
1590 * deleted, we have to wait until the filesystem completes its
1591 * deletion before reporting that it isn't found. This function waits
1592 * until the deletion _might_ have completed. Callers are responsible
1593 * to recheck inode state.
1594 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001595 * It doesn't matter if I_NEW is not set initially, a call to
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001596 * wake_up_inode() after removing from the hash list will DTRT.
1597 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 * This is called with inode_lock held.
1599 */
1600static void __wait_on_freeing_inode(struct inode *inode)
1601{
1602 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001603 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1604 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1606 spin_unlock(&inode_lock);
1607 schedule();
1608 finish_wait(wq, &wait.wait);
1609 spin_lock(&inode_lock);
1610}
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612static __initdata unsigned long ihash_entries;
1613static int __init set_ihash_entries(char *str)
1614{
1615 if (!str)
1616 return 0;
1617 ihash_entries = simple_strtoul(str, &str, 0);
1618 return 1;
1619}
1620__setup("ihash_entries=", set_ihash_entries);
1621
1622/*
1623 * Initialize the waitqueues and inode hash table.
1624 */
1625void __init inode_init_early(void)
1626{
1627 int loop;
1628
1629 /* If hashes are distributed across NUMA nodes, defer
1630 * hash allocation until vmalloc space is available.
1631 */
1632 if (hashdist)
1633 return;
1634
1635 inode_hashtable =
1636 alloc_large_system_hash("Inode-cache",
1637 sizeof(struct hlist_head),
1638 ihash_entries,
1639 14,
1640 HASH_EARLY,
1641 &i_hash_shift,
1642 &i_hash_mask,
1643 0);
1644
1645 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1646 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1647}
1648
Denis Cheng74bf17c2007-10-16 23:26:30 -07001649void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
1651 int loop;
1652
1653 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001654 inode_cachep = kmem_cache_create("inode_cache",
1655 sizeof(struct inode),
1656 0,
1657 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1658 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001659 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001660 register_shrinker(&icache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 /* Hash may have been set up in inode_init_early */
1663 if (!hashdist)
1664 return;
1665
1666 inode_hashtable =
1667 alloc_large_system_hash("Inode-cache",
1668 sizeof(struct hlist_head),
1669 ihash_entries,
1670 14,
1671 0,
1672 &i_hash_shift,
1673 &i_hash_mask,
1674 0);
1675
1676 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1677 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1678}
1679
1680void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1681{
1682 inode->i_mode = mode;
1683 if (S_ISCHR(mode)) {
1684 inode->i_fop = &def_chr_fops;
1685 inode->i_rdev = rdev;
1686 } else if (S_ISBLK(mode)) {
1687 inode->i_fop = &def_blk_fops;
1688 inode->i_rdev = rdev;
1689 } else if (S_ISFIFO(mode))
1690 inode->i_fop = &def_fifo_fops;
1691 else if (S_ISSOCK(mode))
1692 inode->i_fop = &bad_sock_fops;
1693 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001694 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1695 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1696 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001699
1700/**
1701 * Init uid,gid,mode for new inode according to posix standards
1702 * @inode: New inode
1703 * @dir: Directory inode
1704 * @mode: mode of the new inode
1705 */
1706void inode_init_owner(struct inode *inode, const struct inode *dir,
1707 mode_t mode)
1708{
1709 inode->i_uid = current_fsuid();
1710 if (dir && dir->i_mode & S_ISGID) {
1711 inode->i_gid = dir->i_gid;
1712 if (S_ISDIR(mode))
1713 mode |= S_ISGID;
1714 } else
1715 inode->i_gid = current_fsgid();
1716 inode->i_mode = mode;
1717}
1718EXPORT_SYMBOL(inode_init_owner);