In get_super() and user_get_super() restarts are unconditional
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / dcache.c
CommitLineData
1da177e4
LT
1/*
2 * fs/dcache.c
3 *
4 * Complete reimplementation
5 * (C) 1997 Thomas Schoebel-Theuer,
6 * with heavy changes by Linus Torvalds
7 */
8
9/*
10 * Notes on the allocation strategy:
11 *
12 * The dcache is a master of the icache - whenever a dcache entry
13 * exists, the inode will always exist. "iput()" is done either when
14 * the dcache entry is deleted or garbage collected.
15 */
16
1da177e4
LT
17#include <linux/syscalls.h>
18#include <linux/string.h>
19#include <linux/mm.h>
20#include <linux/fs.h>
7a91bf7f 21#include <linux/fsnotify.h>
1da177e4
LT
22#include <linux/slab.h>
23#include <linux/init.h>
1da177e4
LT
24#include <linux/hash.h>
25#include <linux/cache.h>
26#include <linux/module.h>
27#include <linux/mount.h>
28#include <linux/file.h>
29#include <asm/uaccess.h>
30#include <linux/security.h>
31#include <linux/seqlock.h>
32#include <linux/swap.h>
33#include <linux/bootmem.h>
5ad4e53b 34#include <linux/fs_struct.h>
613afbf8 35#include <linux/hardirq.h>
07f3f05c 36#include "internal.h"
1da177e4 37
fa3536cc 38int sysctl_vfs_cache_pressure __read_mostly = 100;
1da177e4
LT
39EXPORT_SYMBOL_GPL(sysctl_vfs_cache_pressure);
40
41 __cacheline_aligned_in_smp DEFINE_SPINLOCK(dcache_lock);
74c3cbe3 42__cacheline_aligned_in_smp DEFINE_SEQLOCK(rename_lock);
1da177e4
LT
43
44EXPORT_SYMBOL(dcache_lock);
45
e18b890b 46static struct kmem_cache *dentry_cache __read_mostly;
1da177e4
LT
47
48#define DNAME_INLINE_LEN (sizeof(struct dentry)-offsetof(struct dentry,d_iname))
49
50/*
51 * This is the single most critical data structure when it comes
52 * to the dcache: the hashtable for lookups. Somebody should try
53 * to make this good - I've just made it work.
54 *
55 * This hash-function tries to avoid losing too many bits of hash
56 * information, yet avoid using a prime hash-size or similar.
57 */
58#define D_HASHBITS d_hash_shift
59#define D_HASHMASK d_hash_mask
60
fa3536cc
ED
61static unsigned int d_hash_mask __read_mostly;
62static unsigned int d_hash_shift __read_mostly;
63static struct hlist_head *dentry_hashtable __read_mostly;
1da177e4
LT
64
65/* Statistics gathering. */
66struct dentry_stat_t dentry_stat = {
67 .age_limit = 45,
68};
69
b3423415 70static void __d_free(struct dentry *dentry)
1da177e4 71{
fd217f4d 72 WARN_ON(!list_empty(&dentry->d_alias));
1da177e4
LT
73 if (dname_external(dentry))
74 kfree(dentry->d_name.name);
75 kmem_cache_free(dentry_cache, dentry);
76}
77
b3423415
ED
78static void d_callback(struct rcu_head *head)
79{
80 struct dentry * dentry = container_of(head, struct dentry, d_u.d_rcu);
81 __d_free(dentry);
82}
83
1da177e4
LT
84/*
85 * no dcache_lock, please. The caller must decrement dentry_stat.nr_dentry
86 * inside dcache_lock.
87 */
88static void d_free(struct dentry *dentry)
89{
90 if (dentry->d_op && dentry->d_op->d_release)
91 dentry->d_op->d_release(dentry);
b3423415 92 /* if dentry was never inserted into hash, immediate free is OK */
e8462caa 93 if (hlist_unhashed(&dentry->d_hash))
b3423415
ED
94 __d_free(dentry);
95 else
96 call_rcu(&dentry->d_u.d_rcu, d_callback);
1da177e4
LT
97}
98
99/*
100 * Release the dentry's inode, using the filesystem
101 * d_iput() operation if defined.
1da177e4 102 */
858119e1 103static void dentry_iput(struct dentry * dentry)
31f3e0b3
MS
104 __releases(dentry->d_lock)
105 __releases(dcache_lock)
1da177e4
LT
106{
107 struct inode *inode = dentry->d_inode;
108 if (inode) {
109 dentry->d_inode = NULL;
110 list_del_init(&dentry->d_alias);
111 spin_unlock(&dentry->d_lock);
112 spin_unlock(&dcache_lock);
f805fbda
LT
113 if (!inode->i_nlink)
114 fsnotify_inoderemove(inode);
1da177e4
LT
115 if (dentry->d_op && dentry->d_op->d_iput)
116 dentry->d_op->d_iput(dentry, inode);
117 else
118 iput(inode);
119 } else {
120 spin_unlock(&dentry->d_lock);
121 spin_unlock(&dcache_lock);
122 }
123}
124
da3bbdd4
KM
125/*
126 * dentry_lru_(add|add_tail|del|del_init) must be called with dcache_lock held.
127 */
128static void dentry_lru_add(struct dentry *dentry)
129{
130 list_add(&dentry->d_lru, &dentry->d_sb->s_dentry_lru);
131 dentry->d_sb->s_nr_dentry_unused++;
132 dentry_stat.nr_unused++;
133}
134
135static void dentry_lru_add_tail(struct dentry *dentry)
136{
137 list_add_tail(&dentry->d_lru, &dentry->d_sb->s_dentry_lru);
138 dentry->d_sb->s_nr_dentry_unused++;
139 dentry_stat.nr_unused++;
140}
141
142static void dentry_lru_del(struct dentry *dentry)
143{
144 if (!list_empty(&dentry->d_lru)) {
145 list_del(&dentry->d_lru);
146 dentry->d_sb->s_nr_dentry_unused--;
147 dentry_stat.nr_unused--;
148 }
149}
150
151static void dentry_lru_del_init(struct dentry *dentry)
152{
153 if (likely(!list_empty(&dentry->d_lru))) {
154 list_del_init(&dentry->d_lru);
155 dentry->d_sb->s_nr_dentry_unused--;
156 dentry_stat.nr_unused--;
157 }
158}
159
d52b9086
MS
160/**
161 * d_kill - kill dentry and return parent
162 * @dentry: dentry to kill
163 *
31f3e0b3 164 * The dentry must already be unhashed and removed from the LRU.
d52b9086
MS
165 *
166 * If this is the root of the dentry tree, return NULL.
167 */
168static struct dentry *d_kill(struct dentry *dentry)
31f3e0b3
MS
169 __releases(dentry->d_lock)
170 __releases(dcache_lock)
d52b9086
MS
171{
172 struct dentry *parent;
173
174 list_del(&dentry->d_u.d_child);
175 dentry_stat.nr_dentry--; /* For d_free, below */
176 /*drops the locks, at that point nobody can reach this dentry */
177 dentry_iput(dentry);
871c0067
OH
178 if (IS_ROOT(dentry))
179 parent = NULL;
180 else
181 parent = dentry->d_parent;
d52b9086 182 d_free(dentry);
871c0067 183 return parent;
d52b9086
MS
184}
185
1da177e4
LT
186/*
187 * This is dput
188 *
189 * This is complicated by the fact that we do not want to put
190 * dentries that are no longer on any hash chain on the unused
191 * list: we'd much rather just get rid of them immediately.
192 *
193 * However, that implies that we have to traverse the dentry
194 * tree upwards to the parents which might _also_ now be
195 * scheduled for deletion (it may have been only waiting for
196 * its last child to go away).
197 *
198 * This tail recursion is done by hand as we don't want to depend
199 * on the compiler to always get this right (gcc generally doesn't).
200 * Real recursion would eat up our stack space.
201 */
202
203/*
204 * dput - release a dentry
205 * @dentry: dentry to release
206 *
207 * Release a dentry. This will drop the usage count and if appropriate
208 * call the dentry unlink method as well as removing it from the queues and
209 * releasing its resources. If the parent dentries were scheduled for release
210 * they too may now get deleted.
211 *
212 * no dcache lock, please.
213 */
214
215void dput(struct dentry *dentry)
216{
217 if (!dentry)
218 return;
219
220repeat:
221 if (atomic_read(&dentry->d_count) == 1)
222 might_sleep();
223 if (!atomic_dec_and_lock(&dentry->d_count, &dcache_lock))
224 return;
225
226 spin_lock(&dentry->d_lock);
227 if (atomic_read(&dentry->d_count)) {
228 spin_unlock(&dentry->d_lock);
229 spin_unlock(&dcache_lock);
230 return;
231 }
232
233 /*
234 * AV: ->d_delete() is _NOT_ allowed to block now.
235 */
236 if (dentry->d_op && dentry->d_op->d_delete) {
237 if (dentry->d_op->d_delete(dentry))
238 goto unhash_it;
239 }
240 /* Unreachable? Get rid of it */
241 if (d_unhashed(dentry))
242 goto kill_it;
243 if (list_empty(&dentry->d_lru)) {
244 dentry->d_flags |= DCACHE_REFERENCED;
da3bbdd4 245 dentry_lru_add(dentry);
1da177e4
LT
246 }
247 spin_unlock(&dentry->d_lock);
248 spin_unlock(&dcache_lock);
249 return;
250
251unhash_it:
252 __d_drop(dentry);
d52b9086 253kill_it:
da3bbdd4
KM
254 /* if dentry was on the d_lru list delete it from there */
255 dentry_lru_del(dentry);
d52b9086
MS
256 dentry = d_kill(dentry);
257 if (dentry)
258 goto repeat;
1da177e4 259}
ec4f8605 260EXPORT_SYMBOL(dput);
1da177e4
LT
261
262/**
263 * d_invalidate - invalidate a dentry
264 * @dentry: dentry to invalidate
265 *
266 * Try to invalidate the dentry if it turns out to be
267 * possible. If there are other dentries that can be
268 * reached through this one we can't delete it and we
269 * return -EBUSY. On success we return 0.
270 *
271 * no dcache lock.
272 */
273
274int d_invalidate(struct dentry * dentry)
275{
276 /*
277 * If it's already been dropped, return OK.
278 */
279 spin_lock(&dcache_lock);
280 if (d_unhashed(dentry)) {
281 spin_unlock(&dcache_lock);
282 return 0;
283 }
284 /*
285 * Check whether to do a partial shrink_dcache
286 * to get rid of unused child entries.
287 */
288 if (!list_empty(&dentry->d_subdirs)) {
289 spin_unlock(&dcache_lock);
290 shrink_dcache_parent(dentry);
291 spin_lock(&dcache_lock);
292 }
293
294 /*
295 * Somebody else still using it?
296 *
297 * If it's a directory, we can't drop it
298 * for fear of somebody re-populating it
299 * with children (even though dropping it
300 * would make it unreachable from the root,
301 * we might still populate it if it was a
302 * working directory or similar).
303 */
304 spin_lock(&dentry->d_lock);
305 if (atomic_read(&dentry->d_count) > 1) {
306 if (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode)) {
307 spin_unlock(&dentry->d_lock);
308 spin_unlock(&dcache_lock);
309 return -EBUSY;
310 }
311 }
312
313 __d_drop(dentry);
314 spin_unlock(&dentry->d_lock);
315 spin_unlock(&dcache_lock);
316 return 0;
317}
ec4f8605 318EXPORT_SYMBOL(d_invalidate);
1da177e4
LT
319
320/* This should be called _only_ with dcache_lock held */
321
322static inline struct dentry * __dget_locked(struct dentry *dentry)
323{
324 atomic_inc(&dentry->d_count);
da3bbdd4 325 dentry_lru_del_init(dentry);
1da177e4
LT
326 return dentry;
327}
328
329struct dentry * dget_locked(struct dentry *dentry)
330{
331 return __dget_locked(dentry);
332}
ec4f8605 333EXPORT_SYMBOL(dget_locked);
1da177e4
LT
334
335/**
336 * d_find_alias - grab a hashed alias of inode
337 * @inode: inode in question
338 * @want_discon: flag, used by d_splice_alias, to request
339 * that only a DISCONNECTED alias be returned.
340 *
341 * If inode has a hashed alias, or is a directory and has any alias,
342 * acquire the reference to alias and return it. Otherwise return NULL.
343 * Notice that if inode is a directory there can be only one alias and
344 * it can be unhashed only if it has no children, or if it is the root
345 * of a filesystem.
346 *
21c0d8fd 347 * If the inode has an IS_ROOT, DCACHE_DISCONNECTED alias, then prefer
1da177e4 348 * any other hashed alias over that one unless @want_discon is set,
21c0d8fd 349 * in which case only return an IS_ROOT, DCACHE_DISCONNECTED alias.
1da177e4
LT
350 */
351
352static struct dentry * __d_find_alias(struct inode *inode, int want_discon)
353{
354 struct list_head *head, *next, *tmp;
355 struct dentry *alias, *discon_alias=NULL;
356
357 head = &inode->i_dentry;
358 next = inode->i_dentry.next;
359 while (next != head) {
360 tmp = next;
361 next = tmp->next;
362 prefetch(next);
363 alias = list_entry(tmp, struct dentry, d_alias);
364 if (S_ISDIR(inode->i_mode) || !d_unhashed(alias)) {
21c0d8fd
N
365 if (IS_ROOT(alias) &&
366 (alias->d_flags & DCACHE_DISCONNECTED))
1da177e4
LT
367 discon_alias = alias;
368 else if (!want_discon) {
369 __dget_locked(alias);
370 return alias;
371 }
372 }
373 }
374 if (discon_alias)
375 __dget_locked(discon_alias);
376 return discon_alias;
377}
378
379struct dentry * d_find_alias(struct inode *inode)
380{
214fda1f
DH
381 struct dentry *de = NULL;
382
383 if (!list_empty(&inode->i_dentry)) {
384 spin_lock(&dcache_lock);
385 de = __d_find_alias(inode, 0);
386 spin_unlock(&dcache_lock);
387 }
1da177e4
LT
388 return de;
389}
ec4f8605 390EXPORT_SYMBOL(d_find_alias);
1da177e4
LT
391
392/*
393 * Try to kill dentries associated with this inode.
394 * WARNING: you must own a reference to inode.
395 */
396void d_prune_aliases(struct inode *inode)
397{
0cdca3f9 398 struct dentry *dentry;
1da177e4
LT
399restart:
400 spin_lock(&dcache_lock);
0cdca3f9 401 list_for_each_entry(dentry, &inode->i_dentry, d_alias) {
1da177e4
LT
402 spin_lock(&dentry->d_lock);
403 if (!atomic_read(&dentry->d_count)) {
404 __dget_locked(dentry);
405 __d_drop(dentry);
406 spin_unlock(&dentry->d_lock);
407 spin_unlock(&dcache_lock);
408 dput(dentry);
409 goto restart;
410 }
411 spin_unlock(&dentry->d_lock);
412 }
413 spin_unlock(&dcache_lock);
414}
ec4f8605 415EXPORT_SYMBOL(d_prune_aliases);
1da177e4
LT
416
417/*
d702ccb3
AM
418 * Throw away a dentry - free the inode, dput the parent. This requires that
419 * the LRU list has already been removed.
420 *
85864e10
MS
421 * Try to prune ancestors as well. This is necessary to prevent
422 * quadratic behavior of shrink_dcache_parent(), but is also expected
423 * to be beneficial in reducing dentry cache fragmentation.
1da177e4 424 */
85864e10 425static void prune_one_dentry(struct dentry * dentry)
31f3e0b3
MS
426 __releases(dentry->d_lock)
427 __releases(dcache_lock)
428 __acquires(dcache_lock)
1da177e4 429{
1da177e4 430 __d_drop(dentry);
d52b9086 431 dentry = d_kill(dentry);
d52b9086
MS
432
433 /*
434 * Prune ancestors. Locking is simpler than in dput(),
435 * because dcache_lock needs to be taken anyway.
436 */
1da177e4 437 spin_lock(&dcache_lock);
d52b9086
MS
438 while (dentry) {
439 if (!atomic_dec_and_lock(&dentry->d_count, &dentry->d_lock))
440 return;
441
442 if (dentry->d_op && dentry->d_op->d_delete)
443 dentry->d_op->d_delete(dentry);
da3bbdd4 444 dentry_lru_del_init(dentry);
d52b9086
MS
445 __d_drop(dentry);
446 dentry = d_kill(dentry);
447 spin_lock(&dcache_lock);
448 }
1da177e4
LT
449}
450
da3bbdd4
KM
451/*
452 * Shrink the dentry LRU on a given superblock.
453 * @sb : superblock to shrink dentry LRU.
454 * @count: If count is NULL, we prune all dentries on superblock.
455 * @flags: If flags is non-zero, we need to do special processing based on
456 * which flags are set. This means we don't need to maintain multiple
457 * similar copies of this loop.
1da177e4 458 */
da3bbdd4 459static void __shrink_dcache_sb(struct super_block *sb, int *count, int flags)
1da177e4 460{
da3bbdd4
KM
461 LIST_HEAD(referenced);
462 LIST_HEAD(tmp);
463 struct dentry *dentry;
464 int cnt = 0;
1da177e4 465
da3bbdd4
KM
466 BUG_ON(!sb);
467 BUG_ON((flags & DCACHE_REFERENCED) && count == NULL);
468 spin_lock(&dcache_lock);
469 if (count != NULL)
470 /* called from prune_dcache() and shrink_dcache_parent() */
471 cnt = *count;
472restart:
473 if (count == NULL)
474 list_splice_init(&sb->s_dentry_lru, &tmp);
475 else {
476 while (!list_empty(&sb->s_dentry_lru)) {
477 dentry = list_entry(sb->s_dentry_lru.prev,
478 struct dentry, d_lru);
479 BUG_ON(dentry->d_sb != sb);
480
481 spin_lock(&dentry->d_lock);
482 /*
483 * If we are honouring the DCACHE_REFERENCED flag and
484 * the dentry has this flag set, don't free it. Clear
485 * the flag and put it back on the LRU.
0feae5c4 486 */
da3bbdd4
KM
487 if ((flags & DCACHE_REFERENCED)
488 && (dentry->d_flags & DCACHE_REFERENCED)) {
489 dentry->d_flags &= ~DCACHE_REFERENCED;
c490d79b 490 list_move(&dentry->d_lru, &referenced);
da3bbdd4
KM
491 spin_unlock(&dentry->d_lock);
492 } else {
493 list_move_tail(&dentry->d_lru, &tmp);
494 spin_unlock(&dentry->d_lock);
495 cnt--;
496 if (!cnt)
497 break;
0feae5c4 498 }
f3c6ba98 499 cond_resched_lock(&dcache_lock);
0feae5c4 500 }
da3bbdd4
KM
501 }
502 while (!list_empty(&tmp)) {
503 dentry = list_entry(tmp.prev, struct dentry, d_lru);
504 dentry_lru_del_init(dentry);
505 spin_lock(&dentry->d_lock);
1da177e4
LT
506 /*
507 * We found an inuse dentry which was not removed from
da3bbdd4
KM
508 * the LRU because of laziness during lookup. Do not free
509 * it - just keep it off the LRU list.
1da177e4 510 */
da3bbdd4
KM
511 if (atomic_read(&dentry->d_count)) {
512 spin_unlock(&dentry->d_lock);
1da177e4
LT
513 continue;
514 }
da3bbdd4
KM
515 prune_one_dentry(dentry);
516 /* dentry->d_lock was dropped in prune_one_dentry() */
517 cond_resched_lock(&dcache_lock);
518 }
519 if (count == NULL && !list_empty(&sb->s_dentry_lru))
520 goto restart;
521 if (count != NULL)
522 *count = cnt;
523 if (!list_empty(&referenced))
524 list_splice(&referenced, &sb->s_dentry_lru);
525 spin_unlock(&dcache_lock);
526}
527
528/**
529 * prune_dcache - shrink the dcache
530 * @count: number of entries to try to free
531 *
532 * Shrink the dcache. This is done when we need more memory, or simply when we
533 * need to unmount something (at which point we need to unuse all dentries).
534 *
535 * This function may fail to free any resources if all the dentries are in use.
536 */
537static void prune_dcache(int count)
538{
539 struct super_block *sb;
540 int w_count;
541 int unused = dentry_stat.nr_unused;
542 int prune_ratio;
543 int pruned;
544
545 if (unused == 0 || count == 0)
546 return;
547 spin_lock(&dcache_lock);
548restart:
549 if (count >= unused)
550 prune_ratio = 1;
551 else
552 prune_ratio = unused / count;
553 spin_lock(&sb_lock);
554 list_for_each_entry(sb, &super_blocks, s_list) {
551de6f3
AV
555 if (list_empty(&sb->s_instances))
556 continue;
da3bbdd4 557 if (sb->s_nr_dentry_unused == 0)
1da177e4 558 continue;
da3bbdd4
KM
559 sb->s_count++;
560 /* Now, we reclaim unused dentrins with fairness.
561 * We reclaim them same percentage from each superblock.
562 * We calculate number of dentries to scan on this sb
563 * as follows, but the implementation is arranged to avoid
564 * overflows:
565 * number of dentries to scan on this sb =
566 * count * (number of dentries on this sb /
567 * number of dentries in the machine)
0feae5c4 568 */
da3bbdd4
KM
569 spin_unlock(&sb_lock);
570 if (prune_ratio != 1)
571 w_count = (sb->s_nr_dentry_unused / prune_ratio) + 1;
572 else
573 w_count = sb->s_nr_dentry_unused;
574 pruned = w_count;
0feae5c4 575 /*
da3bbdd4
KM
576 * We need to be sure this filesystem isn't being unmounted,
577 * otherwise we could race with generic_shutdown_super(), and
578 * end up holding a reference to an inode while the filesystem
579 * is unmounted. So we try to get s_umount, and make sure
580 * s_root isn't NULL.
0feae5c4 581 */
da3bbdd4
KM
582 if (down_read_trylock(&sb->s_umount)) {
583 if ((sb->s_root != NULL) &&
584 (!list_empty(&sb->s_dentry_lru))) {
585 spin_unlock(&dcache_lock);
586 __shrink_dcache_sb(sb, &w_count,
587 DCACHE_REFERENCED);
588 pruned -= w_count;
589 spin_lock(&dcache_lock);
0feae5c4 590 }
da3bbdd4 591 up_read(&sb->s_umount);
0feae5c4 592 }
da3bbdd4
KM
593 spin_lock(&sb_lock);
594 count -= pruned;
6eac3f93 595 /*
da3bbdd4
KM
596 * restart only when sb is no longer on the list and
597 * we have more work to do.
0feae5c4 598 */
da3bbdd4
KM
599 if (__put_super_and_need_restart(sb) && count > 0) {
600 spin_unlock(&sb_lock);
601 goto restart;
602 }
1da177e4 603 }
da3bbdd4 604 spin_unlock(&sb_lock);
1da177e4
LT
605 spin_unlock(&dcache_lock);
606}
607
1da177e4
LT
608/**
609 * shrink_dcache_sb - shrink dcache for a superblock
610 * @sb: superblock
611 *
612 * Shrink the dcache for the specified super block. This
613 * is used to free the dcache before unmounting a file
614 * system
615 */
1da177e4
LT
616void shrink_dcache_sb(struct super_block * sb)
617{
da3bbdd4 618 __shrink_dcache_sb(sb, NULL, 0);
1da177e4 619}
ec4f8605 620EXPORT_SYMBOL(shrink_dcache_sb);
1da177e4 621
c636ebdb
DH
622/*
623 * destroy a single subtree of dentries for unmount
624 * - see the comments on shrink_dcache_for_umount() for a description of the
625 * locking
626 */
627static void shrink_dcache_for_umount_subtree(struct dentry *dentry)
628{
629 struct dentry *parent;
f8713576 630 unsigned detached = 0;
c636ebdb
DH
631
632 BUG_ON(!IS_ROOT(dentry));
633
634 /* detach this root from the system */
635 spin_lock(&dcache_lock);
da3bbdd4 636 dentry_lru_del_init(dentry);
c636ebdb
DH
637 __d_drop(dentry);
638 spin_unlock(&dcache_lock);
639
640 for (;;) {
641 /* descend to the first leaf in the current subtree */
642 while (!list_empty(&dentry->d_subdirs)) {
643 struct dentry *loop;
644
645 /* this is a branch with children - detach all of them
646 * from the system in one go */
647 spin_lock(&dcache_lock);
648 list_for_each_entry(loop, &dentry->d_subdirs,
649 d_u.d_child) {
da3bbdd4 650 dentry_lru_del_init(loop);
c636ebdb
DH
651 __d_drop(loop);
652 cond_resched_lock(&dcache_lock);
653 }
654 spin_unlock(&dcache_lock);
655
656 /* move to the first child */
657 dentry = list_entry(dentry->d_subdirs.next,
658 struct dentry, d_u.d_child);
659 }
660
661 /* consume the dentries from this leaf up through its parents
662 * until we find one with children or run out altogether */
663 do {
664 struct inode *inode;
665
666 if (atomic_read(&dentry->d_count) != 0) {
667 printk(KERN_ERR
668 "BUG: Dentry %p{i=%lx,n=%s}"
669 " still in use (%d)"
670 " [unmount of %s %s]\n",
671 dentry,
672 dentry->d_inode ?
673 dentry->d_inode->i_ino : 0UL,
674 dentry->d_name.name,
675 atomic_read(&dentry->d_count),
676 dentry->d_sb->s_type->name,
677 dentry->d_sb->s_id);
678 BUG();
679 }
680
871c0067 681 if (IS_ROOT(dentry))
c636ebdb 682 parent = NULL;
871c0067
OH
683 else {
684 parent = dentry->d_parent;
c636ebdb 685 atomic_dec(&parent->d_count);
871c0067 686 }
c636ebdb
DH
687
688 list_del(&dentry->d_u.d_child);
f8713576 689 detached++;
c636ebdb
DH
690
691 inode = dentry->d_inode;
692 if (inode) {
693 dentry->d_inode = NULL;
694 list_del_init(&dentry->d_alias);
695 if (dentry->d_op && dentry->d_op->d_iput)
696 dentry->d_op->d_iput(dentry, inode);
697 else
698 iput(inode);
699 }
700
701 d_free(dentry);
702
703 /* finished when we fall off the top of the tree,
704 * otherwise we ascend to the parent and move to the
705 * next sibling if there is one */
706 if (!parent)
f8713576 707 goto out;
c636ebdb
DH
708
709 dentry = parent;
710
711 } while (list_empty(&dentry->d_subdirs));
712
713 dentry = list_entry(dentry->d_subdirs.next,
714 struct dentry, d_u.d_child);
715 }
f8713576
DH
716out:
717 /* several dentries were freed, need to correct nr_dentry */
718 spin_lock(&dcache_lock);
719 dentry_stat.nr_dentry -= detached;
720 spin_unlock(&dcache_lock);
c636ebdb
DH
721}
722
723/*
724 * destroy the dentries attached to a superblock on unmounting
725 * - we don't need to use dentry->d_lock, and only need dcache_lock when
726 * removing the dentry from the system lists and hashes because:
727 * - the superblock is detached from all mountings and open files, so the
728 * dentry trees will not be rearranged by the VFS
729 * - s_umount is write-locked, so the memory pressure shrinker will ignore
730 * any dentries belonging to this superblock that it comes across
731 * - the filesystem itself is no longer permitted to rearrange the dentries
732 * in this superblock
733 */
734void shrink_dcache_for_umount(struct super_block *sb)
735{
736 struct dentry *dentry;
737
738 if (down_read_trylock(&sb->s_umount))
739 BUG();
740
741 dentry = sb->s_root;
742 sb->s_root = NULL;
743 atomic_dec(&dentry->d_count);
744 shrink_dcache_for_umount_subtree(dentry);
745
746 while (!hlist_empty(&sb->s_anon)) {
747 dentry = hlist_entry(sb->s_anon.first, struct dentry, d_hash);
748 shrink_dcache_for_umount_subtree(dentry);
749 }
750}
751
1da177e4
LT
752/*
753 * Search for at least 1 mount point in the dentry's subdirs.
754 * We descend to the next level whenever the d_subdirs
755 * list is non-empty and continue searching.
756 */
757
758/**
759 * have_submounts - check for mounts over a dentry
760 * @parent: dentry to check.
761 *
762 * Return true if the parent or its subdirectories contain
763 * a mount point
764 */
765
766int have_submounts(struct dentry *parent)
767{
768 struct dentry *this_parent = parent;
769 struct list_head *next;
770
771 spin_lock(&dcache_lock);
772 if (d_mountpoint(parent))
773 goto positive;
774repeat:
775 next = this_parent->d_subdirs.next;
776resume:
777 while (next != &this_parent->d_subdirs) {
778 struct list_head *tmp = next;
5160ee6f 779 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
1da177e4
LT
780 next = tmp->next;
781 /* Have we found a mount point ? */
782 if (d_mountpoint(dentry))
783 goto positive;
784 if (!list_empty(&dentry->d_subdirs)) {
785 this_parent = dentry;
786 goto repeat;
787 }
788 }
789 /*
790 * All done at this level ... ascend and resume the search.
791 */
792 if (this_parent != parent) {
5160ee6f 793 next = this_parent->d_u.d_child.next;
1da177e4
LT
794 this_parent = this_parent->d_parent;
795 goto resume;
796 }
797 spin_unlock(&dcache_lock);
798 return 0; /* No mount points found in tree */
799positive:
800 spin_unlock(&dcache_lock);
801 return 1;
802}
ec4f8605 803EXPORT_SYMBOL(have_submounts);
1da177e4
LT
804
805/*
806 * Search the dentry child list for the specified parent,
807 * and move any unused dentries to the end of the unused
808 * list for prune_dcache(). We descend to the next level
809 * whenever the d_subdirs list is non-empty and continue
810 * searching.
811 *
812 * It returns zero iff there are no unused children,
813 * otherwise it returns the number of children moved to
814 * the end of the unused list. This may not be the total
815 * number of unused children, because select_parent can
816 * drop the lock and return early due to latency
817 * constraints.
818 */
819static int select_parent(struct dentry * parent)
820{
821 struct dentry *this_parent = parent;
822 struct list_head *next;
823 int found = 0;
824
825 spin_lock(&dcache_lock);
826repeat:
827 next = this_parent->d_subdirs.next;
828resume:
829 while (next != &this_parent->d_subdirs) {
830 struct list_head *tmp = next;
5160ee6f 831 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
1da177e4
LT
832 next = tmp->next;
833
da3bbdd4 834 dentry_lru_del_init(dentry);
1da177e4
LT
835 /*
836 * move only zero ref count dentries to the end
837 * of the unused list for prune_dcache
838 */
839 if (!atomic_read(&dentry->d_count)) {
da3bbdd4 840 dentry_lru_add_tail(dentry);
1da177e4
LT
841 found++;
842 }
843
844 /*
845 * We can return to the caller if we have found some (this
846 * ensures forward progress). We'll be coming back to find
847 * the rest.
848 */
849 if (found && need_resched())
850 goto out;
851
852 /*
853 * Descend a level if the d_subdirs list is non-empty.
854 */
855 if (!list_empty(&dentry->d_subdirs)) {
856 this_parent = dentry;
1da177e4
LT
857 goto repeat;
858 }
859 }
860 /*
861 * All done at this level ... ascend and resume the search.
862 */
863 if (this_parent != parent) {
5160ee6f 864 next = this_parent->d_u.d_child.next;
1da177e4 865 this_parent = this_parent->d_parent;
1da177e4
LT
866 goto resume;
867 }
868out:
869 spin_unlock(&dcache_lock);
870 return found;
871}
872
873/**
874 * shrink_dcache_parent - prune dcache
875 * @parent: parent of entries to prune
876 *
877 * Prune the dcache to remove unused children of the parent dentry.
878 */
879
880void shrink_dcache_parent(struct dentry * parent)
881{
da3bbdd4 882 struct super_block *sb = parent->d_sb;
1da177e4
LT
883 int found;
884
885 while ((found = select_parent(parent)) != 0)
da3bbdd4 886 __shrink_dcache_sb(sb, &found, 0);
1da177e4 887}
ec4f8605 888EXPORT_SYMBOL(shrink_dcache_parent);
1da177e4 889
1da177e4
LT
890/*
891 * Scan `nr' dentries and return the number which remain.
892 *
893 * We need to avoid reentering the filesystem if the caller is performing a
894 * GFP_NOFS allocation attempt. One example deadlock is:
895 *
896 * ext2_new_block->getblk->GFP->shrink_dcache_memory->prune_dcache->
897 * prune_one_dentry->dput->dentry_iput->iput->inode->i_sb->s_op->put_inode->
898 * ext2_discard_prealloc->ext2_free_blocks->lock_super->DEADLOCK.
899 *
900 * In this case we return -1 to tell the caller that we baled.
901 */
27496a8c 902static int shrink_dcache_memory(int nr, gfp_t gfp_mask)
1da177e4
LT
903{
904 if (nr) {
905 if (!(gfp_mask & __GFP_FS))
906 return -1;
da3bbdd4 907 prune_dcache(nr);
1da177e4
LT
908 }
909 return (dentry_stat.nr_unused / 100) * sysctl_vfs_cache_pressure;
910}
911
8e1f936b
RR
912static struct shrinker dcache_shrinker = {
913 .shrink = shrink_dcache_memory,
914 .seeks = DEFAULT_SEEKS,
915};
916
1da177e4
LT
917/**
918 * d_alloc - allocate a dcache entry
919 * @parent: parent of entry to allocate
920 * @name: qstr of the name
921 *
922 * Allocates a dentry. It returns %NULL if there is insufficient memory
923 * available. On a success the dentry is returned. The name passed in is
924 * copied and the copy passed in may be reused after this call.
925 */
926
927struct dentry *d_alloc(struct dentry * parent, const struct qstr *name)
928{
929 struct dentry *dentry;
930 char *dname;
931
e12ba74d 932 dentry = kmem_cache_alloc(dentry_cache, GFP_KERNEL);
1da177e4
LT
933 if (!dentry)
934 return NULL;
935
936 if (name->len > DNAME_INLINE_LEN-1) {
937 dname = kmalloc(name->len + 1, GFP_KERNEL);
938 if (!dname) {
939 kmem_cache_free(dentry_cache, dentry);
940 return NULL;
941 }
942 } else {
943 dname = dentry->d_iname;
944 }
945 dentry->d_name.name = dname;
946
947 dentry->d_name.len = name->len;
948 dentry->d_name.hash = name->hash;
949 memcpy(dname, name->name, name->len);
950 dname[name->len] = 0;
951
952 atomic_set(&dentry->d_count, 1);
953 dentry->d_flags = DCACHE_UNHASHED;
954 spin_lock_init(&dentry->d_lock);
955 dentry->d_inode = NULL;
956 dentry->d_parent = NULL;
957 dentry->d_sb = NULL;
958 dentry->d_op = NULL;
959 dentry->d_fsdata = NULL;
960 dentry->d_mounted = 0;
1da177e4
LT
961 INIT_HLIST_NODE(&dentry->d_hash);
962 INIT_LIST_HEAD(&dentry->d_lru);
963 INIT_LIST_HEAD(&dentry->d_subdirs);
964 INIT_LIST_HEAD(&dentry->d_alias);
965
966 if (parent) {
967 dentry->d_parent = dget(parent);
968 dentry->d_sb = parent->d_sb;
969 } else {
5160ee6f 970 INIT_LIST_HEAD(&dentry->d_u.d_child);
1da177e4
LT
971 }
972
973 spin_lock(&dcache_lock);
974 if (parent)
5160ee6f 975 list_add(&dentry->d_u.d_child, &parent->d_subdirs);
1da177e4
LT
976 dentry_stat.nr_dentry++;
977 spin_unlock(&dcache_lock);
978
979 return dentry;
980}
ec4f8605 981EXPORT_SYMBOL(d_alloc);
1da177e4
LT
982
983struct dentry *d_alloc_name(struct dentry *parent, const char *name)
984{
985 struct qstr q;
986
987 q.name = name;
988 q.len = strlen(name);
989 q.hash = full_name_hash(q.name, q.len);
990 return d_alloc(parent, &q);
991}
ef26ca97 992EXPORT_SYMBOL(d_alloc_name);
1da177e4 993
360da900
OH
994/* the caller must hold dcache_lock */
995static void __d_instantiate(struct dentry *dentry, struct inode *inode)
996{
997 if (inode)
998 list_add(&dentry->d_alias, &inode->i_dentry);
999 dentry->d_inode = inode;
1000 fsnotify_d_instantiate(dentry, inode);
1001}
1002
1da177e4
LT
1003/**
1004 * d_instantiate - fill in inode information for a dentry
1005 * @entry: dentry to complete
1006 * @inode: inode to attach to this dentry
1007 *
1008 * Fill in inode information in the entry.
1009 *
1010 * This turns negative dentries into productive full members
1011 * of society.
1012 *
1013 * NOTE! This assumes that the inode count has been incremented
1014 * (or otherwise set) by the caller to indicate that it is now
1015 * in use by the dcache.
1016 */
1017
1018void d_instantiate(struct dentry *entry, struct inode * inode)
1019{
28133c7b 1020 BUG_ON(!list_empty(&entry->d_alias));
1da177e4 1021 spin_lock(&dcache_lock);
360da900 1022 __d_instantiate(entry, inode);
1da177e4
LT
1023 spin_unlock(&dcache_lock);
1024 security_d_instantiate(entry, inode);
1025}
ec4f8605 1026EXPORT_SYMBOL(d_instantiate);
1da177e4
LT
1027
1028/**
1029 * d_instantiate_unique - instantiate a non-aliased dentry
1030 * @entry: dentry to instantiate
1031 * @inode: inode to attach to this dentry
1032 *
1033 * Fill in inode information in the entry. On success, it returns NULL.
1034 * If an unhashed alias of "entry" already exists, then we return the
e866cfa9 1035 * aliased dentry instead and drop one reference to inode.
1da177e4
LT
1036 *
1037 * Note that in order to avoid conflicts with rename() etc, the caller
1038 * had better be holding the parent directory semaphore.
e866cfa9
OD
1039 *
1040 * This also assumes that the inode count has been incremented
1041 * (or otherwise set) by the caller to indicate that it is now
1042 * in use by the dcache.
1da177e4 1043 */
770bfad8
DH
1044static struct dentry *__d_instantiate_unique(struct dentry *entry,
1045 struct inode *inode)
1da177e4
LT
1046{
1047 struct dentry *alias;
1048 int len = entry->d_name.len;
1049 const char *name = entry->d_name.name;
1050 unsigned int hash = entry->d_name.hash;
1051
770bfad8 1052 if (!inode) {
360da900 1053 __d_instantiate(entry, NULL);
770bfad8
DH
1054 return NULL;
1055 }
1056
1da177e4
LT
1057 list_for_each_entry(alias, &inode->i_dentry, d_alias) {
1058 struct qstr *qstr = &alias->d_name;
1059
1060 if (qstr->hash != hash)
1061 continue;
1062 if (alias->d_parent != entry->d_parent)
1063 continue;
1064 if (qstr->len != len)
1065 continue;
1066 if (memcmp(qstr->name, name, len))
1067 continue;
1068 dget_locked(alias);
1da177e4
LT
1069 return alias;
1070 }
770bfad8 1071
360da900 1072 __d_instantiate(entry, inode);
1da177e4
LT
1073 return NULL;
1074}
770bfad8
DH
1075
1076struct dentry *d_instantiate_unique(struct dentry *entry, struct inode *inode)
1077{
1078 struct dentry *result;
1079
1080 BUG_ON(!list_empty(&entry->d_alias));
1081
1082 spin_lock(&dcache_lock);
1083 result = __d_instantiate_unique(entry, inode);
1084 spin_unlock(&dcache_lock);
1085
1086 if (!result) {
1087 security_d_instantiate(entry, inode);
1088 return NULL;
1089 }
1090
1091 BUG_ON(!d_unhashed(result));
1092 iput(inode);
1093 return result;
1094}
1095
1da177e4
LT
1096EXPORT_SYMBOL(d_instantiate_unique);
1097
1098/**
1099 * d_alloc_root - allocate root dentry
1100 * @root_inode: inode to allocate the root for
1101 *
1102 * Allocate a root ("/") dentry for the inode given. The inode is
1103 * instantiated and returned. %NULL is returned if there is insufficient
1104 * memory or the inode passed is %NULL.
1105 */
1106
1107struct dentry * d_alloc_root(struct inode * root_inode)
1108{
1109 struct dentry *res = NULL;
1110
1111 if (root_inode) {
1112 static const struct qstr name = { .name = "/", .len = 1 };
1113
1114 res = d_alloc(NULL, &name);
1115 if (res) {
1116 res->d_sb = root_inode->i_sb;
1117 res->d_parent = res;
1118 d_instantiate(res, root_inode);
1119 }
1120 }
1121 return res;
1122}
ec4f8605 1123EXPORT_SYMBOL(d_alloc_root);
1da177e4
LT
1124
1125static inline struct hlist_head *d_hash(struct dentry *parent,
1126 unsigned long hash)
1127{
1128 hash += ((unsigned long) parent ^ GOLDEN_RATIO_PRIME) / L1_CACHE_BYTES;
1129 hash = hash ^ ((hash ^ GOLDEN_RATIO_PRIME) >> D_HASHBITS);
1130 return dentry_hashtable + (hash & D_HASHMASK);
1131}
1132
4ea3ada2
CH
1133/**
1134 * d_obtain_alias - find or allocate a dentry for a given inode
1135 * @inode: inode to allocate the dentry for
1136 *
1137 * Obtain a dentry for an inode resulting from NFS filehandle conversion or
1138 * similar open by handle operations. The returned dentry may be anonymous,
1139 * or may have a full name (if the inode was already in the cache).
1140 *
1141 * When called on a directory inode, we must ensure that the inode only ever
1142 * has one dentry. If a dentry is found, that is returned instead of
1143 * allocating a new one.
1144 *
1145 * On successful return, the reference to the inode has been transferred
44003728
CH
1146 * to the dentry. In case of an error the reference on the inode is released.
1147 * To make it easier to use in export operations a %NULL or IS_ERR inode may
1148 * be passed in and will be the error will be propagate to the return value,
1149 * with a %NULL @inode replaced by ERR_PTR(-ESTALE).
4ea3ada2
CH
1150 */
1151struct dentry *d_obtain_alias(struct inode *inode)
1152{
9308a612
CH
1153 static const struct qstr anonstring = { .name = "" };
1154 struct dentry *tmp;
1155 struct dentry *res;
4ea3ada2
CH
1156
1157 if (!inode)
44003728 1158 return ERR_PTR(-ESTALE);
4ea3ada2
CH
1159 if (IS_ERR(inode))
1160 return ERR_CAST(inode);
1161
9308a612
CH
1162 res = d_find_alias(inode);
1163 if (res)
1164 goto out_iput;
1165
1166 tmp = d_alloc(NULL, &anonstring);
1167 if (!tmp) {
1168 res = ERR_PTR(-ENOMEM);
1169 goto out_iput;
4ea3ada2 1170 }
9308a612
CH
1171 tmp->d_parent = tmp; /* make sure dput doesn't croak */
1172
1173 spin_lock(&dcache_lock);
1174 res = __d_find_alias(inode, 0);
1175 if (res) {
1176 spin_unlock(&dcache_lock);
1177 dput(tmp);
1178 goto out_iput;
1179 }
1180
1181 /* attach a disconnected dentry */
1182 spin_lock(&tmp->d_lock);
1183 tmp->d_sb = inode->i_sb;
1184 tmp->d_inode = inode;
1185 tmp->d_flags |= DCACHE_DISCONNECTED;
1186 tmp->d_flags &= ~DCACHE_UNHASHED;
1187 list_add(&tmp->d_alias, &inode->i_dentry);
1188 hlist_add_head(&tmp->d_hash, &inode->i_sb->s_anon);
1189 spin_unlock(&tmp->d_lock);
1190
1191 spin_unlock(&dcache_lock);
1192 return tmp;
1193
1194 out_iput:
1195 iput(inode);
1196 return res;
4ea3ada2 1197}
adc48720 1198EXPORT_SYMBOL(d_obtain_alias);
1da177e4
LT
1199
1200/**
1201 * d_splice_alias - splice a disconnected dentry into the tree if one exists
1202 * @inode: the inode which may have a disconnected dentry
1203 * @dentry: a negative dentry which we want to point to the inode.
1204 *
1205 * If inode is a directory and has a 'disconnected' dentry (i.e. IS_ROOT and
1206 * DCACHE_DISCONNECTED), then d_move that in place of the given dentry
1207 * and return it, else simply d_add the inode to the dentry and return NULL.
1208 *
1209 * This is needed in the lookup routine of any filesystem that is exportable
1210 * (via knfsd) so that we can build dcache paths to directories effectively.
1211 *
1212 * If a dentry was found and moved, then it is returned. Otherwise NULL
1213 * is returned. This matches the expected return value of ->lookup.
1214 *
1215 */
1216struct dentry *d_splice_alias(struct inode *inode, struct dentry *dentry)
1217{
1218 struct dentry *new = NULL;
1219
21c0d8fd 1220 if (inode && S_ISDIR(inode->i_mode)) {
1da177e4
LT
1221 spin_lock(&dcache_lock);
1222 new = __d_find_alias(inode, 1);
1223 if (new) {
1224 BUG_ON(!(new->d_flags & DCACHE_DISCONNECTED));
1225 spin_unlock(&dcache_lock);
1226 security_d_instantiate(new, inode);
1da177e4
LT
1227 d_move(new, dentry);
1228 iput(inode);
1229 } else {
360da900
OH
1230 /* already taking dcache_lock, so d_add() by hand */
1231 __d_instantiate(dentry, inode);
1da177e4
LT
1232 spin_unlock(&dcache_lock);
1233 security_d_instantiate(dentry, inode);
1234 d_rehash(dentry);
1235 }
1236 } else
1237 d_add(dentry, inode);
1238 return new;
1239}
ec4f8605 1240EXPORT_SYMBOL(d_splice_alias);
1da177e4 1241
9403540c
BN
1242/**
1243 * d_add_ci - lookup or allocate new dentry with case-exact name
1244 * @inode: the inode case-insensitive lookup has found
1245 * @dentry: the negative dentry that was passed to the parent's lookup func
1246 * @name: the case-exact name to be associated with the returned dentry
1247 *
1248 * This is to avoid filling the dcache with case-insensitive names to the
1249 * same inode, only the actual correct case is stored in the dcache for
1250 * case-insensitive filesystems.
1251 *
1252 * For a case-insensitive lookup match and if the the case-exact dentry
1253 * already exists in in the dcache, use it and return it.
1254 *
1255 * If no entry exists with the exact case name, allocate new dentry with
1256 * the exact case, and return the spliced entry.
1257 */
e45b590b 1258struct dentry *d_add_ci(struct dentry *dentry, struct inode *inode,
9403540c
BN
1259 struct qstr *name)
1260{
1261 int error;
1262 struct dentry *found;
1263 struct dentry *new;
1264
b6520c81
CH
1265 /*
1266 * First check if a dentry matching the name already exists,
1267 * if not go ahead and create it now.
1268 */
9403540c 1269 found = d_hash_and_lookup(dentry->d_parent, name);
9403540c
BN
1270 if (!found) {
1271 new = d_alloc(dentry->d_parent, name);
1272 if (!new) {
1273 error = -ENOMEM;
1274 goto err_out;
1275 }
b6520c81 1276
9403540c
BN
1277 found = d_splice_alias(inode, new);
1278 if (found) {
1279 dput(new);
1280 return found;
1281 }
1282 return new;
1283 }
b6520c81
CH
1284
1285 /*
1286 * If a matching dentry exists, and it's not negative use it.
1287 *
1288 * Decrement the reference count to balance the iget() done
1289 * earlier on.
1290 */
9403540c
BN
1291 if (found->d_inode) {
1292 if (unlikely(found->d_inode != inode)) {
1293 /* This can't happen because bad inodes are unhashed. */
1294 BUG_ON(!is_bad_inode(inode));
1295 BUG_ON(!is_bad_inode(found->d_inode));
1296 }
9403540c
BN
1297 iput(inode);
1298 return found;
1299 }
b6520c81 1300
9403540c
BN
1301 /*
1302 * Negative dentry: instantiate it unless the inode is a directory and
b6520c81 1303 * already has a dentry.
9403540c 1304 */
9403540c 1305 spin_lock(&dcache_lock);
b6520c81 1306 if (!S_ISDIR(inode->i_mode) || list_empty(&inode->i_dentry)) {
360da900 1307 __d_instantiate(found, inode);
9403540c
BN
1308 spin_unlock(&dcache_lock);
1309 security_d_instantiate(found, inode);
1310 return found;
1311 }
b6520c81 1312
9403540c 1313 /*
b6520c81
CH
1314 * In case a directory already has a (disconnected) entry grab a
1315 * reference to it, move it in place and use it.
9403540c
BN
1316 */
1317 new = list_entry(inode->i_dentry.next, struct dentry, d_alias);
1318 dget_locked(new);
1319 spin_unlock(&dcache_lock);
9403540c 1320 security_d_instantiate(found, inode);
9403540c 1321 d_move(new, found);
9403540c 1322 iput(inode);
9403540c 1323 dput(found);
9403540c
BN
1324 return new;
1325
1326err_out:
1327 iput(inode);
1328 return ERR_PTR(error);
1329}
ec4f8605 1330EXPORT_SYMBOL(d_add_ci);
1da177e4
LT
1331
1332/**
1333 * d_lookup - search for a dentry
1334 * @parent: parent dentry
1335 * @name: qstr of name we wish to find
1336 *
1337 * Searches the children of the parent dentry for the name in question. If
1338 * the dentry is found its reference count is incremented and the dentry
be42c4c4 1339 * is returned. The caller must use dput to free the entry when it has
1da177e4
LT
1340 * finished using it. %NULL is returned on failure.
1341 *
1342 * __d_lookup is dcache_lock free. The hash list is protected using RCU.
1343 * Memory barriers are used while updating and doing lockless traversal.
1344 * To avoid races with d_move while rename is happening, d_lock is used.
1345 *
1346 * Overflows in memcmp(), while d_move, are avoided by keeping the length
1347 * and name pointer in one structure pointed by d_qstr.
1348 *
1349 * rcu_read_lock() and rcu_read_unlock() are used to disable preemption while
1350 * lookup is going on.
1351 *
da3bbdd4 1352 * The dentry unused LRU is not updated even if lookup finds the required dentry
1da177e4
LT
1353 * in there. It is updated in places such as prune_dcache, shrink_dcache_sb,
1354 * select_parent and __dget_locked. This laziness saves lookup from dcache_lock
1355 * acquisition.
1356 *
1357 * d_lookup() is protected against the concurrent renames in some unrelated
1358 * directory using the seqlockt_t rename_lock.
1359 */
1360
1361struct dentry * d_lookup(struct dentry * parent, struct qstr * name)
1362{
1363 struct dentry * dentry = NULL;
1364 unsigned long seq;
1365
1366 do {
1367 seq = read_seqbegin(&rename_lock);
1368 dentry = __d_lookup(parent, name);
1369 if (dentry)
1370 break;
1371 } while (read_seqretry(&rename_lock, seq));
1372 return dentry;
1373}
ec4f8605 1374EXPORT_SYMBOL(d_lookup);
1da177e4
LT
1375
1376struct dentry * __d_lookup(struct dentry * parent, struct qstr * name)
1377{
1378 unsigned int len = name->len;
1379 unsigned int hash = name->hash;
1380 const unsigned char *str = name->name;
1381 struct hlist_head *head = d_hash(parent,hash);
1382 struct dentry *found = NULL;
1383 struct hlist_node *node;
665a7583 1384 struct dentry *dentry;
1da177e4
LT
1385
1386 rcu_read_lock();
1387
665a7583 1388 hlist_for_each_entry_rcu(dentry, node, head, d_hash) {
1da177e4
LT
1389 struct qstr *qstr;
1390
1da177e4
LT
1391 if (dentry->d_name.hash != hash)
1392 continue;
1393 if (dentry->d_parent != parent)
1394 continue;
1395
1396 spin_lock(&dentry->d_lock);
1397
1398 /*
1399 * Recheck the dentry after taking the lock - d_move may have
1400 * changed things. Don't bother checking the hash because we're
1401 * about to compare the whole name anyway.
1402 */
1403 if (dentry->d_parent != parent)
1404 goto next;
1405
d0185c08
LT
1406 /* non-existing due to RCU? */
1407 if (d_unhashed(dentry))
1408 goto next;
1409
1da177e4
LT
1410 /*
1411 * It is safe to compare names since d_move() cannot
1412 * change the qstr (protected by d_lock).
1413 */
1414 qstr = &dentry->d_name;
1415 if (parent->d_op && parent->d_op->d_compare) {
1416 if (parent->d_op->d_compare(parent, qstr, name))
1417 goto next;
1418 } else {
1419 if (qstr->len != len)
1420 goto next;
1421 if (memcmp(qstr->name, str, len))
1422 goto next;
1423 }
1424
d0185c08
LT
1425 atomic_inc(&dentry->d_count);
1426 found = dentry;
1da177e4
LT
1427 spin_unlock(&dentry->d_lock);
1428 break;
1429next:
1430 spin_unlock(&dentry->d_lock);
1431 }
1432 rcu_read_unlock();
1433
1434 return found;
1435}
1436
3e7e241f
EB
1437/**
1438 * d_hash_and_lookup - hash the qstr then search for a dentry
1439 * @dir: Directory to search in
1440 * @name: qstr of name we wish to find
1441 *
1442 * On hash failure or on lookup failure NULL is returned.
1443 */
1444struct dentry *d_hash_and_lookup(struct dentry *dir, struct qstr *name)
1445{
1446 struct dentry *dentry = NULL;
1447
1448 /*
1449 * Check for a fs-specific hash function. Note that we must
1450 * calculate the standard hash first, as the d_op->d_hash()
1451 * routine may choose to leave the hash value unchanged.
1452 */
1453 name->hash = full_name_hash(name->name, name->len);
1454 if (dir->d_op && dir->d_op->d_hash) {
1455 if (dir->d_op->d_hash(dir, name) < 0)
1456 goto out;
1457 }
1458 dentry = d_lookup(dir, name);
1459out:
1460 return dentry;
1461}
1462
1da177e4
LT
1463/**
1464 * d_validate - verify dentry provided from insecure source
1465 * @dentry: The dentry alleged to be valid child of @dparent
1466 * @dparent: The parent dentry (known to be valid)
1da177e4
LT
1467 *
1468 * An insecure source has sent us a dentry, here we verify it and dget() it.
1469 * This is used by ncpfs in its readdir implementation.
1470 * Zero is returned in the dentry is invalid.
1471 */
1472
1473int d_validate(struct dentry *dentry, struct dentry *dparent)
1474{
1475 struct hlist_head *base;
1476 struct hlist_node *lhp;
1477
1478 /* Check whether the ptr might be valid at all.. */
1479 if (!kmem_ptr_validate(dentry_cache, dentry))
1480 goto out;
1481
1482 if (dentry->d_parent != dparent)
1483 goto out;
1484
1485 spin_lock(&dcache_lock);
1486 base = d_hash(dparent, dentry->d_name.hash);
1487 hlist_for_each(lhp,base) {
665a7583 1488 /* hlist_for_each_entry_rcu() not required for d_hash list
1da177e4
LT
1489 * as it is parsed under dcache_lock
1490 */
1491 if (dentry == hlist_entry(lhp, struct dentry, d_hash)) {
1492 __dget_locked(dentry);
1493 spin_unlock(&dcache_lock);
1494 return 1;
1495 }
1496 }
1497 spin_unlock(&dcache_lock);
1498out:
1499 return 0;
1500}
ec4f8605 1501EXPORT_SYMBOL(d_validate);
1da177e4
LT
1502
1503/*
1504 * When a file is deleted, we have two options:
1505 * - turn this dentry into a negative dentry
1506 * - unhash this dentry and free it.
1507 *
1508 * Usually, we want to just turn this into
1509 * a negative dentry, but if anybody else is
1510 * currently using the dentry or the inode
1511 * we can't do that and we fall back on removing
1512 * it from the hash queues and waiting for
1513 * it to be deleted later when it has no users
1514 */
1515
1516/**
1517 * d_delete - delete a dentry
1518 * @dentry: The dentry to delete
1519 *
1520 * Turn the dentry into a negative dentry if possible, otherwise
1521 * remove it from the hash queues so it can be deleted later
1522 */
1523
1524void d_delete(struct dentry * dentry)
1525{
7a91bf7f 1526 int isdir = 0;
1da177e4
LT
1527 /*
1528 * Are we the only user?
1529 */
1530 spin_lock(&dcache_lock);
1531 spin_lock(&dentry->d_lock);
7a91bf7f 1532 isdir = S_ISDIR(dentry->d_inode->i_mode);
1da177e4 1533 if (atomic_read(&dentry->d_count) == 1) {
13e3c5e5 1534 dentry->d_flags &= ~DCACHE_CANT_MOUNT;
1da177e4 1535 dentry_iput(dentry);
7a91bf7f 1536 fsnotify_nameremove(dentry, isdir);
1da177e4
LT
1537 return;
1538 }
1539
1540 if (!d_unhashed(dentry))
1541 __d_drop(dentry);
1542
1543 spin_unlock(&dentry->d_lock);
1544 spin_unlock(&dcache_lock);
7a91bf7f
JM
1545
1546 fsnotify_nameremove(dentry, isdir);
1da177e4 1547}
ec4f8605 1548EXPORT_SYMBOL(d_delete);
1da177e4
LT
1549
1550static void __d_rehash(struct dentry * entry, struct hlist_head *list)
1551{
1552
1553 entry->d_flags &= ~DCACHE_UNHASHED;
1554 hlist_add_head_rcu(&entry->d_hash, list);
1555}
1556
770bfad8
DH
1557static void _d_rehash(struct dentry * entry)
1558{
1559 __d_rehash(entry, d_hash(entry->d_parent, entry->d_name.hash));
1560}
1561
1da177e4
LT
1562/**
1563 * d_rehash - add an entry back to the hash
1564 * @entry: dentry to add to the hash
1565 *
1566 * Adds a dentry to the hash according to its name.
1567 */
1568
1569void d_rehash(struct dentry * entry)
1570{
1da177e4
LT
1571 spin_lock(&dcache_lock);
1572 spin_lock(&entry->d_lock);
770bfad8 1573 _d_rehash(entry);
1da177e4
LT
1574 spin_unlock(&entry->d_lock);
1575 spin_unlock(&dcache_lock);
1576}
ec4f8605 1577EXPORT_SYMBOL(d_rehash);
1da177e4 1578
1da177e4
LT
1579/*
1580 * When switching names, the actual string doesn't strictly have to
1581 * be preserved in the target - because we're dropping the target
1582 * anyway. As such, we can just do a simple memcpy() to copy over
1583 * the new name before we switch.
1584 *
1585 * Note that we have to be a lot more careful about getting the hash
1586 * switched - we have to switch the hash value properly even if it
1587 * then no longer matches the actual (corrupted) string of the target.
1588 * The hash value has to match the hash queue that the dentry is on..
1589 */
1590static void switch_names(struct dentry *dentry, struct dentry *target)
1591{
1592 if (dname_external(target)) {
1593 if (dname_external(dentry)) {
1594 /*
1595 * Both external: swap the pointers
1596 */
9a8d5bb4 1597 swap(target->d_name.name, dentry->d_name.name);
1da177e4
LT
1598 } else {
1599 /*
1600 * dentry:internal, target:external. Steal target's
1601 * storage and make target internal.
1602 */
321bcf92
BF
1603 memcpy(target->d_iname, dentry->d_name.name,
1604 dentry->d_name.len + 1);
1da177e4
LT
1605 dentry->d_name.name = target->d_name.name;
1606 target->d_name.name = target->d_iname;
1607 }
1608 } else {
1609 if (dname_external(dentry)) {
1610 /*
1611 * dentry:external, target:internal. Give dentry's
1612 * storage to target and make dentry internal
1613 */
1614 memcpy(dentry->d_iname, target->d_name.name,
1615 target->d_name.len + 1);
1616 target->d_name.name = dentry->d_name.name;
1617 dentry->d_name.name = dentry->d_iname;
1618 } else {
1619 /*
1620 * Both are internal. Just copy target to dentry
1621 */
1622 memcpy(dentry->d_iname, target->d_name.name,
1623 target->d_name.len + 1);
dc711ca3
AV
1624 dentry->d_name.len = target->d_name.len;
1625 return;
1da177e4
LT
1626 }
1627 }
9a8d5bb4 1628 swap(dentry->d_name.len, target->d_name.len);
1da177e4
LT
1629}
1630
1631/*
1632 * We cannibalize "target" when moving dentry on top of it,
1633 * because it's going to be thrown away anyway. We could be more
1634 * polite about it, though.
1635 *
1636 * This forceful removal will result in ugly /proc output if
1637 * somebody holds a file open that got deleted due to a rename.
1638 * We could be nicer about the deleted file, and let it show
bc154b1e
BF
1639 * up under the name it had before it was deleted rather than
1640 * under the original name of the file that was moved on top of it.
1da177e4
LT
1641 */
1642
9eaef27b
TM
1643/*
1644 * d_move_locked - move a dentry
1da177e4
LT
1645 * @dentry: entry to move
1646 * @target: new dentry
1647 *
1648 * Update the dcache to reflect the move of a file name. Negative
1649 * dcache entries should not be moved in this way.
1650 */
9eaef27b 1651static void d_move_locked(struct dentry * dentry, struct dentry * target)
1da177e4
LT
1652{
1653 struct hlist_head *list;
1654
1655 if (!dentry->d_inode)
1656 printk(KERN_WARNING "VFS: moving negative dcache entry\n");
1657
1da177e4
LT
1658 write_seqlock(&rename_lock);
1659 /*
1660 * XXXX: do we really need to take target->d_lock?
1661 */
1662 if (target < dentry) {
1663 spin_lock(&target->d_lock);
a90b9c05 1664 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
1da177e4
LT
1665 } else {
1666 spin_lock(&dentry->d_lock);
a90b9c05 1667 spin_lock_nested(&target->d_lock, DENTRY_D_LOCK_NESTED);
1da177e4
LT
1668 }
1669
1670 /* Move the dentry to the target hash queue, if on different bucket */
f77e3498 1671 if (d_unhashed(dentry))
1da177e4
LT
1672 goto already_unhashed;
1673
1674 hlist_del_rcu(&dentry->d_hash);
1675
1676already_unhashed:
1677 list = d_hash(target->d_parent, target->d_name.hash);
1678 __d_rehash(dentry, list);
1679
1680 /* Unhash the target: dput() will then get rid of it */
1681 __d_drop(target);
1682
5160ee6f
ED
1683 list_del(&dentry->d_u.d_child);
1684 list_del(&target->d_u.d_child);
1da177e4
LT
1685
1686 /* Switch the names.. */
1687 switch_names(dentry, target);
9a8d5bb4 1688 swap(dentry->d_name.hash, target->d_name.hash);
1da177e4
LT
1689
1690 /* ... and switch the parents */
1691 if (IS_ROOT(dentry)) {
1692 dentry->d_parent = target->d_parent;
1693 target->d_parent = target;
5160ee6f 1694 INIT_LIST_HEAD(&target->d_u.d_child);
1da177e4 1695 } else {
9a8d5bb4 1696 swap(dentry->d_parent, target->d_parent);
1da177e4
LT
1697
1698 /* And add them back to the (new) parent lists */
5160ee6f 1699 list_add(&target->d_u.d_child, &target->d_parent->d_subdirs);
1da177e4
LT
1700 }
1701
5160ee6f 1702 list_add(&dentry->d_u.d_child, &dentry->d_parent->d_subdirs);
1da177e4 1703 spin_unlock(&target->d_lock);
c32ccd87 1704 fsnotify_d_move(dentry);
1da177e4
LT
1705 spin_unlock(&dentry->d_lock);
1706 write_sequnlock(&rename_lock);
9eaef27b
TM
1707}
1708
1709/**
1710 * d_move - move a dentry
1711 * @dentry: entry to move
1712 * @target: new dentry
1713 *
1714 * Update the dcache to reflect the move of a file name. Negative
1715 * dcache entries should not be moved in this way.
1716 */
1717
1718void d_move(struct dentry * dentry, struct dentry * target)
1719{
1720 spin_lock(&dcache_lock);
1721 d_move_locked(dentry, target);
1da177e4
LT
1722 spin_unlock(&dcache_lock);
1723}
ec4f8605 1724EXPORT_SYMBOL(d_move);
1da177e4 1725
e2761a11
OH
1726/**
1727 * d_ancestor - search for an ancestor
1728 * @p1: ancestor dentry
1729 * @p2: child dentry
1730 *
1731 * Returns the ancestor dentry of p2 which is a child of p1, if p1 is
1732 * an ancestor of p2, else NULL.
9eaef27b 1733 */
e2761a11 1734struct dentry *d_ancestor(struct dentry *p1, struct dentry *p2)
9eaef27b
TM
1735{
1736 struct dentry *p;
1737
871c0067 1738 for (p = p2; !IS_ROOT(p); p = p->d_parent) {
9eaef27b 1739 if (p->d_parent == p1)
e2761a11 1740 return p;
9eaef27b 1741 }
e2761a11 1742 return NULL;
9eaef27b
TM
1743}
1744
1745/*
1746 * This helper attempts to cope with remotely renamed directories
1747 *
1748 * It assumes that the caller is already holding
1749 * dentry->d_parent->d_inode->i_mutex and the dcache_lock
1750 *
1751 * Note: If ever the locking in lock_rename() changes, then please
1752 * remember to update this too...
9eaef27b
TM
1753 */
1754static struct dentry *__d_unalias(struct dentry *dentry, struct dentry *alias)
31f3e0b3 1755 __releases(dcache_lock)
9eaef27b
TM
1756{
1757 struct mutex *m1 = NULL, *m2 = NULL;
1758 struct dentry *ret;
1759
1760 /* If alias and dentry share a parent, then no extra locks required */
1761 if (alias->d_parent == dentry->d_parent)
1762 goto out_unalias;
1763
1764 /* Check for loops */
1765 ret = ERR_PTR(-ELOOP);
e2761a11 1766 if (d_ancestor(alias, dentry))
9eaef27b
TM
1767 goto out_err;
1768
1769 /* See lock_rename() */
1770 ret = ERR_PTR(-EBUSY);
1771 if (!mutex_trylock(&dentry->d_sb->s_vfs_rename_mutex))
1772 goto out_err;
1773 m1 = &dentry->d_sb->s_vfs_rename_mutex;
1774 if (!mutex_trylock(&alias->d_parent->d_inode->i_mutex))
1775 goto out_err;
1776 m2 = &alias->d_parent->d_inode->i_mutex;
1777out_unalias:
1778 d_move_locked(alias, dentry);
1779 ret = alias;
1780out_err:
1781 spin_unlock(&dcache_lock);
1782 if (m2)
1783 mutex_unlock(m2);
1784 if (m1)
1785 mutex_unlock(m1);
1786 return ret;
1787}
1788
770bfad8
DH
1789/*
1790 * Prepare an anonymous dentry for life in the superblock's dentry tree as a
1791 * named dentry in place of the dentry to be replaced.
1792 */
1793static void __d_materialise_dentry(struct dentry *dentry, struct dentry *anon)
1794{
1795 struct dentry *dparent, *aparent;
1796
1797 switch_names(dentry, anon);
9a8d5bb4 1798 swap(dentry->d_name.hash, anon->d_name.hash);
770bfad8
DH
1799
1800 dparent = dentry->d_parent;
1801 aparent = anon->d_parent;
1802
1803 dentry->d_parent = (aparent == anon) ? dentry : aparent;
1804 list_del(&dentry->d_u.d_child);
1805 if (!IS_ROOT(dentry))
1806 list_add(&dentry->d_u.d_child, &dentry->d_parent->d_subdirs);
1807 else
1808 INIT_LIST_HEAD(&dentry->d_u.d_child);
1809
1810 anon->d_parent = (dparent == dentry) ? anon : dparent;
1811 list_del(&anon->d_u.d_child);
1812 if (!IS_ROOT(anon))
1813 list_add(&anon->d_u.d_child, &anon->d_parent->d_subdirs);
1814 else
1815 INIT_LIST_HEAD(&anon->d_u.d_child);
1816
1817 anon->d_flags &= ~DCACHE_DISCONNECTED;
1818}
1819
1820/**
1821 * d_materialise_unique - introduce an inode into the tree
1822 * @dentry: candidate dentry
1823 * @inode: inode to bind to the dentry, to which aliases may be attached
1824 *
1825 * Introduces an dentry into the tree, substituting an extant disconnected
1826 * root directory alias in its place if there is one
1827 */
1828struct dentry *d_materialise_unique(struct dentry *dentry, struct inode *inode)
1829{
9eaef27b 1830 struct dentry *actual;
770bfad8
DH
1831
1832 BUG_ON(!d_unhashed(dentry));
1833
1834 spin_lock(&dcache_lock);
1835
1836 if (!inode) {
1837 actual = dentry;
360da900 1838 __d_instantiate(dentry, NULL);
770bfad8
DH
1839 goto found_lock;
1840 }
1841
9eaef27b
TM
1842 if (S_ISDIR(inode->i_mode)) {
1843 struct dentry *alias;
1844
1845 /* Does an aliased dentry already exist? */
1846 alias = __d_find_alias(inode, 0);
1847 if (alias) {
1848 actual = alias;
1849 /* Is this an anonymous mountpoint that we could splice
1850 * into our tree? */
1851 if (IS_ROOT(alias)) {
1852 spin_lock(&alias->d_lock);
1853 __d_materialise_dentry(dentry, alias);
1854 __d_drop(alias);
1855 goto found;
1856 }
1857 /* Nope, but we must(!) avoid directory aliasing */
1858 actual = __d_unalias(dentry, alias);
1859 if (IS_ERR(actual))
1860 dput(alias);
1861 goto out_nolock;
1862 }
770bfad8
DH
1863 }
1864
1865 /* Add a unique reference */
1866 actual = __d_instantiate_unique(dentry, inode);
1867 if (!actual)
1868 actual = dentry;
1869 else if (unlikely(!d_unhashed(actual)))
1870 goto shouldnt_be_hashed;
1871
1872found_lock:
1873 spin_lock(&actual->d_lock);
1874found:
1875 _d_rehash(actual);
1876 spin_unlock(&actual->d_lock);
1877 spin_unlock(&dcache_lock);
9eaef27b 1878out_nolock:
770bfad8
DH
1879 if (actual == dentry) {
1880 security_d_instantiate(dentry, inode);
1881 return NULL;
1882 }
1883
1884 iput(inode);
1885 return actual;
1886
770bfad8
DH
1887shouldnt_be_hashed:
1888 spin_unlock(&dcache_lock);
1889 BUG();
770bfad8 1890}
ec4f8605 1891EXPORT_SYMBOL_GPL(d_materialise_unique);
770bfad8 1892
cdd16d02 1893static int prepend(char **buffer, int *buflen, const char *str, int namelen)
6092d048
RP
1894{
1895 *buflen -= namelen;
1896 if (*buflen < 0)
1897 return -ENAMETOOLONG;
1898 *buffer -= namelen;
1899 memcpy(*buffer, str, namelen);
1900 return 0;
1901}
1902
cdd16d02
MS
1903static int prepend_name(char **buffer, int *buflen, struct qstr *name)
1904{
1905 return prepend(buffer, buflen, name->name, name->len);
1906}
1907
1da177e4 1908/**
31f3e0b3 1909 * __d_path - return the path of a dentry
9d1bc601
MS
1910 * @path: the dentry/vfsmount to report
1911 * @root: root vfsmnt/dentry (may be modified by this function)
1da177e4
LT
1912 * @buffer: buffer to return value in
1913 * @buflen: buffer length
1914 *
552ce544
LT
1915 * Convert a dentry into an ASCII path name. If the entry has been deleted
1916 * the string " (deleted)" is appended. Note that this is ambiguous.
1da177e4 1917 *
52afeefb
AV
1918 * Returns a pointer into the buffer or an error code if the
1919 * path was too long.
552ce544
LT
1920 *
1921 * "buflen" should be positive. Caller holds the dcache_lock.
9d1bc601
MS
1922 *
1923 * If path is not reachable from the supplied root, then the value of
1924 * root is changed (without modifying refcounts).
1da177e4 1925 */
9d1bc601
MS
1926char *__d_path(const struct path *path, struct path *root,
1927 char *buffer, int buflen)
1da177e4 1928{
9d1bc601
MS
1929 struct dentry *dentry = path->dentry;
1930 struct vfsmount *vfsmnt = path->mnt;
cdd16d02
MS
1931 char *end = buffer + buflen;
1932 char *retval;
6092d048 1933
be285c71 1934 spin_lock(&vfsmount_lock);
6092d048 1935 prepend(&end, &buflen, "\0", 1);
f3da392e 1936 if (d_unlinked(dentry) &&
6092d048 1937 (prepend(&end, &buflen, " (deleted)", 10) != 0))
552ce544 1938 goto Elong;
552ce544
LT
1939
1940 if (buflen < 1)
1941 goto Elong;
1942 /* Get '/' right */
1943 retval = end-1;
1944 *retval = '/';
1945
1946 for (;;) {
1da177e4
LT
1947 struct dentry * parent;
1948
329c97f0 1949 if (dentry == root->dentry && vfsmnt == root->mnt)
552ce544 1950 break;
1da177e4 1951 if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
552ce544 1952 /* Global root? */
1da177e4 1953 if (vfsmnt->mnt_parent == vfsmnt) {
1da177e4
LT
1954 goto global_root;
1955 }
1956 dentry = vfsmnt->mnt_mountpoint;
1957 vfsmnt = vfsmnt->mnt_parent;
1da177e4
LT
1958 continue;
1959 }
1960 parent = dentry->d_parent;
1961 prefetch(parent);
cdd16d02 1962 if ((prepend_name(&end, &buflen, &dentry->d_name) != 0) ||
6092d048 1963 (prepend(&end, &buflen, "/", 1) != 0))
552ce544 1964 goto Elong;
552ce544 1965 retval = end;
1da177e4
LT
1966 dentry = parent;
1967 }
1968
be285c71
AG
1969out:
1970 spin_unlock(&vfsmount_lock);
552ce544 1971 return retval;
1da177e4
LT
1972
1973global_root:
6092d048 1974 retval += 1; /* hit the slash */
cdd16d02 1975 if (prepend_name(&retval, &buflen, &dentry->d_name) != 0)
1da177e4 1976 goto Elong;
9d1bc601
MS
1977 root->mnt = vfsmnt;
1978 root->dentry = dentry;
be285c71
AG
1979 goto out;
1980
1da177e4 1981Elong:
be285c71
AG
1982 retval = ERR_PTR(-ENAMETOOLONG);
1983 goto out;
1da177e4
LT
1984}
1985
a03a8a70
JB
1986/**
1987 * d_path - return the path of a dentry
cf28b486 1988 * @path: path to report
a03a8a70
JB
1989 * @buf: buffer to return value in
1990 * @buflen: buffer length
1991 *
1992 * Convert a dentry into an ASCII path name. If the entry has been deleted
1993 * the string " (deleted)" is appended. Note that this is ambiguous.
1994 *
52afeefb
AV
1995 * Returns a pointer into the buffer or an error code if the path was
1996 * too long. Note: Callers should use the returned pointer, not the passed
1997 * in buffer, to use the name! The implementation often starts at an offset
1998 * into the buffer, and may leave 0 bytes at the start.
a03a8a70 1999 *
31f3e0b3 2000 * "buflen" should be positive.
a03a8a70 2001 */
20d4fdc1 2002char *d_path(const struct path *path, char *buf, int buflen)
1da177e4
LT
2003{
2004 char *res;
6ac08c39 2005 struct path root;
9d1bc601 2006 struct path tmp;
1da177e4 2007
c23fbb6b
ED
2008 /*
2009 * We have various synthetic filesystems that never get mounted. On
2010 * these filesystems dentries are never used for lookup purposes, and
2011 * thus don't need to be hashed. They also don't need a name until a
2012 * user wants to identify the object in /proc/pid/fd/. The little hack
2013 * below allows us to generate a name for these objects on demand:
2014 */
cf28b486
JB
2015 if (path->dentry->d_op && path->dentry->d_op->d_dname)
2016 return path->dentry->d_op->d_dname(path->dentry, buf, buflen);
c23fbb6b 2017
1da177e4 2018 read_lock(&current->fs->lock);
6ac08c39 2019 root = current->fs->root;
6092d048 2020 path_get(&root);
1da177e4 2021 read_unlock(&current->fs->lock);
552ce544 2022 spin_lock(&dcache_lock);
9d1bc601
MS
2023 tmp = root;
2024 res = __d_path(path, &tmp, buf, buflen);
552ce544 2025 spin_unlock(&dcache_lock);
6ac08c39 2026 path_put(&root);
1da177e4
LT
2027 return res;
2028}
ec4f8605 2029EXPORT_SYMBOL(d_path);
1da177e4 2030
c23fbb6b
ED
2031/*
2032 * Helper function for dentry_operations.d_dname() members
2033 */
2034char *dynamic_dname(struct dentry *dentry, char *buffer, int buflen,
2035 const char *fmt, ...)
2036{
2037 va_list args;
2038 char temp[64];
2039 int sz;
2040
2041 va_start(args, fmt);
2042 sz = vsnprintf(temp, sizeof(temp), fmt, args) + 1;
2043 va_end(args);
2044
2045 if (sz > sizeof(temp) || sz > buflen)
2046 return ERR_PTR(-ENAMETOOLONG);
2047
2048 buffer += buflen - sz;
2049 return memcpy(buffer, temp, sz);
2050}
2051
6092d048
RP
2052/*
2053 * Write full pathname from the root of the filesystem into the buffer.
2054 */
2055char *dentry_path(struct dentry *dentry, char *buf, int buflen)
2056{
2057 char *end = buf + buflen;
2058 char *retval;
2059
2060 spin_lock(&dcache_lock);
2061 prepend(&end, &buflen, "\0", 1);
f3da392e 2062 if (d_unlinked(dentry) &&
6092d048
RP
2063 (prepend(&end, &buflen, "//deleted", 9) != 0))
2064 goto Elong;
2065 if (buflen < 1)
2066 goto Elong;
2067 /* Get '/' right */
2068 retval = end-1;
2069 *retval = '/';
2070
cdd16d02
MS
2071 while (!IS_ROOT(dentry)) {
2072 struct dentry *parent = dentry->d_parent;
6092d048 2073
6092d048 2074 prefetch(parent);
cdd16d02 2075 if ((prepend_name(&end, &buflen, &dentry->d_name) != 0) ||
6092d048
RP
2076 (prepend(&end, &buflen, "/", 1) != 0))
2077 goto Elong;
2078
2079 retval = end;
2080 dentry = parent;
2081 }
2082 spin_unlock(&dcache_lock);
2083 return retval;
2084Elong:
2085 spin_unlock(&dcache_lock);
2086 return ERR_PTR(-ENAMETOOLONG);
2087}
2088
1da177e4
LT
2089/*
2090 * NOTE! The user-level library version returns a
2091 * character pointer. The kernel system call just
2092 * returns the length of the buffer filled (which
2093 * includes the ending '\0' character), or a negative
2094 * error value. So libc would do something like
2095 *
2096 * char *getcwd(char * buf, size_t size)
2097 * {
2098 * int retval;
2099 *
2100 * retval = sys_getcwd(buf, size);
2101 * if (retval >= 0)
2102 * return buf;
2103 * errno = -retval;
2104 * return NULL;
2105 * }
2106 */
3cdad428 2107SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size)
1da177e4 2108{
552ce544 2109 int error;
6ac08c39 2110 struct path pwd, root;
552ce544 2111 char *page = (char *) __get_free_page(GFP_USER);
1da177e4
LT
2112
2113 if (!page)
2114 return -ENOMEM;
2115
2116 read_lock(&current->fs->lock);
6ac08c39 2117 pwd = current->fs->pwd;
6092d048 2118 path_get(&pwd);
6ac08c39 2119 root = current->fs->root;
6092d048 2120 path_get(&root);
1da177e4
LT
2121 read_unlock(&current->fs->lock);
2122
552ce544 2123 error = -ENOENT;
552ce544 2124 spin_lock(&dcache_lock);
f3da392e 2125 if (!d_unlinked(pwd.dentry)) {
552ce544 2126 unsigned long len;
9d1bc601 2127 struct path tmp = root;
552ce544 2128 char * cwd;
1da177e4 2129
9d1bc601 2130 cwd = __d_path(&pwd, &tmp, page, PAGE_SIZE);
552ce544
LT
2131 spin_unlock(&dcache_lock);
2132
2133 error = PTR_ERR(cwd);
2134 if (IS_ERR(cwd))
2135 goto out;
2136
2137 error = -ERANGE;
2138 len = PAGE_SIZE + page - cwd;
2139 if (len <= size) {
2140 error = len;
2141 if (copy_to_user(buf, cwd, len))
2142 error = -EFAULT;
2143 }
2144 } else
2145 spin_unlock(&dcache_lock);
1da177e4
LT
2146
2147out:
6ac08c39
JB
2148 path_put(&pwd);
2149 path_put(&root);
1da177e4
LT
2150 free_page((unsigned long) page);
2151 return error;
2152}
2153
2154/*
2155 * Test whether new_dentry is a subdirectory of old_dentry.
2156 *
2157 * Trivially implemented using the dcache structure
2158 */
2159
2160/**
2161 * is_subdir - is new dentry a subdirectory of old_dentry
2162 * @new_dentry: new dentry
2163 * @old_dentry: old dentry
2164 *
2165 * Returns 1 if new_dentry is a subdirectory of the parent (at any depth).
2166 * Returns 0 otherwise.
2167 * Caller must ensure that "new_dentry" is pinned before calling is_subdir()
2168 */
2169
e2761a11 2170int is_subdir(struct dentry *new_dentry, struct dentry *old_dentry)
1da177e4
LT
2171{
2172 int result;
1da177e4
LT
2173 unsigned long seq;
2174
e2761a11
OH
2175 if (new_dentry == old_dentry)
2176 return 1;
2177
2178 /*
2179 * Need rcu_readlock to protect against the d_parent trashing
2180 * due to d_move
1da177e4
LT
2181 */
2182 rcu_read_lock();
e2761a11 2183 do {
1da177e4 2184 /* for restarting inner loop in case of seq retry */
1da177e4 2185 seq = read_seqbegin(&rename_lock);
e2761a11 2186 if (d_ancestor(old_dentry, new_dentry))
1da177e4 2187 result = 1;
e2761a11
OH
2188 else
2189 result = 0;
1da177e4
LT
2190 } while (read_seqretry(&rename_lock, seq));
2191 rcu_read_unlock();
2192
2193 return result;
2194}
2195
2096f759
AV
2196int path_is_under(struct path *path1, struct path *path2)
2197{
2198 struct vfsmount *mnt = path1->mnt;
2199 struct dentry *dentry = path1->dentry;
2200 int res;
2201 spin_lock(&vfsmount_lock);
2202 if (mnt != path2->mnt) {
2203 for (;;) {
2204 if (mnt->mnt_parent == mnt) {
2205 spin_unlock(&vfsmount_lock);
2206 return 0;
2207 }
2208 if (mnt->mnt_parent == path2->mnt)
2209 break;
2210 mnt = mnt->mnt_parent;
2211 }
2212 dentry = mnt->mnt_mountpoint;
2213 }
2214 res = is_subdir(dentry, path2->dentry);
2215 spin_unlock(&vfsmount_lock);
2216 return res;
2217}
2218EXPORT_SYMBOL(path_is_under);
2219
1da177e4
LT
2220void d_genocide(struct dentry *root)
2221{
2222 struct dentry *this_parent = root;
2223 struct list_head *next;
2224
2225 spin_lock(&dcache_lock);
2226repeat:
2227 next = this_parent->d_subdirs.next;
2228resume:
2229 while (next != &this_parent->d_subdirs) {
2230 struct list_head *tmp = next;
5160ee6f 2231 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
1da177e4
LT
2232 next = tmp->next;
2233 if (d_unhashed(dentry)||!dentry->d_inode)
2234 continue;
2235 if (!list_empty(&dentry->d_subdirs)) {
2236 this_parent = dentry;
2237 goto repeat;
2238 }
2239 atomic_dec(&dentry->d_count);
2240 }
2241 if (this_parent != root) {
5160ee6f 2242 next = this_parent->d_u.d_child.next;
1da177e4
LT
2243 atomic_dec(&this_parent->d_count);
2244 this_parent = this_parent->d_parent;
2245 goto resume;
2246 }
2247 spin_unlock(&dcache_lock);
2248}
2249
2250/**
2251 * find_inode_number - check for dentry with name
2252 * @dir: directory to check
2253 * @name: Name to find.
2254 *
2255 * Check whether a dentry already exists for the given name,
2256 * and return the inode number if it has an inode. Otherwise
2257 * 0 is returned.
2258 *
2259 * This routine is used to post-process directory listings for
2260 * filesystems using synthetic inode numbers, and is necessary
2261 * to keep getcwd() working.
2262 */
2263
2264ino_t find_inode_number(struct dentry *dir, struct qstr *name)
2265{
2266 struct dentry * dentry;
2267 ino_t ino = 0;
2268
3e7e241f
EB
2269 dentry = d_hash_and_lookup(dir, name);
2270 if (dentry) {
1da177e4
LT
2271 if (dentry->d_inode)
2272 ino = dentry->d_inode->i_ino;
2273 dput(dentry);
2274 }
1da177e4
LT
2275 return ino;
2276}
ec4f8605 2277EXPORT_SYMBOL(find_inode_number);
1da177e4
LT
2278
2279static __initdata unsigned long dhash_entries;
2280static int __init set_dhash_entries(char *str)
2281{
2282 if (!str)
2283 return 0;
2284 dhash_entries = simple_strtoul(str, &str, 0);
2285 return 1;
2286}
2287__setup("dhash_entries=", set_dhash_entries);
2288
2289static void __init dcache_init_early(void)
2290{
2291 int loop;
2292
2293 /* If hashes are distributed across NUMA nodes, defer
2294 * hash allocation until vmalloc space is available.
2295 */
2296 if (hashdist)
2297 return;
2298
2299 dentry_hashtable =
2300 alloc_large_system_hash("Dentry cache",
2301 sizeof(struct hlist_head),
2302 dhash_entries,
2303 13,
2304 HASH_EARLY,
2305 &d_hash_shift,
2306 &d_hash_mask,
2307 0);
2308
2309 for (loop = 0; loop < (1 << d_hash_shift); loop++)
2310 INIT_HLIST_HEAD(&dentry_hashtable[loop]);
2311}
2312
74bf17cf 2313static void __init dcache_init(void)
1da177e4
LT
2314{
2315 int loop;
2316
2317 /*
2318 * A constructor could be added for stable state like the lists,
2319 * but it is probably not worth it because of the cache nature
2320 * of the dcache.
2321 */
0a31bd5f
CL
2322 dentry_cache = KMEM_CACHE(dentry,
2323 SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|SLAB_MEM_SPREAD);
1da177e4 2324
8e1f936b 2325 register_shrinker(&dcache_shrinker);
1da177e4
LT
2326
2327 /* Hash may have been set up in dcache_init_early */
2328 if (!hashdist)
2329 return;
2330
2331 dentry_hashtable =
2332 alloc_large_system_hash("Dentry cache",
2333 sizeof(struct hlist_head),
2334 dhash_entries,
2335 13,
2336 0,
2337 &d_hash_shift,
2338 &d_hash_mask,
2339 0);
2340
2341 for (loop = 0; loop < (1 << d_hash_shift); loop++)
2342 INIT_HLIST_HEAD(&dentry_hashtable[loop]);
2343}
2344
2345/* SLAB cache for __getname() consumers */
e18b890b 2346struct kmem_cache *names_cachep __read_mostly;
ec4f8605 2347EXPORT_SYMBOL(names_cachep);
1da177e4 2348
1da177e4
LT
2349EXPORT_SYMBOL(d_genocide);
2350
1da177e4
LT
2351void __init vfs_caches_init_early(void)
2352{
2353 dcache_init_early();
2354 inode_init_early();
2355}
2356
2357void __init vfs_caches_init(unsigned long mempages)
2358{
2359 unsigned long reserve;
2360
2361 /* Base hash sizes on available memory, with a reserve equal to
2362 150% of current kernel size */
2363
2364 reserve = min((mempages - nr_free_pages()) * 3/2, mempages - 1);
2365 mempages -= reserve;
2366
2367 names_cachep = kmem_cache_create("names_cache", PATH_MAX, 0,
20c2df83 2368 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1da177e4 2369
74bf17cf
DC
2370 dcache_init();
2371 inode_init();
1da177e4 2372 files_init(mempages);
74bf17cf 2373 mnt_init();
1da177e4
LT
2374 bdev_cache_init();
2375 chrdev_init();
2376}