blob: 4fa4f0916af9047ef57d8db43315244d92fef427 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) 1997 Linus Torvalds
Christoph Hellwig4b4563d2011-05-27 09:28:01 -04003 * (C) 1999 Andrea Arcangeli <andrea@suse.de> (dynamic inode allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/fs.h>
6#include <linux/mm.h>
7#include <linux/dcache.h>
8#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/slab.h>
10#include <linux/writeback.h>
11#include <linux/module.h>
12#include <linux/backing-dev.h>
13#include <linux/wait.h>
Nick Piggin88e0fbc2009-09-22 16:43:50 -070014#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/hash.h>
16#include <linux/swap.h>
17#include <linux/security.h>
18#include <linux/pagemap.h>
19#include <linux/cdev.h>
20#include <linux/bootmem.h>
Eric Paris3be25f42009-05-21 17:01:26 -040021#include <linux/fsnotify.h>
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080022#include <linux/mount.h>
Arjan van de Venefaee192009-01-06 07:20:54 -080023#include <linux/async.h>
Al Virof19d4a82009-06-08 19:50:45 -040024#include <linux/posix_acl.h>
Heiko Carstens9ce6e0b2011-05-22 18:54:21 +020025#include <linux/prefetch.h>
Eric Parisa178d202010-10-25 14:41:59 -040026#include <linux/ima.h>
Serge E. Hallyne795b712011-03-23 16:43:25 -070027#include <linux/cred.h>
Christoph Hellwig4b4563d2011-05-27 09:28:01 -040028#include <linux/buffer_head.h> /* for inode_has_buffers */
Miklos Szeredi7ada4db2011-11-21 12:11:32 +010029#include <linux/ratelimit.h>
Dave Chinnera66979a2011-03-22 22:23:41 +110030#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/*
Christoph Hellwig4b4563d2011-05-27 09:28:01 -040033 * Inode locking rules:
Dave Chinner250df6e2011-03-22 22:23:36 +110034 *
35 * inode->i_lock protects:
36 * inode->i_state, inode->i_hash, __iget()
Dave Chinner09cc9fc2011-07-08 14:14:40 +100037 * inode->i_sb->s_inode_lru_lock protects:
Dave Chinner98b745c2011-07-08 14:14:39 +100038 * inode->i_sb->s_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
Christoph Hellwigf758eea2011-04-21 18:19:44 -060041 * bdi->wb.list_lock protects:
Dave Chinnera66979a2011-03-22 22:23:41 +110042 * 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 Chinner09cc9fc2011-07-08 14:14:40 +100050 * inode->i_sb->s_inode_lru_lock
Dave Chinnera66979a2011-03-22 22:23:41 +110051 *
Christoph Hellwigf758eea2011-04-21 18:19:44 -060052 * bdi->wb.list_lock
Dave Chinnera66979a2011-03-22 22:23:41 +110053 * 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
Eric Dumazetfa3536c2006-03-26 01:37:24 -080063static unsigned int i_hash_mask __read_mostly;
64static unsigned int i_hash_shift __read_mostly;
Dave Chinner67a23c42011-03-22 22:23:42 +110065static struct hlist_head *inode_hashtable __read_mostly;
66static __cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Dave Chinner55fa6092011-03-22 22:23:40 +110068__cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_sb_list_lock);
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
Jens Axboe7dcda1c2011-04-05 23:51:48 +020071 * Empty aops. Can be used for the cases where the user does not
72 * define any of the address_space operations.
73 */
74const struct address_space_operations empty_aops = {
75};
76EXPORT_SYMBOL(empty_aops);
77
78/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * Statistics gathering..
80 */
81struct inodes_stat_t inodes_stat;
82
Nick Piggin3e880fb2011-01-07 17:49:19 +110083static DEFINE_PER_CPU(unsigned int, nr_inodes);
Dave Chinnerfcb94f72011-07-08 14:14:38 +100084static DEFINE_PER_CPU(unsigned int, nr_unused);
Dave Chinnercffbc8a2010-10-23 05:03:02 -040085
Manish Katiyar6b3304b2009-03-31 19:35:54 +053086static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Nick Piggin3e880fb2011-01-07 17:49:19 +110088static int get_nr_inodes(void)
Dave Chinnercffbc8a2010-10-23 05:03:02 -040089{
Nick Piggin3e880fb2011-01-07 17:49:19 +110090 int i;
91 int sum = 0;
92 for_each_possible_cpu(i)
93 sum += per_cpu(nr_inodes, i);
94 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -040095}
96
97static inline int get_nr_inodes_unused(void)
98{
Dave Chinnerfcb94f72011-07-08 14:14:38 +100099 int i;
100 int sum = 0;
101 for_each_possible_cpu(i)
102 sum += per_cpu(nr_unused, i);
103 return sum < 0 ? 0 : sum;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400104}
105
106int get_nr_dirty_inodes(void)
107{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100108 /* not actually dirty inodes, but a wild approximation */
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400109 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
110 return nr_dirty > 0 ? nr_dirty : 0;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400111}
112
113/*
114 * Handle nr_inode sysctl
115 */
116#ifdef CONFIG_SYSCTL
117int proc_nr_inodes(ctl_table *table, int write,
118 void __user *buffer, size_t *lenp, loff_t *ppos)
119{
120 inodes_stat.nr_inodes = get_nr_inodes();
Dave Chinnerfcb94f72011-07-08 14:14:38 +1000121 inodes_stat.nr_unused = get_nr_inodes_unused();
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400122 return proc_dointvec(table, write, buffer, lenp, ppos);
123}
124#endif
125
David Chinner2cb15992008-10-30 17:32:23 +1100126/**
127 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800128 * @sb: superblock inode belongs to
129 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100130 *
131 * These are initializations that need to be done on every inode
132 * allocation as the fields are not initialised by slab allocation.
133 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300134int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700136 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800137 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530138 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100139
140 inode->i_sb = sb;
141 inode->i_blkbits = sb->s_blocksize_bits;
142 inode->i_flags = 0;
143 atomic_set(&inode->i_count, 1);
144 inode->i_op = &empty_iops;
145 inode->i_fop = &empty_fops;
Miklos Szeredia78ef702011-10-28 14:13:30 +0200146 inode->__i_nlink = 1;
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700147 inode->i_opflags = 0;
Al Viro56ff5ef2008-12-09 09:34:39 -0500148 inode->i_uid = 0;
149 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100150 atomic_set(&inode->i_writecount, 0);
151 inode->i_size = 0;
152 inode->i_blocks = 0;
153 inode->i_bytes = 0;
154 inode->i_generation = 0;
155#ifdef CONFIG_QUOTA
156 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
157#endif
158 inode->i_pipe = NULL;
159 inode->i_bdev = NULL;
160 inode->i_cdev = NULL;
161 inode->i_rdev = 0;
162 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500163
164 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300165 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100166 spin_lock_init(&inode->i_lock);
167 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
168
169 mutex_init(&inode->i_mutex);
170 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
171
Christoph Hellwigbd5fe6c2011-06-24 14:29:43 -0400172 atomic_set(&inode->i_dio_count, 0);
David Chinner2cb15992008-10-30 17:32:23 +1100173
174 mapping->a_ops = &empty_aops;
175 mapping->host = inode;
176 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800177 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100178 mapping->assoc_mapping = NULL;
179 mapping->backing_dev_info = &default_backing_dev_info;
180 mapping->writeback_index = 0;
181
182 /*
183 * If the block_device provides a backing_dev_info for client
184 * inodes then use that. Otherwise the inode share the bdev's
185 * backing_dev_info.
186 */
187 if (sb->s_bdev) {
188 struct backing_dev_info *bdi;
189
Jens Axboe2c96ce92009-09-15 09:43:56 +0200190 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100191 mapping->backing_dev_info = bdi;
192 }
193 inode->i_private = NULL;
194 inode->i_mapping = mapping;
Al Viro6b520e02011-12-12 15:51:45 -0500195 INIT_LIST_HEAD(&inode->i_dentry); /* buggered by rcu freeing */
Al Virof19d4a82009-06-08 19:50:45 -0400196#ifdef CONFIG_FS_POSIX_ACL
197 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
198#endif
David Chinner2cb15992008-10-30 17:32:23 +1100199
Eric Paris3be25f42009-05-21 17:01:26 -0400200#ifdef CONFIG_FSNOTIFY
201 inode->i_fsnotify_mask = 0;
202#endif
203
Nick Piggin3e880fb2011-01-07 17:49:19 +1100204 this_cpu_inc(nr_inodes);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400205
Christoph Hellwig54e34622009-08-07 14:38:25 -0300206 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300207out:
208 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100209}
210EXPORT_SYMBOL(inode_init_always);
211
212static struct inode *alloc_inode(struct super_block *sb)
213{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct inode *inode;
215
216 if (sb->s_op->alloc_inode)
217 inode = sb->s_op->alloc_inode(sb);
218 else
David Chinner2cb15992008-10-30 17:32:23 +1100219 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Christoph Hellwig54e34622009-08-07 14:38:25 -0300221 if (!inode)
222 return NULL;
223
224 if (unlikely(inode_init_always(sb, inode))) {
225 if (inode->i_sb->s_op->destroy_inode)
226 inode->i_sb->s_op->destroy_inode(inode);
227 else
228 kmem_cache_free(inode_cachep, inode);
229 return NULL;
230 }
231
232 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Nick Pigginff0c7d12011-01-07 17:49:50 +1100235void free_inode_nonrcu(struct inode *inode)
236{
237 kmem_cache_free(inode_cachep, inode);
238}
239EXPORT_SYMBOL(free_inode_nonrcu);
240
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300241void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200243 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400245 fsnotify_inode_delete(inode);
Miklos Szeredi7ada4db2011-11-21 12:11:32 +0100246 if (!inode->i_nlink) {
247 WARN_ON(atomic_long_read(&inode->i_sb->s_remove_count) == 0);
248 atomic_long_dec(&inode->i_sb->s_remove_count);
249 }
250
Al Virof19d4a82009-06-08 19:50:45 -0400251#ifdef CONFIG_FS_POSIX_ACL
252 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
253 posix_acl_release(inode->i_acl);
254 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
255 posix_acl_release(inode->i_default_acl);
256#endif
Nick Piggin3e880fb2011-01-07 17:49:19 +1100257 this_cpu_dec(nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300258}
259EXPORT_SYMBOL(__destroy_inode);
260
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100261static void i_callback(struct rcu_head *head)
262{
263 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100264 kmem_cache_free(inode_cachep, inode);
265}
266
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200267static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300268{
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100269 BUG_ON(!list_empty(&inode->i_lru));
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300270 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (inode->i_sb->s_op->destroy_inode)
272 inode->i_sb->s_op->destroy_inode(inode);
273 else
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100274 call_rcu(&inode->i_rcu, i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Miklos Szeredi7ada4db2011-11-21 12:11:32 +0100277/**
278 * drop_nlink - directly drop an inode's link count
279 * @inode: inode
280 *
281 * This is a low-level filesystem helper to replace any
282 * direct filesystem manipulation of i_nlink. In cases
283 * where we are attempting to track writes to the
284 * filesystem, a decrement to zero means an imminent
285 * write when the file is truncated and actually unlinked
286 * on the filesystem.
287 */
288void drop_nlink(struct inode *inode)
289{
290 WARN_ON(inode->i_nlink == 0);
291 inode->__i_nlink--;
292 if (!inode->i_nlink)
293 atomic_long_inc(&inode->i_sb->s_remove_count);
294}
295EXPORT_SYMBOL(drop_nlink);
296
297/**
298 * clear_nlink - directly zero an inode's link count
299 * @inode: inode
300 *
301 * This is a low-level filesystem helper to replace any
302 * direct filesystem manipulation of i_nlink. See
303 * drop_nlink() for why we care about i_nlink hitting zero.
304 */
305void clear_nlink(struct inode *inode)
306{
307 if (inode->i_nlink) {
308 inode->__i_nlink = 0;
309 atomic_long_inc(&inode->i_sb->s_remove_count);
310 }
311}
312EXPORT_SYMBOL(clear_nlink);
313
314/**
315 * set_nlink - directly set an inode's link count
316 * @inode: inode
317 * @nlink: new nlink (should be non-zero)
318 *
319 * This is a low-level filesystem helper to replace any
320 * direct filesystem manipulation of i_nlink.
321 */
322void set_nlink(struct inode *inode, unsigned int nlink)
323{
324 if (!nlink) {
325 printk_ratelimited(KERN_INFO
326 "set_nlink() clearing i_nlink on %s inode %li\n",
327 inode->i_sb->s_type->name, inode->i_ino);
328 clear_nlink(inode);
329 } else {
330 /* Yes, some filesystems do change nlink from zero to one */
331 if (inode->i_nlink == 0)
332 atomic_long_dec(&inode->i_sb->s_remove_count);
333
334 inode->__i_nlink = nlink;
335 }
336}
337EXPORT_SYMBOL(set_nlink);
338
339/**
340 * inc_nlink - directly increment an inode's link count
341 * @inode: inode
342 *
343 * This is a low-level filesystem helper to replace any
344 * direct filesystem manipulation of i_nlink. Currently,
345 * it is only here for parity with dec_nlink().
346 */
347void inc_nlink(struct inode *inode)
348{
349 if (WARN_ON(inode->i_nlink == 0))
350 atomic_long_dec(&inode->i_sb->s_remove_count);
351
352 inode->__i_nlink++;
353}
354EXPORT_SYMBOL(inc_nlink);
355
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100356void address_space_init_once(struct address_space *mapping)
357{
358 memset(mapping, 0, sizeof(*mapping));
359 INIT_RADIX_TREE(&mapping->page_tree, GFP_ATOMIC);
360 spin_lock_init(&mapping->tree_lock);
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700361 mutex_init(&mapping->i_mmap_mutex);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100362 INIT_LIST_HEAD(&mapping->private_list);
363 spin_lock_init(&mapping->private_lock);
364 INIT_RAW_PRIO_TREE_ROOT(&mapping->i_mmap);
365 INIT_LIST_HEAD(&mapping->i_mmap_nonlinear);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100366}
367EXPORT_SYMBOL(address_space_init_once);
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369/*
370 * These are initializations that only need to be done
371 * once, because the fields are idempotent across use
372 * of the inode, so let the slab aware of that.
373 */
374void inode_init_once(struct inode *inode)
375{
376 memset(inode, 0, sizeof(*inode));
377 INIT_HLIST_NODE(&inode->i_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 INIT_LIST_HEAD(&inode->i_devices);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100379 INIT_LIST_HEAD(&inode->i_wb_list);
380 INIT_LIST_HEAD(&inode->i_lru);
Miklos Szeredi2aa15892011-02-23 13:49:47 +0100381 address_space_init_once(&inode->i_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400383#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500384 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400385#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387EXPORT_SYMBOL(inode_init_once);
388
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700389static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530391 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Christoph Lametera35afb82007-05-16 22:10:57 -0700393 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396/*
Dave Chinner250df6e2011-03-22 22:23:36 +1100397 * inode->i_lock must be held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530399void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Nick Piggin9e38d862010-10-23 06:55:17 -0400401 atomic_inc(&inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Al Viro7de9c6ee2010-10-23 11:11:40 -0400404/*
405 * get additional reference to inode; caller must already hold one.
406 */
407void ihold(struct inode *inode)
408{
409 WARN_ON(atomic_inc_return(&inode->i_count) < 2);
410}
411EXPORT_SYMBOL(ihold);
412
Nick Piggin9e38d862010-10-23 06:55:17 -0400413static void inode_lru_list_add(struct inode *inode)
414{
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000415 spin_lock(&inode->i_sb->s_inode_lru_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100416 if (list_empty(&inode->i_lru)) {
Dave Chinner98b745c2011-07-08 14:14:39 +1000417 list_add(&inode->i_lru, &inode->i_sb->s_inode_lru);
418 inode->i_sb->s_nr_inodes_unused++;
Dave Chinnerfcb94f72011-07-08 14:14:38 +1000419 this_cpu_inc(nr_unused);
Nick Piggin9e38d862010-10-23 06:55:17 -0400420 }
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000421 spin_unlock(&inode->i_sb->s_inode_lru_lock);
Nick Piggin9e38d862010-10-23 06:55:17 -0400422}
423
424static void inode_lru_list_del(struct inode *inode)
425{
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000426 spin_lock(&inode->i_sb->s_inode_lru_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100427 if (!list_empty(&inode->i_lru)) {
428 list_del_init(&inode->i_lru);
Dave Chinner98b745c2011-07-08 14:14:39 +1000429 inode->i_sb->s_nr_inodes_unused--;
Dave Chinnerfcb94f72011-07-08 14:14:38 +1000430 this_cpu_dec(nr_unused);
Nick Piggin9e38d862010-10-23 06:55:17 -0400431 }
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000432 spin_unlock(&inode->i_sb->s_inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Christoph Hellwig646ec462010-10-23 07:15:32 -0400435/**
436 * inode_sb_list_add - add inode to the superblock list of inodes
437 * @inode: inode to add
438 */
439void inode_sb_list_add(struct inode *inode)
440{
Dave Chinner55fa6092011-03-22 22:23:40 +1100441 spin_lock(&inode_sb_list_lock);
442 list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
443 spin_unlock(&inode_sb_list_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400444}
445EXPORT_SYMBOL_GPL(inode_sb_list_add);
446
Dave Chinner55fa6092011-03-22 22:23:40 +1100447static inline void inode_sb_list_del(struct inode *inode)
Christoph Hellwig646ec462010-10-23 07:15:32 -0400448{
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200449 if (!list_empty(&inode->i_sb_list)) {
450 spin_lock(&inode_sb_list_lock);
451 list_del_init(&inode->i_sb_list);
452 spin_unlock(&inode_sb_list_lock);
453 }
Christoph Hellwig646ec462010-10-23 07:15:32 -0400454}
455
Dave Chinner4c51acb2010-10-23 06:58:09 -0400456static unsigned long hash(struct super_block *sb, unsigned long hashval)
457{
458 unsigned long tmp;
459
460 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
461 L1_CACHE_BYTES;
Christoph Hellwig4b4563d2011-05-27 09:28:01 -0400462 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> i_hash_shift);
463 return tmp & i_hash_mask;
Dave Chinner4c51acb2010-10-23 06:58:09 -0400464}
465
466/**
467 * __insert_inode_hash - hash an inode
468 * @inode: unhashed inode
469 * @hashval: unsigned long value used to locate this object in the
470 * inode_hashtable.
471 *
472 * Add an inode to the inode hash for this superblock.
473 */
474void __insert_inode_hash(struct inode *inode, unsigned long hashval)
475{
Christoph Hellwig646ec462010-10-23 07:15:32 -0400476 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
477
Dave Chinner67a23c42011-03-22 22:23:42 +1100478 spin_lock(&inode_hash_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100479 spin_lock(&inode->i_lock);
Christoph Hellwig646ec462010-10-23 07:15:32 -0400480 hlist_add_head(&inode->i_hash, b);
Dave Chinner250df6e2011-03-22 22:23:36 +1100481 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100482 spin_unlock(&inode_hash_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400483}
484EXPORT_SYMBOL(__insert_inode_hash);
485
486/**
Eric Dumazetf2ee7ab2011-07-28 06:41:09 +0200487 * __remove_inode_hash - remove an inode from the hash
Dave Chinner4c51acb2010-10-23 06:58:09 -0400488 * @inode: inode to unhash
489 *
490 * Remove an inode from the superblock.
491 */
Eric Dumazetf2ee7ab2011-07-28 06:41:09 +0200492void __remove_inode_hash(struct inode *inode)
Dave Chinner4c51acb2010-10-23 06:58:09 -0400493{
Dave Chinner67a23c42011-03-22 22:23:42 +1100494 spin_lock(&inode_hash_lock);
Dave Chinner250df6e2011-03-22 22:23:36 +1100495 spin_lock(&inode->i_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400496 hlist_del_init(&inode->i_hash);
Dave Chinner250df6e2011-03-22 22:23:36 +1100497 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100498 spin_unlock(&inode_hash_lock);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400499}
Eric Dumazetf2ee7ab2011-07-28 06:41:09 +0200500EXPORT_SYMBOL(__remove_inode_hash);
Dave Chinner4c51acb2010-10-23 06:58:09 -0400501
Al Virob0683aa2010-06-04 20:55:25 -0400502void end_writeback(struct inode *inode)
503{
504 might_sleep();
Jan Kara08142572011-06-27 16:18:10 -0700505 /*
506 * We have to cycle tree_lock here because reclaim can be still in the
507 * process of removing the last page (in __delete_from_page_cache())
508 * and we must not free mapping under it.
509 */
510 spin_lock_irq(&inode->i_data.tree_lock);
Al Virob0683aa2010-06-04 20:55:25 -0400511 BUG_ON(inode->i_data.nrpages);
Jan Kara08142572011-06-27 16:18:10 -0700512 spin_unlock_irq(&inode->i_data.tree_lock);
Al Virob0683aa2010-06-04 20:55:25 -0400513 BUG_ON(!list_empty(&inode->i_data.private_list));
514 BUG_ON(!(inode->i_state & I_FREEING));
515 BUG_ON(inode->i_state & I_CLEAR);
516 inode_sync_wait(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100517 /* don't need i_lock here, no concurrent mods to i_state */
Al Virob0683aa2010-06-04 20:55:25 -0400518 inode->i_state = I_FREEING | I_CLEAR;
519}
520EXPORT_SYMBOL(end_writeback);
521
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100522/*
523 * Free the inode passed in, removing it from the lists it is still connected
524 * to. We remove any pages still attached to the inode and wait for any IO that
525 * is still in progress before finally destroying the inode.
526 *
527 * An inode must already be marked I_FREEING so that we avoid the inode being
528 * moved back onto lists if we race with other code that manipulates the lists
529 * (e.g. writeback_single_inode). The caller is responsible for setting this.
530 *
531 * An inode must already be removed from the LRU list before being evicted from
532 * the cache. This should occur atomically with setting the I_FREEING state
533 * flag, so no inodes here should ever be on the LRU when being evicted.
534 */
Al Viro644da592010-06-07 13:21:05 -0400535static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400536{
537 const struct super_operations *op = inode->i_sb->s_op;
538
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100539 BUG_ON(!(inode->i_state & I_FREEING));
540 BUG_ON(!list_empty(&inode->i_lru));
541
Eric Dumazetb12362b2011-07-28 06:11:47 +0200542 if (!list_empty(&inode->i_wb_list))
543 inode_wb_list_del(inode);
544
Dave Chinner55fa6092011-03-22 22:23:40 +1100545 inode_sb_list_del(inode);
546
Al Virobe7ce412010-06-04 19:40:39 -0400547 if (op->evict_inode) {
548 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400549 } else {
550 if (inode->i_data.nrpages)
551 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400552 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400553 }
Al Viro661074e2010-06-04 20:19:55 -0400554 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
555 bd_forget(inode);
556 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
557 cd_forget(inode);
Dave Chinnerb2b2af82011-03-22 22:23:37 +1100558
559 remove_inode_hash(inode);
560
561 spin_lock(&inode->i_lock);
562 wake_up_bit(&inode->i_state, __I_NEW);
563 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
564 spin_unlock(&inode->i_lock);
565
566 destroy_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400567}
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569/*
570 * dispose_list - dispose of the contents of a local list
571 * @head: the head of the list to free
572 *
573 * Dispose-list gets a local list with local inodes in it, so it doesn't
574 * need to worry about list corruption and SMP locks.
575 */
576static void dispose_list(struct list_head *head)
577{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 while (!list_empty(head)) {
579 struct inode *inode;
580
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100581 inode = list_first_entry(head, struct inode, i_lru);
582 list_del_init(&inode->i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Al Viro644da592010-06-07 13:21:05 -0400584 evict(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588/**
Al Viro63997e92010-10-25 20:49:35 -0400589 * evict_inodes - evict all evictable inodes for a superblock
590 * @sb: superblock to operate on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 *
Al Viro63997e92010-10-25 20:49:35 -0400592 * Make sure that no inodes with zero refcount are retained. This is
593 * called by superblock shutdown after having MS_ACTIVE flag removed,
594 * so any inode reaching zero refcount during or after that call will
595 * be immediately evicted.
596 */
597void evict_inodes(struct super_block *sb)
598{
599 struct inode *inode, *next;
600 LIST_HEAD(dispose);
601
Dave Chinner55fa6092011-03-22 22:23:40 +1100602 spin_lock(&inode_sb_list_lock);
Al Viro63997e92010-10-25 20:49:35 -0400603 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
604 if (atomic_read(&inode->i_count))
605 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100606
607 spin_lock(&inode->i_lock);
608 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
609 spin_unlock(&inode->i_lock);
Al Viro63997e92010-10-25 20:49:35 -0400610 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100611 }
Al Viro63997e92010-10-25 20:49:35 -0400612
613 inode->i_state |= I_FREEING;
Dave Chinner02afc412011-03-22 22:23:38 +1100614 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100615 spin_unlock(&inode->i_lock);
Dave Chinner02afc412011-03-22 22:23:38 +1100616 list_add(&inode->i_lru, &dispose);
Al Viro63997e92010-10-25 20:49:35 -0400617 }
Dave Chinner55fa6092011-03-22 22:23:40 +1100618 spin_unlock(&inode_sb_list_lock);
Al Viro63997e92010-10-25 20:49:35 -0400619
620 dispose_list(&dispose);
Al Viro63997e92010-10-25 20:49:35 -0400621}
622
623/**
Christoph Hellwiga0318782010-10-24 19:40:33 +0200624 * invalidate_inodes - attempt to free all inodes on a superblock
625 * @sb: superblock to operate on
NeilBrown93b270f2011-02-24 17:25:47 +1100626 * @kill_dirty: flag to guide handling of dirty inodes
Christoph Hellwiga0318782010-10-24 19:40:33 +0200627 *
628 * Attempts to free all inodes for a given superblock. If there were any
629 * busy inodes return a non-zero value, else zero.
NeilBrown93b270f2011-02-24 17:25:47 +1100630 * If @kill_dirty is set, discard dirty inodes too, otherwise treat
631 * them as busy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 */
NeilBrown93b270f2011-02-24 17:25:47 +1100633int invalidate_inodes(struct super_block *sb, bool kill_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400635 int busy = 0;
Christoph Hellwiga0318782010-10-24 19:40:33 +0200636 struct inode *inode, *next;
637 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Dave Chinner55fa6092011-03-22 22:23:40 +1100639 spin_lock(&inode_sb_list_lock);
Christoph Hellwiga0318782010-10-24 19:40:33 +0200640 list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100641 spin_lock(&inode->i_lock);
642 if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
643 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100645 }
NeilBrown93b270f2011-02-24 17:25:47 +1100646 if (inode->i_state & I_DIRTY && !kill_dirty) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100647 spin_unlock(&inode->i_lock);
NeilBrown93b270f2011-02-24 17:25:47 +1100648 busy = 1;
649 continue;
650 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200651 if (atomic_read(&inode->i_count)) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100652 spin_unlock(&inode->i_lock);
Christoph Hellwig99a38912010-10-23 19:07:20 +0200653 busy = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 continue;
655 }
Christoph Hellwig99a38912010-10-23 19:07:20 +0200656
Christoph Hellwig99a38912010-10-23 19:07:20 +0200657 inode->i_state |= I_FREEING;
Dave Chinner02afc412011-03-22 22:23:38 +1100658 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100659 spin_unlock(&inode->i_lock);
Dave Chinner02afc412011-03-22 22:23:38 +1100660 list_add(&inode->i_lru, &dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
Dave Chinner55fa6092011-03-22 22:23:40 +1100662 spin_unlock(&inode_sb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Christoph Hellwiga0318782010-10-24 19:40:33 +0200664 dispose_list(&dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 return busy;
667}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669static int can_unuse(struct inode *inode)
670{
Nick Piggin9e38d862010-10-23 06:55:17 -0400671 if (inode->i_state & ~I_REFERENCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return 0;
673 if (inode_has_buffers(inode))
674 return 0;
675 if (atomic_read(&inode->i_count))
676 return 0;
677 if (inode->i_data.nrpages)
678 return 0;
679 return 1;
680}
681
682/*
Dave Chinnerb0d40c92011-07-08 14:14:42 +1000683 * Walk the superblock inode LRU for freeable inodes and attempt to free them.
684 * This is called from the superblock shrinker function with a number of inodes
685 * to trim from the LRU. Inodes to be freed are moved to a temporary list and
686 * then are freed outside inode_lock by dispose_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 *
688 * Any inodes which are pinned purely because of attached pagecache have their
Nick Piggin9e38d862010-10-23 06:55:17 -0400689 * pagecache removed. If the inode has metadata buffers attached to
690 * mapping->private_list then try to remove them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 *
Nick Piggin9e38d862010-10-23 06:55:17 -0400692 * If the inode has the I_REFERENCED flag set, then it means that it has been
693 * used recently - the flag is set in iput_final(). When we encounter such an
694 * inode, clear the flag and move it to the back of the LRU so it gets another
695 * pass through the LRU before it gets reclaimed. This is necessary because of
696 * the fact we are doing lazy LRU updates to minimise lock contention so the
697 * LRU does not have strict ordering. Hence we don't want to reclaim inodes
698 * with this flag set because they are the inodes that are out of order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 */
Dave Chinnerb0d40c92011-07-08 14:14:42 +1000700void prune_icache_sb(struct super_block *sb, int nr_to_scan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 int nr_scanned;
704 unsigned long reap = 0;
705
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000706 spin_lock(&sb->s_inode_lru_lock);
Dave Chinnerb0d40c92011-07-08 14:14:42 +1000707 for (nr_scanned = nr_to_scan; nr_scanned >= 0; nr_scanned--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 struct inode *inode;
709
Dave Chinner98b745c2011-07-08 14:14:39 +1000710 if (list_empty(&sb->s_inode_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 break;
712
Dave Chinner98b745c2011-07-08 14:14:39 +1000713 inode = list_entry(sb->s_inode_lru.prev, struct inode, i_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Nick Piggin9e38d862010-10-23 06:55:17 -0400715 /*
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000716 * we are inverting the sb->s_inode_lru_lock/inode->i_lock here,
Dave Chinner02afc412011-03-22 22:23:38 +1100717 * so use a trylock. If we fail to get the lock, just move the
718 * inode to the back of the list so we don't spin on it.
719 */
720 if (!spin_trylock(&inode->i_lock)) {
Christoph Hellwig62a3dde2011-10-28 10:03:41 +0200721 list_move_tail(&inode->i_lru, &sb->s_inode_lru);
Dave Chinner02afc412011-03-22 22:23:38 +1100722 continue;
723 }
724
725 /*
Nick Piggin9e38d862010-10-23 06:55:17 -0400726 * Referenced or dirty inodes are still in use. Give them
727 * another pass through the LRU as we canot reclaim them now.
728 */
729 if (atomic_read(&inode->i_count) ||
730 (inode->i_state & ~I_REFERENCED)) {
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100731 list_del_init(&inode->i_lru);
Dave Chinnerf283c862011-03-22 22:23:39 +1100732 spin_unlock(&inode->i_lock);
Dave Chinner98b745c2011-07-08 14:14:39 +1000733 sb->s_nr_inodes_unused--;
Dave Chinnerfcb94f72011-07-08 14:14:38 +1000734 this_cpu_dec(nr_unused);
Nick Piggin9e38d862010-10-23 06:55:17 -0400735 continue;
736 }
737
738 /* recently referenced inodes get one more pass */
739 if (inode->i_state & I_REFERENCED) {
Nick Piggin9e38d862010-10-23 06:55:17 -0400740 inode->i_state &= ~I_REFERENCED;
Dave Chinner98b745c2011-07-08 14:14:39 +1000741 list_move(&inode->i_lru, &sb->s_inode_lru);
Dave Chinnerf283c862011-03-22 22:23:39 +1100742 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 continue;
744 }
745 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
746 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100747 spin_unlock(&inode->i_lock);
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000748 spin_unlock(&sb->s_inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800750 reap += invalidate_mapping_pages(&inode->i_data,
751 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 iput(inode);
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000753 spin_lock(&sb->s_inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Dave Chinner98b745c2011-07-08 14:14:39 +1000755 if (inode != list_entry(sb->s_inode_lru.next,
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100756 struct inode, i_lru))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 continue; /* wrong inode or list_empty */
Dave Chinner02afc412011-03-22 22:23:38 +1100758 /* avoid lock inversions with trylock */
759 if (!spin_trylock(&inode->i_lock))
760 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100761 if (!can_unuse(inode)) {
762 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +1100764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
Nick Piggin7ef0d732009-03-12 14:31:38 -0700766 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 inode->i_state |= I_FREEING;
Dave Chinner250df6e2011-03-22 22:23:36 +1100768 spin_unlock(&inode->i_lock);
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100769
Nick Piggin7ccf19a2010-10-21 11:49:30 +1100770 list_move(&inode->i_lru, &freeable);
Dave Chinner98b745c2011-07-08 14:14:39 +1000771 sb->s_nr_inodes_unused--;
Dave Chinnerfcb94f72011-07-08 14:14:38 +1000772 this_cpu_dec(nr_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700774 if (current_is_kswapd())
775 __count_vm_events(KSWAPD_INODESTEAL, reap);
776 else
777 __count_vm_events(PGINODESTEAL, reap);
Dave Chinner09cc9fc2011-07-08 14:14:40 +1000778 spin_unlock(&sb->s_inode_lru_lock);
Konstantin Khlebnikov5f8aefd2012-01-10 15:07:18 -0800779 if (current->reclaim_state)
780 current->reclaim_state->reclaimed_slab += reap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 dispose_list(&freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785static void __wait_on_freeing_inode(struct inode *inode);
786/*
787 * Called with the inode lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530789static struct inode *find_inode(struct super_block *sb,
790 struct hlist_head *head,
791 int (*test)(struct inode *, void *),
792 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530795 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700798 hlist_for_each_entry(inode, node, head, i_hash) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100799 spin_lock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100800 if (inode->i_sb != sb) {
801 spin_unlock(&inode->i_lock);
802 continue;
803 }
804 if (!test(inode, data)) {
805 spin_unlock(&inode->i_lock);
806 continue;
807 }
Al Viroa4ffdde2010-06-02 17:38:30 -0400808 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 __wait_on_freeing_inode(inode);
810 goto repeat;
811 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400812 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100813 spin_unlock(&inode->i_lock);
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400814 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400816 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819/*
820 * find_inode_fast is the fast path version of find_inode, see the comment at
821 * iget_locked for details.
822 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530823static struct inode *find_inode_fast(struct super_block *sb,
824 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530827 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700830 hlist_for_each_entry(inode, node, head, i_hash) {
Dave Chinner250df6e2011-03-22 22:23:36 +1100831 spin_lock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +1100832 if (inode->i_ino != ino) {
833 spin_unlock(&inode->i_lock);
834 continue;
835 }
836 if (inode->i_sb != sb) {
837 spin_unlock(&inode->i_lock);
838 continue;
839 }
Al Viroa4ffdde2010-06-02 17:38:30 -0400840 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 __wait_on_freeing_inode(inode);
842 goto repeat;
843 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400844 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100845 spin_unlock(&inode->i_lock);
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400846 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Christoph Hellwigf7899bd2010-10-23 07:09:06 -0400848 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Eric Dumazetf991bd22010-10-23 11:18:01 -0400851/*
852 * Each cpu owns a range of LAST_INO_BATCH numbers.
853 * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
854 * to renew the exhausted range.
David Chinner8290c352008-10-30 17:35:24 +1100855 *
Eric Dumazetf991bd22010-10-23 11:18:01 -0400856 * This does not significantly increase overflow rate because every CPU can
857 * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
858 * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
859 * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
860 * overflow rate by 2x, which does not seem too significant.
861 *
862 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
863 * error if st_ino won't fit in target struct field. Use 32bit counter
864 * here to attempt to avoid that.
David Chinner8290c352008-10-30 17:35:24 +1100865 */
Eric Dumazetf991bd22010-10-23 11:18:01 -0400866#define LAST_INO_BATCH 1024
867static DEFINE_PER_CPU(unsigned int, last_ino);
David Chinner8290c352008-10-30 17:35:24 +1100868
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400869unsigned int get_next_ino(void)
Eric Dumazetf991bd22010-10-23 11:18:01 -0400870{
871 unsigned int *p = &get_cpu_var(last_ino);
872 unsigned int res = *p;
873
874#ifdef CONFIG_SMP
875 if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
876 static atomic_t shared_last_ino;
877 int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
878
879 res = next - LAST_INO_BATCH;
880 }
881#endif
882
883 *p = ++res;
884 put_cpu_var(last_ino);
885 return res;
David Chinner8290c352008-10-30 17:35:24 +1100886}
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400887EXPORT_SYMBOL(get_next_ino);
David Chinner8290c352008-10-30 17:35:24 +1100888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889/**
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200890 * new_inode_pseudo - obtain an inode
891 * @sb: superblock
892 *
893 * Allocates a new inode for given superblock.
894 * Inode wont be chained in superblock s_inodes list
895 * This means :
896 * - fs can't be unmount
897 * - quotas, fsnotify, writeback can't work
898 */
899struct inode *new_inode_pseudo(struct super_block *sb)
900{
901 struct inode *inode = alloc_inode(sb);
902
903 if (inode) {
904 spin_lock(&inode->i_lock);
905 inode->i_state = 0;
906 spin_unlock(&inode->i_lock);
907 INIT_LIST_HEAD(&inode->i_sb_list);
908 }
909 return inode;
910}
911
912/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * new_inode - obtain an inode
914 * @sb: superblock
915 *
Mel Gorman769848c2007-07-17 04:03:05 -0700916 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800917 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700918 * If HIGHMEM pages are unsuitable or it is known that pages allocated
919 * for the page cache are not reclaimable or migratable,
920 * mapping_set_gfp_mask() must be called with suitable flags on the
921 * newly created inode's mapping
922 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 */
924struct inode *new_inode(struct super_block *sb)
925{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530926 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Dave Chinner55fa6092011-03-22 22:23:40 +1100928 spin_lock_prefetch(&inode_sb_list_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530929
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200930 inode = new_inode_pseudo(sb);
931 if (inode)
Dave Chinner55fa6092011-03-22 22:23:40 +1100932 inode_sb_list_add(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return inode;
934}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935EXPORT_SYMBOL(new_inode);
936
Peter Zijlstra14358e62007-10-14 01:38:33 +0200937#ifdef CONFIG_DEBUG_LOCK_ALLOC
Josh Boyere096d0c2011-08-25 07:48:12 -0400938void lockdep_annotate_inode_mutex_key(struct inode *inode)
939{
Namhyung Kima3314a02010-10-11 22:38:00 +0900940 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200941 struct file_system_type *type = inode->i_sb->s_type;
942
Jan Kara9a7aa122009-06-04 15:26:49 +0200943 /* Set new key only if filesystem hasn't already changed it */
944 if (!lockdep_match_class(&inode->i_mutex,
945 &type->i_mutex_key)) {
946 /*
947 * ensure nobody is actually holding i_mutex
948 */
949 mutex_destroy(&inode->i_mutex);
950 mutex_init(&inode->i_mutex);
951 lockdep_set_class(&inode->i_mutex,
952 &type->i_mutex_dir_key);
953 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200954 }
Josh Boyere096d0c2011-08-25 07:48:12 -0400955}
956EXPORT_SYMBOL(lockdep_annotate_inode_mutex_key);
Peter Zijlstra14358e62007-10-14 01:38:33 +0200957#endif
Josh Boyere096d0c2011-08-25 07:48:12 -0400958
959/**
960 * unlock_new_inode - clear the I_NEW state and wake up any waiters
961 * @inode: new inode to unlock
962 *
963 * Called when the inode is fully initialised to clear the new state of the
964 * inode and wake up anyone waiting for the inode to finish initialisation.
965 */
966void unlock_new_inode(struct inode *inode)
967{
968 lockdep_annotate_inode_mutex_key(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +1100969 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100970 WARN_ON(!(inode->i_state & I_NEW));
971 inode->i_state &= ~I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +1100972 wake_up_bit(&inode->i_state, __I_NEW);
973 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975EXPORT_SYMBOL(unlock_new_inode);
976
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400977/**
978 * iget5_locked - obtain an inode from a mounted file system
979 * @sb: super block of file system
980 * @hashval: hash value (usually inode number) to get
981 * @test: callback used for comparisons between inodes
982 * @set: callback used to initialize a new struct inode
983 * @data: opaque data pointer to pass to @test and @set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400985 * Search for the inode specified by @hashval and @data in the inode cache,
986 * and if present it is return it with an increased reference count. This is
987 * a generalized version of iget_locked() for file systems where the inode
988 * number is not sufficient for unique identification of an inode.
989 *
990 * If the inode is not in cache, allocate a new inode and return it locked,
991 * hashed, and with the I_NEW flag set. The file system gets to fill it in
992 * before unlocking it via unlock_new_inode().
993 *
994 * Note both @test and @set are called with the inode_hash_lock held, so can't
995 * sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 */
Christoph Hellwig0b2d0722011-03-23 15:03:28 -0400997struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
998 int (*test)(struct inode *, void *),
999 int (*set)(struct inode *, void *), void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001001 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301002 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001004 spin_lock(&inode_hash_lock);
1005 inode = find_inode(sb, head, test, data);
1006 spin_unlock(&inode_hash_lock);
1007
1008 if (inode) {
1009 wait_on_inode(inode);
1010 return inode;
1011 }
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 inode = alloc_inode(sb);
1014 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301015 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Dave Chinner67a23c42011-03-22 22:23:42 +11001017 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 /* We released the lock, so.. */
1019 old = find_inode(sb, head, test, data);
1020 if (!old) {
1021 if (set(inode, data))
1022 goto set_failed;
1023
Dave Chinner250df6e2011-03-22 22:23:36 +11001024 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001025 inode->i_state = I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +11001026 hlist_add_head(&inode->i_hash, head);
1027 spin_unlock(&inode->i_lock);
Dave Chinner55fa6092011-03-22 22:23:40 +11001028 inode_sb_list_add(inode);
Dave Chinner67a23c42011-03-22 22:23:42 +11001029 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 /* Return the locked inode with I_NEW set, the
1032 * caller is responsible for filling in the contents
1033 */
1034 return inode;
1035 }
1036
1037 /*
1038 * Uhhuh, somebody else created the same inode under
1039 * us. Use the old inode instead of the one we just
1040 * allocated.
1041 */
Dave Chinner67a23c42011-03-22 22:23:42 +11001042 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 destroy_inode(inode);
1044 inode = old;
1045 wait_on_inode(inode);
1046 }
1047 return inode;
1048
1049set_failed:
Dave Chinner67a23c42011-03-22 22:23:42 +11001050 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 destroy_inode(inode);
1052 return NULL;
1053}
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001054EXPORT_SYMBOL(iget5_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001056/**
1057 * iget_locked - obtain an inode from a mounted file system
1058 * @sb: super block of file system
1059 * @ino: inode number to get
1060 *
1061 * Search for the inode specified by @ino in the inode cache and if present
1062 * return it with an increased reference count. This is for file systems
1063 * where the inode number is sufficient for unique identification of an inode.
1064 *
1065 * If the inode is not in cache, allocate a new inode and return it locked,
1066 * hashed, and with the I_NEW flag set. The file system gets to fill it in
1067 * before unlocking it via unlock_new_inode().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 */
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001069struct inode *iget_locked(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001071 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301072 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001074 spin_lock(&inode_hash_lock);
1075 inode = find_inode_fast(sb, head, ino);
1076 spin_unlock(&inode_hash_lock);
1077 if (inode) {
1078 wait_on_inode(inode);
1079 return inode;
1080 }
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 inode = alloc_inode(sb);
1083 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301084 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Dave Chinner67a23c42011-03-22 22:23:42 +11001086 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 /* We released the lock, so.. */
1088 old = find_inode_fast(sb, head, ino);
1089 if (!old) {
1090 inode->i_ino = ino;
Dave Chinner250df6e2011-03-22 22:23:36 +11001091 spin_lock(&inode->i_lock);
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001092 inode->i_state = I_NEW;
Dave Chinner250df6e2011-03-22 22:23:36 +11001093 hlist_add_head(&inode->i_hash, head);
1094 spin_unlock(&inode->i_lock);
Dave Chinner55fa6092011-03-22 22:23:40 +11001095 inode_sb_list_add(inode);
Dave Chinner67a23c42011-03-22 22:23:42 +11001096 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 /* Return the locked inode with I_NEW set, the
1099 * caller is responsible for filling in the contents
1100 */
1101 return inode;
1102 }
1103
1104 /*
1105 * Uhhuh, somebody else created the same inode under
1106 * us. Use the old inode instead of the one we just
1107 * allocated.
1108 */
Dave Chinner67a23c42011-03-22 22:23:42 +11001109 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 destroy_inode(inode);
1111 inode = old;
1112 wait_on_inode(inode);
1113 }
1114 return inode;
1115}
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001116EXPORT_SYMBOL(iget_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001118/*
1119 * search the inode cache for a matching inode number.
1120 * If we find one, then the inode number we are trying to
1121 * allocate is not unique and so we should not use it.
1122 *
1123 * Returns 1 if the inode number is unique, 0 if it is not.
1124 */
1125static int test_inode_iunique(struct super_block *sb, unsigned long ino)
1126{
1127 struct hlist_head *b = inode_hashtable + hash(sb, ino);
1128 struct hlist_node *node;
1129 struct inode *inode;
1130
Dave Chinner67a23c42011-03-22 22:23:42 +11001131 spin_lock(&inode_hash_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001132 hlist_for_each_entry(inode, node, b, i_hash) {
Dave Chinner67a23c42011-03-22 22:23:42 +11001133 if (inode->i_ino == ino && inode->i_sb == sb) {
1134 spin_unlock(&inode_hash_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001135 return 0;
Dave Chinner67a23c42011-03-22 22:23:42 +11001136 }
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001137 }
Dave Chinner67a23c42011-03-22 22:23:42 +11001138 spin_unlock(&inode_hash_lock);
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001139
1140 return 1;
1141}
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143/**
1144 * iunique - get a unique inode number
1145 * @sb: superblock
1146 * @max_reserved: highest reserved inode number
1147 *
1148 * Obtain an inode number that is unique on the system for a given
1149 * superblock. This is used by file systems that have no natural
1150 * permanent inode numbering system. An inode number is returned that
1151 * is higher than the reserved limit but unique.
1152 *
1153 * BUGS:
1154 * With a large number of inodes live on the file system this function
1155 * currently becomes quite slow.
1156 */
1157ino_t iunique(struct super_block *sb, ino_t max_reserved)
1158{
Jeff Layton866b04f2007-05-08 00:32:29 -07001159 /*
1160 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
1161 * error if st_ino won't fit in target struct field. Use 32bit counter
1162 * here to attempt to avoid that.
1163 */
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001164 static DEFINE_SPINLOCK(iunique_lock);
Jeff Layton866b04f2007-05-08 00:32:29 -07001165 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001168 spin_lock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001169 do {
1170 if (counter <= max_reserved)
1171 counter = max_reserved + 1;
1172 res = counter++;
Christoph Hellwigad5e1952010-10-23 07:00:16 -04001173 } while (!test_inode_iunique(sb, res));
1174 spin_unlock(&iunique_lock);
Jeffrey Layton3361c7b2007-05-08 00:29:48 -07001175
1176 return res;
1177}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178EXPORT_SYMBOL(iunique);
1179
1180struct inode *igrab(struct inode *inode)
1181{
Dave Chinner250df6e2011-03-22 22:23:36 +11001182 spin_lock(&inode->i_lock);
1183 if (!(inode->i_state & (I_FREEING|I_WILL_FREE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 __iget(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +11001185 spin_unlock(&inode->i_lock);
1186 } else {
1187 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 /*
1189 * Handle the case where s_op->clear_inode is not been
1190 * called yet, and somebody is calling igrab
1191 * while the inode is getting freed.
1192 */
1193 inode = NULL;
Dave Chinner250df6e2011-03-22 22:23:36 +11001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return inode;
1196}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197EXPORT_SYMBOL(igrab);
1198
1199/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001200 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 * @sb: super block of file system to search
1202 * @hashval: hash value (usually inode number) to search for
1203 * @test: callback used for comparisons between inodes
1204 * @data: opaque data pointer to pass to @test
1205 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001206 * Search for the inode specified by @hashval and @data in the inode cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * If the inode is in the cache, the inode is returned with an incremented
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001208 * reference count.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001209 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001210 * Note: I_NEW is not waited upon so you have to be very careful what you do
1211 * with the returned inode. You probably should be using ilookup5() instead.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001212 *
Randy Dunlapb6d0ad62011-03-26 13:27:47 -07001213 * Note2: @test is called with the inode_hash_lock held, so can't sleep.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001214 */
1215struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1216 int (*test)(struct inode *, void *), void *data)
1217{
1218 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001219 struct inode *inode;
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001220
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001221 spin_lock(&inode_hash_lock);
1222 inode = find_inode(sb, head, test, data);
1223 spin_unlock(&inode_hash_lock);
1224
1225 return inode;
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001226}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001227EXPORT_SYMBOL(ilookup5_nowait);
1228
1229/**
1230 * ilookup5 - search for an inode in the inode cache
1231 * @sb: super block of file system to search
1232 * @hashval: hash value (usually inode number) to search for
1233 * @test: callback used for comparisons between inodes
1234 * @data: opaque data pointer to pass to @test
1235 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001236 * Search for the inode specified by @hashval and @data in the inode cache,
1237 * and if the inode is in the cache, return the inode with an incremented
1238 * reference count. Waits on I_NEW before returning the inode.
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001239 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001241 * This is a generalized version of ilookup() for file systems where the
1242 * inode number is not sufficient for unique identification of an inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001244 * Note: @test is called with the inode_hash_lock held, so can't sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 */
1246struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1247 int (*test)(struct inode *, void *), void *data)
1248{
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001249 struct inode *inode = ilookup5_nowait(sb, hashval, test, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001251 if (inode)
1252 wait_on_inode(inode);
1253 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255EXPORT_SYMBOL(ilookup5);
1256
1257/**
1258 * ilookup - search for an inode in the inode cache
1259 * @sb: super block of file system to search
1260 * @ino: inode number to search for
1261 *
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001262 * Search for the inode @ino in the inode cache, and if the inode is in the
1263 * cache, the inode is returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 */
1265struct inode *ilookup(struct super_block *sb, unsigned long ino)
1266{
1267 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001268 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Christoph Hellwig0b2d0722011-03-23 15:03:28 -04001270 spin_lock(&inode_hash_lock);
1271 inode = find_inode_fast(sb, head, ino);
1272 spin_unlock(&inode_hash_lock);
1273
1274 if (inode)
1275 wait_on_inode(inode);
1276 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278EXPORT_SYMBOL(ilookup);
1279
Al Viro261bca82008-12-30 01:48:21 -05001280int insert_inode_locked(struct inode *inode)
1281{
1282 struct super_block *sb = inode->i_sb;
1283 ino_t ino = inode->i_ino;
1284 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001285
Al Viro261bca82008-12-30 01:48:21 -05001286 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001287 struct hlist_node *node;
1288 struct inode *old = NULL;
Dave Chinner67a23c42011-03-22 22:23:42 +11001289 spin_lock(&inode_hash_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001290 hlist_for_each_entry(old, node, head, i_hash) {
1291 if (old->i_ino != ino)
1292 continue;
1293 if (old->i_sb != sb)
1294 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001295 spin_lock(&old->i_lock);
1296 if (old->i_state & (I_FREEING|I_WILL_FREE)) {
1297 spin_unlock(&old->i_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001298 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001299 }
Al Viro72a43d62009-05-13 19:13:40 +01001300 break;
1301 }
1302 if (likely(!node)) {
Dave Chinner250df6e2011-03-22 22:23:36 +11001303 spin_lock(&inode->i_lock);
1304 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001305 hlist_add_head(&inode->i_hash, head);
Dave Chinner250df6e2011-03-22 22:23:36 +11001306 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001307 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001308 return 0;
1309 }
1310 __iget(old);
Dave Chinner250df6e2011-03-22 22:23:36 +11001311 spin_unlock(&old->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001312 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001313 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001314 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001315 iput(old);
1316 return -EBUSY;
1317 }
1318 iput(old);
1319 }
1320}
Al Viro261bca82008-12-30 01:48:21 -05001321EXPORT_SYMBOL(insert_inode_locked);
1322
1323int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1324 int (*test)(struct inode *, void *), void *data)
1325{
1326 struct super_block *sb = inode->i_sb;
1327 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001328
Al Viro261bca82008-12-30 01:48:21 -05001329 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001330 struct hlist_node *node;
1331 struct inode *old = NULL;
1332
Dave Chinner67a23c42011-03-22 22:23:42 +11001333 spin_lock(&inode_hash_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001334 hlist_for_each_entry(old, node, head, i_hash) {
1335 if (old->i_sb != sb)
1336 continue;
1337 if (!test(old, data))
1338 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001339 spin_lock(&old->i_lock);
1340 if (old->i_state & (I_FREEING|I_WILL_FREE)) {
1341 spin_unlock(&old->i_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001342 continue;
Dave Chinner250df6e2011-03-22 22:23:36 +11001343 }
Al Viro72a43d62009-05-13 19:13:40 +01001344 break;
1345 }
1346 if (likely(!node)) {
Dave Chinner250df6e2011-03-22 22:23:36 +11001347 spin_lock(&inode->i_lock);
1348 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001349 hlist_add_head(&inode->i_hash, head);
Dave Chinner250df6e2011-03-22 22:23:36 +11001350 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001351 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001352 return 0;
1353 }
1354 __iget(old);
Dave Chinner250df6e2011-03-22 22:23:36 +11001355 spin_unlock(&old->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001356 spin_unlock(&inode_hash_lock);
Al Viro261bca82008-12-30 01:48:21 -05001357 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001358 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001359 iput(old);
1360 return -EBUSY;
1361 }
1362 iput(old);
1363 }
1364}
Al Viro261bca82008-12-30 01:48:21 -05001365EXPORT_SYMBOL(insert_inode_locked4);
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Al Viro45321ac2010-06-07 13:43:19 -04001368int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Al Viro45321ac2010-06-07 13:43:19 -04001370 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372EXPORT_SYMBOL(generic_delete_inode);
1373
Al Viro45321ac2010-06-07 13:43:19 -04001374/*
1375 * Normal UNIX filesystem behaviour: delete the
1376 * inode when the usage count drops to zero, and
1377 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001378 */
Al Viro45321ac2010-06-07 13:43:19 -04001379int generic_drop_inode(struct inode *inode)
1380{
Al Viro1d3382cb2010-10-23 15:19:20 -04001381 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001382}
1383EXPORT_SYMBOL_GPL(generic_drop_inode);
1384
1385/*
1386 * Called when we're dropping the last reference
1387 * to an inode.
1388 *
1389 * Call the FS "drop_inode()" function, defaulting to
1390 * the legacy UNIX filesystem behaviour. If it tells
1391 * us to evict inode, do so. Otherwise, retain inode
1392 * in cache if fs is alive, sync and evict if fs is
1393 * shutting down.
1394 */
1395static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001398 const struct super_operations *op = inode->i_sb->s_op;
1399 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Dave Chinner250df6e2011-03-22 22:23:36 +11001401 WARN_ON(inode->i_state & I_NEW);
1402
Al Viroe7f59092011-07-07 15:45:59 -04001403 if (op->drop_inode)
Al Viro45321ac2010-06-07 13:43:19 -04001404 drop = op->drop_inode(inode);
1405 else
1406 drop = generic_drop_inode(inode);
1407
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001408 if (!drop && (sb->s_flags & MS_ACTIVE)) {
1409 inode->i_state |= I_REFERENCED;
1410 if (!(inode->i_state & (I_DIRTY|I_SYNC)))
1411 inode_lru_list_add(inode);
1412 spin_unlock(&inode->i_lock);
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001413 return;
1414 }
1415
Al Viro45321ac2010-06-07 13:43:19 -04001416 if (!drop) {
Alexander Viro991114c2005-06-23 00:09:01 -07001417 inode->i_state |= I_WILL_FREE;
Dave Chinner250df6e2011-03-22 22:23:36 +11001418 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 write_inode_now(inode, 1);
Dave Chinner250df6e2011-03-22 22:23:36 +11001420 spin_lock(&inode->i_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001421 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001422 inode->i_state &= ~I_WILL_FREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
Nick Piggin7ccf19a2010-10-21 11:49:30 +11001424
Alexander Viro991114c2005-06-23 00:09:01 -07001425 inode->i_state |= I_FREEING;
Eric Dumazetc4ae0c62011-07-28 06:55:13 +02001426 if (!list_empty(&inode->i_lru))
1427 inode_lru_list_del(inode);
Dave Chinner250df6e2011-03-22 22:23:36 +11001428 spin_unlock(&inode->i_lock);
Dave Chinnerb2b2af82011-03-22 22:23:37 +11001429
1430 evict(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301434 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 * @inode: inode to put
1436 *
1437 * Puts an inode, dropping its usage count. If the inode use count hits
1438 * zero, the inode is then freed and may also be destroyed.
1439 *
1440 * Consequently, iput() can sleep.
1441 */
1442void iput(struct inode *inode)
1443{
1444 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001445 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Dave Chinnerf283c862011-03-22 22:23:39 +11001447 if (atomic_dec_and_lock(&inode->i_count, &inode->i_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 iput_final(inode);
1449 }
1450}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451EXPORT_SYMBOL(iput);
1452
1453/**
1454 * bmap - find a block number in a file
1455 * @inode: inode of file
1456 * @block: block to find
1457 *
1458 * Returns the block number on the device holding the inode that
1459 * is the disk block number for the block of the file requested.
1460 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301461 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 * file.
1463 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301464sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
1466 sector_t res = 0;
1467 if (inode->i_mapping->a_ops->bmap)
1468 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1469 return res;
1470}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471EXPORT_SYMBOL(bmap);
1472
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001473/*
1474 * With relative atime, only update atime if the previous atime is
1475 * earlier than either the ctime or mtime or if at least a day has
1476 * passed since the last atime update.
1477 */
1478static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1479 struct timespec now)
1480{
1481
1482 if (!(mnt->mnt_flags & MNT_RELATIME))
1483 return 1;
1484 /*
1485 * Is mtime younger than atime? If yes, update atime:
1486 */
1487 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1488 return 1;
1489 /*
1490 * Is ctime younger than atime? If yes, update atime:
1491 */
1492 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1493 return 1;
1494
1495 /*
1496 * Is the previous atime value older than a day? If yes,
1497 * update atime:
1498 */
1499 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1500 return 1;
1501 /*
1502 * Good, we can skip the atime update:
1503 */
1504 return 0;
1505}
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001508 * touch_atime - update the access time
1509 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001510 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
1512 * Update the accessed time on an inode and mark it for writeback.
1513 * This function automatically handles read only file systems and media,
1514 * as well as the "noatime" flag and inode specific "noatime" markers.
1515 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001516void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001518 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct timespec now;
1520
Andrew Mortonb2276132006-12-13 00:34:33 -08001521 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001522 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001523 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001524 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001525 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001526 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001527
Dave Hansencdb70f32008-02-15 14:37:41 -08001528 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001529 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001530 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001531 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001534
1535 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001536 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001537
Valerie Henson47ae32d2006-12-13 00:34:34 -08001538 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001539 return;
1540
1541 if (mnt_want_write(mnt))
1542 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001543
1544 inode->i_atime = now;
1545 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001546 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001548EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001551 * file_update_time - update mtime and ctime time
1552 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001554 * Update the mtime and ctime members of an inode and mark the inode
1555 * for writeback. Note that this function is meant exclusively for
1556 * usage in the file write path of filesystems, and filesystems may
1557 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001558 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001559 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 */
1561
Christoph Hellwig870f4812006-01-09 20:52:01 -08001562void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001564 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001566 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Andi Kleence06e0b2009-09-18 13:05:48 -07001568 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (IS_NOCMTIME(inode))
1570 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001571
Andi Kleence06e0b2009-09-18 13:05:48 -07001572 now = current_fs_time(inode->i_sb);
1573 if (!timespec_equal(&inode->i_mtime, &now))
1574 sync_it = S_MTIME;
1575
1576 if (!timespec_equal(&inode->i_ctime, &now))
1577 sync_it |= S_CTIME;
1578
1579 if (IS_I_VERSION(inode))
1580 sync_it |= S_VERSION;
1581
1582 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return;
1584
Andi Kleence06e0b2009-09-18 13:05:48 -07001585 /* Finally allowed to write? Takes lock. */
1586 if (mnt_want_write_file(file))
1587 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Andi Kleence06e0b2009-09-18 13:05:48 -07001589 /* Only change inode inside the lock region */
1590 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001591 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001592 if (sync_it & S_CTIME)
1593 inode->i_ctime = now;
1594 if (sync_it & S_MTIME)
1595 inode->i_mtime = now;
1596 mark_inode_dirty_sync(inode);
Al Viro2a79f172011-12-09 08:06:57 -05001597 mnt_drop_write_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001599EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601int inode_needs_sync(struct inode *inode)
1602{
1603 if (IS_SYNC(inode))
1604 return 1;
1605 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1606 return 1;
1607 return 0;
1608}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609EXPORT_SYMBOL(inode_needs_sync);
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611int inode_wait(void *word)
1612{
1613 schedule();
1614 return 0;
1615}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001616EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001619 * If we try to find an inode in the inode hash while it is being
1620 * deleted, we have to wait until the filesystem completes its
1621 * deletion before reporting that it isn't found. This function waits
1622 * until the deletion _might_ have completed. Callers are responsible
1623 * to recheck inode state.
1624 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001625 * It doesn't matter if I_NEW is not set initially, a call to
Dave Chinner250df6e2011-03-22 22:23:36 +11001626 * wake_up_bit(&inode->i_state, __I_NEW) after removing from the hash list
1627 * will DTRT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 */
1629static void __wait_on_freeing_inode(struct inode *inode)
1630{
1631 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001632 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1633 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
Dave Chinner250df6e2011-03-22 22:23:36 +11001635 spin_unlock(&inode->i_lock);
Dave Chinner67a23c42011-03-22 22:23:42 +11001636 spin_unlock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 schedule();
1638 finish_wait(wq, &wait.wait);
Dave Chinner67a23c42011-03-22 22:23:42 +11001639 spin_lock(&inode_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642static __initdata unsigned long ihash_entries;
1643static int __init set_ihash_entries(char *str)
1644{
1645 if (!str)
1646 return 0;
1647 ihash_entries = simple_strtoul(str, &str, 0);
1648 return 1;
1649}
1650__setup("ihash_entries=", set_ihash_entries);
1651
1652/*
1653 * Initialize the waitqueues and inode hash table.
1654 */
1655void __init inode_init_early(void)
1656{
1657 int loop;
1658
1659 /* If hashes are distributed across NUMA nodes, defer
1660 * hash allocation until vmalloc space is available.
1661 */
1662 if (hashdist)
1663 return;
1664
1665 inode_hashtable =
1666 alloc_large_system_hash("Inode-cache",
1667 sizeof(struct hlist_head),
1668 ihash_entries,
1669 14,
1670 HASH_EARLY,
1671 &i_hash_shift,
1672 &i_hash_mask,
1673 0);
1674
1675 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1676 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1677}
1678
Denis Cheng74bf17c2007-10-16 23:26:30 -07001679void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
1681 int loop;
1682
1683 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001684 inode_cachep = kmem_cache_create("inode_cache",
1685 sizeof(struct inode),
1686 0,
1687 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1688 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001689 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 /* Hash may have been set up in inode_init_early */
1692 if (!hashdist)
1693 return;
1694
1695 inode_hashtable =
1696 alloc_large_system_hash("Inode-cache",
1697 sizeof(struct hlist_head),
1698 ihash_entries,
1699 14,
1700 0,
1701 &i_hash_shift,
1702 &i_hash_mask,
1703 0);
1704
1705 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1706 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1707}
1708
1709void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1710{
1711 inode->i_mode = mode;
1712 if (S_ISCHR(mode)) {
1713 inode->i_fop = &def_chr_fops;
1714 inode->i_rdev = rdev;
1715 } else if (S_ISBLK(mode)) {
1716 inode->i_fop = &def_blk_fops;
1717 inode->i_rdev = rdev;
1718 } else if (S_ISFIFO(mode))
1719 inode->i_fop = &def_fifo_fops;
1720 else if (S_ISSOCK(mode))
1721 inode->i_fop = &bad_sock_fops;
1722 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001723 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1724 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1725 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726}
1727EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001728
1729/**
Ben Hutchingseaae668d2011-02-15 12:48:09 +00001730 * inode_init_owner - Init uid,gid,mode for new inode according to posix standards
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001731 * @inode: New inode
1732 * @dir: Directory inode
1733 * @mode: mode of the new inode
1734 */
1735void inode_init_owner(struct inode *inode, const struct inode *dir,
Al Viro62bb1092011-07-24 23:20:18 -04001736 umode_t mode)
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001737{
1738 inode->i_uid = current_fsuid();
1739 if (dir && dir->i_mode & S_ISGID) {
1740 inode->i_gid = dir->i_gid;
1741 if (S_ISDIR(mode))
1742 mode |= S_ISGID;
1743 } else
1744 inode->i_gid = current_fsgid();
1745 inode->i_mode = mode;
1746}
1747EXPORT_SYMBOL(inode_init_owner);
Serge E. Hallyne795b712011-03-23 16:43:25 -07001748
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001749/**
1750 * inode_owner_or_capable - check current task permissions to inode
1751 * @inode: inode being checked
1752 *
1753 * Return true if current either has CAP_FOWNER to the inode, or
1754 * owns the file.
Serge E. Hallyne795b712011-03-23 16:43:25 -07001755 */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001756bool inode_owner_or_capable(const struct inode *inode)
Serge E. Hallyne795b712011-03-23 16:43:25 -07001757{
1758 struct user_namespace *ns = inode_userns(inode);
1759
1760 if (current_user_ns() == ns && current_fsuid() == inode->i_uid)
1761 return true;
1762 if (ns_capable(ns, CAP_FOWNER))
1763 return true;
1764 return false;
1765}
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001766EXPORT_SYMBOL(inode_owner_or_capable);