blob: ed22b14f22025aaf00ca39412b523cb30bd2a5bd [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>
11#include <linux/quotaops.h>
12#include <linux/slab.h>
13#include <linux/writeback.h>
14#include <linux/module.h>
15#include <linux/backing-dev.h>
16#include <linux/wait.h>
17#include <linux/hash.h>
18#include <linux/swap.h>
19#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050020#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/pagemap.h>
22#include <linux/cdev.h>
23#include <linux/bootmem.h>
Robert Love0eeca282005-07-12 17:06:03 -040024#include <linux/inotify.h>
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080025#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/*
28 * This is needed for the following functions:
29 * - inode_has_buffers
30 * - invalidate_inode_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
74LIST_HEAD(inode_in_use);
75LIST_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/*
Ingo Molnarf24075b2006-03-23 03:00:34 -080087 * iprune_mutex 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.
93 */
Adrian Bunkbdfc3262006-03-25 03:06:56 -080094static DEFINE_MUTEX(iprune_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/*
97 * Statistics gathering..
98 */
99struct inodes_stat_t inodes_stat;
100
Christoph Lametere18b8902006-12-06 20:33:20 -0800101static struct kmem_cache * inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700103static void wake_up_inode(struct inode *inode)
104{
105 /*
106 * Prevent speculative execution through spin_unlock(&inode_lock);
107 */
108 smp_mb();
109 wake_up_bit(&inode->i_state, __I_LOCK);
110}
111
David Chinner2cb15992008-10-30 17:32:23 +1100112/**
113 * inode_init_always - perform inode structure intialisation
114 * @sb - superblock inode belongs to.
115 * @inode - inode to initialise
116 *
117 * These are initializations that need to be done on every inode
118 * allocation as the fields are not initialised by slab allocation.
119 */
120struct inode *inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700122 static const struct address_space_operations empty_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 static struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800124 static const struct file_operations empty_fops;
David Chinner2cb15992008-10-30 17:32:23 +1100125
126 struct address_space * const mapping = &inode->i_data;
127
128 inode->i_sb = sb;
129 inode->i_blkbits = sb->s_blocksize_bits;
130 inode->i_flags = 0;
131 atomic_set(&inode->i_count, 1);
132 inode->i_op = &empty_iops;
133 inode->i_fop = &empty_fops;
134 inode->i_nlink = 1;
135 atomic_set(&inode->i_writecount, 0);
136 inode->i_size = 0;
137 inode->i_blocks = 0;
138 inode->i_bytes = 0;
139 inode->i_generation = 0;
140#ifdef CONFIG_QUOTA
141 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
142#endif
143 inode->i_pipe = NULL;
144 inode->i_bdev = NULL;
145 inode->i_cdev = NULL;
146 inode->i_rdev = 0;
147 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500148
149 if (security_inode_alloc(inode))
150 goto out_free_inode;
151
152 /* allocate and initialize an i_integrity */
153 if (ima_inode_alloc(inode))
154 goto out_free_security;
David Chinner2cb15992008-10-30 17:32:23 +1100155
156 spin_lock_init(&inode->i_lock);
157 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
158
159 mutex_init(&inode->i_mutex);
160 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
161
162 init_rwsem(&inode->i_alloc_sem);
163 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
164
165 mapping->a_ops = &empty_aops;
166 mapping->host = inode;
167 mapping->flags = 0;
168 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_PAGECACHE);
169 mapping->assoc_mapping = NULL;
170 mapping->backing_dev_info = &default_backing_dev_info;
171 mapping->writeback_index = 0;
172
173 /*
174 * If the block_device provides a backing_dev_info for client
175 * inodes then use that. Otherwise the inode share the bdev's
176 * backing_dev_info.
177 */
178 if (sb->s_bdev) {
179 struct backing_dev_info *bdi;
180
181 bdi = sb->s_bdev->bd_inode_backing_dev_info;
182 if (!bdi)
183 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
184 mapping->backing_dev_info = bdi;
185 }
186 inode->i_private = NULL;
187 inode->i_mapping = mapping;
188
189 return inode;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500190
191out_free_security:
192 security_inode_free(inode);
193out_free_inode:
194 if (inode->i_sb->s_op->destroy_inode)
195 inode->i_sb->s_op->destroy_inode(inode);
196 else
197 kmem_cache_free(inode_cachep, (inode));
198 return NULL;
David Chinner2cb15992008-10-30 17:32:23 +1100199}
200EXPORT_SYMBOL(inode_init_always);
201
202static struct inode *alloc_inode(struct super_block *sb)
203{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct inode *inode;
205
206 if (sb->s_op->alloc_inode)
207 inode = sb->s_op->alloc_inode(sb);
208 else
David Chinner2cb15992008-10-30 17:32:23 +1100209 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
David Chinner2cb15992008-10-30 17:32:23 +1100211 if (inode)
212 return inode_init_always(sb, inode);
213 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216void destroy_inode(struct inode *inode)
217{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200218 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 security_inode_free(inode);
220 if (inode->i_sb->s_op->destroy_inode)
221 inode->i_sb->s_op->destroy_inode(inode);
222 else
223 kmem_cache_free(inode_cachep, (inode));
224}
Christoph Hellwig087e3b02008-10-30 18:24:37 +1100225EXPORT_SYMBOL(destroy_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227
228/*
229 * These are initializations that only need to be done
230 * once, because the fields are idempotent across use
231 * of the inode, so let the slab aware of that.
232 */
233void inode_init_once(struct inode *inode)
234{
235 memset(inode, 0, sizeof(*inode));
236 INIT_HLIST_NODE(&inode->i_hash);
237 INIT_LIST_HEAD(&inode->i_dentry);
238 INIT_LIST_HEAD(&inode->i_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC);
Nick Piggin19fd6232008-07-25 19:45:32 -0700240 spin_lock_init(&inode->i_data.tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 spin_lock_init(&inode->i_data.i_mmap_lock);
242 INIT_LIST_HEAD(&inode->i_data.private_list);
243 spin_lock_init(&inode->i_data.private_lock);
244 INIT_RAW_PRIO_TREE_ROOT(&inode->i_data.i_mmap);
245 INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 i_size_ordered_init(inode);
Robert Love0eeca282005-07-12 17:06:03 -0400247#ifdef CONFIG_INOTIFY
248 INIT_LIST_HEAD(&inode->inotify_watches);
Ingo Molnard4f9af92006-03-23 03:00:30 -0800249 mutex_init(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400250#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253EXPORT_SYMBOL(inode_init_once);
254
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700255static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct inode * inode = (struct inode *) foo;
258
Christoph Lametera35afb82007-05-16 22:10:57 -0700259 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262/*
263 * inode_lock must be held
264 */
265void __iget(struct inode * inode)
266{
267 if (atomic_read(&inode->i_count)) {
268 atomic_inc(&inode->i_count);
269 return;
270 }
271 atomic_inc(&inode->i_count);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700272 if (!(inode->i_state & (I_DIRTY|I_SYNC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 list_move(&inode->i_list, &inode_in_use);
274 inodes_stat.nr_unused--;
275}
276
277/**
278 * clear_inode - clear an inode
279 * @inode: inode to clear
280 *
281 * This is called by the filesystem to tell us
282 * that the inode is no longer useful. We just
283 * terminate it with extreme prejudice.
284 */
285void clear_inode(struct inode *inode)
286{
287 might_sleep();
288 invalidate_inode_buffers(inode);
289
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200290 BUG_ON(inode->i_data.nrpages);
291 BUG_ON(!(inode->i_state & I_FREEING));
292 BUG_ON(inode->i_state & I_CLEAR);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700293 inode_sync_wait(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 DQUOT_DROP(inode);
Christoph Hellwigacb0c852007-05-08 00:25:52 -0700295 if (inode->i_sb->s_op->clear_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 inode->i_sb->s_op->clear_inode(inode);
Theodore Ts'oeaf796e2006-09-27 01:50:48 -0700297 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 bd_forget(inode);
Theodore Ts'o577c4eb2006-09-27 01:50:49 -0700299 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 cd_forget(inode);
301 inode->i_state = I_CLEAR;
302}
303
304EXPORT_SYMBOL(clear_inode);
305
306/*
307 * dispose_list - dispose of the contents of a local list
308 * @head: the head of the list to free
309 *
310 * Dispose-list gets a local list with local inodes in it, so it doesn't
311 * need to worry about list corruption and SMP locks.
312 */
313static void dispose_list(struct list_head *head)
314{
315 int nr_disposed = 0;
316
317 while (!list_empty(head)) {
318 struct inode *inode;
319
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700320 inode = list_first_entry(head, struct inode, i_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 list_del(&inode->i_list);
322
323 if (inode->i_data.nrpages)
324 truncate_inode_pages(&inode->i_data, 0);
325 clear_inode(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700326
327 spin_lock(&inode_lock);
328 hlist_del_init(&inode->i_hash);
329 list_del_init(&inode->i_sb_list);
330 spin_unlock(&inode_lock);
331
332 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 destroy_inode(inode);
334 nr_disposed++;
335 }
336 spin_lock(&inode_lock);
337 inodes_stat.nr_inodes -= nr_disposed;
338 spin_unlock(&inode_lock);
339}
340
341/*
342 * Invalidate all inodes for a device.
343 */
344static int invalidate_list(struct list_head *head, struct list_head *dispose)
345{
346 struct list_head *next;
347 int busy = 0, count = 0;
348
349 next = head->next;
350 for (;;) {
351 struct list_head * tmp = next;
352 struct inode * inode;
353
354 /*
355 * We can reschedule here without worrying about the list's
356 * consistency because the per-sb list of inodes must not
Ingo Molnarf24075b2006-03-23 03:00:34 -0800357 * change during umount anymore, and because iprune_mutex keeps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * shrink_icache_memory() away.
359 */
360 cond_resched_lock(&inode_lock);
361
362 next = next->next;
363 if (tmp == head)
364 break;
365 inode = list_entry(tmp, struct inode, i_sb_list);
366 invalidate_inode_buffers(inode);
367 if (!atomic_read(&inode->i_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 list_move(&inode->i_list, dispose);
369 inode->i_state |= I_FREEING;
370 count++;
371 continue;
372 }
373 busy = 1;
374 }
375 /* only unused inodes may be cached with i_count zero */
376 inodes_stat.nr_unused -= count;
377 return busy;
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/**
381 * invalidate_inodes - discard the inodes on a device
382 * @sb: superblock
383 *
384 * Discard all of the inodes for a given superblock. If the discard
385 * fails because there are busy inodes then a non zero value is returned.
386 * If the discard is successful all the inodes have been discarded.
387 */
388int invalidate_inodes(struct super_block * sb)
389{
390 int busy;
391 LIST_HEAD(throw_away);
392
Ingo Molnarf24075b2006-03-23 03:00:34 -0800393 mutex_lock(&iprune_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 spin_lock(&inode_lock);
Robert Love0eeca282005-07-12 17:06:03 -0400395 inotify_unmount_inodes(&sb->s_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 busy = invalidate_list(&sb->s_inodes, &throw_away);
397 spin_unlock(&inode_lock);
398
399 dispose_list(&throw_away);
Ingo Molnarf24075b2006-03-23 03:00:34 -0800400 mutex_unlock(&iprune_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 return busy;
403}
404
405EXPORT_SYMBOL(invalidate_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407static int can_unuse(struct inode *inode)
408{
409 if (inode->i_state)
410 return 0;
411 if (inode_has_buffers(inode))
412 return 0;
413 if (atomic_read(&inode->i_count))
414 return 0;
415 if (inode->i_data.nrpages)
416 return 0;
417 return 1;
418}
419
420/*
421 * Scan `goal' inodes on the unused list for freeable ones. They are moved to
422 * a temporary list and then are freed outside inode_lock by dispose_list().
423 *
424 * Any inodes which are pinned purely because of attached pagecache have their
425 * pagecache removed. We expect the final iput() on that inode to add it to
426 * the front of the inode_unused list. So look for it there and if the
427 * inode is still freeable, proceed. The right inode is found 99.9% of the
428 * time in testing on a 4-way.
429 *
430 * If the inode has metadata buffers attached to mapping->private_list then
431 * try to remove them.
432 */
433static void prune_icache(int nr_to_scan)
434{
435 LIST_HEAD(freeable);
436 int nr_pruned = 0;
437 int nr_scanned;
438 unsigned long reap = 0;
439
Ingo Molnarf24075b2006-03-23 03:00:34 -0800440 mutex_lock(&iprune_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 spin_lock(&inode_lock);
442 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
443 struct inode *inode;
444
445 if (list_empty(&inode_unused))
446 break;
447
448 inode = list_entry(inode_unused.prev, struct inode, i_list);
449
450 if (inode->i_state || atomic_read(&inode->i_count)) {
451 list_move(&inode->i_list, &inode_unused);
452 continue;
453 }
454 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
455 __iget(inode);
456 spin_unlock(&inode_lock);
457 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800458 reap += invalidate_mapping_pages(&inode->i_data,
459 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 iput(inode);
461 spin_lock(&inode_lock);
462
463 if (inode != list_entry(inode_unused.next,
464 struct inode, i_list))
465 continue; /* wrong inode or list_empty */
466 if (!can_unuse(inode))
467 continue;
468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 list_move(&inode->i_list, &freeable);
470 inode->i_state |= I_FREEING;
471 nr_pruned++;
472 }
473 inodes_stat.nr_unused -= nr_pruned;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700474 if (current_is_kswapd())
475 __count_vm_events(KSWAPD_INODESTEAL, reap);
476 else
477 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 spin_unlock(&inode_lock);
479
480 dispose_list(&freeable);
Ingo Molnarf24075b2006-03-23 03:00:34 -0800481 mutex_unlock(&iprune_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484/*
485 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
486 * "unused" means that no dentries are referring to the inodes: the files are
487 * not open and the dcache references to those inodes have already been
488 * reclaimed.
489 *
490 * This function is passed the number of inodes to scan, and it returns the
491 * total number of remaining possibly-reclaimable inodes.
492 */
Al Viro27496a82005-10-21 03:20:48 -0400493static int shrink_icache_memory(int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 if (nr) {
496 /*
497 * Nasty deadlock avoidance. We may hold various FS locks,
498 * and we don't want to recurse into the FS that called us
499 * in clear_inode() and friends..
500 */
501 if (!(gfp_mask & __GFP_FS))
502 return -1;
503 prune_icache(nr);
504 }
505 return (inodes_stat.nr_unused / 100) * sysctl_vfs_cache_pressure;
506}
507
Rusty Russell8e1f9362007-07-17 04:03:17 -0700508static struct shrinker icache_shrinker = {
509 .shrink = shrink_icache_memory,
510 .seeks = DEFAULT_SEEKS,
511};
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513static void __wait_on_freeing_inode(struct inode *inode);
514/*
515 * Called with the inode lock held.
516 * NOTE: we are not increasing the inode-refcount, you must call __iget()
517 * by hand after calling find_inode now! This simplifies iunique and won't
518 * add any additional branch in the common code.
519 */
520static struct inode * find_inode(struct super_block * sb, struct hlist_head *head, int (*test)(struct inode *, void *), void *data)
521{
522 struct hlist_node *node;
523 struct inode * inode = NULL;
524
525repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700526 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (inode->i_sb != sb)
528 continue;
529 if (!test(inode, data))
530 continue;
Alexander Viro991114c2005-06-23 00:09:01 -0700531 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 __wait_on_freeing_inode(inode);
533 goto repeat;
534 }
535 break;
536 }
537 return node ? inode : NULL;
538}
539
540/*
541 * find_inode_fast is the fast path version of find_inode, see the comment at
542 * iget_locked for details.
543 */
544static struct inode * find_inode_fast(struct super_block * sb, struct hlist_head *head, unsigned long ino)
545{
546 struct hlist_node *node;
547 struct inode * inode = NULL;
548
549repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700550 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (inode->i_ino != ino)
552 continue;
553 if (inode->i_sb != sb)
554 continue;
Alexander Viro991114c2005-06-23 00:09:01 -0700555 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 __wait_on_freeing_inode(inode);
557 goto repeat;
558 }
559 break;
560 }
561 return node ? inode : NULL;
562}
563
David Chinner8290c352008-10-30 17:35:24 +1100564static unsigned long hash(struct super_block *sb, unsigned long hashval)
565{
566 unsigned long tmp;
567
568 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
569 L1_CACHE_BYTES;
570 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
571 return tmp & I_HASHMASK;
572}
573
574static inline void
575__inode_add_to_lists(struct super_block *sb, struct hlist_head *head,
576 struct inode *inode)
577{
578 inodes_stat.nr_inodes++;
579 list_add(&inode->i_list, &inode_in_use);
580 list_add(&inode->i_sb_list, &sb->s_inodes);
581 if (head)
582 hlist_add_head(&inode->i_hash, head);
583}
584
585/**
586 * inode_add_to_lists - add a new inode to relevant lists
587 * @sb - superblock inode belongs to.
588 * @inode - inode to mark in use
589 *
590 * When an inode is allocated it needs to be accounted for, added to the in use
591 * list, the owning superblock and the inode hash. This needs to be done under
592 * the inode_lock, so export a function to do this rather than the inode lock
593 * itself. We calculate the hash list to add to here so it is all internal
594 * which requires the caller to have already set up the inode number in the
595 * inode to add.
596 */
597void inode_add_to_lists(struct super_block *sb, struct inode *inode)
598{
599 struct hlist_head *head = inode_hashtable + hash(sb, inode->i_ino);
600
601 spin_lock(&inode_lock);
602 __inode_add_to_lists(sb, head, inode);
603 spin_unlock(&inode_lock);
604}
605EXPORT_SYMBOL_GPL(inode_add_to_lists);
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/**
608 * new_inode - obtain an inode
609 * @sb: superblock
610 *
Mel Gorman769848c2007-07-17 04:03:05 -0700611 * Allocates a new inode for given superblock. The default gfp_mask
612 * for allocations related to inode->i_mapping is GFP_HIGHUSER_PAGECACHE.
613 * If HIGHMEM pages are unsuitable or it is known that pages allocated
614 * for the page cache are not reclaimable or migratable,
615 * mapping_set_gfp_mask() must be called with suitable flags on the
616 * newly created inode's mapping
617 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
619struct inode *new_inode(struct super_block *sb)
620{
Jeff Layton866b04f2007-05-08 00:32:29 -0700621 /*
622 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
623 * error if st_ino won't fit in target struct field. Use 32bit counter
624 * here to attempt to avoid that.
625 */
626 static unsigned int last_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 struct inode * inode;
628
629 spin_lock_prefetch(&inode_lock);
630
631 inode = alloc_inode(sb);
632 if (inode) {
633 spin_lock(&inode_lock);
David Chinner8290c352008-10-30 17:35:24 +1100634 __inode_add_to_lists(sb, NULL, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 inode->i_ino = ++last_ino;
636 inode->i_state = 0;
637 spin_unlock(&inode_lock);
638 }
639 return inode;
640}
641
642EXPORT_SYMBOL(new_inode);
643
644void unlock_new_inode(struct inode *inode)
645{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200646#ifdef CONFIG_DEBUG_LOCK_ALLOC
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200647 if (inode->i_mode & S_IFDIR) {
648 struct file_system_type *type = inode->i_sb->s_type;
649
650 /*
651 * ensure nobody is actually holding i_mutex
652 */
653 mutex_destroy(&inode->i_mutex);
654 mutex_init(&inode->i_mutex);
Peter Zijlstra14358e62007-10-14 01:38:33 +0200655 lockdep_set_class(&inode->i_mutex, &type->i_mutex_dir_key);
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200656 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200657#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /*
659 * This is special! We do not need the spinlock
660 * when clearing I_LOCK, because we're guaranteed
661 * that nobody else tries to do anything about the
662 * state of the inode when it is locked, as we
663 * just created it (so there can be no old holders
664 * that haven't tested I_LOCK).
665 */
666 inode->i_state &= ~(I_LOCK|I_NEW);
667 wake_up_inode(inode);
668}
669
670EXPORT_SYMBOL(unlock_new_inode);
671
672/*
673 * This is called without the inode lock held.. Be careful.
674 *
675 * We no longer cache the sb_flags in i_flags - see fs.h
676 * -- rmk@arm.uk.linux.org
677 */
678static struct inode * get_new_inode(struct super_block *sb, struct hlist_head *head, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *data)
679{
680 struct inode * inode;
681
682 inode = alloc_inode(sb);
683 if (inode) {
684 struct inode * old;
685
686 spin_lock(&inode_lock);
687 /* We released the lock, so.. */
688 old = find_inode(sb, head, test, data);
689 if (!old) {
690 if (set(inode, data))
691 goto set_failed;
692
David Chinner8290c352008-10-30 17:35:24 +1100693 __inode_add_to_lists(sb, head, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 inode->i_state = I_LOCK|I_NEW;
695 spin_unlock(&inode_lock);
696
697 /* Return the locked inode with I_NEW set, the
698 * caller is responsible for filling in the contents
699 */
700 return inode;
701 }
702
703 /*
704 * Uhhuh, somebody else created the same inode under
705 * us. Use the old inode instead of the one we just
706 * allocated.
707 */
708 __iget(old);
709 spin_unlock(&inode_lock);
710 destroy_inode(inode);
711 inode = old;
712 wait_on_inode(inode);
713 }
714 return inode;
715
716set_failed:
717 spin_unlock(&inode_lock);
718 destroy_inode(inode);
719 return NULL;
720}
721
722/*
723 * get_new_inode_fast is the fast path version of get_new_inode, see the
724 * comment at iget_locked for details.
725 */
726static struct inode * get_new_inode_fast(struct super_block *sb, struct hlist_head *head, unsigned long ino)
727{
728 struct inode * inode;
729
730 inode = alloc_inode(sb);
731 if (inode) {
732 struct inode * old;
733
734 spin_lock(&inode_lock);
735 /* We released the lock, so.. */
736 old = find_inode_fast(sb, head, ino);
737 if (!old) {
738 inode->i_ino = ino;
David Chinner8290c352008-10-30 17:35:24 +1100739 __inode_add_to_lists(sb, head, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 inode->i_state = I_LOCK|I_NEW;
741 spin_unlock(&inode_lock);
742
743 /* Return the locked inode with I_NEW set, the
744 * caller is responsible for filling in the contents
745 */
746 return inode;
747 }
748
749 /*
750 * Uhhuh, somebody else created the same inode under
751 * us. Use the old inode instead of the one we just
752 * allocated.
753 */
754 __iget(old);
755 spin_unlock(&inode_lock);
756 destroy_inode(inode);
757 inode = old;
758 wait_on_inode(inode);
759 }
760 return inode;
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763/**
764 * iunique - get a unique inode number
765 * @sb: superblock
766 * @max_reserved: highest reserved inode number
767 *
768 * Obtain an inode number that is unique on the system for a given
769 * superblock. This is used by file systems that have no natural
770 * permanent inode numbering system. An inode number is returned that
771 * is higher than the reserved limit but unique.
772 *
773 * BUGS:
774 * With a large number of inodes live on the file system this function
775 * currently becomes quite slow.
776 */
777ino_t iunique(struct super_block *sb, ino_t max_reserved)
778{
Jeff Layton866b04f2007-05-08 00:32:29 -0700779 /*
780 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
781 * error if st_ino won't fit in target struct field. Use 32bit counter
782 * here to attempt to avoid that.
783 */
784 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct inode *inode;
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700786 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700789 spin_lock(&inode_lock);
790 do {
791 if (counter <= max_reserved)
792 counter = max_reserved + 1;
793 res = counter++;
794 head = inode_hashtable + hash(sb, res);
795 inode = find_inode_fast(sb, head, res);
796 } while (inode != NULL);
797 spin_unlock(&inode_lock);
798
799 return res;
800}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801EXPORT_SYMBOL(iunique);
802
803struct inode *igrab(struct inode *inode)
804{
805 spin_lock(&inode_lock);
Jan Blunck4a3b0a42007-02-10 01:44:59 -0800806 if (!(inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 __iget(inode);
808 else
809 /*
810 * Handle the case where s_op->clear_inode is not been
811 * called yet, and somebody is calling igrab
812 * while the inode is getting freed.
813 */
814 inode = NULL;
815 spin_unlock(&inode_lock);
816 return inode;
817}
818
819EXPORT_SYMBOL(igrab);
820
821/**
822 * ifind - internal function, you want ilookup5() or iget5().
823 * @sb: super block of file system to search
824 * @head: the head of the list to search
825 * @test: callback used for comparisons between inodes
826 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700827 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 *
829 * ifind() searches for the inode specified by @data in the inode
830 * cache. This is a generalized version of ifind_fast() for file systems where
831 * the inode number is not sufficient for unique identification of an inode.
832 *
833 * If the inode is in the cache, the inode is returned with an incremented
834 * reference count.
835 *
836 * Otherwise NULL is returned.
837 *
838 * Note, @test is called with the inode_lock held, so can't sleep.
839 */
Matt Mackall5d2bea42006-01-08 01:05:21 -0800840static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700842 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 struct inode *inode;
845
846 spin_lock(&inode_lock);
847 inode = find_inode(sb, head, test, data);
848 if (inode) {
849 __iget(inode);
850 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700851 if (likely(wait))
852 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return inode;
854 }
855 spin_unlock(&inode_lock);
856 return NULL;
857}
858
859/**
860 * ifind_fast - internal function, you want ilookup() or iget().
861 * @sb: super block of file system to search
862 * @head: head of the list to search
863 * @ino: inode number to search for
864 *
865 * ifind_fast() searches for the inode @ino in the inode cache. This is for
866 * file systems where the inode number is sufficient for unique identification
867 * of an inode.
868 *
869 * If the inode is in the cache, the inode is returned with an incremented
870 * reference count.
871 *
872 * Otherwise NULL is returned.
873 */
Matt Mackall5d2bea42006-01-08 01:05:21 -0800874static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 struct hlist_head *head, unsigned long ino)
876{
877 struct inode *inode;
878
879 spin_lock(&inode_lock);
880 inode = find_inode_fast(sb, head, ino);
881 if (inode) {
882 __iget(inode);
883 spin_unlock(&inode_lock);
884 wait_on_inode(inode);
885 return inode;
886 }
887 spin_unlock(&inode_lock);
888 return NULL;
889}
890
891/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700892 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 * @sb: super block of file system to search
894 * @hashval: hash value (usually inode number) to search for
895 * @test: callback used for comparisons between inodes
896 * @data: opaque data pointer to pass to @test
897 *
898 * ilookup5() uses ifind() to search for the inode specified by @hashval and
899 * @data in the inode cache. This is a generalized version of ilookup() for
900 * file systems where the inode number is not sufficient for unique
901 * identification of an inode.
902 *
903 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700904 * reference count. Note, the inode lock is not waited upon so you have to be
905 * very careful what you do with the returned inode. You probably should be
906 * using ilookup5() instead.
907 *
908 * Otherwise NULL is returned.
909 *
910 * Note, @test is called with the inode_lock held, so can't sleep.
911 */
912struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
913 int (*test)(struct inode *, void *), void *data)
914{
915 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
916
917 return ifind(sb, head, test, data, 0);
918}
919
920EXPORT_SYMBOL(ilookup5_nowait);
921
922/**
923 * ilookup5 - search for an inode in the inode cache
924 * @sb: super block of file system to search
925 * @hashval: hash value (usually inode number) to search for
926 * @test: callback used for comparisons between inodes
927 * @data: opaque data pointer to pass to @test
928 *
929 * ilookup5() uses ifind() to search for the inode specified by @hashval and
930 * @data in the inode cache. This is a generalized version of ilookup() for
931 * file systems where the inode number is not sufficient for unique
932 * identification of an inode.
933 *
934 * If the inode is in the cache, the inode lock is waited upon and the inode is
935 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 *
937 * Otherwise NULL is returned.
938 *
939 * Note, @test is called with the inode_lock held, so can't sleep.
940 */
941struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
942 int (*test)(struct inode *, void *), void *data)
943{
944 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
945
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700946 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949EXPORT_SYMBOL(ilookup5);
950
951/**
952 * ilookup - search for an inode in the inode cache
953 * @sb: super block of file system to search
954 * @ino: inode number to search for
955 *
956 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
957 * This is for file systems where the inode number is sufficient for unique
958 * identification of an inode.
959 *
960 * If the inode is in the cache, the inode is returned with an incremented
961 * reference count.
962 *
963 * Otherwise NULL is returned.
964 */
965struct inode *ilookup(struct super_block *sb, unsigned long ino)
966{
967 struct hlist_head *head = inode_hashtable + hash(sb, ino);
968
969 return ifind_fast(sb, head, ino);
970}
971
972EXPORT_SYMBOL(ilookup);
973
974/**
975 * iget5_locked - obtain an inode from a mounted file system
976 * @sb: super block of file system
977 * @hashval: hash value (usually inode number) to get
978 * @test: callback used for comparisons between inodes
979 * @set: callback used to initialize a new struct inode
980 * @data: opaque data pointer to pass to @test and @set
981 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 * iget5_locked() uses ifind() to search for the inode specified by @hashval
983 * and @data in the inode cache and if present it is returned with an increased
984 * reference count. This is a generalized version of iget_locked() for file
985 * systems where the inode number is not sufficient for unique identification
986 * of an inode.
987 *
988 * If the inode is not in cache, get_new_inode() is called to allocate a new
989 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
990 * file system gets to fill it in before unlocking it via unlock_new_inode().
991 *
992 * Note both @test and @set are called with the inode_lock held, so can't sleep.
993 */
994struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
995 int (*test)(struct inode *, void *),
996 int (*set)(struct inode *, void *), void *data)
997{
998 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
999 struct inode *inode;
1000
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001001 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (inode)
1003 return inode;
1004 /*
1005 * get_new_inode() will do the right thing, re-trying the search
1006 * in case it had to block at any point.
1007 */
1008 return get_new_inode(sb, head, test, set, data);
1009}
1010
1011EXPORT_SYMBOL(iget5_locked);
1012
1013/**
1014 * iget_locked - obtain an inode from a mounted file system
1015 * @sb: super block of file system
1016 * @ino: inode number to get
1017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1019 * the inode cache and if present it is returned with an increased reference
1020 * count. This is for file systems where the inode number is sufficient for
1021 * unique identification of an inode.
1022 *
1023 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1024 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1025 * The file system gets to fill it in before unlocking it via
1026 * unlock_new_inode().
1027 */
1028struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1029{
1030 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1031 struct inode *inode;
1032
1033 inode = ifind_fast(sb, head, ino);
1034 if (inode)
1035 return inode;
1036 /*
1037 * get_new_inode_fast() will do the right thing, re-trying the search
1038 * in case it had to block at any point.
1039 */
1040 return get_new_inode_fast(sb, head, ino);
1041}
1042
1043EXPORT_SYMBOL(iget_locked);
1044
1045/**
1046 * __insert_inode_hash - hash an inode
1047 * @inode: unhashed inode
1048 * @hashval: unsigned long value used to locate this object in the
1049 * inode_hashtable.
1050 *
1051 * Add an inode to the inode hash for this superblock.
1052 */
1053void __insert_inode_hash(struct inode *inode, unsigned long hashval)
1054{
1055 struct hlist_head *head = inode_hashtable + hash(inode->i_sb, hashval);
1056 spin_lock(&inode_lock);
1057 hlist_add_head(&inode->i_hash, head);
1058 spin_unlock(&inode_lock);
1059}
1060
1061EXPORT_SYMBOL(__insert_inode_hash);
1062
1063/**
1064 * remove_inode_hash - remove an inode from the hash
1065 * @inode: inode to unhash
1066 *
1067 * Remove an inode from the superblock.
1068 */
1069void remove_inode_hash(struct inode *inode)
1070{
1071 spin_lock(&inode_lock);
1072 hlist_del_init(&inode->i_hash);
1073 spin_unlock(&inode_lock);
1074}
1075
1076EXPORT_SYMBOL(remove_inode_hash);
1077
1078/*
1079 * Tell the filesystem that this inode is no longer of any interest and should
1080 * be completely destroyed.
1081 *
1082 * We leave the inode in the inode hash table until *after* the filesystem's
1083 * ->delete_inode completes. This ensures that an iget (such as nfsd might
1084 * instigate) will always find up-to-date information either in the hash or on
1085 * disk.
1086 *
1087 * I_FREEING is set so that no-one will take a new reference to the inode while
1088 * it is being deleted.
1089 */
1090void generic_delete_inode(struct inode *inode)
1091{
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -08001092 const struct super_operations *op = inode->i_sb->s_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 list_del_init(&inode->i_list);
1095 list_del_init(&inode->i_sb_list);
Andreas Mohred97bd32006-10-02 02:17:17 -07001096 inode->i_state |= I_FREEING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 inodes_stat.nr_inodes--;
1098 spin_unlock(&inode_lock);
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 security_inode_delete(inode);
1101
1102 if (op->delete_inode) {
1103 void (*delete)(struct inode *) = op->delete_inode;
1104 if (!is_bad_inode(inode))
1105 DQUOT_INIT(inode);
Mark Fashehe85b5652005-09-09 13:01:29 -07001106 /* Filesystems implementing their own
1107 * s_op->delete_inode are required to call
1108 * truncate_inode_pages and clear_inode()
1109 * internally */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 delete(inode);
Mark Fashehe85b5652005-09-09 13:01:29 -07001111 } else {
1112 truncate_inode_pages(&inode->i_data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 clear_inode(inode);
Mark Fashehe85b5652005-09-09 13:01:29 -07001114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 spin_lock(&inode_lock);
1116 hlist_del_init(&inode->i_hash);
1117 spin_unlock(&inode_lock);
1118 wake_up_inode(inode);
Eric Sesterhennb7542f82006-04-02 13:38:18 +02001119 BUG_ON(inode->i_state != I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 destroy_inode(inode);
1121}
1122
1123EXPORT_SYMBOL(generic_delete_inode);
1124
1125static void generic_forget_inode(struct inode *inode)
1126{
1127 struct super_block *sb = inode->i_sb;
1128
1129 if (!hlist_unhashed(&inode->i_hash)) {
Joern Engel1c0eeaf2007-10-16 23:30:44 -07001130 if (!(inode->i_state & (I_DIRTY|I_SYNC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 list_move(&inode->i_list, &inode_unused);
1132 inodes_stat.nr_unused++;
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001133 if (sb->s_flags & MS_ACTIVE) {
Alexander Viro991114c2005-06-23 00:09:01 -07001134 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001136 }
1137 inode->i_state |= I_WILL_FREE;
1138 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 write_inode_now(inode, 1);
1140 spin_lock(&inode_lock);
Alexander Viro991114c2005-06-23 00:09:01 -07001141 inode->i_state &= ~I_WILL_FREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 inodes_stat.nr_unused--;
1143 hlist_del_init(&inode->i_hash);
1144 }
1145 list_del_init(&inode->i_list);
1146 list_del_init(&inode->i_sb_list);
Alexander Viro991114c2005-06-23 00:09:01 -07001147 inode->i_state |= I_FREEING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 inodes_stat.nr_inodes--;
1149 spin_unlock(&inode_lock);
1150 if (inode->i_data.nrpages)
1151 truncate_inode_pages(&inode->i_data, 0);
1152 clear_inode(inode);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001153 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 destroy_inode(inode);
1155}
1156
1157/*
1158 * Normal UNIX filesystem behaviour: delete the
1159 * inode when the usage count drops to zero, and
1160 * i_nlink is zero.
1161 */
Mark Fashehcb2c0232005-07-07 17:56:03 -07001162void generic_drop_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 if (!inode->i_nlink)
1165 generic_delete_inode(inode);
1166 else
1167 generic_forget_inode(inode);
1168}
1169
Mark Fashehcb2c0232005-07-07 17:56:03 -07001170EXPORT_SYMBOL_GPL(generic_drop_inode);
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172/*
1173 * Called when we're dropping the last reference
1174 * to an inode.
1175 *
1176 * Call the FS "drop()" function, defaulting to
1177 * the legacy UNIX filesystem behaviour..
1178 *
1179 * NOTE! NOTE! NOTE! We're called with the inode lock
1180 * held, and the drop function is supposed to release
1181 * the lock!
1182 */
1183static inline void iput_final(struct inode *inode)
1184{
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -08001185 const struct super_operations *op = inode->i_sb->s_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 void (*drop)(struct inode *) = generic_drop_inode;
1187
1188 if (op && op->drop_inode)
1189 drop = op->drop_inode;
1190 drop(inode);
1191}
1192
1193/**
1194 * iput - put an inode
1195 * @inode: inode to put
1196 *
1197 * Puts an inode, dropping its usage count. If the inode use count hits
1198 * zero, the inode is then freed and may also be destroyed.
1199 *
1200 * Consequently, iput() can sleep.
1201 */
1202void iput(struct inode *inode)
1203{
1204 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 BUG_ON(inode->i_state == I_CLEAR);
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1208 iput_final(inode);
1209 }
1210}
1211
1212EXPORT_SYMBOL(iput);
1213
1214/**
1215 * bmap - find a block number in a file
1216 * @inode: inode of file
1217 * @block: block to find
1218 *
1219 * Returns the block number on the device holding the inode that
1220 * is the disk block number for the block of the file requested.
1221 * That is, asked for block 4 of inode 1 the function will return the
1222 * disk block relative to the disk start that holds that block of the
1223 * file.
1224 */
1225sector_t bmap(struct inode * inode, sector_t block)
1226{
1227 sector_t res = 0;
1228 if (inode->i_mapping->a_ops->bmap)
1229 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1230 return res;
1231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232EXPORT_SYMBOL(bmap);
1233
1234/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001235 * touch_atime - update the access time
1236 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001237 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 *
1239 * Update the accessed time on an inode and mark it for writeback.
1240 * This function automatically handles read only file systems and media,
1241 * as well as the "noatime" flag and inode specific "noatime" markers.
1242 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001243void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001245 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 struct timespec now;
1247
Dave Hansencdb70f32008-02-15 14:37:41 -08001248 if (mnt_want_write(mnt))
1249 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001250 if (inode->i_flags & S_NOATIME)
Dave Hansencdb70f32008-02-15 14:37:41 -08001251 goto out;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001252 if (IS_NOATIME(inode))
Dave Hansencdb70f32008-02-15 14:37:41 -08001253 goto out;
Andrew Mortonb2276132006-12-13 00:34:33 -08001254 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Dave Hansencdb70f32008-02-15 14:37:41 -08001255 goto out;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001256
Dave Hansencdb70f32008-02-15 14:37:41 -08001257 if (mnt->mnt_flags & MNT_NOATIME)
1258 goto out;
1259 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
1260 goto out;
1261 if (mnt->mnt_flags & MNT_RELATIME) {
1262 /*
1263 * With relative atime, only update atime if the previous
1264 * atime is earlier than either the ctime or mtime.
1265 */
1266 if (timespec_compare(&inode->i_mtime, &inode->i_atime) < 0 &&
1267 timespec_compare(&inode->i_ctime, &inode->i_atime) < 0)
1268 goto out;
Andrew Mortonb2276132006-12-13 00:34:33 -08001269 }
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 now = current_fs_time(inode->i_sb);
Valerie Henson47ae32d2006-12-13 00:34:34 -08001272 if (timespec_equal(&inode->i_atime, &now))
Dave Hansencdb70f32008-02-15 14:37:41 -08001273 goto out;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001274
1275 inode->i_atime = now;
1276 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001277out:
1278 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001280EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001283 * file_update_time - update mtime and ctime time
1284 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001286 * Update the mtime and ctime members of an inode and mark the inode
1287 * for writeback. Note that this function is meant exclusively for
1288 * usage in the file write path of filesystems, and filesystems may
1289 * choose to explicitly ignore update via this function with the
1290 * S_NOCTIME inode flag, e.g. for network filesystem where these
1291 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 */
1293
Christoph Hellwig870f4812006-01-09 20:52:01 -08001294void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001296 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 struct timespec now;
1298 int sync_it = 0;
Dave Hansen20ddee22008-02-15 14:37:43 -08001299 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 if (IS_NOCMTIME(inode))
1302 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001303
1304 err = mnt_want_write(file->f_path.mnt);
1305 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 return;
1307
1308 now = current_fs_time(inode->i_sb);
Andreas Mohred97bd32006-10-02 02:17:17 -07001309 if (!timespec_equal(&inode->i_mtime, &now)) {
1310 inode->i_mtime = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 sync_it = 1;
Andreas Mohred97bd32006-10-02 02:17:17 -07001312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Andreas Mohred97bd32006-10-02 02:17:17 -07001314 if (!timespec_equal(&inode->i_ctime, &now)) {
1315 inode->i_ctime = now;
Christoph Hellwig870f4812006-01-09 20:52:01 -08001316 sync_it = 1;
Andreas Mohred97bd32006-10-02 02:17:17 -07001317 }
Christoph Hellwig870f4812006-01-09 20:52:01 -08001318
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001319 if (IS_I_VERSION(inode)) {
1320 inode_inc_iversion(inode);
1321 sync_it = 1;
1322 }
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (sync_it)
1325 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001326 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
1328
Christoph Hellwig870f4812006-01-09 20:52:01 -08001329EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331int inode_needs_sync(struct inode *inode)
1332{
1333 if (IS_SYNC(inode))
1334 return 1;
1335 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1336 return 1;
1337 return 0;
1338}
1339
1340EXPORT_SYMBOL(inode_needs_sync);
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342int inode_wait(void *word)
1343{
1344 schedule();
1345 return 0;
1346}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001347EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001350 * If we try to find an inode in the inode hash while it is being
1351 * deleted, we have to wait until the filesystem completes its
1352 * deletion before reporting that it isn't found. This function waits
1353 * until the deletion _might_ have completed. Callers are responsible
1354 * to recheck inode state.
1355 *
1356 * It doesn't matter if I_LOCK is not set initially, a call to
1357 * wake_up_inode() after removing from the hash list will DTRT.
1358 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 * This is called with inode_lock held.
1360 */
1361static void __wait_on_freeing_inode(struct inode *inode)
1362{
1363 wait_queue_head_t *wq;
1364 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 wq = bit_waitqueue(&inode->i_state, __I_LOCK);
1366 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1367 spin_unlock(&inode_lock);
1368 schedule();
1369 finish_wait(wq, &wait.wait);
1370 spin_lock(&inode_lock);
1371}
1372
Mark Fasheh62752ee2006-10-17 10:31:38 +02001373/*
1374 * We rarely want to lock two inodes that do not have a parent/child
1375 * relationship (such as directory, child inode) simultaneously. The
1376 * vast majority of file systems should be able to get along fine
1377 * without this. Do not use these functions except as a last resort.
1378 */
1379void inode_double_lock(struct inode *inode1, struct inode *inode2)
1380{
1381 if (inode1 == NULL || inode2 == NULL || inode1 == inode2) {
1382 if (inode1)
1383 mutex_lock(&inode1->i_mutex);
1384 else if (inode2)
1385 mutex_lock(&inode2->i_mutex);
1386 return;
1387 }
1388
1389 if (inode1 < inode2) {
1390 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
1391 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
1392 } else {
1393 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_PARENT);
1394 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_CHILD);
1395 }
1396}
1397EXPORT_SYMBOL(inode_double_lock);
1398
1399void inode_double_unlock(struct inode *inode1, struct inode *inode2)
1400{
1401 if (inode1)
1402 mutex_unlock(&inode1->i_mutex);
1403
1404 if (inode2 && inode2 != inode1)
1405 mutex_unlock(&inode2->i_mutex);
1406}
1407EXPORT_SYMBOL(inode_double_unlock);
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409static __initdata unsigned long ihash_entries;
1410static int __init set_ihash_entries(char *str)
1411{
1412 if (!str)
1413 return 0;
1414 ihash_entries = simple_strtoul(str, &str, 0);
1415 return 1;
1416}
1417__setup("ihash_entries=", set_ihash_entries);
1418
1419/*
1420 * Initialize the waitqueues and inode hash table.
1421 */
1422void __init inode_init_early(void)
1423{
1424 int loop;
1425
1426 /* If hashes are distributed across NUMA nodes, defer
1427 * hash allocation until vmalloc space is available.
1428 */
1429 if (hashdist)
1430 return;
1431
1432 inode_hashtable =
1433 alloc_large_system_hash("Inode-cache",
1434 sizeof(struct hlist_head),
1435 ihash_entries,
1436 14,
1437 HASH_EARLY,
1438 &i_hash_shift,
1439 &i_hash_mask,
1440 0);
1441
1442 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1443 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1444}
1445
Denis Cheng74bf17c2007-10-16 23:26:30 -07001446void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
1448 int loop;
1449
1450 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001451 inode_cachep = kmem_cache_create("inode_cache",
1452 sizeof(struct inode),
1453 0,
1454 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1455 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001456 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001457 register_shrinker(&icache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 /* Hash may have been set up in inode_init_early */
1460 if (!hashdist)
1461 return;
1462
1463 inode_hashtable =
1464 alloc_large_system_hash("Inode-cache",
1465 sizeof(struct hlist_head),
1466 ihash_entries,
1467 14,
1468 0,
1469 &i_hash_shift,
1470 &i_hash_mask,
1471 0);
1472
1473 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1474 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1475}
1476
1477void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1478{
1479 inode->i_mode = mode;
1480 if (S_ISCHR(mode)) {
1481 inode->i_fop = &def_chr_fops;
1482 inode->i_rdev = rdev;
1483 } else if (S_ISBLK(mode)) {
1484 inode->i_fop = &def_blk_fops;
1485 inode->i_rdev = rdev;
1486 } else if (S_ISFIFO(mode))
1487 inode->i_fop = &def_fifo_fops;
1488 else if (S_ISSOCK(mode))
1489 inode->i_fop = &bad_sock_fops;
1490 else
1491 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o)\n",
1492 mode);
1493}
1494EXPORT_SYMBOL(init_special_inode);