]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/inode.c | |
3 | * | |
4 | * (C) 1997 Linus Torvalds | |
5 | */ | |
6 | ||
1da177e4 LT |
7 | #include <linux/fs.h> |
8 | #include <linux/mm.h> | |
9 | #include <linux/dcache.h> | |
10 | #include <linux/init.h> | |
1da177e4 LT |
11 | #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> | |
88e0fbc4 | 16 | #include <linux/rwsem.h> |
1da177e4 LT |
17 | #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> | |
3be25f49 | 23 | #include <linux/fsnotify.h> |
fc33a7bb | 24 | #include <linux/mount.h> |
efaee192 | 25 | #include <linux/async.h> |
f19d4a8f | 26 | #include <linux/posix_acl.h> |
a178d202 | 27 | #include <linux/ima.h> |
1da177e4 LT |
28 | |
29 | /* | |
30 | * This is needed for the following functions: | |
31 | * - inode_has_buffers | |
1da177e4 LT |
32 | * - invalidate_bdev |
33 | * | |
34 | * FIXME: remove all knowledge of the buffer layer from this file | |
35 | */ | |
36 | #include <linux/buffer_head.h> | |
37 | ||
38 | /* | |
39 | * New inode.c implementation. | |
40 | * | |
41 | * This implementation has the basic premise of trying | |
42 | * to be extremely low-overhead and SMP-safe, yet be | |
43 | * simple enough to be "obviously correct". | |
44 | * | |
45 | * Famous last words. | |
46 | */ | |
47 | ||
48 | /* inode dynamic allocation 1999, Andrea Arcangeli <[email protected]> */ | |
49 | ||
50 | /* #define INODE_PARANOIA 1 */ | |
51 | /* #define INODE_DEBUG 1 */ | |
52 | ||
53 | /* | |
54 | * Inode lookup is no longer as critical as it used to be: | |
55 | * most of the lookups are going to be through the dcache. | |
56 | */ | |
57 | #define I_HASHBITS i_hash_shift | |
58 | #define I_HASHMASK i_hash_mask | |
59 | ||
fa3536cc ED |
60 | static unsigned int i_hash_mask __read_mostly; |
61 | static unsigned int i_hash_shift __read_mostly; | |
1da177e4 LT |
62 | |
63 | /* | |
64 | * Each inode can be on two separate lists. One is | |
65 | * the hash list of the inode, used for lookups. The | |
66 | * other linked list is the "type" list: | |
67 | * "in_use" - valid inode, i_count > 0, i_nlink > 0 | |
68 | * "dirty" - as "in_use" but also dirty | |
69 | * "unused" - valid inode, i_count = 0 | |
70 | * | |
71 | * A "dirty" list is maintained for each super block, | |
72 | * allowing for low-overhead inode sync() operations. | |
73 | */ | |
74 | ||
7ccf19a8 | 75 | static LIST_HEAD(inode_lru); |
fa3536cc | 76 | static struct hlist_head *inode_hashtable __read_mostly; |
1da177e4 LT |
77 | |
78 | /* | |
79 | * A simple spinlock to protect the list manipulations. | |
80 | * | |
81 | * NOTE! You also have to own the lock if you change | |
82 | * the i_state of an inode while it is in use.. | |
83 | */ | |
84 | DEFINE_SPINLOCK(inode_lock); | |
85 | ||
86 | /* | |
88e0fbc4 | 87 | * iprune_sem provides exclusion between the kswapd or try_to_free_pages |
1da177e4 LT |
88 | * icache shrinking path, and the umount path. Without this exclusion, |
89 | * by the time prune_icache calls iput for the inode whose pages it has | |
90 | * been invalidating, or by the time it calls clear_inode & destroy_inode | |
91 | * from its final dispose_list, the struct super_block they refer to | |
92 | * (for inode->i_sb->s_op) may already have been freed and reused. | |
88e0fbc4 NP |
93 | * |
94 | * We make this an rwsem because the fastpath is icache shrinking. In | |
95 | * some cases a filesystem may be doing a significant amount of work in | |
96 | * its inode reclaim code, so this should improve parallelism. | |
1da177e4 | 97 | */ |
88e0fbc4 | 98 | static DECLARE_RWSEM(iprune_sem); |
1da177e4 LT |
99 | |
100 | /* | |
101 | * Statistics gathering.. | |
102 | */ | |
103 | struct inodes_stat_t inodes_stat; | |
104 | ||
3e880fb5 | 105 | static DEFINE_PER_CPU(unsigned int, nr_inodes); |
cffbc8aa | 106 | |
6b3304b5 | 107 | static struct kmem_cache *inode_cachep __read_mostly; |
1da177e4 | 108 | |
3e880fb5 | 109 | static int get_nr_inodes(void) |
cffbc8aa | 110 | { |
3e880fb5 NP |
111 | int i; |
112 | int sum = 0; | |
113 | for_each_possible_cpu(i) | |
114 | sum += per_cpu(nr_inodes, i); | |
115 | return sum < 0 ? 0 : sum; | |
cffbc8aa DC |
116 | } |
117 | ||
118 | static inline int get_nr_inodes_unused(void) | |
119 | { | |
86c8749e | 120 | return inodes_stat.nr_unused; |
cffbc8aa DC |
121 | } |
122 | ||
123 | int get_nr_dirty_inodes(void) | |
124 | { | |
3e880fb5 | 125 | /* not actually dirty inodes, but a wild approximation */ |
cffbc8aa DC |
126 | int nr_dirty = get_nr_inodes() - get_nr_inodes_unused(); |
127 | return nr_dirty > 0 ? nr_dirty : 0; | |
cffbc8aa DC |
128 | } |
129 | ||
130 | /* | |
131 | * Handle nr_inode sysctl | |
132 | */ | |
133 | #ifdef CONFIG_SYSCTL | |
134 | int proc_nr_inodes(ctl_table *table, int write, | |
135 | void __user *buffer, size_t *lenp, loff_t *ppos) | |
136 | { | |
137 | inodes_stat.nr_inodes = get_nr_inodes(); | |
cffbc8aa DC |
138 | return proc_dointvec(table, write, buffer, lenp, ppos); |
139 | } | |
140 | #endif | |
141 | ||
1c0eeaf5 JE |
142 | static void wake_up_inode(struct inode *inode) |
143 | { | |
144 | /* | |
145 | * Prevent speculative execution through spin_unlock(&inode_lock); | |
146 | */ | |
147 | smp_mb(); | |
eaff8079 | 148 | wake_up_bit(&inode->i_state, __I_NEW); |
1c0eeaf5 JE |
149 | } |
150 | ||
2cb1599f DC |
151 | /** |
152 | * inode_init_always - perform inode structure intialisation | |
0bc02f3f RD |
153 | * @sb: superblock inode belongs to |
154 | * @inode: inode to initialise | |
2cb1599f DC |
155 | * |
156 | * These are initializations that need to be done on every inode | |
157 | * allocation as the fields are not initialised by slab allocation. | |
158 | */ | |
54e34621 | 159 | int inode_init_always(struct super_block *sb, struct inode *inode) |
1da177e4 | 160 | { |
f5e54d6e | 161 | static const struct address_space_operations empty_aops; |
6e1d5dcc | 162 | static const struct inode_operations empty_iops; |
99ac48f5 | 163 | static const struct file_operations empty_fops; |
6b3304b5 | 164 | struct address_space *const mapping = &inode->i_data; |
2cb1599f DC |
165 | |
166 | inode->i_sb = sb; | |
167 | inode->i_blkbits = sb->s_blocksize_bits; | |
168 | inode->i_flags = 0; | |
169 | atomic_set(&inode->i_count, 1); | |
170 | inode->i_op = &empty_iops; | |
171 | inode->i_fop = &empty_fops; | |
172 | inode->i_nlink = 1; | |
56ff5efa AV |
173 | inode->i_uid = 0; |
174 | inode->i_gid = 0; | |
2cb1599f DC |
175 | atomic_set(&inode->i_writecount, 0); |
176 | inode->i_size = 0; | |
177 | inode->i_blocks = 0; | |
178 | inode->i_bytes = 0; | |
179 | inode->i_generation = 0; | |
1da177e4 | 180 | #ifdef CONFIG_QUOTA |
2cb1599f | 181 | memset(&inode->i_dquot, 0, sizeof(inode->i_dquot)); |
1da177e4 | 182 | #endif |
2cb1599f DC |
183 | inode->i_pipe = NULL; |
184 | inode->i_bdev = NULL; | |
185 | inode->i_cdev = NULL; | |
186 | inode->i_rdev = 0; | |
187 | inode->dirtied_when = 0; | |
6146f0d5 MZ |
188 | |
189 | if (security_inode_alloc(inode)) | |
54e34621 | 190 | goto out; |
2cb1599f DC |
191 | spin_lock_init(&inode->i_lock); |
192 | lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key); | |
193 | ||
194 | mutex_init(&inode->i_mutex); | |
195 | lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key); | |
196 | ||
197 | init_rwsem(&inode->i_alloc_sem); | |
198 | lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key); | |
199 | ||
200 | mapping->a_ops = &empty_aops; | |
201 | mapping->host = inode; | |
202 | mapping->flags = 0; | |
3c1d4378 | 203 | mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE); |
2cb1599f DC |
204 | mapping->assoc_mapping = NULL; |
205 | mapping->backing_dev_info = &default_backing_dev_info; | |
206 | mapping->writeback_index = 0; | |
207 | ||
208 | /* | |
209 | * If the block_device provides a backing_dev_info for client | |
210 | * inodes then use that. Otherwise the inode share the bdev's | |
211 | * backing_dev_info. | |
212 | */ | |
213 | if (sb->s_bdev) { | |
214 | struct backing_dev_info *bdi; | |
215 | ||
2c96ce9f | 216 | bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info; |
2cb1599f DC |
217 | mapping->backing_dev_info = bdi; |
218 | } | |
219 | inode->i_private = NULL; | |
220 | inode->i_mapping = mapping; | |
f19d4a8f AV |
221 | #ifdef CONFIG_FS_POSIX_ACL |
222 | inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED; | |
223 | #endif | |
2cb1599f | 224 | |
3be25f49 EP |
225 | #ifdef CONFIG_FSNOTIFY |
226 | inode->i_fsnotify_mask = 0; | |
227 | #endif | |
228 | ||
3e880fb5 | 229 | this_cpu_inc(nr_inodes); |
cffbc8aa | 230 | |
54e34621 | 231 | return 0; |
54e34621 CH |
232 | out: |
233 | return -ENOMEM; | |
1da177e4 | 234 | } |
2cb1599f DC |
235 | EXPORT_SYMBOL(inode_init_always); |
236 | ||
237 | static struct inode *alloc_inode(struct super_block *sb) | |
238 | { | |
239 | struct inode *inode; | |
240 | ||
241 | if (sb->s_op->alloc_inode) | |
242 | inode = sb->s_op->alloc_inode(sb); | |
243 | else | |
244 | inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL); | |
245 | ||
54e34621 CH |
246 | if (!inode) |
247 | return NULL; | |
248 | ||
249 | if (unlikely(inode_init_always(sb, inode))) { | |
250 | if (inode->i_sb->s_op->destroy_inode) | |
251 | inode->i_sb->s_op->destroy_inode(inode); | |
252 | else | |
253 | kmem_cache_free(inode_cachep, inode); | |
254 | return NULL; | |
255 | } | |
256 | ||
257 | return inode; | |
2cb1599f | 258 | } |
1da177e4 | 259 | |
ff0c7d15 NP |
260 | void free_inode_nonrcu(struct inode *inode) |
261 | { | |
262 | kmem_cache_free(inode_cachep, inode); | |
263 | } | |
264 | EXPORT_SYMBOL(free_inode_nonrcu); | |
265 | ||
2e00c97e | 266 | void __destroy_inode(struct inode *inode) |
1da177e4 | 267 | { |
b7542f8c | 268 | BUG_ON(inode_has_buffers(inode)); |
1da177e4 | 269 | security_inode_free(inode); |
3be25f49 | 270 | fsnotify_inode_delete(inode); |
f19d4a8f AV |
271 | #ifdef CONFIG_FS_POSIX_ACL |
272 | if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED) | |
273 | posix_acl_release(inode->i_acl); | |
274 | if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED) | |
275 | posix_acl_release(inode->i_default_acl); | |
276 | #endif | |
3e880fb5 | 277 | this_cpu_dec(nr_inodes); |
2e00c97e CH |
278 | } |
279 | EXPORT_SYMBOL(__destroy_inode); | |
280 | ||
fa0d7e3d NP |
281 | static void i_callback(struct rcu_head *head) |
282 | { | |
283 | struct inode *inode = container_of(head, struct inode, i_rcu); | |
284 | INIT_LIST_HEAD(&inode->i_dentry); | |
285 | kmem_cache_free(inode_cachep, inode); | |
286 | } | |
287 | ||
56b0dacf | 288 | static void destroy_inode(struct inode *inode) |
2e00c97e | 289 | { |
7ccf19a8 | 290 | BUG_ON(!list_empty(&inode->i_lru)); |
2e00c97e | 291 | __destroy_inode(inode); |
1da177e4 LT |
292 | if (inode->i_sb->s_op->destroy_inode) |
293 | inode->i_sb->s_op->destroy_inode(inode); | |
294 | else | |
fa0d7e3d | 295 | call_rcu(&inode->i_rcu, i_callback); |
1da177e4 | 296 | } |
1da177e4 LT |
297 | |
298 | /* | |
299 | * These are initializations that only need to be done | |
300 | * once, because the fields are idempotent across use | |
301 | * of the inode, so let the slab aware of that. | |
302 | */ | |
303 | void inode_init_once(struct inode *inode) | |
304 | { | |
305 | memset(inode, 0, sizeof(*inode)); | |
306 | INIT_HLIST_NODE(&inode->i_hash); | |
307 | INIT_LIST_HEAD(&inode->i_dentry); | |
308 | INIT_LIST_HEAD(&inode->i_devices); | |
7ccf19a8 NP |
309 | INIT_LIST_HEAD(&inode->i_wb_list); |
310 | INIT_LIST_HEAD(&inode->i_lru); | |
1da177e4 | 311 | INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC); |
19fd6231 | 312 | spin_lock_init(&inode->i_data.tree_lock); |
1da177e4 LT |
313 | spin_lock_init(&inode->i_data.i_mmap_lock); |
314 | INIT_LIST_HEAD(&inode->i_data.private_list); | |
315 | spin_lock_init(&inode->i_data.private_lock); | |
316 | INIT_RAW_PRIO_TREE_ROOT(&inode->i_data.i_mmap); | |
317 | INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear); | |
1da177e4 | 318 | i_size_ordered_init(inode); |
3be25f49 | 319 | #ifdef CONFIG_FSNOTIFY |
e61ce867 | 320 | INIT_HLIST_HEAD(&inode->i_fsnotify_marks); |
3be25f49 | 321 | #endif |
1da177e4 | 322 | } |
1da177e4 LT |
323 | EXPORT_SYMBOL(inode_init_once); |
324 | ||
51cc5068 | 325 | static void init_once(void *foo) |
1da177e4 | 326 | { |
6b3304b5 | 327 | struct inode *inode = (struct inode *) foo; |
1da177e4 | 328 | |
a35afb83 | 329 | inode_init_once(inode); |
1da177e4 LT |
330 | } |
331 | ||
332 | /* | |
333 | * inode_lock must be held | |
334 | */ | |
6b3304b5 | 335 | void __iget(struct inode *inode) |
1da177e4 | 336 | { |
9e38d86f NP |
337 | atomic_inc(&inode->i_count); |
338 | } | |
2e147f1e | 339 | |
7de9c6ee AV |
340 | /* |
341 | * get additional reference to inode; caller must already hold one. | |
342 | */ | |
343 | void ihold(struct inode *inode) | |
344 | { | |
345 | WARN_ON(atomic_inc_return(&inode->i_count) < 2); | |
346 | } | |
347 | EXPORT_SYMBOL(ihold); | |
348 | ||
9e38d86f NP |
349 | static void inode_lru_list_add(struct inode *inode) |
350 | { | |
7ccf19a8 NP |
351 | if (list_empty(&inode->i_lru)) { |
352 | list_add(&inode->i_lru, &inode_lru); | |
86c8749e | 353 | inodes_stat.nr_unused++; |
9e38d86f NP |
354 | } |
355 | } | |
2e147f1e | 356 | |
9e38d86f NP |
357 | static void inode_lru_list_del(struct inode *inode) |
358 | { | |
7ccf19a8 NP |
359 | if (!list_empty(&inode->i_lru)) { |
360 | list_del_init(&inode->i_lru); | |
86c8749e | 361 | inodes_stat.nr_unused--; |
9e38d86f | 362 | } |
1da177e4 LT |
363 | } |
364 | ||
646ec461 CH |
365 | static inline void __inode_sb_list_add(struct inode *inode) |
366 | { | |
367 | list_add(&inode->i_sb_list, &inode->i_sb->s_inodes); | |
1da177e4 LT |
368 | } |
369 | ||
646ec461 CH |
370 | /** |
371 | * inode_sb_list_add - add inode to the superblock list of inodes | |
372 | * @inode: inode to add | |
373 | */ | |
374 | void inode_sb_list_add(struct inode *inode) | |
375 | { | |
376 | spin_lock(&inode_lock); | |
377 | __inode_sb_list_add(inode); | |
378 | spin_unlock(&inode_lock); | |
379 | } | |
380 | EXPORT_SYMBOL_GPL(inode_sb_list_add); | |
381 | ||
382 | static inline void __inode_sb_list_del(struct inode *inode) | |
383 | { | |
384 | list_del_init(&inode->i_sb_list); | |
385 | } | |
386 | ||
4c51acbc DC |
387 | static unsigned long hash(struct super_block *sb, unsigned long hashval) |
388 | { | |
389 | unsigned long tmp; | |
390 | ||
391 | tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) / | |
392 | L1_CACHE_BYTES; | |
393 | tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS); | |
394 | return tmp & I_HASHMASK; | |
395 | } | |
396 | ||
397 | /** | |
398 | * __insert_inode_hash - hash an inode | |
399 | * @inode: unhashed inode | |
400 | * @hashval: unsigned long value used to locate this object in the | |
401 | * inode_hashtable. | |
402 | * | |
403 | * Add an inode to the inode hash for this superblock. | |
404 | */ | |
405 | void __insert_inode_hash(struct inode *inode, unsigned long hashval) | |
406 | { | |
646ec461 CH |
407 | struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval); |
408 | ||
4c51acbc | 409 | spin_lock(&inode_lock); |
646ec461 | 410 | hlist_add_head(&inode->i_hash, b); |
4c51acbc DC |
411 | spin_unlock(&inode_lock); |
412 | } | |
413 | EXPORT_SYMBOL(__insert_inode_hash); | |
414 | ||
415 | /** | |
416 | * __remove_inode_hash - remove an inode from the hash | |
417 | * @inode: inode to unhash | |
418 | * | |
419 | * Remove an inode from the superblock. | |
420 | */ | |
421 | static void __remove_inode_hash(struct inode *inode) | |
422 | { | |
423 | hlist_del_init(&inode->i_hash); | |
424 | } | |
425 | ||
426 | /** | |
427 | * remove_inode_hash - remove an inode from the hash | |
428 | * @inode: inode to unhash | |
429 | * | |
430 | * Remove an inode from the superblock. | |
431 | */ | |
432 | void remove_inode_hash(struct inode *inode) | |
433 | { | |
434 | spin_lock(&inode_lock); | |
435 | hlist_del_init(&inode->i_hash); | |
436 | spin_unlock(&inode_lock); | |
437 | } | |
438 | EXPORT_SYMBOL(remove_inode_hash); | |
439 | ||
b0683aa6 AV |
440 | void end_writeback(struct inode *inode) |
441 | { | |
442 | might_sleep(); | |
443 | BUG_ON(inode->i_data.nrpages); | |
444 | BUG_ON(!list_empty(&inode->i_data.private_list)); | |
445 | BUG_ON(!(inode->i_state & I_FREEING)); | |
446 | BUG_ON(inode->i_state & I_CLEAR); | |
447 | inode_sync_wait(inode); | |
fa0d7e3d | 448 | /* don't need i_lock here, no concurrent mods to i_state */ |
b0683aa6 AV |
449 | inode->i_state = I_FREEING | I_CLEAR; |
450 | } | |
451 | EXPORT_SYMBOL(end_writeback); | |
452 | ||
644da596 | 453 | static void evict(struct inode *inode) |
b4272d4c AV |
454 | { |
455 | const struct super_operations *op = inode->i_sb->s_op; | |
456 | ||
be7ce416 AV |
457 | if (op->evict_inode) { |
458 | op->evict_inode(inode); | |
b4272d4c AV |
459 | } else { |
460 | if (inode->i_data.nrpages) | |
461 | truncate_inode_pages(&inode->i_data, 0); | |
30140837 | 462 | end_writeback(inode); |
b4272d4c | 463 | } |
661074e9 AV |
464 | if (S_ISBLK(inode->i_mode) && inode->i_bdev) |
465 | bd_forget(inode); | |
466 | if (S_ISCHR(inode->i_mode) && inode->i_cdev) | |
467 | cd_forget(inode); | |
b4272d4c AV |
468 | } |
469 | ||
1da177e4 LT |
470 | /* |
471 | * dispose_list - dispose of the contents of a local list | |
472 | * @head: the head of the list to free | |
473 | * | |
474 | * Dispose-list gets a local list with local inodes in it, so it doesn't | |
475 | * need to worry about list corruption and SMP locks. | |
476 | */ | |
477 | static void dispose_list(struct list_head *head) | |
478 | { | |
1da177e4 LT |
479 | while (!list_empty(head)) { |
480 | struct inode *inode; | |
481 | ||
7ccf19a8 NP |
482 | inode = list_first_entry(head, struct inode, i_lru); |
483 | list_del_init(&inode->i_lru); | |
1da177e4 | 484 | |
644da596 | 485 | evict(inode); |
4120db47 AB |
486 | |
487 | spin_lock(&inode_lock); | |
4c51acbc | 488 | __remove_inode_hash(inode); |
646ec461 | 489 | __inode_sb_list_del(inode); |
4120db47 AB |
490 | spin_unlock(&inode_lock); |
491 | ||
492 | wake_up_inode(inode); | |
1da177e4 | 493 | destroy_inode(inode); |
1da177e4 | 494 | } |
1da177e4 LT |
495 | } |
496 | ||
63997e98 AV |
497 | /** |
498 | * evict_inodes - evict all evictable inodes for a superblock | |
499 | * @sb: superblock to operate on | |
500 | * | |
501 | * Make sure that no inodes with zero refcount are retained. This is | |
502 | * called by superblock shutdown after having MS_ACTIVE flag removed, | |
503 | * so any inode reaching zero refcount during or after that call will | |
504 | * be immediately evicted. | |
1da177e4 | 505 | */ |
63997e98 | 506 | void evict_inodes(struct super_block *sb) |
1da177e4 | 507 | { |
63997e98 AV |
508 | struct inode *inode, *next; |
509 | LIST_HEAD(dispose); | |
1da177e4 | 510 | |
63997e98 | 511 | down_write(&iprune_sem); |
1da177e4 | 512 | |
63997e98 AV |
513 | spin_lock(&inode_lock); |
514 | list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) { | |
515 | if (atomic_read(&inode->i_count)) | |
aabb8fdb | 516 | continue; |
63997e98 AV |
517 | |
518 | if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) { | |
519 | WARN_ON(1); | |
1da177e4 LT |
520 | continue; |
521 | } | |
63997e98 AV |
522 | |
523 | inode->i_state |= I_FREEING; | |
524 | ||
525 | /* | |
526 | * Move the inode off the IO lists and LRU once I_FREEING is | |
527 | * set so that it won't get moved back on there if it is dirty. | |
528 | */ | |
529 | list_move(&inode->i_lru, &dispose); | |
530 | list_del_init(&inode->i_wb_list); | |
531 | if (!(inode->i_state & (I_DIRTY | I_SYNC))) | |
86c8749e | 532 | inodes_stat.nr_unused--; |
1da177e4 | 533 | } |
63997e98 AV |
534 | spin_unlock(&inode_lock); |
535 | ||
536 | dispose_list(&dispose); | |
537 | up_write(&iprune_sem); | |
1da177e4 LT |
538 | } |
539 | ||
1da177e4 | 540 | /** |
a0318786 CH |
541 | * invalidate_inodes - attempt to free all inodes on a superblock |
542 | * @sb: superblock to operate on | |
1da177e4 | 543 | * |
a0318786 CH |
544 | * Attempts to free all inodes for a given superblock. If there were any |
545 | * busy inodes return a non-zero value, else zero. | |
1da177e4 | 546 | */ |
6b3304b5 | 547 | int invalidate_inodes(struct super_block *sb) |
1da177e4 | 548 | { |
cffbc8aa | 549 | int busy = 0; |
a0318786 CH |
550 | struct inode *inode, *next; |
551 | LIST_HEAD(dispose); | |
1da177e4 | 552 | |
88e0fbc4 | 553 | down_write(&iprune_sem); |
a0318786 | 554 | |
1da177e4 | 555 | spin_lock(&inode_lock); |
a0318786 | 556 | list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) { |
63997e98 | 557 | if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) |
aabb8fdb | 558 | continue; |
99a38919 CH |
559 | if (atomic_read(&inode->i_count)) { |
560 | busy = 1; | |
1da177e4 LT |
561 | continue; |
562 | } | |
99a38919 | 563 | |
99a38919 | 564 | inode->i_state |= I_FREEING; |
7ccf19a8 NP |
565 | |
566 | /* | |
567 | * Move the inode off the IO lists and LRU once I_FREEING is | |
568 | * set so that it won't get moved back on there if it is dirty. | |
569 | */ | |
a0318786 | 570 | list_move(&inode->i_lru, &dispose); |
7ccf19a8 | 571 | list_del_init(&inode->i_wb_list); |
99a38919 | 572 | if (!(inode->i_state & (I_DIRTY | I_SYNC))) |
86c8749e | 573 | inodes_stat.nr_unused--; |
1da177e4 | 574 | } |
1da177e4 LT |
575 | spin_unlock(&inode_lock); |
576 | ||
a0318786 | 577 | dispose_list(&dispose); |
88e0fbc4 | 578 | up_write(&iprune_sem); |
1da177e4 LT |
579 | |
580 | return busy; | |
581 | } | |
1da177e4 LT |
582 | |
583 | static int can_unuse(struct inode *inode) | |
584 | { | |
9e38d86f | 585 | if (inode->i_state & ~I_REFERENCED) |
1da177e4 LT |
586 | return 0; |
587 | if (inode_has_buffers(inode)) | |
588 | return 0; | |
589 | if (atomic_read(&inode->i_count)) | |
590 | return 0; | |
591 | if (inode->i_data.nrpages) | |
592 | return 0; | |
593 | return 1; | |
594 | } | |
595 | ||
596 | /* | |
9e38d86f NP |
597 | * Scan `goal' inodes on the unused list for freeable ones. They are moved to a |
598 | * temporary list and then are freed outside inode_lock by dispose_list(). | |
1da177e4 LT |
599 | * |
600 | * Any inodes which are pinned purely because of attached pagecache have their | |
9e38d86f NP |
601 | * pagecache removed. If the inode has metadata buffers attached to |
602 | * mapping->private_list then try to remove them. | |
1da177e4 | 603 | * |
9e38d86f NP |
604 | * If the inode has the I_REFERENCED flag set, then it means that it has been |
605 | * used recently - the flag is set in iput_final(). When we encounter such an | |
606 | * inode, clear the flag and move it to the back of the LRU so it gets another | |
607 | * pass through the LRU before it gets reclaimed. This is necessary because of | |
608 | * the fact we are doing lazy LRU updates to minimise lock contention so the | |
609 | * LRU does not have strict ordering. Hence we don't want to reclaim inodes | |
610 | * with this flag set because they are the inodes that are out of order. | |
1da177e4 LT |
611 | */ |
612 | static void prune_icache(int nr_to_scan) | |
613 | { | |
614 | LIST_HEAD(freeable); | |
1da177e4 LT |
615 | int nr_scanned; |
616 | unsigned long reap = 0; | |
617 | ||
88e0fbc4 | 618 | down_read(&iprune_sem); |
1da177e4 LT |
619 | spin_lock(&inode_lock); |
620 | for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) { | |
621 | struct inode *inode; | |
622 | ||
7ccf19a8 | 623 | if (list_empty(&inode_lru)) |
1da177e4 LT |
624 | break; |
625 | ||
7ccf19a8 | 626 | inode = list_entry(inode_lru.prev, struct inode, i_lru); |
1da177e4 | 627 | |
9e38d86f NP |
628 | /* |
629 | * Referenced or dirty inodes are still in use. Give them | |
630 | * another pass through the LRU as we canot reclaim them now. | |
631 | */ | |
632 | if (atomic_read(&inode->i_count) || | |
633 | (inode->i_state & ~I_REFERENCED)) { | |
7ccf19a8 | 634 | list_del_init(&inode->i_lru); |
86c8749e | 635 | inodes_stat.nr_unused--; |
9e38d86f NP |
636 | continue; |
637 | } | |
638 | ||
639 | /* recently referenced inodes get one more pass */ | |
640 | if (inode->i_state & I_REFERENCED) { | |
7ccf19a8 | 641 | list_move(&inode->i_lru, &inode_lru); |
9e38d86f | 642 | inode->i_state &= ~I_REFERENCED; |
1da177e4 LT |
643 | continue; |
644 | } | |
645 | if (inode_has_buffers(inode) || inode->i_data.nrpages) { | |
646 | __iget(inode); | |
647 | spin_unlock(&inode_lock); | |
648 | if (remove_inode_buffers(inode)) | |
fc0ecff6 AM |
649 | reap += invalidate_mapping_pages(&inode->i_data, |
650 | 0, -1); | |
1da177e4 LT |
651 | iput(inode); |
652 | spin_lock(&inode_lock); | |
653 | ||
7ccf19a8 NP |
654 | if (inode != list_entry(inode_lru.next, |
655 | struct inode, i_lru)) | |
1da177e4 LT |
656 | continue; /* wrong inode or list_empty */ |
657 | if (!can_unuse(inode)) | |
658 | continue; | |
659 | } | |
7ef0d737 | 660 | WARN_ON(inode->i_state & I_NEW); |
1da177e4 | 661 | inode->i_state |= I_FREEING; |
7ccf19a8 NP |
662 | |
663 | /* | |
664 | * Move the inode off the IO lists and LRU once I_FREEING is | |
665 | * set so that it won't get moved back on there if it is dirty. | |
666 | */ | |
667 | list_move(&inode->i_lru, &freeable); | |
668 | list_del_init(&inode->i_wb_list); | |
86c8749e | 669 | inodes_stat.nr_unused--; |
1da177e4 | 670 | } |
f8891e5e CL |
671 | if (current_is_kswapd()) |
672 | __count_vm_events(KSWAPD_INODESTEAL, reap); | |
673 | else | |
674 | __count_vm_events(PGINODESTEAL, reap); | |
1da177e4 LT |
675 | spin_unlock(&inode_lock); |
676 | ||
677 | dispose_list(&freeable); | |
88e0fbc4 | 678 | up_read(&iprune_sem); |
1da177e4 LT |
679 | } |
680 | ||
681 | /* | |
682 | * shrink_icache_memory() will attempt to reclaim some unused inodes. Here, | |
683 | * "unused" means that no dentries are referring to the inodes: the files are | |
684 | * not open and the dcache references to those inodes have already been | |
685 | * reclaimed. | |
686 | * | |
687 | * This function is passed the number of inodes to scan, and it returns the | |
688 | * total number of remaining possibly-reclaimable inodes. | |
689 | */ | |
7f8275d0 | 690 | static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask) |
1da177e4 LT |
691 | { |
692 | if (nr) { | |
693 | /* | |
694 | * Nasty deadlock avoidance. We may hold various FS locks, | |
695 | * and we don't want to recurse into the FS that called us | |
696 | * in clear_inode() and friends.. | |
6b3304b5 | 697 | */ |
1da177e4 LT |
698 | if (!(gfp_mask & __GFP_FS)) |
699 | return -1; | |
700 | prune_icache(nr); | |
701 | } | |
cffbc8aa | 702 | return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure; |
1da177e4 LT |
703 | } |
704 | ||
8e1f936b RR |
705 | static struct shrinker icache_shrinker = { |
706 | .shrink = shrink_icache_memory, | |
707 | .seeks = DEFAULT_SEEKS, | |
708 | }; | |
709 | ||
1da177e4 LT |
710 | static void __wait_on_freeing_inode(struct inode *inode); |
711 | /* | |
712 | * Called with the inode lock held. | |
1da177e4 | 713 | */ |
6b3304b5 MK |
714 | static struct inode *find_inode(struct super_block *sb, |
715 | struct hlist_head *head, | |
716 | int (*test)(struct inode *, void *), | |
717 | void *data) | |
1da177e4 LT |
718 | { |
719 | struct hlist_node *node; | |
6b3304b5 | 720 | struct inode *inode = NULL; |
1da177e4 LT |
721 | |
722 | repeat: | |
c5c8be3c | 723 | hlist_for_each_entry(inode, node, head, i_hash) { |
1da177e4 LT |
724 | if (inode->i_sb != sb) |
725 | continue; | |
726 | if (!test(inode, data)) | |
727 | continue; | |
a4ffdde6 | 728 | if (inode->i_state & (I_FREEING|I_WILL_FREE)) { |
1da177e4 LT |
729 | __wait_on_freeing_inode(inode); |
730 | goto repeat; | |
731 | } | |
f7899bd5 CH |
732 | __iget(inode); |
733 | return inode; | |
1da177e4 | 734 | } |
f7899bd5 | 735 | return NULL; |
1da177e4 LT |
736 | } |
737 | ||
738 | /* | |
739 | * find_inode_fast is the fast path version of find_inode, see the comment at | |
740 | * iget_locked for details. | |
741 | */ | |
6b3304b5 MK |
742 | static struct inode *find_inode_fast(struct super_block *sb, |
743 | struct hlist_head *head, unsigned long ino) | |
1da177e4 LT |
744 | { |
745 | struct hlist_node *node; | |
6b3304b5 | 746 | struct inode *inode = NULL; |
1da177e4 LT |
747 | |
748 | repeat: | |
c5c8be3c | 749 | hlist_for_each_entry(inode, node, head, i_hash) { |
1da177e4 LT |
750 | if (inode->i_ino != ino) |
751 | continue; | |
752 | if (inode->i_sb != sb) | |
753 | continue; | |
a4ffdde6 | 754 | if (inode->i_state & (I_FREEING|I_WILL_FREE)) { |
1da177e4 LT |
755 | __wait_on_freeing_inode(inode); |
756 | goto repeat; | |
757 | } | |
f7899bd5 CH |
758 | __iget(inode); |
759 | return inode; | |
1da177e4 | 760 | } |
f7899bd5 | 761 | return NULL; |
8290c35f DC |
762 | } |
763 | ||
f991bd2e ED |
764 | /* |
765 | * Each cpu owns a range of LAST_INO_BATCH numbers. | |
766 | * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations, | |
767 | * to renew the exhausted range. | |
8290c35f | 768 | * |
f991bd2e ED |
769 | * This does not significantly increase overflow rate because every CPU can |
770 | * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is | |
771 | * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the | |
772 | * 2^32 range, and is a worst-case. Even a 50% wastage would only increase | |
773 | * overflow rate by 2x, which does not seem too significant. | |
774 | * | |
775 | * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW | |
776 | * error if st_ino won't fit in target struct field. Use 32bit counter | |
777 | * here to attempt to avoid that. | |
8290c35f | 778 | */ |
f991bd2e ED |
779 | #define LAST_INO_BATCH 1024 |
780 | static DEFINE_PER_CPU(unsigned int, last_ino); | |
781 | ||
85fe4025 | 782 | unsigned int get_next_ino(void) |
8290c35f | 783 | { |
f991bd2e ED |
784 | unsigned int *p = &get_cpu_var(last_ino); |
785 | unsigned int res = *p; | |
8290c35f | 786 | |
f991bd2e ED |
787 | #ifdef CONFIG_SMP |
788 | if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) { | |
789 | static atomic_t shared_last_ino; | |
790 | int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino); | |
791 | ||
792 | res = next - LAST_INO_BATCH; | |
793 | } | |
794 | #endif | |
795 | ||
796 | *p = ++res; | |
797 | put_cpu_var(last_ino); | |
798 | return res; | |
8290c35f | 799 | } |
85fe4025 | 800 | EXPORT_SYMBOL(get_next_ino); |
8290c35f | 801 | |
1da177e4 LT |
802 | /** |
803 | * new_inode - obtain an inode | |
804 | * @sb: superblock | |
805 | * | |
769848c0 | 806 | * Allocates a new inode for given superblock. The default gfp_mask |
3c1d4378 | 807 | * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE. |
769848c0 MG |
808 | * If HIGHMEM pages are unsuitable or it is known that pages allocated |
809 | * for the page cache are not reclaimable or migratable, | |
810 | * mapping_set_gfp_mask() must be called with suitable flags on the | |
811 | * newly created inode's mapping | |
812 | * | |
1da177e4 LT |
813 | */ |
814 | struct inode *new_inode(struct super_block *sb) | |
815 | { | |
6b3304b5 | 816 | struct inode *inode; |
1da177e4 LT |
817 | |
818 | spin_lock_prefetch(&inode_lock); | |
6b3304b5 | 819 | |
1da177e4 LT |
820 | inode = alloc_inode(sb); |
821 | if (inode) { | |
822 | spin_lock(&inode_lock); | |
646ec461 | 823 | __inode_sb_list_add(inode); |
1da177e4 LT |
824 | inode->i_state = 0; |
825 | spin_unlock(&inode_lock); | |
826 | } | |
827 | return inode; | |
828 | } | |
1da177e4 LT |
829 | EXPORT_SYMBOL(new_inode); |
830 | ||
831 | void unlock_new_inode(struct inode *inode) | |
832 | { | |
14358e6d | 833 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
a3314a0e | 834 | if (S_ISDIR(inode->i_mode)) { |
1e89a5e1 PZ |
835 | struct file_system_type *type = inode->i_sb->s_type; |
836 | ||
9a7aa12f JK |
837 | /* Set new key only if filesystem hasn't already changed it */ |
838 | if (!lockdep_match_class(&inode->i_mutex, | |
839 | &type->i_mutex_key)) { | |
840 | /* | |
841 | * ensure nobody is actually holding i_mutex | |
842 | */ | |
843 | mutex_destroy(&inode->i_mutex); | |
844 | mutex_init(&inode->i_mutex); | |
845 | lockdep_set_class(&inode->i_mutex, | |
846 | &type->i_mutex_dir_key); | |
847 | } | |
1e89a5e1 | 848 | } |
14358e6d | 849 | #endif |
1da177e4 | 850 | /* |
eaff8079 | 851 | * This is special! We do not need the spinlock when clearing I_NEW, |
580be083 JK |
852 | * because we're guaranteed that nobody else tries to do anything about |
853 | * the state of the inode when it is locked, as we just created it (so | |
eaff8079 | 854 | * there can be no old holders that haven't tested I_NEW). |
580be083 | 855 | * However we must emit the memory barrier so that other CPUs reliably |
eaff8079 | 856 | * see the clearing of I_NEW after the other inode initialisation has |
580be083 | 857 | * completed. |
1da177e4 | 858 | */ |
580be083 | 859 | smp_mb(); |
eaff8079 CH |
860 | WARN_ON(!(inode->i_state & I_NEW)); |
861 | inode->i_state &= ~I_NEW; | |
1da177e4 LT |
862 | wake_up_inode(inode); |
863 | } | |
1da177e4 LT |
864 | EXPORT_SYMBOL(unlock_new_inode); |
865 | ||
866 | /* | |
867 | * This is called without the inode lock held.. Be careful. | |
868 | * | |
869 | * We no longer cache the sb_flags in i_flags - see fs.h | |
870 | * -- [email protected] | |
871 | */ | |
6b3304b5 MK |
872 | static struct inode *get_new_inode(struct super_block *sb, |
873 | struct hlist_head *head, | |
874 | int (*test)(struct inode *, void *), | |
875 | int (*set)(struct inode *, void *), | |
876 | void *data) | |
1da177e4 | 877 | { |
6b3304b5 | 878 | struct inode *inode; |
1da177e4 LT |
879 | |
880 | inode = alloc_inode(sb); | |
881 | if (inode) { | |
6b3304b5 | 882 | struct inode *old; |
1da177e4 LT |
883 | |
884 | spin_lock(&inode_lock); | |
885 | /* We released the lock, so.. */ | |
886 | old = find_inode(sb, head, test, data); | |
887 | if (!old) { | |
888 | if (set(inode, data)) | |
889 | goto set_failed; | |
890 | ||
646ec461 CH |
891 | hlist_add_head(&inode->i_hash, head); |
892 | __inode_sb_list_add(inode); | |
eaff8079 | 893 | inode->i_state = I_NEW; |
1da177e4 LT |
894 | spin_unlock(&inode_lock); |
895 | ||
896 | /* Return the locked inode with I_NEW set, the | |
897 | * caller is responsible for filling in the contents | |
898 | */ | |
899 | return inode; | |
900 | } | |
901 | ||
902 | /* | |
903 | * Uhhuh, somebody else created the same inode under | |
904 | * us. Use the old inode instead of the one we just | |
905 | * allocated. | |
906 | */ | |
1da177e4 LT |
907 | spin_unlock(&inode_lock); |
908 | destroy_inode(inode); | |
909 | inode = old; | |
910 | wait_on_inode(inode); | |
911 | } | |
912 | return inode; | |
913 | ||
914 | set_failed: | |
915 | spin_unlock(&inode_lock); | |
916 | destroy_inode(inode); | |
917 | return NULL; | |
918 | } | |
919 | ||
920 | /* | |
921 | * get_new_inode_fast is the fast path version of get_new_inode, see the | |
922 | * comment at iget_locked for details. | |
923 | */ | |
6b3304b5 MK |
924 | static struct inode *get_new_inode_fast(struct super_block *sb, |
925 | struct hlist_head *head, unsigned long ino) | |
1da177e4 | 926 | { |
6b3304b5 | 927 | struct inode *inode; |
1da177e4 LT |
928 | |
929 | inode = alloc_inode(sb); | |
930 | if (inode) { | |
6b3304b5 | 931 | struct inode *old; |
1da177e4 LT |
932 | |
933 | spin_lock(&inode_lock); | |
934 | /* We released the lock, so.. */ | |
935 | old = find_inode_fast(sb, head, ino); | |
936 | if (!old) { | |
937 | inode->i_ino = ino; | |
646ec461 CH |
938 | hlist_add_head(&inode->i_hash, head); |
939 | __inode_sb_list_add(inode); | |
eaff8079 | 940 | inode->i_state = I_NEW; |
1da177e4 LT |
941 | spin_unlock(&inode_lock); |
942 | ||
943 | /* Return the locked inode with I_NEW set, the | |
944 | * caller is responsible for filling in the contents | |
945 | */ | |
946 | return inode; | |
947 | } | |
948 | ||
949 | /* | |
950 | * Uhhuh, somebody else created the same inode under | |
951 | * us. Use the old inode instead of the one we just | |
952 | * allocated. | |
953 | */ | |
1da177e4 LT |
954 | spin_unlock(&inode_lock); |
955 | destroy_inode(inode); | |
956 | inode = old; | |
957 | wait_on_inode(inode); | |
958 | } | |
959 | return inode; | |
960 | } | |
961 | ||
ad5e195a CH |
962 | /* |
963 | * search the inode cache for a matching inode number. | |
964 | * If we find one, then the inode number we are trying to | |
965 | * allocate is not unique and so we should not use it. | |
966 | * | |
967 | * Returns 1 if the inode number is unique, 0 if it is not. | |
968 | */ | |
969 | static int test_inode_iunique(struct super_block *sb, unsigned long ino) | |
970 | { | |
971 | struct hlist_head *b = inode_hashtable + hash(sb, ino); | |
972 | struct hlist_node *node; | |
973 | struct inode *inode; | |
974 | ||
975 | hlist_for_each_entry(inode, node, b, i_hash) { | |
976 | if (inode->i_ino == ino && inode->i_sb == sb) | |
977 | return 0; | |
978 | } | |
979 | ||
980 | return 1; | |
981 | } | |
982 | ||
1da177e4 LT |
983 | /** |
984 | * iunique - get a unique inode number | |
985 | * @sb: superblock | |
986 | * @max_reserved: highest reserved inode number | |
987 | * | |
988 | * Obtain an inode number that is unique on the system for a given | |
989 | * superblock. This is used by file systems that have no natural | |
990 | * permanent inode numbering system. An inode number is returned that | |
991 | * is higher than the reserved limit but unique. | |
992 | * | |
993 | * BUGS: | |
994 | * With a large number of inodes live on the file system this function | |
995 | * currently becomes quite slow. | |
996 | */ | |
997 | ino_t iunique(struct super_block *sb, ino_t max_reserved) | |
998 | { | |
866b04fc JL |
999 | /* |
1000 | * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW | |
1001 | * error if st_ino won't fit in target struct field. Use 32bit counter | |
1002 | * here to attempt to avoid that. | |
1003 | */ | |
ad5e195a | 1004 | static DEFINE_SPINLOCK(iunique_lock); |
866b04fc | 1005 | static unsigned int counter; |
1da177e4 | 1006 | ino_t res; |
3361c7be | 1007 | |
1da177e4 | 1008 | spin_lock(&inode_lock); |
ad5e195a | 1009 | spin_lock(&iunique_lock); |
3361c7be JL |
1010 | do { |
1011 | if (counter <= max_reserved) | |
1012 | counter = max_reserved + 1; | |
1da177e4 | 1013 | res = counter++; |
ad5e195a CH |
1014 | } while (!test_inode_iunique(sb, res)); |
1015 | spin_unlock(&iunique_lock); | |
3361c7be | 1016 | spin_unlock(&inode_lock); |
1da177e4 | 1017 | |
3361c7be JL |
1018 | return res; |
1019 | } | |
1da177e4 LT |
1020 | EXPORT_SYMBOL(iunique); |
1021 | ||
1022 | struct inode *igrab(struct inode *inode) | |
1023 | { | |
1024 | spin_lock(&inode_lock); | |
a4ffdde6 | 1025 | if (!(inode->i_state & (I_FREEING|I_WILL_FREE))) |
1da177e4 LT |
1026 | __iget(inode); |
1027 | else | |
1028 | /* | |
1029 | * Handle the case where s_op->clear_inode is not been | |
1030 | * called yet, and somebody is calling igrab | |
1031 | * while the inode is getting freed. | |
1032 | */ | |
1033 | inode = NULL; | |
1034 | spin_unlock(&inode_lock); | |
1035 | return inode; | |
1036 | } | |
1da177e4 LT |
1037 | EXPORT_SYMBOL(igrab); |
1038 | ||
1039 | /** | |
1040 | * ifind - internal function, you want ilookup5() or iget5(). | |
1041 | * @sb: super block of file system to search | |
1042 | * @head: the head of the list to search | |
1043 | * @test: callback used for comparisons between inodes | |
1044 | * @data: opaque data pointer to pass to @test | |
88bd5121 | 1045 | * @wait: if true wait for the inode to be unlocked, if false do not |
1da177e4 LT |
1046 | * |
1047 | * ifind() searches for the inode specified by @data in the inode | |
1048 | * cache. This is a generalized version of ifind_fast() for file systems where | |
1049 | * the inode number is not sufficient for unique identification of an inode. | |
1050 | * | |
1051 | * If the inode is in the cache, the inode is returned with an incremented | |
1052 | * reference count. | |
1053 | * | |
1054 | * Otherwise NULL is returned. | |
1055 | * | |
1056 | * Note, @test is called with the inode_lock held, so can't sleep. | |
1057 | */ | |
5d2bea45 | 1058 | static struct inode *ifind(struct super_block *sb, |
1da177e4 | 1059 | struct hlist_head *head, int (*test)(struct inode *, void *), |
88bd5121 | 1060 | void *data, const int wait) |
1da177e4 LT |
1061 | { |
1062 | struct inode *inode; | |
1063 | ||
1064 | spin_lock(&inode_lock); | |
1065 | inode = find_inode(sb, head, test, data); | |
1066 | if (inode) { | |
1da177e4 | 1067 | spin_unlock(&inode_lock); |
88bd5121 AA |
1068 | if (likely(wait)) |
1069 | wait_on_inode(inode); | |
1da177e4 LT |
1070 | return inode; |
1071 | } | |
1072 | spin_unlock(&inode_lock); | |
1073 | return NULL; | |
1074 | } | |
1075 | ||
1076 | /** | |
1077 | * ifind_fast - internal function, you want ilookup() or iget(). | |
1078 | * @sb: super block of file system to search | |
1079 | * @head: head of the list to search | |
1080 | * @ino: inode number to search for | |
1081 | * | |
1082 | * ifind_fast() searches for the inode @ino in the inode cache. This is for | |
1083 | * file systems where the inode number is sufficient for unique identification | |
1084 | * of an inode. | |
1085 | * | |
1086 | * If the inode is in the cache, the inode is returned with an incremented | |
1087 | * reference count. | |
1088 | * | |
1089 | * Otherwise NULL is returned. | |
1090 | */ | |
5d2bea45 | 1091 | static struct inode *ifind_fast(struct super_block *sb, |
1da177e4 LT |
1092 | struct hlist_head *head, unsigned long ino) |
1093 | { | |
1094 | struct inode *inode; | |
1095 | ||
1096 | spin_lock(&inode_lock); | |
1097 | inode = find_inode_fast(sb, head, ino); | |
1098 | if (inode) { | |
1da177e4 LT |
1099 | spin_unlock(&inode_lock); |
1100 | wait_on_inode(inode); | |
1101 | return inode; | |
1102 | } | |
1103 | spin_unlock(&inode_lock); | |
1104 | return NULL; | |
1105 | } | |
1106 | ||
1107 | /** | |
88bd5121 | 1108 | * ilookup5_nowait - search for an inode in the inode cache |
1da177e4 LT |
1109 | * @sb: super block of file system to search |
1110 | * @hashval: hash value (usually inode number) to search for | |
1111 | * @test: callback used for comparisons between inodes | |
1112 | * @data: opaque data pointer to pass to @test | |
1113 | * | |
1114 | * ilookup5() uses ifind() to search for the inode specified by @hashval and | |
1115 | * @data in the inode cache. This is a generalized version of ilookup() for | |
1116 | * file systems where the inode number is not sufficient for unique | |
1117 | * identification of an inode. | |
1118 | * | |
1119 | * If the inode is in the cache, the inode is returned with an incremented | |
88bd5121 AA |
1120 | * reference count. Note, the inode lock is not waited upon so you have to be |
1121 | * very careful what you do with the returned inode. You probably should be | |
1122 | * using ilookup5() instead. | |
1123 | * | |
1124 | * Otherwise NULL is returned. | |
1125 | * | |
1126 | * Note, @test is called with the inode_lock held, so can't sleep. | |
1127 | */ | |
1128 | struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval, | |
1129 | int (*test)(struct inode *, void *), void *data) | |
1130 | { | |
1131 | struct hlist_head *head = inode_hashtable + hash(sb, hashval); | |
1132 | ||
1133 | return ifind(sb, head, test, data, 0); | |
1134 | } | |
88bd5121 AA |
1135 | EXPORT_SYMBOL(ilookup5_nowait); |
1136 | ||
1137 | /** | |
1138 | * ilookup5 - search for an inode in the inode cache | |
1139 | * @sb: super block of file system to search | |
1140 | * @hashval: hash value (usually inode number) to search for | |
1141 | * @test: callback used for comparisons between inodes | |
1142 | * @data: opaque data pointer to pass to @test | |
1143 | * | |
1144 | * ilookup5() uses ifind() to search for the inode specified by @hashval and | |
1145 | * @data in the inode cache. This is a generalized version of ilookup() for | |
1146 | * file systems where the inode number is not sufficient for unique | |
1147 | * identification of an inode. | |
1148 | * | |
1149 | * If the inode is in the cache, the inode lock is waited upon and the inode is | |
1150 | * returned with an incremented reference count. | |
1da177e4 LT |
1151 | * |
1152 | * Otherwise NULL is returned. | |
1153 | * | |
1154 | * Note, @test is called with the inode_lock held, so can't sleep. | |
1155 | */ | |
1156 | struct inode *ilookup5(struct super_block *sb, unsigned long hashval, | |
1157 | int (*test)(struct inode *, void *), void *data) | |
1158 | { | |
1159 | struct hlist_head *head = inode_hashtable + hash(sb, hashval); | |
1160 | ||
88bd5121 | 1161 | return ifind(sb, head, test, data, 1); |
1da177e4 | 1162 | } |
1da177e4 LT |
1163 | EXPORT_SYMBOL(ilookup5); |
1164 | ||
1165 | /** | |
1166 | * ilookup - search for an inode in the inode cache | |
1167 | * @sb: super block of file system to search | |
1168 | * @ino: inode number to search for | |
1169 | * | |
1170 | * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache. | |
1171 | * This is for file systems where the inode number is sufficient for unique | |
1172 | * identification of an inode. | |
1173 | * | |
1174 | * If the inode is in the cache, the inode is returned with an incremented | |
1175 | * reference count. | |
1176 | * | |
1177 | * Otherwise NULL is returned. | |
1178 | */ | |
1179 | struct inode *ilookup(struct super_block *sb, unsigned long ino) | |
1180 | { | |
1181 | struct hlist_head *head = inode_hashtable + hash(sb, ino); | |
1182 | ||
1183 | return ifind_fast(sb, head, ino); | |
1184 | } | |
1da177e4 LT |
1185 | EXPORT_SYMBOL(ilookup); |
1186 | ||
1187 | /** | |
1188 | * iget5_locked - obtain an inode from a mounted file system | |
1189 | * @sb: super block of file system | |
1190 | * @hashval: hash value (usually inode number) to get | |
1191 | * @test: callback used for comparisons between inodes | |
1192 | * @set: callback used to initialize a new struct inode | |
1193 | * @data: opaque data pointer to pass to @test and @set | |
1194 | * | |
1da177e4 LT |
1195 | * iget5_locked() uses ifind() to search for the inode specified by @hashval |
1196 | * and @data in the inode cache and if present it is returned with an increased | |
1197 | * reference count. This is a generalized version of iget_locked() for file | |
1198 | * systems where the inode number is not sufficient for unique identification | |
1199 | * of an inode. | |
1200 | * | |
1201 | * If the inode is not in cache, get_new_inode() is called to allocate a new | |
1202 | * inode and this is returned locked, hashed, and with the I_NEW flag set. The | |
1203 | * file system gets to fill it in before unlocking it via unlock_new_inode(). | |
1204 | * | |
1205 | * Note both @test and @set are called with the inode_lock held, so can't sleep. | |
1206 | */ | |
1207 | struct inode *iget5_locked(struct super_block *sb, unsigned long hashval, | |
1208 | int (*test)(struct inode *, void *), | |
1209 | int (*set)(struct inode *, void *), void *data) | |
1210 | { | |
1211 | struct hlist_head *head = inode_hashtable + hash(sb, hashval); | |
1212 | struct inode *inode; | |
1213 | ||
88bd5121 | 1214 | inode = ifind(sb, head, test, data, 1); |
1da177e4 LT |
1215 | if (inode) |
1216 | return inode; | |
1217 | /* | |
1218 | * get_new_inode() will do the right thing, re-trying the search | |
1219 | * in case it had to block at any point. | |
1220 | */ | |
1221 | return get_new_inode(sb, head, test, set, data); | |
1222 | } | |
1da177e4 LT |
1223 | EXPORT_SYMBOL(iget5_locked); |
1224 | ||
1225 | /** | |
1226 | * iget_locked - obtain an inode from a mounted file system | |
1227 | * @sb: super block of file system | |
1228 | * @ino: inode number to get | |
1229 | * | |
1da177e4 LT |
1230 | * iget_locked() uses ifind_fast() to search for the inode specified by @ino in |
1231 | * the inode cache and if present it is returned with an increased reference | |
1232 | * count. This is for file systems where the inode number is sufficient for | |
1233 | * unique identification of an inode. | |
1234 | * | |
1235 | * If the inode is not in cache, get_new_inode_fast() is called to allocate a | |
1236 | * new inode and this is returned locked, hashed, and with the I_NEW flag set. | |
1237 | * The file system gets to fill it in before unlocking it via | |
1238 | * unlock_new_inode(). | |
1239 | */ | |
1240 | struct inode *iget_locked(struct super_block *sb, unsigned long ino) | |
1241 | { | |
1242 | struct hlist_head *head = inode_hashtable + hash(sb, ino); | |
1243 | struct inode *inode; | |
1244 | ||
1245 | inode = ifind_fast(sb, head, ino); | |
1246 | if (inode) | |
1247 | return inode; | |
1248 | /* | |
1249 | * get_new_inode_fast() will do the right thing, re-trying the search | |
1250 | * in case it had to block at any point. | |
1251 | */ | |
1252 | return get_new_inode_fast(sb, head, ino); | |
1253 | } | |
1da177e4 LT |
1254 | EXPORT_SYMBOL(iget_locked); |
1255 | ||
261bca86 AV |
1256 | int insert_inode_locked(struct inode *inode) |
1257 | { | |
1258 | struct super_block *sb = inode->i_sb; | |
1259 | ino_t ino = inode->i_ino; | |
1260 | struct hlist_head *head = inode_hashtable + hash(sb, ino); | |
261bca86 | 1261 | |
eaff8079 | 1262 | inode->i_state |= I_NEW; |
261bca86 | 1263 | while (1) { |
72a43d63 AV |
1264 | struct hlist_node *node; |
1265 | struct inode *old = NULL; | |
261bca86 | 1266 | spin_lock(&inode_lock); |
72a43d63 AV |
1267 | hlist_for_each_entry(old, node, head, i_hash) { |
1268 | if (old->i_ino != ino) | |
1269 | continue; | |
1270 | if (old->i_sb != sb) | |
1271 | continue; | |
a4ffdde6 | 1272 | if (old->i_state & (I_FREEING|I_WILL_FREE)) |
72a43d63 AV |
1273 | continue; |
1274 | break; | |
1275 | } | |
1276 | if (likely(!node)) { | |
261bca86 AV |
1277 | hlist_add_head(&inode->i_hash, head); |
1278 | spin_unlock(&inode_lock); | |
1279 | return 0; | |
1280 | } | |
1281 | __iget(old); | |
1282 | spin_unlock(&inode_lock); | |
1283 | wait_on_inode(old); | |
1d3382cb | 1284 | if (unlikely(!inode_unhashed(old))) { |
261bca86 AV |
1285 | iput(old); |
1286 | return -EBUSY; | |
1287 | } | |
1288 | iput(old); | |
1289 | } | |
1290 | } | |
261bca86 AV |
1291 | EXPORT_SYMBOL(insert_inode_locked); |
1292 | ||
1293 | int insert_inode_locked4(struct inode *inode, unsigned long hashval, | |
1294 | int (*test)(struct inode *, void *), void *data) | |
1295 | { | |
1296 | struct super_block *sb = inode->i_sb; | |
1297 | struct hlist_head *head = inode_hashtable + hash(sb, hashval); | |
261bca86 | 1298 | |
eaff8079 | 1299 | inode->i_state |= I_NEW; |
261bca86 AV |
1300 | |
1301 | while (1) { | |
72a43d63 AV |
1302 | struct hlist_node *node; |
1303 | struct inode *old = NULL; | |
1304 | ||
261bca86 | 1305 | spin_lock(&inode_lock); |
72a43d63 AV |
1306 | hlist_for_each_entry(old, node, head, i_hash) { |
1307 | if (old->i_sb != sb) | |
1308 | continue; | |
1309 | if (!test(old, data)) | |
1310 | continue; | |
a4ffdde6 | 1311 | if (old->i_state & (I_FREEING|I_WILL_FREE)) |
72a43d63 AV |
1312 | continue; |
1313 | break; | |
1314 | } | |
1315 | if (likely(!node)) { | |
261bca86 AV |
1316 | hlist_add_head(&inode->i_hash, head); |
1317 | spin_unlock(&inode_lock); | |
1318 | return 0; | |
1319 | } | |
1320 | __iget(old); | |
1321 | spin_unlock(&inode_lock); | |
1322 | wait_on_inode(old); | |
1d3382cb | 1323 | if (unlikely(!inode_unhashed(old))) { |
261bca86 AV |
1324 | iput(old); |
1325 | return -EBUSY; | |
1326 | } | |
1327 | iput(old); | |
1328 | } | |
1329 | } | |
261bca86 AV |
1330 | EXPORT_SYMBOL(insert_inode_locked4); |
1331 | ||
1da177e4 | 1332 | |
45321ac5 AV |
1333 | int generic_delete_inode(struct inode *inode) |
1334 | { | |
1335 | return 1; | |
1336 | } | |
1337 | EXPORT_SYMBOL(generic_delete_inode); | |
1338 | ||
1da177e4 | 1339 | /* |
45321ac5 AV |
1340 | * Normal UNIX filesystem behaviour: delete the |
1341 | * inode when the usage count drops to zero, and | |
1342 | * i_nlink is zero. | |
1da177e4 | 1343 | */ |
45321ac5 | 1344 | int generic_drop_inode(struct inode *inode) |
1da177e4 | 1345 | { |
1d3382cb | 1346 | return !inode->i_nlink || inode_unhashed(inode); |
1da177e4 | 1347 | } |
45321ac5 | 1348 | EXPORT_SYMBOL_GPL(generic_drop_inode); |
1da177e4 | 1349 | |
45321ac5 AV |
1350 | /* |
1351 | * Called when we're dropping the last reference | |
1352 | * to an inode. | |
22fe4042 | 1353 | * |
45321ac5 AV |
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. | |
22fe4042 | 1359 | */ |
45321ac5 | 1360 | static void iput_final(struct inode *inode) |
1da177e4 LT |
1361 | { |
1362 | struct super_block *sb = inode->i_sb; | |
45321ac5 AV |
1363 | const struct super_operations *op = inode->i_sb->s_op; |
1364 | int drop; | |
1365 | ||
1366 | if (op && op->drop_inode) | |
1367 | drop = op->drop_inode(inode); | |
1368 | else | |
1369 | drop = generic_drop_inode(inode); | |
1da177e4 | 1370 | |
45321ac5 | 1371 | if (!drop) { |
acb0c854 | 1372 | if (sb->s_flags & MS_ACTIVE) { |
9e38d86f NP |
1373 | inode->i_state |= I_REFERENCED; |
1374 | if (!(inode->i_state & (I_DIRTY|I_SYNC))) { | |
1375 | inode_lru_list_add(inode); | |
1376 | } | |
991114c6 | 1377 | spin_unlock(&inode_lock); |
45321ac5 | 1378 | return; |
991114c6 | 1379 | } |
7ef0d737 | 1380 | WARN_ON(inode->i_state & I_NEW); |
991114c6 AV |
1381 | inode->i_state |= I_WILL_FREE; |
1382 | spin_unlock(&inode_lock); | |
1da177e4 LT |
1383 | write_inode_now(inode, 1); |
1384 | spin_lock(&inode_lock); | |
7ef0d737 | 1385 | WARN_ON(inode->i_state & I_NEW); |
991114c6 | 1386 | inode->i_state &= ~I_WILL_FREE; |
4c51acbc | 1387 | __remove_inode_hash(inode); |
1da177e4 | 1388 | } |
7ccf19a8 | 1389 | |
7ef0d737 | 1390 | WARN_ON(inode->i_state & I_NEW); |
991114c6 | 1391 | inode->i_state |= I_FREEING; |
9e38d86f NP |
1392 | |
1393 | /* | |
7ccf19a8 NP |
1394 | * Move the inode off the IO lists and LRU once I_FREEING is |
1395 | * set so that it won't get moved back on there if it is dirty. | |
9e38d86f NP |
1396 | */ |
1397 | inode_lru_list_del(inode); | |
7ccf19a8 | 1398 | list_del_init(&inode->i_wb_list); |
9e38d86f | 1399 | |
646ec461 | 1400 | __inode_sb_list_del(inode); |
1da177e4 | 1401 | spin_unlock(&inode_lock); |
644da596 | 1402 | evict(inode); |
4c51acbc | 1403 | remove_inode_hash(inode); |
7f04c26d | 1404 | wake_up_inode(inode); |
45321ac5 | 1405 | BUG_ON(inode->i_state != (I_FREEING | I_CLEAR)); |
1da177e4 LT |
1406 | destroy_inode(inode); |
1407 | } | |
1408 | ||
1da177e4 | 1409 | /** |
6b3304b5 | 1410 | * iput - put an inode |
1da177e4 LT |
1411 | * @inode: inode to put |
1412 | * | |
1413 | * Puts an inode, dropping its usage count. If the inode use count hits | |
1414 | * zero, the inode is then freed and may also be destroyed. | |
1415 | * | |
1416 | * Consequently, iput() can sleep. | |
1417 | */ | |
1418 | void iput(struct inode *inode) | |
1419 | { | |
1420 | if (inode) { | |
a4ffdde6 | 1421 | BUG_ON(inode->i_state & I_CLEAR); |
1da177e4 | 1422 | |
1da177e4 LT |
1423 | if (atomic_dec_and_lock(&inode->i_count, &inode_lock)) |
1424 | iput_final(inode); | |
1425 | } | |
1426 | } | |
1da177e4 LT |
1427 | EXPORT_SYMBOL(iput); |
1428 | ||
1429 | /** | |
1430 | * bmap - find a block number in a file | |
1431 | * @inode: inode of file | |
1432 | * @block: block to find | |
1433 | * | |
1434 | * Returns the block number on the device holding the inode that | |
1435 | * is the disk block number for the block of the file requested. | |
1436 | * That is, asked for block 4 of inode 1 the function will return the | |
6b3304b5 | 1437 | * disk block relative to the disk start that holds that block of the |
1da177e4 LT |
1438 | * file. |
1439 | */ | |
6b3304b5 | 1440 | sector_t bmap(struct inode *inode, sector_t block) |
1da177e4 LT |
1441 | { |
1442 | sector_t res = 0; | |
1443 | if (inode->i_mapping->a_ops->bmap) | |
1444 | res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block); | |
1445 | return res; | |
1446 | } | |
1da177e4 LT |
1447 | EXPORT_SYMBOL(bmap); |
1448 | ||
11ff6f05 MG |
1449 | /* |
1450 | * With relative atime, only update atime if the previous atime is | |
1451 | * earlier than either the ctime or mtime or if at least a day has | |
1452 | * passed since the last atime update. | |
1453 | */ | |
1454 | static int relatime_need_update(struct vfsmount *mnt, struct inode *inode, | |
1455 | struct timespec now) | |
1456 | { | |
1457 | ||
1458 | if (!(mnt->mnt_flags & MNT_RELATIME)) | |
1459 | return 1; | |
1460 | /* | |
1461 | * Is mtime younger than atime? If yes, update atime: | |
1462 | */ | |
1463 | if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0) | |
1464 | return 1; | |
1465 | /* | |
1466 | * Is ctime younger than atime? If yes, update atime: | |
1467 | */ | |
1468 | if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0) | |
1469 | return 1; | |
1470 | ||
1471 | /* | |
1472 | * Is the previous atime value older than a day? If yes, | |
1473 | * update atime: | |
1474 | */ | |
1475 | if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60) | |
1476 | return 1; | |
1477 | /* | |
1478 | * Good, we can skip the atime update: | |
1479 | */ | |
1480 | return 0; | |
1481 | } | |
1482 | ||
1da177e4 | 1483 | /** |
869243a0 CH |
1484 | * touch_atime - update the access time |
1485 | * @mnt: mount the inode is accessed on | |
7045f37b | 1486 | * @dentry: dentry accessed |
1da177e4 LT |
1487 | * |
1488 | * Update the accessed time on an inode and mark it for writeback. | |
1489 | * This function automatically handles read only file systems and media, | |
1490 | * as well as the "noatime" flag and inode specific "noatime" markers. | |
1491 | */ | |
869243a0 | 1492 | void touch_atime(struct vfsmount *mnt, struct dentry *dentry) |
1da177e4 | 1493 | { |
869243a0 | 1494 | struct inode *inode = dentry->d_inode; |
1da177e4 LT |
1495 | struct timespec now; |
1496 | ||
cdb70f3f | 1497 | if (inode->i_flags & S_NOATIME) |
b12536c2 | 1498 | return; |
37756ced | 1499 | if (IS_NOATIME(inode)) |
b12536c2 | 1500 | return; |
b2276138 | 1501 | if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode)) |
b12536c2 | 1502 | return; |
47ae32d6 | 1503 | |
cdb70f3f | 1504 | if (mnt->mnt_flags & MNT_NOATIME) |
b12536c2 | 1505 | return; |
cdb70f3f | 1506 | if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)) |
b12536c2 | 1507 | return; |
1da177e4 LT |
1508 | |
1509 | now = current_fs_time(inode->i_sb); | |
11ff6f05 MG |
1510 | |
1511 | if (!relatime_need_update(mnt, inode, now)) | |
b12536c2 | 1512 | return; |
11ff6f05 | 1513 | |
47ae32d6 | 1514 | if (timespec_equal(&inode->i_atime, &now)) |
b12536c2 AK |
1515 | return; |
1516 | ||
1517 | if (mnt_want_write(mnt)) | |
1518 | return; | |
47ae32d6 VH |
1519 | |
1520 | inode->i_atime = now; | |
1521 | mark_inode_dirty_sync(inode); | |
cdb70f3f | 1522 | mnt_drop_write(mnt); |
1da177e4 | 1523 | } |
869243a0 | 1524 | EXPORT_SYMBOL(touch_atime); |
1da177e4 LT |
1525 | |
1526 | /** | |
870f4817 CH |
1527 | * file_update_time - update mtime and ctime time |
1528 | * @file: file accessed | |
1da177e4 | 1529 | * |
870f4817 CH |
1530 | * Update the mtime and ctime members of an inode and mark the inode |
1531 | * for writeback. Note that this function is meant exclusively for | |
1532 | * usage in the file write path of filesystems, and filesystems may | |
1533 | * choose to explicitly ignore update via this function with the | |
2eadfc0e | 1534 | * S_NOCMTIME inode flag, e.g. for network filesystem where these |
870f4817 | 1535 | * timestamps are handled by the server. |
1da177e4 LT |
1536 | */ |
1537 | ||
870f4817 | 1538 | void file_update_time(struct file *file) |
1da177e4 | 1539 | { |
0f7fc9e4 | 1540 | struct inode *inode = file->f_path.dentry->d_inode; |
1da177e4 | 1541 | struct timespec now; |
ce06e0b2 | 1542 | enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0; |
1da177e4 | 1543 | |
ce06e0b2 | 1544 | /* First try to exhaust all avenues to not sync */ |
1da177e4 LT |
1545 | if (IS_NOCMTIME(inode)) |
1546 | return; | |
20ddee2c | 1547 | |
1da177e4 | 1548 | now = current_fs_time(inode->i_sb); |
ce06e0b2 AK |
1549 | if (!timespec_equal(&inode->i_mtime, &now)) |
1550 | sync_it = S_MTIME; | |
1da177e4 | 1551 | |
ce06e0b2 AK |
1552 | if (!timespec_equal(&inode->i_ctime, &now)) |
1553 | sync_it |= S_CTIME; | |
870f4817 | 1554 | |
ce06e0b2 AK |
1555 | if (IS_I_VERSION(inode)) |
1556 | sync_it |= S_VERSION; | |
7a224228 | 1557 | |
ce06e0b2 AK |
1558 | if (!sync_it) |
1559 | return; | |
1560 | ||
1561 | /* Finally allowed to write? Takes lock. */ | |
1562 | if (mnt_want_write_file(file)) | |
1563 | return; | |
1564 | ||
1565 | /* Only change inode inside the lock region */ | |
1566 | if (sync_it & S_VERSION) | |
1567 | inode_inc_iversion(inode); | |
1568 | if (sync_it & S_CTIME) | |
1569 | inode->i_ctime = now; | |
1570 | if (sync_it & S_MTIME) | |
1571 | inode->i_mtime = now; | |
1572 | mark_inode_dirty_sync(inode); | |
20ddee2c | 1573 | mnt_drop_write(file->f_path.mnt); |
1da177e4 | 1574 | } |
870f4817 | 1575 | EXPORT_SYMBOL(file_update_time); |
1da177e4 LT |
1576 | |
1577 | int inode_needs_sync(struct inode *inode) | |
1578 | { | |
1579 | if (IS_SYNC(inode)) | |
1580 | return 1; | |
1581 | if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode)) | |
1582 | return 1; | |
1583 | return 0; | |
1584 | } | |
1da177e4 LT |
1585 | EXPORT_SYMBOL(inode_needs_sync); |
1586 | ||
1da177e4 LT |
1587 | int inode_wait(void *word) |
1588 | { | |
1589 | schedule(); | |
1590 | return 0; | |
1591 | } | |
d44dab8d | 1592 | EXPORT_SYMBOL(inode_wait); |
1da177e4 LT |
1593 | |
1594 | /* | |
168a9fd6 MS |
1595 | * If we try to find an inode in the inode hash while it is being |
1596 | * deleted, we have to wait until the filesystem completes its | |
1597 | * deletion before reporting that it isn't found. This function waits | |
1598 | * until the deletion _might_ have completed. Callers are responsible | |
1599 | * to recheck inode state. | |
1600 | * | |
eaff8079 | 1601 | * It doesn't matter if I_NEW is not set initially, a call to |
168a9fd6 MS |
1602 | * wake_up_inode() after removing from the hash list will DTRT. |
1603 | * | |
1da177e4 LT |
1604 | * This is called with inode_lock held. |
1605 | */ | |
1606 | static void __wait_on_freeing_inode(struct inode *inode) | |
1607 | { | |
1608 | wait_queue_head_t *wq; | |
eaff8079 CH |
1609 | DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW); |
1610 | wq = bit_waitqueue(&inode->i_state, __I_NEW); | |
1da177e4 LT |
1611 | prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE); |
1612 | spin_unlock(&inode_lock); | |
1613 | schedule(); | |
1614 | finish_wait(wq, &wait.wait); | |
1615 | spin_lock(&inode_lock); | |
1616 | } | |
1617 | ||
1da177e4 LT |
1618 | static __initdata unsigned long ihash_entries; |
1619 | static int __init set_ihash_entries(char *str) | |
1620 | { | |
1621 | if (!str) | |
1622 | return 0; | |
1623 | ihash_entries = simple_strtoul(str, &str, 0); | |
1624 | return 1; | |
1625 | } | |
1626 | __setup("ihash_entries=", set_ihash_entries); | |
1627 | ||
1628 | /* | |
1629 | * Initialize the waitqueues and inode hash table. | |
1630 | */ | |
1631 | void __init inode_init_early(void) | |
1632 | { | |
1633 | int loop; | |
1634 | ||
1635 | /* If hashes are distributed across NUMA nodes, defer | |
1636 | * hash allocation until vmalloc space is available. | |
1637 | */ | |
1638 | if (hashdist) | |
1639 | return; | |
1640 | ||
1641 | inode_hashtable = | |
1642 | alloc_large_system_hash("Inode-cache", | |
1643 | sizeof(struct hlist_head), | |
1644 | ihash_entries, | |
1645 | 14, | |
1646 | HASH_EARLY, | |
1647 | &i_hash_shift, | |
1648 | &i_hash_mask, | |
1649 | 0); | |
1650 | ||
1651 | for (loop = 0; loop < (1 << i_hash_shift); loop++) | |
1652 | INIT_HLIST_HEAD(&inode_hashtable[loop]); | |
1653 | } | |
1654 | ||
74bf17cf | 1655 | void __init inode_init(void) |
1da177e4 LT |
1656 | { |
1657 | int loop; | |
1658 | ||
1659 | /* inode slab cache */ | |
b0196009 PJ |
1660 | inode_cachep = kmem_cache_create("inode_cache", |
1661 | sizeof(struct inode), | |
1662 | 0, | |
1663 | (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC| | |
1664 | SLAB_MEM_SPREAD), | |
20c2df83 | 1665 | init_once); |
8e1f936b | 1666 | register_shrinker(&icache_shrinker); |
1da177e4 LT |
1667 | |
1668 | /* Hash may have been set up in inode_init_early */ | |
1669 | if (!hashdist) | |
1670 | return; | |
1671 | ||
1672 | inode_hashtable = | |
1673 | alloc_large_system_hash("Inode-cache", | |
1674 | sizeof(struct hlist_head), | |
1675 | ihash_entries, | |
1676 | 14, | |
1677 | 0, | |
1678 | &i_hash_shift, | |
1679 | &i_hash_mask, | |
1680 | 0); | |
1681 | ||
1682 | for (loop = 0; loop < (1 << i_hash_shift); loop++) | |
1683 | INIT_HLIST_HEAD(&inode_hashtable[loop]); | |
1684 | } | |
1685 | ||
1686 | void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev) | |
1687 | { | |
1688 | inode->i_mode = mode; | |
1689 | if (S_ISCHR(mode)) { | |
1690 | inode->i_fop = &def_chr_fops; | |
1691 | inode->i_rdev = rdev; | |
1692 | } else if (S_ISBLK(mode)) { | |
1693 | inode->i_fop = &def_blk_fops; | |
1694 | inode->i_rdev = rdev; | |
1695 | } else if (S_ISFIFO(mode)) | |
1696 | inode->i_fop = &def_fifo_fops; | |
1697 | else if (S_ISSOCK(mode)) | |
1698 | inode->i_fop = &bad_sock_fops; | |
1699 | else | |
af0d9ae8 MK |
1700 | printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for" |
1701 | " inode %s:%lu\n", mode, inode->i_sb->s_id, | |
1702 | inode->i_ino); | |
1da177e4 LT |
1703 | } |
1704 | EXPORT_SYMBOL(init_special_inode); | |
a1bd120d DM |
1705 | |
1706 | /** | |
1707 | * Init uid,gid,mode for new inode according to posix standards | |
1708 | * @inode: New inode | |
1709 | * @dir: Directory inode | |
1710 | * @mode: mode of the new inode | |
1711 | */ | |
1712 | void inode_init_owner(struct inode *inode, const struct inode *dir, | |
1713 | mode_t mode) | |
1714 | { | |
1715 | inode->i_uid = current_fsuid(); | |
1716 | if (dir && dir->i_mode & S_ISGID) { | |
1717 | inode->i_gid = dir->i_gid; | |
1718 | if (S_ISDIR(mode)) | |
1719 | mode |= S_ISGID; | |
1720 | } else | |
1721 | inode->i_gid = current_fsgid(); | |
1722 | inode->i_mode = mode; | |
1723 | } | |
1724 | EXPORT_SYMBOL(inode_init_owner); |