blob: 05f4fa521325b071f7ad114354b30233b131ae48 [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>
Heiko Carstens9ce6e0b2011-05-22 18:54:21 +020027#include <linux/prefetch.h>
Eric Parisa178d202010-10-25 14:41:59 -040028#include <linux/ima.h>
Serge E. Hallyne795b712011-03-23 16:43:25 -070029#include <linux/cred.h>
Dave Chinnera66979a2011-03-22 22:23:41 +110030#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/*
Dave Chinner250df6e2011-03-22 22:23:36 +110033 * inode locking rules.
34 *
35 * inode->i_lock protects:
36 * inode->i_state, inode->i_hash, __iget()
Dave Chinner02afc412011-03-22 22:23:38 +110037 * inode_lru_lock protects:
38 * inode_lru, inode->i_lru
Dave Chinner55fa6092011-03-22 22:23:40 +110039 * inode_sb_list_lock protects:
40 * sb->s_inodes, inode->i_sb_list
Dave Chinnera66979a2011-03-22 22:23:41 +110041 * inode_wb_list_lock protects:
42 * bdi->wb.b_{dirty,io,more_io}, inode->i_wb_list
Dave Chinner67a23c42011-03-22 22:23:42 +110043 * inode_hash_lock protects:
44 * inode_hashtable, inode->i_hash
Dave Chinner250df6e2011-03-22 22:23:36 +110045 *
46 * Lock ordering:
Dave Chinner55fa6092011-03-22 22:23:40 +110047 *
48 * inode_sb_list_lock
49 * inode->i_lock
Dave Chinner02afc412011-03-22 22:23:38 +110050 * inode_lru_lock
Dave Chinnera66979a2011-03-22 22:23:41 +110051 *
52 * inode_wb_list_lock
53 * inode->i_lock
Dave Chinner67a23c42011-03-22 22:23:42 +110054 *
55 * inode_hash_lock
56 * inode_sb_list_lock
57 * inode->i_lock
58 *
59 * iunique_lock
60 * inode_hash_lock
Dave Chinner250df6e2011-03-22 22:23:36 +110061 */
62
63/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * This is needed for the following functions:
65 * - inode_has_buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * - invalidate_bdev
67 *
68 * FIXME: remove all knowledge of the buffer layer from this file
69 */
70#include <linux/buffer_head.h>
71
72/*
73 * New inode.c implementation.
74 *
75 * This implementation has the basic premise of trying
76 * to be extremely low-overhead and SMP-safe, yet be
77 * simple enough to be "obviously correct".
78 *
79 * Famous last words.
80 */
81
82/* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
83
84/* #define INODE_PARANOIA 1 */
85/* #define INODE_DEBUG 1 */
86
87/*
88 * Inode lookup is no longer as critical as it used to be:
89 * most of the lookups are going to be through the dcache.
90 */
91#define I_HASHBITS i_hash_shift
92#define I_HASHMASK i_hash_mask
93
Eric Dumazetfa3536c2006-03-26 01:37:24 -080094static unsigned int i_hash_mask __read_mostly;
95static unsigned int i_hash_shift __read_mostly;
Dave Chinner67a23c42011-03-22 22:23:42 +110096static struct hlist_head *inode_hashtable __read_mostly;
97static __cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * Each inode can be on two separate lists. One is
101 * the hash list of the inode, used for lookups. The
102 * other linked list is the "type" list:
103 * "in_use" - valid inode, i_count > 0, i_nlink > 0
104 * "dirty" - as "in_use" but also dirty
105 * "unused" - valid inode, i_count = 0
106 *
107 * A "dirty" list is maintained for each super block,
108 * allowing for low-overhead inode sync() operations.
109 */
110
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100111static LIST_HEAD(inode_lru);
Dave Chinner02afc412011-03-22 22:23:38 +1100112static DEFINE_SPINLOCK(inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Dave Chinner55fa6092011-03-22 22:23:40 +1100114__cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_sb_list_lock);
Dave Chinnera66979a2011-03-22 22:23:41 +1100115__cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_wb_list_lock);
Dave Chinner55fa6092011-03-22 22:23:40 +1100116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*
Christoph Hellwigbab1d942011-03-15 21:51:24 +0100118 * iprune_sem provides exclusion between the icache shrinking and the
119 * umount path.
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700120 *
Christoph Hellwigbab1d942011-03-15 21:51:24 +0100121 * We don't actually need it to protect anything in the umount path,
122 * but only need to cycle through it to make sure any inode that
123 * prune_icache took off the LRU list has been fully torn down by the
124 * time we are past evict_inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 */
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700126static DECLARE_RWSEM(iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128/*
Jens Axboe7dcda1c2011-04-05 23:51:48 +0200129 * Empty aops. Can be used for the cases where the user does not
130 * define any of the address_space operations.
131 */
132const struct address_space_operations empty_aops = {
133};
134EXPORT_SYMBOL(empty_aops);
135
136/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * Statistics gathering..
138 */
139struct inodes_stat_t inodes_stat;
140
Nick Piggin3e880fb2011-01-07 17:49:19 +1100141static DEFINE_PER_CPU(unsigned int, nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400142
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530143static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Nick Piggin3e880fb2011-01-07 17:49:19 +1100145static int get_nr_inodes(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400146{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100147 int i;
148 int sum = 0;
149 for_each_possible_cpu(i)
150 sum += per_cpu(nr_inodes, i);
151 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400152}
153
154static inline int get_nr_inodes_unused(void)
155{
Nick Piggin86c87492011-01-07 17:49:18 +1100156 return inodes_stat.nr_unused;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400157}
158
159int get_nr_dirty_inodes(void)
160{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100161 /* not actually dirty inodes, but a wild approximation */
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400162 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
163 return nr_dirty > 0 ? nr_dirty : 0;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400164}
165
166/*
167 * Handle nr_inode sysctl
168 */
169#ifdef CONFIG_SYSCTL
170int proc_nr_inodes(ctl_table *table, int write,
171 void __user *buffer, size_t *lenp, loff_t *ppos)
172{
173 inodes_stat.nr_inodes = get_nr_inodes();
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400174 return proc_dointvec(table, write, buffer, lenp, ppos);
175}
176#endif
177
David Chinner2cb15992008-10-30 17:32:23 +1100178/**
179 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800180 * @sb: superblock inode belongs to
181 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100182 *
183 * These are initializations that need to be done on every inode
184 * allocation as the fields are not initialised by slab allocation.
185 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300186int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700188 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800189 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530190 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100191
192 inode->i_sb = sb;
193 inode->i_blkbits = sb->s_blocksize_bits;
194 inode->i_flags = 0;
195 atomic_set(&inode->i_count, 1);
196 inode->i_op = &empty_iops;
197 inode->i_fop = &empty_fops;
198 inode->i_nlink = 1;
Al Viro56ff5ef2008-12-09 09:34:39 -0500199 inode->i_uid = 0;
200 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100201 atomic_set(&inode->i_writecount, 0);
202 inode->i_size = 0;
203 inode->i_blocks = 0;
204 inode->i_bytes = 0;
205 inode->i_generation = 0;
206#ifdef CONFIG_QUOTA
207 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
208#endif
209 inode->i_pipe = NULL;
210 inode->i_bdev = NULL;
211 inode->i_cdev = NULL;
212 inode->i_rdev = 0;
213 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500214
215 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300216 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100217 spin_lock_init(&inode->i_lock);
218 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
219
220 mutex_init(&inode->i_mutex);
221 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
222
223 init_rwsem(&inode->i_alloc_sem);
224 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
225
226 mapping->a_ops = &empty_aops;
227 mapping->host = inode;
228 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800229 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100230 mapping->assoc_mapping = NULL;
231 mapping->backing_dev_info = &default_backing_dev_info;
232 mapping->writeback_index = 0;
233
234 /*
235 * If the block_device provides a backing_dev_info for client
236 * inodes then use that. Otherwise the inode share the bdev's
237 * backing_dev_info.
238 */
239 if (sb->s_bdev) {
240 struct backing_dev_info *bdi;
241
Jens Axboe2c96ce92009-09-15 09:43:56 +0200242 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100243 mapping->backing_dev_info = bdi;
244 }
245 inode->i_private = NULL;
246 inode->i_mapping = mapping;
Al Virof19d4a82009-06-08 19:50:45 -0400247#ifdef CONFIG_FS_POSIX_ACL
248 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
249#endif
David Chinner2cb15992008-10-30 17:32:23 +1100250
Eric Paris3be25f42009-05-21 17:01:26 -0400251#ifdef CONFIG_FSNOTIFY
252 inode->i_fsnotify_mask = 0;
253#endif
254
Nick Piggin3e880fb2011-01-07 17:49:19 +1100255 this_cpu_inc(nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400256
Christoph Hellwig54e34622009-08-07 14:38:25 -0300257 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300258out:
259 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100260}
261EXPORT_SYMBOL(inode_init_always);
262
263static struct inode *alloc_inode(struct super_block *sb)
264{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 struct inode *inode;
266
267 if (sb->s_op->alloc_inode)
268 inode = sb->s_op->alloc_inode(sb);
269 else
David Chinner2cb15992008-10-30 17:32:23 +1100270 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Christoph Hellwig54e34622009-08-07 14:38:25 -0300272 if (!inode)
273 return NULL;
274
275 if (unlikely(inode_init_always(sb, inode))) {
276 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 return NULL;
281 }
282
283 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Nick Pigginff0c7d12011-01-07 17:49:50 +1100286void free_inode_nonrcu(struct inode *inode)
287{
288 kmem_cache_free(inode_cachep, inode);
289}
290EXPORT_SYMBOL(free_inode_nonrcu);
291
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300292void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200294 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400296 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400297#ifdef CONFIG_FS_POSIX_ACL
298 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
299 posix_acl_release(inode->i_acl);
300 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
301 posix_acl_release(inode->i_default_acl);
302#endif
Nick Piggin3e880fb2011-01-07 17:49:19 +1100303 this_cpu_dec(nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300304}
305EXPORT_SYMBOL(__destroy_inode);
306
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100307static void i_callback(struct rcu_head *head)
308{
309 struct inode *inode = container_of(head, struct inode, i_rcu);
310 INIT_LIST_HEAD(&inode->i_dentry);
311 kmem_cache_free(inode_cachep, inode);
312}
313
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200314static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300315{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100316 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300317 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (inode->i_sb->s_op->destroy_inode)
319 inode->i_sb->s_op->destroy_inode(inode);
320 else
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100321 call_rcu(&inode->i_rcu, i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100324void address_space_init_once(struct address_space *mapping)
325{
326 memset(mapping, 0, sizeof(*mapping));
327 INIT_RADIX_TREE(&mapping->page_tree, GFP_ATOMIC);
328 spin_lock_init(&mapping->tree_lock);
329 spin_lock_init(&mapping->i_mmap_lock);
330 INIT_LIST_HEAD(&mapping->private_list);
331 spin_lock_init(&mapping->private_lock);
332 INIT_RAW_PRIO_TREE_ROOT(&mapping->i_mmap);
333 INIT_LIST_HEAD(&mapping->i_mmap_nonlinear);
334 mutex_init(&mapping->unmap_mutex);
335}
336EXPORT_SYMBOL(address_space_init_once);
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338/*
339 * These are initializations that only need to be done
340 * once, because the fields are idempotent across use
341 * of the inode, so let the slab aware of that.
342 */
343void inode_init_once(struct inode *inode)
344{
345 memset(inode, 0, sizeof(*inode));
346 INIT_HLIST_NODE(&inode->i_hash);
347 INIT_LIST_HEAD(&inode->i_dentry);
348 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100349 INIT_LIST_HEAD(&inode->i_wb_list);
350 INIT_LIST_HEAD(&inode->i_lru);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100351 address_space_init_once(&inode->i_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400353#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500354 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400355#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357EXPORT_SYMBOL(inode_init_once);
358
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700359static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530361 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Christoph Lametera35afb82007-05-16 22:10:57 -0700363 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
366/*
Dave Chinner250df6e2011-03-22 22:23:36 +1100367 * inode->i_lock must be held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530369void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Nick Piggin9e38d862010-10-23 06:55:17 -0400371 atomic_inc(&inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Al Viro7de9c6ee2010-10-23 11:11:40 -0400374/*
375 * get additional reference to inode; caller must already hold one.
376 */
377void ihold(struct inode *inode)
378{
379 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
380}
381EXPORT_SYMBOL(ihold);
382
Nick Piggin9e38d862010-10-23 06:55:17 -0400383static void inode_lru_list_add(struct inode *inode)
384{
Dave Chinner02afc412011-03-22 22:23:38 +1100385 spin_lock(&inode_lru_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100386 if (list_empty(&inode->i_lru)) {
387 list_add(&inode->i_lru, &inode_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100388 inodes_stat.nr_unused++;
Nick Piggin9e38d862010-10-23 06:55:17 -0400389 }
Dave Chinner02afc412011-03-22 22:23:38 +1100390 spin_unlock(&inode_lru_lock);
Nick Piggin9e38d862010-10-23 06:55:17 -0400391}
392
393static void inode_lru_list_del(struct inode *inode)
394{
Dave Chinner02afc412011-03-22 22:23:38 +1100395 spin_lock(&inode_lru_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100396 if (!list_empty(&inode->i_lru)) {
397 list_del_init(&inode->i_lru);
Nick Piggin86c87492011-01-07 17:49:18 +1100398 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400399 }
Dave Chinner02afc412011-03-22 22:23:38 +1100400 spin_unlock(&inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Christoph Hellwig646ec462010-10-23 07:15:32 -0400403/**
404 * inode_sb_list_add - add inode to the superblock list of inodes
405 * @inode: inode to add
406 */
407void inode_sb_list_add(struct inode *inode)
408{
Dave Chinner55fa6092011-03-22 22:23:40 +1100409 spin_lock(&inode_sb_list_lock);
410 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
411 spin_unlock(&inode_sb_list_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400412}
413EXPORT_SYMBOL_GPL(inode_sb_list_add);
414
Dave Chinner55fa6092011-03-22 22:23:40 +1100415static inline void inode_sb_list_del(struct inode *inode)
Christoph Hellwig646ec462010-10-23 07:15:32 -0400416{
Dave Chinner55fa6092011-03-22 22:23:40 +1100417 spin_lock(&inode_sb_list_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400418 list_del_init(&inode->i_sb_list);
Dave Chinner55fa6092011-03-22 22:23:40 +1100419 spin_unlock(&inode_sb_list_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400420}
421
Dave Chinner4c51acb2010-10-23 06:58:09 -0400422static unsigned long hash(struct super_block *sb, unsigned long hashval)
423{
424 unsigned long tmp;
425
426 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
427 L1_CACHE_BYTES;
428 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
429 return tmp & I_HASHMASK;
430}
431
432/**
433 * __insert_inode_hash - hash an inode
434 * @inode: unhashed inode
435 * @hashval: unsigned long value used to locate this object in the
436 * inode_hashtable.
437 *
438 * Add an inode to the inode hash for this superblock.
439 */
440void __insert_inode_hash(struct inode *inode, unsigned long hashval)
441{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400442 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
443
Dave Chinner67a23c42011-03-22 22:23:42 +1100444 spin_lock(&inode_hash_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100445 spin_lock(&inode->i_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400446 hlist_add_head(&inode->i_hash, b);
Dave Chinner250df6e2011-03-22 22:23:36 +1100447 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100448 spin_unlock(&inode_hash_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400449}
450EXPORT_SYMBOL(__insert_inode_hash);
451
452/**
Dave Chinner4c51acb2010-10-23 06:58:09 -0400453 * remove_inode_hash - remove an inode from the hash
454 * @inode: inode to unhash
455 *
456 * Remove an inode from the superblock.
457 */
458void remove_inode_hash(struct inode *inode)
459{
Dave Chinner67a23c42011-03-22 22:23:42 +1100460 spin_lock(&inode_hash_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100461 spin_lock(&inode->i_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400462 hlist_del_init(&inode->i_hash);
Dave Chinner250df6e2011-03-22 22:23:36 +1100463 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100464 spin_unlock(&inode_hash_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400465}
466EXPORT_SYMBOL(remove_inode_hash);
467
Al Virob0683aa2010-06-04 20:55:25 -0400468void end_writeback(struct inode *inode)
469{
470 might_sleep();
471 BUG_ON(inode->i_data.nrpages);
472 BUG_ON(!list_empty(&inode->i_data.private_list));
473 BUG_ON(!(inode->i_state & I_FREEING));
474 BUG_ON(inode->i_state & I_CLEAR);
475 inode_sync_wait(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100476 /* don't need i_lock here, no concurrent mods to i_state */
Al Virob0683aa2010-06-04 20:55:25 -0400477 inode->i_state = I_FREEING | I_CLEAR;
478}
479EXPORT_SYMBOL(end_writeback);
480
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100481/*
482 * Free the inode passed in, removing it from the lists it is still connected
483 * to. We remove any pages still attached to the inode and wait for any IO that
484 * is still in progress before finally destroying the inode.
485 *
486 * An inode must already be marked I_FREEING so that we avoid the inode being
487 * moved back onto lists if we race with other code that manipulates the lists
488 * (e.g. writeback_single_inode). The caller is responsible for setting this.
489 *
490 * An inode must already be removed from the LRU list before being evicted from
491 * the cache. This should occur atomically with setting the I_FREEING state
492 * flag, so no inodes here should ever be on the LRU when being evicted.
493 */
Al Viro644da592010-06-07 13:21:05 -0400494static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400495{
496 const struct super_operations *op = inode->i_sb->s_op;
497
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100498 BUG_ON(!(inode->i_state & I_FREEING));
499 BUG_ON(!list_empty(&inode->i_lru));
500
Dave Chinnera66979a2011-03-22 22:23:41 +1100501 inode_wb_list_del(inode);
Dave Chinner55fa6092011-03-22 22:23:40 +1100502 inode_sb_list_del(inode);
503
Al Virobe7ce412010-06-04 19:40:39 -0400504 if (op->evict_inode) {
505 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400506 } else {
507 if (inode->i_data.nrpages)
508 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400509 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400510 }
Al Viro661074e2010-06-04 20:19:55 -0400511 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
512 bd_forget(inode);
513 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
514 cd_forget(inode);
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100515
516 remove_inode_hash(inode);
517
518 spin_lock(&inode->i_lock);
519 wake_up_bit(&inode->i_state, __I_NEW);
520 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
521 spin_unlock(&inode->i_lock);
522
523 destroy_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400524}
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/*
527 * dispose_list - dispose of the contents of a local list
528 * @head: the head of the list to free
529 *
530 * Dispose-list gets a local list with local inodes in it, so it doesn't
531 * need to worry about list corruption and SMP locks.
532 */
533static void dispose_list(struct list_head *head)
534{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 while (!list_empty(head)) {
536 struct inode *inode;
537
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100538 inode = list_first_entry(head, struct inode, i_lru);
539 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Al Viro644da592010-06-07 13:21:05 -0400541 evict(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545/**
Al Viro63997e92010-10-25 20:49:35 -0400546 * evict_inodes - evict all evictable inodes for a superblock
547 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 *
Al Viro63997e92010-10-25 20:49:35 -0400549 * Make sure that no inodes with zero refcount are retained. This is
550 * called by superblock shutdown after having MS_ACTIVE flag removed,
551 * so any inode reaching zero refcount during or after that call will
552 * be immediately evicted.
553 */
554void evict_inodes(struct super_block *sb)
555{
556 struct inode *inode, *next;
557 LIST_HEAD(dispose);
558
Dave Chinner55fa6092011-03-22 22:23:40 +1100559 spin_lock(&inode_sb_list_lock);
Al Viro63997e92010-10-25 20:49:35 -0400560 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
561 if (atomic_read(&inode->i_count))
562 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100563
564 spin_lock(&inode->i_lock);
565 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
566 spin_unlock(&inode->i_lock);
Al Viro63997e92010-10-25 20:49:35 -0400567 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100568 }
Al Viro63997e92010-10-25 20:49:35 -0400569
570 inode->i_state |= I_FREEING;
Dave Chinner02afc412011-03-22 22:23:38 +1100571 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100572 spin_unlock(&inode->i_lock);
Dave Chinner02afc412011-03-22 22:23:38 +1100573 list_add(&inode->i_lru, &dispose);
Al Viro63997e92010-10-25 20:49:35 -0400574 }
Dave Chinner55fa6092011-03-22 22:23:40 +1100575 spin_unlock(&inode_sb_list_lock);
Al Viro63997e92010-10-25 20:49:35 -0400576
577 dispose_list(&dispose);
Christoph Hellwigbab1d942011-03-15 21:51:24 +0100578
579 /*
580 * Cycle through iprune_sem to make sure any inode that prune_icache
581 * moved off the list before we took the lock has been fully torn
582 * down.
583 */
584 down_write(&iprune_sem);
Al Viro63997e92010-10-25 20:49:35 -0400585 up_write(&iprune_sem);
586}
587
588/**
Christoph Hellwiga0318782010-10-24 19:40:33 +0200589 * invalidate_inodes - attempt to free all inodes on a superblock
590 * @sb: superblock to operate on
NeilBrown93b270f2011-02-24 17:25:47 +1100591 * @kill_dirty: flag to guide handling of dirty inodes
Christoph Hellwiga0318782010-10-24 19:40:33 +0200592 *
593 * Attempts to free all inodes for a given superblock. If there were any
594 * busy inodes return a non-zero value, else zero.
NeilBrown93b270f2011-02-24 17:25:47 +1100595 * If @kill_dirty is set, discard dirty inodes too, otherwise treat
596 * them as busy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 */
NeilBrown93b270f2011-02-24 17:25:47 +1100598int invalidate_inodes(struct super_block *sb, bool kill_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400600 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200601 struct inode *inode, *next;
602 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Dave Chinner55fa6092011-03-22 22:23:40 +1100604 spin_lock(&inode_sb_list_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200605 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100606 spin_lock(&inode->i_lock);
607 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
608 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100610 }
NeilBrown93b270f2011-02-24 17:25:47 +1100611 if (inode->i_state & I_DIRTY && !kill_dirty) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100612 spin_unlock(&inode->i_lock);
NeilBrown93b270f2011-02-24 17:25:47 +1100613 busy = 1;
614 continue;
615 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200616 if (atomic_read(&inode->i_count)) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100617 spin_unlock(&inode->i_lock);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200618 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 continue;
620 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200621
Christoph Hellwig99a38912010-10-23 19:07:20 +0200622 inode->i_state |= I_FREEING;
Dave Chinner02afc412011-03-22 22:23:38 +1100623 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100624 spin_unlock(&inode->i_lock);
Dave Chinner02afc412011-03-22 22:23:38 +1100625 list_add(&inode->i_lru, &dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Dave Chinner55fa6092011-03-22 22:23:40 +1100627 spin_unlock(&inode_sb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Christoph Hellwiga0318782010-10-24 19:40:33 +0200629 dispose_list(&dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 return busy;
632}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634static int can_unuse(struct inode *inode)
635{
Nick Piggin9e38d862010-10-23 06:55:17 -0400636 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638 if (inode_has_buffers(inode))
639 return 0;
640 if (atomic_read(&inode->i_count))
641 return 0;
642 if (inode->i_data.nrpages)
643 return 0;
644 return 1;
645}
646
647/*
Nick Piggin9e38d862010-10-23 06:55:17 -0400648 * Scan `goal' inodes on the unused list for freeable ones. They are moved to a
Dave Chinner02afc412011-03-22 22:23:38 +1100649 * temporary list and then are freed outside inode_lru_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 *
651 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400652 * pagecache removed. If the inode has metadata buffers attached to
653 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400655 * If the inode has the I_REFERENCED flag set, then it means that it has been
656 * used recently - the flag is set in iput_final(). When we encounter such an
657 * inode, clear the flag and move it to the back of the LRU so it gets another
658 * pass through the LRU before it gets reclaimed. This is necessary because of
659 * the fact we are doing lazy LRU updates to minimise lock contention so the
660 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
661 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
663static void prune_icache(int nr_to_scan)
664{
665 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int nr_scanned;
667 unsigned long reap = 0;
668
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700669 down_read(&iprune_sem);
Dave Chinner02afc412011-03-22 22:23:38 +1100670 spin_lock(&inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
672 struct inode *inode;
673
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100674 if (list_empty(&inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 break;
676
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100677 inode = list_entry(inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Nick Piggin9e38d862010-10-23 06:55:17 -0400679 /*
Dave Chinner02afc412011-03-22 22:23:38 +1100680 * we are inverting the inode_lru_lock/inode->i_lock here,
681 * so use a trylock. If we fail to get the lock, just move the
682 * inode to the back of the list so we don't spin on it.
683 */
684 if (!spin_trylock(&inode->i_lock)) {
685 list_move(&inode->i_lru, &inode_lru);
686 continue;
687 }
688
689 /*
Nick Piggin9e38d862010-10-23 06:55:17 -0400690 * Referenced or dirty inodes are still in use. Give them
691 * another pass through the LRU as we canot reclaim them now.
692 */
693 if (atomic_read(&inode->i_count) ||
694 (inode->i_state & ~I_REFERENCED)) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100695 list_del_init(&inode->i_lru);
Dave Chinnerf283c862011-03-22 22:23:39 +1100696 spin_unlock(&inode->i_lock);
Nick Piggin86c87492011-01-07 17:49:18 +1100697 inodes_stat.nr_unused--;
Nick Piggin9e38d862010-10-23 06:55:17 -0400698 continue;
699 }
700
701 /* recently referenced inodes get one more pass */
702 if (inode->i_state & I_REFERENCED) {
Nick Piggin9e38d862010-10-23 06:55:17 -0400703 inode->i_state &= ~I_REFERENCED;
Dave Chinner250df6e2011-03-22 22:23:36 +1100704 list_move(&inode->i_lru, &inode_lru);
Dave Chinnerf283c862011-03-22 22:23:39 +1100705 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 continue;
707 }
708 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
709 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100710 spin_unlock(&inode->i_lock);
Dave Chinner02afc412011-03-22 22:23:38 +1100711 spin_unlock(&inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800713 reap += invalidate_mapping_pages(&inode->i_data,
714 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 iput(inode);
Dave Chinner02afc412011-03-22 22:23:38 +1100716 spin_lock(&inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100718 if (inode != list_entry(inode_lru.next,
719 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 continue; /* wrong inode or list_empty */
Dave Chinner02afc412011-03-22 22:23:38 +1100721 /* avoid lock inversions with trylock */
722 if (!spin_trylock(&inode->i_lock))
723 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100724 if (!can_unuse(inode)) {
725 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700729 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 inode->i_state |= I_FREEING;
Dave Chinner250df6e2011-03-22 22:23:36 +1100731 spin_unlock(&inode->i_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100732
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100733 list_move(&inode->i_lru, &freeable);
Nick Piggin86c87492011-01-07 17:49:18 +1100734 inodes_stat.nr_unused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700736 if (current_is_kswapd())
737 __count_vm_events(KSWAPD_INODESTEAL, reap);
738 else
739 __count_vm_events(PGINODESTEAL, reap);
Dave Chinner02afc412011-03-22 22:23:38 +1100740 spin_unlock(&inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700743 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/*
747 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
748 * "unused" means that no dentries are referring to the inodes: the files are
749 * not open and the dcache references to those inodes have already been
750 * reclaimed.
751 *
752 * This function is passed the number of inodes to scan, and it returns the
753 * total number of remaining possibly-reclaimable inodes.
754 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000755static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 if (nr) {
758 /*
759 * Nasty deadlock avoidance. We may hold various FS locks,
760 * and we don't want to recurse into the FS that called us
761 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530762 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (!(gfp_mask & __GFP_FS))
764 return -1;
765 prune_icache(nr);
766 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400767 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Rusty Russell8e1f9362007-07-17 04:03:17 -0700770static struct shrinker icache_shrinker = {
771 .shrink = shrink_icache_memory,
772 .seeks = DEFAULT_SEEKS,
773};
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static void __wait_on_freeing_inode(struct inode *inode);
776/*
777 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530779static struct inode *find_inode(struct super_block *sb,
780 struct hlist_head *head,
781 int (*test)(struct inode *, void *),
782 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530785 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700788 hlist_for_each_entry(inode, node, head, i_hash) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100789 spin_lock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100790 if (inode->i_sb != sb) {
791 spin_unlock(&inode->i_lock);
792 continue;
793 }
794 if (!test(inode, data)) {
795 spin_unlock(&inode->i_lock);
796 continue;
797 }
Al Viroa4ffdde2010-06-02 17:38:30 -0400798 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 __wait_on_freeing_inode(inode);
800 goto repeat;
801 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400802 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100803 spin_unlock(&inode->i_lock);
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400804 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400806 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809/*
810 * find_inode_fast is the fast path version of find_inode, see the comment at
811 * iget_locked for details.
812 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530813static struct inode *find_inode_fast(struct super_block *sb,
814 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530817 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700820 hlist_for_each_entry(inode, node, head, i_hash) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100821 spin_lock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100822 if (inode->i_ino != ino) {
823 spin_unlock(&inode->i_lock);
824 continue;
825 }
826 if (inode->i_sb != sb) {
827 spin_unlock(&inode->i_lock);
828 continue;
829 }
Al Viroa4ffdde2010-06-02 17:38:30 -0400830 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 __wait_on_freeing_inode(inode);
832 goto repeat;
833 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400834 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100835 spin_unlock(&inode->i_lock);
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400836 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400838 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Eric Dumazetf991bd22010-10-23 11:18:01 -0400841/*
842 * Each cpu owns a range of LAST_INO_BATCH numbers.
843 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
844 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100845 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400846 * This does not significantly increase overflow rate because every CPU can
847 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
848 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
849 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
850 * overflow rate by 2x, which does not seem too significant.
851 *
852 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
853 * error if st_ino won't fit in target struct field. Use 32bit counter
854 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100855 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400856#define LAST_INO_BATCH 1024
857static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100858
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400859unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400860{
861 unsigned int *p = &get_cpu_var(last_ino);
862 unsigned int res = *p;
863
864#ifdef CONFIG_SMP
865 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
866 static atomic_t shared_last_ino;
867 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
868
869 res = next - LAST_INO_BATCH;
870 }
871#endif
872
873 *p = ++res;
874 put_cpu_var(last_ino);
875 return res;
David Chinner8290c352008-10-30 17:35:24 +1100876}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400877EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879/**
880 * new_inode - obtain an inode
881 * @sb: superblock
882 *
Mel Gorman769848c2007-07-17 04:03:05 -0700883 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800884 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700885 * If HIGHMEM pages are unsuitable or it is known that pages allocated
886 * for the page cache are not reclaimable or migratable,
887 * mapping_set_gfp_mask() must be called with suitable flags on the
888 * newly created inode's mapping
889 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 */
891struct inode *new_inode(struct super_block *sb)
892{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530893 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Dave Chinner55fa6092011-03-22 22:23:40 +1100895 spin_lock_prefetch(&inode_sb_list_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 inode = alloc_inode(sb);
898 if (inode) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100899 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 inode->i_state = 0;
Dave Chinner250df6e2011-03-22 22:23:36 +1100901 spin_unlock(&inode->i_lock);
Dave Chinner55fa6092011-03-22 22:23:40 +1100902 inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904 return inode;
905}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906EXPORT_SYMBOL(new_inode);
907
Dave Chinner250df6e2011-03-22 22:23:36 +1100908/**
909 * unlock_new_inode - clear the I_NEW state and wake up any waiters
910 * @inode: new inode to unlock
911 *
912 * Called when the inode is fully initialised to clear the new state of the
913 * inode and wake up anyone waiting for the inode to finish initialisation.
914 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915void unlock_new_inode(struct inode *inode)
916{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200917#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900918 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200919 struct file_system_type *type = inode->i_sb->s_type;
920
Jan Kara9a7aa122009-06-04 15:26:49 +0200921 /* Set new key only if filesystem hasn't already changed it */
922 if (!lockdep_match_class(&inode->i_mutex,
923 &type->i_mutex_key)) {
924 /*
925 * ensure nobody is actually holding i_mutex
926 */
927 mutex_destroy(&inode->i_mutex);
928 mutex_init(&inode->i_mutex);
929 lockdep_set_class(&inode->i_mutex,
930 &type->i_mutex_dir_key);
931 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200932 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200933#endif
Dave Chinner250df6e2011-03-22 22:23:36 +1100934 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100935 WARN_ON(!(inode->i_state & I_NEW));
936 inode->i_state &= ~I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +1100937 wake_up_bit(&inode->i_state, __I_NEW);
938 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940EXPORT_SYMBOL(unlock_new_inode);
941
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400942/**
943 * iget5_locked - obtain an inode from a mounted file system
944 * @sb: super block of file system
945 * @hashval: hash value (usually inode number) to get
946 * @test: callback used for comparisons between inodes
947 * @set: callback used to initialize a new struct inode
948 * @data: opaque data pointer to pass to @test and @set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400950 * Search for the inode specified by @hashval and @data in the inode cache,
951 * and if present it is return it with an increased reference count. This is
952 * a generalized version of iget_locked() for file systems where the inode
953 * number is not sufficient for unique identification of an inode.
954 *
955 * If the inode is not in cache, allocate a new inode and return it locked,
956 * hashed, and with the I_NEW flag set. The file system gets to fill it in
957 * before unlocking it via unlock_new_inode().
958 *
959 * Note both @test and @set are called with the inode_hash_lock held, so can't
960 * sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 */
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400962struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
963 int (*test)(struct inode *, void *),
964 int (*set)(struct inode *, void *), void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400966 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530967 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400969 spin_lock(&inode_hash_lock);
970 inode = find_inode(sb, head, test, data);
971 spin_unlock(&inode_hash_lock);
972
973 if (inode) {
974 wait_on_inode(inode);
975 return inode;
976 }
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 inode = alloc_inode(sb);
979 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530980 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Dave Chinner67a23c42011-03-22 22:23:42 +1100982 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 /* We released the lock, so.. */
984 old = find_inode(sb, head, test, data);
985 if (!old) {
986 if (set(inode, data))
987 goto set_failed;
988
Dave Chinner250df6e2011-03-22 22:23:36 +1100989 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100990 inode->i_state = I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +1100991 hlist_add_head(&inode->i_hash, head);
992 spin_unlock(&inode->i_lock);
Dave Chinner55fa6092011-03-22 22:23:40 +1100993 inode_sb_list_add(inode);
Dave Chinner67a23c42011-03-22 22:23:42 +1100994 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 /* Return the locked inode with I_NEW set, the
997 * caller is responsible for filling in the contents
998 */
999 return inode;
1000 }
1001
1002 /*
1003 * Uhhuh, somebody else created the same inode under
1004 * us. Use the old inode instead of the one we just
1005 * allocated.
1006 */
Dave Chinner67a23c42011-03-22 22:23:42 +11001007 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 destroy_inode(inode);
1009 inode = old;
1010 wait_on_inode(inode);
1011 }
1012 return inode;
1013
1014set_failed:
Dave Chinner67a23c42011-03-22 22:23:42 +11001015 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 destroy_inode(inode);
1017 return NULL;
1018}
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001019EXPORT_SYMBOL(iget5_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001021/**
1022 * iget_locked - obtain an inode from a mounted file system
1023 * @sb: super block of file system
1024 * @ino: inode number to get
1025 *
1026 * Search for the inode specified by @ino in the inode cache and if present
1027 * return it with an increased reference count. This is for file systems
1028 * where the inode number is sufficient for unique identification of an inode.
1029 *
1030 * If the inode is not in cache, allocate a new inode and return it locked,
1031 * hashed, and with the I_NEW flag set. The file system gets to fill it in
1032 * before unlocking it via unlock_new_inode().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 */
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001034struct inode *iget_locked(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001036 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301037 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001039 spin_lock(&inode_hash_lock);
1040 inode = find_inode_fast(sb, head, ino);
1041 spin_unlock(&inode_hash_lock);
1042 if (inode) {
1043 wait_on_inode(inode);
1044 return inode;
1045 }
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 inode = alloc_inode(sb);
1048 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301049 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Dave Chinner67a23c42011-03-22 22:23:42 +11001051 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 /* We released the lock, so.. */
1053 old = find_inode_fast(sb, head, ino);
1054 if (!old) {
1055 inode->i_ino = ino;
Dave Chinner250df6e2011-03-22 22:23:36 +11001056 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001057 inode->i_state = I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +11001058 hlist_add_head(&inode->i_hash, head);
1059 spin_unlock(&inode->i_lock);
Dave Chinner55fa6092011-03-22 22:23:40 +11001060 inode_sb_list_add(inode);
Dave Chinner67a23c42011-03-22 22:23:42 +11001061 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 /* Return the locked inode with I_NEW set, the
1064 * caller is responsible for filling in the contents
1065 */
1066 return inode;
1067 }
1068
1069 /*
1070 * Uhhuh, somebody else created the same inode under
1071 * us. Use the old inode instead of the one we just
1072 * allocated.
1073 */
Dave Chinner67a23c42011-03-22 22:23:42 +11001074 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 destroy_inode(inode);
1076 inode = old;
1077 wait_on_inode(inode);
1078 }
1079 return inode;
1080}
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001081EXPORT_SYMBOL(iget_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001083/*
1084 * search the inode cache for a matching inode number.
1085 * If we find one, then the inode number we are trying to
1086 * allocate is not unique and so we should not use it.
1087 *
1088 * Returns 1 if the inode number is unique, 0 if it is not.
1089 */
1090static int test_inode_iunique(struct super_block *sb, unsigned long ino)
1091{
1092 struct hlist_head *b = inode_hashtable + hash(sb, ino);
1093 struct hlist_node *node;
1094 struct inode *inode;
1095
Dave Chinner67a23c42011-03-22 22:23:42 +11001096 spin_lock(&inode_hash_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001097 hlist_for_each_entry(inode, node, b, i_hash) {
Dave Chinner67a23c42011-03-22 22:23:42 +11001098 if (inode->i_ino == ino && inode->i_sb == sb) {
1099 spin_unlock(&inode_hash_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001100 return 0;
Dave Chinner67a23c42011-03-22 22:23:42 +11001101 }
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001102 }
Dave Chinner67a23c42011-03-22 22:23:42 +11001103 spin_unlock(&inode_hash_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001104
1105 return 1;
1106}
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108/**
1109 * iunique - get a unique inode number
1110 * @sb: superblock
1111 * @max_reserved: highest reserved inode number
1112 *
1113 * Obtain an inode number that is unique on the system for a given
1114 * superblock. This is used by file systems that have no natural
1115 * permanent inode numbering system. An inode number is returned that
1116 * is higher than the reserved limit but unique.
1117 *
1118 * BUGS:
1119 * With a large number of inodes live on the file system this function
1120 * currently becomes quite slow.
1121 */
1122ino_t iunique(struct super_block *sb, ino_t max_reserved)
1123{
Jeff Layton866b04f2007-05-08 00:32:29 -07001124 /*
1125 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
1126 * error if st_ino won't fit in target struct field. Use 32bit counter
1127 * here to attempt to avoid that.
1128 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001129 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -07001130 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001133 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001134 do {
1135 if (counter <= max_reserved)
1136 counter = max_reserved + 1;
1137 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001138 } while (!test_inode_iunique(sb, res));
1139 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001140
1141 return res;
1142}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143EXPORT_SYMBOL(iunique);
1144
1145struct inode *igrab(struct inode *inode)
1146{
Dave Chinner250df6e2011-03-22 22:23:36 +11001147 spin_lock(&inode->i_lock);
1148 if (!(inode->i_state & (I_FREEING|I_WILL_FREE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +11001150 spin_unlock(&inode->i_lock);
1151 } else {
1152 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /*
1154 * Handle the case where s_op->clear_inode is not been
1155 * called yet, and somebody is calling igrab
1156 * while the inode is getting freed.
1157 */
1158 inode = NULL;
Dave Chinner250df6e2011-03-22 22:23:36 +11001159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return inode;
1161}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162EXPORT_SYMBOL(igrab);
1163
1164/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001165 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 * @sb: super block of file system to search
1167 * @hashval: hash value (usually inode number) to search for
1168 * @test: callback used for comparisons between inodes
1169 * @data: opaque data pointer to pass to @test
1170 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001171 * Search for the inode specified by @hashval and @data in the inode cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 * If the inode is in the cache, the inode is returned with an incremented
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001173 * reference count.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001174 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001175 * Note: I_NEW is not waited upon so you have to be very careful what you do
1176 * with the returned inode. You probably should be using ilookup5() instead.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001177 *
Randy Dunlapb6d0ad62011-03-26 13:27:47 -07001178 * Note2: @test is called with the inode_hash_lock held, so can't sleep.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001179 */
1180struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1181 int (*test)(struct inode *, void *), void *data)
1182{
1183 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001184 struct inode *inode;
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001185
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001186 spin_lock(&inode_hash_lock);
1187 inode = find_inode(sb, head, test, data);
1188 spin_unlock(&inode_hash_lock);
1189
1190 return inode;
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001191}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001192EXPORT_SYMBOL(ilookup5_nowait);
1193
1194/**
1195 * ilookup5 - search for an inode in the inode cache
1196 * @sb: super block of file system to search
1197 * @hashval: hash value (usually inode number) to search for
1198 * @test: callback used for comparisons between inodes
1199 * @data: opaque data pointer to pass to @test
1200 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001201 * Search for the inode specified by @hashval and @data in the inode cache,
1202 * and if the inode is in the cache, return the inode with an incremented
1203 * reference count. Waits on I_NEW before returning the inode.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001204 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001206 * This is a generalized version of ilookup() for file systems where the
1207 * inode number is not sufficient for unique identification of an inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001209 * Note: @test is called with the inode_hash_lock held, so can't sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 */
1211struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1212 int (*test)(struct inode *, void *), void *data)
1213{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001214 struct inode *inode = ilookup5_nowait(sb, hashval, test, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001216 if (inode)
1217 wait_on_inode(inode);
1218 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220EXPORT_SYMBOL(ilookup5);
1221
1222/**
1223 * ilookup - search for an inode in the inode cache
1224 * @sb: super block of file system to search
1225 * @ino: inode number to search for
1226 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001227 * Search for the inode @ino in the inode cache, and if the inode is in the
1228 * cache, the inode is returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 */
1230struct inode *ilookup(struct super_block *sb, unsigned long ino)
1231{
1232 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001233 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001235 spin_lock(&inode_hash_lock);
1236 inode = find_inode_fast(sb, head, ino);
1237 spin_unlock(&inode_hash_lock);
1238
1239 if (inode)
1240 wait_on_inode(inode);
1241 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243EXPORT_SYMBOL(ilookup);
1244
Al Viro261bca82008-12-30 01:48:21 -05001245int insert_inode_locked(struct inode *inode)
1246{
1247 struct super_block *sb = inode->i_sb;
1248 ino_t ino = inode->i_ino;
1249 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001250
Al Viro261bca82008-12-30 01:48:21 -05001251 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001252 struct hlist_node *node;
1253 struct inode *old = NULL;
Dave Chinner67a23c42011-03-22 22:23:42 +11001254 spin_lock(&inode_hash_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001255 hlist_for_each_entry(old, node, head, i_hash) {
1256 if (old->i_ino != ino)
1257 continue;
1258 if (old->i_sb != sb)
1259 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001260 spin_lock(&old->i_lock);
1261 if (old->i_state & (I_FREEING|I_WILL_FREE)) {
1262 spin_unlock(&old->i_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001263 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001264 }
Al Viro72a43d62009-05-13 19:13:40 +01001265 break;
1266 }
1267 if (likely(!node)) {
Dave Chinner250df6e2011-03-22 22:23:36 +11001268 spin_lock(&inode->i_lock);
1269 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001270 hlist_add_head(&inode->i_hash, head);
Dave Chinner250df6e2011-03-22 22:23:36 +11001271 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001272 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001273 return 0;
1274 }
1275 __iget(old);
Dave Chinner250df6e2011-03-22 22:23:36 +11001276 spin_unlock(&old->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001277 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001278 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001279 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001280 iput(old);
1281 return -EBUSY;
1282 }
1283 iput(old);
1284 }
1285}
Al Viro261bca82008-12-30 01:48:21 -05001286EXPORT_SYMBOL(insert_inode_locked);
1287
1288int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1289 int (*test)(struct inode *, void *), void *data)
1290{
1291 struct super_block *sb = inode->i_sb;
1292 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001293
Al Viro261bca82008-12-30 01:48:21 -05001294 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001295 struct hlist_node *node;
1296 struct inode *old = NULL;
1297
Dave Chinner67a23c42011-03-22 22:23:42 +11001298 spin_lock(&inode_hash_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001299 hlist_for_each_entry(old, node, head, i_hash) {
1300 if (old->i_sb != sb)
1301 continue;
1302 if (!test(old, data))
1303 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001304 spin_lock(&old->i_lock);
1305 if (old->i_state & (I_FREEING|I_WILL_FREE)) {
1306 spin_unlock(&old->i_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001307 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001308 }
Al Viro72a43d62009-05-13 19:13:40 +01001309 break;
1310 }
1311 if (likely(!node)) {
Dave Chinner250df6e2011-03-22 22:23:36 +11001312 spin_lock(&inode->i_lock);
1313 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001314 hlist_add_head(&inode->i_hash, head);
Dave Chinner250df6e2011-03-22 22:23:36 +11001315 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001316 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001317 return 0;
1318 }
1319 __iget(old);
Dave Chinner250df6e2011-03-22 22:23:36 +11001320 spin_unlock(&old->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001321 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001322 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001323 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001324 iput(old);
1325 return -EBUSY;
1326 }
1327 iput(old);
1328 }
1329}
Al Viro261bca82008-12-30 01:48:21 -05001330EXPORT_SYMBOL(insert_inode_locked4);
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Al Viro45321ac2010-06-07 13:43:19 -04001333int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Al Viro45321ac2010-06-07 13:43:19 -04001335 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337EXPORT_SYMBOL(generic_delete_inode);
1338
Al Viro45321ac2010-06-07 13:43:19 -04001339/*
1340 * Normal UNIX filesystem behaviour: delete the
1341 * inode when the usage count drops to zero, and
1342 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001343 */
Al Viro45321ac2010-06-07 13:43:19 -04001344int generic_drop_inode(struct inode *inode)
1345{
Al Viro1d3382cb2010-10-23 15:19:20 -04001346 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001347}
1348EXPORT_SYMBOL_GPL(generic_drop_inode);
1349
1350/*
1351 * Called when we're dropping the last reference
1352 * to an inode.
1353 *
1354 * Call the FS "drop_inode()" function, defaulting to
1355 * the legacy UNIX filesystem behaviour. If it tells
1356 * us to evict inode, do so. Otherwise, retain inode
1357 * in cache if fs is alive, sync and evict if fs is
1358 * shutting down.
1359 */
1360static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
1362 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001363 const struct super_operations *op = inode->i_sb->s_op;
1364 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Dave Chinner250df6e2011-03-22 22:23:36 +11001366 WARN_ON(inode->i_state & I_NEW);
1367
Al Viro45321ac2010-06-07 13:43:19 -04001368 if (op && op->drop_inode)
1369 drop = op->drop_inode(inode);
1370 else
1371 drop = generic_drop_inode(inode);
1372
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001373 if (!drop && (sb->s_flags & MS_ACTIVE)) {
1374 inode->i_state |= I_REFERENCED;
1375 if (!(inode->i_state & (I_DIRTY|I_SYNC)))
1376 inode_lru_list_add(inode);
1377 spin_unlock(&inode->i_lock);
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001378 return;
1379 }
1380
Al Viro45321ac2010-06-07 13:43:19 -04001381 if (!drop) {
Alexander Viro991114c2005-06-23 00:09:01 -07001382 inode->i_state |= I_WILL_FREE;
Dave Chinner250df6e2011-03-22 22:23:36 +11001383 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 write_inode_now(inode, 1);
Dave Chinner250df6e2011-03-22 22:23:36 +11001385 spin_lock(&inode->i_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001386 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001387 inode->i_state &= ~I_WILL_FREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001389
Alexander Viro991114c2005-06-23 00:09:01 -07001390 inode->i_state |= I_FREEING;
Nick Piggin9e38d862010-10-23 06:55:17 -04001391 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +11001392 spin_unlock(&inode->i_lock);
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001393
1394 evict(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301398 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 * @inode: inode to put
1400 *
1401 * Puts an inode, dropping its usage count. If the inode use count hits
1402 * zero, the inode is then freed and may also be destroyed.
1403 *
1404 * Consequently, iput() can sleep.
1405 */
1406void iput(struct inode *inode)
1407{
1408 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001409 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Dave Chinnerf283c862011-03-22 22:23:39 +11001411 if (atomic_dec_and_lock(&inode->i_count, &inode->i_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 iput_final(inode);
1413 }
1414}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415EXPORT_SYMBOL(iput);
1416
1417/**
1418 * bmap - find a block number in a file
1419 * @inode: inode of file
1420 * @block: block to find
1421 *
1422 * Returns the block number on the device holding the inode that
1423 * is the disk block number for the block of the file requested.
1424 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301425 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 * file.
1427 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301428sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
1430 sector_t res = 0;
1431 if (inode->i_mapping->a_ops->bmap)
1432 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1433 return res;
1434}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435EXPORT_SYMBOL(bmap);
1436
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001437/*
1438 * With relative atime, only update atime if the previous atime is
1439 * earlier than either the ctime or mtime or if at least a day has
1440 * passed since the last atime update.
1441 */
1442static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1443 struct timespec now)
1444{
1445
1446 if (!(mnt->mnt_flags & MNT_RELATIME))
1447 return 1;
1448 /*
1449 * Is mtime younger than atime? If yes, update atime:
1450 */
1451 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1452 return 1;
1453 /*
1454 * Is ctime younger than atime? If yes, update atime:
1455 */
1456 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1457 return 1;
1458
1459 /*
1460 * Is the previous atime value older than a day? If yes,
1461 * update atime:
1462 */
1463 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1464 return 1;
1465 /*
1466 * Good, we can skip the atime update:
1467 */
1468 return 0;
1469}
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001472 * touch_atime - update the access time
1473 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001474 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 *
1476 * Update the accessed time on an inode and mark it for writeback.
1477 * This function automatically handles read only file systems and media,
1478 * as well as the "noatime" flag and inode specific "noatime" markers.
1479 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001480void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001482 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 struct timespec now;
1484
Andrew Mortonb2276132006-12-13 00:34:33 -08001485 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001486 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001487 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001488 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001489 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001490 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001491
Dave Hansencdb70f32008-02-15 14:37:41 -08001492 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001493 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001494 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001495 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001498
1499 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001500 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001501
Valerie Henson47ae32d2006-12-13 00:34:34 -08001502 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001503 return;
1504
1505 if (mnt_want_write(mnt))
1506 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001507
1508 inode->i_atime = now;
1509 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001510 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001512EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001515 * file_update_time - update mtime and ctime time
1516 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001518 * Update the mtime and ctime members of an inode and mark the inode
1519 * for writeback. Note that this function is meant exclusively for
1520 * usage in the file write path of filesystems, and filesystems may
1521 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001522 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001523 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 */
1525
Christoph Hellwig870f4812006-01-09 20:52:01 -08001526void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001528 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001530 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Andi Kleence06e0b2009-09-18 13:05:48 -07001532 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (IS_NOCMTIME(inode))
1534 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001535
Andi Kleence06e0b2009-09-18 13:05:48 -07001536 now = current_fs_time(inode->i_sb);
1537 if (!timespec_equal(&inode->i_mtime, &now))
1538 sync_it = S_MTIME;
1539
1540 if (!timespec_equal(&inode->i_ctime, &now))
1541 sync_it |= S_CTIME;
1542
1543 if (IS_I_VERSION(inode))
1544 sync_it |= S_VERSION;
1545
1546 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return;
1548
Andi Kleence06e0b2009-09-18 13:05:48 -07001549 /* Finally allowed to write? Takes lock. */
1550 if (mnt_want_write_file(file))
1551 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Andi Kleence06e0b2009-09-18 13:05:48 -07001553 /* Only change inode inside the lock region */
1554 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001555 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001556 if (sync_it & S_CTIME)
1557 inode->i_ctime = now;
1558 if (sync_it & S_MTIME)
1559 inode->i_mtime = now;
1560 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001561 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001563EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565int inode_needs_sync(struct inode *inode)
1566{
1567 if (IS_SYNC(inode))
1568 return 1;
1569 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1570 return 1;
1571 return 0;
1572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573EXPORT_SYMBOL(inode_needs_sync);
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575int inode_wait(void *word)
1576{
1577 schedule();
1578 return 0;
1579}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001580EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001583 * If we try to find an inode in the inode hash while it is being
1584 * deleted, we have to wait until the filesystem completes its
1585 * deletion before reporting that it isn't found. This function waits
1586 * until the deletion _might_ have completed. Callers are responsible
1587 * to recheck inode state.
1588 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001589 * It doesn't matter if I_NEW is not set initially, a call to
Dave Chinner250df6e2011-03-22 22:23:36 +11001590 * wake_up_bit(&inode->i_state, __I_NEW) after removing from the hash list
1591 * will DTRT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 */
1593static void __wait_on_freeing_inode(struct inode *inode)
1594{
1595 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001596 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1597 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
Dave Chinner250df6e2011-03-22 22:23:36 +11001599 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001600 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 schedule();
1602 finish_wait(wq, &wait.wait);
Dave Chinner67a23c42011-03-22 22:23:42 +11001603 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606static __initdata unsigned long ihash_entries;
1607static int __init set_ihash_entries(char *str)
1608{
1609 if (!str)
1610 return 0;
1611 ihash_entries = simple_strtoul(str, &str, 0);
1612 return 1;
1613}
1614__setup("ihash_entries=", set_ihash_entries);
1615
1616/*
1617 * Initialize the waitqueues and inode hash table.
1618 */
1619void __init inode_init_early(void)
1620{
1621 int loop;
1622
1623 /* If hashes are distributed across NUMA nodes, defer
1624 * hash allocation until vmalloc space is available.
1625 */
1626 if (hashdist)
1627 return;
1628
1629 inode_hashtable =
1630 alloc_large_system_hash("Inode-cache",
1631 sizeof(struct hlist_head),
1632 ihash_entries,
1633 14,
1634 HASH_EARLY,
1635 &i_hash_shift,
1636 &i_hash_mask,
1637 0);
1638
1639 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1640 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1641}
1642
Denis Cheng74bf17c2007-10-16 23:26:30 -07001643void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
1645 int loop;
1646
1647 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001648 inode_cachep = kmem_cache_create("inode_cache",
1649 sizeof(struct inode),
1650 0,
1651 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1652 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001653 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001654 register_shrinker(&icache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 /* Hash may have been set up in inode_init_early */
1657 if (!hashdist)
1658 return;
1659
1660 inode_hashtable =
1661 alloc_large_system_hash("Inode-cache",
1662 sizeof(struct hlist_head),
1663 ihash_entries,
1664 14,
1665 0,
1666 &i_hash_shift,
1667 &i_hash_mask,
1668 0);
1669
1670 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1671 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1672}
1673
1674void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1675{
1676 inode->i_mode = mode;
1677 if (S_ISCHR(mode)) {
1678 inode->i_fop = &def_chr_fops;
1679 inode->i_rdev = rdev;
1680 } else if (S_ISBLK(mode)) {
1681 inode->i_fop = &def_blk_fops;
1682 inode->i_rdev = rdev;
1683 } else if (S_ISFIFO(mode))
1684 inode->i_fop = &def_fifo_fops;
1685 else if (S_ISSOCK(mode))
1686 inode->i_fop = &bad_sock_fops;
1687 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001688 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1689 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1690 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001693
1694/**
Ben Hutchingseaae668d2011-02-15 12:48:09 +00001695 * inode_init_owner - Init uid,gid,mode for new inode according to posix standards
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001696 * @inode: New inode
1697 * @dir: Directory inode
1698 * @mode: mode of the new inode
1699 */
1700void inode_init_owner(struct inode *inode, const struct inode *dir,
1701 mode_t mode)
1702{
1703 inode->i_uid = current_fsuid();
1704 if (dir && dir->i_mode & S_ISGID) {
1705 inode->i_gid = dir->i_gid;
1706 if (S_ISDIR(mode))
1707 mode |= S_ISGID;
1708 } else
1709 inode->i_gid = current_fsgid();
1710 inode->i_mode = mode;
1711}
1712EXPORT_SYMBOL(inode_init_owner);
Serge E. Hallyne795b712011-03-23 16:43:25 -07001713
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001714/**
1715 * inode_owner_or_capable - check current task permissions to inode
1716 * @inode: inode being checked
1717 *
1718 * Return true if current either has CAP_FOWNER to the inode, or
1719 * owns the file.
Serge E. Hallyne795b712011-03-23 16:43:25 -07001720 */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001721bool inode_owner_or_capable(const struct inode *inode)
Serge E. Hallyne795b712011-03-23 16:43:25 -07001722{
1723 struct user_namespace *ns = inode_userns(inode);
1724
1725 if (current_user_ns() == ns && current_fsuid() == inode->i_uid)
1726 return true;
1727 if (ns_capable(ns, CAP_FOWNER))
1728 return true;
1729 return false;
1730}
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001731EXPORT_SYMBOL(inode_owner_or_capable);