blob: c50d7feb87b1203b62df1f15d065d1dc109b6120 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/inode.c
3 *
4 * (C) 1997 Linus Torvalds
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/fs.h>
8#include <linux/mm.h>
9#include <linux/dcache.h>
10#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/slab.h>
12#include <linux/writeback.h>
13#include <linux/module.h>
14#include <linux/backing-dev.h>
15#include <linux/wait.h>
Nick Piggin88e0fbc2009-09-22 16:43:50 -070016#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/hash.h>
18#include <linux/swap.h>
19#include <linux/security.h>
20#include <linux/pagemap.h>
21#include <linux/cdev.h>
22#include <linux/bootmem.h>
Eric Paris3be25f42009-05-21 17:01:26 -040023#include <linux/fsnotify.h>
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080024#include <linux/mount.h>
Arjan van de Venefaee192009-01-06 07:20:54 -080025#include <linux/async.h>
Al Virof19d4a82009-06-08 19:50:45 -040026#include <linux/posix_acl.h>
Eric Parisa178d202010-10-25 14:41:59 -040027#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/*
30 * This is needed for the following functions:
31 * - inode_has_buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * - invalidate_bdev
33 *
34 * FIXME: remove all knowledge of the buffer layer from this file
35 */
36#include <linux/buffer_head.h>
37
38/*
39 * New inode.c implementation.
40 *
41 * This implementation has the basic premise of trying
42 * to be extremely low-overhead and SMP-safe, yet be
43 * simple enough to be "obviously correct".
44 *
45 * Famous last words.
46 */
47
48/* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
49
50/* #define INODE_PARANOIA 1 */
51/* #define INODE_DEBUG 1 */
52
53/*
54 * Inode lookup is no longer as critical as it used to be:
55 * most of the lookups are going to be through the dcache.
56 */
57#define I_HASHBITS i_hash_shift
58#define I_HASHMASK i_hash_mask
59
Eric Dumazetfa3536c2006-03-26 01:37:24 -080060static unsigned int i_hash_mask __read_mostly;
61static unsigned int i_hash_shift __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
64 * Each inode can be on two separate lists. One is
65 * the hash list of the inode, used for lookups. The
66 * other linked list is the "type" list:
67 * "in_use" - valid inode, i_count > 0, i_nlink > 0
68 * "dirty" - as "in_use" but also dirty
69 * "unused" - valid inode, i_count = 0
70 *
71 * A "dirty" list is maintained for each super block,
72 * allowing for low-overhead inode sync() operations.
73 */
74
Nick Piggin7ccf19a2010-10-21 11:49:30 +110075static LIST_HEAD(inode_lru);
Eric Dumazetfa3536c2006-03-26 01:37:24 -080076static struct hlist_head *inode_hashtable __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * A simple spinlock to protect the list manipulations.
80 *
81 * NOTE! You also have to own the lock if you change
82 * the i_state of an inode while it is in use..
83 */
84DEFINE_SPINLOCK(inode_lock);
85
86/*
Nick Piggin88e0fbc2009-09-22 16:43:50 -070087 * iprune_sem provides exclusion between the kswapd or try_to_free_pages
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * icache shrinking path, and the umount path. Without this exclusion,
89 * by the time prune_icache calls iput for the inode whose pages it has
90 * been invalidating, or by the time it calls clear_inode & destroy_inode
91 * from its final dispose_list, the struct super_block they refer to
92 * (for inode->i_sb->s_op) may already have been freed and reused.
Nick Piggin88e0fbc2009-09-22 16:43:50 -070093 *
94 * We make this an rwsem because the fastpath is icache shrinking. In
95 * some cases a filesystem may be doing a significant amount of work in
96 * its inode reclaim code, so this should improve parallelism.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
Nick Piggin88e0fbc2009-09-22 16:43:50 -070098static DECLARE_RWSEM(iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
101 * Statistics gathering..
102 */
103struct inodes_stat_t inodes_stat;
104
Nick Piggin3e880fb2011-01-07 17:49:19 +1100105static DEFINE_PER_CPU(unsigned int, nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400106
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530107static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Nick Piggin3e880fb2011-01-07 17:49:19 +1100109static int get_nr_inodes(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400110{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100111 int i;
112 int sum = 0;
113 for_each_possible_cpu(i)
114 sum += per_cpu(nr_inodes, i);
115 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400116}
117
118static inline int get_nr_inodes_unused(void)
119{
Nick Piggin86c87492011-01-07 17:49:18 +1100120 return inodes_stat.nr_unused;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400121}
122
123int get_nr_dirty_inodes(void)
124{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100125 /* not actually dirty inodes, but a wild approximation */
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400126 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
127 return nr_dirty > 0 ? nr_dirty : 0;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400128}
129
130/*
131 * Handle nr_inode sysctl
132 */
133#ifdef CONFIG_SYSCTL
134int proc_nr_inodes(ctl_table *table, int write,
135 void __user *buffer, size_t *lenp, loff_t *ppos)
136{
137 inodes_stat.nr_inodes = get_nr_inodes();
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400138 return proc_dointvec(table, write, buffer, lenp, ppos);
139}
140#endif
141
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700142static void wake_up_inode(struct inode *inode)
143{
144 /*
145 * Prevent speculative execution through spin_unlock(&inode_lock);
146 */
147 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100148 wake_up_bit(&inode->i_state, __I_NEW);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700149}
150
David Chinner2cb15992008-10-30 17:32:23 +1100151/**
152 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800153 * @sb: superblock inode belongs to
154 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100155 *
156 * These are initializations that need to be done on every inode
157 * allocation as the fields are not initialised by slab allocation.
158 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300159int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700161 static const struct address_space_operations empty_aops;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700162 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800163 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530164 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100165
166 inode->i_sb = sb;
167 inode->i_blkbits = sb->s_blocksize_bits;
168 inode->i_flags = 0;
169 atomic_set(&inode->i_count, 1);
170 inode->i_op = &empty_iops;
171 inode->i_fop = &empty_fops;
172 inode->i_nlink = 1;
Al Viro56ff5ef2008-12-09 09:34:39 -0500173 inode->i_uid = 0;
174 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100175 atomic_set(&inode->i_writecount, 0);
176 inode->i_size = 0;
177 inode->i_blocks = 0;
178 inode->i_bytes = 0;
179 inode->i_generation = 0;
180#ifdef CONFIG_QUOTA
181 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
182#endif
183 inode->i_pipe = NULL;
184 inode->i_bdev = NULL;
185 inode->i_cdev = NULL;
186 inode->i_rdev = 0;
187 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500188
189 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300190 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100191 spin_lock_init(&inode->i_lock);
192 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
193
194 mutex_init(&inode->i_mutex);
195 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
196
197 init_rwsem(&inode->i_alloc_sem);
198 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
199
200 mapping->a_ops = &empty_aops;
201 mapping->host = inode;
202 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800203 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100204 mapping->assoc_mapping = NULL;
205 mapping->backing_dev_info = &default_backing_dev_info;
206 mapping->writeback_index = 0;
207
208 /*
209 * If the block_device provides a backing_dev_info for client
210 * inodes then use that. Otherwise the inode share the bdev's
211 * backing_dev_info.
212 */
213 if (sb->s_bdev) {
214 struct backing_dev_info *bdi;
215
Jens Axboe2c96ce92009-09-15 09:43:56 +0200216 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100217 mapping->backing_dev_info = bdi;
218 }
219 inode->i_private = NULL;
220 inode->i_mapping = mapping;
Al Virof19d4a82009-06-08 19:50:45 -0400221#ifdef CONFIG_FS_POSIX_ACL
222 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
223#endif
David Chinner2cb15992008-10-30 17:32:23 +1100224
Eric Paris3be25f42009-05-21 17:01:26 -0400225#ifdef CONFIG_FSNOTIFY
226 inode->i_fsnotify_mask = 0;
227#endif
228
Nick Piggin3e880fb2011-01-07 17:49:19 +1100229 this_cpu_inc(nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400230
Christoph Hellwig54e34622009-08-07 14:38:25 -0300231 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300232out:
233 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100234}
235EXPORT_SYMBOL(inode_init_always);
236
237static struct inode *alloc_inode(struct super_block *sb)
238{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 struct inode *inode;
240
241 if (sb->s_op->alloc_inode)
242 inode = sb->s_op->alloc_inode(sb);
243 else
David Chinner2cb15992008-10-30 17:32:23 +1100244 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Christoph Hellwig54e34622009-08-07 14:38:25 -0300246 if (!inode)
247 return NULL;
248
249 if (unlikely(inode_init_always(sb, inode))) {
250 if (inode->i_sb->s_op->destroy_inode)
251 inode->i_sb->s_op->destroy_inode(inode);
252 else
253 kmem_cache_free(inode_cachep, inode);
254 return NULL;
255 }
256
257 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Nick Pigginff0c7d12011-01-07 17:49:50 +1100260void free_inode_nonrcu(struct inode *inode)
261{
262 kmem_cache_free(inode_cachep, inode);
263}
264EXPORT_SYMBOL(free_inode_nonrcu);
265
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300266void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200268 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400270 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400271#ifdef CONFIG_FS_POSIX_ACL
272 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
273 posix_acl_release(inode->i_acl);
274 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
275 posix_acl_release(inode->i_default_acl);
276#endif
Nick Piggin3e880fb2011-01-07 17:49:19 +1100277 this_cpu_dec(nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300278}
279EXPORT_SYMBOL(__destroy_inode);
280
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100281static void i_callback(struct rcu_head *head)
282{
283 struct inode *inode = container_of(head, struct inode, i_rcu);
284 INIT_LIST_HEAD(&inode->i_dentry);
285 kmem_cache_free(inode_cachep, inode);
286}
287
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200288static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300289{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100290 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300291 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (inode->i_sb->s_op->destroy_inode)
293 inode->i_sb->s_op->destroy_inode(inode);
294 else
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100295 call_rcu(&inode->i_rcu, i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298/*
299 * These are initializations that only need to be done
300 * once, because the fields are idempotent across use
301 * of the inode, so let the slab aware of that.
302 */
303void inode_init_once(struct inode *inode)
304{
305 memset(inode, 0, sizeof(*inode));
306 INIT_HLIST_NODE(&inode->i_hash);
307 INIT_LIST_HEAD(&inode->i_dentry);
308 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100309 INIT_LIST_HEAD(&inode->i_wb_list);
310 INIT_LIST_HEAD(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC);
Nick Piggin19fd6232008-07-25 19:45:32 -0700312 spin_lock_init(&inode->i_data.tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 spin_lock_init(&inode->i_data.i_mmap_lock);
314 INIT_LIST_HEAD(&inode->i_data.private_list);
315 spin_lock_init(&inode->i_data.private_lock);
316 INIT_RAW_PRIO_TREE_ROOT(&inode->i_data.i_mmap);
317 INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400319#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500320 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400321#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323EXPORT_SYMBOL(inode_init_once);
324
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700325static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530327 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Christoph Lametera35afb82007-05-16 22:10:57 -0700329 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332/*
333 * inode_lock must be held
334 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530335void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Nick Piggin9e38d862010-10-23 06:55:17 -0400337 atomic_inc(&inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Al Viro7de9c6e2010-10-23 11:11:40 -0400340/*
341 * get additional reference to inode; caller must already hold one.
342 */
343void ihold(struct inode *inode)
344{
345 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
346}
347EXPORT_SYMBOL(ihold);
348
Nick Piggin9e38d862010-10-23 06:55:17 -0400349static void inode_lru_list_add(struct inode *inode)
350{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100351 if (list_empty(&inode->i_lru)) {
352 list_add(&inode->i_lru, &inode_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100353 inodes_stat.nr_unused++;
Nick Piggin9e38d862010-10-23 06:55:17 -0400354 }
355}
356
357static void inode_lru_list_del(struct inode *inode)
358{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100359 if (!list_empty(&inode->i_lru)) {
360 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100361 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Christoph Hellwig646ec462010-10-23 07:15:32 -0400365static inline void __inode_sb_list_add(struct inode *inode)
366{
367 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
368}
369
370/**
371 * inode_sb_list_add - add inode to the superblock list of inodes
372 * @inode: inode to add
373 */
374void inode_sb_list_add(struct inode *inode)
375{
376 spin_lock(&inode_lock);
377 __inode_sb_list_add(inode);
378 spin_unlock(&inode_lock);
379}
380EXPORT_SYMBOL_GPL(inode_sb_list_add);
381
382static inline void __inode_sb_list_del(struct inode *inode)
383{
384 list_del_init(&inode->i_sb_list);
385}
386
Dave Chinner4c51acb2010-10-23 06:58:09 -0400387static unsigned long hash(struct super_block *sb, unsigned long hashval)
388{
389 unsigned long tmp;
390
391 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
392 L1_CACHE_BYTES;
393 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
394 return tmp & I_HASHMASK;
395}
396
397/**
398 * __insert_inode_hash - hash an inode
399 * @inode: unhashed inode
400 * @hashval: unsigned long value used to locate this object in the
401 * inode_hashtable.
402 *
403 * Add an inode to the inode hash for this superblock.
404 */
405void __insert_inode_hash(struct inode *inode, unsigned long hashval)
406{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400407 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
408
Dave Chinner4c51acb2010-10-23 06:58:09 -0400409 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400410 hlist_add_head(&inode->i_hash, b);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400411 spin_unlock(&inode_lock);
412}
413EXPORT_SYMBOL(__insert_inode_hash);
414
415/**
416 * __remove_inode_hash - remove an inode from the hash
417 * @inode: inode to unhash
418 *
419 * Remove an inode from the superblock.
420 */
421static void __remove_inode_hash(struct inode *inode)
422{
423 hlist_del_init(&inode->i_hash);
424}
425
426/**
427 * remove_inode_hash - remove an inode from the hash
428 * @inode: inode to unhash
429 *
430 * Remove an inode from the superblock.
431 */
432void remove_inode_hash(struct inode *inode)
433{
434 spin_lock(&inode_lock);
435 hlist_del_init(&inode->i_hash);
436 spin_unlock(&inode_lock);
437}
438EXPORT_SYMBOL(remove_inode_hash);
439
Al Virob0683aa2010-06-04 20:55:25 -0400440void end_writeback(struct inode *inode)
441{
442 might_sleep();
443 BUG_ON(inode->i_data.nrpages);
444 BUG_ON(!list_empty(&inode->i_data.private_list));
445 BUG_ON(!(inode->i_state & I_FREEING));
446 BUG_ON(inode->i_state & I_CLEAR);
447 inode_sync_wait(inode);
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100448 /* don't need i_lock here, no concurrent mods to i_state */
Al Virob0683aa2010-06-04 20:55:25 -0400449 inode->i_state = I_FREEING | I_CLEAR;
450}
451EXPORT_SYMBOL(end_writeback);
452
Al Viro644da592010-06-07 13:21:05 -0400453static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400454{
455 const struct super_operations *op = inode->i_sb->s_op;
456
Al Virobe7ce412010-06-04 19:40:39 -0400457 if (op->evict_inode) {
458 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400459 } else {
460 if (inode->i_data.nrpages)
461 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400462 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400463 }
Al Viro661074e2010-06-04 20:19:55 -0400464 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
465 bd_forget(inode);
466 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
467 cd_forget(inode);
Al Virob4272d42010-06-04 19:33:20 -0400468}
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/*
471 * dispose_list - dispose of the contents of a local list
472 * @head: the head of the list to free
473 *
474 * Dispose-list gets a local list with local inodes in it, so it doesn't
475 * need to worry about list corruption and SMP locks.
476 */
477static void dispose_list(struct list_head *head)
478{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 while (!list_empty(head)) {
480 struct inode *inode;
481
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100482 inode = list_first_entry(head, struct inode, i_lru);
483 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Al Viro644da592010-06-07 13:21:05 -0400485 evict(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700486
487 spin_lock(&inode_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400488 __remove_inode_hash(inode);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400489 __inode_sb_list_del(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700490 spin_unlock(&inode_lock);
491
492 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497/**
Al Viro63997e92010-10-25 20:49:35 -0400498 * evict_inodes - evict all evictable inodes for a superblock
499 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 *
Al Viro63997e92010-10-25 20:49:35 -0400501 * Make sure that no inodes with zero refcount are retained. This is
502 * called by superblock shutdown after having MS_ACTIVE flag removed,
503 * so any inode reaching zero refcount during or after that call will
504 * be immediately evicted.
505 */
506void evict_inodes(struct super_block *sb)
507{
508 struct inode *inode, *next;
509 LIST_HEAD(dispose);
510
511 down_write(&iprune_sem);
512
513 spin_lock(&inode_lock);
514 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
515 if (atomic_read(&inode->i_count))
516 continue;
517
518 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
519 WARN_ON(1);
520 continue;
521 }
522
523 inode->i_state |= I_FREEING;
524
525 /*
526 * Move the inode off the IO lists and LRU once I_FREEING is
527 * set so that it won't get moved back on there if it is dirty.
528 */
529 list_move(&inode->i_lru, &dispose);
530 list_del_init(&inode->i_wb_list);
531 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100532 inodes_stat.nr_unused--;
Al Viro63997e92010-10-25 20:49:35 -0400533 }
534 spin_unlock(&inode_lock);
535
536 dispose_list(&dispose);
537 up_write(&iprune_sem);
538}
539
540/**
Christoph Hellwiga0318782010-10-24 19:40:33 +0200541 * invalidate_inodes - attempt to free all inodes on a superblock
542 * @sb: superblock to operate on
NeilBrown93b270f2011-02-24 17:25:47 +1100543 * @kill_dirty: flag to guide handling of dirty inodes
Christoph Hellwiga0318782010-10-24 19:40:33 +0200544 *
545 * Attempts to free all inodes for a given superblock. If there were any
546 * busy inodes return a non-zero value, else zero.
NeilBrown93b270f2011-02-24 17:25:47 +1100547 * If @kill_dirty is set, discard dirty inodes too, otherwise treat
548 * them as busy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
NeilBrown93b270f2011-02-24 17:25:47 +1100550int invalidate_inodes(struct super_block *sb, bool kill_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400552 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200553 struct inode *inode, *next;
554 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700556 down_write(&iprune_sem);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 spin_lock(&inode_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200559 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Al Viro63997e92010-10-25 20:49:35 -0400560 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 continue;
NeilBrown93b270f2011-02-24 17:25:47 +1100562 if (inode->i_state & I_DIRTY && !kill_dirty) {
563 busy = 1;
564 continue;
565 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200566 if (atomic_read(&inode->i_count)) {
567 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 continue;
569 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200570
Christoph Hellwig99a38912010-10-23 19:07:20 +0200571 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100572
573 /*
574 * Move the inode off the IO lists and LRU once I_FREEING is
575 * set so that it won't get moved back on there if it is dirty.
576 */
Christoph Hellwiga0318782010-10-24 19:40:33 +0200577 list_move(&inode->i_lru, &dispose);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100578 list_del_init(&inode->i_wb_list);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200579 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100580 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 spin_unlock(&inode_lock);
583
Christoph Hellwiga0318782010-10-24 19:40:33 +0200584 dispose_list(&dispose);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700585 up_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 return busy;
588}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590static int can_unuse(struct inode *inode)
591{
Nick Piggin9e38d862010-10-23 06:55:17 -0400592 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
594 if (inode_has_buffers(inode))
595 return 0;
596 if (atomic_read(&inode->i_count))
597 return 0;
598 if (inode->i_data.nrpages)
599 return 0;
600 return 1;
601}
602
603/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400604 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
605 * temporary list and then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 *
607 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400608 * pagecache removed. If the inode has metadata buffers attached to
609 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400611 * If the inode has the I_REFERENCED flag set, then it means that it has been
612 * used recently - the flag is set in iput_final(). When we encounter such an
613 * inode, clear the flag and move it to the back of the LRU so it gets another
614 * pass through the LRU before it gets reclaimed. This is necessary because of
615 * the fact we are doing lazy LRU updates to minimise lock contention so the
616 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
617 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
619static void prune_icache(int nr_to_scan)
620{
621 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int nr_scanned;
623 unsigned long reap = 0;
624
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700625 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 spin_lock(&inode_lock);
627 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
628 struct inode *inode;
629
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100630 if (list_empty(&inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
632
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100633 inode = list_entry(inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Nick Piggin9e38d862010-10-23 06:55:17 -0400635 /*
636 * Referenced or dirty inodes are still in use. Give them
637 * another pass through the LRU as we canot reclaim them now.
638 */
639 if (atomic_read(&inode->i_count) ||
640 (inode->i_state & ~I_REFERENCED)) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100641 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100642 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400643 continue;
644 }
645
646 /* recently referenced inodes get one more pass */
647 if (inode->i_state & I_REFERENCED) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100648 list_move(&inode->i_lru, &inode_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400649 inode->i_state &= ~I_REFERENCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 continue;
651 }
652 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
653 __iget(inode);
654 spin_unlock(&inode_lock);
655 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800656 reap += invalidate_mapping_pages(&inode->i_data,
657 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 iput(inode);
659 spin_lock(&inode_lock);
660
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100661 if (inode != list_entry(inode_lru.next,
662 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 continue; /* wrong inode or list_empty */
664 if (!can_unuse(inode))
665 continue;
666 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700667 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100669
670 /*
671 * Move the inode off the IO lists and LRU once I_FREEING is
672 * set so that it won't get moved back on there if it is dirty.
673 */
674 list_move(&inode->i_lru, &freeable);
675 list_del_init(&inode->i_wb_list);
Nick Piggin86c87492011-01-07 17:49:18 +1100676 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700678 if (current_is_kswapd())
679 __count_vm_events(KSWAPD_INODESTEAL, reap);
680 else
681 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 spin_unlock(&inode_lock);
683
684 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700685 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688/*
689 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
690 * "unused" means that no dentries are referring to the inodes: the files are
691 * not open and the dcache references to those inodes have already been
692 * reclaimed.
693 *
694 * This function is passed the number of inodes to scan, and it returns the
695 * total number of remaining possibly-reclaimable inodes.
696 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000697static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 if (nr) {
700 /*
701 * Nasty deadlock avoidance. We may hold various FS locks,
702 * and we don't want to recurse into the FS that called us
703 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530704 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (!(gfp_mask & __GFP_FS))
706 return -1;
707 prune_icache(nr);
708 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400709 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Rusty Russell8e1f9362007-07-17 04:03:17 -0700712static struct shrinker icache_shrinker = {
713 .shrink = shrink_icache_memory,
714 .seeks = DEFAULT_SEEKS,
715};
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717static void __wait_on_freeing_inode(struct inode *inode);
718/*
719 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530721static struct inode *find_inode(struct super_block *sb,
722 struct hlist_head *head,
723 int (*test)(struct inode *, void *),
724 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530727 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700730 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (inode->i_sb != sb)
732 continue;
733 if (!test(inode, data))
734 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400735 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 __wait_on_freeing_inode(inode);
737 goto repeat;
738 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400739 __iget(inode);
740 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400742 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745/*
746 * find_inode_fast is the fast path version of find_inode, see the comment at
747 * iget_locked for details.
748 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530749static struct inode *find_inode_fast(struct super_block *sb,
750 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530753 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700756 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (inode->i_ino != ino)
758 continue;
759 if (inode->i_sb != sb)
760 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400761 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 __wait_on_freeing_inode(inode);
763 goto repeat;
764 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400765 __iget(inode);
766 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400768 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
Eric Dumazetf991bd22010-10-23 11:18:01 -0400771/*
772 * Each cpu owns a range of LAST_INO_BATCH numbers.
773 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
774 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100775 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400776 * This does not significantly increase overflow rate because every CPU can
777 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
778 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
779 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
780 * overflow rate by 2x, which does not seem too significant.
781 *
782 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
783 * error if st_ino won't fit in target struct field. Use 32bit counter
784 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100785 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400786#define LAST_INO_BATCH 1024
787static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100788
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400789unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400790{
791 unsigned int *p = &get_cpu_var(last_ino);
792 unsigned int res = *p;
793
794#ifdef CONFIG_SMP
795 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
796 static atomic_t shared_last_ino;
797 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
798
799 res = next - LAST_INO_BATCH;
800 }
801#endif
802
803 *p = ++res;
804 put_cpu_var(last_ino);
805 return res;
David Chinner8290c352008-10-30 17:35:24 +1100806}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400807EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809/**
810 * new_inode - obtain an inode
811 * @sb: superblock
812 *
Mel Gorman769848c2007-07-17 04:03:05 -0700813 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800814 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700815 * If HIGHMEM pages are unsuitable or it is known that pages allocated
816 * for the page cache are not reclaimable or migratable,
817 * mapping_set_gfp_mask() must be called with suitable flags on the
818 * newly created inode's mapping
819 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 */
821struct inode *new_inode(struct super_block *sb)
822{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530823 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 inode = alloc_inode(sb);
828 if (inode) {
829 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400830 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 inode->i_state = 0;
832 spin_unlock(&inode_lock);
833 }
834 return inode;
835}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836EXPORT_SYMBOL(new_inode);
837
838void unlock_new_inode(struct inode *inode)
839{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200840#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900841 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200842 struct file_system_type *type = inode->i_sb->s_type;
843
Jan Kara9a7aa122009-06-04 15:26:49 +0200844 /* Set new key only if filesystem hasn't already changed it */
845 if (!lockdep_match_class(&inode->i_mutex,
846 &type->i_mutex_key)) {
847 /*
848 * ensure nobody is actually holding i_mutex
849 */
850 mutex_destroy(&inode->i_mutex);
851 mutex_init(&inode->i_mutex);
852 lockdep_set_class(&inode->i_mutex,
853 &type->i_mutex_dir_key);
854 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200855 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /*
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100858 * This is special! We do not need the spinlock when clearing I_NEW,
Jan Kara580be082009-09-21 17:01:06 -0700859 * because we're guaranteed that nobody else tries to do anything about
860 * the state of the inode when it is locked, as we just created it (so
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100861 * there can be no old holders that haven't tested I_NEW).
Jan Kara580be082009-09-21 17:01:06 -0700862 * However we must emit the memory barrier so that other CPUs reliably
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100863 * see the clearing of I_NEW after the other inode initialisation has
Jan Kara580be082009-09-21 17:01:06 -0700864 * completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 */
Jan Kara580be082009-09-21 17:01:06 -0700866 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100867 WARN_ON(!(inode->i_state & I_NEW));
868 inode->i_state &= ~I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 wake_up_inode(inode);
870}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871EXPORT_SYMBOL(unlock_new_inode);
872
873/*
874 * This is called without the inode lock held.. Be careful.
875 *
876 * We no longer cache the sb_flags in i_flags - see fs.h
877 * -- rmk@arm.uk.linux.org
878 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530879static struct inode *get_new_inode(struct super_block *sb,
880 struct hlist_head *head,
881 int (*test)(struct inode *, void *),
882 int (*set)(struct inode *, void *),
883 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530885 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 inode = alloc_inode(sb);
888 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530889 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 spin_lock(&inode_lock);
892 /* We released the lock, so.. */
893 old = find_inode(sb, head, test, data);
894 if (!old) {
895 if (set(inode, data))
896 goto set_failed;
897
Christoph Hellwig646ec462010-10-23 07:15:32 -0400898 hlist_add_head(&inode->i_hash, head);
899 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100900 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 spin_unlock(&inode_lock);
902
903 /* Return the locked inode with I_NEW set, the
904 * caller is responsible for filling in the contents
905 */
906 return inode;
907 }
908
909 /*
910 * Uhhuh, somebody else created the same inode under
911 * us. Use the old inode instead of the one we just
912 * allocated.
913 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 spin_unlock(&inode_lock);
915 destroy_inode(inode);
916 inode = old;
917 wait_on_inode(inode);
918 }
919 return inode;
920
921set_failed:
922 spin_unlock(&inode_lock);
923 destroy_inode(inode);
924 return NULL;
925}
926
927/*
928 * get_new_inode_fast is the fast path version of get_new_inode, see the
929 * comment at iget_locked for details.
930 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530931static struct inode *get_new_inode_fast(struct super_block *sb,
932 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530934 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 inode = alloc_inode(sb);
937 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530938 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 spin_lock(&inode_lock);
941 /* We released the lock, so.. */
942 old = find_inode_fast(sb, head, ino);
943 if (!old) {
944 inode->i_ino = ino;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400945 hlist_add_head(&inode->i_hash, head);
946 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100947 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 spin_unlock(&inode_lock);
949
950 /* Return the locked inode with I_NEW set, the
951 * caller is responsible for filling in the contents
952 */
953 return inode;
954 }
955
956 /*
957 * Uhhuh, somebody else created the same inode under
958 * us. Use the old inode instead of the one we just
959 * allocated.
960 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 spin_unlock(&inode_lock);
962 destroy_inode(inode);
963 inode = old;
964 wait_on_inode(inode);
965 }
966 return inode;
967}
968
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400969/*
970 * search the inode cache for a matching inode number.
971 * If we find one, then the inode number we are trying to
972 * allocate is not unique and so we should not use it.
973 *
974 * Returns 1 if the inode number is unique, 0 if it is not.
975 */
976static int test_inode_iunique(struct super_block *sb, unsigned long ino)
977{
978 struct hlist_head *b = inode_hashtable + hash(sb, ino);
979 struct hlist_node *node;
980 struct inode *inode;
981
982 hlist_for_each_entry(inode, node, b, i_hash) {
983 if (inode->i_ino == ino && inode->i_sb == sb)
984 return 0;
985 }
986
987 return 1;
988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/**
991 * iunique - get a unique inode number
992 * @sb: superblock
993 * @max_reserved: highest reserved inode number
994 *
995 * Obtain an inode number that is unique on the system for a given
996 * superblock. This is used by file systems that have no natural
997 * permanent inode numbering system. An inode number is returned that
998 * is higher than the reserved limit but unique.
999 *
1000 * BUGS:
1001 * With a large number of inodes live on the file system this function
1002 * currently becomes quite slow.
1003 */
1004ino_t iunique(struct super_block *sb, ino_t max_reserved)
1005{
Jeff Layton866b04f2007-05-08 00:32:29 -07001006 /*
1007 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
1008 * error if st_ino won't fit in target struct field. Use 32bit counter
1009 * here to attempt to avoid that.
1010 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001011 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -07001012 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001015 spin_lock(&inode_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001016 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001017 do {
1018 if (counter <= max_reserved)
1019 counter = max_reserved + 1;
1020 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001021 } while (!test_inode_iunique(sb, res));
1022 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001023 spin_unlock(&inode_lock);
1024
1025 return res;
1026}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027EXPORT_SYMBOL(iunique);
1028
1029struct inode *igrab(struct inode *inode)
1030{
1031 spin_lock(&inode_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -04001032 if (!(inode->i_state & (I_FREEING|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 __iget(inode);
1034 else
1035 /*
1036 * Handle the case where s_op->clear_inode is not been
1037 * called yet, and somebody is calling igrab
1038 * while the inode is getting freed.
1039 */
1040 inode = NULL;
1041 spin_unlock(&inode_lock);
1042 return inode;
1043}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044EXPORT_SYMBOL(igrab);
1045
1046/**
1047 * ifind - internal function, you want ilookup5() or iget5().
1048 * @sb: super block of file system to search
1049 * @head: the head of the list to search
1050 * @test: callback used for comparisons between inodes
1051 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001052 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 *
1054 * ifind() searches for the inode specified by @data in the inode
1055 * cache. This is a generalized version of ifind_fast() for file systems where
1056 * the inode number is not sufficient for unique identification of an inode.
1057 *
1058 * If the inode is in the cache, the inode is returned with an incremented
1059 * reference count.
1060 *
1061 * Otherwise NULL is returned.
1062 *
1063 * Note, @test is called with the inode_lock held, so can't sleep.
1064 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001065static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001067 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 struct inode *inode;
1070
1071 spin_lock(&inode_lock);
1072 inode = find_inode(sb, head, test, data);
1073 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001075 if (likely(wait))
1076 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return inode;
1078 }
1079 spin_unlock(&inode_lock);
1080 return NULL;
1081}
1082
1083/**
1084 * ifind_fast - internal function, you want ilookup() or iget().
1085 * @sb: super block of file system to search
1086 * @head: head of the list to search
1087 * @ino: inode number to search for
1088 *
1089 * ifind_fast() searches for the inode @ino in the inode cache. This is for
1090 * file systems where the inode number is sufficient for unique identification
1091 * of an inode.
1092 *
1093 * If the inode is in the cache, the inode is returned with an incremented
1094 * reference count.
1095 *
1096 * Otherwise NULL is returned.
1097 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001098static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 struct hlist_head *head, unsigned long ino)
1100{
1101 struct inode *inode;
1102
1103 spin_lock(&inode_lock);
1104 inode = find_inode_fast(sb, head, ino);
1105 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 spin_unlock(&inode_lock);
1107 wait_on_inode(inode);
1108 return inode;
1109 }
1110 spin_unlock(&inode_lock);
1111 return NULL;
1112}
1113
1114/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001115 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 * @sb: super block of file system to search
1117 * @hashval: hash value (usually inode number) to search for
1118 * @test: callback used for comparisons between inodes
1119 * @data: opaque data pointer to pass to @test
1120 *
1121 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1122 * @data in the inode cache. This is a generalized version of ilookup() for
1123 * file systems where the inode number is not sufficient for unique
1124 * identification of an inode.
1125 *
1126 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001127 * reference count. Note, the inode lock is not waited upon so you have to be
1128 * very careful what you do with the returned inode. You probably should be
1129 * using ilookup5() instead.
1130 *
1131 * Otherwise NULL is returned.
1132 *
1133 * Note, @test is called with the inode_lock held, so can't sleep.
1134 */
1135struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1136 int (*test)(struct inode *, void *), void *data)
1137{
1138 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1139
1140 return ifind(sb, head, test, data, 0);
1141}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001142EXPORT_SYMBOL(ilookup5_nowait);
1143
1144/**
1145 * ilookup5 - search for an inode in the inode cache
1146 * @sb: super block of file system to search
1147 * @hashval: hash value (usually inode number) to search for
1148 * @test: callback used for comparisons between inodes
1149 * @data: opaque data pointer to pass to @test
1150 *
1151 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1152 * @data in the inode cache. This is a generalized version of ilookup() for
1153 * file systems where the inode number is not sufficient for unique
1154 * identification of an inode.
1155 *
1156 * If the inode is in the cache, the inode lock is waited upon and the inode is
1157 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 *
1159 * Otherwise NULL is returned.
1160 *
1161 * Note, @test is called with the inode_lock held, so can't sleep.
1162 */
1163struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1164 int (*test)(struct inode *, void *), void *data)
1165{
1166 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1167
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001168 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170EXPORT_SYMBOL(ilookup5);
1171
1172/**
1173 * ilookup - search for an inode in the inode cache
1174 * @sb: super block of file system to search
1175 * @ino: inode number to search for
1176 *
1177 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1178 * This is for file systems where the inode number is sufficient for unique
1179 * identification of an inode.
1180 *
1181 * If the inode is in the cache, the inode is returned with an incremented
1182 * reference count.
1183 *
1184 * Otherwise NULL is returned.
1185 */
1186struct inode *ilookup(struct super_block *sb, unsigned long ino)
1187{
1188 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1189
1190 return ifind_fast(sb, head, ino);
1191}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192EXPORT_SYMBOL(ilookup);
1193
1194/**
1195 * iget5_locked - obtain an inode from a mounted file system
1196 * @sb: super block of file system
1197 * @hashval: hash value (usually inode number) to get
1198 * @test: callback used for comparisons between inodes
1199 * @set: callback used to initialize a new struct inode
1200 * @data: opaque data pointer to pass to @test and @set
1201 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1203 * and @data in the inode cache and if present it is returned with an increased
1204 * reference count. This is a generalized version of iget_locked() for file
1205 * systems where the inode number is not sufficient for unique identification
1206 * of an inode.
1207 *
1208 * If the inode is not in cache, get_new_inode() is called to allocate a new
1209 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1210 * file system gets to fill it in before unlocking it via unlock_new_inode().
1211 *
1212 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1213 */
1214struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1215 int (*test)(struct inode *, void *),
1216 int (*set)(struct inode *, void *), void *data)
1217{
1218 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1219 struct inode *inode;
1220
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001221 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (inode)
1223 return inode;
1224 /*
1225 * get_new_inode() will do the right thing, re-trying the search
1226 * in case it had to block at any point.
1227 */
1228 return get_new_inode(sb, head, test, set, data);
1229}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230EXPORT_SYMBOL(iget5_locked);
1231
1232/**
1233 * iget_locked - obtain an inode from a mounted file system
1234 * @sb: super block of file system
1235 * @ino: inode number to get
1236 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1238 * the inode cache and if present it is returned with an increased reference
1239 * count. This is for file systems where the inode number is sufficient for
1240 * unique identification of an inode.
1241 *
1242 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1243 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1244 * The file system gets to fill it in before unlocking it via
1245 * unlock_new_inode().
1246 */
1247struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1248{
1249 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1250 struct inode *inode;
1251
1252 inode = ifind_fast(sb, head, ino);
1253 if (inode)
1254 return inode;
1255 /*
1256 * get_new_inode_fast() will do the right thing, re-trying the search
1257 * in case it had to block at any point.
1258 */
1259 return get_new_inode_fast(sb, head, ino);
1260}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261EXPORT_SYMBOL(iget_locked);
1262
Al Viro261bca82008-12-30 01:48:21 -05001263int insert_inode_locked(struct inode *inode)
1264{
1265 struct super_block *sb = inode->i_sb;
1266 ino_t ino = inode->i_ino;
1267 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001268
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001269 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001270 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001271 struct hlist_node *node;
1272 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001273 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001274 hlist_for_each_entry(old, node, head, i_hash) {
1275 if (old->i_ino != ino)
1276 continue;
1277 if (old->i_sb != sb)
1278 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001279 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001280 continue;
1281 break;
1282 }
1283 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001284 hlist_add_head(&inode->i_hash, head);
1285 spin_unlock(&inode_lock);
1286 return 0;
1287 }
1288 __iget(old);
1289 spin_unlock(&inode_lock);
1290 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001291 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001292 iput(old);
1293 return -EBUSY;
1294 }
1295 iput(old);
1296 }
1297}
Al Viro261bca82008-12-30 01:48:21 -05001298EXPORT_SYMBOL(insert_inode_locked);
1299
1300int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1301 int (*test)(struct inode *, void *), void *data)
1302{
1303 struct super_block *sb = inode->i_sb;
1304 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001305
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001306 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001307
1308 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001309 struct hlist_node *node;
1310 struct inode *old = NULL;
1311
Al Viro261bca82008-12-30 01:48:21 -05001312 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001313 hlist_for_each_entry(old, node, head, i_hash) {
1314 if (old->i_sb != sb)
1315 continue;
1316 if (!test(old, data))
1317 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001318 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001319 continue;
1320 break;
1321 }
1322 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001323 hlist_add_head(&inode->i_hash, head);
1324 spin_unlock(&inode_lock);
1325 return 0;
1326 }
1327 __iget(old);
1328 spin_unlock(&inode_lock);
1329 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001330 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001331 iput(old);
1332 return -EBUSY;
1333 }
1334 iput(old);
1335 }
1336}
Al Viro261bca82008-12-30 01:48:21 -05001337EXPORT_SYMBOL(insert_inode_locked4);
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Al Viro45321ac2010-06-07 13:43:19 -04001340int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Al Viro45321ac2010-06-07 13:43:19 -04001342 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344EXPORT_SYMBOL(generic_delete_inode);
1345
Al Viro45321ac2010-06-07 13:43:19 -04001346/*
1347 * Normal UNIX filesystem behaviour: delete the
1348 * inode when the usage count drops to zero, and
1349 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001350 */
Al Viro45321ac2010-06-07 13:43:19 -04001351int generic_drop_inode(struct inode *inode)
1352{
Al Viro1d3382c2010-10-23 15:19:20 -04001353 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001354}
1355EXPORT_SYMBOL_GPL(generic_drop_inode);
1356
1357/*
1358 * Called when we're dropping the last reference
1359 * to an inode.
1360 *
1361 * Call the FS "drop_inode()" function, defaulting to
1362 * the legacy UNIX filesystem behaviour. If it tells
1363 * us to evict inode, do so. Otherwise, retain inode
1364 * in cache if fs is alive, sync and evict if fs is
1365 * shutting down.
1366 */
1367static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001370 const struct super_operations *op = inode->i_sb->s_op;
1371 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Al Viro45321ac2010-06-07 13:43:19 -04001373 if (op && op->drop_inode)
1374 drop = op->drop_inode(inode);
1375 else
1376 drop = generic_drop_inode(inode);
1377
1378 if (!drop) {
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001379 if (sb->s_flags & MS_ACTIVE) {
Nick Piggin9e38d862010-10-23 06:55:17 -04001380 inode->i_state |= I_REFERENCED;
1381 if (!(inode->i_state & (I_DIRTY|I_SYNC))) {
1382 inode_lru_list_add(inode);
1383 }
Alexander Viro991114c2005-06-23 00:09:01 -07001384 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001385 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001386 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001387 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001388 inode->i_state |= I_WILL_FREE;
1389 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 write_inode_now(inode, 1);
1391 spin_lock(&inode_lock);
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;
Dave Chinner4c51acb2010-10-23 06:58:09 -04001394 __remove_inode_hash(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001396
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_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -04001399
1400 /*
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001401 * Move the inode off the IO lists and LRU once I_FREEING is
1402 * set so that it won't get moved back on there if it is dirty.
Nick Piggin9e38d862010-10-23 06:55:17 -04001403 */
1404 inode_lru_list_del(inode);
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001405 list_del_init(&inode->i_wb_list);
Nick Piggin9e38d862010-10-23 06:55:17 -04001406
Christoph Hellwig646ec462010-10-23 07:15:32 -04001407 __inode_sb_list_del(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001409 evict(inode);
Dave Chinner4c51acb2010-10-23 06:58:09 -04001410 remove_inode_hash(inode);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001411 wake_up_inode(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001412 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 destroy_inode(inode);
1414}
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301417 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 * @inode: inode to put
1419 *
1420 * Puts an inode, dropping its usage count. If the inode use count hits
1421 * zero, the inode is then freed and may also be destroyed.
1422 *
1423 * Consequently, iput() can sleep.
1424 */
1425void iput(struct inode *inode)
1426{
1427 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001428 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1431 iput_final(inode);
1432 }
1433}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434EXPORT_SYMBOL(iput);
1435
1436/**
1437 * bmap - find a block number in a file
1438 * @inode: inode of file
1439 * @block: block to find
1440 *
1441 * Returns the block number on the device holding the inode that
1442 * is the disk block number for the block of the file requested.
1443 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301444 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 * file.
1446 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301447sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 sector_t res = 0;
1450 if (inode->i_mapping->a_ops->bmap)
1451 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1452 return res;
1453}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454EXPORT_SYMBOL(bmap);
1455
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001456/*
1457 * With relative atime, only update atime if the previous atime is
1458 * earlier than either the ctime or mtime or if at least a day has
1459 * passed since the last atime update.
1460 */
1461static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1462 struct timespec now)
1463{
1464
1465 if (!(mnt->mnt_flags & MNT_RELATIME))
1466 return 1;
1467 /*
1468 * Is mtime younger than atime? If yes, update atime:
1469 */
1470 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1471 return 1;
1472 /*
1473 * Is ctime younger than atime? If yes, update atime:
1474 */
1475 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1476 return 1;
1477
1478 /*
1479 * Is the previous atime value older than a day? If yes,
1480 * update atime:
1481 */
1482 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1483 return 1;
1484 /*
1485 * Good, we can skip the atime update:
1486 */
1487 return 0;
1488}
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001491 * touch_atime - update the access time
1492 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001493 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 *
1495 * Update the accessed time on an inode and mark it for writeback.
1496 * This function automatically handles read only file systems and media,
1497 * as well as the "noatime" flag and inode specific "noatime" markers.
1498 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001499void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001501 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 struct timespec now;
1503
Andrew Mortonb2276132006-12-13 00:34:33 -08001504 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001505 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001506 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001507 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001508 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001509 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001510
Dave Hansencdb70f32008-02-15 14:37:41 -08001511 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001512 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001513 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001514 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001517
1518 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001519 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001520
Valerie Henson47ae32d2006-12-13 00:34:34 -08001521 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001522 return;
1523
1524 if (mnt_want_write(mnt))
1525 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001526
1527 inode->i_atime = now;
1528 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001529 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001531EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001534 * file_update_time - update mtime and ctime time
1535 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001537 * Update the mtime and ctime members of an inode and mark the inode
1538 * for writeback. Note that this function is meant exclusively for
1539 * usage in the file write path of filesystems, and filesystems may
1540 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001541 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001542 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 */
1544
Christoph Hellwig870f4812006-01-09 20:52:01 -08001545void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001547 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001549 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Andi Kleence06e0b2009-09-18 13:05:48 -07001551 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 if (IS_NOCMTIME(inode))
1553 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001554
Andi Kleence06e0b2009-09-18 13:05:48 -07001555 now = current_fs_time(inode->i_sb);
1556 if (!timespec_equal(&inode->i_mtime, &now))
1557 sync_it = S_MTIME;
1558
1559 if (!timespec_equal(&inode->i_ctime, &now))
1560 sync_it |= S_CTIME;
1561
1562 if (IS_I_VERSION(inode))
1563 sync_it |= S_VERSION;
1564
1565 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return;
1567
Andi Kleence06e0b2009-09-18 13:05:48 -07001568 /* Finally allowed to write? Takes lock. */
1569 if (mnt_want_write_file(file))
1570 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Andi Kleence06e0b2009-09-18 13:05:48 -07001572 /* Only change inode inside the lock region */
1573 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001574 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001575 if (sync_it & S_CTIME)
1576 inode->i_ctime = now;
1577 if (sync_it & S_MTIME)
1578 inode->i_mtime = now;
1579 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001580 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001582EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584int inode_needs_sync(struct inode *inode)
1585{
1586 if (IS_SYNC(inode))
1587 return 1;
1588 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1589 return 1;
1590 return 0;
1591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592EXPORT_SYMBOL(inode_needs_sync);
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594int inode_wait(void *word)
1595{
1596 schedule();
1597 return 0;
1598}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001599EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001602 * If we try to find an inode in the inode hash while it is being
1603 * deleted, we have to wait until the filesystem completes its
1604 * deletion before reporting that it isn't found. This function waits
1605 * until the deletion _might_ have completed. Callers are responsible
1606 * to recheck inode state.
1607 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001608 * It doesn't matter if I_NEW is not set initially, a call to
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001609 * wake_up_inode() after removing from the hash list will DTRT.
1610 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 * This is called with inode_lock held.
1612 */
1613static void __wait_on_freeing_inode(struct inode *inode)
1614{
1615 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001616 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1617 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1619 spin_unlock(&inode_lock);
1620 schedule();
1621 finish_wait(wq, &wait.wait);
1622 spin_lock(&inode_lock);
1623}
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625static __initdata unsigned long ihash_entries;
1626static int __init set_ihash_entries(char *str)
1627{
1628 if (!str)
1629 return 0;
1630 ihash_entries = simple_strtoul(str, &str, 0);
1631 return 1;
1632}
1633__setup("ihash_entries=", set_ihash_entries);
1634
1635/*
1636 * Initialize the waitqueues and inode hash table.
1637 */
1638void __init inode_init_early(void)
1639{
1640 int loop;
1641
1642 /* If hashes are distributed across NUMA nodes, defer
1643 * hash allocation until vmalloc space is available.
1644 */
1645 if (hashdist)
1646 return;
1647
1648 inode_hashtable =
1649 alloc_large_system_hash("Inode-cache",
1650 sizeof(struct hlist_head),
1651 ihash_entries,
1652 14,
1653 HASH_EARLY,
1654 &i_hash_shift,
1655 &i_hash_mask,
1656 0);
1657
1658 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1659 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1660}
1661
Denis Cheng74bf17c2007-10-16 23:26:30 -07001662void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 int loop;
1665
1666 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001667 inode_cachep = kmem_cache_create("inode_cache",
1668 sizeof(struct inode),
1669 0,
1670 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1671 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001672 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001673 register_shrinker(&icache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 /* Hash may have been set up in inode_init_early */
1676 if (!hashdist)
1677 return;
1678
1679 inode_hashtable =
1680 alloc_large_system_hash("Inode-cache",
1681 sizeof(struct hlist_head),
1682 ihash_entries,
1683 14,
1684 0,
1685 &i_hash_shift,
1686 &i_hash_mask,
1687 0);
1688
1689 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1690 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1691}
1692
1693void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1694{
1695 inode->i_mode = mode;
1696 if (S_ISCHR(mode)) {
1697 inode->i_fop = &def_chr_fops;
1698 inode->i_rdev = rdev;
1699 } else if (S_ISBLK(mode)) {
1700 inode->i_fop = &def_blk_fops;
1701 inode->i_rdev = rdev;
1702 } else if (S_ISFIFO(mode))
1703 inode->i_fop = &def_fifo_fops;
1704 else if (S_ISSOCK(mode))
1705 inode->i_fop = &bad_sock_fops;
1706 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001707 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1708 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1709 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710}
1711EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001712
1713/**
1714 * Init uid,gid,mode for new inode according to posix standards
1715 * @inode: New inode
1716 * @dir: Directory inode
1717 * @mode: mode of the new inode
1718 */
1719void inode_init_owner(struct inode *inode, const struct inode *dir,
1720 mode_t mode)
1721{
1722 inode->i_uid = current_fsuid();
1723 if (dir && dir->i_mode & S_ISGID) {
1724 inode->i_gid = dir->i_gid;
1725 if (S_ISDIR(mode))
1726 mode |= S_ISGID;
1727 } else
1728 inode->i_gid = current_fsgid();
1729 inode->i_mode = mode;
1730}
1731EXPORT_SYMBOL(inode_init_owner);