Fix gcc 4.5.1 miscompiling drivers/char/i8k.c (again)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / dcache.c
blobb6f6abb0cd630772116457319ea35b8086fb0c13
1 /*
2 * fs/dcache.c
4 * Complete reimplementation
5 * (C) 1997 Thomas Schoebel-Theuer,
6 * with heavy changes by Linus Torvalds
7 */
9 /*
10 * Notes on the allocation strategy:
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.
17 #include <linux/syscalls.h>
18 #include <linux/string.h>
19 #include <linux/mm.h>
20 #include <linux/fs.h>
21 #include <linux/fsnotify.h>
22 #include <linux/slab.h>
23 #include <linux/init.h>
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>
34 #include <linux/fs_struct.h>
35 #include <linux/hardirq.h>
36 #include "internal.h"
38 int sysctl_vfs_cache_pressure __read_mostly = 100;
39 EXPORT_SYMBOL_GPL(sysctl_vfs_cache_pressure);
41 __cacheline_aligned_in_smp DEFINE_SPINLOCK(dcache_lock);
42 __cacheline_aligned_in_smp DEFINE_SEQLOCK(rename_lock);
44 EXPORT_SYMBOL(dcache_lock);
46 static struct kmem_cache *dentry_cache __read_mostly;
48 #define DNAME_INLINE_LEN (sizeof(struct dentry)-offsetof(struct dentry,d_iname))
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.
55 * This hash-function tries to avoid losing too many bits of hash
56 * information, yet avoid using a prime hash-size or similar.
58 #define D_HASHBITS d_hash_shift
59 #define D_HASHMASK d_hash_mask
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;
65 /* Statistics gathering. */
66 struct dentry_stat_t dentry_stat = {
67 .age_limit = 45,
70 static void __d_free(struct dentry *dentry)
72 WARN_ON(!list_empty(&dentry->d_alias));
73 if (dname_external(dentry))
74 kfree(dentry->d_name.name);
75 kmem_cache_free(dentry_cache, dentry);
78 static void d_callback(struct rcu_head *head)
80 struct dentry * dentry = container_of(head, struct dentry, d_u.d_rcu);
81 __d_free(dentry);
85 * no dcache_lock, please. The caller must decrement dentry_stat.nr_dentry
86 * inside dcache_lock.
88 static void d_free(struct dentry *dentry)
90 if (dentry->d_op && dentry->d_op->d_release)
91 dentry->d_op->d_release(dentry);
92 /* if dentry was never inserted into hash, immediate free is OK */
93 if (hlist_unhashed(&dentry->d_hash))
94 __d_free(dentry);
95 else
96 call_rcu(&dentry->d_u.d_rcu, d_callback);
100 * Release the dentry's inode, using the filesystem
101 * d_iput() operation if defined.
103 static void dentry_iput(struct dentry * dentry)
104 __releases(dentry->d_lock)
105 __releases(dcache_lock)
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);
113 if (!inode->i_nlink)
114 fsnotify_inoderemove(inode);
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);
126 * dentry_lru_(add|add_tail|del|del_init) must be called with dcache_lock held.
128 static void dentry_lru_add(struct dentry *dentry)
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++;
135 static void dentry_lru_add_tail(struct dentry *dentry)
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++;
142 static void dentry_lru_del(struct dentry *dentry)
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--;
151 static void dentry_lru_del_init(struct dentry *dentry)
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--;
161 * d_kill - kill dentry and return parent
162 * @dentry: dentry to kill
164 * The dentry must already be unhashed and removed from the LRU.
166 * If this is the root of the dentry tree, return NULL.
168 static struct dentry *d_kill(struct dentry *dentry)
169 __releases(dentry->d_lock)
170 __releases(dcache_lock)
172 struct dentry *parent;
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);
178 if (IS_ROOT(dentry))
179 parent = NULL;
180 else
181 parent = dentry->d_parent;
182 d_free(dentry);
183 return parent;
187 * This is dput
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.
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).
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.
204 * dput - release a dentry
205 * @dentry: dentry to release
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.
212 * no dcache lock, please.
215 void dput(struct dentry *dentry)
217 if (!dentry)
218 return;
220 repeat:
221 if (atomic_read(&dentry->d_count) == 1)
222 might_sleep();
223 if (!atomic_dec_and_lock(&dentry->d_count, &dcache_lock))
224 return;
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;
234 * AV: ->d_delete() is _NOT_ allowed to block now.
236 if (dentry->d_op && dentry->d_op->d_delete) {
237 if (dentry->d_op->d_delete(dentry))
238 goto unhash_it;
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;
245 dentry_lru_add(dentry);
247 spin_unlock(&dentry->d_lock);
248 spin_unlock(&dcache_lock);
249 return;
251 unhash_it:
252 __d_drop(dentry);
253 kill_it:
254 /* if dentry was on the d_lru list delete it from there */
255 dentry_lru_del(dentry);
256 dentry = d_kill(dentry);
257 if (dentry)
258 goto repeat;
262 * d_invalidate - invalidate a dentry
263 * @dentry: dentry to invalidate
265 * Try to invalidate the dentry if it turns out to be
266 * possible. If there are other dentries that can be
267 * reached through this one we can't delete it and we
268 * return -EBUSY. On success we return 0.
270 * no dcache lock.
273 int d_invalidate(struct dentry * dentry)
276 * If it's already been dropped, return OK.
278 spin_lock(&dcache_lock);
279 if (d_unhashed(dentry)) {
280 spin_unlock(&dcache_lock);
281 return 0;
284 * Check whether to do a partial shrink_dcache
285 * to get rid of unused child entries.
287 if (!list_empty(&dentry->d_subdirs)) {
288 spin_unlock(&dcache_lock);
289 shrink_dcache_parent(dentry);
290 spin_lock(&dcache_lock);
294 * Somebody else still using it?
296 * If it's a directory, we can't drop it
297 * for fear of somebody re-populating it
298 * with children (even though dropping it
299 * would make it unreachable from the root,
300 * we might still populate it if it was a
301 * working directory or similar).
303 spin_lock(&dentry->d_lock);
304 if (atomic_read(&dentry->d_count) > 1) {
305 if (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode)) {
306 spin_unlock(&dentry->d_lock);
307 spin_unlock(&dcache_lock);
308 return -EBUSY;
312 __d_drop(dentry);
313 spin_unlock(&dentry->d_lock);
314 spin_unlock(&dcache_lock);
315 return 0;
318 /* This should be called _only_ with dcache_lock held */
320 static inline struct dentry * __dget_locked(struct dentry *dentry)
322 atomic_inc(&dentry->d_count);
323 dentry_lru_del_init(dentry);
324 return dentry;
327 struct dentry * dget_locked(struct dentry *dentry)
329 return __dget_locked(dentry);
333 * d_find_alias - grab a hashed alias of inode
334 * @inode: inode in question
335 * @want_discon: flag, used by d_splice_alias, to request
336 * that only a DISCONNECTED alias be returned.
338 * If inode has a hashed alias, or is a directory and has any alias,
339 * acquire the reference to alias and return it. Otherwise return NULL.
340 * Notice that if inode is a directory there can be only one alias and
341 * it can be unhashed only if it has no children, or if it is the root
342 * of a filesystem.
344 * If the inode has an IS_ROOT, DCACHE_DISCONNECTED alias, then prefer
345 * any other hashed alias over that one unless @want_discon is set,
346 * in which case only return an IS_ROOT, DCACHE_DISCONNECTED alias.
349 static struct dentry * __d_find_alias(struct inode *inode, int want_discon)
351 struct list_head *head, *next, *tmp;
352 struct dentry *alias, *discon_alias=NULL;
354 head = &inode->i_dentry;
355 next = inode->i_dentry.next;
356 while (next != head) {
357 tmp = next;
358 next = tmp->next;
359 prefetch(next);
360 alias = list_entry(tmp, struct dentry, d_alias);
361 if (S_ISDIR(inode->i_mode) || !d_unhashed(alias)) {
362 if (IS_ROOT(alias) &&
363 (alias->d_flags & DCACHE_DISCONNECTED))
364 discon_alias = alias;
365 else if (!want_discon) {
366 __dget_locked(alias);
367 return alias;
371 if (discon_alias)
372 __dget_locked(discon_alias);
373 return discon_alias;
376 struct dentry * d_find_alias(struct inode *inode)
378 struct dentry *de = NULL;
380 if (!list_empty(&inode->i_dentry)) {
381 spin_lock(&dcache_lock);
382 de = __d_find_alias(inode, 0);
383 spin_unlock(&dcache_lock);
385 return de;
389 * Try to kill dentries associated with this inode.
390 * WARNING: you must own a reference to inode.
392 void d_prune_aliases(struct inode *inode)
394 struct dentry *dentry;
395 restart:
396 spin_lock(&dcache_lock);
397 list_for_each_entry(dentry, &inode->i_dentry, d_alias) {
398 spin_lock(&dentry->d_lock);
399 if (!atomic_read(&dentry->d_count)) {
400 __dget_locked(dentry);
401 __d_drop(dentry);
402 spin_unlock(&dentry->d_lock);
403 spin_unlock(&dcache_lock);
404 dput(dentry);
405 goto restart;
407 spin_unlock(&dentry->d_lock);
409 spin_unlock(&dcache_lock);
413 * Throw away a dentry - free the inode, dput the parent. This requires that
414 * the LRU list has already been removed.
416 * Try to prune ancestors as well. This is necessary to prevent
417 * quadratic behavior of shrink_dcache_parent(), but is also expected
418 * to be beneficial in reducing dentry cache fragmentation.
420 static void prune_one_dentry(struct dentry * dentry)
421 __releases(dentry->d_lock)
422 __releases(dcache_lock)
423 __acquires(dcache_lock)
425 __d_drop(dentry);
426 dentry = d_kill(dentry);
429 * Prune ancestors. Locking is simpler than in dput(),
430 * because dcache_lock needs to be taken anyway.
432 spin_lock(&dcache_lock);
433 while (dentry) {
434 if (!atomic_dec_and_lock(&dentry->d_count, &dentry->d_lock))
435 return;
437 if (dentry->d_op && dentry->d_op->d_delete)
438 dentry->d_op->d_delete(dentry);
439 dentry_lru_del_init(dentry);
440 __d_drop(dentry);
441 dentry = d_kill(dentry);
442 spin_lock(&dcache_lock);
447 * Shrink the dentry LRU on a given superblock.
448 * @sb : superblock to shrink dentry LRU.
449 * @count: If count is NULL, we prune all dentries on superblock.
450 * @flags: If flags is non-zero, we need to do special processing based on
451 * which flags are set. This means we don't need to maintain multiple
452 * similar copies of this loop.
454 static void __shrink_dcache_sb(struct super_block *sb, int *count, int flags)
456 LIST_HEAD(referenced);
457 LIST_HEAD(tmp);
458 struct dentry *dentry;
459 int cnt = 0;
461 BUG_ON(!sb);
462 BUG_ON((flags & DCACHE_REFERENCED) && count == NULL);
463 spin_lock(&dcache_lock);
464 if (count != NULL)
465 /* called from prune_dcache() and shrink_dcache_parent() */
466 cnt = *count;
467 restart:
468 if (count == NULL)
469 list_splice_init(&sb->s_dentry_lru, &tmp);
470 else {
471 while (!list_empty(&sb->s_dentry_lru)) {
472 dentry = list_entry(sb->s_dentry_lru.prev,
473 struct dentry, d_lru);
474 BUG_ON(dentry->d_sb != sb);
476 spin_lock(&dentry->d_lock);
478 * If we are honouring the DCACHE_REFERENCED flag and
479 * the dentry has this flag set, don't free it. Clear
480 * the flag and put it back on the LRU.
482 if ((flags & DCACHE_REFERENCED)
483 && (dentry->d_flags & DCACHE_REFERENCED)) {
484 dentry->d_flags &= ~DCACHE_REFERENCED;
485 list_move(&dentry->d_lru, &referenced);
486 spin_unlock(&dentry->d_lock);
487 } else {
488 list_move_tail(&dentry->d_lru, &tmp);
489 spin_unlock(&dentry->d_lock);
490 cnt--;
491 if (!cnt)
492 break;
494 cond_resched_lock(&dcache_lock);
497 while (!list_empty(&tmp)) {
498 dentry = list_entry(tmp.prev, struct dentry, d_lru);
499 dentry_lru_del_init(dentry);
500 spin_lock(&dentry->d_lock);
502 * We found an inuse dentry which was not removed from
503 * the LRU because of laziness during lookup. Do not free
504 * it - just keep it off the LRU list.
506 if (atomic_read(&dentry->d_count)) {
507 spin_unlock(&dentry->d_lock);
508 continue;
510 prune_one_dentry(dentry);
511 /* dentry->d_lock was dropped in prune_one_dentry() */
512 cond_resched_lock(&dcache_lock);
514 if (count == NULL && !list_empty(&sb->s_dentry_lru))
515 goto restart;
516 if (count != NULL)
517 *count = cnt;
518 if (!list_empty(&referenced))
519 list_splice(&referenced, &sb->s_dentry_lru);
520 spin_unlock(&dcache_lock);
524 * prune_dcache - shrink the dcache
525 * @count: number of entries to try to free
527 * Shrink the dcache. This is done when we need more memory, or simply when we
528 * need to unmount something (at which point we need to unuse all dentries).
530 * This function may fail to free any resources if all the dentries are in use.
532 static void prune_dcache(int count)
534 struct super_block *sb;
535 int w_count;
536 int unused = dentry_stat.nr_unused;
537 int prune_ratio;
538 int pruned;
540 if (unused == 0 || count == 0)
541 return;
542 spin_lock(&dcache_lock);
543 restart:
544 if (count >= unused)
545 prune_ratio = 1;
546 else
547 prune_ratio = unused / count;
548 spin_lock(&sb_lock);
549 list_for_each_entry(sb, &super_blocks, s_list) {
550 if (sb->s_nr_dentry_unused == 0)
551 continue;
552 sb->s_count++;
553 /* Now, we reclaim unused dentrins with fairness.
554 * We reclaim them same percentage from each superblock.
555 * We calculate number of dentries to scan on this sb
556 * as follows, but the implementation is arranged to avoid
557 * overflows:
558 * number of dentries to scan on this sb =
559 * count * (number of dentries on this sb /
560 * number of dentries in the machine)
562 spin_unlock(&sb_lock);
563 if (prune_ratio != 1)
564 w_count = (sb->s_nr_dentry_unused / prune_ratio) + 1;
565 else
566 w_count = sb->s_nr_dentry_unused;
567 pruned = w_count;
569 * We need to be sure this filesystem isn't being unmounted,
570 * otherwise we could race with generic_shutdown_super(), and
571 * end up holding a reference to an inode while the filesystem
572 * is unmounted. So we try to get s_umount, and make sure
573 * s_root isn't NULL.
575 if (down_read_trylock(&sb->s_umount)) {
576 if ((sb->s_root != NULL) &&
577 (!list_empty(&sb->s_dentry_lru))) {
578 spin_unlock(&dcache_lock);
579 __shrink_dcache_sb(sb, &w_count,
580 DCACHE_REFERENCED);
581 pruned -= w_count;
582 spin_lock(&dcache_lock);
584 up_read(&sb->s_umount);
586 spin_lock(&sb_lock);
587 count -= pruned;
589 * restart only when sb is no longer on the list and
590 * we have more work to do.
592 if (__put_super_and_need_restart(sb) && count > 0) {
593 spin_unlock(&sb_lock);
594 goto restart;
597 spin_unlock(&sb_lock);
598 spin_unlock(&dcache_lock);
602 * shrink_dcache_sb - shrink dcache for a superblock
603 * @sb: superblock
605 * Shrink the dcache for the specified super block. This
606 * is used to free the dcache before unmounting a file
607 * system
609 void shrink_dcache_sb(struct super_block * sb)
611 __shrink_dcache_sb(sb, NULL, 0);
615 * destroy a single subtree of dentries for unmount
616 * - see the comments on shrink_dcache_for_umount() for a description of the
617 * locking
619 static void shrink_dcache_for_umount_subtree(struct dentry *dentry)
621 struct dentry *parent;
622 unsigned detached = 0;
624 BUG_ON(!IS_ROOT(dentry));
626 /* detach this root from the system */
627 spin_lock(&dcache_lock);
628 dentry_lru_del_init(dentry);
629 __d_drop(dentry);
630 spin_unlock(&dcache_lock);
632 for (;;) {
633 /* descend to the first leaf in the current subtree */
634 while (!list_empty(&dentry->d_subdirs)) {
635 struct dentry *loop;
637 /* this is a branch with children - detach all of them
638 * from the system in one go */
639 spin_lock(&dcache_lock);
640 list_for_each_entry(loop, &dentry->d_subdirs,
641 d_u.d_child) {
642 dentry_lru_del_init(loop);
643 __d_drop(loop);
644 cond_resched_lock(&dcache_lock);
646 spin_unlock(&dcache_lock);
648 /* move to the first child */
649 dentry = list_entry(dentry->d_subdirs.next,
650 struct dentry, d_u.d_child);
653 /* consume the dentries from this leaf up through its parents
654 * until we find one with children or run out altogether */
655 do {
656 struct inode *inode;
658 if (atomic_read(&dentry->d_count) != 0) {
659 printk(KERN_ERR
660 "BUG: Dentry %p{i=%lx,n=%s}"
661 " still in use (%d)"
662 " [unmount of %s %s]\n",
663 dentry,
664 dentry->d_inode ?
665 dentry->d_inode->i_ino : 0UL,
666 dentry->d_name.name,
667 atomic_read(&dentry->d_count),
668 dentry->d_sb->s_type->name,
669 dentry->d_sb->s_id);
670 BUG();
673 if (IS_ROOT(dentry))
674 parent = NULL;
675 else {
676 parent = dentry->d_parent;
677 atomic_dec(&parent->d_count);
680 list_del(&dentry->d_u.d_child);
681 detached++;
683 inode = dentry->d_inode;
684 if (inode) {
685 dentry->d_inode = NULL;
686 list_del_init(&dentry->d_alias);
687 if (dentry->d_op && dentry->d_op->d_iput)
688 dentry->d_op->d_iput(dentry, inode);
689 else
690 iput(inode);
693 d_free(dentry);
695 /* finished when we fall off the top of the tree,
696 * otherwise we ascend to the parent and move to the
697 * next sibling if there is one */
698 if (!parent)
699 goto out;
701 dentry = parent;
703 } while (list_empty(&dentry->d_subdirs));
705 dentry = list_entry(dentry->d_subdirs.next,
706 struct dentry, d_u.d_child);
708 out:
709 /* several dentries were freed, need to correct nr_dentry */
710 spin_lock(&dcache_lock);
711 dentry_stat.nr_dentry -= detached;
712 spin_unlock(&dcache_lock);
716 * destroy the dentries attached to a superblock on unmounting
717 * - we don't need to use dentry->d_lock, and only need dcache_lock when
718 * removing the dentry from the system lists and hashes because:
719 * - the superblock is detached from all mountings and open files, so the
720 * dentry trees will not be rearranged by the VFS
721 * - s_umount is write-locked, so the memory pressure shrinker will ignore
722 * any dentries belonging to this superblock that it comes across
723 * - the filesystem itself is no longer permitted to rearrange the dentries
724 * in this superblock
726 void shrink_dcache_for_umount(struct super_block *sb)
728 struct dentry *dentry;
730 if (down_read_trylock(&sb->s_umount))
731 BUG();
733 dentry = sb->s_root;
734 sb->s_root = NULL;
735 atomic_dec(&dentry->d_count);
736 shrink_dcache_for_umount_subtree(dentry);
738 while (!hlist_empty(&sb->s_anon)) {
739 dentry = hlist_entry(sb->s_anon.first, struct dentry, d_hash);
740 shrink_dcache_for_umount_subtree(dentry);
745 * Search for at least 1 mount point in the dentry's subdirs.
746 * We descend to the next level whenever the d_subdirs
747 * list is non-empty and continue searching.
751 * have_submounts - check for mounts over a dentry
752 * @parent: dentry to check.
754 * Return true if the parent or its subdirectories contain
755 * a mount point
758 int have_submounts(struct dentry *parent)
760 struct dentry *this_parent = parent;
761 struct list_head *next;
763 spin_lock(&dcache_lock);
764 if (d_mountpoint(parent))
765 goto positive;
766 repeat:
767 next = this_parent->d_subdirs.next;
768 resume:
769 while (next != &this_parent->d_subdirs) {
770 struct list_head *tmp = next;
771 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
772 next = tmp->next;
773 /* Have we found a mount point ? */
774 if (d_mountpoint(dentry))
775 goto positive;
776 if (!list_empty(&dentry->d_subdirs)) {
777 this_parent = dentry;
778 goto repeat;
782 * All done at this level ... ascend and resume the search.
784 if (this_parent != parent) {
785 next = this_parent->d_u.d_child.next;
786 this_parent = this_parent->d_parent;
787 goto resume;
789 spin_unlock(&dcache_lock);
790 return 0; /* No mount points found in tree */
791 positive:
792 spin_unlock(&dcache_lock);
793 return 1;
797 * Search the dentry child list for the specified parent,
798 * and move any unused dentries to the end of the unused
799 * list for prune_dcache(). We descend to the next level
800 * whenever the d_subdirs list is non-empty and continue
801 * searching.
803 * It returns zero iff there are no unused children,
804 * otherwise it returns the number of children moved to
805 * the end of the unused list. This may not be the total
806 * number of unused children, because select_parent can
807 * drop the lock and return early due to latency
808 * constraints.
810 static int select_parent(struct dentry * parent)
812 struct dentry *this_parent = parent;
813 struct list_head *next;
814 int found = 0;
816 spin_lock(&dcache_lock);
817 repeat:
818 next = this_parent->d_subdirs.next;
819 resume:
820 while (next != &this_parent->d_subdirs) {
821 struct list_head *tmp = next;
822 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
823 next = tmp->next;
825 dentry_lru_del_init(dentry);
827 * move only zero ref count dentries to the end
828 * of the unused list for prune_dcache
830 if (!atomic_read(&dentry->d_count)) {
831 dentry_lru_add_tail(dentry);
832 found++;
836 * We can return to the caller if we have found some (this
837 * ensures forward progress). We'll be coming back to find
838 * the rest.
840 if (found && need_resched())
841 goto out;
844 * Descend a level if the d_subdirs list is non-empty.
846 if (!list_empty(&dentry->d_subdirs)) {
847 this_parent = dentry;
848 goto repeat;
852 * All done at this level ... ascend and resume the search.
854 if (this_parent != parent) {
855 next = this_parent->d_u.d_child.next;
856 this_parent = this_parent->d_parent;
857 goto resume;
859 out:
860 spin_unlock(&dcache_lock);
861 return found;
865 * shrink_dcache_parent - prune dcache
866 * @parent: parent of entries to prune
868 * Prune the dcache to remove unused children of the parent dentry.
871 void shrink_dcache_parent(struct dentry * parent)
873 struct super_block *sb = parent->d_sb;
874 int found;
876 while ((found = select_parent(parent)) != 0)
877 __shrink_dcache_sb(sb, &found, 0);
881 * Scan `nr' dentries and return the number which remain.
883 * We need to avoid reentering the filesystem if the caller is performing a
884 * GFP_NOFS allocation attempt. One example deadlock is:
886 * ext2_new_block->getblk->GFP->shrink_dcache_memory->prune_dcache->
887 * prune_one_dentry->dput->dentry_iput->iput->inode->i_sb->s_op->put_inode->
888 * ext2_discard_prealloc->ext2_free_blocks->lock_super->DEADLOCK.
890 * In this case we return -1 to tell the caller that we baled.
892 static int shrink_dcache_memory(int nr, gfp_t gfp_mask)
894 if (nr) {
895 if (!(gfp_mask & __GFP_FS))
896 return -1;
897 prune_dcache(nr);
899 return (dentry_stat.nr_unused / 100) * sysctl_vfs_cache_pressure;
902 static struct shrinker dcache_shrinker = {
903 .shrink = shrink_dcache_memory,
904 .seeks = DEFAULT_SEEKS,
908 * d_alloc - allocate a dcache entry
909 * @parent: parent of entry to allocate
910 * @name: qstr of the name
912 * Allocates a dentry. It returns %NULL if there is insufficient memory
913 * available. On a success the dentry is returned. The name passed in is
914 * copied and the copy passed in may be reused after this call.
917 struct dentry *d_alloc(struct dentry * parent, const struct qstr *name)
919 struct dentry *dentry;
920 char *dname;
922 dentry = kmem_cache_alloc(dentry_cache, GFP_KERNEL);
923 if (!dentry)
924 return NULL;
926 if (name->len > DNAME_INLINE_LEN-1) {
927 dname = kmalloc(name->len + 1, GFP_KERNEL);
928 if (!dname) {
929 kmem_cache_free(dentry_cache, dentry);
930 return NULL;
932 } else {
933 dname = dentry->d_iname;
935 dentry->d_name.name = dname;
937 dentry->d_name.len = name->len;
938 dentry->d_name.hash = name->hash;
939 memcpy(dname, name->name, name->len);
940 dname[name->len] = 0;
942 atomic_set(&dentry->d_count, 1);
943 dentry->d_flags = DCACHE_UNHASHED;
944 spin_lock_init(&dentry->d_lock);
945 dentry->d_inode = NULL;
946 dentry->d_parent = NULL;
947 dentry->d_sb = NULL;
948 dentry->d_op = NULL;
949 dentry->d_fsdata = NULL;
950 dentry->d_mounted = 0;
951 INIT_HLIST_NODE(&dentry->d_hash);
952 INIT_LIST_HEAD(&dentry->d_lru);
953 INIT_LIST_HEAD(&dentry->d_subdirs);
954 INIT_LIST_HEAD(&dentry->d_alias);
956 if (parent) {
957 dentry->d_parent = dget(parent);
958 dentry->d_sb = parent->d_sb;
959 } else {
960 INIT_LIST_HEAD(&dentry->d_u.d_child);
963 spin_lock(&dcache_lock);
964 if (parent)
965 list_add(&dentry->d_u.d_child, &parent->d_subdirs);
966 dentry_stat.nr_dentry++;
967 spin_unlock(&dcache_lock);
969 return dentry;
972 struct dentry *d_alloc_name(struct dentry *parent, const char *name)
974 struct qstr q;
976 q.name = name;
977 q.len = strlen(name);
978 q.hash = full_name_hash(q.name, q.len);
979 return d_alloc(parent, &q);
981 EXPORT_SYMBOL(d_alloc_name);
983 /* the caller must hold dcache_lock */
984 static void __d_instantiate(struct dentry *dentry, struct inode *inode)
986 if (inode)
987 list_add(&dentry->d_alias, &inode->i_dentry);
988 dentry->d_inode = inode;
989 fsnotify_d_instantiate(dentry, inode);
993 * d_instantiate - fill in inode information for a dentry
994 * @entry: dentry to complete
995 * @inode: inode to attach to this dentry
997 * Fill in inode information in the entry.
999 * This turns negative dentries into productive full members
1000 * of society.
1002 * NOTE! This assumes that the inode count has been incremented
1003 * (or otherwise set) by the caller to indicate that it is now
1004 * in use by the dcache.
1007 void d_instantiate(struct dentry *entry, struct inode * inode)
1009 BUG_ON(!list_empty(&entry->d_alias));
1010 spin_lock(&dcache_lock);
1011 __d_instantiate(entry, inode);
1012 spin_unlock(&dcache_lock);
1013 security_d_instantiate(entry, inode);
1017 * d_instantiate_unique - instantiate a non-aliased dentry
1018 * @entry: dentry to instantiate
1019 * @inode: inode to attach to this dentry
1021 * Fill in inode information in the entry. On success, it returns NULL.
1022 * If an unhashed alias of "entry" already exists, then we return the
1023 * aliased dentry instead and drop one reference to inode.
1025 * Note that in order to avoid conflicts with rename() etc, the caller
1026 * had better be holding the parent directory semaphore.
1028 * This also assumes that the inode count has been incremented
1029 * (or otherwise set) by the caller to indicate that it is now
1030 * in use by the dcache.
1032 static struct dentry *__d_instantiate_unique(struct dentry *entry,
1033 struct inode *inode)
1035 struct dentry *alias;
1036 int len = entry->d_name.len;
1037 const char *name = entry->d_name.name;
1038 unsigned int hash = entry->d_name.hash;
1040 if (!inode) {
1041 __d_instantiate(entry, NULL);
1042 return NULL;
1045 list_for_each_entry(alias, &inode->i_dentry, d_alias) {
1046 struct qstr *qstr = &alias->d_name;
1048 if (qstr->hash != hash)
1049 continue;
1050 if (alias->d_parent != entry->d_parent)
1051 continue;
1052 if (qstr->len != len)
1053 continue;
1054 if (memcmp(qstr->name, name, len))
1055 continue;
1056 dget_locked(alias);
1057 return alias;
1060 __d_instantiate(entry, inode);
1061 return NULL;
1064 struct dentry *d_instantiate_unique(struct dentry *entry, struct inode *inode)
1066 struct dentry *result;
1068 BUG_ON(!list_empty(&entry->d_alias));
1070 spin_lock(&dcache_lock);
1071 result = __d_instantiate_unique(entry, inode);
1072 spin_unlock(&dcache_lock);
1074 if (!result) {
1075 security_d_instantiate(entry, inode);
1076 return NULL;
1079 BUG_ON(!d_unhashed(result));
1080 iput(inode);
1081 return result;
1084 EXPORT_SYMBOL(d_instantiate_unique);
1087 * d_alloc_root - allocate root dentry
1088 * @root_inode: inode to allocate the root for
1090 * Allocate a root ("/") dentry for the inode given. The inode is
1091 * instantiated and returned. %NULL is returned if there is insufficient
1092 * memory or the inode passed is %NULL.
1095 struct dentry * d_alloc_root(struct inode * root_inode)
1097 struct dentry *res = NULL;
1099 if (root_inode) {
1100 static const struct qstr name = { .name = "/", .len = 1 };
1102 res = d_alloc(NULL, &name);
1103 if (res) {
1104 res->d_sb = root_inode->i_sb;
1105 res->d_parent = res;
1106 d_instantiate(res, root_inode);
1109 return res;
1112 static inline struct hlist_head *d_hash(struct dentry *parent,
1113 unsigned long hash)
1115 hash += ((unsigned long) parent ^ GOLDEN_RATIO_PRIME) / L1_CACHE_BYTES;
1116 hash = hash ^ ((hash ^ GOLDEN_RATIO_PRIME) >> D_HASHBITS);
1117 return dentry_hashtable + (hash & D_HASHMASK);
1121 * d_obtain_alias - find or allocate a dentry for a given inode
1122 * @inode: inode to allocate the dentry for
1124 * Obtain a dentry for an inode resulting from NFS filehandle conversion or
1125 * similar open by handle operations. The returned dentry may be anonymous,
1126 * or may have a full name (if the inode was already in the cache).
1128 * When called on a directory inode, we must ensure that the inode only ever
1129 * has one dentry. If a dentry is found, that is returned instead of
1130 * allocating a new one.
1132 * On successful return, the reference to the inode has been transferred
1133 * to the dentry. In case of an error the reference on the inode is released.
1134 * To make it easier to use in export operations a %NULL or IS_ERR inode may
1135 * be passed in and will be the error will be propagate to the return value,
1136 * with a %NULL @inode replaced by ERR_PTR(-ESTALE).
1138 struct dentry *d_obtain_alias(struct inode *inode)
1140 static const struct qstr anonstring = { .name = "" };
1141 struct dentry *tmp;
1142 struct dentry *res;
1144 if (!inode)
1145 return ERR_PTR(-ESTALE);
1146 if (IS_ERR(inode))
1147 return ERR_CAST(inode);
1149 res = d_find_alias(inode);
1150 if (res)
1151 goto out_iput;
1153 tmp = d_alloc(NULL, &anonstring);
1154 if (!tmp) {
1155 res = ERR_PTR(-ENOMEM);
1156 goto out_iput;
1158 tmp->d_parent = tmp; /* make sure dput doesn't croak */
1160 spin_lock(&dcache_lock);
1161 res = __d_find_alias(inode, 0);
1162 if (res) {
1163 spin_unlock(&dcache_lock);
1164 dput(tmp);
1165 goto out_iput;
1168 /* attach a disconnected dentry */
1169 spin_lock(&tmp->d_lock);
1170 tmp->d_sb = inode->i_sb;
1171 tmp->d_inode = inode;
1172 tmp->d_flags |= DCACHE_DISCONNECTED;
1173 tmp->d_flags &= ~DCACHE_UNHASHED;
1174 list_add(&tmp->d_alias, &inode->i_dentry);
1175 hlist_add_head(&tmp->d_hash, &inode->i_sb->s_anon);
1176 spin_unlock(&tmp->d_lock);
1178 spin_unlock(&dcache_lock);
1179 security_d_instantiate(tmp, inode);
1180 return tmp;
1182 out_iput:
1183 if (res && !IS_ERR(res))
1184 security_d_instantiate(res, inode);
1185 iput(inode);
1186 return res;
1188 EXPORT_SYMBOL(d_obtain_alias);
1191 * d_splice_alias - splice a disconnected dentry into the tree if one exists
1192 * @inode: the inode which may have a disconnected dentry
1193 * @dentry: a negative dentry which we want to point to the inode.
1195 * If inode is a directory and has a 'disconnected' dentry (i.e. IS_ROOT and
1196 * DCACHE_DISCONNECTED), then d_move that in place of the given dentry
1197 * and return it, else simply d_add the inode to the dentry and return NULL.
1199 * This is needed in the lookup routine of any filesystem that is exportable
1200 * (via knfsd) so that we can build dcache paths to directories effectively.
1202 * If a dentry was found and moved, then it is returned. Otherwise NULL
1203 * is returned. This matches the expected return value of ->lookup.
1206 struct dentry *d_splice_alias(struct inode *inode, struct dentry *dentry)
1208 struct dentry *new = NULL;
1210 if (inode && S_ISDIR(inode->i_mode)) {
1211 spin_lock(&dcache_lock);
1212 new = __d_find_alias(inode, 1);
1213 if (new) {
1214 BUG_ON(!(new->d_flags & DCACHE_DISCONNECTED));
1215 spin_unlock(&dcache_lock);
1216 security_d_instantiate(new, inode);
1217 d_rehash(dentry);
1218 d_move(new, dentry);
1219 iput(inode);
1220 } else {
1221 /* already taking dcache_lock, so d_add() by hand */
1222 __d_instantiate(dentry, inode);
1223 spin_unlock(&dcache_lock);
1224 security_d_instantiate(dentry, inode);
1225 d_rehash(dentry);
1227 } else
1228 d_add(dentry, inode);
1229 return new;
1233 * d_add_ci - lookup or allocate new dentry with case-exact name
1234 * @inode: the inode case-insensitive lookup has found
1235 * @dentry: the negative dentry that was passed to the parent's lookup func
1236 * @name: the case-exact name to be associated with the returned dentry
1238 * This is to avoid filling the dcache with case-insensitive names to the
1239 * same inode, only the actual correct case is stored in the dcache for
1240 * case-insensitive filesystems.
1242 * For a case-insensitive lookup match and if the the case-exact dentry
1243 * already exists in in the dcache, use it and return it.
1245 * If no entry exists with the exact case name, allocate new dentry with
1246 * the exact case, and return the spliced entry.
1248 struct dentry *d_add_ci(struct dentry *dentry, struct inode *inode,
1249 struct qstr *name)
1251 int error;
1252 struct dentry *found;
1253 struct dentry *new;
1256 * First check if a dentry matching the name already exists,
1257 * if not go ahead and create it now.
1259 found = d_hash_and_lookup(dentry->d_parent, name);
1260 if (!found) {
1261 new = d_alloc(dentry->d_parent, name);
1262 if (!new) {
1263 error = -ENOMEM;
1264 goto err_out;
1267 found = d_splice_alias(inode, new);
1268 if (found) {
1269 dput(new);
1270 return found;
1272 return new;
1276 * If a matching dentry exists, and it's not negative use it.
1278 * Decrement the reference count to balance the iget() done
1279 * earlier on.
1281 if (found->d_inode) {
1282 if (unlikely(found->d_inode != inode)) {
1283 /* This can't happen because bad inodes are unhashed. */
1284 BUG_ON(!is_bad_inode(inode));
1285 BUG_ON(!is_bad_inode(found->d_inode));
1287 iput(inode);
1288 return found;
1292 * Negative dentry: instantiate it unless the inode is a directory and
1293 * already has a dentry.
1295 spin_lock(&dcache_lock);
1296 if (!S_ISDIR(inode->i_mode) || list_empty(&inode->i_dentry)) {
1297 __d_instantiate(found, inode);
1298 spin_unlock(&dcache_lock);
1299 security_d_instantiate(found, inode);
1300 return found;
1304 * In case a directory already has a (disconnected) entry grab a
1305 * reference to it, move it in place and use it.
1307 new = list_entry(inode->i_dentry.next, struct dentry, d_alias);
1308 dget_locked(new);
1309 spin_unlock(&dcache_lock);
1310 security_d_instantiate(found, inode);
1311 d_move(new, found);
1312 iput(inode);
1313 dput(found);
1314 return new;
1316 err_out:
1317 iput(inode);
1318 return ERR_PTR(error);
1322 * d_lookup - search for a dentry
1323 * @parent: parent dentry
1324 * @name: qstr of name we wish to find
1326 * Searches the children of the parent dentry for the name in question. If
1327 * the dentry is found its reference count is incremented and the dentry
1328 * is returned. The caller must use dput to free the entry when it has
1329 * finished using it. %NULL is returned on failure.
1331 * __d_lookup is dcache_lock free. The hash list is protected using RCU.
1332 * Memory barriers are used while updating and doing lockless traversal.
1333 * To avoid races with d_move while rename is happening, d_lock is used.
1335 * Overflows in memcmp(), while d_move, are avoided by keeping the length
1336 * and name pointer in one structure pointed by d_qstr.
1338 * rcu_read_lock() and rcu_read_unlock() are used to disable preemption while
1339 * lookup is going on.
1341 * The dentry unused LRU is not updated even if lookup finds the required dentry
1342 * in there. It is updated in places such as prune_dcache, shrink_dcache_sb,
1343 * select_parent and __dget_locked. This laziness saves lookup from dcache_lock
1344 * acquisition.
1346 * d_lookup() is protected against the concurrent renames in some unrelated
1347 * directory using the seqlockt_t rename_lock.
1350 struct dentry * d_lookup(struct dentry * parent, struct qstr * name)
1352 struct dentry * dentry = NULL;
1353 unsigned long seq;
1355 do {
1356 seq = read_seqbegin(&rename_lock);
1357 dentry = __d_lookup(parent, name);
1358 if (dentry)
1359 break;
1360 } while (read_seqretry(&rename_lock, seq));
1361 return dentry;
1364 struct dentry * __d_lookup(struct dentry * parent, struct qstr * name)
1366 unsigned int len = name->len;
1367 unsigned int hash = name->hash;
1368 const unsigned char *str = name->name;
1369 struct hlist_head *head = d_hash(parent,hash);
1370 struct dentry *found = NULL;
1371 struct hlist_node *node;
1372 struct dentry *dentry;
1374 rcu_read_lock();
1376 hlist_for_each_entry_rcu(dentry, node, head, d_hash) {
1377 struct qstr *qstr;
1379 if (dentry->d_name.hash != hash)
1380 continue;
1381 if (dentry->d_parent != parent)
1382 continue;
1384 spin_lock(&dentry->d_lock);
1387 * Recheck the dentry after taking the lock - d_move may have
1388 * changed things. Don't bother checking the hash because we're
1389 * about to compare the whole name anyway.
1391 if (dentry->d_parent != parent)
1392 goto next;
1394 /* non-existing due to RCU? */
1395 if (d_unhashed(dentry))
1396 goto next;
1399 * It is safe to compare names since d_move() cannot
1400 * change the qstr (protected by d_lock).
1402 qstr = &dentry->d_name;
1403 if (parent->d_op && parent->d_op->d_compare) {
1404 if (parent->d_op->d_compare(parent, qstr, name))
1405 goto next;
1406 } else {
1407 if (qstr->len != len)
1408 goto next;
1409 if (memcmp(qstr->name, str, len))
1410 goto next;
1413 atomic_inc(&dentry->d_count);
1414 found = dentry;
1415 spin_unlock(&dentry->d_lock);
1416 break;
1417 next:
1418 spin_unlock(&dentry->d_lock);
1420 rcu_read_unlock();
1422 return found;
1426 * d_hash_and_lookup - hash the qstr then search for a dentry
1427 * @dir: Directory to search in
1428 * @name: qstr of name we wish to find
1430 * On hash failure or on lookup failure NULL is returned.
1432 struct dentry *d_hash_and_lookup(struct dentry *dir, struct qstr *name)
1434 struct dentry *dentry = NULL;
1437 * Check for a fs-specific hash function. Note that we must
1438 * calculate the standard hash first, as the d_op->d_hash()
1439 * routine may choose to leave the hash value unchanged.
1441 name->hash = full_name_hash(name->name, name->len);
1442 if (dir->d_op && dir->d_op->d_hash) {
1443 if (dir->d_op->d_hash(dir, name) < 0)
1444 goto out;
1446 dentry = d_lookup(dir, name);
1447 out:
1448 return dentry;
1452 * d_validate - verify dentry provided from insecure source
1453 * @dentry: The dentry alleged to be valid child of @dparent
1454 * @dparent: The parent dentry (known to be valid)
1456 * An insecure source has sent us a dentry, here we verify it and dget() it.
1457 * This is used by ncpfs in its readdir implementation.
1458 * Zero is returned in the dentry is invalid.
1461 int d_validate(struct dentry *dentry, struct dentry *dparent)
1463 struct hlist_head *base;
1464 struct hlist_node *lhp;
1466 /* Check whether the ptr might be valid at all.. */
1467 if (!kmem_ptr_validate(dentry_cache, dentry))
1468 goto out;
1470 if (dentry->d_parent != dparent)
1471 goto out;
1473 spin_lock(&dcache_lock);
1474 base = d_hash(dparent, dentry->d_name.hash);
1475 hlist_for_each(lhp,base) {
1476 /* hlist_for_each_entry_rcu() not required for d_hash list
1477 * as it is parsed under dcache_lock
1479 if (dentry == hlist_entry(lhp, struct dentry, d_hash)) {
1480 __dget_locked(dentry);
1481 spin_unlock(&dcache_lock);
1482 return 1;
1485 spin_unlock(&dcache_lock);
1486 out:
1487 return 0;
1491 * When a file is deleted, we have two options:
1492 * - turn this dentry into a negative dentry
1493 * - unhash this dentry and free it.
1495 * Usually, we want to just turn this into
1496 * a negative dentry, but if anybody else is
1497 * currently using the dentry or the inode
1498 * we can't do that and we fall back on removing
1499 * it from the hash queues and waiting for
1500 * it to be deleted later when it has no users
1504 * d_delete - delete a dentry
1505 * @dentry: The dentry to delete
1507 * Turn the dentry into a negative dentry if possible, otherwise
1508 * remove it from the hash queues so it can be deleted later
1511 void d_delete(struct dentry * dentry)
1513 int isdir = 0;
1515 * Are we the only user?
1517 spin_lock(&dcache_lock);
1518 spin_lock(&dentry->d_lock);
1519 isdir = S_ISDIR(dentry->d_inode->i_mode);
1520 if (atomic_read(&dentry->d_count) == 1) {
1521 dentry_iput(dentry);
1522 fsnotify_nameremove(dentry, isdir);
1523 return;
1526 if (!d_unhashed(dentry))
1527 __d_drop(dentry);
1529 spin_unlock(&dentry->d_lock);
1530 spin_unlock(&dcache_lock);
1532 fsnotify_nameremove(dentry, isdir);
1535 static void __d_rehash(struct dentry * entry, struct hlist_head *list)
1538 entry->d_flags &= ~DCACHE_UNHASHED;
1539 hlist_add_head_rcu(&entry->d_hash, list);
1542 static void _d_rehash(struct dentry * entry)
1544 __d_rehash(entry, d_hash(entry->d_parent, entry->d_name.hash));
1548 * d_rehash - add an entry back to the hash
1549 * @entry: dentry to add to the hash
1551 * Adds a dentry to the hash according to its name.
1554 void d_rehash(struct dentry * entry)
1556 spin_lock(&dcache_lock);
1557 spin_lock(&entry->d_lock);
1558 _d_rehash(entry);
1559 spin_unlock(&entry->d_lock);
1560 spin_unlock(&dcache_lock);
1564 * When switching names, the actual string doesn't strictly have to
1565 * be preserved in the target - because we're dropping the target
1566 * anyway. As such, we can just do a simple memcpy() to copy over
1567 * the new name before we switch.
1569 * Note that we have to be a lot more careful about getting the hash
1570 * switched - we have to switch the hash value properly even if it
1571 * then no longer matches the actual (corrupted) string of the target.
1572 * The hash value has to match the hash queue that the dentry is on..
1574 static void switch_names(struct dentry *dentry, struct dentry *target)
1576 if (dname_external(target)) {
1577 if (dname_external(dentry)) {
1579 * Both external: swap the pointers
1581 swap(target->d_name.name, dentry->d_name.name);
1582 } else {
1584 * dentry:internal, target:external. Steal target's
1585 * storage and make target internal.
1587 memcpy(target->d_iname, dentry->d_name.name,
1588 dentry->d_name.len + 1);
1589 dentry->d_name.name = target->d_name.name;
1590 target->d_name.name = target->d_iname;
1592 } else {
1593 if (dname_external(dentry)) {
1595 * dentry:external, target:internal. Give dentry's
1596 * storage to target and make dentry internal
1598 memcpy(dentry->d_iname, target->d_name.name,
1599 target->d_name.len + 1);
1600 target->d_name.name = dentry->d_name.name;
1601 dentry->d_name.name = dentry->d_iname;
1602 } else {
1604 * Both are internal. Just copy target to dentry
1606 memcpy(dentry->d_iname, target->d_name.name,
1607 target->d_name.len + 1);
1608 dentry->d_name.len = target->d_name.len;
1609 return;
1612 swap(dentry->d_name.len, target->d_name.len);
1616 * We cannibalize "target" when moving dentry on top of it,
1617 * because it's going to be thrown away anyway. We could be more
1618 * polite about it, though.
1620 * This forceful removal will result in ugly /proc output if
1621 * somebody holds a file open that got deleted due to a rename.
1622 * We could be nicer about the deleted file, and let it show
1623 * up under the name it had before it was deleted rather than
1624 * under the original name of the file that was moved on top of it.
1628 * d_move_locked - move a dentry
1629 * @dentry: entry to move
1630 * @target: new dentry
1632 * Update the dcache to reflect the move of a file name. Negative
1633 * dcache entries should not be moved in this way.
1635 static void d_move_locked(struct dentry * dentry, struct dentry * target)
1637 struct hlist_head *list;
1639 if (!dentry->d_inode)
1640 printk(KERN_WARNING "VFS: moving negative dcache entry\n");
1642 write_seqlock(&rename_lock);
1644 * XXXX: do we really need to take target->d_lock?
1646 if (target < dentry) {
1647 spin_lock(&target->d_lock);
1648 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
1649 } else {
1650 spin_lock(&dentry->d_lock);
1651 spin_lock_nested(&target->d_lock, DENTRY_D_LOCK_NESTED);
1654 /* Move the dentry to the target hash queue, if on different bucket */
1655 if (d_unhashed(dentry))
1656 goto already_unhashed;
1658 hlist_del_rcu(&dentry->d_hash);
1660 already_unhashed:
1661 list = d_hash(target->d_parent, target->d_name.hash);
1662 __d_rehash(dentry, list);
1664 /* Unhash the target: dput() will then get rid of it */
1665 __d_drop(target);
1667 list_del(&dentry->d_u.d_child);
1668 list_del(&target->d_u.d_child);
1670 /* Switch the names.. */
1671 switch_names(dentry, target);
1672 swap(dentry->d_name.hash, target->d_name.hash);
1674 /* ... and switch the parents */
1675 if (IS_ROOT(dentry)) {
1676 dentry->d_parent = target->d_parent;
1677 target->d_parent = target;
1678 INIT_LIST_HEAD(&target->d_u.d_child);
1679 } else {
1680 swap(dentry->d_parent, target->d_parent);
1682 /* And add them back to the (new) parent lists */
1683 list_add(&target->d_u.d_child, &target->d_parent->d_subdirs);
1686 list_add(&dentry->d_u.d_child, &dentry->d_parent->d_subdirs);
1687 spin_unlock(&target->d_lock);
1688 fsnotify_d_move(dentry);
1689 spin_unlock(&dentry->d_lock);
1690 write_sequnlock(&rename_lock);
1694 * d_move - move a dentry
1695 * @dentry: entry to move
1696 * @target: new dentry
1698 * Update the dcache to reflect the move of a file name. Negative
1699 * dcache entries should not be moved in this way.
1702 void d_move(struct dentry * dentry, struct dentry * target)
1704 spin_lock(&dcache_lock);
1705 d_move_locked(dentry, target);
1706 spin_unlock(&dcache_lock);
1710 * d_ancestor - search for an ancestor
1711 * @p1: ancestor dentry
1712 * @p2: child dentry
1714 * Returns the ancestor dentry of p2 which is a child of p1, if p1 is
1715 * an ancestor of p2, else NULL.
1717 struct dentry *d_ancestor(struct dentry *p1, struct dentry *p2)
1719 struct dentry *p;
1721 for (p = p2; !IS_ROOT(p); p = p->d_parent) {
1722 if (p->d_parent == p1)
1723 return p;
1725 return NULL;
1729 * This helper attempts to cope with remotely renamed directories
1731 * It assumes that the caller is already holding
1732 * dentry->d_parent->d_inode->i_mutex and the dcache_lock
1734 * Note: If ever the locking in lock_rename() changes, then please
1735 * remember to update this too...
1737 static struct dentry *__d_unalias(struct dentry *dentry, struct dentry *alias)
1738 __releases(dcache_lock)
1740 struct mutex *m1 = NULL, *m2 = NULL;
1741 struct dentry *ret;
1743 /* If alias and dentry share a parent, then no extra locks required */
1744 if (alias->d_parent == dentry->d_parent)
1745 goto out_unalias;
1747 /* Check for loops */
1748 ret = ERR_PTR(-ELOOP);
1749 if (d_ancestor(alias, dentry))
1750 goto out_err;
1752 /* See lock_rename() */
1753 ret = ERR_PTR(-EBUSY);
1754 if (!mutex_trylock(&dentry->d_sb->s_vfs_rename_mutex))
1755 goto out_err;
1756 m1 = &dentry->d_sb->s_vfs_rename_mutex;
1757 if (!mutex_trylock(&alias->d_parent->d_inode->i_mutex))
1758 goto out_err;
1759 m2 = &alias->d_parent->d_inode->i_mutex;
1760 out_unalias:
1761 d_move_locked(alias, dentry);
1762 ret = alias;
1763 out_err:
1764 spin_unlock(&dcache_lock);
1765 if (m2)
1766 mutex_unlock(m2);
1767 if (m1)
1768 mutex_unlock(m1);
1769 return ret;
1773 * Prepare an anonymous dentry for life in the superblock's dentry tree as a
1774 * named dentry in place of the dentry to be replaced.
1776 static void __d_materialise_dentry(struct dentry *dentry, struct dentry *anon)
1778 struct dentry *dparent, *aparent;
1780 switch_names(dentry, anon);
1781 swap(dentry->d_name.hash, anon->d_name.hash);
1783 dparent = dentry->d_parent;
1784 aparent = anon->d_parent;
1786 dentry->d_parent = (aparent == anon) ? dentry : aparent;
1787 list_del(&dentry->d_u.d_child);
1788 if (!IS_ROOT(dentry))
1789 list_add(&dentry->d_u.d_child, &dentry->d_parent->d_subdirs);
1790 else
1791 INIT_LIST_HEAD(&dentry->d_u.d_child);
1793 anon->d_parent = (dparent == dentry) ? anon : dparent;
1794 list_del(&anon->d_u.d_child);
1795 if (!IS_ROOT(anon))
1796 list_add(&anon->d_u.d_child, &anon->d_parent->d_subdirs);
1797 else
1798 INIT_LIST_HEAD(&anon->d_u.d_child);
1800 anon->d_flags &= ~DCACHE_DISCONNECTED;
1804 * d_materialise_unique - introduce an inode into the tree
1805 * @dentry: candidate dentry
1806 * @inode: inode to bind to the dentry, to which aliases may be attached
1808 * Introduces an dentry into the tree, substituting an extant disconnected
1809 * root directory alias in its place if there is one
1811 struct dentry *d_materialise_unique(struct dentry *dentry, struct inode *inode)
1813 struct dentry *actual;
1815 BUG_ON(!d_unhashed(dentry));
1817 spin_lock(&dcache_lock);
1819 if (!inode) {
1820 actual = dentry;
1821 __d_instantiate(dentry, NULL);
1822 goto found_lock;
1825 if (S_ISDIR(inode->i_mode)) {
1826 struct dentry *alias;
1828 /* Does an aliased dentry already exist? */
1829 alias = __d_find_alias(inode, 0);
1830 if (alias) {
1831 actual = alias;
1832 /* Is this an anonymous mountpoint that we could splice
1833 * into our tree? */
1834 if (IS_ROOT(alias)) {
1835 spin_lock(&alias->d_lock);
1836 __d_materialise_dentry(dentry, alias);
1837 __d_drop(alias);
1838 goto found;
1840 /* Nope, but we must(!) avoid directory aliasing */
1841 actual = __d_unalias(dentry, alias);
1842 if (IS_ERR(actual))
1843 dput(alias);
1844 goto out_nolock;
1848 /* Add a unique reference */
1849 actual = __d_instantiate_unique(dentry, inode);
1850 if (!actual)
1851 actual = dentry;
1852 else if (unlikely(!d_unhashed(actual)))
1853 goto shouldnt_be_hashed;
1855 found_lock:
1856 spin_lock(&actual->d_lock);
1857 found:
1858 _d_rehash(actual);
1859 spin_unlock(&actual->d_lock);
1860 spin_unlock(&dcache_lock);
1861 out_nolock:
1862 if (actual == dentry) {
1863 security_d_instantiate(dentry, inode);
1864 return NULL;
1867 iput(inode);
1868 return actual;
1870 shouldnt_be_hashed:
1871 spin_unlock(&dcache_lock);
1872 BUG();
1875 static int prepend(char **buffer, int *buflen, const char *str, int namelen)
1877 *buflen -= namelen;
1878 if (*buflen < 0)
1879 return -ENAMETOOLONG;
1880 *buffer -= namelen;
1881 memcpy(*buffer, str, namelen);
1882 return 0;
1885 static int prepend_name(char **buffer, int *buflen, struct qstr *name)
1887 return prepend(buffer, buflen, name->name, name->len);
1891 * __d_path - return the path of a dentry
1892 * @path: the dentry/vfsmount to report
1893 * @root: root vfsmnt/dentry (may be modified by this function)
1894 * @buffer: buffer to return value in
1895 * @buflen: buffer length
1897 * Convert a dentry into an ASCII path name. If the entry has been deleted
1898 * the string " (deleted)" is appended. Note that this is ambiguous.
1900 * Returns a pointer into the buffer or an error code if the
1901 * path was too long.
1903 * "buflen" should be positive. Caller holds the dcache_lock.
1905 * If path is not reachable from the supplied root, then the value of
1906 * root is changed (without modifying refcounts).
1908 char *__d_path(const struct path *path, struct path *root,
1909 char *buffer, int buflen)
1911 struct dentry *dentry = path->dentry;
1912 struct vfsmount *vfsmnt = path->mnt;
1913 char *end = buffer + buflen;
1914 char *retval;
1916 spin_lock(&vfsmount_lock);
1917 prepend(&end, &buflen, "\0", 1);
1918 if (d_unlinked(dentry) &&
1919 (prepend(&end, &buflen, " (deleted)", 10) != 0))
1920 goto Elong;
1922 if (buflen < 1)
1923 goto Elong;
1924 /* Get '/' right */
1925 retval = end-1;
1926 *retval = '/';
1928 for (;;) {
1929 struct dentry * parent;
1931 if (dentry == root->dentry && vfsmnt == root->mnt)
1932 break;
1933 if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
1934 /* Global root? */
1935 if (vfsmnt->mnt_parent == vfsmnt) {
1936 goto global_root;
1938 dentry = vfsmnt->mnt_mountpoint;
1939 vfsmnt = vfsmnt->mnt_parent;
1940 continue;
1942 parent = dentry->d_parent;
1943 prefetch(parent);
1944 if ((prepend_name(&end, &buflen, &dentry->d_name) != 0) ||
1945 (prepend(&end, &buflen, "/", 1) != 0))
1946 goto Elong;
1947 retval = end;
1948 dentry = parent;
1951 out:
1952 spin_unlock(&vfsmount_lock);
1953 return retval;
1955 global_root:
1956 retval += 1; /* hit the slash */
1957 if (prepend_name(&retval, &buflen, &dentry->d_name) != 0)
1958 goto Elong;
1959 root->mnt = vfsmnt;
1960 root->dentry = dentry;
1961 goto out;
1963 Elong:
1964 retval = ERR_PTR(-ENAMETOOLONG);
1965 goto out;
1969 * d_path - return the path of a dentry
1970 * @path: path to report
1971 * @buf: buffer to return value in
1972 * @buflen: buffer length
1974 * Convert a dentry into an ASCII path name. If the entry has been deleted
1975 * the string " (deleted)" is appended. Note that this is ambiguous.
1977 * Returns a pointer into the buffer or an error code if the path was
1978 * too long. Note: Callers should use the returned pointer, not the passed
1979 * in buffer, to use the name! The implementation often starts at an offset
1980 * into the buffer, and may leave 0 bytes at the start.
1982 * "buflen" should be positive.
1984 char *d_path(const struct path *path, char *buf, int buflen)
1986 char *res;
1987 struct path root;
1988 struct path tmp;
1991 * We have various synthetic filesystems that never get mounted. On
1992 * these filesystems dentries are never used for lookup purposes, and
1993 * thus don't need to be hashed. They also don't need a name until a
1994 * user wants to identify the object in /proc/pid/fd/. The little hack
1995 * below allows us to generate a name for these objects on demand:
1997 if (path->dentry->d_op && path->dentry->d_op->d_dname)
1998 return path->dentry->d_op->d_dname(path->dentry, buf, buflen);
2000 read_lock(&current->fs->lock);
2001 root = current->fs->root;
2002 path_get(&root);
2003 read_unlock(&current->fs->lock);
2004 spin_lock(&dcache_lock);
2005 tmp = root;
2006 res = __d_path(path, &tmp, buf, buflen);
2007 spin_unlock(&dcache_lock);
2008 path_put(&root);
2009 return res;
2013 * Helper function for dentry_operations.d_dname() members
2015 char *dynamic_dname(struct dentry *dentry, char *buffer, int buflen,
2016 const char *fmt, ...)
2018 va_list args;
2019 char temp[64];
2020 int sz;
2022 va_start(args, fmt);
2023 sz = vsnprintf(temp, sizeof(temp), fmt, args) + 1;
2024 va_end(args);
2026 if (sz > sizeof(temp) || sz > buflen)
2027 return ERR_PTR(-ENAMETOOLONG);
2029 buffer += buflen - sz;
2030 return memcpy(buffer, temp, sz);
2034 * Write full pathname from the root of the filesystem into the buffer.
2036 char *dentry_path(struct dentry *dentry, char *buf, int buflen)
2038 char *end = buf + buflen;
2039 char *retval;
2041 spin_lock(&dcache_lock);
2042 prepend(&end, &buflen, "\0", 1);
2043 if (d_unlinked(dentry) &&
2044 (prepend(&end, &buflen, "//deleted", 9) != 0))
2045 goto Elong;
2046 if (buflen < 1)
2047 goto Elong;
2048 /* Get '/' right */
2049 retval = end-1;
2050 *retval = '/';
2052 while (!IS_ROOT(dentry)) {
2053 struct dentry *parent = dentry->d_parent;
2055 prefetch(parent);
2056 if ((prepend_name(&end, &buflen, &dentry->d_name) != 0) ||
2057 (prepend(&end, &buflen, "/", 1) != 0))
2058 goto Elong;
2060 retval = end;
2061 dentry = parent;
2063 spin_unlock(&dcache_lock);
2064 return retval;
2065 Elong:
2066 spin_unlock(&dcache_lock);
2067 return ERR_PTR(-ENAMETOOLONG);
2071 * NOTE! The user-level library version returns a
2072 * character pointer. The kernel system call just
2073 * returns the length of the buffer filled (which
2074 * includes the ending '\0' character), or a negative
2075 * error value. So libc would do something like
2077 * char *getcwd(char * buf, size_t size)
2079 * int retval;
2081 * retval = sys_getcwd(buf, size);
2082 * if (retval >= 0)
2083 * return buf;
2084 * errno = -retval;
2085 * return NULL;
2088 SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size)
2090 int error;
2091 struct path pwd, root;
2092 char *page = (char *) __get_free_page(GFP_USER);
2094 if (!page)
2095 return -ENOMEM;
2097 read_lock(&current->fs->lock);
2098 pwd = current->fs->pwd;
2099 path_get(&pwd);
2100 root = current->fs->root;
2101 path_get(&root);
2102 read_unlock(&current->fs->lock);
2104 error = -ENOENT;
2105 spin_lock(&dcache_lock);
2106 if (!d_unlinked(pwd.dentry)) {
2107 unsigned long len;
2108 struct path tmp = root;
2109 char * cwd;
2111 cwd = __d_path(&pwd, &tmp, page, PAGE_SIZE);
2112 spin_unlock(&dcache_lock);
2114 error = PTR_ERR(cwd);
2115 if (IS_ERR(cwd))
2116 goto out;
2118 error = -ERANGE;
2119 len = PAGE_SIZE + page - cwd;
2120 if (len <= size) {
2121 error = len;
2122 if (copy_to_user(buf, cwd, len))
2123 error = -EFAULT;
2125 } else
2126 spin_unlock(&dcache_lock);
2128 out:
2129 path_put(&pwd);
2130 path_put(&root);
2131 free_page((unsigned long) page);
2132 return error;
2136 * Test whether new_dentry is a subdirectory of old_dentry.
2138 * Trivially implemented using the dcache structure
2142 * is_subdir - is new dentry a subdirectory of old_dentry
2143 * @new_dentry: new dentry
2144 * @old_dentry: old dentry
2146 * Returns 1 if new_dentry is a subdirectory of the parent (at any depth).
2147 * Returns 0 otherwise.
2148 * Caller must ensure that "new_dentry" is pinned before calling is_subdir()
2151 int is_subdir(struct dentry *new_dentry, struct dentry *old_dentry)
2153 int result;
2154 unsigned long seq;
2156 if (new_dentry == old_dentry)
2157 return 1;
2160 * Need rcu_readlock to protect against the d_parent trashing
2161 * due to d_move
2163 rcu_read_lock();
2164 do {
2165 /* for restarting inner loop in case of seq retry */
2166 seq = read_seqbegin(&rename_lock);
2167 if (d_ancestor(old_dentry, new_dentry))
2168 result = 1;
2169 else
2170 result = 0;
2171 } while (read_seqretry(&rename_lock, seq));
2172 rcu_read_unlock();
2174 return result;
2177 void d_genocide(struct dentry *root)
2179 struct dentry *this_parent = root;
2180 struct list_head *next;
2182 spin_lock(&dcache_lock);
2183 repeat:
2184 next = this_parent->d_subdirs.next;
2185 resume:
2186 while (next != &this_parent->d_subdirs) {
2187 struct list_head *tmp = next;
2188 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
2189 next = tmp->next;
2190 if (d_unhashed(dentry)||!dentry->d_inode)
2191 continue;
2192 if (!list_empty(&dentry->d_subdirs)) {
2193 this_parent = dentry;
2194 goto repeat;
2196 atomic_dec(&dentry->d_count);
2198 if (this_parent != root) {
2199 next = this_parent->d_u.d_child.next;
2200 atomic_dec(&this_parent->d_count);
2201 this_parent = this_parent->d_parent;
2202 goto resume;
2204 spin_unlock(&dcache_lock);
2208 * find_inode_number - check for dentry with name
2209 * @dir: directory to check
2210 * @name: Name to find.
2212 * Check whether a dentry already exists for the given name,
2213 * and return the inode number if it has an inode. Otherwise
2214 * 0 is returned.
2216 * This routine is used to post-process directory listings for
2217 * filesystems using synthetic inode numbers, and is necessary
2218 * to keep getcwd() working.
2221 ino_t find_inode_number(struct dentry *dir, struct qstr *name)
2223 struct dentry * dentry;
2224 ino_t ino = 0;
2226 dentry = d_hash_and_lookup(dir, name);
2227 if (dentry) {
2228 if (dentry->d_inode)
2229 ino = dentry->d_inode->i_ino;
2230 dput(dentry);
2232 return ino;
2235 static __initdata unsigned long dhash_entries;
2236 static int __init set_dhash_entries(char *str)
2238 if (!str)
2239 return 0;
2240 dhash_entries = simple_strtoul(str, &str, 0);
2241 return 1;
2243 __setup("dhash_entries=", set_dhash_entries);
2245 static void __init dcache_init_early(void)
2247 int loop;
2249 /* If hashes are distributed across NUMA nodes, defer
2250 * hash allocation until vmalloc space is available.
2252 if (hashdist)
2253 return;
2255 dentry_hashtable =
2256 alloc_large_system_hash("Dentry cache",
2257 sizeof(struct hlist_head),
2258 dhash_entries,
2260 HASH_EARLY,
2261 &d_hash_shift,
2262 &d_hash_mask,
2265 for (loop = 0; loop < (1 << d_hash_shift); loop++)
2266 INIT_HLIST_HEAD(&dentry_hashtable[loop]);
2269 static void __init dcache_init(void)
2271 int loop;
2274 * A constructor could be added for stable state like the lists,
2275 * but it is probably not worth it because of the cache nature
2276 * of the dcache.
2278 dentry_cache = KMEM_CACHE(dentry,
2279 SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|SLAB_MEM_SPREAD);
2281 register_shrinker(&dcache_shrinker);
2283 /* Hash may have been set up in dcache_init_early */
2284 if (!hashdist)
2285 return;
2287 dentry_hashtable =
2288 alloc_large_system_hash("Dentry cache",
2289 sizeof(struct hlist_head),
2290 dhash_entries,
2293 &d_hash_shift,
2294 &d_hash_mask,
2297 for (loop = 0; loop < (1 << d_hash_shift); loop++)
2298 INIT_HLIST_HEAD(&dentry_hashtable[loop]);
2301 /* SLAB cache for __getname() consumers */
2302 struct kmem_cache *names_cachep __read_mostly;
2304 EXPORT_SYMBOL(d_genocide);
2306 void __init vfs_caches_init_early(void)
2308 dcache_init_early();
2309 inode_init_early();
2312 void __init vfs_caches_init(unsigned long mempages)
2314 unsigned long reserve;
2316 /* Base hash sizes on available memory, with a reserve equal to
2317 150% of current kernel size */
2319 reserve = min((mempages - nr_free_pages()) * 3/2, mempages - 1);
2320 mempages -= reserve;
2322 names_cachep = kmem_cache_create("names_cache", PATH_MAX, 0,
2323 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
2325 dcache_init();
2326 inode_init();
2327 files_init(mempages);
2328 mnt_init();
2329 bdev_cache_init();
2330 chrdev_init();
2333 EXPORT_SYMBOL(d_alloc);
2334 EXPORT_SYMBOL(d_alloc_root);
2335 EXPORT_SYMBOL(d_delete);
2336 EXPORT_SYMBOL(d_find_alias);
2337 EXPORT_SYMBOL(d_instantiate);
2338 EXPORT_SYMBOL(d_invalidate);
2339 EXPORT_SYMBOL(d_lookup);
2340 EXPORT_SYMBOL(d_move);
2341 EXPORT_SYMBOL_GPL(d_materialise_unique);
2342 EXPORT_SYMBOL(d_path);
2343 EXPORT_SYMBOL(d_prune_aliases);
2344 EXPORT_SYMBOL(d_rehash);
2345 EXPORT_SYMBOL(d_splice_alias);
2346 EXPORT_SYMBOL(d_add_ci);
2347 EXPORT_SYMBOL(d_validate);
2348 EXPORT_SYMBOL(dget_locked);
2349 EXPORT_SYMBOL(dput);
2350 EXPORT_SYMBOL(find_inode_number);
2351 EXPORT_SYMBOL(have_submounts);
2352 EXPORT_SYMBOL(names_cachep);
2353 EXPORT_SYMBOL(shrink_dcache_parent);
2354 EXPORT_SYMBOL(shrink_dcache_sb);