blob: 09e2d7a5f1d2f0b22e21d7e9ef63f7a947d1b049 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
29 * This is needed for the following functions:
30 * - inode_has_buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * - invalidate_bdev
32 *
33 * FIXME: remove all knowledge of the buffer layer from this file
34 */
35#include <linux/buffer_head.h>
36
37/*
38 * New inode.c implementation.
39 *
40 * This implementation has the basic premise of trying
41 * to be extremely low-overhead and SMP-safe, yet be
42 * simple enough to be "obviously correct".
43 *
44 * Famous last words.
45 */
46
47/* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
48
49/* #define INODE_PARANOIA 1 */
50/* #define INODE_DEBUG 1 */
51
52/*
53 * Inode lookup is no longer as critical as it used to be:
54 * most of the lookups are going to be through the dcache.
55 */
56#define I_HASHBITS i_hash_shift
57#define I_HASHMASK i_hash_mask
58
Eric Dumazetfa3536c2006-03-26 01:37:24 -080059static unsigned int i_hash_mask __read_mostly;
60static unsigned int i_hash_shift __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/*
63 * Each inode can be on two separate lists. One is
64 * the hash list of the inode, used for lookups. The
65 * other linked list is the "type" list:
66 * "in_use" - valid inode, i_count > 0, i_nlink > 0
67 * "dirty" - as "in_use" but also dirty
68 * "unused" - valid inode, i_count = 0
69 *
70 * A "dirty" list is maintained for each super block,
71 * allowing for low-overhead inode sync() operations.
72 */
73
Nick Piggin7ccf19a2010-10-21 11:49:30 +110074static LIST_HEAD(inode_lru);
Eric Dumazetfa3536c2006-03-26 01:37:24 -080075static struct hlist_head *inode_hashtable __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 * A simple spinlock to protect the list manipulations.
79 *
80 * NOTE! You also have to own the lock if you change
81 * the i_state of an inode while it is in use..
82 */
83DEFINE_SPINLOCK(inode_lock);
84
85/*
Nick Piggin88e0fbc2009-09-22 16:43:50 -070086 * iprune_sem provides exclusion between the kswapd or try_to_free_pages
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 * icache shrinking path, and the umount path. Without this exclusion,
88 * by the time prune_icache calls iput for the inode whose pages it has
89 * been invalidating, or by the time it calls clear_inode & destroy_inode
90 * from its final dispose_list, the struct super_block they refer to
91 * (for inode->i_sb->s_op) may already have been freed and reused.
Nick Piggin88e0fbc2009-09-22 16:43:50 -070092 *
93 * We make this an rwsem because the fastpath is icache shrinking. In
94 * some cases a filesystem may be doing a significant amount of work in
95 * its inode reclaim code, so this should improve parallelism.
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 */
Nick Piggin88e0fbc2009-09-22 16:43:50 -070097static DECLARE_RWSEM(iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * Statistics gathering..
101 */
102struct inodes_stat_t inodes_stat;
103
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400104static struct percpu_counter nr_inodes __cacheline_aligned_in_smp;
105static struct percpu_counter nr_inodes_unused __cacheline_aligned_in_smp;
106
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{
116 return percpu_counter_sum_positive(&nr_inodes_unused);
117}
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();
134 inodes_stat.nr_unused = get_nr_inodes_unused();
135 return proc_dointvec(table, write, buffer, lenp, ppos);
136}
137#endif
138
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700139static void wake_up_inode(struct inode *inode)
140{
141 /*
142 * Prevent speculative execution through spin_unlock(&inode_lock);
143 */
144 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100145 wake_up_bit(&inode->i_state, __I_NEW);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700146}
147
David Chinner2cb15992008-10-30 17:32:23 +1100148/**
149 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800150 * @sb: superblock inode belongs to
151 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100152 *
153 * These are initializations that need to be done on every inode
154 * allocation as the fields are not initialised by slab allocation.
155 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300156int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700158 static const struct address_space_operations empty_aops;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700159 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800160 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530161 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100162
163 inode->i_sb = sb;
164 inode->i_blkbits = sb->s_blocksize_bits;
165 inode->i_flags = 0;
166 atomic_set(&inode->i_count, 1);
167 inode->i_op = &empty_iops;
168 inode->i_fop = &empty_fops;
169 inode->i_nlink = 1;
Al Viro56ff5ef2008-12-09 09:34:39 -0500170 inode->i_uid = 0;
171 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100172 atomic_set(&inode->i_writecount, 0);
173 inode->i_size = 0;
174 inode->i_blocks = 0;
175 inode->i_bytes = 0;
176 inode->i_generation = 0;
177#ifdef CONFIG_QUOTA
178 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
179#endif
180 inode->i_pipe = NULL;
181 inode->i_bdev = NULL;
182 inode->i_cdev = NULL;
183 inode->i_rdev = 0;
184 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500185
186 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300187 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100188 spin_lock_init(&inode->i_lock);
189 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
190
191 mutex_init(&inode->i_mutex);
192 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
193
194 init_rwsem(&inode->i_alloc_sem);
195 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
196
197 mapping->a_ops = &empty_aops;
198 mapping->host = inode;
199 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800200 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100201 mapping->assoc_mapping = NULL;
202 mapping->backing_dev_info = &default_backing_dev_info;
203 mapping->writeback_index = 0;
204
205 /*
206 * If the block_device provides a backing_dev_info for client
207 * inodes then use that. Otherwise the inode share the bdev's
208 * backing_dev_info.
209 */
210 if (sb->s_bdev) {
211 struct backing_dev_info *bdi;
212
Jens Axboe2c96ce92009-09-15 09:43:56 +0200213 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100214 mapping->backing_dev_info = bdi;
215 }
216 inode->i_private = NULL;
217 inode->i_mapping = mapping;
Al Virof19d4a82009-06-08 19:50:45 -0400218#ifdef CONFIG_FS_POSIX_ACL
219 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
220#endif
David Chinner2cb15992008-10-30 17:32:23 +1100221
Eric Paris3be25f42009-05-21 17:01:26 -0400222#ifdef CONFIG_FSNOTIFY
223 inode->i_fsnotify_mask = 0;
224#endif
225
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400226 percpu_counter_inc(&nr_inodes);
227
Christoph Hellwig54e34622009-08-07 14:38:25 -0300228 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300229out:
230 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100231}
232EXPORT_SYMBOL(inode_init_always);
233
234static struct inode *alloc_inode(struct super_block *sb)
235{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 struct inode *inode;
237
238 if (sb->s_op->alloc_inode)
239 inode = sb->s_op->alloc_inode(sb);
240 else
David Chinner2cb15992008-10-30 17:32:23 +1100241 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Christoph Hellwig54e34622009-08-07 14:38:25 -0300243 if (!inode)
244 return NULL;
245
246 if (unlikely(inode_init_always(sb, inode))) {
247 if (inode->i_sb->s_op->destroy_inode)
248 inode->i_sb->s_op->destroy_inode(inode);
249 else
250 kmem_cache_free(inode_cachep, inode);
251 return NULL;
252 }
253
254 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300257void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200259 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400261 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400262#ifdef CONFIG_FS_POSIX_ACL
263 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
264 posix_acl_release(inode->i_acl);
265 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
266 posix_acl_release(inode->i_default_acl);
267#endif
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400268 percpu_counter_dec(&nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300269}
270EXPORT_SYMBOL(__destroy_inode);
271
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200272static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300273{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100274 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300275 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (inode->i_sb->s_op->destroy_inode)
277 inode->i_sb->s_op->destroy_inode(inode);
278 else
279 kmem_cache_free(inode_cachep, (inode));
280}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282/*
283 * These are initializations that only need to be done
284 * once, because the fields are idempotent across use
285 * of the inode, so let the slab aware of that.
286 */
287void inode_init_once(struct inode *inode)
288{
289 memset(inode, 0, sizeof(*inode));
290 INIT_HLIST_NODE(&inode->i_hash);
291 INIT_LIST_HEAD(&inode->i_dentry);
292 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100293 INIT_LIST_HEAD(&inode->i_wb_list);
294 INIT_LIST_HEAD(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC);
Nick Piggin19fd6232008-07-25 19:45:32 -0700296 spin_lock_init(&inode->i_data.tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 spin_lock_init(&inode->i_data.i_mmap_lock);
298 INIT_LIST_HEAD(&inode->i_data.private_list);
299 spin_lock_init(&inode->i_data.private_lock);
300 INIT_RAW_PRIO_TREE_ROOT(&inode->i_data.i_mmap);
301 INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400303#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500304 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400305#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307EXPORT_SYMBOL(inode_init_once);
308
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700309static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530311 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Christoph Lametera35afb82007-05-16 22:10:57 -0700313 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316/*
317 * inode_lock must be held
318 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530319void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Nick Piggin9e38d862010-10-23 06:55:17 -0400321 atomic_inc(&inode->i_count);
322}
Richard Kennedy2e147f12010-05-14 10:49:22 +0100323
Al Viro7de9c6e2010-10-23 11:11:40 -0400324/*
325 * get additional reference to inode; caller must already hold one.
326 */
327void ihold(struct inode *inode)
328{
329 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
330}
331EXPORT_SYMBOL(ihold);
332
Nick Piggin9e38d862010-10-23 06:55:17 -0400333static void inode_lru_list_add(struct inode *inode)
334{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100335 if (list_empty(&inode->i_lru)) {
336 list_add(&inode->i_lru, &inode_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400337 percpu_counter_inc(&nr_inodes_unused);
338 }
339}
340
341static void inode_lru_list_del(struct inode *inode)
342{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100343 if (!list_empty(&inode->i_lru)) {
344 list_del_init(&inode->i_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400345 percpu_counter_dec(&nr_inodes_unused);
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Christoph Hellwig646ec462010-10-23 07:15:32 -0400349static inline void __inode_sb_list_add(struct inode *inode)
350{
351 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
352}
353
354/**
355 * inode_sb_list_add - add inode to the superblock list of inodes
356 * @inode: inode to add
357 */
358void inode_sb_list_add(struct inode *inode)
359{
360 spin_lock(&inode_lock);
361 __inode_sb_list_add(inode);
362 spin_unlock(&inode_lock);
363}
364EXPORT_SYMBOL_GPL(inode_sb_list_add);
365
366static inline void __inode_sb_list_del(struct inode *inode)
367{
368 list_del_init(&inode->i_sb_list);
369}
370
Dave Chinner4c51acb2010-10-23 06:58:09 -0400371static unsigned long hash(struct super_block *sb, unsigned long hashval)
372{
373 unsigned long tmp;
374
375 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
376 L1_CACHE_BYTES;
377 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
378 return tmp & I_HASHMASK;
379}
380
381/**
382 * __insert_inode_hash - hash an inode
383 * @inode: unhashed inode
384 * @hashval: unsigned long value used to locate this object in the
385 * inode_hashtable.
386 *
387 * Add an inode to the inode hash for this superblock.
388 */
389void __insert_inode_hash(struct inode *inode, unsigned long hashval)
390{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400391 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
392
Dave Chinner4c51acb2010-10-23 06:58:09 -0400393 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400394 hlist_add_head(&inode->i_hash, b);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400395 spin_unlock(&inode_lock);
396}
397EXPORT_SYMBOL(__insert_inode_hash);
398
399/**
400 * __remove_inode_hash - remove an inode from the hash
401 * @inode: inode to unhash
402 *
403 * Remove an inode from the superblock.
404 */
405static void __remove_inode_hash(struct inode *inode)
406{
407 hlist_del_init(&inode->i_hash);
408}
409
410/**
411 * remove_inode_hash - remove an inode from the hash
412 * @inode: inode to unhash
413 *
414 * Remove an inode from the superblock.
415 */
416void remove_inode_hash(struct inode *inode)
417{
418 spin_lock(&inode_lock);
419 hlist_del_init(&inode->i_hash);
420 spin_unlock(&inode_lock);
421}
422EXPORT_SYMBOL(remove_inode_hash);
423
Al Virob0683aa2010-06-04 20:55:25 -0400424void end_writeback(struct inode *inode)
425{
426 might_sleep();
427 BUG_ON(inode->i_data.nrpages);
428 BUG_ON(!list_empty(&inode->i_data.private_list));
429 BUG_ON(!(inode->i_state & I_FREEING));
430 BUG_ON(inode->i_state & I_CLEAR);
431 inode_sync_wait(inode);
432 inode->i_state = I_FREEING | I_CLEAR;
433}
434EXPORT_SYMBOL(end_writeback);
435
Al Viro644da592010-06-07 13:21:05 -0400436static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400437{
438 const struct super_operations *op = inode->i_sb->s_op;
439
Al Virobe7ce412010-06-04 19:40:39 -0400440 if (op->evict_inode) {
441 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400442 } else {
443 if (inode->i_data.nrpages)
444 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400445 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400446 }
Al Viro661074e2010-06-04 20:19:55 -0400447 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
448 bd_forget(inode);
449 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
450 cd_forget(inode);
Al Virob4272d42010-06-04 19:33:20 -0400451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/*
454 * dispose_list - dispose of the contents of a local list
455 * @head: the head of the list to free
456 *
457 * Dispose-list gets a local list with local inodes in it, so it doesn't
458 * need to worry about list corruption and SMP locks.
459 */
460static void dispose_list(struct list_head *head)
461{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 while (!list_empty(head)) {
463 struct inode *inode;
464
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100465 inode = list_first_entry(head, struct inode, i_lru);
466 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Al Viro644da592010-06-07 13:21:05 -0400468 evict(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700469
470 spin_lock(&inode_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400471 __remove_inode_hash(inode);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400472 __inode_sb_list_del(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700473 spin_unlock(&inode_lock);
474
475 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480/*
481 * Invalidate all inodes for a device.
482 */
483static int invalidate_list(struct list_head *head, struct list_head *dispose)
484{
485 struct list_head *next;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400486 int busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 next = head->next;
489 for (;;) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530490 struct list_head *tmp = next;
491 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /*
494 * We can reschedule here without worrying about the list's
495 * consistency because the per-sb list of inodes must not
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700496 * change during umount anymore, and because iprune_sem keeps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * shrink_icache_memory() away.
498 */
499 cond_resched_lock(&inode_lock);
500
501 next = next->next;
502 if (tmp == head)
503 break;
504 inode = list_entry(tmp, struct inode, i_sb_list);
Nick Pigginaabb8fd2009-03-11 13:17:36 -0700505 if (inode->i_state & I_NEW)
506 continue;
Christoph Hellwig99a38912010-10-23 19:07:20 +0200507 if (atomic_read(&inode->i_count)) {
508 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 continue;
510 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200511
Christoph Hellwig99a38912010-10-23 19:07:20 +0200512 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100513
514 /*
515 * Move the inode off the IO lists and LRU once I_FREEING is
516 * set so that it won't get moved back on there if it is dirty.
517 */
518 list_move(&inode->i_lru, dispose);
519 list_del_init(&inode->i_wb_list);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200520 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
521 percpu_counter_dec(&nr_inodes_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return busy;
524}
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/**
527 * invalidate_inodes - discard the inodes on a device
528 * @sb: superblock
529 *
530 * Discard all of the inodes for a given superblock. If the discard
531 * fails because there are busy inodes then a non zero value is returned.
532 * If the discard is successful all the inodes have been discarded.
533 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530534int invalidate_inodes(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 int busy;
537 LIST_HEAD(throw_away);
538
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700539 down_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 spin_lock(&inode_lock);
Eric Paris164bc612009-05-21 17:01:58 -0400541 fsnotify_unmount_inodes(&sb->s_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 busy = invalidate_list(&sb->s_inodes, &throw_away);
543 spin_unlock(&inode_lock);
544
545 dispose_list(&throw_away);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700546 up_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 return busy;
549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551static int can_unuse(struct inode *inode)
552{
Nick Piggin9e38d862010-10-23 06:55:17 -0400553 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return 0;
555 if (inode_has_buffers(inode))
556 return 0;
557 if (atomic_read(&inode->i_count))
558 return 0;
559 if (inode->i_data.nrpages)
560 return 0;
561 return 1;
562}
563
564/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400565 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
566 * temporary list and then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 *
568 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400569 * pagecache removed. If the inode has metadata buffers attached to
570 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400572 * If the inode has the I_REFERENCED flag set, then it means that it has been
573 * used recently - the flag is set in iput_final(). When we encounter such an
574 * inode, clear the flag and move it to the back of the LRU so it gets another
575 * pass through the LRU before it gets reclaimed. This is necessary because of
576 * the fact we are doing lazy LRU updates to minimise lock contention so the
577 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
578 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 */
580static void prune_icache(int nr_to_scan)
581{
582 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 int nr_scanned;
584 unsigned long reap = 0;
585
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700586 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 spin_lock(&inode_lock);
588 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
589 struct inode *inode;
590
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100591 if (list_empty(&inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
593
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100594 inode = list_entry(inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Nick Piggin9e38d862010-10-23 06:55:17 -0400596 /*
597 * Referenced or dirty inodes are still in use. Give them
598 * another pass through the LRU as we canot reclaim them now.
599 */
600 if (atomic_read(&inode->i_count) ||
601 (inode->i_state & ~I_REFERENCED)) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100602 list_del_init(&inode->i_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400603 percpu_counter_dec(&nr_inodes_unused);
604 continue;
605 }
606
607 /* recently referenced inodes get one more pass */
608 if (inode->i_state & I_REFERENCED) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100609 list_move(&inode->i_lru, &inode_lru);
Nick Piggin9e38d862010-10-23 06:55:17 -0400610 inode->i_state &= ~I_REFERENCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 continue;
612 }
613 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
614 __iget(inode);
615 spin_unlock(&inode_lock);
616 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800617 reap += invalidate_mapping_pages(&inode->i_data,
618 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 iput(inode);
620 spin_lock(&inode_lock);
621
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100622 if (inode != list_entry(inode_lru.next,
623 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 continue; /* wrong inode or list_empty */
625 if (!can_unuse(inode))
626 continue;
627 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700628 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 inode->i_state |= I_FREEING;
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100630
631 /*
632 * Move the inode off the IO lists and LRU once I_FREEING is
633 * set so that it won't get moved back on there if it is dirty.
634 */
635 list_move(&inode->i_lru, &freeable);
636 list_del_init(&inode->i_wb_list);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400637 percpu_counter_dec(&nr_inodes_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700639 if (current_is_kswapd())
640 __count_vm_events(KSWAPD_INODESTEAL, reap);
641 else
642 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 spin_unlock(&inode_lock);
644
645 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700646 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649/*
650 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
651 * "unused" means that no dentries are referring to the inodes: the files are
652 * not open and the dcache references to those inodes have already been
653 * reclaimed.
654 *
655 * This function is passed the number of inodes to scan, and it returns the
656 * total number of remaining possibly-reclaimable inodes.
657 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000658static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 if (nr) {
661 /*
662 * Nasty deadlock avoidance. We may hold various FS locks,
663 * and we don't want to recurse into the FS that called us
664 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530665 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (!(gfp_mask & __GFP_FS))
667 return -1;
668 prune_icache(nr);
669 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400670 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Rusty Russell8e1f9362007-07-17 04:03:17 -0700673static struct shrinker icache_shrinker = {
674 .shrink = shrink_icache_memory,
675 .seeks = DEFAULT_SEEKS,
676};
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678static void __wait_on_freeing_inode(struct inode *inode);
679/*
680 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530682static struct inode *find_inode(struct super_block *sb,
683 struct hlist_head *head,
684 int (*test)(struct inode *, void *),
685 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530688 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700691 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (inode->i_sb != sb)
693 continue;
694 if (!test(inode, data))
695 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400696 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 __wait_on_freeing_inode(inode);
698 goto repeat;
699 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400700 __iget(inode);
701 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400703 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
706/*
707 * find_inode_fast is the fast path version of find_inode, see the comment at
708 * iget_locked for details.
709 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530710static struct inode *find_inode_fast(struct super_block *sb,
711 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530714 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700717 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (inode->i_ino != ino)
719 continue;
720 if (inode->i_sb != sb)
721 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400722 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 __wait_on_freeing_inode(inode);
724 goto repeat;
725 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400726 __iget(inode);
727 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400729 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
Eric Dumazetf991bd22010-10-23 11:18:01 -0400732/*
733 * Each cpu owns a range of LAST_INO_BATCH numbers.
734 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
735 * to renew the exhausted range.
736 *
737 * This does not significantly increase overflow rate because every CPU can
738 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
739 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
740 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
741 * overflow rate by 2x, which does not seem too significant.
742 *
743 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
744 * error if st_ino won't fit in target struct field. Use 32bit counter
745 * here to attempt to avoid that.
746 */
747#define LAST_INO_BATCH 1024
748static DEFINE_PER_CPU(unsigned int, last_ino);
749
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400750unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400751{
752 unsigned int *p = &get_cpu_var(last_ino);
753 unsigned int res = *p;
754
755#ifdef CONFIG_SMP
756 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
757 static atomic_t shared_last_ino;
758 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
759
760 res = next - LAST_INO_BATCH;
761 }
762#endif
763
764 *p = ++res;
765 put_cpu_var(last_ino);
766 return res;
767}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400768EXPORT_SYMBOL(get_next_ino);
Eric Dumazetf991bd22010-10-23 11:18:01 -0400769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770/**
771 * new_inode - obtain an inode
772 * @sb: superblock
773 *
Mel Gorman769848c2007-07-17 04:03:05 -0700774 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800775 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700776 * If HIGHMEM pages are unsuitable or it is known that pages allocated
777 * for the page cache are not reclaimable or migratable,
778 * mapping_set_gfp_mask() must be called with suitable flags on the
779 * newly created inode's mapping
780 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 */
782struct inode *new_inode(struct super_block *sb)
783{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530784 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 inode = alloc_inode(sb);
789 if (inode) {
790 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400791 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 inode->i_state = 0;
793 spin_unlock(&inode_lock);
794 }
795 return inode;
796}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797EXPORT_SYMBOL(new_inode);
798
799void unlock_new_inode(struct inode *inode)
800{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200801#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900802 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200803 struct file_system_type *type = inode->i_sb->s_type;
804
Jan Kara9a7aa122009-06-04 15:26:49 +0200805 /* Set new key only if filesystem hasn't already changed it */
806 if (!lockdep_match_class(&inode->i_mutex,
807 &type->i_mutex_key)) {
808 /*
809 * ensure nobody is actually holding i_mutex
810 */
811 mutex_destroy(&inode->i_mutex);
812 mutex_init(&inode->i_mutex);
813 lockdep_set_class(&inode->i_mutex,
814 &type->i_mutex_dir_key);
815 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200816 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200817#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 /*
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100819 * This is special! We do not need the spinlock when clearing I_NEW,
Jan Kara580be082009-09-21 17:01:06 -0700820 * because we're guaranteed that nobody else tries to do anything about
821 * the state of the inode when it is locked, as we just created it (so
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100822 * there can be no old holders that haven't tested I_NEW).
Jan Kara580be082009-09-21 17:01:06 -0700823 * However we must emit the memory barrier so that other CPUs reliably
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100824 * see the clearing of I_NEW after the other inode initialisation has
Jan Kara580be082009-09-21 17:01:06 -0700825 * completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
Jan Kara580be082009-09-21 17:01:06 -0700827 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100828 WARN_ON(!(inode->i_state & I_NEW));
829 inode->i_state &= ~I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 wake_up_inode(inode);
831}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832EXPORT_SYMBOL(unlock_new_inode);
833
834/*
835 * This is called without the inode lock held.. Be careful.
836 *
837 * We no longer cache the sb_flags in i_flags - see fs.h
838 * -- rmk@arm.uk.linux.org
839 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530840static struct inode *get_new_inode(struct super_block *sb,
841 struct hlist_head *head,
842 int (*test)(struct inode *, void *),
843 int (*set)(struct inode *, void *),
844 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530846 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 inode = alloc_inode(sb);
849 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530850 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 spin_lock(&inode_lock);
853 /* We released the lock, so.. */
854 old = find_inode(sb, head, test, data);
855 if (!old) {
856 if (set(inode, data))
857 goto set_failed;
858
Christoph Hellwig646ec462010-10-23 07:15:32 -0400859 hlist_add_head(&inode->i_hash, head);
860 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100861 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 spin_unlock(&inode_lock);
863
864 /* Return the locked inode with I_NEW set, the
865 * caller is responsible for filling in the contents
866 */
867 return inode;
868 }
869
870 /*
871 * Uhhuh, somebody else created the same inode under
872 * us. Use the old inode instead of the one we just
873 * allocated.
874 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 spin_unlock(&inode_lock);
876 destroy_inode(inode);
877 inode = old;
878 wait_on_inode(inode);
879 }
880 return inode;
881
882set_failed:
883 spin_unlock(&inode_lock);
884 destroy_inode(inode);
885 return NULL;
886}
887
888/*
889 * get_new_inode_fast is the fast path version of get_new_inode, see the
890 * comment at iget_locked for details.
891 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530892static struct inode *get_new_inode_fast(struct super_block *sb,
893 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530895 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 inode = alloc_inode(sb);
898 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530899 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 spin_lock(&inode_lock);
902 /* We released the lock, so.. */
903 old = find_inode_fast(sb, head, ino);
904 if (!old) {
905 inode->i_ino = ino;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400906 hlist_add_head(&inode->i_hash, head);
907 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100908 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 spin_unlock(&inode_lock);
910
911 /* Return the locked inode with I_NEW set, the
912 * caller is responsible for filling in the contents
913 */
914 return inode;
915 }
916
917 /*
918 * Uhhuh, somebody else created the same inode under
919 * us. Use the old inode instead of the one we just
920 * allocated.
921 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 spin_unlock(&inode_lock);
923 destroy_inode(inode);
924 inode = old;
925 wait_on_inode(inode);
926 }
927 return inode;
928}
929
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400930/*
931 * search the inode cache for a matching inode number.
932 * If we find one, then the inode number we are trying to
933 * allocate is not unique and so we should not use it.
934 *
935 * Returns 1 if the inode number is unique, 0 if it is not.
936 */
937static int test_inode_iunique(struct super_block *sb, unsigned long ino)
938{
939 struct hlist_head *b = inode_hashtable + hash(sb, ino);
940 struct hlist_node *node;
941 struct inode *inode;
942
943 hlist_for_each_entry(inode, node, b, i_hash) {
944 if (inode->i_ino == ino && inode->i_sb == sb)
945 return 0;
946 }
947
948 return 1;
949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951/**
952 * iunique - get a unique inode number
953 * @sb: superblock
954 * @max_reserved: highest reserved inode number
955 *
956 * Obtain an inode number that is unique on the system for a given
957 * superblock. This is used by file systems that have no natural
958 * permanent inode numbering system. An inode number is returned that
959 * is higher than the reserved limit but unique.
960 *
961 * BUGS:
962 * With a large number of inodes live on the file system this function
963 * currently becomes quite slow.
964 */
965ino_t iunique(struct super_block *sb, ino_t max_reserved)
966{
Jeff Layton866b04f2007-05-08 00:32:29 -0700967 /*
968 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
969 * error if st_ino won't fit in target struct field. Use 32bit counter
970 * here to attempt to avoid that.
971 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400972 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -0700973 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700976 spin_lock(&inode_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400977 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700978 do {
979 if (counter <= max_reserved)
980 counter = max_reserved + 1;
981 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400982 } while (!test_inode_iunique(sb, res));
983 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700984 spin_unlock(&inode_lock);
985
986 return res;
987}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988EXPORT_SYMBOL(iunique);
989
990struct inode *igrab(struct inode *inode)
991{
992 spin_lock(&inode_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -0400993 if (!(inode->i_state & (I_FREEING|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 __iget(inode);
995 else
996 /*
997 * Handle the case where s_op->clear_inode is not been
998 * called yet, and somebody is calling igrab
999 * while the inode is getting freed.
1000 */
1001 inode = NULL;
1002 spin_unlock(&inode_lock);
1003 return inode;
1004}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005EXPORT_SYMBOL(igrab);
1006
1007/**
1008 * ifind - internal function, you want ilookup5() or iget5().
1009 * @sb: super block of file system to search
1010 * @head: the head of the list to search
1011 * @test: callback used for comparisons between inodes
1012 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001013 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 *
1015 * ifind() searches for the inode specified by @data in the inode
1016 * cache. This is a generalized version of ifind_fast() for file systems where
1017 * the inode number is not sufficient for unique identification of an inode.
1018 *
1019 * If the inode is in the cache, the inode is returned with an incremented
1020 * reference count.
1021 *
1022 * Otherwise NULL is returned.
1023 *
1024 * Note, @test is called with the inode_lock held, so can't sleep.
1025 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001026static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001028 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 struct inode *inode;
1031
1032 spin_lock(&inode_lock);
1033 inode = find_inode(sb, head, test, data);
1034 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001036 if (likely(wait))
1037 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return inode;
1039 }
1040 spin_unlock(&inode_lock);
1041 return NULL;
1042}
1043
1044/**
1045 * ifind_fast - internal function, you want ilookup() or iget().
1046 * @sb: super block of file system to search
1047 * @head: head of the list to search
1048 * @ino: inode number to search for
1049 *
1050 * ifind_fast() searches for the inode @ino in the inode cache. This is for
1051 * file systems where the inode number is sufficient for unique identification
1052 * of an inode.
1053 *
1054 * If the inode is in the cache, the inode is returned with an incremented
1055 * reference count.
1056 *
1057 * Otherwise NULL is returned.
1058 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001059static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 struct hlist_head *head, unsigned long ino)
1061{
1062 struct inode *inode;
1063
1064 spin_lock(&inode_lock);
1065 inode = find_inode_fast(sb, head, ino);
1066 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 spin_unlock(&inode_lock);
1068 wait_on_inode(inode);
1069 return inode;
1070 }
1071 spin_unlock(&inode_lock);
1072 return NULL;
1073}
1074
1075/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001076 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 * @sb: super block of file system to search
1078 * @hashval: hash value (usually inode number) to search for
1079 * @test: callback used for comparisons between inodes
1080 * @data: opaque data pointer to pass to @test
1081 *
1082 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1083 * @data in the inode cache. This is a generalized version of ilookup() for
1084 * file systems where the inode number is not sufficient for unique
1085 * identification of an inode.
1086 *
1087 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001088 * reference count. Note, the inode lock is not waited upon so you have to be
1089 * very careful what you do with the returned inode. You probably should be
1090 * using ilookup5() instead.
1091 *
1092 * Otherwise NULL is returned.
1093 *
1094 * Note, @test is called with the inode_lock held, so can't sleep.
1095 */
1096struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1097 int (*test)(struct inode *, void *), void *data)
1098{
1099 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1100
1101 return ifind(sb, head, test, data, 0);
1102}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001103EXPORT_SYMBOL(ilookup5_nowait);
1104
1105/**
1106 * ilookup5 - search for an inode in the inode cache
1107 * @sb: super block of file system to search
1108 * @hashval: hash value (usually inode number) to search for
1109 * @test: callback used for comparisons between inodes
1110 * @data: opaque data pointer to pass to @test
1111 *
1112 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1113 * @data in the inode cache. This is a generalized version of ilookup() for
1114 * file systems where the inode number is not sufficient for unique
1115 * identification of an inode.
1116 *
1117 * If the inode is in the cache, the inode lock is waited upon and the inode is
1118 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 *
1120 * Otherwise NULL is returned.
1121 *
1122 * Note, @test is called with the inode_lock held, so can't sleep.
1123 */
1124struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1125 int (*test)(struct inode *, void *), void *data)
1126{
1127 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1128
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001129 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131EXPORT_SYMBOL(ilookup5);
1132
1133/**
1134 * ilookup - search for an inode in the inode cache
1135 * @sb: super block of file system to search
1136 * @ino: inode number to search for
1137 *
1138 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1139 * This is for file systems where the inode number is sufficient for unique
1140 * identification of an inode.
1141 *
1142 * If the inode is in the cache, the inode is returned with an incremented
1143 * reference count.
1144 *
1145 * Otherwise NULL is returned.
1146 */
1147struct inode *ilookup(struct super_block *sb, unsigned long ino)
1148{
1149 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1150
1151 return ifind_fast(sb, head, ino);
1152}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153EXPORT_SYMBOL(ilookup);
1154
1155/**
1156 * iget5_locked - obtain an inode from a mounted file system
1157 * @sb: super block of file system
1158 * @hashval: hash value (usually inode number) to get
1159 * @test: callback used for comparisons between inodes
1160 * @set: callback used to initialize a new struct inode
1161 * @data: opaque data pointer to pass to @test and @set
1162 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1164 * and @data in the inode cache and if present it is returned with an increased
1165 * reference count. This is a generalized version of iget_locked() for file
1166 * systems where the inode number is not sufficient for unique identification
1167 * of an inode.
1168 *
1169 * If the inode is not in cache, get_new_inode() is called to allocate a new
1170 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1171 * file system gets to fill it in before unlocking it via unlock_new_inode().
1172 *
1173 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1174 */
1175struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1176 int (*test)(struct inode *, void *),
1177 int (*set)(struct inode *, void *), void *data)
1178{
1179 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1180 struct inode *inode;
1181
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001182 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (inode)
1184 return inode;
1185 /*
1186 * get_new_inode() will do the right thing, re-trying the search
1187 * in case it had to block at any point.
1188 */
1189 return get_new_inode(sb, head, test, set, data);
1190}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191EXPORT_SYMBOL(iget5_locked);
1192
1193/**
1194 * iget_locked - obtain an inode from a mounted file system
1195 * @sb: super block of file system
1196 * @ino: inode number to get
1197 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1199 * the inode cache and if present it is returned with an increased reference
1200 * count. This is for file systems where the inode number is sufficient for
1201 * unique identification of an inode.
1202 *
1203 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1204 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1205 * The file system gets to fill it in before unlocking it via
1206 * unlock_new_inode().
1207 */
1208struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1209{
1210 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1211 struct inode *inode;
1212
1213 inode = ifind_fast(sb, head, ino);
1214 if (inode)
1215 return inode;
1216 /*
1217 * get_new_inode_fast() will do the right thing, re-trying the search
1218 * in case it had to block at any point.
1219 */
1220 return get_new_inode_fast(sb, head, ino);
1221}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222EXPORT_SYMBOL(iget_locked);
1223
Al Viro261bca82008-12-30 01:48:21 -05001224int insert_inode_locked(struct inode *inode)
1225{
1226 struct super_block *sb = inode->i_sb;
1227 ino_t ino = inode->i_ino;
1228 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001229
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001230 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001231 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001232 struct hlist_node *node;
1233 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001234 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001235 hlist_for_each_entry(old, node, head, i_hash) {
1236 if (old->i_ino != ino)
1237 continue;
1238 if (old->i_sb != sb)
1239 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001240 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001241 continue;
1242 break;
1243 }
1244 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001245 hlist_add_head(&inode->i_hash, head);
1246 spin_unlock(&inode_lock);
1247 return 0;
1248 }
1249 __iget(old);
1250 spin_unlock(&inode_lock);
1251 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001252 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001253 iput(old);
1254 return -EBUSY;
1255 }
1256 iput(old);
1257 }
1258}
Al Viro261bca82008-12-30 01:48:21 -05001259EXPORT_SYMBOL(insert_inode_locked);
1260
1261int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1262 int (*test)(struct inode *, void *), void *data)
1263{
1264 struct super_block *sb = inode->i_sb;
1265 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001266
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001267 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001268
1269 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001270 struct hlist_node *node;
1271 struct inode *old = NULL;
1272
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_sb != sb)
1276 continue;
1277 if (!test(old, data))
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_locked4);
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Al Viro45321ac2010-06-07 13:43:19 -04001301int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Al Viro45321ac2010-06-07 13:43:19 -04001303 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305EXPORT_SYMBOL(generic_delete_inode);
1306
Al Viro45321ac2010-06-07 13:43:19 -04001307/*
1308 * Normal UNIX filesystem behaviour: delete the
1309 * inode when the usage count drops to zero, and
1310 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001311 */
Al Viro45321ac2010-06-07 13:43:19 -04001312int generic_drop_inode(struct inode *inode)
1313{
Al Viro1d3382c2010-10-23 15:19:20 -04001314 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001315}
1316EXPORT_SYMBOL_GPL(generic_drop_inode);
1317
1318/*
1319 * Called when we're dropping the last reference
1320 * to an inode.
1321 *
1322 * Call the FS "drop_inode()" function, defaulting to
1323 * the legacy UNIX filesystem behaviour. If it tells
1324 * us to evict inode, do so. Otherwise, retain inode
1325 * in cache if fs is alive, sync and evict if fs is
1326 * shutting down.
1327 */
1328static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001331 const struct super_operations *op = inode->i_sb->s_op;
1332 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Al Viro45321ac2010-06-07 13:43:19 -04001334 if (op && op->drop_inode)
1335 drop = op->drop_inode(inode);
1336 else
1337 drop = generic_drop_inode(inode);
1338
1339 if (!drop) {
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001340 if (sb->s_flags & MS_ACTIVE) {
Nick Piggin9e38d862010-10-23 06:55:17 -04001341 inode->i_state |= I_REFERENCED;
1342 if (!(inode->i_state & (I_DIRTY|I_SYNC))) {
1343 inode_lru_list_add(inode);
1344 }
Alexander Viro991114c2005-06-23 00:09:01 -07001345 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001346 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001347 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001348 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001349 inode->i_state |= I_WILL_FREE;
1350 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 write_inode_now(inode, 1);
1352 spin_lock(&inode_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001353 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001354 inode->i_state &= ~I_WILL_FREE;
Dave Chinner4c51acb2010-10-23 06:58:09 -04001355 __remove_inode_hash(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001357
Nick Piggin7ef0d732009-03-12 14:31:38 -07001358 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001359 inode->i_state |= I_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -04001360
1361 /*
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001362 * Move the inode off the IO lists and LRU once I_FREEING is
1363 * set so that it won't get moved back on there if it is dirty.
Nick Piggin9e38d862010-10-23 06:55:17 -04001364 */
1365 inode_lru_list_del(inode);
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001366 list_del_init(&inode->i_wb_list);
Nick Piggin9e38d862010-10-23 06:55:17 -04001367
Christoph Hellwig646ec462010-10-23 07:15:32 -04001368 __inode_sb_list_del(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001370 evict(inode);
Dave Chinner4c51acb2010-10-23 06:58:09 -04001371 remove_inode_hash(inode);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001372 wake_up_inode(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001373 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 destroy_inode(inode);
1375}
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301378 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * @inode: inode to put
1380 *
1381 * Puts an inode, dropping its usage count. If the inode use count hits
1382 * zero, the inode is then freed and may also be destroyed.
1383 *
1384 * Consequently, iput() can sleep.
1385 */
1386void iput(struct inode *inode)
1387{
1388 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001389 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1392 iput_final(inode);
1393 }
1394}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395EXPORT_SYMBOL(iput);
1396
1397/**
1398 * bmap - find a block number in a file
1399 * @inode: inode of file
1400 * @block: block to find
1401 *
1402 * Returns the block number on the device holding the inode that
1403 * is the disk block number for the block of the file requested.
1404 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301405 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 * file.
1407 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301408sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 sector_t res = 0;
1411 if (inode->i_mapping->a_ops->bmap)
1412 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1413 return res;
1414}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415EXPORT_SYMBOL(bmap);
1416
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001417/*
1418 * With relative atime, only update atime if the previous atime is
1419 * earlier than either the ctime or mtime or if at least a day has
1420 * passed since the last atime update.
1421 */
1422static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1423 struct timespec now)
1424{
1425
1426 if (!(mnt->mnt_flags & MNT_RELATIME))
1427 return 1;
1428 /*
1429 * Is mtime younger than atime? If yes, update atime:
1430 */
1431 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1432 return 1;
1433 /*
1434 * Is ctime younger than atime? If yes, update atime:
1435 */
1436 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1437 return 1;
1438
1439 /*
1440 * Is the previous atime value older than a day? If yes,
1441 * update atime:
1442 */
1443 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1444 return 1;
1445 /*
1446 * Good, we can skip the atime update:
1447 */
1448 return 0;
1449}
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001452 * touch_atime - update the access time
1453 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001454 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 *
1456 * Update the accessed time on an inode and mark it for writeback.
1457 * This function automatically handles read only file systems and media,
1458 * as well as the "noatime" flag and inode specific "noatime" markers.
1459 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001460void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001462 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 struct timespec now;
1464
Andrew Mortonb2276132006-12-13 00:34:33 -08001465 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001466 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001467 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001468 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001469 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001470 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001471
Dave Hansencdb70f32008-02-15 14:37:41 -08001472 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001473 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001474 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001475 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001478
1479 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001480 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001481
Valerie Henson47ae32d2006-12-13 00:34:34 -08001482 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001483 return;
1484
1485 if (mnt_want_write(mnt))
1486 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001487
1488 inode->i_atime = now;
1489 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001490 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001492EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001495 * file_update_time - update mtime and ctime time
1496 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001498 * Update the mtime and ctime members of an inode and mark the inode
1499 * for writeback. Note that this function is meant exclusively for
1500 * usage in the file write path of filesystems, and filesystems may
1501 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001502 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001503 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 */
1505
Christoph Hellwig870f4812006-01-09 20:52:01 -08001506void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001508 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001510 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Andi Kleence06e0b2009-09-18 13:05:48 -07001512 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (IS_NOCMTIME(inode))
1514 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001515
Andi Kleence06e0b2009-09-18 13:05:48 -07001516 now = current_fs_time(inode->i_sb);
1517 if (!timespec_equal(&inode->i_mtime, &now))
1518 sync_it = S_MTIME;
1519
1520 if (!timespec_equal(&inode->i_ctime, &now))
1521 sync_it |= S_CTIME;
1522
1523 if (IS_I_VERSION(inode))
1524 sync_it |= S_VERSION;
1525
1526 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return;
1528
Andi Kleence06e0b2009-09-18 13:05:48 -07001529 /* Finally allowed to write? Takes lock. */
1530 if (mnt_want_write_file(file))
1531 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Andi Kleence06e0b2009-09-18 13:05:48 -07001533 /* Only change inode inside the lock region */
1534 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001535 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001536 if (sync_it & S_CTIME)
1537 inode->i_ctime = now;
1538 if (sync_it & S_MTIME)
1539 inode->i_mtime = now;
1540 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001541 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001543EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545int inode_needs_sync(struct inode *inode)
1546{
1547 if (IS_SYNC(inode))
1548 return 1;
1549 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1550 return 1;
1551 return 0;
1552}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553EXPORT_SYMBOL(inode_needs_sync);
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555int inode_wait(void *word)
1556{
1557 schedule();
1558 return 0;
1559}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001560EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001563 * If we try to find an inode in the inode hash while it is being
1564 * deleted, we have to wait until the filesystem completes its
1565 * deletion before reporting that it isn't found. This function waits
1566 * until the deletion _might_ have completed. Callers are responsible
1567 * to recheck inode state.
1568 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001569 * It doesn't matter if I_NEW is not set initially, a call to
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001570 * wake_up_inode() after removing from the hash list will DTRT.
1571 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 * This is called with inode_lock held.
1573 */
1574static void __wait_on_freeing_inode(struct inode *inode)
1575{
1576 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001577 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1578 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1580 spin_unlock(&inode_lock);
1581 schedule();
1582 finish_wait(wq, &wait.wait);
1583 spin_lock(&inode_lock);
1584}
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586static __initdata unsigned long ihash_entries;
1587static int __init set_ihash_entries(char *str)
1588{
1589 if (!str)
1590 return 0;
1591 ihash_entries = simple_strtoul(str, &str, 0);
1592 return 1;
1593}
1594__setup("ihash_entries=", set_ihash_entries);
1595
1596/*
1597 * Initialize the waitqueues and inode hash table.
1598 */
1599void __init inode_init_early(void)
1600{
1601 int loop;
1602
1603 /* If hashes are distributed across NUMA nodes, defer
1604 * hash allocation until vmalloc space is available.
1605 */
1606 if (hashdist)
1607 return;
1608
1609 inode_hashtable =
1610 alloc_large_system_hash("Inode-cache",
1611 sizeof(struct hlist_head),
1612 ihash_entries,
1613 14,
1614 HASH_EARLY,
1615 &i_hash_shift,
1616 &i_hash_mask,
1617 0);
1618
1619 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1620 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1621}
1622
Denis Cheng74bf17c2007-10-16 23:26:30 -07001623void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
1625 int loop;
1626
1627 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001628 inode_cachep = kmem_cache_create("inode_cache",
1629 sizeof(struct inode),
1630 0,
1631 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1632 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001633 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001634 register_shrinker(&icache_shrinker);
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001635 percpu_counter_init(&nr_inodes, 0);
1636 percpu_counter_init(&nr_inodes_unused, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 /* Hash may have been set up in inode_init_early */
1639 if (!hashdist)
1640 return;
1641
1642 inode_hashtable =
1643 alloc_large_system_hash("Inode-cache",
1644 sizeof(struct hlist_head),
1645 ihash_entries,
1646 14,
1647 0,
1648 &i_hash_shift,
1649 &i_hash_mask,
1650 0);
1651
1652 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1653 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1654}
1655
1656void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1657{
1658 inode->i_mode = mode;
1659 if (S_ISCHR(mode)) {
1660 inode->i_fop = &def_chr_fops;
1661 inode->i_rdev = rdev;
1662 } else if (S_ISBLK(mode)) {
1663 inode->i_fop = &def_blk_fops;
1664 inode->i_rdev = rdev;
1665 } else if (S_ISFIFO(mode))
1666 inode->i_fop = &def_fifo_fops;
1667 else if (S_ISSOCK(mode))
1668 inode->i_fop = &bad_sock_fops;
1669 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001670 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1671 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1672 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001675
1676/**
1677 * Init uid,gid,mode for new inode according to posix standards
1678 * @inode: New inode
1679 * @dir: Directory inode
1680 * @mode: mode of the new inode
1681 */
1682void inode_init_owner(struct inode *inode, const struct inode *dir,
1683 mode_t mode)
1684{
1685 inode->i_uid = current_fsuid();
1686 if (dir && dir->i_mode & S_ISGID) {
1687 inode->i_gid = dir->i_gid;
1688 if (S_ISDIR(mode))
1689 mode |= S_ISGID;
1690 } else
1691 inode->i_gid = current_fsgid();
1692 inode->i_mode = mode;
1693}
1694EXPORT_SYMBOL(inode_init_owner);