blob: 05ea293d5f32ecf120d60c75ac8073a626b58a08 [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
31 * - invalidate_inode_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 Piggin9e38d862010-10-23 06:55:17 -040075static LIST_HEAD(inode_unused);
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;
106static struct percpu_counter nr_inodes_unused __cacheline_aligned_in_smp;
107
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530108static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400110static inline int get_nr_inodes(void)
111{
112 return percpu_counter_sum_positive(&nr_inodes);
113}
114
115static inline int get_nr_inodes_unused(void)
116{
117 return percpu_counter_sum_positive(&nr_inodes_unused);
118}
119
120int get_nr_dirty_inodes(void)
121{
122 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
123 return nr_dirty > 0 ? nr_dirty : 0;
124
125}
126
127/*
128 * Handle nr_inode sysctl
129 */
130#ifdef CONFIG_SYSCTL
131int proc_nr_inodes(ctl_table *table, int write,
132 void __user *buffer, size_t *lenp, loff_t *ppos)
133{
134 inodes_stat.nr_inodes = get_nr_inodes();
135 inodes_stat.nr_unused = get_nr_inodes_unused();
136 return proc_dointvec(table, write, buffer, lenp, ppos);
137}
138#endif
139
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700140static void wake_up_inode(struct inode *inode)
141{
142 /*
143 * Prevent speculative execution through spin_unlock(&inode_lock);
144 */
145 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100146 wake_up_bit(&inode->i_state, __I_NEW);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700147}
148
David Chinner2cb15992008-10-30 17:32:23 +1100149/**
150 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800151 * @sb: superblock inode belongs to
152 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100153 *
154 * These are initializations that need to be done on every inode
155 * allocation as the fields are not initialised by slab allocation.
156 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300157int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700159 static const struct address_space_operations empty_aops;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700160 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800161 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530162 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100163
164 inode->i_sb = sb;
165 inode->i_blkbits = sb->s_blocksize_bits;
166 inode->i_flags = 0;
167 atomic_set(&inode->i_count, 1);
168 inode->i_op = &empty_iops;
169 inode->i_fop = &empty_fops;
170 inode->i_nlink = 1;
Al Viro56ff5ef2008-12-09 09:34:39 -0500171 inode->i_uid = 0;
172 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100173 atomic_set(&inode->i_writecount, 0);
174 inode->i_size = 0;
175 inode->i_blocks = 0;
176 inode->i_bytes = 0;
177 inode->i_generation = 0;
178#ifdef CONFIG_QUOTA
179 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
180#endif
181 inode->i_pipe = NULL;
182 inode->i_bdev = NULL;
183 inode->i_cdev = NULL;
184 inode->i_rdev = 0;
185 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500186
187 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300188 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100189 spin_lock_init(&inode->i_lock);
190 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
191
192 mutex_init(&inode->i_mutex);
193 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
194
195 init_rwsem(&inode->i_alloc_sem);
196 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
197
198 mapping->a_ops = &empty_aops;
199 mapping->host = inode;
200 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800201 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100202 mapping->assoc_mapping = NULL;
203 mapping->backing_dev_info = &default_backing_dev_info;
204 mapping->writeback_index = 0;
205
206 /*
207 * If the block_device provides a backing_dev_info for client
208 * inodes then use that. Otherwise the inode share the bdev's
209 * backing_dev_info.
210 */
211 if (sb->s_bdev) {
212 struct backing_dev_info *bdi;
213
Jens Axboe2c96ce92009-09-15 09:43:56 +0200214 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100215 mapping->backing_dev_info = bdi;
216 }
217 inode->i_private = NULL;
218 inode->i_mapping = mapping;
Al Virof19d4a82009-06-08 19:50:45 -0400219#ifdef CONFIG_FS_POSIX_ACL
220 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
221#endif
David Chinner2cb15992008-10-30 17:32:23 +1100222
Eric Paris3be25f42009-05-21 17:01:26 -0400223#ifdef CONFIG_FSNOTIFY
224 inode->i_fsnotify_mask = 0;
225#endif
226
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400227 percpu_counter_inc(&nr_inodes);
228
Christoph Hellwig54e34622009-08-07 14:38:25 -0300229 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300230out:
231 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100232}
233EXPORT_SYMBOL(inode_init_always);
234
235static struct inode *alloc_inode(struct super_block *sb)
236{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 struct inode *inode;
238
239 if (sb->s_op->alloc_inode)
240 inode = sb->s_op->alloc_inode(sb);
241 else
David Chinner2cb15992008-10-30 17:32:23 +1100242 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Christoph Hellwig54e34622009-08-07 14:38:25 -0300244 if (!inode)
245 return NULL;
246
247 if (unlikely(inode_init_always(sb, inode))) {
248 if (inode->i_sb->s_op->destroy_inode)
249 inode->i_sb->s_op->destroy_inode(inode);
250 else
251 kmem_cache_free(inode_cachep, inode);
252 return NULL;
253 }
254
255 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300258void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200260 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400262 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400263#ifdef CONFIG_FS_POSIX_ACL
264 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
265 posix_acl_release(inode->i_acl);
266 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
267 posix_acl_release(inode->i_default_acl);
268#endif
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400269 percpu_counter_dec(&nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300270}
271EXPORT_SYMBOL(__destroy_inode);
272
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200273static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300274{
275 __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 Piggin9e38d862010-10-23 06:55:17 -0400293 INIT_LIST_HEAD(&inode->i_list);
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);
321}
Richard Kennedy2e147f12010-05-14 10:49:22 +0100322
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{
334 if (list_empty(&inode->i_list)) {
335 list_add(&inode->i_list, &inode_unused);
336 percpu_counter_inc(&nr_inodes_unused);
337 }
338}
339
340static void inode_lru_list_del(struct inode *inode)
341{
342 if (!list_empty(&inode->i_list)) {
343 list_del_init(&inode->i_list);
344 percpu_counter_dec(&nr_inodes_unused);
345 }
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
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700464 inode = list_first_entry(head, struct inode, i_list);
Nick Piggin9e38d862010-10-23 06:55:17 -0400465 list_del_init(&inode->i_list);
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
479/*
480 * Invalidate all inodes for a device.
481 */
482static int invalidate_list(struct list_head *head, struct list_head *dispose)
483{
484 struct list_head *next;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400485 int busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 next = head->next;
488 for (;;) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530489 struct list_head *tmp = next;
490 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /*
493 * We can reschedule here without worrying about the list's
494 * consistency because the per-sb list of inodes must not
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700495 * change during umount anymore, and because iprune_sem keeps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 * shrink_icache_memory() away.
497 */
498 cond_resched_lock(&inode_lock);
499
500 next = next->next;
501 if (tmp == head)
502 break;
503 inode = list_entry(tmp, struct inode, i_sb_list);
Nick Pigginaabb8fd2009-03-11 13:17:36 -0700504 if (inode->i_state & I_NEW)
505 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 invalidate_inode_buffers(inode);
507 if (!atomic_read(&inode->i_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 list_move(&inode->i_list, dispose);
Nick Piggin7ef0d732009-03-12 14:31:38 -0700509 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 inode->i_state |= I_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -0400511 if (!(inode->i_state & (I_DIRTY | I_SYNC)))
512 percpu_counter_dec(&nr_inodes_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 continue;
514 }
515 busy = 1;
516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return busy;
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/**
521 * invalidate_inodes - discard the inodes on a device
522 * @sb: superblock
523 *
524 * Discard all of the inodes for a given superblock. If the discard
525 * fails because there are busy inodes then a non zero value is returned.
526 * If the discard is successful all the inodes have been discarded.
527 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530528int invalidate_inodes(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 int busy;
531 LIST_HEAD(throw_away);
532
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700533 down_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 spin_lock(&inode_lock);
Eric Paris164bc612009-05-21 17:01:58 -0400535 fsnotify_unmount_inodes(&sb->s_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 busy = invalidate_list(&sb->s_inodes, &throw_away);
537 spin_unlock(&inode_lock);
538
539 dispose_list(&throw_away);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700540 up_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 return busy;
543}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545static int can_unuse(struct inode *inode)
546{
Nick Piggin9e38d862010-10-23 06:55:17 -0400547 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return 0;
549 if (inode_has_buffers(inode))
550 return 0;
551 if (atomic_read(&inode->i_count))
552 return 0;
553 if (inode->i_data.nrpages)
554 return 0;
555 return 1;
556}
557
558/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400559 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
560 * temporary list and then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 *
562 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400563 * pagecache removed. If the inode has metadata buffers attached to
564 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400566 * If the inode has the I_REFERENCED flag set, then it means that it has been
567 * used recently - the flag is set in iput_final(). When we encounter such an
568 * inode, clear the flag and move it to the back of the LRU so it gets another
569 * pass through the LRU before it gets reclaimed. This is necessary because of
570 * the fact we are doing lazy LRU updates to minimise lock contention so the
571 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
572 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 */
574static void prune_icache(int nr_to_scan)
575{
576 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 int nr_scanned;
578 unsigned long reap = 0;
579
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700580 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 spin_lock(&inode_lock);
582 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
583 struct inode *inode;
584
585 if (list_empty(&inode_unused))
586 break;
587
588 inode = list_entry(inode_unused.prev, struct inode, i_list);
589
Nick Piggin9e38d862010-10-23 06:55:17 -0400590 /*
591 * Referenced or dirty inodes are still in use. Give them
592 * another pass through the LRU as we canot reclaim them now.
593 */
594 if (atomic_read(&inode->i_count) ||
595 (inode->i_state & ~I_REFERENCED)) {
596 list_del_init(&inode->i_list);
597 percpu_counter_dec(&nr_inodes_unused);
598 continue;
599 }
600
601 /* recently referenced inodes get one more pass */
602 if (inode->i_state & I_REFERENCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 list_move(&inode->i_list, &inode_unused);
Nick Piggin9e38d862010-10-23 06:55:17 -0400604 inode->i_state &= ~I_REFERENCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 continue;
606 }
607 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
608 __iget(inode);
609 spin_unlock(&inode_lock);
610 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800611 reap += invalidate_mapping_pages(&inode->i_data,
612 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 iput(inode);
614 spin_lock(&inode_lock);
615
616 if (inode != list_entry(inode_unused.next,
617 struct inode, i_list))
618 continue; /* wrong inode or list_empty */
619 if (!can_unuse(inode))
620 continue;
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 list_move(&inode->i_list, &freeable);
Nick Piggin7ef0d732009-03-12 14:31:38 -0700623 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 inode->i_state |= I_FREEING;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400625 percpu_counter_dec(&nr_inodes_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700627 if (current_is_kswapd())
628 __count_vm_events(KSWAPD_INODESTEAL, reap);
629 else
630 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 spin_unlock(&inode_lock);
632
633 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700634 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
637/*
638 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
639 * "unused" means that no dentries are referring to the inodes: the files are
640 * not open and the dcache references to those inodes have already been
641 * reclaimed.
642 *
643 * This function is passed the number of inodes to scan, and it returns the
644 * total number of remaining possibly-reclaimable inodes.
645 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000646static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 if (nr) {
649 /*
650 * Nasty deadlock avoidance. We may hold various FS locks,
651 * and we don't want to recurse into the FS that called us
652 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530653 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (!(gfp_mask & __GFP_FS))
655 return -1;
656 prune_icache(nr);
657 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400658 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Rusty Russell8e1f9362007-07-17 04:03:17 -0700661static struct shrinker icache_shrinker = {
662 .shrink = shrink_icache_memory,
663 .seeks = DEFAULT_SEEKS,
664};
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666static void __wait_on_freeing_inode(struct inode *inode);
667/*
668 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530670static struct inode *find_inode(struct super_block *sb,
671 struct hlist_head *head,
672 int (*test)(struct inode *, void *),
673 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530676 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700679 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (inode->i_sb != sb)
681 continue;
682 if (!test(inode, data))
683 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400684 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 __wait_on_freeing_inode(inode);
686 goto repeat;
687 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400688 __iget(inode);
689 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400691 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694/*
695 * find_inode_fast is the fast path version of find_inode, see the comment at
696 * iget_locked for details.
697 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530698static struct inode *find_inode_fast(struct super_block *sb,
699 struct hlist_head *head, unsigned long ino)
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_ino != ino)
707 continue;
708 if (inode->i_sb != sb)
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 * new_inode - obtain an inode
722 * @sb: superblock
723 *
Mel Gorman769848c2007-07-17 04:03:05 -0700724 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800725 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700726 * If HIGHMEM pages are unsuitable or it is known that pages allocated
727 * for the page cache are not reclaimable or migratable,
728 * mapping_set_gfp_mask() must be called with suitable flags on the
729 * newly created inode's mapping
730 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 */
732struct inode *new_inode(struct super_block *sb)
733{
Jeff Layton866b04f2007-05-08 00:32:29 -0700734 /*
735 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
736 * error if st_ino won't fit in target struct field. Use 32bit counter
737 * here to attempt to avoid that.
738 */
739 static unsigned int last_ino;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530740 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 inode = alloc_inode(sb);
745 if (inode) {
746 spin_lock(&inode_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400747 __inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 inode->i_ino = ++last_ino;
749 inode->i_state = 0;
750 spin_unlock(&inode_lock);
751 }
752 return inode;
753}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754EXPORT_SYMBOL(new_inode);
755
756void unlock_new_inode(struct inode *inode)
757{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200758#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900759 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200760 struct file_system_type *type = inode->i_sb->s_type;
761
Jan Kara9a7aa122009-06-04 15:26:49 +0200762 /* Set new key only if filesystem hasn't already changed it */
763 if (!lockdep_match_class(&inode->i_mutex,
764 &type->i_mutex_key)) {
765 /*
766 * ensure nobody is actually holding i_mutex
767 */
768 mutex_destroy(&inode->i_mutex);
769 mutex_init(&inode->i_mutex);
770 lockdep_set_class(&inode->i_mutex,
771 &type->i_mutex_dir_key);
772 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200773 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200774#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 /*
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100776 * This is special! We do not need the spinlock when clearing I_NEW,
Jan Kara580be082009-09-21 17:01:06 -0700777 * because we're guaranteed that nobody else tries to do anything about
778 * the state of the inode when it is locked, as we just created it (so
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100779 * there can be no old holders that haven't tested I_NEW).
Jan Kara580be082009-09-21 17:01:06 -0700780 * However we must emit the memory barrier so that other CPUs reliably
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100781 * see the clearing of I_NEW after the other inode initialisation has
Jan Kara580be082009-09-21 17:01:06 -0700782 * completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 */
Jan Kara580be082009-09-21 17:01:06 -0700784 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100785 WARN_ON(!(inode->i_state & I_NEW));
786 inode->i_state &= ~I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 wake_up_inode(inode);
788}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789EXPORT_SYMBOL(unlock_new_inode);
790
791/*
792 * This is called without the inode lock held.. Be careful.
793 *
794 * We no longer cache the sb_flags in i_flags - see fs.h
795 * -- rmk@arm.uk.linux.org
796 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530797static struct inode *get_new_inode(struct super_block *sb,
798 struct hlist_head *head,
799 int (*test)(struct inode *, void *),
800 int (*set)(struct inode *, void *),
801 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530803 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 inode = alloc_inode(sb);
806 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530807 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 spin_lock(&inode_lock);
810 /* We released the lock, so.. */
811 old = find_inode(sb, head, test, data);
812 if (!old) {
813 if (set(inode, data))
814 goto set_failed;
815
Christoph Hellwig646ec462010-10-23 07:15:32 -0400816 hlist_add_head(&inode->i_hash, head);
817 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100818 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 spin_unlock(&inode_lock);
820
821 /* Return the locked inode with I_NEW set, the
822 * caller is responsible for filling in the contents
823 */
824 return inode;
825 }
826
827 /*
828 * Uhhuh, somebody else created the same inode under
829 * us. Use the old inode instead of the one we just
830 * allocated.
831 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 spin_unlock(&inode_lock);
833 destroy_inode(inode);
834 inode = old;
835 wait_on_inode(inode);
836 }
837 return inode;
838
839set_failed:
840 spin_unlock(&inode_lock);
841 destroy_inode(inode);
842 return NULL;
843}
844
845/*
846 * get_new_inode_fast is the fast path version of get_new_inode, see the
847 * comment at iget_locked for details.
848 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530849static struct inode *get_new_inode_fast(struct super_block *sb,
850 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530852 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 inode = alloc_inode(sb);
855 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530856 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 spin_lock(&inode_lock);
859 /* We released the lock, so.. */
860 old = find_inode_fast(sb, head, ino);
861 if (!old) {
862 inode->i_ino = ino;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400863 hlist_add_head(&inode->i_hash, head);
864 __inode_sb_list_add(inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100865 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 spin_unlock(&inode_lock);
867
868 /* Return the locked inode with I_NEW set, the
869 * caller is responsible for filling in the contents
870 */
871 return inode;
872 }
873
874 /*
875 * Uhhuh, somebody else created the same inode under
876 * us. Use the old inode instead of the one we just
877 * allocated.
878 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 spin_unlock(&inode_lock);
880 destroy_inode(inode);
881 inode = old;
882 wait_on_inode(inode);
883 }
884 return inode;
885}
886
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400887/*
888 * search the inode cache for a matching inode number.
889 * If we find one, then the inode number we are trying to
890 * allocate is not unique and so we should not use it.
891 *
892 * Returns 1 if the inode number is unique, 0 if it is not.
893 */
894static int test_inode_iunique(struct super_block *sb, unsigned long ino)
895{
896 struct hlist_head *b = inode_hashtable + hash(sb, ino);
897 struct hlist_node *node;
898 struct inode *inode;
899
900 hlist_for_each_entry(inode, node, b, i_hash) {
901 if (inode->i_ino == ino && inode->i_sb == sb)
902 return 0;
903 }
904
905 return 1;
906}
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908/**
909 * iunique - get a unique inode number
910 * @sb: superblock
911 * @max_reserved: highest reserved inode number
912 *
913 * Obtain an inode number that is unique on the system for a given
914 * superblock. This is used by file systems that have no natural
915 * permanent inode numbering system. An inode number is returned that
916 * is higher than the reserved limit but unique.
917 *
918 * BUGS:
919 * With a large number of inodes live on the file system this function
920 * currently becomes quite slow.
921 */
922ino_t iunique(struct super_block *sb, ino_t max_reserved)
923{
Jeff Layton866b04f2007-05-08 00:32:29 -0700924 /*
925 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
926 * error if st_ino won't fit in target struct field. Use 32bit counter
927 * here to attempt to avoid that.
928 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400929 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -0700930 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700933 spin_lock(&inode_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400934 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700935 do {
936 if (counter <= max_reserved)
937 counter = max_reserved + 1;
938 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -0400939 } while (!test_inode_iunique(sb, res));
940 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700941 spin_unlock(&inode_lock);
942
943 return res;
944}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945EXPORT_SYMBOL(iunique);
946
947struct inode *igrab(struct inode *inode)
948{
949 spin_lock(&inode_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -0400950 if (!(inode->i_state & (I_FREEING|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 __iget(inode);
952 else
953 /*
954 * Handle the case where s_op->clear_inode is not been
955 * called yet, and somebody is calling igrab
956 * while the inode is getting freed.
957 */
958 inode = NULL;
959 spin_unlock(&inode_lock);
960 return inode;
961}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962EXPORT_SYMBOL(igrab);
963
964/**
965 * ifind - internal function, you want ilookup5() or iget5().
966 * @sb: super block of file system to search
967 * @head: the head of the list to search
968 * @test: callback used for comparisons between inodes
969 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700970 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 *
972 * ifind() searches for the inode specified by @data in the inode
973 * cache. This is a generalized version of ifind_fast() for file systems where
974 * the inode number is not sufficient for unique identification of an inode.
975 *
976 * If the inode is in the cache, the inode is returned with an incremented
977 * reference count.
978 *
979 * Otherwise NULL is returned.
980 *
981 * Note, @test is called with the inode_lock held, so can't sleep.
982 */
Matt Mackall5d2bea42006-01-08 01:05:21 -0800983static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700985 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 struct inode *inode;
988
989 spin_lock(&inode_lock);
990 inode = find_inode(sb, head, test, data);
991 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700993 if (likely(wait))
994 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return inode;
996 }
997 spin_unlock(&inode_lock);
998 return NULL;
999}
1000
1001/**
1002 * ifind_fast - internal function, you want ilookup() or iget().
1003 * @sb: super block of file system to search
1004 * @head: head of the list to search
1005 * @ino: inode number to search for
1006 *
1007 * ifind_fast() searches for the inode @ino in the inode cache. This is for
1008 * file systems where the inode number is sufficient for unique identification
1009 * of an inode.
1010 *
1011 * If the inode is in the cache, the inode is returned with an incremented
1012 * reference count.
1013 *
1014 * Otherwise NULL is returned.
1015 */
Matt Mackall5d2bea42006-01-08 01:05:21 -08001016static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 struct hlist_head *head, unsigned long ino)
1018{
1019 struct inode *inode;
1020
1021 spin_lock(&inode_lock);
1022 inode = find_inode_fast(sb, head, ino);
1023 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 spin_unlock(&inode_lock);
1025 wait_on_inode(inode);
1026 return inode;
1027 }
1028 spin_unlock(&inode_lock);
1029 return NULL;
1030}
1031
1032/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001033 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 * @sb: super block of file system to search
1035 * @hashval: hash value (usually inode number) to search for
1036 * @test: callback used for comparisons between inodes
1037 * @data: opaque data pointer to pass to @test
1038 *
1039 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1040 * @data in the inode cache. This is a generalized version of ilookup() for
1041 * file systems where the inode number is not sufficient for unique
1042 * identification of an inode.
1043 *
1044 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001045 * reference count. Note, the inode lock is not waited upon so you have to be
1046 * very careful what you do with the returned inode. You probably should be
1047 * using ilookup5() instead.
1048 *
1049 * Otherwise NULL is returned.
1050 *
1051 * Note, @test is called with the inode_lock held, so can't sleep.
1052 */
1053struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1054 int (*test)(struct inode *, void *), void *data)
1055{
1056 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1057
1058 return ifind(sb, head, test, data, 0);
1059}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001060EXPORT_SYMBOL(ilookup5_nowait);
1061
1062/**
1063 * ilookup5 - search for an inode in the inode cache
1064 * @sb: super block of file system to search
1065 * @hashval: hash value (usually inode number) to search for
1066 * @test: callback used for comparisons between inodes
1067 * @data: opaque data pointer to pass to @test
1068 *
1069 * ilookup5() uses ifind() to search for the inode specified by @hashval and
1070 * @data in the inode cache. This is a generalized version of ilookup() for
1071 * file systems where the inode number is not sufficient for unique
1072 * identification of an inode.
1073 *
1074 * If the inode is in the cache, the inode lock is waited upon and the inode is
1075 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 *
1077 * Otherwise NULL is returned.
1078 *
1079 * Note, @test is called with the inode_lock held, so can't sleep.
1080 */
1081struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1082 int (*test)(struct inode *, void *), void *data)
1083{
1084 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1085
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001086 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088EXPORT_SYMBOL(ilookup5);
1089
1090/**
1091 * ilookup - search for an inode in the inode cache
1092 * @sb: super block of file system to search
1093 * @ino: inode number to search for
1094 *
1095 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1096 * This is for file systems where the inode number is sufficient for unique
1097 * identification of an inode.
1098 *
1099 * If the inode is in the cache, the inode is returned with an incremented
1100 * reference count.
1101 *
1102 * Otherwise NULL is returned.
1103 */
1104struct inode *ilookup(struct super_block *sb, unsigned long ino)
1105{
1106 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1107
1108 return ifind_fast(sb, head, ino);
1109}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110EXPORT_SYMBOL(ilookup);
1111
1112/**
1113 * iget5_locked - obtain an inode from a mounted file system
1114 * @sb: super block of file system
1115 * @hashval: hash value (usually inode number) to get
1116 * @test: callback used for comparisons between inodes
1117 * @set: callback used to initialize a new struct inode
1118 * @data: opaque data pointer to pass to @test and @set
1119 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1121 * and @data in the inode cache and if present it is returned with an increased
1122 * reference count. This is a generalized version of iget_locked() for file
1123 * systems where the inode number is not sufficient for unique identification
1124 * of an inode.
1125 *
1126 * If the inode is not in cache, get_new_inode() is called to allocate a new
1127 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1128 * file system gets to fill it in before unlocking it via unlock_new_inode().
1129 *
1130 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1131 */
1132struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1133 int (*test)(struct inode *, void *),
1134 int (*set)(struct inode *, void *), void *data)
1135{
1136 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1137 struct inode *inode;
1138
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001139 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (inode)
1141 return inode;
1142 /*
1143 * get_new_inode() will do the right thing, re-trying the search
1144 * in case it had to block at any point.
1145 */
1146 return get_new_inode(sb, head, test, set, data);
1147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148EXPORT_SYMBOL(iget5_locked);
1149
1150/**
1151 * iget_locked - obtain an inode from a mounted file system
1152 * @sb: super block of file system
1153 * @ino: inode number to get
1154 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1156 * the inode cache and if present it is returned with an increased reference
1157 * count. This is for file systems where the inode number is sufficient for
1158 * unique identification of an inode.
1159 *
1160 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1161 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1162 * The file system gets to fill it in before unlocking it via
1163 * unlock_new_inode().
1164 */
1165struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1166{
1167 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1168 struct inode *inode;
1169
1170 inode = ifind_fast(sb, head, ino);
1171 if (inode)
1172 return inode;
1173 /*
1174 * get_new_inode_fast() will do the right thing, re-trying the search
1175 * in case it had to block at any point.
1176 */
1177 return get_new_inode_fast(sb, head, ino);
1178}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179EXPORT_SYMBOL(iget_locked);
1180
Al Viro261bca82008-12-30 01:48:21 -05001181int insert_inode_locked(struct inode *inode)
1182{
1183 struct super_block *sb = inode->i_sb;
1184 ino_t ino = inode->i_ino;
1185 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001186
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001187 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001188 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001189 struct hlist_node *node;
1190 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001191 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001192 hlist_for_each_entry(old, node, head, i_hash) {
1193 if (old->i_ino != ino)
1194 continue;
1195 if (old->i_sb != sb)
1196 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001197 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001198 continue;
1199 break;
1200 }
1201 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001202 hlist_add_head(&inode->i_hash, head);
1203 spin_unlock(&inode_lock);
1204 return 0;
1205 }
1206 __iget(old);
1207 spin_unlock(&inode_lock);
1208 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001209 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001210 iput(old);
1211 return -EBUSY;
1212 }
1213 iput(old);
1214 }
1215}
Al Viro261bca82008-12-30 01:48:21 -05001216EXPORT_SYMBOL(insert_inode_locked);
1217
1218int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1219 int (*test)(struct inode *, void *), void *data)
1220{
1221 struct super_block *sb = inode->i_sb;
1222 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001223
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001224 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001225
1226 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001227 struct hlist_node *node;
1228 struct inode *old = NULL;
1229
Al Viro261bca82008-12-30 01:48:21 -05001230 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001231 hlist_for_each_entry(old, node, head, i_hash) {
1232 if (old->i_sb != sb)
1233 continue;
1234 if (!test(old, data))
1235 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001236 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001237 continue;
1238 break;
1239 }
1240 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001241 hlist_add_head(&inode->i_hash, head);
1242 spin_unlock(&inode_lock);
1243 return 0;
1244 }
1245 __iget(old);
1246 spin_unlock(&inode_lock);
1247 wait_on_inode(old);
Al Viro1d3382c2010-10-23 15:19:20 -04001248 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001249 iput(old);
1250 return -EBUSY;
1251 }
1252 iput(old);
1253 }
1254}
Al Viro261bca82008-12-30 01:48:21 -05001255EXPORT_SYMBOL(insert_inode_locked4);
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Al Viro45321ac2010-06-07 13:43:19 -04001258int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Al Viro45321ac2010-06-07 13:43:19 -04001260 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262EXPORT_SYMBOL(generic_delete_inode);
1263
Al Viro45321ac2010-06-07 13:43:19 -04001264/*
1265 * Normal UNIX filesystem behaviour: delete the
1266 * inode when the usage count drops to zero, and
1267 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001268 */
Al Viro45321ac2010-06-07 13:43:19 -04001269int generic_drop_inode(struct inode *inode)
1270{
Al Viro1d3382c2010-10-23 15:19:20 -04001271 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001272}
1273EXPORT_SYMBOL_GPL(generic_drop_inode);
1274
1275/*
1276 * Called when we're dropping the last reference
1277 * to an inode.
1278 *
1279 * Call the FS "drop_inode()" function, defaulting to
1280 * the legacy UNIX filesystem behaviour. If it tells
1281 * us to evict inode, do so. Otherwise, retain inode
1282 * in cache if fs is alive, sync and evict if fs is
1283 * shutting down.
1284 */
1285static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001288 const struct super_operations *op = inode->i_sb->s_op;
1289 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Al Viro45321ac2010-06-07 13:43:19 -04001291 if (op && op->drop_inode)
1292 drop = op->drop_inode(inode);
1293 else
1294 drop = generic_drop_inode(inode);
1295
1296 if (!drop) {
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001297 if (sb->s_flags & MS_ACTIVE) {
Nick Piggin9e38d862010-10-23 06:55:17 -04001298 inode->i_state |= I_REFERENCED;
1299 if (!(inode->i_state & (I_DIRTY|I_SYNC))) {
1300 inode_lru_list_add(inode);
1301 }
Alexander Viro991114c2005-06-23 00:09:01 -07001302 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001303 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001304 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001305 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001306 inode->i_state |= I_WILL_FREE;
1307 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 write_inode_now(inode, 1);
1309 spin_lock(&inode_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001310 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001311 inode->i_state &= ~I_WILL_FREE;
Dave Chinner4c51acb2010-10-23 06:58:09 -04001312 __remove_inode_hash(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001314 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001315 inode->i_state |= I_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -04001316
1317 /*
1318 * After we delete the inode from the LRU here, we avoid moving dirty
1319 * inodes back onto the LRU now because I_FREEING is set and hence
1320 * writeback_single_inode() won't move the inode around.
1321 */
1322 inode_lru_list_del(inode);
1323
Christoph Hellwig646ec462010-10-23 07:15:32 -04001324 __inode_sb_list_del(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001326 evict(inode);
Dave Chinner4c51acb2010-10-23 06:58:09 -04001327 remove_inode_hash(inode);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001328 wake_up_inode(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001329 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 destroy_inode(inode);
1331}
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301334 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 * @inode: inode to put
1336 *
1337 * Puts an inode, dropping its usage count. If the inode use count hits
1338 * zero, the inode is then freed and may also be destroyed.
1339 *
1340 * Consequently, iput() can sleep.
1341 */
1342void iput(struct inode *inode)
1343{
1344 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001345 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1348 iput_final(inode);
1349 }
1350}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351EXPORT_SYMBOL(iput);
1352
1353/**
1354 * bmap - find a block number in a file
1355 * @inode: inode of file
1356 * @block: block to find
1357 *
1358 * Returns the block number on the device holding the inode that
1359 * is the disk block number for the block of the file requested.
1360 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301361 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 * file.
1363 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301364sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 sector_t res = 0;
1367 if (inode->i_mapping->a_ops->bmap)
1368 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1369 return res;
1370}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371EXPORT_SYMBOL(bmap);
1372
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001373/*
1374 * With relative atime, only update atime if the previous atime is
1375 * earlier than either the ctime or mtime or if at least a day has
1376 * passed since the last atime update.
1377 */
1378static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1379 struct timespec now)
1380{
1381
1382 if (!(mnt->mnt_flags & MNT_RELATIME))
1383 return 1;
1384 /*
1385 * Is mtime younger than atime? If yes, update atime:
1386 */
1387 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1388 return 1;
1389 /*
1390 * Is ctime younger than atime? If yes, update atime:
1391 */
1392 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1393 return 1;
1394
1395 /*
1396 * Is the previous atime value older than a day? If yes,
1397 * update atime:
1398 */
1399 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1400 return 1;
1401 /*
1402 * Good, we can skip the atime update:
1403 */
1404 return 0;
1405}
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001408 * touch_atime - update the access time
1409 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001410 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 *
1412 * Update the accessed time on an inode and mark it for writeback.
1413 * This function automatically handles read only file systems and media,
1414 * as well as the "noatime" flag and inode specific "noatime" markers.
1415 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001416void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001418 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 struct timespec now;
1420
Andrew Mortonb2276132006-12-13 00:34:33 -08001421 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001422 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001423 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001424 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001425 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001426 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001427
Dave Hansencdb70f32008-02-15 14:37:41 -08001428 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001429 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001430 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001431 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001434
1435 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001436 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001437
Valerie Henson47ae32d2006-12-13 00:34:34 -08001438 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001439 return;
1440
1441 if (mnt_want_write(mnt))
1442 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001443
1444 inode->i_atime = now;
1445 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001446 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001448EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001451 * file_update_time - update mtime and ctime time
1452 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001454 * Update the mtime and ctime members of an inode and mark the inode
1455 * for writeback. Note that this function is meant exclusively for
1456 * usage in the file write path of filesystems, and filesystems may
1457 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001458 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001459 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 */
1461
Christoph Hellwig870f4812006-01-09 20:52:01 -08001462void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001464 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001466 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Andi Kleence06e0b2009-09-18 13:05:48 -07001468 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (IS_NOCMTIME(inode))
1470 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001471
Andi Kleence06e0b2009-09-18 13:05:48 -07001472 now = current_fs_time(inode->i_sb);
1473 if (!timespec_equal(&inode->i_mtime, &now))
1474 sync_it = S_MTIME;
1475
1476 if (!timespec_equal(&inode->i_ctime, &now))
1477 sync_it |= S_CTIME;
1478
1479 if (IS_I_VERSION(inode))
1480 sync_it |= S_VERSION;
1481
1482 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return;
1484
Andi Kleence06e0b2009-09-18 13:05:48 -07001485 /* Finally allowed to write? Takes lock. */
1486 if (mnt_want_write_file(file))
1487 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Andi Kleence06e0b2009-09-18 13:05:48 -07001489 /* Only change inode inside the lock region */
1490 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001491 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001492 if (sync_it & S_CTIME)
1493 inode->i_ctime = now;
1494 if (sync_it & S_MTIME)
1495 inode->i_mtime = now;
1496 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001497 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001499EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501int inode_needs_sync(struct inode *inode)
1502{
1503 if (IS_SYNC(inode))
1504 return 1;
1505 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1506 return 1;
1507 return 0;
1508}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509EXPORT_SYMBOL(inode_needs_sync);
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511int inode_wait(void *word)
1512{
1513 schedule();
1514 return 0;
1515}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001516EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001519 * If we try to find an inode in the inode hash while it is being
1520 * deleted, we have to wait until the filesystem completes its
1521 * deletion before reporting that it isn't found. This function waits
1522 * until the deletion _might_ have completed. Callers are responsible
1523 * to recheck inode state.
1524 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001525 * It doesn't matter if I_NEW is not set initially, a call to
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001526 * wake_up_inode() after removing from the hash list will DTRT.
1527 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 * This is called with inode_lock held.
1529 */
1530static void __wait_on_freeing_inode(struct inode *inode)
1531{
1532 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001533 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1534 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1536 spin_unlock(&inode_lock);
1537 schedule();
1538 finish_wait(wq, &wait.wait);
1539 spin_lock(&inode_lock);
1540}
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542static __initdata unsigned long ihash_entries;
1543static int __init set_ihash_entries(char *str)
1544{
1545 if (!str)
1546 return 0;
1547 ihash_entries = simple_strtoul(str, &str, 0);
1548 return 1;
1549}
1550__setup("ihash_entries=", set_ihash_entries);
1551
1552/*
1553 * Initialize the waitqueues and inode hash table.
1554 */
1555void __init inode_init_early(void)
1556{
1557 int loop;
1558
1559 /* If hashes are distributed across NUMA nodes, defer
1560 * hash allocation until vmalloc space is available.
1561 */
1562 if (hashdist)
1563 return;
1564
1565 inode_hashtable =
1566 alloc_large_system_hash("Inode-cache",
1567 sizeof(struct hlist_head),
1568 ihash_entries,
1569 14,
1570 HASH_EARLY,
1571 &i_hash_shift,
1572 &i_hash_mask,
1573 0);
1574
1575 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1576 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1577}
1578
Denis Cheng74bf17c2007-10-16 23:26:30 -07001579void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
1581 int loop;
1582
1583 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001584 inode_cachep = kmem_cache_create("inode_cache",
1585 sizeof(struct inode),
1586 0,
1587 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1588 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001589 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001590 register_shrinker(&icache_shrinker);
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001591 percpu_counter_init(&nr_inodes, 0);
1592 percpu_counter_init(&nr_inodes_unused, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 /* Hash may have been set up in inode_init_early */
1595 if (!hashdist)
1596 return;
1597
1598 inode_hashtable =
1599 alloc_large_system_hash("Inode-cache",
1600 sizeof(struct hlist_head),
1601 ihash_entries,
1602 14,
1603 0,
1604 &i_hash_shift,
1605 &i_hash_mask,
1606 0);
1607
1608 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1609 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1610}
1611
1612void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1613{
1614 inode->i_mode = mode;
1615 if (S_ISCHR(mode)) {
1616 inode->i_fop = &def_chr_fops;
1617 inode->i_rdev = rdev;
1618 } else if (S_ISBLK(mode)) {
1619 inode->i_fop = &def_blk_fops;
1620 inode->i_rdev = rdev;
1621 } else if (S_ISFIFO(mode))
1622 inode->i_fop = &def_fifo_fops;
1623 else if (S_ISSOCK(mode))
1624 inode->i_fop = &bad_sock_fops;
1625 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001626 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1627 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1628 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
1630EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001631
1632/**
1633 * Init uid,gid,mode for new inode according to posix standards
1634 * @inode: New inode
1635 * @dir: Directory inode
1636 * @mode: mode of the new inode
1637 */
1638void inode_init_owner(struct inode *inode, const struct inode *dir,
1639 mode_t mode)
1640{
1641 inode->i_uid = current_fsuid();
1642 if (dir && dir->i_mode & S_ISGID) {
1643 inode->i_gid = dir->i_gid;
1644 if (S_ISDIR(mode))
1645 mode |= S_ISGID;
1646 } else
1647 inode->i_gid = current_fsgid();
1648 inode->i_mode = mode;
1649}
1650EXPORT_SYMBOL(inode_init_owner);