blob: 0b3da4a777042236c69024df1031f32b044e71c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/inode.c
3 *
4 * (C) 1997 Linus Torvalds
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/fs.h>
8#include <linux/mm.h>
9#include <linux/dcache.h>
10#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/slab.h>
12#include <linux/writeback.h>
13#include <linux/module.h>
14#include <linux/backing-dev.h>
15#include <linux/wait.h>
Nick Piggin88e0fbc2009-09-22 16:43:50 -070016#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/hash.h>
18#include <linux/swap.h>
19#include <linux/security.h>
20#include <linux/pagemap.h>
21#include <linux/cdev.h>
22#include <linux/bootmem.h>
Eric Paris3be25f42009-05-21 17:01:26 -040023#include <linux/fsnotify.h>
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080024#include <linux/mount.h>
Arjan van de Venefaee192009-01-06 07:20:54 -080025#include <linux/async.h>
Al Virof19d4a82009-06-08 19:50:45 -040026#include <linux/posix_acl.h>
Eric Parisa178d202010-10-25 14:41:59 -040027#include <linux/ima.h>
Serge E. Hallyne795b712011-03-23 16:43:25 -070028#include <linux/cred.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*
31 * This is needed for the following functions:
32 * - inode_has_buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * - invalidate_bdev
34 *
35 * FIXME: remove all knowledge of the buffer layer from this file
36 */
37#include <linux/buffer_head.h>
38
39/*
40 * New inode.c implementation.
41 *
42 * This implementation has the basic premise of trying
43 * to be extremely low-overhead and SMP-safe, yet be
44 * simple enough to be "obviously correct".
45 *
46 * Famous last words.
47 */
48
49/* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
50
51/* #define INODE_PARANOIA 1 */
52/* #define INODE_DEBUG 1 */
53
54/*
55 * Inode lookup is no longer as critical as it used to be:
56 * most of the lookups are going to be through the dcache.
57 */
58#define I_HASHBITS i_hash_shift
59#define I_HASHMASK i_hash_mask
60
Eric Dumazetfa3536c2006-03-26 01:37:24 -080061static unsigned int i_hash_mask __read_mostly;
62static unsigned int i_hash_shift __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
65 * Each inode can be on two separate lists. One is
66 * the hash list of the inode, used for lookups. The
67 * other linked list is the "type" list:
68 * "in_use" - valid inode, i_count > 0, i_nlink > 0
69 * "dirty" - as "in_use" but also dirty
70 * "unused" - valid inode, i_count = 0
71 *
72 * A "dirty" list is maintained for each super block,
73 * allowing for low-overhead inode sync() operations.
74 */
75
Nick Piggin7ccf19a2010-10-21 11:49:30 +110076static LIST_HEAD(inode_lru);
Eric Dumazetfa3536c2006-03-26 01:37:24 -080077static struct hlist_head *inode_hashtable __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/*
80 * A simple spinlock to protect the list manipulations.
81 *
82 * NOTE! You also have to own the lock if you change
83 * the i_state of an inode while it is in use..
84 */
85DEFINE_SPINLOCK(inode_lock);
86
87/*
Christoph Hellwigbab1d942011-03-15 21:51:24 +010088 * iprune_sem provides exclusion between the icache shrinking and the
89 * umount path.
Nick Piggin88e0fbc2009-09-22 16:43:50 -070090 *
Christoph Hellwigbab1d942011-03-15 21:51:24 +010091 * We don't actually need it to protect anything in the umount path,
92 * but only need to cycle through it to make sure any inode that
93 * prune_icache took off the LRU list has been fully torn down by the
94 * time we are past evict_inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 */
Nick Piggin88e0fbc2009-09-22 16:43:50 -070096static DECLARE_RWSEM(iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
99 * Statistics gathering..
100 */
101struct inodes_stat_t inodes_stat;
102
Nick Piggin3e880fb2011-01-07 17:49:19 +1100103static DEFINE_PER_CPU(unsigned int, nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400104
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530105static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Nick Piggin3e880fb2011-01-07 17:49:19 +1100107static int get_nr_inodes(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400108{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100109 int i;
110 int sum = 0;
111 for_each_possible_cpu(i)
112 sum += per_cpu(nr_inodes, i);
113 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400114}
115
116static inline int get_nr_inodes_unused(void)
117{
Nick Piggin86c87492011-01-07 17:49:18 +1100118 return inodes_stat.nr_unused;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400119}
120
121int get_nr_dirty_inodes(void)
122{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100123 /* not actually dirty inodes, but a wild approximation */
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400124 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
125 return nr_dirty > 0 ? nr_dirty : 0;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400126}
127
128/*
129 * Handle nr_inode sysctl
130 */
131#ifdef CONFIG_SYSCTL
132int proc_nr_inodes(ctl_table *table, int write,
133 void __user *buffer, size_t *lenp, loff_t *ppos)
134{
135 inodes_stat.nr_inodes = get_nr_inodes();
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400136 return proc_dointvec(table, write, buffer, lenp, ppos);
137}
138#endif
139
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700140static void wake_up_inode(struct inode *inode)
141{
142 /*
143 * Prevent speculative execution through spin_unlock(&inode_lock);
144 */
145 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100146 wake_up_bit(&inode->i_state, __I_NEW);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700147}
148
David Chinner2cb15992008-10-30 17:32:23 +1100149/**
150 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800151 * @sb: superblock inode belongs to
152 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100153 *
154 * These are initializations that need to be done on every inode
155 * allocation as the fields are not initialised by slab allocation.
156 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300157int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700159 static const struct address_space_operations empty_aops;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700160 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800161 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530162 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100163
164 inode->i_sb = sb;
165 inode->i_blkbits = sb->s_blocksize_bits;
166 inode->i_flags = 0;
167 atomic_set(&inode->i_count, 1);
168 inode->i_op = &empty_iops;
169 inode->i_fop = &empty_fops;
170 inode->i_nlink = 1;
Al Viro56ff5ef2008-12-09 09:34:39 -0500171 inode->i_uid = 0;
172 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100173 atomic_set(&inode->i_writecount, 0);
174 inode->i_size = 0;
175 inode->i_blocks = 0;
176 inode->i_bytes = 0;
177 inode->i_generation = 0;
178#ifdef CONFIG_QUOTA
179 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
180#endif
181 inode->i_pipe = NULL;
182 inode->i_bdev = NULL;
183 inode->i_cdev = NULL;
184 inode->i_rdev = 0;
185 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500186
187 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300188 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100189 spin_lock_init(&inode->i_lock);
190 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
191
192 mutex_init(&inode->i_mutex);
193 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
194
195 init_rwsem(&inode->i_alloc_sem);
196 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
197
198 mapping->a_ops = &empty_aops;
199 mapping->host = inode;
200 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800201 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100202 mapping->assoc_mapping = NULL;
203 mapping->backing_dev_info = &default_backing_dev_info;
204 mapping->writeback_index = 0;
205
206 /*
207 * If the block_device provides a backing_dev_info for client
208 * inodes then use that. Otherwise the inode share the bdev's
209 * backing_dev_info.
210 */
211 if (sb->s_bdev) {
212 struct backing_dev_info *bdi;
213
Jens Axboe2c96ce92009-09-15 09:43:56 +0200214 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100215 mapping->backing_dev_info = bdi;
216 }
217 inode->i_private = NULL;
218 inode->i_mapping = mapping;
Al Virof19d4a82009-06-08 19:50:45 -0400219#ifdef CONFIG_FS_POSIX_ACL
220 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
221#endif
David Chinner2cb15992008-10-30 17:32:23 +1100222
Eric Paris3be25f42009-05-21 17:01:26 -0400223#ifdef CONFIG_FSNOTIFY
224 inode->i_fsnotify_mask = 0;
225#endif
226
Nick Piggin3e880fb2011-01-07 17:49:19 +1100227 this_cpu_inc(nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400228
Christoph Hellwig54e34622009-08-07 14:38:25 -0300229 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300230out:
231 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100232}
233EXPORT_SYMBOL(inode_init_always);
234
235static struct inode *alloc_inode(struct super_block *sb)
236{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 struct inode *inode;
238
239 if (sb->s_op->alloc_inode)
240 inode = sb->s_op->alloc_inode(sb);
241 else
David Chinner2cb15992008-10-30 17:32:23 +1100242 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Christoph Hellwig54e34622009-08-07 14:38:25 -0300244 if (!inode)
245 return NULL;
246
247 if (unlikely(inode_init_always(sb, inode))) {
248 if (inode->i_sb->s_op->destroy_inode)
249 inode->i_sb->s_op->destroy_inode(inode);
250 else
251 kmem_cache_free(inode_cachep, inode);
252 return NULL;
253 }
254
255 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Nick Pigginff0c7d12011-01-07 17:49:50 +1100258void free_inode_nonrcu(struct inode *inode)
259{
260 kmem_cache_free(inode_cachep, inode);
261}
262EXPORT_SYMBOL(free_inode_nonrcu);
263
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300264void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200266 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400268 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400269#ifdef CONFIG_FS_POSIX_ACL
270 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
271 posix_acl_release(inode->i_acl);
272 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
273 posix_acl_release(inode->i_default_acl);
274#endif
Nick Piggin3e880fb2011-01-07 17:49:19 +1100275 this_cpu_dec(nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300276}
277EXPORT_SYMBOL(__destroy_inode);
278
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100279static void i_callback(struct rcu_head *head)
280{
281 struct inode *inode = container_of(head, struct inode, i_rcu);
282 INIT_LIST_HEAD(&inode->i_dentry);
283 kmem_cache_free(inode_cachep, inode);
284}
285
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200286static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300287{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100288 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300289 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (inode->i_sb->s_op->destroy_inode)
291 inode->i_sb->s_op->destroy_inode(inode);
292 else
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100293 call_rcu(&inode->i_rcu, i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100296void address_space_init_once(struct address_space *mapping)
297{
298 memset(mapping, 0, sizeof(*mapping));
299 INIT_RADIX_TREE(&mapping->page_tree, GFP_ATOMIC);
300 spin_lock_init(&mapping->tree_lock);
301 spin_lock_init(&mapping->i_mmap_lock);
302 INIT_LIST_HEAD(&mapping->private_list);
303 spin_lock_init(&mapping->private_lock);
304 INIT_RAW_PRIO_TREE_ROOT(&mapping->i_mmap);
305 INIT_LIST_HEAD(&mapping->i_mmap_nonlinear);
306 mutex_init(&mapping->unmap_mutex);
307}
308EXPORT_SYMBOL(address_space_init_once);
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310/*
311 * These are initializations that only need to be done
312 * once, because the fields are idempotent across use
313 * of the inode, so let the slab aware of that.
314 */
315void inode_init_once(struct inode *inode)
316{
317 memset(inode, 0, sizeof(*inode));
318 INIT_HLIST_NODE(&inode->i_hash);
319 INIT_LIST_HEAD(&inode->i_dentry);
320 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100321 INIT_LIST_HEAD(&inode->i_wb_list);
322 INIT_LIST_HEAD(&inode->i_lru);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100323 address_space_init_once(&inode->i_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400325#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500326 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400327#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329EXPORT_SYMBOL(inode_init_once);
330
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700331static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530333 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Christoph Lametera35afb82007-05-16 22:10:57 -0700335 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338/*
339 * inode_lock must be held
340 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530341void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Nick Piggin9e38d862010-10-23 06:55:17 -0400343 atomic_inc(&inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Al Viro7de9c6e2010-10-23 11:11:40 -0400346/*
347 * get additional reference to inode; caller must already hold one.
348 */
349void ihold(struct inode *inode)
350{
351 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
352}
353EXPORT_SYMBOL(ihold);
354
Nick Piggin9e38d862010-10-23 06:55:17 -0400355static void inode_lru_list_add(struct inode *inode)
356{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100357 if (list_empty(&inode->i_lru)) {
358 list_add(&inode->i_lru, &inode_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100359 inodes_stat.nr_unused++;
Nick Piggin9e38d862010-10-23 06:55:17 -0400360 }
361}
362
363static void inode_lru_list_del(struct inode *inode)
364{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100365 if (!list_empty(&inode->i_lru)) {
366 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100367 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Christoph Hellwig646ec462010-10-23 07:15:32 -0400371static inline void __inode_sb_list_add(struct inode *inode)
372{
373 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
374}
375
376/**
377 * inode_sb_list_add - add inode to the superblock list of inodes
378 * @inode: inode to add
379 */
380void inode_sb_list_add(struct inode *inode)
381{
382 spin_lock(&inode_lock);
383 __inode_sb_list_add(inode);
384 spin_unlock(&inode_lock);
385}
386EXPORT_SYMBOL_GPL(inode_sb_list_add);
387
388static inline void __inode_sb_list_del(struct inode *inode)
389{
390 list_del_init(&inode->i_sb_list);
391}
392
Dave Chinner4c51acb2010-10-23 06:58:09 -0400393static unsigned long hash(struct super_block *sb, unsigned long hashval)
394{
395 unsigned long tmp;
396
397 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
398 L1_CACHE_BYTES;
399 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
400 return tmp & I_HASHMASK;
401}
402
403/**
404 * __insert_inode_hash - hash an inode
405 * @inode: unhashed inode
406 * @hashval: unsigned long value used to locate this object in the
407 * inode_hashtable.
408 *
409 * Add an inode to the inode hash for this superblock.
410 */
411void __insert_inode_hash(struct inode *inode, unsigned long hashval)
412{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400413 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
414
Dave Chinner4c51acb2010-10-23 06:58:09 -0400415 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400416 hlist_add_head(&inode->i_hash, b);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400417 spin_unlock(&inode_lock);
418}
419EXPORT_SYMBOL(__insert_inode_hash);
420
421/**
422 * __remove_inode_hash - remove an inode from the hash
423 * @inode: inode to unhash
424 *
425 * Remove an inode from the superblock.
426 */
427static void __remove_inode_hash(struct inode *inode)
428{
429 hlist_del_init(&inode->i_hash);
430}
431
432/**
433 * remove_inode_hash - remove an inode from the hash
434 * @inode: inode to unhash
435 *
436 * Remove an inode from the superblock.
437 */
438void remove_inode_hash(struct inode *inode)
439{
440 spin_lock(&inode_lock);
441 hlist_del_init(&inode->i_hash);
442 spin_unlock(&inode_lock);
443}
444EXPORT_SYMBOL(remove_inode_hash);
445
Al Virob0683aa2010-06-04 20:55:25 -0400446void end_writeback(struct inode *inode)
447{
448 might_sleep();
449 BUG_ON(inode->i_data.nrpages);
450 BUG_ON(!list_empty(&inode->i_data.private_list));
451 BUG_ON(!(inode->i_state & I_FREEING));
452 BUG_ON(inode->i_state & I_CLEAR);
453 inode_sync_wait(inode);
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100454 /* don't need i_lock here, no concurrent mods to i_state */
Al Virob0683aa2010-06-04 20:55:25 -0400455 inode->i_state = I_FREEING | I_CLEAR;
456}
457EXPORT_SYMBOL(end_writeback);
458
Al Viro644da592010-06-07 13:21:05 -0400459static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400460{
461 const struct super_operations *op = inode->i_sb->s_op;
462
Al Virobe7ce412010-06-04 19:40:39 -0400463 if (op->evict_inode) {
464 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400465 } else {
466 if (inode->i_data.nrpages)
467 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400468 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400469 }
Al Viro661074e2010-06-04 20:19:55 -0400470 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
471 bd_forget(inode);
472 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
473 cd_forget(inode);
Al Virob4272d42010-06-04 19:33:20 -0400474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * dispose_list - dispose of the contents of a local list
478 * @head: the head of the list to free
479 *
480 * Dispose-list gets a local list with local inodes in it, so it doesn't
481 * need to worry about list corruption and SMP locks.
482 */
483static void dispose_list(struct list_head *head)
484{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 while (!list_empty(head)) {
486 struct inode *inode;
487
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100488 inode = list_first_entry(head, struct inode, i_lru);
489 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Al Viro644da592010-06-07 13:21:05 -0400491 evict(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700492
493 spin_lock(&inode_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400494 __remove_inode_hash(inode);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400495 __inode_sb_list_del(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700496 spin_unlock(&inode_lock);
497
498 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/**
Al Viro63997e92010-10-25 20:49:35 -0400504 * evict_inodes - evict all evictable inodes for a superblock
505 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 *
Al Viro63997e92010-10-25 20:49:35 -0400507 * Make sure that no inodes with zero refcount are retained. This is
508 * called by superblock shutdown after having MS_ACTIVE flag removed,
509 * so any inode reaching zero refcount during or after that call will
510 * be immediately evicted.
511 */
512void evict_inodes(struct super_block *sb)
513{
514 struct inode *inode, *next;
515 LIST_HEAD(dispose);
516
Al Viro63997e92010-10-25 20:49:35 -0400517 spin_lock(&inode_lock);
518 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
519 if (atomic_read(&inode->i_count))
520 continue;
Christoph Hellwigbab1d942011-03-15 21:51:24 +0100521 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE))
Al Viro63997e92010-10-25 20:49:35 -0400522 continue;
Al Viro63997e92010-10-25 20:49:35 -0400523
524 inode->i_state |= I_FREEING;
525
526 /*
527 * Move the inode off the IO lists and LRU once I_FREEING is
528 * set so that it won't get moved back on there if it is dirty.
529 */
530 list_move(&inode->i_lru, &dispose);
531 list_del_init(&inode->i_wb_list);
532 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100533 inodes_stat.nr_unused--;
Al Viro63997e92010-10-25 20:49:35 -0400534 }
535 spin_unlock(&inode_lock);
536
537 dispose_list(&dispose);
Christoph Hellwigbab1d942011-03-15 21:51:24 +0100538
539 /*
540 * Cycle through iprune_sem to make sure any inode that prune_icache
541 * moved off the list before we took the lock has been fully torn
542 * down.
543 */
544 down_write(&iprune_sem);
Al Viro63997e92010-10-25 20:49:35 -0400545 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
NeilBrown93b270f2011-02-24 17:25:47 +1100551 * @kill_dirty: flag to guide handling of dirty inodes
Christoph Hellwiga0318782010-10-24 19:40:33 +0200552 *
553 * Attempts to free all inodes for a given superblock. If there were any
554 * busy inodes return a non-zero value, else zero.
NeilBrown93b270f2011-02-24 17:25:47 +1100555 * If @kill_dirty is set, discard dirty inodes too, otherwise treat
556 * them as busy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
NeilBrown93b270f2011-02-24 17:25:47 +1100558int invalidate_inodes(struct super_block *sb, bool kill_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400560 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200561 struct inode *inode, *next;
562 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 spin_lock(&inode_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200565 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Al Viro63997e92010-10-25 20:49:35 -0400566 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 continue;
NeilBrown93b270f2011-02-24 17:25:47 +1100568 if (inode->i_state & I_DIRTY && !kill_dirty) {
569 busy = 1;
570 continue;
571 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200572 if (atomic_read(&inode->i_count)) {
573 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 continue;
575 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200576
Christoph Hellwig99a38912010-10-23 19:07:20 +0200577 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100578
579 /*
580 * Move the inode off the IO lists and LRU once I_FREEING is
581 * set so that it won't get moved back on there if it is dirty.
582 */
Christoph Hellwiga0318782010-10-24 19:40:33 +0200583 list_move(&inode->i_lru, &dispose);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100584 list_del_init(&inode->i_wb_list);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200585 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100586 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 spin_unlock(&inode_lock);
589
Christoph Hellwiga0318782010-10-24 19:40:33 +0200590 dispose_list(&dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 return busy;
593}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595static int can_unuse(struct inode *inode)
596{
Nick Piggin9e38d862010-10-23 06:55:17 -0400597 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return 0;
599 if (inode_has_buffers(inode))
600 return 0;
601 if (atomic_read(&inode->i_count))
602 return 0;
603 if (inode->i_data.nrpages)
604 return 0;
605 return 1;
606}
607
608/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400609 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
610 * temporary list and then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 *
612 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400613 * pagecache removed. If the inode has metadata buffers attached to
614 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400616 * If the inode has the I_REFERENCED flag set, then it means that it has been
617 * used recently - the flag is set in iput_final(). When we encounter such an
618 * inode, clear the flag and move it to the back of the LRU so it gets another
619 * pass through the LRU before it gets reclaimed. This is necessary because of
620 * the fact we are doing lazy LRU updates to minimise lock contention so the
621 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
622 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
624static void prune_icache(int nr_to_scan)
625{
626 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int nr_scanned;
628 unsigned long reap = 0;
629
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700630 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 spin_lock(&inode_lock);
632 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
633 struct inode *inode;
634
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100635 if (list_empty(&inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 break;
637
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100638 inode = list_entry(inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Nick Piggin9e38d862010-10-23 06:55:17 -0400640 /*
641 * Referenced or dirty inodes are still in use. Give them
642 * another pass through the LRU as we canot reclaim them now.
643 */
644 if (atomic_read(&inode->i_count) ||
645 (inode->i_state & ~I_REFERENCED)) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100646 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100647 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400648 continue;
649 }
650
651 /* recently referenced inodes get one more pass */
652 if (inode->i_state & I_REFERENCED) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100653 list_move(&inode->i_lru, &inode_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400654 inode->i_state &= ~I_REFERENCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 continue;
656 }
657 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
658 __iget(inode);
659 spin_unlock(&inode_lock);
660 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800661 reap += invalidate_mapping_pages(&inode->i_data,
662 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 iput(inode);
664 spin_lock(&inode_lock);
665
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100666 if (inode != list_entry(inode_lru.next,
667 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 continue; /* wrong inode or list_empty */
669 if (!can_unuse(inode))
670 continue;
671 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700672 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100674
675 /*
676 * Move the inode off the IO lists and LRU once I_FREEING is
677 * set so that it won't get moved back on there if it is dirty.
678 */
679 list_move(&inode->i_lru, &freeable);
680 list_del_init(&inode->i_wb_list);
Nick Piggin86c87492011-01-07 17:49:18 +1100681 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700683 if (current_is_kswapd())
684 __count_vm_events(KSWAPD_INODESTEAL, reap);
685 else
686 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 spin_unlock(&inode_lock);
688
689 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700690 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693/*
694 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
695 * "unused" means that no dentries are referring to the inodes: the files are
696 * not open and the dcache references to those inodes have already been
697 * reclaimed.
698 *
699 * This function is passed the number of inodes to scan, and it returns the
700 * total number of remaining possibly-reclaimable inodes.
701 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000702static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 if (nr) {
705 /*
706 * Nasty deadlock avoidance. We may hold various FS locks,
707 * and we don't want to recurse into the FS that called us
708 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530709 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (!(gfp_mask & __GFP_FS))
711 return -1;
712 prune_icache(nr);
713 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400714 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Rusty Russell8e1f9362007-07-17 04:03:17 -0700717static struct shrinker icache_shrinker = {
718 .shrink = shrink_icache_memory,
719 .seeks = DEFAULT_SEEKS,
720};
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722static void __wait_on_freeing_inode(struct inode *inode);
723/*
724 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530726static struct inode *find_inode(struct super_block *sb,
727 struct hlist_head *head,
728 int (*test)(struct inode *, void *),
729 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530732 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700735 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (inode->i_sb != sb)
737 continue;
738 if (!test(inode, data))
739 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400740 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 __wait_on_freeing_inode(inode);
742 goto repeat;
743 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400744 __iget(inode);
745 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400747 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750/*
751 * find_inode_fast is the fast path version of find_inode, see the comment at
752 * iget_locked for details.
753 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530754static struct inode *find_inode_fast(struct super_block *sb,
755 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530758 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700761 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (inode->i_ino != ino)
763 continue;
764 if (inode->i_sb != sb)
765 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400766 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 __wait_on_freeing_inode(inode);
768 goto repeat;
769 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400770 __iget(inode);
771 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400773 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Eric Dumazetf991bd22010-10-23 11:18:01 -0400776/*
777 * Each cpu owns a range of LAST_INO_BATCH numbers.
778 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
779 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100780 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400781 * This does not significantly increase overflow rate because every CPU can
782 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
783 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
784 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
785 * overflow rate by 2x, which does not seem too significant.
786 *
787 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
788 * error if st_ino won't fit in target struct field. Use 32bit counter
789 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100790 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400791#define LAST_INO_BATCH 1024
792static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100793
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400794unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400795{
796 unsigned int *p = &get_cpu_var(last_ino);
797 unsigned int res = *p;
798
799#ifdef CONFIG_SMP
800 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
801 static atomic_t shared_last_ino;
802 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
803
804 res = next - LAST_INO_BATCH;
805 }
806#endif
807
808 *p = ++res;
809 put_cpu_var(last_ino);
810 return res;
David Chinner8290c352008-10-30 17:35:24 +1100811}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400812EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814/**
815 * new_inode - obtain an inode
816 * @sb: superblock
817 *
Mel Gorman769848c2007-07-17 04:03:05 -0700818 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800819 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700820 * If HIGHMEM pages are unsuitable or it is known that pages allocated
821 * for the page cache are not reclaimable or migratable,
822 * mapping_set_gfp_mask() must be called with suitable flags on the
823 * newly created inode's mapping
824 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 */
826struct inode *new_inode(struct super_block *sb)
827{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530828 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 inode = alloc_inode(sb);
833 if (inode) {
834 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400835 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 inode->i_state = 0;
837 spin_unlock(&inode_lock);
838 }
839 return inode;
840}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841EXPORT_SYMBOL(new_inode);
842
843void unlock_new_inode(struct inode *inode)
844{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200845#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900846 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200847 struct file_system_type *type = inode->i_sb->s_type;
848
Jan Kara9a7aa122009-06-04 15:26:49 +0200849 /* Set new key only if filesystem hasn't already changed it */
850 if (!lockdep_match_class(&inode->i_mutex,
851 &type->i_mutex_key)) {
852 /*
853 * ensure nobody is actually holding i_mutex
854 */
855 mutex_destroy(&inode->i_mutex);
856 mutex_init(&inode->i_mutex);
857 lockdep_set_class(&inode->i_mutex,
858 &type->i_mutex_dir_key);
859 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200860 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200861#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /*
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100863 * This is special! We do not need the spinlock when clearing I_NEW,
Jan Kara580be082009-09-21 17:01:06 -0700864 * because we're guaranteed that nobody else tries to do anything about
865 * the state of the inode when it is locked, as we just created it (so
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100866 * there can be no old holders that haven't tested I_NEW).
Jan Kara580be082009-09-21 17:01:06 -0700867 * However we must emit the memory barrier so that other CPUs reliably
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100868 * see the clearing of I_NEW after the other inode initialisation has
Jan Kara580be082009-09-21 17:01:06 -0700869 * completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
Jan Kara580be082009-09-21 17:01:06 -0700871 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100872 WARN_ON(!(inode->i_state & I_NEW));
873 inode->i_state &= ~I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 wake_up_inode(inode);
875}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876EXPORT_SYMBOL(unlock_new_inode);
877
878/*
879 * This is called without the inode lock held.. Be careful.
880 *
881 * We no longer cache the sb_flags in i_flags - see fs.h
882 * -- rmk@arm.uk.linux.org
883 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530884static struct inode *get_new_inode(struct super_block *sb,
885 struct hlist_head *head,
886 int (*test)(struct inode *, void *),
887 int (*set)(struct inode *, void *),
888 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530890 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 inode = alloc_inode(sb);
893 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530894 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 spin_lock(&inode_lock);
897 /* We released the lock, so.. */
898 old = find_inode(sb, head, test, data);
899 if (!old) {
900 if (set(inode, data))
901 goto set_failed;
902
Christoph Hellwig646ec462010-10-23 07:15:32 -0400903 hlist_add_head(&inode->i_hash, head);
904 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100905 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 spin_unlock(&inode_lock);
907
908 /* Return the locked inode with I_NEW set, the
909 * caller is responsible for filling in the contents
910 */
911 return inode;
912 }
913
914 /*
915 * Uhhuh, somebody else created the same inode under
916 * us. Use the old inode instead of the one we just
917 * allocated.
918 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 spin_unlock(&inode_lock);
920 destroy_inode(inode);
921 inode = old;
922 wait_on_inode(inode);
923 }
924 return inode;
925
926set_failed:
927 spin_unlock(&inode_lock);
928 destroy_inode(inode);
929 return NULL;
930}
931
932/*
933 * get_new_inode_fast is the fast path version of get_new_inode, see the
934 * comment at iget_locked for details.
935 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530936static struct inode *get_new_inode_fast(struct super_block *sb,
937 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530939 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 inode = alloc_inode(sb);
942 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530943 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 spin_lock(&inode_lock);
946 /* We released the lock, so.. */
947 old = find_inode_fast(sb, head, ino);
948 if (!old) {
949 inode->i_ino = ino;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400950 hlist_add_head(&inode->i_hash, head);
951 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100952 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 spin_unlock(&inode_lock);
954
955 /* Return the locked inode with I_NEW set, the
956 * caller is responsible for filling in the contents
957 */
958 return inode;
959 }
960
961 /*
962 * Uhhuh, somebody else created the same inode under
963 * us. Use the old inode instead of the one we just
964 * allocated.
965 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 spin_unlock(&inode_lock);
967 destroy_inode(inode);
968 inode = old;
969 wait_on_inode(inode);
970 }
971 return inode;
972}
973
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400974/*
975 * search the inode cache for a matching inode number.
976 * If we find one, then the inode number we are trying to
977 * allocate is not unique and so we should not use it.
978 *
979 * Returns 1 if the inode number is unique, 0 if it is not.
980 */
981static int test_inode_iunique(struct super_block *sb, unsigned long ino)
982{
983 struct hlist_head *b = inode_hashtable + hash(sb, ino);
984 struct hlist_node *node;
985 struct inode *inode;
986
987 hlist_for_each_entry(inode, node, b, i_hash) {
988 if (inode->i_ino == ino && inode->i_sb == sb)
989 return 0;
990 }
991
992 return 1;
993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995/**
996 * iunique - get a unique inode number
997 * @sb: superblock
998 * @max_reserved: highest reserved inode number
999 *
1000 * Obtain an inode number that is unique on the system for a given
1001 * superblock. This is used by file systems that have no natural
1002 * permanent inode numbering system. An inode number is returned that
1003 * is higher than the reserved limit but unique.
1004 *
1005 * BUGS:
1006 * With a large number of inodes live on the file system this function
1007 * currently becomes quite slow.
1008 */
1009ino_t iunique(struct super_block *sb, ino_t max_reserved)
1010{
Jeff Layton866b04f2007-05-08 00:32:29 -07001011 /*
1012 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
1013 * error if st_ino won't fit in target struct field. Use 32bit counter
1014 * here to attempt to avoid that.
1015 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001016 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -07001017 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001020 spin_lock(&inode_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001021 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001022 do {
1023 if (counter <= max_reserved)
1024 counter = max_reserved + 1;
1025 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001026 } while (!test_inode_iunique(sb, res));
1027 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001028 spin_unlock(&inode_lock);
1029
1030 return res;
1031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032EXPORT_SYMBOL(iunique);
1033
1034struct inode *igrab(struct inode *inode)
1035{
1036 spin_lock(&inode_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -04001037 if (!(inode->i_state & (I_FREEING|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 __iget(inode);
1039 else
1040 /*
1041 * Handle the case where s_op->clear_inode is not been
1042 * called yet, and somebody is calling igrab
1043 * while the inode is getting freed.
1044 */
1045 inode = NULL;
1046 spin_unlock(&inode_lock);
1047 return inode;
1048}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049EXPORT_SYMBOL(igrab);
1050
1051/**
1052 * ifind - internal function, you want ilookup5() or iget5().
1053 * @sb: super block of file system to search
1054 * @head: the head of the list to search
1055 * @test: callback used for comparisons between inodes
1056 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001057 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 *
1059 * ifind() searches for the inode specified by @data in the inode
1060 * cache. This is a generalized version of ifind_fast() for file systems where
1061 * the inode number is not sufficient for unique identification of an inode.
1062 *
1063 * If the inode is in the cache, the inode is returned with an incremented
1064 * reference count.
1065 *
1066 * Otherwise NULL is returned.
1067 *
1068 * Note, @test is called with the inode_lock held, so can't sleep.
1069 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001070static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001072 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
1074 struct inode *inode;
1075
1076 spin_lock(&inode_lock);
1077 inode = find_inode(sb, head, test, data);
1078 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001080 if (likely(wait))
1081 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return inode;
1083 }
1084 spin_unlock(&inode_lock);
1085 return NULL;
1086}
1087
1088/**
1089 * ifind_fast - internal function, you want ilookup() or iget().
1090 * @sb: super block of file system to search
1091 * @head: head of the list to search
1092 * @ino: inode number to search for
1093 *
1094 * ifind_fast() searches for the inode @ino in the inode cache. This is for
1095 * file systems where the inode number is sufficient for unique identification
1096 * of an inode.
1097 *
1098 * If the inode is in the cache, the inode is returned with an incremented
1099 * reference count.
1100 *
1101 * Otherwise NULL is returned.
1102 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001103static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 struct hlist_head *head, unsigned long ino)
1105{
1106 struct inode *inode;
1107
1108 spin_lock(&inode_lock);
1109 inode = find_inode_fast(sb, head, ino);
1110 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 spin_unlock(&inode_lock);
1112 wait_on_inode(inode);
1113 return inode;
1114 }
1115 spin_unlock(&inode_lock);
1116 return NULL;
1117}
1118
1119/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001120 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 * @sb: super block of file system to search
1122 * @hashval: hash value (usually inode number) to search for
1123 * @test: callback used for comparisons between inodes
1124 * @data: opaque data pointer to pass to @test
1125 *
1126 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1127 * @data in the inode cache. This is a generalized version of ilookup() for
1128 * file systems where the inode number is not sufficient for unique
1129 * identification of an inode.
1130 *
1131 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001132 * reference count. Note, the inode lock is not waited upon so you have to be
1133 * very careful what you do with the returned inode. You probably should be
1134 * using ilookup5() instead.
1135 *
1136 * Otherwise NULL is returned.
1137 *
1138 * Note, @test is called with the inode_lock held, so can't sleep.
1139 */
1140struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1141 int (*test)(struct inode *, void *), void *data)
1142{
1143 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1144
1145 return ifind(sb, head, test, data, 0);
1146}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001147EXPORT_SYMBOL(ilookup5_nowait);
1148
1149/**
1150 * ilookup5 - search for an inode in the inode cache
1151 * @sb: super block of file system to search
1152 * @hashval: hash value (usually inode number) to search for
1153 * @test: callback used for comparisons between inodes
1154 * @data: opaque data pointer to pass to @test
1155 *
1156 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1157 * @data in the inode cache. This is a generalized version of ilookup() for
1158 * file systems where the inode number is not sufficient for unique
1159 * identification of an inode.
1160 *
1161 * If the inode is in the cache, the inode lock is waited upon and the inode is
1162 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 *
1164 * Otherwise NULL is returned.
1165 *
1166 * Note, @test is called with the inode_lock held, so can't sleep.
1167 */
1168struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1169 int (*test)(struct inode *, void *), void *data)
1170{
1171 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1172
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001173 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175EXPORT_SYMBOL(ilookup5);
1176
1177/**
1178 * ilookup - search for an inode in the inode cache
1179 * @sb: super block of file system to search
1180 * @ino: inode number to search for
1181 *
1182 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1183 * This is for file systems where the inode number is sufficient for unique
1184 * identification of an inode.
1185 *
1186 * If the inode is in the cache, the inode is returned with an incremented
1187 * reference count.
1188 *
1189 * Otherwise NULL is returned.
1190 */
1191struct inode *ilookup(struct super_block *sb, unsigned long ino)
1192{
1193 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1194
1195 return ifind_fast(sb, head, ino);
1196}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197EXPORT_SYMBOL(ilookup);
1198
1199/**
1200 * iget5_locked - obtain an inode from a mounted file system
1201 * @sb: super block of file system
1202 * @hashval: hash value (usually inode number) to get
1203 * @test: callback used for comparisons between inodes
1204 * @set: callback used to initialize a new struct inode
1205 * @data: opaque data pointer to pass to @test and @set
1206 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1208 * and @data in the inode cache and if present it is returned with an increased
1209 * reference count. This is a generalized version of iget_locked() for file
1210 * systems where the inode number is not sufficient for unique identification
1211 * of an inode.
1212 *
1213 * If the inode is not in cache, get_new_inode() is called to allocate a new
1214 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1215 * file system gets to fill it in before unlocking it via unlock_new_inode().
1216 *
1217 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1218 */
1219struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1220 int (*test)(struct inode *, void *),
1221 int (*set)(struct inode *, void *), void *data)
1222{
1223 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1224 struct inode *inode;
1225
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001226 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (inode)
1228 return inode;
1229 /*
1230 * get_new_inode() will do the right thing, re-trying the search
1231 * in case it had to block at any point.
1232 */
1233 return get_new_inode(sb, head, test, set, data);
1234}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235EXPORT_SYMBOL(iget5_locked);
1236
1237/**
1238 * iget_locked - obtain an inode from a mounted file system
1239 * @sb: super block of file system
1240 * @ino: inode number to get
1241 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1243 * the inode cache and if present it is returned with an increased reference
1244 * count. This is for file systems where the inode number is sufficient for
1245 * unique identification of an inode.
1246 *
1247 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1248 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1249 * The file system gets to fill it in before unlocking it via
1250 * unlock_new_inode().
1251 */
1252struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1253{
1254 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1255 struct inode *inode;
1256
1257 inode = ifind_fast(sb, head, ino);
1258 if (inode)
1259 return inode;
1260 /*
1261 * get_new_inode_fast() will do the right thing, re-trying the search
1262 * in case it had to block at any point.
1263 */
1264 return get_new_inode_fast(sb, head, ino);
1265}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266EXPORT_SYMBOL(iget_locked);
1267
Al Viro261bca82008-12-30 01:48:21 -05001268int insert_inode_locked(struct inode *inode)
1269{
1270 struct super_block *sb = inode->i_sb;
1271 ino_t ino = inode->i_ino;
1272 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001273
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001274 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001275 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001276 struct hlist_node *node;
1277 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001278 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001279 hlist_for_each_entry(old, node, head, i_hash) {
1280 if (old->i_ino != ino)
1281 continue;
1282 if (old->i_sb != sb)
1283 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001284 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001285 continue;
1286 break;
1287 }
1288 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001289 hlist_add_head(&inode->i_hash, head);
1290 spin_unlock(&inode_lock);
1291 return 0;
1292 }
1293 __iget(old);
1294 spin_unlock(&inode_lock);
1295 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001296 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001297 iput(old);
1298 return -EBUSY;
1299 }
1300 iput(old);
1301 }
1302}
Al Viro261bca82008-12-30 01:48:21 -05001303EXPORT_SYMBOL(insert_inode_locked);
1304
1305int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1306 int (*test)(struct inode *, void *), void *data)
1307{
1308 struct super_block *sb = inode->i_sb;
1309 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001310
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001311 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001312
1313 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001314 struct hlist_node *node;
1315 struct inode *old = NULL;
1316
Al Viro261bca82008-12-30 01:48:21 -05001317 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001318 hlist_for_each_entry(old, node, head, i_hash) {
1319 if (old->i_sb != sb)
1320 continue;
1321 if (!test(old, data))
1322 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001323 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001324 continue;
1325 break;
1326 }
1327 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001328 hlist_add_head(&inode->i_hash, head);
1329 spin_unlock(&inode_lock);
1330 return 0;
1331 }
1332 __iget(old);
1333 spin_unlock(&inode_lock);
1334 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001335 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001336 iput(old);
1337 return -EBUSY;
1338 }
1339 iput(old);
1340 }
1341}
Al Viro261bca82008-12-30 01:48:21 -05001342EXPORT_SYMBOL(insert_inode_locked4);
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Al Viro45321ac2010-06-07 13:43:19 -04001345int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Al Viro45321ac2010-06-07 13:43:19 -04001347 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349EXPORT_SYMBOL(generic_delete_inode);
1350
Al Viro45321ac2010-06-07 13:43:19 -04001351/*
1352 * Normal UNIX filesystem behaviour: delete the
1353 * inode when the usage count drops to zero, and
1354 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001355 */
Al Viro45321ac2010-06-07 13:43:19 -04001356int generic_drop_inode(struct inode *inode)
1357{
Al Viro1d3382c2010-10-23 15:19:20 -04001358 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001359}
1360EXPORT_SYMBOL_GPL(generic_drop_inode);
1361
1362/*
1363 * Called when we're dropping the last reference
1364 * to an inode.
1365 *
1366 * Call the FS "drop_inode()" function, defaulting to
1367 * the legacy UNIX filesystem behaviour. If it tells
1368 * us to evict inode, do so. Otherwise, retain inode
1369 * in cache if fs is alive, sync and evict if fs is
1370 * shutting down.
1371 */
1372static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001375 const struct super_operations *op = inode->i_sb->s_op;
1376 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Al Viro45321ac2010-06-07 13:43:19 -04001378 if (op && op->drop_inode)
1379 drop = op->drop_inode(inode);
1380 else
1381 drop = generic_drop_inode(inode);
1382
1383 if (!drop) {
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001384 if (sb->s_flags & MS_ACTIVE) {
Nick Piggin9e38d862010-10-23 06:55:17 -04001385 inode->i_state |= I_REFERENCED;
1386 if (!(inode->i_state & (I_DIRTY|I_SYNC))) {
1387 inode_lru_list_add(inode);
1388 }
Alexander Viro991114c2005-06-23 00:09:01 -07001389 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001390 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001391 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001392 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001393 inode->i_state |= I_WILL_FREE;
1394 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 write_inode_now(inode, 1);
1396 spin_lock(&inode_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001397 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001398 inode->i_state &= ~I_WILL_FREE;
Dave Chinner4c51acb2010-10-23 06:58:09 -04001399 __remove_inode_hash(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001401
Nick Piggin7ef0d732009-03-12 14:31:38 -07001402 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001403 inode->i_state |= I_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -04001404
1405 /*
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001406 * Move the inode off the IO lists and LRU once I_FREEING is
1407 * set so that it won't get moved back on there if it is dirty.
Nick Piggin9e38d862010-10-23 06:55:17 -04001408 */
1409 inode_lru_list_del(inode);
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001410 list_del_init(&inode->i_wb_list);
Nick Piggin9e38d862010-10-23 06:55:17 -04001411
Christoph Hellwig646ec462010-10-23 07:15:32 -04001412 __inode_sb_list_del(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001414 evict(inode);
Dave Chinner4c51acb2010-10-23 06:58:09 -04001415 remove_inode_hash(inode);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001416 wake_up_inode(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001417 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 destroy_inode(inode);
1419}
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301422 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 * @inode: inode to put
1424 *
1425 * Puts an inode, dropping its usage count. If the inode use count hits
1426 * zero, the inode is then freed and may also be destroyed.
1427 *
1428 * Consequently, iput() can sleep.
1429 */
1430void iput(struct inode *inode)
1431{
1432 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001433 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1436 iput_final(inode);
1437 }
1438}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439EXPORT_SYMBOL(iput);
1440
1441/**
1442 * bmap - find a block number in a file
1443 * @inode: inode of file
1444 * @block: block to find
1445 *
1446 * Returns the block number on the device holding the inode that
1447 * is the disk block number for the block of the file requested.
1448 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301449 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 * file.
1451 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301452sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
1454 sector_t res = 0;
1455 if (inode->i_mapping->a_ops->bmap)
1456 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1457 return res;
1458}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459EXPORT_SYMBOL(bmap);
1460
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001461/*
1462 * With relative atime, only update atime if the previous atime is
1463 * earlier than either the ctime or mtime or if at least a day has
1464 * passed since the last atime update.
1465 */
1466static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1467 struct timespec now)
1468{
1469
1470 if (!(mnt->mnt_flags & MNT_RELATIME))
1471 return 1;
1472 /*
1473 * Is mtime younger than atime? If yes, update atime:
1474 */
1475 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1476 return 1;
1477 /*
1478 * Is ctime younger than atime? If yes, update atime:
1479 */
1480 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1481 return 1;
1482
1483 /*
1484 * Is the previous atime value older than a day? If yes,
1485 * update atime:
1486 */
1487 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1488 return 1;
1489 /*
1490 * Good, we can skip the atime update:
1491 */
1492 return 0;
1493}
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001496 * touch_atime - update the access time
1497 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001498 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 *
1500 * Update the accessed time on an inode and mark it for writeback.
1501 * This function automatically handles read only file systems and media,
1502 * as well as the "noatime" flag and inode specific "noatime" markers.
1503 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001504void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001506 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 struct timespec now;
1508
Andrew Mortonb2276132006-12-13 00:34:33 -08001509 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001510 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001511 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001512 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001513 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001514 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001515
Dave Hansencdb70f32008-02-15 14:37:41 -08001516 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001517 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001518 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001519 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001522
1523 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001524 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001525
Valerie Henson47ae32d2006-12-13 00:34:34 -08001526 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001527 return;
1528
1529 if (mnt_want_write(mnt))
1530 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001531
1532 inode->i_atime = now;
1533 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001534 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001536EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001539 * file_update_time - update mtime and ctime time
1540 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001542 * Update the mtime and ctime members of an inode and mark the inode
1543 * for writeback. Note that this function is meant exclusively for
1544 * usage in the file write path of filesystems, and filesystems may
1545 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001546 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001547 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 */
1549
Christoph Hellwig870f4812006-01-09 20:52:01 -08001550void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001552 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001554 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Andi Kleence06e0b2009-09-18 13:05:48 -07001556 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (IS_NOCMTIME(inode))
1558 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001559
Andi Kleence06e0b2009-09-18 13:05:48 -07001560 now = current_fs_time(inode->i_sb);
1561 if (!timespec_equal(&inode->i_mtime, &now))
1562 sync_it = S_MTIME;
1563
1564 if (!timespec_equal(&inode->i_ctime, &now))
1565 sync_it |= S_CTIME;
1566
1567 if (IS_I_VERSION(inode))
1568 sync_it |= S_VERSION;
1569
1570 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return;
1572
Andi Kleence06e0b2009-09-18 13:05:48 -07001573 /* Finally allowed to write? Takes lock. */
1574 if (mnt_want_write_file(file))
1575 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Andi Kleence06e0b2009-09-18 13:05:48 -07001577 /* Only change inode inside the lock region */
1578 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001579 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001580 if (sync_it & S_CTIME)
1581 inode->i_ctime = now;
1582 if (sync_it & S_MTIME)
1583 inode->i_mtime = now;
1584 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001585 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001587EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589int inode_needs_sync(struct inode *inode)
1590{
1591 if (IS_SYNC(inode))
1592 return 1;
1593 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1594 return 1;
1595 return 0;
1596}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597EXPORT_SYMBOL(inode_needs_sync);
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599int inode_wait(void *word)
1600{
1601 schedule();
1602 return 0;
1603}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001604EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001607 * If we try to find an inode in the inode hash while it is being
1608 * deleted, we have to wait until the filesystem completes its
1609 * deletion before reporting that it isn't found. This function waits
1610 * until the deletion _might_ have completed. Callers are responsible
1611 * to recheck inode state.
1612 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001613 * It doesn't matter if I_NEW is not set initially, a call to
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001614 * wake_up_inode() after removing from the hash list will DTRT.
1615 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 * This is called with inode_lock held.
1617 */
1618static void __wait_on_freeing_inode(struct inode *inode)
1619{
1620 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001621 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1622 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1624 spin_unlock(&inode_lock);
1625 schedule();
1626 finish_wait(wq, &wait.wait);
1627 spin_lock(&inode_lock);
1628}
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630static __initdata unsigned long ihash_entries;
1631static int __init set_ihash_entries(char *str)
1632{
1633 if (!str)
1634 return 0;
1635 ihash_entries = simple_strtoul(str, &str, 0);
1636 return 1;
1637}
1638__setup("ihash_entries=", set_ihash_entries);
1639
1640/*
1641 * Initialize the waitqueues and inode hash table.
1642 */
1643void __init inode_init_early(void)
1644{
1645 int loop;
1646
1647 /* If hashes are distributed across NUMA nodes, defer
1648 * hash allocation until vmalloc space is available.
1649 */
1650 if (hashdist)
1651 return;
1652
1653 inode_hashtable =
1654 alloc_large_system_hash("Inode-cache",
1655 sizeof(struct hlist_head),
1656 ihash_entries,
1657 14,
1658 HASH_EARLY,
1659 &i_hash_shift,
1660 &i_hash_mask,
1661 0);
1662
1663 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1664 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1665}
1666
Denis Cheng74bf17c2007-10-16 23:26:30 -07001667void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
1669 int loop;
1670
1671 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001672 inode_cachep = kmem_cache_create("inode_cache",
1673 sizeof(struct inode),
1674 0,
1675 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1676 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001677 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001678 register_shrinker(&icache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 /* Hash may have been set up in inode_init_early */
1681 if (!hashdist)
1682 return;
1683
1684 inode_hashtable =
1685 alloc_large_system_hash("Inode-cache",
1686 sizeof(struct hlist_head),
1687 ihash_entries,
1688 14,
1689 0,
1690 &i_hash_shift,
1691 &i_hash_mask,
1692 0);
1693
1694 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1695 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1696}
1697
1698void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1699{
1700 inode->i_mode = mode;
1701 if (S_ISCHR(mode)) {
1702 inode->i_fop = &def_chr_fops;
1703 inode->i_rdev = rdev;
1704 } else if (S_ISBLK(mode)) {
1705 inode->i_fop = &def_blk_fops;
1706 inode->i_rdev = rdev;
1707 } else if (S_ISFIFO(mode))
1708 inode->i_fop = &def_fifo_fops;
1709 else if (S_ISSOCK(mode))
1710 inode->i_fop = &bad_sock_fops;
1711 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001712 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1713 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1714 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001717
1718/**
Ben Hutchingseaae6682011-02-15 12:48:09 +00001719 * inode_init_owner - Init uid,gid,mode for new inode according to posix standards
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001720 * @inode: New inode
1721 * @dir: Directory inode
1722 * @mode: mode of the new inode
1723 */
1724void inode_init_owner(struct inode *inode, const struct inode *dir,
1725 mode_t mode)
1726{
1727 inode->i_uid = current_fsuid();
1728 if (dir && dir->i_mode & S_ISGID) {
1729 inode->i_gid = dir->i_gid;
1730 if (S_ISDIR(mode))
1731 mode |= S_ISGID;
1732 } else
1733 inode->i_gid = current_fsgid();
1734 inode->i_mode = mode;
1735}
1736EXPORT_SYMBOL(inode_init_owner);
Serge E. Hallyne795b712011-03-23 16:43:25 -07001737
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001738/**
1739 * inode_owner_or_capable - check current task permissions to inode
1740 * @inode: inode being checked
1741 *
1742 * Return true if current either has CAP_FOWNER to the inode, or
1743 * owns the file.
Serge E. Hallyne795b712011-03-23 16:43:25 -07001744 */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001745bool inode_owner_or_capable(const struct inode *inode)
Serge E. Hallyne795b712011-03-23 16:43:25 -07001746{
1747 struct user_namespace *ns = inode_userns(inode);
1748
1749 if (current_user_ns() == ns && current_fsuid() == inode->i_uid)
1750 return true;
1751 if (ns_capable(ns, CAP_FOWNER))
1752 return true;
1753 return false;
1754}
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001755EXPORT_SYMBOL(inode_owner_or_capable);