blob: efc43979709f7570d1acce84a07badd362340b0c [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
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400105static struct percpu_counter nr_inodes __cacheline_aligned_in_smp;
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
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400109static inline int get_nr_inodes(void)
110{
111 return percpu_counter_sum_positive(&nr_inodes);
112}
113
114static inline int get_nr_inodes_unused(void)
115{
Nick Piggin86c87492011-01-07 17:49:18 +1100116 return inodes_stat.nr_unused;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400117}
118
119int get_nr_dirty_inodes(void)
120{
121 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
122 return nr_dirty > 0 ? nr_dirty : 0;
123
124}
125
126/*
127 * Handle nr_inode sysctl
128 */
129#ifdef CONFIG_SYSCTL
130int proc_nr_inodes(ctl_table *table, int write,
131 void __user *buffer, size_t *lenp, loff_t *ppos)
132{
133 inodes_stat.nr_inodes = get_nr_inodes();
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400134 return proc_dointvec(table, write, buffer, lenp, ppos);
135}
136#endif
137
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700138static void wake_up_inode(struct inode *inode)
139{
140 /*
141 * Prevent speculative execution through spin_unlock(&inode_lock);
142 */
143 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100144 wake_up_bit(&inode->i_state, __I_NEW);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700145}
146
David Chinner2cb15992008-10-30 17:32:23 +1100147/**
148 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800149 * @sb: superblock inode belongs to
150 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100151 *
152 * These are initializations that need to be done on every inode
153 * allocation as the fields are not initialised by slab allocation.
154 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300155int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700157 static const struct address_space_operations empty_aops;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700158 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800159 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530160 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100161
162 inode->i_sb = sb;
163 inode->i_blkbits = sb->s_blocksize_bits;
164 inode->i_flags = 0;
165 atomic_set(&inode->i_count, 1);
166 inode->i_op = &empty_iops;
167 inode->i_fop = &empty_fops;
168 inode->i_nlink = 1;
Al Viro56ff5ef2008-12-09 09:34:39 -0500169 inode->i_uid = 0;
170 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100171 atomic_set(&inode->i_writecount, 0);
172 inode->i_size = 0;
173 inode->i_blocks = 0;
174 inode->i_bytes = 0;
175 inode->i_generation = 0;
176#ifdef CONFIG_QUOTA
177 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
178#endif
179 inode->i_pipe = NULL;
180 inode->i_bdev = NULL;
181 inode->i_cdev = NULL;
182 inode->i_rdev = 0;
183 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500184
185 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300186 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100187 spin_lock_init(&inode->i_lock);
188 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
189
190 mutex_init(&inode->i_mutex);
191 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
192
193 init_rwsem(&inode->i_alloc_sem);
194 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
195
196 mapping->a_ops = &empty_aops;
197 mapping->host = inode;
198 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800199 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100200 mapping->assoc_mapping = NULL;
201 mapping->backing_dev_info = &default_backing_dev_info;
202 mapping->writeback_index = 0;
203
204 /*
205 * If the block_device provides a backing_dev_info for client
206 * inodes then use that. Otherwise the inode share the bdev's
207 * backing_dev_info.
208 */
209 if (sb->s_bdev) {
210 struct backing_dev_info *bdi;
211
Jens Axboe2c96ce92009-09-15 09:43:56 +0200212 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100213 mapping->backing_dev_info = bdi;
214 }
215 inode->i_private = NULL;
216 inode->i_mapping = mapping;
Al Virof19d4a82009-06-08 19:50:45 -0400217#ifdef CONFIG_FS_POSIX_ACL
218 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
219#endif
David Chinner2cb15992008-10-30 17:32:23 +1100220
Eric Paris3be25f42009-05-21 17:01:26 -0400221#ifdef CONFIG_FSNOTIFY
222 inode->i_fsnotify_mask = 0;
223#endif
224
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400225 percpu_counter_inc(&nr_inodes);
226
Christoph Hellwig54e34622009-08-07 14:38:25 -0300227 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300228out:
229 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100230}
231EXPORT_SYMBOL(inode_init_always);
232
233static struct inode *alloc_inode(struct super_block *sb)
234{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 struct inode *inode;
236
237 if (sb->s_op->alloc_inode)
238 inode = sb->s_op->alloc_inode(sb);
239 else
David Chinner2cb15992008-10-30 17:32:23 +1100240 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Christoph Hellwig54e34622009-08-07 14:38:25 -0300242 if (!inode)
243 return NULL;
244
245 if (unlikely(inode_init_always(sb, inode))) {
246 if (inode->i_sb->s_op->destroy_inode)
247 inode->i_sb->s_op->destroy_inode(inode);
248 else
249 kmem_cache_free(inode_cachep, inode);
250 return NULL;
251 }
252
253 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300256void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200258 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400260 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400261#ifdef CONFIG_FS_POSIX_ACL
262 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
263 posix_acl_release(inode->i_acl);
264 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
265 posix_acl_release(inode->i_default_acl);
266#endif
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400267 percpu_counter_dec(&nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300268}
269EXPORT_SYMBOL(__destroy_inode);
270
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200271static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300272{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100273 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300274 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (inode->i_sb->s_op->destroy_inode)
276 inode->i_sb->s_op->destroy_inode(inode);
277 else
278 kmem_cache_free(inode_cachep, (inode));
279}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281/*
282 * These are initializations that only need to be done
283 * once, because the fields are idempotent across use
284 * of the inode, so let the slab aware of that.
285 */
286void inode_init_once(struct inode *inode)
287{
288 memset(inode, 0, sizeof(*inode));
289 INIT_HLIST_NODE(&inode->i_hash);
290 INIT_LIST_HEAD(&inode->i_dentry);
291 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100292 INIT_LIST_HEAD(&inode->i_wb_list);
293 INIT_LIST_HEAD(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC);
Nick Piggin19fd6232008-07-25 19:45:32 -0700295 spin_lock_init(&inode->i_data.tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 spin_lock_init(&inode->i_data.i_mmap_lock);
297 INIT_LIST_HEAD(&inode->i_data.private_list);
298 spin_lock_init(&inode->i_data.private_lock);
299 INIT_RAW_PRIO_TREE_ROOT(&inode->i_data.i_mmap);
300 INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400302#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500303 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306EXPORT_SYMBOL(inode_init_once);
307
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700308static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530310 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Christoph Lametera35afb82007-05-16 22:10:57 -0700312 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315/*
316 * inode_lock must be held
317 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530318void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Nick Piggin9e38d862010-10-23 06:55:17 -0400320 atomic_inc(&inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Al Viro7de9c6e2010-10-23 11:11:40 -0400323/*
324 * get additional reference to inode; caller must already hold one.
325 */
326void ihold(struct inode *inode)
327{
328 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
329}
330EXPORT_SYMBOL(ihold);
331
Nick Piggin9e38d862010-10-23 06:55:17 -0400332static void inode_lru_list_add(struct inode *inode)
333{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100334 if (list_empty(&inode->i_lru)) {
335 list_add(&inode->i_lru, &inode_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100336 inodes_stat.nr_unused++;
Nick Piggin9e38d862010-10-23 06:55:17 -0400337 }
338}
339
340static void inode_lru_list_del(struct inode *inode)
341{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100342 if (!list_empty(&inode->i_lru)) {
343 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100344 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
Christoph Hellwig646ec462010-10-23 07:15:32 -0400348static inline void __inode_sb_list_add(struct inode *inode)
349{
350 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
351}
352
353/**
354 * inode_sb_list_add - add inode to the superblock list of inodes
355 * @inode: inode to add
356 */
357void inode_sb_list_add(struct inode *inode)
358{
359 spin_lock(&inode_lock);
360 __inode_sb_list_add(inode);
361 spin_unlock(&inode_lock);
362}
363EXPORT_SYMBOL_GPL(inode_sb_list_add);
364
365static inline void __inode_sb_list_del(struct inode *inode)
366{
367 list_del_init(&inode->i_sb_list);
368}
369
Dave Chinner4c51acb2010-10-23 06:58:09 -0400370static unsigned long hash(struct super_block *sb, unsigned long hashval)
371{
372 unsigned long tmp;
373
374 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
375 L1_CACHE_BYTES;
376 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
377 return tmp & I_HASHMASK;
378}
379
380/**
381 * __insert_inode_hash - hash an inode
382 * @inode: unhashed inode
383 * @hashval: unsigned long value used to locate this object in the
384 * inode_hashtable.
385 *
386 * Add an inode to the inode hash for this superblock.
387 */
388void __insert_inode_hash(struct inode *inode, unsigned long hashval)
389{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400390 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
391
Dave Chinner4c51acb2010-10-23 06:58:09 -0400392 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400393 hlist_add_head(&inode->i_hash, b);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400394 spin_unlock(&inode_lock);
395}
396EXPORT_SYMBOL(__insert_inode_hash);
397
398/**
399 * __remove_inode_hash - remove an inode from the hash
400 * @inode: inode to unhash
401 *
402 * Remove an inode from the superblock.
403 */
404static void __remove_inode_hash(struct inode *inode)
405{
406 hlist_del_init(&inode->i_hash);
407}
408
409/**
410 * remove_inode_hash - remove an inode from the hash
411 * @inode: inode to unhash
412 *
413 * Remove an inode from the superblock.
414 */
415void remove_inode_hash(struct inode *inode)
416{
417 spin_lock(&inode_lock);
418 hlist_del_init(&inode->i_hash);
419 spin_unlock(&inode_lock);
420}
421EXPORT_SYMBOL(remove_inode_hash);
422
Al Virob0683aa2010-06-04 20:55:25 -0400423void end_writeback(struct inode *inode)
424{
425 might_sleep();
426 BUG_ON(inode->i_data.nrpages);
427 BUG_ON(!list_empty(&inode->i_data.private_list));
428 BUG_ON(!(inode->i_state & I_FREEING));
429 BUG_ON(inode->i_state & I_CLEAR);
430 inode_sync_wait(inode);
431 inode->i_state = I_FREEING | I_CLEAR;
432}
433EXPORT_SYMBOL(end_writeback);
434
Al Viro644da592010-06-07 13:21:05 -0400435static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400436{
437 const struct super_operations *op = inode->i_sb->s_op;
438
Al Virobe7ce412010-06-04 19:40:39 -0400439 if (op->evict_inode) {
440 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400441 } else {
442 if (inode->i_data.nrpages)
443 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400444 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400445 }
Al Viro661074e2010-06-04 20:19:55 -0400446 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
447 bd_forget(inode);
448 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
449 cd_forget(inode);
Al Virob4272d42010-06-04 19:33:20 -0400450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/*
453 * dispose_list - dispose of the contents of a local list
454 * @head: the head of the list to free
455 *
456 * Dispose-list gets a local list with local inodes in it, so it doesn't
457 * need to worry about list corruption and SMP locks.
458 */
459static void dispose_list(struct list_head *head)
460{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 while (!list_empty(head)) {
462 struct inode *inode;
463
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100464 inode = list_first_entry(head, struct inode, i_lru);
465 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Al Viro644da592010-06-07 13:21:05 -0400467 evict(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700468
469 spin_lock(&inode_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400470 __remove_inode_hash(inode);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400471 __inode_sb_list_del(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700472 spin_unlock(&inode_lock);
473
474 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/**
Al Viro63997e92010-10-25 20:49:35 -0400480 * evict_inodes - evict all evictable inodes for a superblock
481 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 *
Al Viro63997e92010-10-25 20:49:35 -0400483 * Make sure that no inodes with zero refcount are retained. This is
484 * called by superblock shutdown after having MS_ACTIVE flag removed,
485 * so any inode reaching zero refcount during or after that call will
486 * be immediately evicted.
487 */
488void evict_inodes(struct super_block *sb)
489{
490 struct inode *inode, *next;
491 LIST_HEAD(dispose);
492
493 down_write(&iprune_sem);
494
495 spin_lock(&inode_lock);
496 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
497 if (atomic_read(&inode->i_count))
498 continue;
499
500 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
501 WARN_ON(1);
502 continue;
503 }
504
505 inode->i_state |= I_FREEING;
506
507 /*
508 * Move the inode off the IO lists and LRU once I_FREEING is
509 * set so that it won't get moved back on there if it is dirty.
510 */
511 list_move(&inode->i_lru, &dispose);
512 list_del_init(&inode->i_wb_list);
513 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100514 inodes_stat.nr_unused--;
Al Viro63997e92010-10-25 20:49:35 -0400515 }
516 spin_unlock(&inode_lock);
517
518 dispose_list(&dispose);
519 up_write(&iprune_sem);
520}
521
522/**
Christoph Hellwiga0318782010-10-24 19:40:33 +0200523 * invalidate_inodes - attempt to free all inodes on a superblock
524 * @sb: superblock to operate on
525 *
526 * Attempts to free all inodes for a given superblock. If there were any
527 * busy inodes return a non-zero value, else zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530529int invalidate_inodes(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400531 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200532 struct inode *inode, *next;
533 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700535 down_write(&iprune_sem);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 spin_lock(&inode_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200538 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Al Viro63997e92010-10-25 20:49:35 -0400539 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 continue;
Christoph Hellwig99a38912010-10-23 19:07:20 +0200541 if (atomic_read(&inode->i_count)) {
542 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 continue;
544 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200545
Christoph Hellwig99a38912010-10-23 19:07:20 +0200546 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100547
548 /*
549 * Move the inode off the IO lists and LRU once I_FREEING is
550 * set so that it won't get moved back on there if it is dirty.
551 */
Christoph Hellwiga0318782010-10-24 19:40:33 +0200552 list_move(&inode->i_lru, &dispose);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100553 list_del_init(&inode->i_wb_list);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200554 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
Nick Piggin86c87492011-01-07 17:49:18 +1100555 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 spin_unlock(&inode_lock);
558
Christoph Hellwiga0318782010-10-24 19:40:33 +0200559 dispose_list(&dispose);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700560 up_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 return busy;
563}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565static int can_unuse(struct inode *inode)
566{
Nick Piggin9e38d862010-10-23 06:55:17 -0400567 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 0;
569 if (inode_has_buffers(inode))
570 return 0;
571 if (atomic_read(&inode->i_count))
572 return 0;
573 if (inode->i_data.nrpages)
574 return 0;
575 return 1;
576}
577
578/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400579 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
580 * temporary list and then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 *
582 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400583 * pagecache removed. If the inode has metadata buffers attached to
584 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400586 * If the inode has the I_REFERENCED flag set, then it means that it has been
587 * used recently - the flag is set in iput_final(). When we encounter such an
588 * inode, clear the flag and move it to the back of the LRU so it gets another
589 * pass through the LRU before it gets reclaimed. This is necessary because of
590 * the fact we are doing lazy LRU updates to minimise lock contention so the
591 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
592 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
594static void prune_icache(int nr_to_scan)
595{
596 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int nr_scanned;
598 unsigned long reap = 0;
599
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700600 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 spin_lock(&inode_lock);
602 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
603 struct inode *inode;
604
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100605 if (list_empty(&inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
607
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100608 inode = list_entry(inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Nick Piggin9e38d862010-10-23 06:55:17 -0400610 /*
611 * Referenced or dirty inodes are still in use. Give them
612 * another pass through the LRU as we canot reclaim them now.
613 */
614 if (atomic_read(&inode->i_count) ||
615 (inode->i_state & ~I_REFERENCED)) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100616 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100617 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400618 continue;
619 }
620
621 /* recently referenced inodes get one more pass */
622 if (inode->i_state & I_REFERENCED) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100623 list_move(&inode->i_lru, &inode_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400624 inode->i_state &= ~I_REFERENCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 continue;
626 }
627 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
628 __iget(inode);
629 spin_unlock(&inode_lock);
630 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800631 reap += invalidate_mapping_pages(&inode->i_data,
632 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 iput(inode);
634 spin_lock(&inode_lock);
635
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100636 if (inode != list_entry(inode_lru.next,
637 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 continue; /* wrong inode or list_empty */
639 if (!can_unuse(inode))
640 continue;
641 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700642 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100644
645 /*
646 * Move the inode off the IO lists and LRU once I_FREEING is
647 * set so that it won't get moved back on there if it is dirty.
648 */
649 list_move(&inode->i_lru, &freeable);
650 list_del_init(&inode->i_wb_list);
Nick Piggin86c87492011-01-07 17:49:18 +1100651 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700653 if (current_is_kswapd())
654 __count_vm_events(KSWAPD_INODESTEAL, reap);
655 else
656 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 spin_unlock(&inode_lock);
658
659 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700660 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663/*
664 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
665 * "unused" means that no dentries are referring to the inodes: the files are
666 * not open and the dcache references to those inodes have already been
667 * reclaimed.
668 *
669 * This function is passed the number of inodes to scan, and it returns the
670 * total number of remaining possibly-reclaimable inodes.
671 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000672static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 if (nr) {
675 /*
676 * Nasty deadlock avoidance. We may hold various FS locks,
677 * and we don't want to recurse into the FS that called us
678 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (!(gfp_mask & __GFP_FS))
681 return -1;
682 prune_icache(nr);
683 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400684 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Rusty Russell8e1f9362007-07-17 04:03:17 -0700687static struct shrinker icache_shrinker = {
688 .shrink = shrink_icache_memory,
689 .seeks = DEFAULT_SEEKS,
690};
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692static void __wait_on_freeing_inode(struct inode *inode);
693/*
694 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530696static struct inode *find_inode(struct super_block *sb,
697 struct hlist_head *head,
698 int (*test)(struct inode *, void *),
699 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530702 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700705 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (inode->i_sb != sb)
707 continue;
708 if (!test(inode, data))
709 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400710 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 __wait_on_freeing_inode(inode);
712 goto repeat;
713 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400714 __iget(inode);
715 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400717 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
720/*
721 * find_inode_fast is the fast path version of find_inode, see the comment at
722 * iget_locked for details.
723 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530724static struct inode *find_inode_fast(struct super_block *sb,
725 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530728 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700731 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (inode->i_ino != ino)
733 continue;
734 if (inode->i_sb != sb)
735 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400736 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 __wait_on_freeing_inode(inode);
738 goto repeat;
739 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400740 __iget(inode);
741 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400743 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Eric Dumazetf991bd22010-10-23 11:18:01 -0400746/*
747 * Each cpu owns a range of LAST_INO_BATCH numbers.
748 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
749 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100750 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400751 * This does not significantly increase overflow rate because every CPU can
752 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
753 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
754 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
755 * overflow rate by 2x, which does not seem too significant.
756 *
757 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
758 * error if st_ino won't fit in target struct field. Use 32bit counter
759 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100760 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400761#define LAST_INO_BATCH 1024
762static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100763
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400764unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400765{
766 unsigned int *p = &get_cpu_var(last_ino);
767 unsigned int res = *p;
768
769#ifdef CONFIG_SMP
770 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
771 static atomic_t shared_last_ino;
772 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
773
774 res = next - LAST_INO_BATCH;
775 }
776#endif
777
778 *p = ++res;
779 put_cpu_var(last_ino);
780 return res;
David Chinner8290c352008-10-30 17:35:24 +1100781}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400782EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784/**
785 * new_inode - obtain an inode
786 * @sb: superblock
787 *
Mel Gorman769848c2007-07-17 04:03:05 -0700788 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800789 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700790 * If HIGHMEM pages are unsuitable or it is known that pages allocated
791 * for the page cache are not reclaimable or migratable,
792 * mapping_set_gfp_mask() must be called with suitable flags on the
793 * newly created inode's mapping
794 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 */
796struct inode *new_inode(struct super_block *sb)
797{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530798 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 inode = alloc_inode(sb);
803 if (inode) {
804 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400805 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 inode->i_state = 0;
807 spin_unlock(&inode_lock);
808 }
809 return inode;
810}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811EXPORT_SYMBOL(new_inode);
812
813void unlock_new_inode(struct inode *inode)
814{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200815#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900816 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200817 struct file_system_type *type = inode->i_sb->s_type;
818
Jan Kara9a7aa122009-06-04 15:26:49 +0200819 /* Set new key only if filesystem hasn't already changed it */
820 if (!lockdep_match_class(&inode->i_mutex,
821 &type->i_mutex_key)) {
822 /*
823 * ensure nobody is actually holding i_mutex
824 */
825 mutex_destroy(&inode->i_mutex);
826 mutex_init(&inode->i_mutex);
827 lockdep_set_class(&inode->i_mutex,
828 &type->i_mutex_dir_key);
829 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200830 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200831#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /*
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100833 * This is special! We do not need the spinlock when clearing I_NEW,
Jan Kara580be082009-09-21 17:01:06 -0700834 * because we're guaranteed that nobody else tries to do anything about
835 * the state of the inode when it is locked, as we just created it (so
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100836 * there can be no old holders that haven't tested I_NEW).
Jan Kara580be082009-09-21 17:01:06 -0700837 * However we must emit the memory barrier so that other CPUs reliably
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100838 * see the clearing of I_NEW after the other inode initialisation has
Jan Kara580be082009-09-21 17:01:06 -0700839 * completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 */
Jan Kara580be082009-09-21 17:01:06 -0700841 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100842 WARN_ON(!(inode->i_state & I_NEW));
843 inode->i_state &= ~I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 wake_up_inode(inode);
845}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846EXPORT_SYMBOL(unlock_new_inode);
847
848/*
849 * This is called without the inode lock held.. Be careful.
850 *
851 * We no longer cache the sb_flags in i_flags - see fs.h
852 * -- rmk@arm.uk.linux.org
853 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530854static struct inode *get_new_inode(struct super_block *sb,
855 struct hlist_head *head,
856 int (*test)(struct inode *, void *),
857 int (*set)(struct inode *, void *),
858 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530860 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 inode = alloc_inode(sb);
863 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530864 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 spin_lock(&inode_lock);
867 /* We released the lock, so.. */
868 old = find_inode(sb, head, test, data);
869 if (!old) {
870 if (set(inode, data))
871 goto set_failed;
872
Christoph Hellwig646ec462010-10-23 07:15:32 -0400873 hlist_add_head(&inode->i_hash, head);
874 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100875 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 spin_unlock(&inode_lock);
877
878 /* Return the locked inode with I_NEW set, the
879 * caller is responsible for filling in the contents
880 */
881 return inode;
882 }
883
884 /*
885 * Uhhuh, somebody else created the same inode under
886 * us. Use the old inode instead of the one we just
887 * allocated.
888 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 spin_unlock(&inode_lock);
890 destroy_inode(inode);
891 inode = old;
892 wait_on_inode(inode);
893 }
894 return inode;
895
896set_failed:
897 spin_unlock(&inode_lock);
898 destroy_inode(inode);
899 return NULL;
900}
901
902/*
903 * get_new_inode_fast is the fast path version of get_new_inode, see the
904 * comment at iget_locked for details.
905 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530906static struct inode *get_new_inode_fast(struct super_block *sb,
907 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530909 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 inode = alloc_inode(sb);
912 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530913 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 spin_lock(&inode_lock);
916 /* We released the lock, so.. */
917 old = find_inode_fast(sb, head, ino);
918 if (!old) {
919 inode->i_ino = ino;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400920 hlist_add_head(&inode->i_hash, head);
921 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100922 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 spin_unlock(&inode_lock);
924
925 /* Return the locked inode with I_NEW set, the
926 * caller is responsible for filling in the contents
927 */
928 return inode;
929 }
930
931 /*
932 * Uhhuh, somebody else created the same inode under
933 * us. Use the old inode instead of the one we just
934 * allocated.
935 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 spin_unlock(&inode_lock);
937 destroy_inode(inode);
938 inode = old;
939 wait_on_inode(inode);
940 }
941 return inode;
942}
943
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400944/*
945 * search the inode cache for a matching inode number.
946 * If we find one, then the inode number we are trying to
947 * allocate is not unique and so we should not use it.
948 *
949 * Returns 1 if the inode number is unique, 0 if it is not.
950 */
951static int test_inode_iunique(struct super_block *sb, unsigned long ino)
952{
953 struct hlist_head *b = inode_hashtable + hash(sb, ino);
954 struct hlist_node *node;
955 struct inode *inode;
956
957 hlist_for_each_entry(inode, node, b, i_hash) {
958 if (inode->i_ino == ino && inode->i_sb == sb)
959 return 0;
960 }
961
962 return 1;
963}
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965/**
966 * iunique - get a unique inode number
967 * @sb: superblock
968 * @max_reserved: highest reserved inode number
969 *
970 * Obtain an inode number that is unique on the system for a given
971 * superblock. This is used by file systems that have no natural
972 * permanent inode numbering system. An inode number is returned that
973 * is higher than the reserved limit but unique.
974 *
975 * BUGS:
976 * With a large number of inodes live on the file system this function
977 * currently becomes quite slow.
978 */
979ino_t iunique(struct super_block *sb, ino_t max_reserved)
980{
Jeff Layton866b04f2007-05-08 00:32:29 -0700981 /*
982 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
983 * error if st_ino won't fit in target struct field. Use 32bit counter
984 * here to attempt to avoid that.
985 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400986 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -0700987 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700990 spin_lock(&inode_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400991 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700992 do {
993 if (counter <= max_reserved)
994 counter = max_reserved + 1;
995 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400996 } while (!test_inode_iunique(sb, res));
997 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700998 spin_unlock(&inode_lock);
999
1000 return res;
1001}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002EXPORT_SYMBOL(iunique);
1003
1004struct inode *igrab(struct inode *inode)
1005{
1006 spin_lock(&inode_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -04001007 if (!(inode->i_state & (I_FREEING|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 __iget(inode);
1009 else
1010 /*
1011 * Handle the case where s_op->clear_inode is not been
1012 * called yet, and somebody is calling igrab
1013 * while the inode is getting freed.
1014 */
1015 inode = NULL;
1016 spin_unlock(&inode_lock);
1017 return inode;
1018}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019EXPORT_SYMBOL(igrab);
1020
1021/**
1022 * ifind - internal function, you want ilookup5() or iget5().
1023 * @sb: super block of file system to search
1024 * @head: the head of the list to search
1025 * @test: callback used for comparisons between inodes
1026 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001027 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 *
1029 * ifind() searches for the inode specified by @data in the inode
1030 * cache. This is a generalized version of ifind_fast() for file systems where
1031 * the inode number is not sufficient for unique identification of an inode.
1032 *
1033 * If the inode is in the cache, the inode is returned with an incremented
1034 * reference count.
1035 *
1036 * Otherwise NULL is returned.
1037 *
1038 * Note, @test is called with the inode_lock held, so can't sleep.
1039 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001040static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001042 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 struct inode *inode;
1045
1046 spin_lock(&inode_lock);
1047 inode = find_inode(sb, head, test, data);
1048 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001050 if (likely(wait))
1051 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 return inode;
1053 }
1054 spin_unlock(&inode_lock);
1055 return NULL;
1056}
1057
1058/**
1059 * ifind_fast - internal function, you want ilookup() or iget().
1060 * @sb: super block of file system to search
1061 * @head: head of the list to search
1062 * @ino: inode number to search for
1063 *
1064 * ifind_fast() searches for the inode @ino in the inode cache. This is for
1065 * file systems where the inode number is sufficient for unique identification
1066 * of an inode.
1067 *
1068 * If the inode is in the cache, the inode is returned with an incremented
1069 * reference count.
1070 *
1071 * Otherwise NULL is returned.
1072 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001073static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 struct hlist_head *head, unsigned long ino)
1075{
1076 struct inode *inode;
1077
1078 spin_lock(&inode_lock);
1079 inode = find_inode_fast(sb, head, ino);
1080 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 spin_unlock(&inode_lock);
1082 wait_on_inode(inode);
1083 return inode;
1084 }
1085 spin_unlock(&inode_lock);
1086 return NULL;
1087}
1088
1089/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001090 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 * @sb: super block of file system to search
1092 * @hashval: hash value (usually inode number) to search for
1093 * @test: callback used for comparisons between inodes
1094 * @data: opaque data pointer to pass to @test
1095 *
1096 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1097 * @data in the inode cache. This is a generalized version of ilookup() for
1098 * file systems where the inode number is not sufficient for unique
1099 * identification of an inode.
1100 *
1101 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001102 * reference count. Note, the inode lock is not waited upon so you have to be
1103 * very careful what you do with the returned inode. You probably should be
1104 * using ilookup5() instead.
1105 *
1106 * Otherwise NULL is returned.
1107 *
1108 * Note, @test is called with the inode_lock held, so can't sleep.
1109 */
1110struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1111 int (*test)(struct inode *, void *), void *data)
1112{
1113 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1114
1115 return ifind(sb, head, test, data, 0);
1116}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001117EXPORT_SYMBOL(ilookup5_nowait);
1118
1119/**
1120 * ilookup5 - search for an inode in the inode cache
1121 * @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 lock is waited upon and the inode is
1132 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 *
1134 * Otherwise NULL is returned.
1135 *
1136 * Note, @test is called with the inode_lock held, so can't sleep.
1137 */
1138struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1139 int (*test)(struct inode *, void *), void *data)
1140{
1141 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1142
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001143 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145EXPORT_SYMBOL(ilookup5);
1146
1147/**
1148 * ilookup - search for an inode in the inode cache
1149 * @sb: super block of file system to search
1150 * @ino: inode number to search for
1151 *
1152 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1153 * This is for file systems where the inode number is sufficient for unique
1154 * identification of an inode.
1155 *
1156 * If the inode is in the cache, the inode is returned with an incremented
1157 * reference count.
1158 *
1159 * Otherwise NULL is returned.
1160 */
1161struct inode *ilookup(struct super_block *sb, unsigned long ino)
1162{
1163 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1164
1165 return ifind_fast(sb, head, ino);
1166}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167EXPORT_SYMBOL(ilookup);
1168
1169/**
1170 * iget5_locked - obtain an inode from a mounted file system
1171 * @sb: super block of file system
1172 * @hashval: hash value (usually inode number) to get
1173 * @test: callback used for comparisons between inodes
1174 * @set: callback used to initialize a new struct inode
1175 * @data: opaque data pointer to pass to @test and @set
1176 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1178 * and @data in the inode cache and if present it is returned with an increased
1179 * reference count. This is a generalized version of iget_locked() for file
1180 * systems where the inode number is not sufficient for unique identification
1181 * of an inode.
1182 *
1183 * If the inode is not in cache, get_new_inode() is called to allocate a new
1184 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1185 * file system gets to fill it in before unlocking it via unlock_new_inode().
1186 *
1187 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1188 */
1189struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1190 int (*test)(struct inode *, void *),
1191 int (*set)(struct inode *, void *), void *data)
1192{
1193 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1194 struct inode *inode;
1195
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001196 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 if (inode)
1198 return inode;
1199 /*
1200 * get_new_inode() will do the right thing, re-trying the search
1201 * in case it had to block at any point.
1202 */
1203 return get_new_inode(sb, head, test, set, data);
1204}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205EXPORT_SYMBOL(iget5_locked);
1206
1207/**
1208 * iget_locked - obtain an inode from a mounted file system
1209 * @sb: super block of file system
1210 * @ino: inode number to get
1211 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1213 * the inode cache and if present it is returned with an increased reference
1214 * count. This is for file systems where the inode number is sufficient for
1215 * unique identification of an inode.
1216 *
1217 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1218 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1219 * The file system gets to fill it in before unlocking it via
1220 * unlock_new_inode().
1221 */
1222struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1223{
1224 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1225 struct inode *inode;
1226
1227 inode = ifind_fast(sb, head, ino);
1228 if (inode)
1229 return inode;
1230 /*
1231 * get_new_inode_fast() will do the right thing, re-trying the search
1232 * in case it had to block at any point.
1233 */
1234 return get_new_inode_fast(sb, head, ino);
1235}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236EXPORT_SYMBOL(iget_locked);
1237
Al Viro261bca82008-12-30 01:48:21 -05001238int insert_inode_locked(struct inode *inode)
1239{
1240 struct super_block *sb = inode->i_sb;
1241 ino_t ino = inode->i_ino;
1242 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001243
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001244 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001245 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001246 struct hlist_node *node;
1247 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001248 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001249 hlist_for_each_entry(old, node, head, i_hash) {
1250 if (old->i_ino != ino)
1251 continue;
1252 if (old->i_sb != sb)
1253 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001254 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001255 continue;
1256 break;
1257 }
1258 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001259 hlist_add_head(&inode->i_hash, head);
1260 spin_unlock(&inode_lock);
1261 return 0;
1262 }
1263 __iget(old);
1264 spin_unlock(&inode_lock);
1265 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001266 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001267 iput(old);
1268 return -EBUSY;
1269 }
1270 iput(old);
1271 }
1272}
Al Viro261bca82008-12-30 01:48:21 -05001273EXPORT_SYMBOL(insert_inode_locked);
1274
1275int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1276 int (*test)(struct inode *, void *), void *data)
1277{
1278 struct super_block *sb = inode->i_sb;
1279 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001280
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001281 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001282
1283 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001284 struct hlist_node *node;
1285 struct inode *old = NULL;
1286
Al Viro261bca82008-12-30 01:48:21 -05001287 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001288 hlist_for_each_entry(old, node, head, i_hash) {
1289 if (old->i_sb != sb)
1290 continue;
1291 if (!test(old, data))
1292 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001293 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001294 continue;
1295 break;
1296 }
1297 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001298 hlist_add_head(&inode->i_hash, head);
1299 spin_unlock(&inode_lock);
1300 return 0;
1301 }
1302 __iget(old);
1303 spin_unlock(&inode_lock);
1304 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001305 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001306 iput(old);
1307 return -EBUSY;
1308 }
1309 iput(old);
1310 }
1311}
Al Viro261bca82008-12-30 01:48:21 -05001312EXPORT_SYMBOL(insert_inode_locked4);
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Al Viro45321ac2010-06-07 13:43:19 -04001315int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Al Viro45321ac2010-06-07 13:43:19 -04001317 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319EXPORT_SYMBOL(generic_delete_inode);
1320
Al Viro45321ac2010-06-07 13:43:19 -04001321/*
1322 * Normal UNIX filesystem behaviour: delete the
1323 * inode when the usage count drops to zero, and
1324 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001325 */
Al Viro45321ac2010-06-07 13:43:19 -04001326int generic_drop_inode(struct inode *inode)
1327{
Al Viro1d3382c2010-10-23 15:19:20 -04001328 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001329}
1330EXPORT_SYMBOL_GPL(generic_drop_inode);
1331
1332/*
1333 * Called when we're dropping the last reference
1334 * to an inode.
1335 *
1336 * Call the FS "drop_inode()" function, defaulting to
1337 * the legacy UNIX filesystem behaviour. If it tells
1338 * us to evict inode, do so. Otherwise, retain inode
1339 * in cache if fs is alive, sync and evict if fs is
1340 * shutting down.
1341 */
1342static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001345 const struct super_operations *op = inode->i_sb->s_op;
1346 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Al Viro45321ac2010-06-07 13:43:19 -04001348 if (op && op->drop_inode)
1349 drop = op->drop_inode(inode);
1350 else
1351 drop = generic_drop_inode(inode);
1352
1353 if (!drop) {
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001354 if (sb->s_flags & MS_ACTIVE) {
Nick Piggin9e38d862010-10-23 06:55:17 -04001355 inode->i_state |= I_REFERENCED;
1356 if (!(inode->i_state & (I_DIRTY|I_SYNC))) {
1357 inode_lru_list_add(inode);
1358 }
Alexander Viro991114c2005-06-23 00:09:01 -07001359 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001360 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001361 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001362 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001363 inode->i_state |= I_WILL_FREE;
1364 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 write_inode_now(inode, 1);
1366 spin_lock(&inode_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001367 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001368 inode->i_state &= ~I_WILL_FREE;
Dave Chinner4c51acb2010-10-23 06:58:09 -04001369 __remove_inode_hash(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001371
Nick Piggin7ef0d732009-03-12 14:31:38 -07001372 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001373 inode->i_state |= I_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -04001374
1375 /*
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001376 * Move the inode off the IO lists and LRU once I_FREEING is
1377 * set so that it won't get moved back on there if it is dirty.
Nick Piggin9e38d862010-10-23 06:55:17 -04001378 */
1379 inode_lru_list_del(inode);
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001380 list_del_init(&inode->i_wb_list);
Nick Piggin9e38d862010-10-23 06:55:17 -04001381
Christoph Hellwig646ec462010-10-23 07:15:32 -04001382 __inode_sb_list_del(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001384 evict(inode);
Dave Chinner4c51acb2010-10-23 06:58:09 -04001385 remove_inode_hash(inode);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001386 wake_up_inode(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001387 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 destroy_inode(inode);
1389}
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301392 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 * @inode: inode to put
1394 *
1395 * Puts an inode, dropping its usage count. If the inode use count hits
1396 * zero, the inode is then freed and may also be destroyed.
1397 *
1398 * Consequently, iput() can sleep.
1399 */
1400void iput(struct inode *inode)
1401{
1402 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001403 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1406 iput_final(inode);
1407 }
1408}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409EXPORT_SYMBOL(iput);
1410
1411/**
1412 * bmap - find a block number in a file
1413 * @inode: inode of file
1414 * @block: block to find
1415 *
1416 * Returns the block number on the device holding the inode that
1417 * is the disk block number for the block of the file requested.
1418 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301419 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 * file.
1421 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301422sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 sector_t res = 0;
1425 if (inode->i_mapping->a_ops->bmap)
1426 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1427 return res;
1428}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429EXPORT_SYMBOL(bmap);
1430
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001431/*
1432 * With relative atime, only update atime if the previous atime is
1433 * earlier than either the ctime or mtime or if at least a day has
1434 * passed since the last atime update.
1435 */
1436static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1437 struct timespec now)
1438{
1439
1440 if (!(mnt->mnt_flags & MNT_RELATIME))
1441 return 1;
1442 /*
1443 * Is mtime younger than atime? If yes, update atime:
1444 */
1445 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1446 return 1;
1447 /*
1448 * Is ctime younger than atime? If yes, update atime:
1449 */
1450 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1451 return 1;
1452
1453 /*
1454 * Is the previous atime value older than a day? If yes,
1455 * update atime:
1456 */
1457 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1458 return 1;
1459 /*
1460 * Good, we can skip the atime update:
1461 */
1462 return 0;
1463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001466 * touch_atime - update the access time
1467 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001468 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 *
1470 * Update the accessed time on an inode and mark it for writeback.
1471 * This function automatically handles read only file systems and media,
1472 * as well as the "noatime" flag and inode specific "noatime" markers.
1473 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001474void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001476 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 struct timespec now;
1478
Andrew Mortonb2276132006-12-13 00:34:33 -08001479 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001480 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001481 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001482 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001483 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001484 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001485
Dave Hansencdb70f32008-02-15 14:37:41 -08001486 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001487 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001488 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001489 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001492
1493 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001494 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001495
Valerie Henson47ae32d2006-12-13 00:34:34 -08001496 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001497 return;
1498
1499 if (mnt_want_write(mnt))
1500 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001501
1502 inode->i_atime = now;
1503 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001504 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001506EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001509 * file_update_time - update mtime and ctime time
1510 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001512 * Update the mtime and ctime members of an inode and mark the inode
1513 * for writeback. Note that this function is meant exclusively for
1514 * usage in the file write path of filesystems, and filesystems may
1515 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001516 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001517 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 */
1519
Christoph Hellwig870f4812006-01-09 20:52:01 -08001520void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001522 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001524 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Andi Kleence06e0b2009-09-18 13:05:48 -07001526 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (IS_NOCMTIME(inode))
1528 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001529
Andi Kleence06e0b2009-09-18 13:05:48 -07001530 now = current_fs_time(inode->i_sb);
1531 if (!timespec_equal(&inode->i_mtime, &now))
1532 sync_it = S_MTIME;
1533
1534 if (!timespec_equal(&inode->i_ctime, &now))
1535 sync_it |= S_CTIME;
1536
1537 if (IS_I_VERSION(inode))
1538 sync_it |= S_VERSION;
1539
1540 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return;
1542
Andi Kleence06e0b2009-09-18 13:05:48 -07001543 /* Finally allowed to write? Takes lock. */
1544 if (mnt_want_write_file(file))
1545 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Andi Kleence06e0b2009-09-18 13:05:48 -07001547 /* Only change inode inside the lock region */
1548 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001549 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001550 if (sync_it & S_CTIME)
1551 inode->i_ctime = now;
1552 if (sync_it & S_MTIME)
1553 inode->i_mtime = now;
1554 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001555 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001557EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559int inode_needs_sync(struct inode *inode)
1560{
1561 if (IS_SYNC(inode))
1562 return 1;
1563 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1564 return 1;
1565 return 0;
1566}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567EXPORT_SYMBOL(inode_needs_sync);
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569int inode_wait(void *word)
1570{
1571 schedule();
1572 return 0;
1573}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001574EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001577 * If we try to find an inode in the inode hash while it is being
1578 * deleted, we have to wait until the filesystem completes its
1579 * deletion before reporting that it isn't found. This function waits
1580 * until the deletion _might_ have completed. Callers are responsible
1581 * to recheck inode state.
1582 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001583 * It doesn't matter if I_NEW is not set initially, a call to
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001584 * wake_up_inode() after removing from the hash list will DTRT.
1585 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 * This is called with inode_lock held.
1587 */
1588static void __wait_on_freeing_inode(struct inode *inode)
1589{
1590 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001591 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1592 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1594 spin_unlock(&inode_lock);
1595 schedule();
1596 finish_wait(wq, &wait.wait);
1597 spin_lock(&inode_lock);
1598}
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600static __initdata unsigned long ihash_entries;
1601static int __init set_ihash_entries(char *str)
1602{
1603 if (!str)
1604 return 0;
1605 ihash_entries = simple_strtoul(str, &str, 0);
1606 return 1;
1607}
1608__setup("ihash_entries=", set_ihash_entries);
1609
1610/*
1611 * Initialize the waitqueues and inode hash table.
1612 */
1613void __init inode_init_early(void)
1614{
1615 int loop;
1616
1617 /* If hashes are distributed across NUMA nodes, defer
1618 * hash allocation until vmalloc space is available.
1619 */
1620 if (hashdist)
1621 return;
1622
1623 inode_hashtable =
1624 alloc_large_system_hash("Inode-cache",
1625 sizeof(struct hlist_head),
1626 ihash_entries,
1627 14,
1628 HASH_EARLY,
1629 &i_hash_shift,
1630 &i_hash_mask,
1631 0);
1632
1633 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1634 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1635}
1636
Denis Cheng74bf17c2007-10-16 23:26:30 -07001637void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
1639 int loop;
1640
1641 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001642 inode_cachep = kmem_cache_create("inode_cache",
1643 sizeof(struct inode),
1644 0,
1645 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1646 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001647 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001648 register_shrinker(&icache_shrinker);
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001649 percpu_counter_init(&nr_inodes, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 /* Hash may have been set up in inode_init_early */
1652 if (!hashdist)
1653 return;
1654
1655 inode_hashtable =
1656 alloc_large_system_hash("Inode-cache",
1657 sizeof(struct hlist_head),
1658 ihash_entries,
1659 14,
1660 0,
1661 &i_hash_shift,
1662 &i_hash_mask,
1663 0);
1664
1665 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1666 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1667}
1668
1669void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1670{
1671 inode->i_mode = mode;
1672 if (S_ISCHR(mode)) {
1673 inode->i_fop = &def_chr_fops;
1674 inode->i_rdev = rdev;
1675 } else if (S_ISBLK(mode)) {
1676 inode->i_fop = &def_blk_fops;
1677 inode->i_rdev = rdev;
1678 } else if (S_ISFIFO(mode))
1679 inode->i_fop = &def_fifo_fops;
1680 else if (S_ISSOCK(mode))
1681 inode->i_fop = &bad_sock_fops;
1682 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001683 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1684 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1685 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001688
1689/**
1690 * Init uid,gid,mode for new inode according to posix standards
1691 * @inode: New inode
1692 * @dir: Directory inode
1693 * @mode: mode of the new inode
1694 */
1695void inode_init_owner(struct inode *inode, const struct inode *dir,
1696 mode_t mode)
1697{
1698 inode->i_uid = current_fsuid();
1699 if (dir && dir->i_mode & S_ISGID) {
1700 inode->i_gid = dir->i_gid;
1701 if (S_ISDIR(mode))
1702 mode |= S_ISGID;
1703 } else
1704 inode->i_gid = current_fsgid();
1705 inode->i_mode = mode;
1706}
1707EXPORT_SYMBOL(inode_init_owner);