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