blob: d600a0af3b2e3fee04b9dce0b610cf88c17c0123 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/syscalls.h>
18#include <linux/string.h>
19#include <linux/mm.h>
20#include <linux/fs.h>
John McCutchan7a91bf72005-08-08 13:52:16 -040021#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/slab.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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>
Al Viro5ad4e532009-03-29 19:50:06 -040034#include <linux/fs_struct.h>
Frederic Weisbecker613afbf2009-07-16 15:44:29 +020035#include <linux/hardirq.h>
Nick Pigginceb5bdc2011-01-07 17:50:05 +110036#include <linux/bit_spinlock.h>
37#include <linux/rculist_bl.h>
David Howells07f3f052006-09-30 20:52:18 +020038#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Nick Piggin789680d2011-01-07 17:49:30 +110040/*
41 * Usage:
Nick Piggin873feea2011-01-07 17:50:06 +110042 * dcache->d_inode->i_lock protects:
43 * - i_dentry, d_alias, d_inode of aliases
Nick Pigginceb5bdc2011-01-07 17:50:05 +110044 * dcache_hash_bucket lock protects:
45 * - the dcache hash table
46 * s_anon bl list spinlock protects:
47 * - the s_anon list (see __d_drop)
Nick Piggin23044502011-01-07 17:49:31 +110048 * dcache_lru_lock protects:
49 * - the dcache lru lists and counters
50 * d_lock protects:
51 * - d_flags
52 * - d_name
53 * - d_lru
Nick Pigginb7ab39f2011-01-07 17:49:32 +110054 * - d_count
Nick Pigginda502952011-01-07 17:49:33 +110055 * - d_unhashed()
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110056 * - d_parent and d_subdirs
57 * - childrens' d_child and d_parent
Nick Pigginb23fb0a2011-01-07 17:49:35 +110058 * - d_alias, d_inode
Nick Piggin789680d2011-01-07 17:49:30 +110059 *
60 * Ordering:
Nick Piggin873feea2011-01-07 17:50:06 +110061 * dentry->d_inode->i_lock
Nick Pigginb5c84bf2011-01-07 17:49:38 +110062 * dentry->d_lock
63 * dcache_lru_lock
Nick Pigginceb5bdc2011-01-07 17:50:05 +110064 * dcache_hash_bucket lock
65 * s_anon lock
Nick Piggin789680d2011-01-07 17:49:30 +110066 *
Nick Pigginda502952011-01-07 17:49:33 +110067 * If there is an ancestor relationship:
68 * dentry->d_parent->...->d_parent->d_lock
69 * ...
70 * dentry->d_parent->d_lock
71 * dentry->d_lock
72 *
73 * If no ancestor relationship:
Nick Piggin789680d2011-01-07 17:49:30 +110074 * if (dentry1 < dentry2)
75 * dentry1->d_lock
76 * dentry2->d_lock
77 */
Eric Dumazetfa3536c2006-03-26 01:37:24 -080078int sysctl_vfs_cache_pressure __read_mostly = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079EXPORT_SYMBOL_GPL(sysctl_vfs_cache_pressure);
80
Nick Piggin23044502011-01-07 17:49:31 +110081static __cacheline_aligned_in_smp DEFINE_SPINLOCK(dcache_lru_lock);
Al Viro74c3cbe2007-07-22 08:04:18 -040082__cacheline_aligned_in_smp DEFINE_SEQLOCK(rename_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Nick Piggin949854d2011-01-07 17:49:37 +110084EXPORT_SYMBOL(rename_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Christoph Lametere18b8902006-12-06 20:33:20 -080086static struct kmem_cache *dentry_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/*
89 * This is the single most critical data structure when it comes
90 * to the dcache: the hashtable for lookups. Somebody should try
91 * to make this good - I've just made it work.
92 *
93 * This hash-function tries to avoid losing too many bits of hash
94 * information, yet avoid using a prime hash-size or similar.
95 */
96#define D_HASHBITS d_hash_shift
97#define D_HASHMASK d_hash_mask
98
Eric Dumazetfa3536c2006-03-26 01:37:24 -080099static unsigned int d_hash_mask __read_mostly;
100static unsigned int d_hash_shift __read_mostly;
Nick Pigginceb5bdc2011-01-07 17:50:05 +1100101
Linus Torvaldsb07ad992011-04-23 22:32:03 -0700102static struct hlist_bl_head *dentry_hashtable __read_mostly;
Nick Pigginceb5bdc2011-01-07 17:50:05 +1100103
Linus Torvaldsb07ad992011-04-23 22:32:03 -0700104static inline struct hlist_bl_head *d_hash(struct dentry *parent,
Nick Pigginceb5bdc2011-01-07 17:50:05 +1100105 unsigned long hash)
106{
107 hash += ((unsigned long) parent ^ GOLDEN_RATIO_PRIME) / L1_CACHE_BYTES;
108 hash = hash ^ ((hash ^ GOLDEN_RATIO_PRIME) >> D_HASHBITS);
109 return dentry_hashtable + (hash & D_HASHMASK);
110}
111
Linus Torvaldsb07ad992011-04-23 22:32:03 -0700112static inline void spin_lock_bucket(struct hlist_bl_head *b)
Nick Pigginceb5bdc2011-01-07 17:50:05 +1100113{
Linus Torvaldsb07ad992011-04-23 22:32:03 -0700114 bit_spin_lock(0, (unsigned long *)&b->first);
Nick Pigginceb5bdc2011-01-07 17:50:05 +1100115}
116
Linus Torvaldsb07ad992011-04-23 22:32:03 -0700117static inline void spin_unlock_bucket(struct hlist_bl_head *b)
Nick Pigginceb5bdc2011-01-07 17:50:05 +1100118{
Linus Torvaldsb07ad992011-04-23 22:32:03 -0700119 __bit_spin_unlock(0, (unsigned long *)&b->first);
Nick Pigginceb5bdc2011-01-07 17:50:05 +1100120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122/* Statistics gathering. */
123struct dentry_stat_t dentry_stat = {
124 .age_limit = 45,
125};
126
Nick Piggin3e880fb2011-01-07 17:49:19 +1100127static DEFINE_PER_CPU(unsigned int, nr_dentry);
Christoph Hellwig312d3ca2010-10-10 05:36:23 -0400128
129#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
Nick Piggin3e880fb2011-01-07 17:49:19 +1100130static int get_nr_dentry(void)
131{
132 int i;
133 int sum = 0;
134 for_each_possible_cpu(i)
135 sum += per_cpu(nr_dentry, i);
136 return sum < 0 ? 0 : sum;
137}
138
Christoph Hellwig312d3ca2010-10-10 05:36:23 -0400139int proc_nr_dentry(ctl_table *table, int write, void __user *buffer,
140 size_t *lenp, loff_t *ppos)
141{
Nick Piggin3e880fb2011-01-07 17:49:19 +1100142 dentry_stat.nr_dentry = get_nr_dentry();
Christoph Hellwig312d3ca2010-10-10 05:36:23 -0400143 return proc_dointvec(table, write, buffer, lenp, ppos);
144}
145#endif
146
Christoph Hellwig9c82ab92010-10-10 05:36:22 -0400147static void __d_free(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Christoph Hellwig9c82ab92010-10-10 05:36:22 -0400149 struct dentry *dentry = container_of(head, struct dentry, d_u.d_rcu);
150
Arjan van de Venfd217f42008-10-21 06:47:33 -0700151 WARN_ON(!list_empty(&dentry->d_alias));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (dname_external(dentry))
153 kfree(dentry->d_name.name);
154 kmem_cache_free(dentry_cache, dentry);
155}
156
157/*
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100158 * no locks, please.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
160static void d_free(struct dentry *dentry)
161{
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100162 BUG_ON(dentry->d_count);
Nick Piggin3e880fb2011-01-07 17:49:19 +1100163 this_cpu_dec(nr_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (dentry->d_op && dentry->d_op->d_release)
165 dentry->d_op->d_release(dentry);
Christoph Hellwig312d3ca2010-10-10 05:36:23 -0400166
Linus Torvaldsdea36672011-04-24 07:58:46 -0700167 /* if dentry was never visible to RCU, immediate free is OK */
168 if (!(dentry->d_flags & DCACHE_RCUACCESS))
Christoph Hellwig9c82ab92010-10-10 05:36:22 -0400169 __d_free(&dentry->d_u.d_rcu);
Eric Dumazetb3423412006-12-06 20:38:48 -0800170 else
Christoph Hellwig9c82ab92010-10-10 05:36:22 -0400171 call_rcu(&dentry->d_u.d_rcu, __d_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Nick Piggin31e6b012011-01-07 17:49:52 +1100174/**
175 * dentry_rcuwalk_barrier - invalidate in-progress rcu-walk lookups
Randy Dunlapff5fdb62011-01-22 20:16:06 -0800176 * @dentry: the target dentry
Nick Piggin31e6b012011-01-07 17:49:52 +1100177 * After this call, in-progress rcu-walk path lookup will fail. This
178 * should be called after unhashing, and after changing d_inode (if
179 * the dentry has not already been unhashed).
180 */
181static inline void dentry_rcuwalk_barrier(struct dentry *dentry)
182{
183 assert_spin_locked(&dentry->d_lock);
184 /* Go through a barrier */
185 write_seqcount_barrier(&dentry->d_seq);
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/*
189 * Release the dentry's inode, using the filesystem
Nick Piggin31e6b012011-01-07 17:49:52 +1100190 * d_iput() operation if defined. Dentry has no refcount
191 * and is unhashed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800193static void dentry_iput(struct dentry * dentry)
Miklos Szeredi31f3e0b2008-06-23 18:11:52 +0200194 __releases(dentry->d_lock)
Nick Piggin873feea2011-01-07 17:50:06 +1100195 __releases(dentry->d_inode->i_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 struct inode *inode = dentry->d_inode;
198 if (inode) {
199 dentry->d_inode = NULL;
200 list_del_init(&dentry->d_alias);
201 spin_unlock(&dentry->d_lock);
Nick Piggin873feea2011-01-07 17:50:06 +1100202 spin_unlock(&inode->i_lock);
Linus Torvaldsf805fbd2005-09-19 19:54:29 -0700203 if (!inode->i_nlink)
204 fsnotify_inoderemove(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (dentry->d_op && dentry->d_op->d_iput)
206 dentry->d_op->d_iput(dentry, inode);
207 else
208 iput(inode);
209 } else {
210 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212}
213
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700214/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100215 * Release the dentry's inode, using the filesystem
216 * d_iput() operation if defined. dentry remains in-use.
217 */
218static void dentry_unlink_inode(struct dentry * dentry)
219 __releases(dentry->d_lock)
Nick Piggin873feea2011-01-07 17:50:06 +1100220 __releases(dentry->d_inode->i_lock)
Nick Piggin31e6b012011-01-07 17:49:52 +1100221{
222 struct inode *inode = dentry->d_inode;
223 dentry->d_inode = NULL;
224 list_del_init(&dentry->d_alias);
225 dentry_rcuwalk_barrier(dentry);
226 spin_unlock(&dentry->d_lock);
Nick Piggin873feea2011-01-07 17:50:06 +1100227 spin_unlock(&inode->i_lock);
Nick Piggin31e6b012011-01-07 17:49:52 +1100228 if (!inode->i_nlink)
229 fsnotify_inoderemove(inode);
230 if (dentry->d_op && dentry->d_op->d_iput)
231 dentry->d_op->d_iput(dentry, inode);
232 else
233 iput(inode);
234}
235
236/*
Nick Piggin23044502011-01-07 17:49:31 +1100237 * dentry_lru_(add|del|move_tail) must be called with d_lock held.
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700238 */
239static void dentry_lru_add(struct dentry *dentry)
240{
Christoph Hellwiga4633352010-10-10 05:36:26 -0400241 if (list_empty(&dentry->d_lru)) {
Nick Piggin23044502011-01-07 17:49:31 +1100242 spin_lock(&dcache_lru_lock);
Christoph Hellwiga4633352010-10-10 05:36:26 -0400243 list_add(&dentry->d_lru, &dentry->d_sb->s_dentry_lru);
244 dentry->d_sb->s_nr_dentry_unused++;
Nick Piggin86c87492011-01-07 17:49:18 +1100245 dentry_stat.nr_unused++;
Nick Piggin23044502011-01-07 17:49:31 +1100246 spin_unlock(&dcache_lru_lock);
Christoph Hellwiga4633352010-10-10 05:36:26 -0400247 }
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700248}
249
Nick Piggin23044502011-01-07 17:49:31 +1100250static void __dentry_lru_del(struct dentry *dentry)
251{
252 list_del_init(&dentry->d_lru);
253 dentry->d_sb->s_nr_dentry_unused--;
254 dentry_stat.nr_unused--;
255}
256
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700257static void dentry_lru_del(struct dentry *dentry)
258{
259 if (!list_empty(&dentry->d_lru)) {
Nick Piggin23044502011-01-07 17:49:31 +1100260 spin_lock(&dcache_lru_lock);
261 __dentry_lru_del(dentry);
262 spin_unlock(&dcache_lru_lock);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700263 }
264}
265
Christoph Hellwiga4633352010-10-10 05:36:26 -0400266static void dentry_lru_move_tail(struct dentry *dentry)
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700267{
Nick Piggin23044502011-01-07 17:49:31 +1100268 spin_lock(&dcache_lru_lock);
Christoph Hellwiga4633352010-10-10 05:36:26 -0400269 if (list_empty(&dentry->d_lru)) {
270 list_add_tail(&dentry->d_lru, &dentry->d_sb->s_dentry_lru);
271 dentry->d_sb->s_nr_dentry_unused++;
Nick Piggin86c87492011-01-07 17:49:18 +1100272 dentry_stat.nr_unused++;
Christoph Hellwiga4633352010-10-10 05:36:26 -0400273 } else {
274 list_move_tail(&dentry->d_lru, &dentry->d_sb->s_dentry_lru);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700275 }
Nick Piggin23044502011-01-07 17:49:31 +1100276 spin_unlock(&dcache_lru_lock);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700277}
278
Miklos Szeredid52b9082007-05-08 00:23:46 -0700279/**
280 * d_kill - kill dentry and return parent
281 * @dentry: dentry to kill
Randy Dunlapff5fdb62011-01-22 20:16:06 -0800282 * @parent: parent dentry
Miklos Szeredid52b9082007-05-08 00:23:46 -0700283 *
Miklos Szeredi31f3e0b2008-06-23 18:11:52 +0200284 * The dentry must already be unhashed and removed from the LRU.
Miklos Szeredid52b9082007-05-08 00:23:46 -0700285 *
286 * If this is the root of the dentry tree, return NULL.
Nick Piggin23044502011-01-07 17:49:31 +1100287 *
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100288 * dentry->d_lock and parent->d_lock must be held by caller, and are dropped by
289 * d_kill.
Miklos Szeredid52b9082007-05-08 00:23:46 -0700290 */
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100291static struct dentry *d_kill(struct dentry *dentry, struct dentry *parent)
Miklos Szeredi31f3e0b2008-06-23 18:11:52 +0200292 __releases(dentry->d_lock)
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100293 __releases(parent->d_lock)
Nick Piggin873feea2011-01-07 17:50:06 +1100294 __releases(dentry->d_inode->i_lock)
Miklos Szeredid52b9082007-05-08 00:23:46 -0700295{
Miklos Szeredid52b9082007-05-08 00:23:46 -0700296 list_del(&dentry->d_u.d_child);
Trond Myklebustc83ce982011-03-15 13:36:43 -0400297 /*
298 * Inform try_to_ascend() that we are no longer attached to the
299 * dentry tree
300 */
301 dentry->d_flags |= DCACHE_DISCONNECTED;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100302 if (parent)
303 spin_unlock(&parent->d_lock);
Miklos Szeredid52b9082007-05-08 00:23:46 -0700304 dentry_iput(dentry);
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100305 /*
306 * dentry_iput drops the locks, at which point nobody (except
307 * transient RCU lookups) can reach this dentry.
308 */
Miklos Szeredid52b9082007-05-08 00:23:46 -0700309 d_free(dentry);
OGAWA Hirofumi871c0062008-10-16 07:50:27 +0900310 return parent;
Miklos Szeredid52b9082007-05-08 00:23:46 -0700311}
312
Nick Piggin789680d2011-01-07 17:49:30 +1100313/**
314 * d_drop - drop a dentry
315 * @dentry: dentry to drop
316 *
317 * d_drop() unhashes the entry from the parent dentry hashes, so that it won't
318 * be found through a VFS lookup any more. Note that this is different from
319 * deleting the dentry - d_delete will try to mark the dentry negative if
320 * possible, giving a successful _negative_ lookup, while d_drop will
321 * just make the cache lookup fail.
322 *
323 * d_drop() is used mainly for stuff that wants to invalidate a dentry for some
324 * reason (NFS timeouts or autofs deletes).
325 *
326 * __d_drop requires dentry->d_lock.
327 */
328void __d_drop(struct dentry *dentry)
329{
Linus Torvaldsdea36672011-04-24 07:58:46 -0700330 if (!d_unhashed(dentry)) {
Linus Torvaldsb07ad992011-04-23 22:32:03 -0700331 struct hlist_bl_head *b;
Linus Torvaldsdea36672011-04-24 07:58:46 -0700332 if (unlikely(dentry->d_flags & DCACHE_DISCONNECTED))
Linus Torvaldsb07ad992011-04-23 22:32:03 -0700333 b = &dentry->d_sb->s_anon;
Linus Torvaldsdea36672011-04-24 07:58:46 -0700334 else
Nick Pigginceb5bdc2011-01-07 17:50:05 +1100335 b = d_hash(dentry->d_parent, dentry->d_name.hash);
Linus Torvaldsdea36672011-04-24 07:58:46 -0700336
337 spin_lock_bucket(b);
338 __hlist_bl_del(&dentry->d_hash);
339 dentry->d_hash.pprev = NULL;
340 spin_unlock_bucket(b);
341
342 dentry_rcuwalk_barrier(dentry);
Nick Piggin789680d2011-01-07 17:49:30 +1100343 }
344}
345EXPORT_SYMBOL(__d_drop);
346
347void d_drop(struct dentry *dentry)
348{
Nick Piggin789680d2011-01-07 17:49:30 +1100349 spin_lock(&dentry->d_lock);
350 __d_drop(dentry);
351 spin_unlock(&dentry->d_lock);
Nick Piggin789680d2011-01-07 17:49:30 +1100352}
353EXPORT_SYMBOL(d_drop);
354
Nick Piggin77812a12011-01-07 17:49:48 +1100355/*
356 * Finish off a dentry we've decided to kill.
357 * dentry->d_lock must be held, returns with it unlocked.
358 * If ref is non-zero, then decrement the refcount too.
359 * Returns dentry requiring refcount drop, or NULL if we're done.
360 */
361static inline struct dentry *dentry_kill(struct dentry *dentry, int ref)
362 __releases(dentry->d_lock)
363{
Nick Piggin873feea2011-01-07 17:50:06 +1100364 struct inode *inode;
Nick Piggin77812a12011-01-07 17:49:48 +1100365 struct dentry *parent;
366
Nick Piggin873feea2011-01-07 17:50:06 +1100367 inode = dentry->d_inode;
368 if (inode && !spin_trylock(&inode->i_lock)) {
Nick Piggin77812a12011-01-07 17:49:48 +1100369relock:
370 spin_unlock(&dentry->d_lock);
371 cpu_relax();
372 return dentry; /* try again with same dentry */
373 }
374 if (IS_ROOT(dentry))
375 parent = NULL;
376 else
377 parent = dentry->d_parent;
378 if (parent && !spin_trylock(&parent->d_lock)) {
Nick Piggin873feea2011-01-07 17:50:06 +1100379 if (inode)
380 spin_unlock(&inode->i_lock);
Nick Piggin77812a12011-01-07 17:49:48 +1100381 goto relock;
382 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100383
Nick Piggin77812a12011-01-07 17:49:48 +1100384 if (ref)
385 dentry->d_count--;
386 /* if dentry was on the d_lru list delete it from there */
387 dentry_lru_del(dentry);
388 /* if it was on the hash then remove it */
389 __d_drop(dentry);
390 return d_kill(dentry, parent);
391}
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/*
394 * This is dput
395 *
396 * This is complicated by the fact that we do not want to put
397 * dentries that are no longer on any hash chain on the unused
398 * list: we'd much rather just get rid of them immediately.
399 *
400 * However, that implies that we have to traverse the dentry
401 * tree upwards to the parents which might _also_ now be
402 * scheduled for deletion (it may have been only waiting for
403 * its last child to go away).
404 *
405 * This tail recursion is done by hand as we don't want to depend
406 * on the compiler to always get this right (gcc generally doesn't).
407 * Real recursion would eat up our stack space.
408 */
409
410/*
411 * dput - release a dentry
412 * @dentry: dentry to release
413 *
414 * Release a dentry. This will drop the usage count and if appropriate
415 * call the dentry unlink method as well as removing it from the queues and
416 * releasing its resources. If the parent dentries were scheduled for release
417 * they too may now get deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419void dput(struct dentry *dentry)
420{
421 if (!dentry)
422 return;
423
424repeat:
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100425 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 spin_lock(&dentry->d_lock);
Nick Piggin61f3dee2011-01-07 17:49:40 +1100428 BUG_ON(!dentry->d_count);
429 if (dentry->d_count > 1) {
430 dentry->d_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return;
433 }
434
Nick Pigginfb045ad2011-01-07 17:49:55 +1100435 if (dentry->d_flags & DCACHE_OP_DELETE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (dentry->d_op->d_delete(dentry))
Nick Piggin61f3dee2011-01-07 17:49:40 +1100437 goto kill_it;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Nick Piggin265ac902010-10-10 05:36:24 -0400439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* Unreachable? Get rid of it */
441 if (d_unhashed(dentry))
442 goto kill_it;
Nick Piggin265ac902010-10-10 05:36:24 -0400443
444 /* Otherwise leave it cached and ensure it's on the LRU */
445 dentry->d_flags |= DCACHE_REFERENCED;
Christoph Hellwiga4633352010-10-10 05:36:26 -0400446 dentry_lru_add(dentry);
Nick Piggin265ac902010-10-10 05:36:24 -0400447
Nick Piggin61f3dee2011-01-07 17:49:40 +1100448 dentry->d_count--;
449 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return;
451
Miklos Szeredid52b9082007-05-08 00:23:46 -0700452kill_it:
Nick Piggin77812a12011-01-07 17:49:48 +1100453 dentry = dentry_kill(dentry, 1);
Miklos Szeredid52b9082007-05-08 00:23:46 -0700454 if (dentry)
455 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -0700457EXPORT_SYMBOL(dput);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459/**
460 * d_invalidate - invalidate a dentry
461 * @dentry: dentry to invalidate
462 *
463 * Try to invalidate the dentry if it turns out to be
464 * possible. If there are other dentries that can be
465 * reached through this one we can't delete it and we
466 * return -EBUSY. On success we return 0.
467 *
468 * no dcache lock.
469 */
470
471int d_invalidate(struct dentry * dentry)
472{
473 /*
474 * If it's already been dropped, return OK.
475 */
Nick Pigginda502952011-01-07 17:49:33 +1100476 spin_lock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (d_unhashed(dentry)) {
Nick Pigginda502952011-01-07 17:49:33 +1100478 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 0;
480 }
481 /*
482 * Check whether to do a partial shrink_dcache
483 * to get rid of unused child entries.
484 */
485 if (!list_empty(&dentry->d_subdirs)) {
Nick Pigginda502952011-01-07 17:49:33 +1100486 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 shrink_dcache_parent(dentry);
Nick Pigginda502952011-01-07 17:49:33 +1100488 spin_lock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490
491 /*
492 * Somebody else still using it?
493 *
494 * If it's a directory, we can't drop it
495 * for fear of somebody re-populating it
496 * with children (even though dropping it
497 * would make it unreachable from the root,
498 * we might still populate it if it was a
499 * working directory or similar).
500 */
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100501 if (dentry->d_count > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode)) {
503 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return -EBUSY;
505 }
506 }
507
508 __d_drop(dentry);
509 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 0;
511}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -0700512EXPORT_SYMBOL(d_invalidate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100514/* This must be called with d_lock held */
Nick Piggindc0474b2011-01-07 17:49:43 +1100515static inline void __dget_dlock(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100517 dentry->d_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Nick Piggindc0474b2011-01-07 17:49:43 +1100520static inline void __dget(struct dentry *dentry)
Nick Piggin23044502011-01-07 17:49:31 +1100521{
Nick Piggin23044502011-01-07 17:49:31 +1100522 spin_lock(&dentry->d_lock);
Nick Piggindc0474b2011-01-07 17:49:43 +1100523 __dget_dlock(dentry);
Nick Piggin23044502011-01-07 17:49:31 +1100524 spin_unlock(&dentry->d_lock);
Nick Piggin23044502011-01-07 17:49:31 +1100525}
526
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100527struct dentry *dget_parent(struct dentry *dentry)
528{
529 struct dentry *ret;
530
531repeat:
Nick Piggina734eb42011-01-07 17:49:44 +1100532 /*
533 * Don't need rcu_dereference because we re-check it was correct under
534 * the lock.
535 */
536 rcu_read_lock();
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100537 ret = dentry->d_parent;
Nick Piggina734eb42011-01-07 17:49:44 +1100538 if (!ret) {
539 rcu_read_unlock();
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100540 goto out;
541 }
Nick Piggina734eb42011-01-07 17:49:44 +1100542 spin_lock(&ret->d_lock);
543 if (unlikely(ret != dentry->d_parent)) {
544 spin_unlock(&ret->d_lock);
545 rcu_read_unlock();
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100546 goto repeat;
547 }
Nick Piggina734eb42011-01-07 17:49:44 +1100548 rcu_read_unlock();
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100549 BUG_ON(!ret->d_count);
550 ret->d_count++;
551 spin_unlock(&ret->d_lock);
552out:
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100553 return ret;
554}
555EXPORT_SYMBOL(dget_parent);
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557/**
558 * d_find_alias - grab a hashed alias of inode
559 * @inode: inode in question
560 * @want_discon: flag, used by d_splice_alias, to request
561 * that only a DISCONNECTED alias be returned.
562 *
563 * If inode has a hashed alias, or is a directory and has any alias,
564 * acquire the reference to alias and return it. Otherwise return NULL.
565 * Notice that if inode is a directory there can be only one alias and
566 * it can be unhashed only if it has no children, or if it is the root
567 * of a filesystem.
568 *
NeilBrown21c0d8f2006-10-04 02:16:16 -0700569 * If the inode has an IS_ROOT, DCACHE_DISCONNECTED alias, then prefer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * any other hashed alias over that one unless @want_discon is set,
NeilBrown21c0d8f2006-10-04 02:16:16 -0700571 * in which case only return an IS_ROOT, DCACHE_DISCONNECTED alias.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 */
Nick Pigginda502952011-01-07 17:49:33 +1100573static struct dentry *__d_find_alias(struct inode *inode, int want_discon)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Nick Pigginda502952011-01-07 17:49:33 +1100575 struct dentry *alias, *discon_alias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Nick Pigginda502952011-01-07 17:49:33 +1100577again:
578 discon_alias = NULL;
579 list_for_each_entry(alias, &inode->i_dentry, d_alias) {
580 spin_lock(&alias->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (S_ISDIR(inode->i_mode) || !d_unhashed(alias)) {
NeilBrown21c0d8f2006-10-04 02:16:16 -0700582 if (IS_ROOT(alias) &&
Nick Pigginda502952011-01-07 17:49:33 +1100583 (alias->d_flags & DCACHE_DISCONNECTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 discon_alias = alias;
Nick Pigginda502952011-01-07 17:49:33 +1100585 } else if (!want_discon) {
Nick Piggindc0474b2011-01-07 17:49:43 +1100586 __dget_dlock(alias);
Nick Pigginda502952011-01-07 17:49:33 +1100587 spin_unlock(&alias->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return alias;
589 }
590 }
Nick Pigginda502952011-01-07 17:49:33 +1100591 spin_unlock(&alias->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
Nick Pigginda502952011-01-07 17:49:33 +1100593 if (discon_alias) {
594 alias = discon_alias;
595 spin_lock(&alias->d_lock);
596 if (S_ISDIR(inode->i_mode) || !d_unhashed(alias)) {
597 if (IS_ROOT(alias) &&
598 (alias->d_flags & DCACHE_DISCONNECTED)) {
Nick Piggindc0474b2011-01-07 17:49:43 +1100599 __dget_dlock(alias);
Nick Pigginda502952011-01-07 17:49:33 +1100600 spin_unlock(&alias->d_lock);
601 return alias;
602 }
603 }
604 spin_unlock(&alias->d_lock);
605 goto again;
606 }
607 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Nick Pigginda502952011-01-07 17:49:33 +1100610struct dentry *d_find_alias(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
David Howells214fda12006-03-25 03:06:36 -0800612 struct dentry *de = NULL;
613
614 if (!list_empty(&inode->i_dentry)) {
Nick Piggin873feea2011-01-07 17:50:06 +1100615 spin_lock(&inode->i_lock);
David Howells214fda12006-03-25 03:06:36 -0800616 de = __d_find_alias(inode, 0);
Nick Piggin873feea2011-01-07 17:50:06 +1100617 spin_unlock(&inode->i_lock);
David Howells214fda12006-03-25 03:06:36 -0800618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return de;
620}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -0700621EXPORT_SYMBOL(d_find_alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623/*
624 * Try to kill dentries associated with this inode.
625 * WARNING: you must own a reference to inode.
626 */
627void d_prune_aliases(struct inode *inode)
628{
Domen Puncer0cdca3f2005-09-10 00:27:07 -0700629 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630restart:
Nick Piggin873feea2011-01-07 17:50:06 +1100631 spin_lock(&inode->i_lock);
Domen Puncer0cdca3f2005-09-10 00:27:07 -0700632 list_for_each_entry(dentry, &inode->i_dentry, d_alias) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100634 if (!dentry->d_count) {
Nick Piggindc0474b2011-01-07 17:49:43 +1100635 __dget_dlock(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 __d_drop(dentry);
637 spin_unlock(&dentry->d_lock);
Nick Piggin873feea2011-01-07 17:50:06 +1100638 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 dput(dentry);
640 goto restart;
641 }
642 spin_unlock(&dentry->d_lock);
643 }
Nick Piggin873feea2011-01-07 17:50:06 +1100644 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -0700646EXPORT_SYMBOL(d_prune_aliases);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648/*
Nick Piggin77812a12011-01-07 17:49:48 +1100649 * Try to throw away a dentry - free the inode, dput the parent.
650 * Requires dentry->d_lock is held, and dentry->d_count == 0.
651 * Releases dentry->d_lock.
Andrew Mortond702ccb2006-06-22 14:47:31 -0700652 *
Nick Piggin77812a12011-01-07 17:49:48 +1100653 * This may fail if locks cannot be acquired no problem, just try again.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
Nick Piggin77812a12011-01-07 17:49:48 +1100655static void try_prune_one_dentry(struct dentry *dentry)
Miklos Szeredi31f3e0b2008-06-23 18:11:52 +0200656 __releases(dentry->d_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Nick Piggin77812a12011-01-07 17:49:48 +1100658 struct dentry *parent;
Miklos Szeredid52b9082007-05-08 00:23:46 -0700659
Nick Piggin77812a12011-01-07 17:49:48 +1100660 parent = dentry_kill(dentry, 0);
Miklos Szeredid52b9082007-05-08 00:23:46 -0700661 /*
Nick Piggin77812a12011-01-07 17:49:48 +1100662 * If dentry_kill returns NULL, we have nothing more to do.
663 * if it returns the same dentry, trylocks failed. In either
664 * case, just loop again.
665 *
666 * Otherwise, we need to prune ancestors too. This is necessary
667 * to prevent quadratic behavior of shrink_dcache_parent(), but
668 * is also expected to be beneficial in reducing dentry cache
669 * fragmentation.
Miklos Szeredid52b9082007-05-08 00:23:46 -0700670 */
Nick Piggin77812a12011-01-07 17:49:48 +1100671 if (!parent)
672 return;
673 if (parent == dentry)
674 return;
675
676 /* Prune ancestors. */
677 dentry = parent;
Miklos Szeredid52b9082007-05-08 00:23:46 -0700678 while (dentry) {
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100679 spin_lock(&dentry->d_lock);
Nick Piggin89e60542011-01-07 17:49:45 +1100680 if (dentry->d_count > 1) {
681 dentry->d_count--;
682 spin_unlock(&dentry->d_lock);
683 return;
684 }
Nick Piggin77812a12011-01-07 17:49:48 +1100685 dentry = dentry_kill(dentry, 1);
Miklos Szeredid52b9082007-05-08 00:23:46 -0700686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400689static void shrink_dentry_list(struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700691 struct dentry *dentry;
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700692
Nick Pigginec336792011-01-07 17:49:47 +1100693 rcu_read_lock();
694 for (;;) {
Nick Pigginec336792011-01-07 17:49:47 +1100695 dentry = list_entry_rcu(list->prev, struct dentry, d_lru);
696 if (&dentry->d_lru == list)
697 break; /* empty */
698 spin_lock(&dentry->d_lock);
699 if (dentry != list_entry(list->prev, struct dentry, d_lru)) {
700 spin_unlock(&dentry->d_lock);
Nick Piggin23044502011-01-07 17:49:31 +1100701 continue;
702 }
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 /*
705 * We found an inuse dentry which was not removed from
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700706 * the LRU because of laziness during lookup. Do not free
707 * it - just keep it off the LRU list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 */
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100709 if (dentry->d_count) {
Nick Pigginec336792011-01-07 17:49:47 +1100710 dentry_lru_del(dentry);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700711 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 continue;
713 }
Nick Pigginec336792011-01-07 17:49:47 +1100714
Nick Pigginec336792011-01-07 17:49:47 +1100715 rcu_read_unlock();
Nick Piggin77812a12011-01-07 17:49:48 +1100716
717 try_prune_one_dentry(dentry);
718
Nick Pigginec336792011-01-07 17:49:47 +1100719 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Nick Pigginec336792011-01-07 17:49:47 +1100721 rcu_read_unlock();
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400722}
723
724/**
725 * __shrink_dcache_sb - shrink the dentry LRU on a given superblock
726 * @sb: superblock to shrink dentry LRU.
727 * @count: number of entries to prune
728 * @flags: flags to control the dentry processing
729 *
730 * If flags contains DCACHE_REFERENCED reference dentries will not be pruned.
731 */
732static void __shrink_dcache_sb(struct super_block *sb, int *count, int flags)
733{
734 /* called from prune_dcache() and shrink_dcache_parent() */
735 struct dentry *dentry;
736 LIST_HEAD(referenced);
737 LIST_HEAD(tmp);
738 int cnt = *count;
739
Nick Piggin23044502011-01-07 17:49:31 +1100740relock:
741 spin_lock(&dcache_lru_lock);
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400742 while (!list_empty(&sb->s_dentry_lru)) {
743 dentry = list_entry(sb->s_dentry_lru.prev,
744 struct dentry, d_lru);
745 BUG_ON(dentry->d_sb != sb);
746
Nick Piggin23044502011-01-07 17:49:31 +1100747 if (!spin_trylock(&dentry->d_lock)) {
748 spin_unlock(&dcache_lru_lock);
749 cpu_relax();
750 goto relock;
751 }
752
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400753 /*
754 * If we are honouring the DCACHE_REFERENCED flag and the
755 * dentry has this flag set, don't free it. Clear the flag
756 * and put it back on the LRU.
757 */
Nick Piggin23044502011-01-07 17:49:31 +1100758 if (flags & DCACHE_REFERENCED &&
759 dentry->d_flags & DCACHE_REFERENCED) {
760 dentry->d_flags &= ~DCACHE_REFERENCED;
761 list_move(&dentry->d_lru, &referenced);
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400762 spin_unlock(&dentry->d_lock);
Nick Piggin23044502011-01-07 17:49:31 +1100763 } else {
764 list_move_tail(&dentry->d_lru, &tmp);
765 spin_unlock(&dentry->d_lock);
766 if (!--cnt)
767 break;
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400768 }
Nick Pigginec336792011-01-07 17:49:47 +1100769 cond_resched_lock(&dcache_lru_lock);
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400770 }
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700771 if (!list_empty(&referenced))
772 list_splice(&referenced, &sb->s_dentry_lru);
Nick Piggin23044502011-01-07 17:49:31 +1100773 spin_unlock(&dcache_lru_lock);
Nick Pigginec336792011-01-07 17:49:47 +1100774
775 shrink_dentry_list(&tmp);
776
777 *count = cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700780/**
781 * prune_dcache - shrink the dcache
782 * @count: number of entries to try to free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 *
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700784 * Shrink the dcache. This is done when we need more memory, or simply when we
785 * need to unmount something (at which point we need to unuse all dentries).
786 *
787 * This function may fail to free any resources if all the dentries are in use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 */
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700789static void prune_dcache(int count)
790{
Al Virodca33252010-07-25 02:31:46 +0400791 struct super_block *sb, *p = NULL;
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700792 int w_count;
Nick Piggin86c87492011-01-07 17:49:18 +1100793 int unused = dentry_stat.nr_unused;
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700794 int prune_ratio;
795 int pruned;
796
797 if (unused == 0 || count == 0)
798 return;
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700799 if (count >= unused)
800 prune_ratio = 1;
801 else
802 prune_ratio = unused / count;
803 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400804 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400805 if (list_empty(&sb->s_instances))
806 continue;
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700807 if (sb->s_nr_dentry_unused == 0)
808 continue;
809 sb->s_count++;
810 /* Now, we reclaim unused dentrins with fairness.
811 * We reclaim them same percentage from each superblock.
812 * We calculate number of dentries to scan on this sb
813 * as follows, but the implementation is arranged to avoid
814 * overflows:
815 * number of dentries to scan on this sb =
816 * count * (number of dentries on this sb /
817 * number of dentries in the machine)
818 */
819 spin_unlock(&sb_lock);
820 if (prune_ratio != 1)
821 w_count = (sb->s_nr_dentry_unused / prune_ratio) + 1;
822 else
823 w_count = sb->s_nr_dentry_unused;
824 pruned = w_count;
825 /*
826 * We need to be sure this filesystem isn't being unmounted,
827 * otherwise we could race with generic_shutdown_super(), and
828 * end up holding a reference to an inode while the filesystem
829 * is unmounted. So we try to get s_umount, and make sure
830 * s_root isn't NULL.
831 */
832 if (down_read_trylock(&sb->s_umount)) {
833 if ((sb->s_root != NULL) &&
834 (!list_empty(&sb->s_dentry_lru))) {
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700835 __shrink_dcache_sb(sb, &w_count,
836 DCACHE_REFERENCED);
837 pruned -= w_count;
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700838 }
839 up_read(&sb->s_umount);
840 }
841 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400842 if (p)
843 __put_super(p);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700844 count -= pruned;
Al Virodca33252010-07-25 02:31:46 +0400845 p = sb;
Al Viro79893c12010-03-22 20:27:55 -0400846 /* more work left to do? */
847 if (count <= 0)
848 break;
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700849 }
Al Virodca33252010-07-25 02:31:46 +0400850 if (p)
851 __put_super(p);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700852 spin_unlock(&sb_lock);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -0700853}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855/**
856 * shrink_dcache_sb - shrink dcache for a superblock
857 * @sb: superblock
858 *
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400859 * Shrink the dcache for the specified super block. This is used to free
860 * the dcache before unmounting a file system.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 */
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400862void shrink_dcache_sb(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400864 LIST_HEAD(tmp);
865
Nick Piggin23044502011-01-07 17:49:31 +1100866 spin_lock(&dcache_lru_lock);
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400867 while (!list_empty(&sb->s_dentry_lru)) {
868 list_splice_init(&sb->s_dentry_lru, &tmp);
Nick Pigginec336792011-01-07 17:49:47 +1100869 spin_unlock(&dcache_lru_lock);
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400870 shrink_dentry_list(&tmp);
Nick Pigginec336792011-01-07 17:49:47 +1100871 spin_lock(&dcache_lru_lock);
Christoph Hellwig3049cfe2010-10-10 05:36:25 -0400872 }
Nick Piggin23044502011-01-07 17:49:31 +1100873 spin_unlock(&dcache_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -0700875EXPORT_SYMBOL(shrink_dcache_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877/*
David Howellsc636ebd2006-10-11 01:22:19 -0700878 * destroy a single subtree of dentries for unmount
879 * - see the comments on shrink_dcache_for_umount() for a description of the
880 * locking
881 */
882static void shrink_dcache_for_umount_subtree(struct dentry *dentry)
883{
884 struct dentry *parent;
David Howellsf8713572006-10-28 10:38:46 -0700885 unsigned detached = 0;
David Howellsc636ebd2006-10-11 01:22:19 -0700886
887 BUG_ON(!IS_ROOT(dentry));
888
889 /* detach this root from the system */
Nick Piggin23044502011-01-07 17:49:31 +1100890 spin_lock(&dentry->d_lock);
Christoph Hellwiga4633352010-10-10 05:36:26 -0400891 dentry_lru_del(dentry);
David Howellsc636ebd2006-10-11 01:22:19 -0700892 __d_drop(dentry);
Nick Pigginda502952011-01-07 17:49:33 +1100893 spin_unlock(&dentry->d_lock);
David Howellsc636ebd2006-10-11 01:22:19 -0700894
895 for (;;) {
896 /* descend to the first leaf in the current subtree */
897 while (!list_empty(&dentry->d_subdirs)) {
898 struct dentry *loop;
899
900 /* this is a branch with children - detach all of them
901 * from the system in one go */
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100902 spin_lock(&dentry->d_lock);
David Howellsc636ebd2006-10-11 01:22:19 -0700903 list_for_each_entry(loop, &dentry->d_subdirs,
904 d_u.d_child) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100905 spin_lock_nested(&loop->d_lock,
906 DENTRY_D_LOCK_NESTED);
Christoph Hellwiga4633352010-10-10 05:36:26 -0400907 dentry_lru_del(loop);
David Howellsc636ebd2006-10-11 01:22:19 -0700908 __d_drop(loop);
Nick Pigginda502952011-01-07 17:49:33 +1100909 spin_unlock(&loop->d_lock);
David Howellsc636ebd2006-10-11 01:22:19 -0700910 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100911 spin_unlock(&dentry->d_lock);
David Howellsc636ebd2006-10-11 01:22:19 -0700912
913 /* move to the first child */
914 dentry = list_entry(dentry->d_subdirs.next,
915 struct dentry, d_u.d_child);
916 }
917
918 /* consume the dentries from this leaf up through its parents
919 * until we find one with children or run out altogether */
920 do {
921 struct inode *inode;
922
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100923 if (dentry->d_count != 0) {
David Howellsc636ebd2006-10-11 01:22:19 -0700924 printk(KERN_ERR
925 "BUG: Dentry %p{i=%lx,n=%s}"
926 " still in use (%d)"
927 " [unmount of %s %s]\n",
928 dentry,
929 dentry->d_inode ?
930 dentry->d_inode->i_ino : 0UL,
931 dentry->d_name.name,
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100932 dentry->d_count,
David Howellsc636ebd2006-10-11 01:22:19 -0700933 dentry->d_sb->s_type->name,
934 dentry->d_sb->s_id);
935 BUG();
936 }
937
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100938 if (IS_ROOT(dentry)) {
David Howellsc636ebd2006-10-11 01:22:19 -0700939 parent = NULL;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100940 list_del(&dentry->d_u.d_child);
941 } else {
OGAWA Hirofumi871c0062008-10-16 07:50:27 +0900942 parent = dentry->d_parent;
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100943 spin_lock(&parent->d_lock);
944 parent->d_count--;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100945 list_del(&dentry->d_u.d_child);
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100946 spin_unlock(&parent->d_lock);
OGAWA Hirofumi871c0062008-10-16 07:50:27 +0900947 }
David Howellsc636ebd2006-10-11 01:22:19 -0700948
David Howellsf8713572006-10-28 10:38:46 -0700949 detached++;
David Howellsc636ebd2006-10-11 01:22:19 -0700950
951 inode = dentry->d_inode;
952 if (inode) {
953 dentry->d_inode = NULL;
954 list_del_init(&dentry->d_alias);
955 if (dentry->d_op && dentry->d_op->d_iput)
956 dentry->d_op->d_iput(dentry, inode);
957 else
958 iput(inode);
959 }
960
961 d_free(dentry);
962
963 /* finished when we fall off the top of the tree,
964 * otherwise we ascend to the parent and move to the
965 * next sibling if there is one */
966 if (!parent)
Christoph Hellwig312d3ca2010-10-10 05:36:23 -0400967 return;
David Howellsc636ebd2006-10-11 01:22:19 -0700968 dentry = parent;
David Howellsc636ebd2006-10-11 01:22:19 -0700969 } while (list_empty(&dentry->d_subdirs));
970
971 dentry = list_entry(dentry->d_subdirs.next,
972 struct dentry, d_u.d_child);
973 }
974}
975
976/*
977 * destroy the dentries attached to a superblock on unmounting
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100978 * - we don't need to use dentry->d_lock because:
David Howellsc636ebd2006-10-11 01:22:19 -0700979 * - the superblock is detached from all mountings and open files, so the
980 * dentry trees will not be rearranged by the VFS
981 * - s_umount is write-locked, so the memory pressure shrinker will ignore
982 * any dentries belonging to this superblock that it comes across
983 * - the filesystem itself is no longer permitted to rearrange the dentries
984 * in this superblock
985 */
986void shrink_dcache_for_umount(struct super_block *sb)
987{
988 struct dentry *dentry;
989
990 if (down_read_trylock(&sb->s_umount))
991 BUG();
992
993 dentry = sb->s_root;
994 sb->s_root = NULL;
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100995 spin_lock(&dentry->d_lock);
996 dentry->d_count--;
997 spin_unlock(&dentry->d_lock);
David Howellsc636ebd2006-10-11 01:22:19 -0700998 shrink_dcache_for_umount_subtree(dentry);
999
Nick Pigginceb5bdc2011-01-07 17:50:05 +11001000 while (!hlist_bl_empty(&sb->s_anon)) {
1001 dentry = hlist_bl_entry(hlist_bl_first(&sb->s_anon), struct dentry, d_hash);
David Howellsc636ebd2006-10-11 01:22:19 -07001002 shrink_dcache_for_umount_subtree(dentry);
1003 }
1004}
1005
1006/*
Linus Torvaldsc826cb72011-03-15 15:29:21 -07001007 * This tries to ascend one level of parenthood, but
1008 * we can race with renaming, so we need to re-check
1009 * the parenthood after dropping the lock and check
1010 * that the sequence number still matches.
1011 */
1012static struct dentry *try_to_ascend(struct dentry *old, int locked, unsigned seq)
1013{
1014 struct dentry *new = old->d_parent;
1015
1016 rcu_read_lock();
1017 spin_unlock(&old->d_lock);
1018 spin_lock(&new->d_lock);
1019
1020 /*
1021 * might go back up the wrong parent if we have had a rename
1022 * or deletion
1023 */
1024 if (new != old->d_parent ||
Trond Myklebustc83ce982011-03-15 13:36:43 -04001025 (old->d_flags & DCACHE_DISCONNECTED) ||
Linus Torvaldsc826cb72011-03-15 15:29:21 -07001026 (!locked && read_seqretry(&rename_lock, seq))) {
1027 spin_unlock(&new->d_lock);
1028 new = NULL;
1029 }
1030 rcu_read_unlock();
1031 return new;
1032}
1033
1034
1035/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 * Search for at least 1 mount point in the dentry's subdirs.
1037 * We descend to the next level whenever the d_subdirs
1038 * list is non-empty and continue searching.
1039 */
1040
1041/**
1042 * have_submounts - check for mounts over a dentry
1043 * @parent: dentry to check.
1044 *
1045 * Return true if the parent or its subdirectories contain
1046 * a mount point
1047 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048int have_submounts(struct dentry *parent)
1049{
Nick Piggin949854d2011-01-07 17:49:37 +11001050 struct dentry *this_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 struct list_head *next;
Nick Piggin949854d2011-01-07 17:49:37 +11001052 unsigned seq;
Nick Piggin58db63d2011-01-07 17:49:39 +11001053 int locked = 0;
Nick Piggin949854d2011-01-07 17:49:37 +11001054
Nick Piggin949854d2011-01-07 17:49:37 +11001055 seq = read_seqbegin(&rename_lock);
Nick Piggin58db63d2011-01-07 17:49:39 +11001056again:
1057 this_parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (d_mountpoint(parent))
1060 goto positive;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001061 spin_lock(&this_parent->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062repeat:
1063 next = this_parent->d_subdirs.next;
1064resume:
1065 while (next != &this_parent->d_subdirs) {
1066 struct list_head *tmp = next;
Eric Dumazet5160ee62006-01-08 01:03:32 -08001067 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 next = tmp->next;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001069
1070 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /* Have we found a mount point ? */
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001072 if (d_mountpoint(dentry)) {
1073 spin_unlock(&dentry->d_lock);
1074 spin_unlock(&this_parent->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 goto positive;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (!list_empty(&dentry->d_subdirs)) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001078 spin_unlock(&this_parent->d_lock);
1079 spin_release(&dentry->d_lock.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 this_parent = dentry;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001081 spin_acquire(&this_parent->d_lock.dep_map, 0, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 goto repeat;
1083 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001084 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086 /*
1087 * All done at this level ... ascend and resume the search.
1088 */
1089 if (this_parent != parent) {
Linus Torvaldsc826cb72011-03-15 15:29:21 -07001090 struct dentry *child = this_parent;
1091 this_parent = try_to_ascend(this_parent, locked, seq);
1092 if (!this_parent)
Nick Piggin949854d2011-01-07 17:49:37 +11001093 goto rename_retry;
Nick Piggin949854d2011-01-07 17:49:37 +11001094 next = child->d_u.d_child.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 goto resume;
1096 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001097 spin_unlock(&this_parent->d_lock);
Nick Piggin58db63d2011-01-07 17:49:39 +11001098 if (!locked && read_seqretry(&rename_lock, seq))
Nick Piggin949854d2011-01-07 17:49:37 +11001099 goto rename_retry;
Nick Piggin58db63d2011-01-07 17:49:39 +11001100 if (locked)
1101 write_sequnlock(&rename_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return 0; /* No mount points found in tree */
1103positive:
Nick Piggin58db63d2011-01-07 17:49:39 +11001104 if (!locked && read_seqretry(&rename_lock, seq))
Nick Piggin949854d2011-01-07 17:49:37 +11001105 goto rename_retry;
Nick Piggin58db63d2011-01-07 17:49:39 +11001106 if (locked)
1107 write_sequnlock(&rename_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return 1;
Nick Piggin58db63d2011-01-07 17:49:39 +11001109
1110rename_retry:
1111 locked = 1;
1112 write_seqlock(&rename_lock);
1113 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07001115EXPORT_SYMBOL(have_submounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117/*
1118 * Search the dentry child list for the specified parent,
1119 * and move any unused dentries to the end of the unused
1120 * list for prune_dcache(). We descend to the next level
1121 * whenever the d_subdirs list is non-empty and continue
1122 * searching.
1123 *
1124 * It returns zero iff there are no unused children,
1125 * otherwise it returns the number of children moved to
1126 * the end of the unused list. This may not be the total
1127 * number of unused children, because select_parent can
1128 * drop the lock and return early due to latency
1129 * constraints.
1130 */
1131static int select_parent(struct dentry * parent)
1132{
Nick Piggin949854d2011-01-07 17:49:37 +11001133 struct dentry *this_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 struct list_head *next;
Nick Piggin949854d2011-01-07 17:49:37 +11001135 unsigned seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 int found = 0;
Nick Piggin58db63d2011-01-07 17:49:39 +11001137 int locked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Nick Piggin949854d2011-01-07 17:49:37 +11001139 seq = read_seqbegin(&rename_lock);
Nick Piggin58db63d2011-01-07 17:49:39 +11001140again:
1141 this_parent = parent;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001142 spin_lock(&this_parent->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143repeat:
1144 next = this_parent->d_subdirs.next;
1145resume:
1146 while (next != &this_parent->d_subdirs) {
1147 struct list_head *tmp = next;
Eric Dumazet5160ee62006-01-08 01:03:32 -08001148 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 next = tmp->next;
1150
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001151 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Nick Piggin23044502011-01-07 17:49:31 +11001152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /*
1154 * move only zero ref count dentries to the end
1155 * of the unused list for prune_dcache
1156 */
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001157 if (!dentry->d_count) {
Christoph Hellwiga4633352010-10-10 05:36:26 -04001158 dentry_lru_move_tail(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 found++;
Christoph Hellwiga4633352010-10-10 05:36:26 -04001160 } else {
1161 dentry_lru_del(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
1163
1164 /*
1165 * We can return to the caller if we have found some (this
1166 * ensures forward progress). We'll be coming back to find
1167 * the rest.
1168 */
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001169 if (found && need_resched()) {
1170 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 goto out;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 /*
1175 * Descend a level if the d_subdirs list is non-empty.
1176 */
1177 if (!list_empty(&dentry->d_subdirs)) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001178 spin_unlock(&this_parent->d_lock);
1179 spin_release(&dentry->d_lock.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 this_parent = dentry;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001181 spin_acquire(&this_parent->d_lock.dep_map, 0, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 goto repeat;
1183 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001184
1185 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
1187 /*
1188 * All done at this level ... ascend and resume the search.
1189 */
1190 if (this_parent != parent) {
Linus Torvaldsc826cb72011-03-15 15:29:21 -07001191 struct dentry *child = this_parent;
1192 this_parent = try_to_ascend(this_parent, locked, seq);
1193 if (!this_parent)
Nick Piggin949854d2011-01-07 17:49:37 +11001194 goto rename_retry;
Nick Piggin949854d2011-01-07 17:49:37 +11001195 next = child->d_u.d_child.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 goto resume;
1197 }
1198out:
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001199 spin_unlock(&this_parent->d_lock);
Nick Piggin58db63d2011-01-07 17:49:39 +11001200 if (!locked && read_seqretry(&rename_lock, seq))
Nick Piggin949854d2011-01-07 17:49:37 +11001201 goto rename_retry;
Nick Piggin58db63d2011-01-07 17:49:39 +11001202 if (locked)
1203 write_sequnlock(&rename_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return found;
Nick Piggin58db63d2011-01-07 17:49:39 +11001205
1206rename_retry:
1207 if (found)
1208 return found;
1209 locked = 1;
1210 write_seqlock(&rename_lock);
1211 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
1214/**
1215 * shrink_dcache_parent - prune dcache
1216 * @parent: parent of entries to prune
1217 *
1218 * Prune the dcache to remove unused children of the parent dentry.
1219 */
1220
1221void shrink_dcache_parent(struct dentry * parent)
1222{
Kentaro Makitada3bbdd2008-07-23 21:27:13 -07001223 struct super_block *sb = parent->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 int found;
1225
1226 while ((found = select_parent(parent)) != 0)
Kentaro Makitada3bbdd2008-07-23 21:27:13 -07001227 __shrink_dcache_sb(sb, &found, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07001229EXPORT_SYMBOL(shrink_dcache_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231/*
1232 * Scan `nr' dentries and return the number which remain.
1233 *
1234 * We need to avoid reentering the filesystem if the caller is performing a
1235 * GFP_NOFS allocation attempt. One example deadlock is:
1236 *
1237 * ext2_new_block->getblk->GFP->shrink_dcache_memory->prune_dcache->
1238 * prune_one_dentry->dput->dentry_iput->iput->inode->i_sb->s_op->put_inode->
1239 * ext2_discard_prealloc->ext2_free_blocks->lock_super->DEADLOCK.
1240 *
1241 * In this case we return -1 to tell the caller that we baled.
1242 */
Dave Chinner7f8275d2010-07-19 14:56:17 +10001243static int shrink_dcache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 if (nr) {
1246 if (!(gfp_mask & __GFP_FS))
1247 return -1;
Kentaro Makitada3bbdd2008-07-23 21:27:13 -07001248 prune_dcache(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
Christoph Hellwig312d3ca2010-10-10 05:36:23 -04001250
Nick Piggin86c87492011-01-07 17:49:18 +11001251 return (dentry_stat.nr_unused / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
Rusty Russell8e1f9362007-07-17 04:03:17 -07001254static struct shrinker dcache_shrinker = {
1255 .shrink = shrink_dcache_memory,
1256 .seeks = DEFAULT_SEEKS,
1257};
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259/**
1260 * d_alloc - allocate a dcache entry
1261 * @parent: parent of entry to allocate
1262 * @name: qstr of the name
1263 *
1264 * Allocates a dentry. It returns %NULL if there is insufficient memory
1265 * available. On a success the dentry is returned. The name passed in is
1266 * copied and the copy passed in may be reused after this call.
1267 */
1268
1269struct dentry *d_alloc(struct dentry * parent, const struct qstr *name)
1270{
1271 struct dentry *dentry;
1272 char *dname;
1273
Mel Gormane12ba742007-10-16 01:25:52 -07001274 dentry = kmem_cache_alloc(dentry_cache, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (!dentry)
1276 return NULL;
1277
1278 if (name->len > DNAME_INLINE_LEN-1) {
1279 dname = kmalloc(name->len + 1, GFP_KERNEL);
1280 if (!dname) {
1281 kmem_cache_free(dentry_cache, dentry);
1282 return NULL;
1283 }
1284 } else {
1285 dname = dentry->d_iname;
1286 }
1287 dentry->d_name.name = dname;
1288
1289 dentry->d_name.len = name->len;
1290 dentry->d_name.hash = name->hash;
1291 memcpy(dname, name->name, name->len);
1292 dname[name->len] = 0;
1293
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001294 dentry->d_count = 1;
Linus Torvaldsdea36672011-04-24 07:58:46 -07001295 dentry->d_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 spin_lock_init(&dentry->d_lock);
Nick Piggin31e6b012011-01-07 17:49:52 +11001297 seqcount_init(&dentry->d_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 dentry->d_inode = NULL;
1299 dentry->d_parent = NULL;
1300 dentry->d_sb = NULL;
1301 dentry->d_op = NULL;
1302 dentry->d_fsdata = NULL;
Nick Pigginceb5bdc2011-01-07 17:50:05 +11001303 INIT_HLIST_BL_NODE(&dentry->d_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 INIT_LIST_HEAD(&dentry->d_lru);
1305 INIT_LIST_HEAD(&dentry->d_subdirs);
1306 INIT_LIST_HEAD(&dentry->d_alias);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001307 INIT_LIST_HEAD(&dentry->d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 if (parent) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001310 spin_lock(&parent->d_lock);
Nick Piggin89ad4852011-01-07 17:49:41 +11001311 /*
1312 * don't need child lock because it is not subject
1313 * to concurrency here
1314 */
Nick Piggindc0474b2011-01-07 17:49:43 +11001315 __dget_dlock(parent);
1316 dentry->d_parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 dentry->d_sb = parent->d_sb;
Al Viroc8aebb02010-12-18 10:22:30 -05001318 d_set_d_op(dentry, dentry->d_sb->s_d_op);
Eric Dumazet5160ee62006-01-08 01:03:32 -08001319 list_add(&dentry->d_u.d_child, &parent->d_subdirs);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001320 spin_unlock(&parent->d_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Nick Piggin3e880fb2011-01-07 17:49:19 +11001323 this_cpu_inc(nr_dentry);
Christoph Hellwig312d3ca2010-10-10 05:36:23 -04001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return dentry;
1326}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07001327EXPORT_SYMBOL(d_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Nick Piggin4b936882011-01-07 17:50:07 +11001329struct dentry *d_alloc_pseudo(struct super_block *sb, const struct qstr *name)
1330{
1331 struct dentry *dentry = d_alloc(NULL, name);
1332 if (dentry) {
1333 dentry->d_sb = sb;
Al Viroc8aebb02010-12-18 10:22:30 -05001334 d_set_d_op(dentry, dentry->d_sb->s_d_op);
Nick Piggin4b936882011-01-07 17:50:07 +11001335 dentry->d_parent = dentry;
1336 dentry->d_flags |= DCACHE_DISCONNECTED;
1337 }
1338 return dentry;
1339}
1340EXPORT_SYMBOL(d_alloc_pseudo);
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342struct dentry *d_alloc_name(struct dentry *parent, const char *name)
1343{
1344 struct qstr q;
1345
1346 q.name = name;
1347 q.len = strlen(name);
1348 q.hash = full_name_hash(q.name, q.len);
1349 return d_alloc(parent, &q);
1350}
H Hartley Sweetenef26ca92009-09-29 20:09:42 -04001351EXPORT_SYMBOL(d_alloc_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Nick Pigginfb045ad2011-01-07 17:49:55 +11001353void d_set_d_op(struct dentry *dentry, const struct dentry_operations *op)
1354{
Linus Torvalds6f7f7ca2011-01-14 13:26:18 -08001355 WARN_ON_ONCE(dentry->d_op);
1356 WARN_ON_ONCE(dentry->d_flags & (DCACHE_OP_HASH |
Nick Pigginfb045ad2011-01-07 17:49:55 +11001357 DCACHE_OP_COMPARE |
1358 DCACHE_OP_REVALIDATE |
1359 DCACHE_OP_DELETE ));
1360 dentry->d_op = op;
1361 if (!op)
1362 return;
1363 if (op->d_hash)
1364 dentry->d_flags |= DCACHE_OP_HASH;
1365 if (op->d_compare)
1366 dentry->d_flags |= DCACHE_OP_COMPARE;
1367 if (op->d_revalidate)
1368 dentry->d_flags |= DCACHE_OP_REVALIDATE;
1369 if (op->d_delete)
1370 dentry->d_flags |= DCACHE_OP_DELETE;
1371
1372}
1373EXPORT_SYMBOL(d_set_d_op);
1374
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001375static void __d_instantiate(struct dentry *dentry, struct inode *inode)
1376{
Nick Pigginb23fb0a2011-01-07 17:49:35 +11001377 spin_lock(&dentry->d_lock);
David Howells9875cf82011-01-14 18:45:21 +00001378 if (inode) {
1379 if (unlikely(IS_AUTOMOUNT(inode)))
1380 dentry->d_flags |= DCACHE_NEED_AUTOMOUNT;
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001381 list_add(&dentry->d_alias, &inode->i_dentry);
David Howells9875cf82011-01-14 18:45:21 +00001382 }
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001383 dentry->d_inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001384 dentry_rcuwalk_barrier(dentry);
Nick Pigginb23fb0a2011-01-07 17:49:35 +11001385 spin_unlock(&dentry->d_lock);
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001386 fsnotify_d_instantiate(dentry, inode);
1387}
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389/**
1390 * d_instantiate - fill in inode information for a dentry
1391 * @entry: dentry to complete
1392 * @inode: inode to attach to this dentry
1393 *
1394 * Fill in inode information in the entry.
1395 *
1396 * This turns negative dentries into productive full members
1397 * of society.
1398 *
1399 * NOTE! This assumes that the inode count has been incremented
1400 * (or otherwise set) by the caller to indicate that it is now
1401 * in use by the dcache.
1402 */
1403
1404void d_instantiate(struct dentry *entry, struct inode * inode)
1405{
Eric Sesterhenn28133c72006-03-26 18:25:39 +02001406 BUG_ON(!list_empty(&entry->d_alias));
Nick Piggin873feea2011-01-07 17:50:06 +11001407 if (inode)
1408 spin_lock(&inode->i_lock);
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001409 __d_instantiate(entry, inode);
Nick Piggin873feea2011-01-07 17:50:06 +11001410 if (inode)
1411 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 security_d_instantiate(entry, inode);
1413}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07001414EXPORT_SYMBOL(d_instantiate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416/**
1417 * d_instantiate_unique - instantiate a non-aliased dentry
1418 * @entry: dentry to instantiate
1419 * @inode: inode to attach to this dentry
1420 *
1421 * Fill in inode information in the entry. On success, it returns NULL.
1422 * If an unhashed alias of "entry" already exists, then we return the
Oleg Drokine866cfa2006-01-09 20:52:51 -08001423 * aliased dentry instead and drop one reference to inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 *
1425 * Note that in order to avoid conflicts with rename() etc, the caller
1426 * had better be holding the parent directory semaphore.
Oleg Drokine866cfa2006-01-09 20:52:51 -08001427 *
1428 * This also assumes that the inode count has been incremented
1429 * (or otherwise set) by the caller to indicate that it is now
1430 * in use by the dcache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 */
David Howells770bfad2006-08-22 20:06:07 -04001432static struct dentry *__d_instantiate_unique(struct dentry *entry,
1433 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 struct dentry *alias;
1436 int len = entry->d_name.len;
1437 const char *name = entry->d_name.name;
1438 unsigned int hash = entry->d_name.hash;
1439
David Howells770bfad2006-08-22 20:06:07 -04001440 if (!inode) {
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001441 __d_instantiate(entry, NULL);
David Howells770bfad2006-08-22 20:06:07 -04001442 return NULL;
1443 }
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 list_for_each_entry(alias, &inode->i_dentry, d_alias) {
1446 struct qstr *qstr = &alias->d_name;
1447
Nick Piggin9abca362011-01-07 17:49:36 +11001448 /*
1449 * Don't need alias->d_lock here, because aliases with
1450 * d_parent == entry->d_parent are not subject to name or
1451 * parent changes, because the parent inode i_mutex is held.
1452 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (qstr->hash != hash)
1454 continue;
1455 if (alias->d_parent != entry->d_parent)
1456 continue;
Nick Piggin9d55c362011-01-07 17:50:09 +11001457 if (dentry_cmp(qstr->name, qstr->len, name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 continue;
Nick Piggindc0474b2011-01-07 17:49:43 +11001459 __dget(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 return alias;
1461 }
David Howells770bfad2006-08-22 20:06:07 -04001462
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001463 __d_instantiate(entry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 return NULL;
1465}
David Howells770bfad2006-08-22 20:06:07 -04001466
1467struct dentry *d_instantiate_unique(struct dentry *entry, struct inode *inode)
1468{
1469 struct dentry *result;
1470
1471 BUG_ON(!list_empty(&entry->d_alias));
1472
Nick Piggin873feea2011-01-07 17:50:06 +11001473 if (inode)
1474 spin_lock(&inode->i_lock);
David Howells770bfad2006-08-22 20:06:07 -04001475 result = __d_instantiate_unique(entry, inode);
Nick Piggin873feea2011-01-07 17:50:06 +11001476 if (inode)
1477 spin_unlock(&inode->i_lock);
David Howells770bfad2006-08-22 20:06:07 -04001478
1479 if (!result) {
1480 security_d_instantiate(entry, inode);
1481 return NULL;
1482 }
1483
1484 BUG_ON(!d_unhashed(result));
1485 iput(inode);
1486 return result;
1487}
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489EXPORT_SYMBOL(d_instantiate_unique);
1490
1491/**
1492 * d_alloc_root - allocate root dentry
1493 * @root_inode: inode to allocate the root for
1494 *
1495 * Allocate a root ("/") dentry for the inode given. The inode is
1496 * instantiated and returned. %NULL is returned if there is insufficient
1497 * memory or the inode passed is %NULL.
1498 */
1499
1500struct dentry * d_alloc_root(struct inode * root_inode)
1501{
1502 struct dentry *res = NULL;
1503
1504 if (root_inode) {
1505 static const struct qstr name = { .name = "/", .len = 1 };
1506
1507 res = d_alloc(NULL, &name);
1508 if (res) {
1509 res->d_sb = root_inode->i_sb;
Al Viroc8aebb02010-12-18 10:22:30 -05001510 d_set_d_op(res, res->d_sb->s_d_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 res->d_parent = res;
1512 d_instantiate(res, root_inode);
1513 }
1514 }
1515 return res;
1516}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07001517EXPORT_SYMBOL(d_alloc_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
J. Bruce Fieldsd891eed2011-01-18 15:45:09 -05001519static struct dentry * __d_find_any_alias(struct inode *inode)
1520{
1521 struct dentry *alias;
1522
1523 if (list_empty(&inode->i_dentry))
1524 return NULL;
1525 alias = list_first_entry(&inode->i_dentry, struct dentry, d_alias);
1526 __dget(alias);
1527 return alias;
1528}
1529
1530static struct dentry * d_find_any_alias(struct inode *inode)
1531{
1532 struct dentry *de;
1533
1534 spin_lock(&inode->i_lock);
1535 de = __d_find_any_alias(inode);
1536 spin_unlock(&inode->i_lock);
1537 return de;
1538}
1539
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541/**
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +02001542 * d_obtain_alias - find or allocate a dentry for a given inode
1543 * @inode: inode to allocate the dentry for
1544 *
1545 * Obtain a dentry for an inode resulting from NFS filehandle conversion or
1546 * similar open by handle operations. The returned dentry may be anonymous,
1547 * or may have a full name (if the inode was already in the cache).
1548 *
1549 * When called on a directory inode, we must ensure that the inode only ever
1550 * has one dentry. If a dentry is found, that is returned instead of
1551 * allocating a new one.
1552 *
1553 * On successful return, the reference to the inode has been transferred
Christoph Hellwig44003722008-08-11 15:49:04 +02001554 * to the dentry. In case of an error the reference on the inode is released.
1555 * To make it easier to use in export operations a %NULL or IS_ERR inode may
1556 * be passed in and will be the error will be propagate to the return value,
1557 * with a %NULL @inode replaced by ERR_PTR(-ESTALE).
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +02001558 */
1559struct dentry *d_obtain_alias(struct inode *inode)
1560{
Christoph Hellwig9308a612008-08-11 15:49:12 +02001561 static const struct qstr anonstring = { .name = "" };
1562 struct dentry *tmp;
1563 struct dentry *res;
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +02001564
1565 if (!inode)
Christoph Hellwig44003722008-08-11 15:49:04 +02001566 return ERR_PTR(-ESTALE);
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +02001567 if (IS_ERR(inode))
1568 return ERR_CAST(inode);
1569
J. Bruce Fieldsd891eed2011-01-18 15:45:09 -05001570 res = d_find_any_alias(inode);
Christoph Hellwig9308a612008-08-11 15:49:12 +02001571 if (res)
1572 goto out_iput;
1573
1574 tmp = d_alloc(NULL, &anonstring);
1575 if (!tmp) {
1576 res = ERR_PTR(-ENOMEM);
1577 goto out_iput;
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +02001578 }
Christoph Hellwig9308a612008-08-11 15:49:12 +02001579 tmp->d_parent = tmp; /* make sure dput doesn't croak */
1580
Nick Pigginb5c84bf2011-01-07 17:49:38 +11001581
Nick Piggin873feea2011-01-07 17:50:06 +11001582 spin_lock(&inode->i_lock);
J. Bruce Fieldsd891eed2011-01-18 15:45:09 -05001583 res = __d_find_any_alias(inode);
Christoph Hellwig9308a612008-08-11 15:49:12 +02001584 if (res) {
Nick Piggin873feea2011-01-07 17:50:06 +11001585 spin_unlock(&inode->i_lock);
Christoph Hellwig9308a612008-08-11 15:49:12 +02001586 dput(tmp);
1587 goto out_iput;
1588 }
1589
1590 /* attach a disconnected dentry */
1591 spin_lock(&tmp->d_lock);
1592 tmp->d_sb = inode->i_sb;
Al Viroc8aebb02010-12-18 10:22:30 -05001593 d_set_d_op(tmp, tmp->d_sb->s_d_op);
Christoph Hellwig9308a612008-08-11 15:49:12 +02001594 tmp->d_inode = inode;
1595 tmp->d_flags |= DCACHE_DISCONNECTED;
Christoph Hellwig9308a612008-08-11 15:49:12 +02001596 list_add(&tmp->d_alias, &inode->i_dentry);
Linus Torvaldsdea36672011-04-24 07:58:46 -07001597 spin_lock_bucket(&tmp->d_sb->s_anon);
Nick Pigginceb5bdc2011-01-07 17:50:05 +11001598 hlist_bl_add_head(&tmp->d_hash, &tmp->d_sb->s_anon);
Linus Torvaldsdea36672011-04-24 07:58:46 -07001599 spin_unlock_bucket(&tmp->d_sb->s_anon);
Christoph Hellwig9308a612008-08-11 15:49:12 +02001600 spin_unlock(&tmp->d_lock);
Nick Piggin873feea2011-01-07 17:50:06 +11001601 spin_unlock(&inode->i_lock);
Josef Bacik24ff6662010-11-18 20:52:55 -05001602 security_d_instantiate(tmp, inode);
Christoph Hellwig9308a612008-08-11 15:49:12 +02001603
Christoph Hellwig9308a612008-08-11 15:49:12 +02001604 return tmp;
1605
1606 out_iput:
Josef Bacik24ff6662010-11-18 20:52:55 -05001607 if (res && !IS_ERR(res))
1608 security_d_instantiate(res, inode);
Christoph Hellwig9308a612008-08-11 15:49:12 +02001609 iput(inode);
1610 return res;
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +02001611}
Benny Halevyadc48722009-02-27 14:02:59 -08001612EXPORT_SYMBOL(d_obtain_alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614/**
1615 * d_splice_alias - splice a disconnected dentry into the tree if one exists
1616 * @inode: the inode which may have a disconnected dentry
1617 * @dentry: a negative dentry which we want to point to the inode.
1618 *
1619 * If inode is a directory and has a 'disconnected' dentry (i.e. IS_ROOT and
1620 * DCACHE_DISCONNECTED), then d_move that in place of the given dentry
1621 * and return it, else simply d_add the inode to the dentry and return NULL.
1622 *
1623 * This is needed in the lookup routine of any filesystem that is exportable
1624 * (via knfsd) so that we can build dcache paths to directories effectively.
1625 *
1626 * If a dentry was found and moved, then it is returned. Otherwise NULL
1627 * is returned. This matches the expected return value of ->lookup.
1628 *
1629 */
1630struct dentry *d_splice_alias(struct inode *inode, struct dentry *dentry)
1631{
1632 struct dentry *new = NULL;
1633
NeilBrown21c0d8f2006-10-04 02:16:16 -07001634 if (inode && S_ISDIR(inode->i_mode)) {
Nick Piggin873feea2011-01-07 17:50:06 +11001635 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 new = __d_find_alias(inode, 1);
1637 if (new) {
1638 BUG_ON(!(new->d_flags & DCACHE_DISCONNECTED));
Nick Piggin873feea2011-01-07 17:50:06 +11001639 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 security_d_instantiate(new, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 d_move(new, dentry);
1642 iput(inode);
1643 } else {
Nick Piggin873feea2011-01-07 17:50:06 +11001644 /* already taking inode->i_lock, so d_add() by hand */
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001645 __d_instantiate(dentry, inode);
Nick Piggin873feea2011-01-07 17:50:06 +11001646 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 security_d_instantiate(dentry, inode);
1648 d_rehash(dentry);
1649 }
1650 } else
1651 d_add(dentry, inode);
1652 return new;
1653}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07001654EXPORT_SYMBOL(d_splice_alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Barry Naujok94035402008-05-21 16:50:46 +10001656/**
1657 * d_add_ci - lookup or allocate new dentry with case-exact name
1658 * @inode: the inode case-insensitive lookup has found
1659 * @dentry: the negative dentry that was passed to the parent's lookup func
1660 * @name: the case-exact name to be associated with the returned dentry
1661 *
1662 * This is to avoid filling the dcache with case-insensitive names to the
1663 * same inode, only the actual correct case is stored in the dcache for
1664 * case-insensitive filesystems.
1665 *
1666 * For a case-insensitive lookup match and if the the case-exact dentry
1667 * already exists in in the dcache, use it and return it.
1668 *
1669 * If no entry exists with the exact case name, allocate new dentry with
1670 * the exact case, and return the spliced entry.
1671 */
Christoph Hellwige45b5902008-08-07 23:49:07 +02001672struct dentry *d_add_ci(struct dentry *dentry, struct inode *inode,
Barry Naujok94035402008-05-21 16:50:46 +10001673 struct qstr *name)
1674{
1675 int error;
1676 struct dentry *found;
1677 struct dentry *new;
1678
Christoph Hellwigb6520c82009-01-05 19:10:37 +01001679 /*
1680 * First check if a dentry matching the name already exists,
1681 * if not go ahead and create it now.
1682 */
Barry Naujok94035402008-05-21 16:50:46 +10001683 found = d_hash_and_lookup(dentry->d_parent, name);
Barry Naujok94035402008-05-21 16:50:46 +10001684 if (!found) {
1685 new = d_alloc(dentry->d_parent, name);
1686 if (!new) {
1687 error = -ENOMEM;
1688 goto err_out;
1689 }
Christoph Hellwigb6520c82009-01-05 19:10:37 +01001690
Barry Naujok94035402008-05-21 16:50:46 +10001691 found = d_splice_alias(inode, new);
1692 if (found) {
1693 dput(new);
1694 return found;
1695 }
1696 return new;
1697 }
Christoph Hellwigb6520c82009-01-05 19:10:37 +01001698
1699 /*
1700 * If a matching dentry exists, and it's not negative use it.
1701 *
1702 * Decrement the reference count to balance the iget() done
1703 * earlier on.
1704 */
Barry Naujok94035402008-05-21 16:50:46 +10001705 if (found->d_inode) {
1706 if (unlikely(found->d_inode != inode)) {
1707 /* This can't happen because bad inodes are unhashed. */
1708 BUG_ON(!is_bad_inode(inode));
1709 BUG_ON(!is_bad_inode(found->d_inode));
1710 }
Barry Naujok94035402008-05-21 16:50:46 +10001711 iput(inode);
1712 return found;
1713 }
Christoph Hellwigb6520c82009-01-05 19:10:37 +01001714
Barry Naujok94035402008-05-21 16:50:46 +10001715 /*
1716 * Negative dentry: instantiate it unless the inode is a directory and
Christoph Hellwigb6520c82009-01-05 19:10:37 +01001717 * already has a dentry.
Barry Naujok94035402008-05-21 16:50:46 +10001718 */
Nick Piggin873feea2011-01-07 17:50:06 +11001719 spin_lock(&inode->i_lock);
Christoph Hellwigb6520c82009-01-05 19:10:37 +01001720 if (!S_ISDIR(inode->i_mode) || list_empty(&inode->i_dentry)) {
OGAWA Hirofumi360da902008-10-16 07:50:28 +09001721 __d_instantiate(found, inode);
Nick Piggin873feea2011-01-07 17:50:06 +11001722 spin_unlock(&inode->i_lock);
Barry Naujok94035402008-05-21 16:50:46 +10001723 security_d_instantiate(found, inode);
1724 return found;
1725 }
Christoph Hellwigb6520c82009-01-05 19:10:37 +01001726
Barry Naujok94035402008-05-21 16:50:46 +10001727 /*
Christoph Hellwigb6520c82009-01-05 19:10:37 +01001728 * In case a directory already has a (disconnected) entry grab a
1729 * reference to it, move it in place and use it.
Barry Naujok94035402008-05-21 16:50:46 +10001730 */
1731 new = list_entry(inode->i_dentry.next, struct dentry, d_alias);
Nick Piggindc0474b2011-01-07 17:49:43 +11001732 __dget(new);
Nick Piggin873feea2011-01-07 17:50:06 +11001733 spin_unlock(&inode->i_lock);
Barry Naujok94035402008-05-21 16:50:46 +10001734 security_d_instantiate(found, inode);
Barry Naujok94035402008-05-21 16:50:46 +10001735 d_move(new, found);
Barry Naujok94035402008-05-21 16:50:46 +10001736 iput(inode);
Barry Naujok94035402008-05-21 16:50:46 +10001737 dput(found);
Barry Naujok94035402008-05-21 16:50:46 +10001738 return new;
1739
1740err_out:
1741 iput(inode);
1742 return ERR_PTR(error);
1743}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07001744EXPORT_SYMBOL(d_add_ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
1746/**
Nick Piggin31e6b012011-01-07 17:49:52 +11001747 * __d_lookup_rcu - search for a dentry (racy, store-free)
1748 * @parent: parent dentry
1749 * @name: qstr of name we wish to find
1750 * @seq: returns d_seq value at the point where the dentry was found
1751 * @inode: returns dentry->d_inode when the inode was found valid.
1752 * Returns: dentry, or NULL
1753 *
1754 * __d_lookup_rcu is the dcache lookup function for rcu-walk name
1755 * resolution (store-free path walking) design described in
1756 * Documentation/filesystems/path-lookup.txt.
1757 *
1758 * This is not to be used outside core vfs.
1759 *
1760 * __d_lookup_rcu must only be used in rcu-walk mode, ie. with vfsmount lock
1761 * held, and rcu_read_lock held. The returned dentry must not be stored into
1762 * without taking d_lock and checking d_seq sequence count against @seq
1763 * returned here.
1764 *
1765 * A refcount may be taken on the found dentry with the __d_rcu_to_refcount
1766 * function.
1767 *
1768 * Alternatively, __d_lookup_rcu may be called again to look up the child of
1769 * the returned dentry, so long as its parent's seqlock is checked after the
1770 * child is looked up. Thus, an interlocking stepping of sequence lock checks
1771 * is formed, giving integrity down the path walk.
1772 */
1773struct dentry *__d_lookup_rcu(struct dentry *parent, struct qstr *name,
1774 unsigned *seq, struct inode **inode)
1775{
1776 unsigned int len = name->len;
1777 unsigned int hash = name->hash;
1778 const unsigned char *str = name->name;
Linus Torvaldsb07ad992011-04-23 22:32:03 -07001779 struct hlist_bl_head *b = d_hash(parent, hash);
Nick Pigginceb5bdc2011-01-07 17:50:05 +11001780 struct hlist_bl_node *node;
Nick Piggin31e6b012011-01-07 17:49:52 +11001781 struct dentry *dentry;
1782
1783 /*
1784 * Note: There is significant duplication with __d_lookup_rcu which is
1785 * required to prevent single threaded performance regressions
1786 * especially on architectures where smp_rmb (in seqcounts) are costly.
1787 * Keep the two functions in sync.
1788 */
1789
1790 /*
1791 * The hash list is protected using RCU.
1792 *
1793 * Carefully use d_seq when comparing a candidate dentry, to avoid
1794 * races with d_move().
1795 *
1796 * It is possible that concurrent renames can mess up our list
1797 * walk here and result in missing our dentry, resulting in the
1798 * false-negative result. d_lookup() protects against concurrent
1799 * renames using rename_lock seqlock.
1800 *
Namhyung Kimb0a4bb82011-01-22 15:31:32 +09001801 * See Documentation/filesystems/path-lookup.txt for more details.
Nick Piggin31e6b012011-01-07 17:49:52 +11001802 */
Linus Torvaldsb07ad992011-04-23 22:32:03 -07001803 hlist_bl_for_each_entry_rcu(dentry, node, b, d_hash) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001804 struct inode *i;
1805 const char *tname;
1806 int tlen;
1807
1808 if (dentry->d_name.hash != hash)
1809 continue;
1810
1811seqretry:
1812 *seq = read_seqcount_begin(&dentry->d_seq);
1813 if (dentry->d_parent != parent)
1814 continue;
1815 if (d_unhashed(dentry))
1816 continue;
1817 tlen = dentry->d_name.len;
1818 tname = dentry->d_name.name;
1819 i = dentry->d_inode;
Nick Piggine1bb5782011-01-07 17:50:08 +11001820 prefetch(tname);
1821 if (i)
1822 prefetch(i);
Nick Piggin31e6b012011-01-07 17:49:52 +11001823 /*
1824 * This seqcount check is required to ensure name and
1825 * len are loaded atomically, so as not to walk off the
1826 * edge of memory when walking. If we could load this
1827 * atomically some other way, we could drop this check.
1828 */
1829 if (read_seqcount_retry(&dentry->d_seq, *seq))
1830 goto seqretry;
Nick Pigginfb045ad2011-01-07 17:49:55 +11001831 if (parent->d_flags & DCACHE_OP_COMPARE) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001832 if (parent->d_op->d_compare(parent, *inode,
1833 dentry, i,
1834 tlen, tname, name))
1835 continue;
1836 } else {
Nick Piggin9d55c362011-01-07 17:50:09 +11001837 if (dentry_cmp(tname, tlen, str, len))
Nick Piggin31e6b012011-01-07 17:49:52 +11001838 continue;
1839 }
1840 /*
1841 * No extra seqcount check is required after the name
1842 * compare. The caller must perform a seqcount check in
1843 * order to do anything useful with the returned dentry
1844 * anyway.
1845 */
1846 *inode = i;
1847 return dentry;
1848 }
1849 return NULL;
1850}
1851
1852/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 * d_lookup - search for a dentry
1854 * @parent: parent dentry
1855 * @name: qstr of name we wish to find
Nick Pigginb04f7842010-08-18 04:37:34 +10001856 * Returns: dentry, or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 *
Nick Pigginb04f7842010-08-18 04:37:34 +10001858 * d_lookup searches the children of the parent dentry for the name in
1859 * question. If the dentry is found its reference count is incremented and the
1860 * dentry is returned. The caller must use dput to free the entry when it has
1861 * finished using it. %NULL is returned if the dentry does not exist.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001863struct dentry *d_lookup(struct dentry *parent, struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Nick Piggin31e6b012011-01-07 17:49:52 +11001865 struct dentry *dentry;
Nick Piggin949854d2011-01-07 17:49:37 +11001866 unsigned seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 do {
1869 seq = read_seqbegin(&rename_lock);
1870 dentry = __d_lookup(parent, name);
1871 if (dentry)
1872 break;
1873 } while (read_seqretry(&rename_lock, seq));
1874 return dentry;
1875}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07001876EXPORT_SYMBOL(d_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Nick Piggin31e6b012011-01-07 17:49:52 +11001878/**
Nick Pigginb04f7842010-08-18 04:37:34 +10001879 * __d_lookup - search for a dentry (racy)
1880 * @parent: parent dentry
1881 * @name: qstr of name we wish to find
1882 * Returns: dentry, or NULL
1883 *
1884 * __d_lookup is like d_lookup, however it may (rarely) return a
1885 * false-negative result due to unrelated rename activity.
1886 *
1887 * __d_lookup is slightly faster by avoiding rename_lock read seqlock,
1888 * however it must be used carefully, eg. with a following d_lookup in
1889 * the case of failure.
1890 *
1891 * __d_lookup callers must be commented.
1892 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001893struct dentry *__d_lookup(struct dentry *parent, struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
1895 unsigned int len = name->len;
1896 unsigned int hash = name->hash;
1897 const unsigned char *str = name->name;
Linus Torvaldsb07ad992011-04-23 22:32:03 -07001898 struct hlist_bl_head *b = d_hash(parent, hash);
Nick Pigginceb5bdc2011-01-07 17:50:05 +11001899 struct hlist_bl_node *node;
Nick Piggin31e6b012011-01-07 17:49:52 +11001900 struct dentry *found = NULL;
Paul E. McKenney665a7582005-11-07 00:59:17 -08001901 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Nick Pigginb04f7842010-08-18 04:37:34 +10001903 /*
Nick Piggin31e6b012011-01-07 17:49:52 +11001904 * Note: There is significant duplication with __d_lookup_rcu which is
1905 * required to prevent single threaded performance regressions
1906 * especially on architectures where smp_rmb (in seqcounts) are costly.
1907 * Keep the two functions in sync.
1908 */
1909
1910 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001911 * The hash list is protected using RCU.
1912 *
1913 * Take d_lock when comparing a candidate dentry, to avoid races
1914 * with d_move().
1915 *
1916 * It is possible that concurrent renames can mess up our list
1917 * walk here and result in missing our dentry, resulting in the
1918 * false-negative result. d_lookup() protects against concurrent
1919 * renames using rename_lock seqlock.
1920 *
Namhyung Kimb0a4bb82011-01-22 15:31:32 +09001921 * See Documentation/filesystems/path-lookup.txt for more details.
Nick Pigginb04f7842010-08-18 04:37:34 +10001922 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 rcu_read_lock();
1924
Linus Torvaldsb07ad992011-04-23 22:32:03 -07001925 hlist_bl_for_each_entry_rcu(dentry, node, b, d_hash) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001926 const char *tname;
1927 int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 if (dentry->d_name.hash != hash)
1930 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 spin_lock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (dentry->d_parent != parent)
1934 goto next;
Linus Torvaldsd0185c02008-09-29 07:42:57 -07001935 if (d_unhashed(dentry))
1936 goto next;
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 /*
1939 * It is safe to compare names since d_move() cannot
1940 * change the qstr (protected by d_lock).
1941 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001942 tlen = dentry->d_name.len;
1943 tname = dentry->d_name.name;
Nick Pigginfb045ad2011-01-07 17:49:55 +11001944 if (parent->d_flags & DCACHE_OP_COMPARE) {
Nick Piggin621e1552011-01-07 17:49:27 +11001945 if (parent->d_op->d_compare(parent, parent->d_inode,
1946 dentry, dentry->d_inode,
Nick Piggin31e6b012011-01-07 17:49:52 +11001947 tlen, tname, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 goto next;
1949 } else {
Nick Piggin9d55c362011-01-07 17:50:09 +11001950 if (dentry_cmp(tname, tlen, str, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 goto next;
1952 }
1953
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001954 dentry->d_count++;
Linus Torvaldsd0185c02008-09-29 07:42:57 -07001955 found = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 spin_unlock(&dentry->d_lock);
1957 break;
1958next:
1959 spin_unlock(&dentry->d_lock);
1960 }
1961 rcu_read_unlock();
1962
1963 return found;
1964}
1965
1966/**
Eric W. Biederman3e7e2412006-03-31 02:31:43 -08001967 * d_hash_and_lookup - hash the qstr then search for a dentry
1968 * @dir: Directory to search in
1969 * @name: qstr of name we wish to find
1970 *
1971 * On hash failure or on lookup failure NULL is returned.
1972 */
1973struct dentry *d_hash_and_lookup(struct dentry *dir, struct qstr *name)
1974{
1975 struct dentry *dentry = NULL;
1976
1977 /*
1978 * Check for a fs-specific hash function. Note that we must
1979 * calculate the standard hash first, as the d_op->d_hash()
1980 * routine may choose to leave the hash value unchanged.
1981 */
1982 name->hash = full_name_hash(name->name, name->len);
Nick Pigginfb045ad2011-01-07 17:49:55 +11001983 if (dir->d_flags & DCACHE_OP_HASH) {
Nick Pigginb1e6a012011-01-07 17:49:28 +11001984 if (dir->d_op->d_hash(dir, dir->d_inode, name) < 0)
Eric W. Biederman3e7e2412006-03-31 02:31:43 -08001985 goto out;
1986 }
1987 dentry = d_lookup(dir, name);
1988out:
1989 return dentry;
1990}
1991
1992/**
Nick Piggin786a5e12011-01-07 17:49:16 +11001993 * d_validate - verify dentry provided from insecure source (deprecated)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 * @dentry: The dentry alleged to be valid child of @dparent
Randy Dunlapff5fdb62011-01-22 20:16:06 -08001995 * @dparent: The parent dentry (known to be valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 *
1997 * An insecure source has sent us a dentry, here we verify it and dget() it.
1998 * This is used by ncpfs in its readdir implementation.
1999 * Zero is returned in the dentry is invalid.
Nick Piggin786a5e12011-01-07 17:49:16 +11002000 *
2001 * This function is slow for big directories, and deprecated, do not use it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 */
Nick Piggind3a23e12011-01-05 20:01:21 +11002003int d_validate(struct dentry *dentry, struct dentry *dparent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
Nick Piggin786a5e12011-01-07 17:49:16 +11002005 struct dentry *child;
Nick Piggind3a23e12011-01-05 20:01:21 +11002006
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002007 spin_lock(&dparent->d_lock);
Nick Piggin786a5e12011-01-07 17:49:16 +11002008 list_for_each_entry(child, &dparent->d_subdirs, d_u.d_child) {
2009 if (dentry == child) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002010 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Nick Piggindc0474b2011-01-07 17:49:43 +11002011 __dget_dlock(dentry);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002012 spin_unlock(&dentry->d_lock);
2013 spin_unlock(&dparent->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 return 1;
2015 }
2016 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002017 spin_unlock(&dparent->d_lock);
Nick Piggin786a5e12011-01-07 17:49:16 +11002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return 0;
2020}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07002021EXPORT_SYMBOL(d_validate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023/*
2024 * When a file is deleted, we have two options:
2025 * - turn this dentry into a negative dentry
2026 * - unhash this dentry and free it.
2027 *
2028 * Usually, we want to just turn this into
2029 * a negative dentry, but if anybody else is
2030 * currently using the dentry or the inode
2031 * we can't do that and we fall back on removing
2032 * it from the hash queues and waiting for
2033 * it to be deleted later when it has no users
2034 */
2035
2036/**
2037 * d_delete - delete a dentry
2038 * @dentry: The dentry to delete
2039 *
2040 * Turn the dentry into a negative dentry if possible, otherwise
2041 * remove it from the hash queues so it can be deleted later
2042 */
2043
2044void d_delete(struct dentry * dentry)
2045{
Nick Piggin873feea2011-01-07 17:50:06 +11002046 struct inode *inode;
John McCutchan7a91bf72005-08-08 13:52:16 -04002047 int isdir = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 /*
2049 * Are we the only user?
2050 */
Nick Piggin357f8e62011-01-07 17:49:42 +11002051again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 spin_lock(&dentry->d_lock);
Nick Piggin873feea2011-01-07 17:50:06 +11002053 inode = dentry->d_inode;
2054 isdir = S_ISDIR(inode->i_mode);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11002055 if (dentry->d_count == 1) {
Nick Piggin873feea2011-01-07 17:50:06 +11002056 if (inode && !spin_trylock(&inode->i_lock)) {
Nick Piggin357f8e62011-01-07 17:49:42 +11002057 spin_unlock(&dentry->d_lock);
2058 cpu_relax();
2059 goto again;
2060 }
Al Viro13e3c5e2010-05-21 16:11:04 -04002061 dentry->d_flags &= ~DCACHE_CANT_MOUNT;
Nick Piggin31e6b012011-01-07 17:49:52 +11002062 dentry_unlink_inode(dentry);
John McCutchan7a91bf72005-08-08 13:52:16 -04002063 fsnotify_nameremove(dentry, isdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 return;
2065 }
2066
2067 if (!d_unhashed(dentry))
2068 __d_drop(dentry);
2069
2070 spin_unlock(&dentry->d_lock);
John McCutchan7a91bf72005-08-08 13:52:16 -04002071
2072 fsnotify_nameremove(dentry, isdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07002074EXPORT_SYMBOL(d_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Linus Torvaldsb07ad992011-04-23 22:32:03 -07002076static void __d_rehash(struct dentry * entry, struct hlist_bl_head *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
Nick Pigginceb5bdc2011-01-07 17:50:05 +11002078 BUG_ON(!d_unhashed(entry));
2079 spin_lock_bucket(b);
Linus Torvaldsdea36672011-04-24 07:58:46 -07002080 entry->d_flags |= DCACHE_RCUACCESS;
Linus Torvaldsb07ad992011-04-23 22:32:03 -07002081 hlist_bl_add_head_rcu(&entry->d_hash, b);
Nick Pigginceb5bdc2011-01-07 17:50:05 +11002082 spin_unlock_bucket(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
2084
David Howells770bfad2006-08-22 20:06:07 -04002085static void _d_rehash(struct dentry * entry)
2086{
2087 __d_rehash(entry, d_hash(entry->d_parent, entry->d_name.hash));
2088}
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090/**
2091 * d_rehash - add an entry back to the hash
2092 * @entry: dentry to add to the hash
2093 *
2094 * Adds a dentry to the hash according to its name.
2095 */
2096
2097void d_rehash(struct dentry * entry)
2098{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 spin_lock(&entry->d_lock);
David Howells770bfad2006-08-22 20:06:07 -04002100 _d_rehash(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 spin_unlock(&entry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07002103EXPORT_SYMBOL(d_rehash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Nick Pigginfb2d5b82011-01-07 17:49:26 +11002105/**
2106 * dentry_update_name_case - update case insensitive dentry with a new name
2107 * @dentry: dentry to be updated
2108 * @name: new name
2109 *
2110 * Update a case insensitive dentry with new case of name.
2111 *
2112 * dentry must have been returned by d_lookup with name @name. Old and new
2113 * name lengths must match (ie. no d_compare which allows mismatched name
2114 * lengths).
2115 *
2116 * Parent inode i_mutex must be held over d_lookup and into this call (to
2117 * keep renames and concurrent inserts, and readdir(2) away).
2118 */
2119void dentry_update_name_case(struct dentry *dentry, struct qstr *name)
2120{
Linus Torvalds7ebfa572011-04-15 07:34:26 -07002121 BUG_ON(!mutex_is_locked(&dentry->d_parent->d_inode->i_mutex));
Nick Pigginfb2d5b82011-01-07 17:49:26 +11002122 BUG_ON(dentry->d_name.len != name->len); /* d_lookup gives this */
2123
Nick Pigginfb2d5b82011-01-07 17:49:26 +11002124 spin_lock(&dentry->d_lock);
Nick Piggin31e6b012011-01-07 17:49:52 +11002125 write_seqcount_begin(&dentry->d_seq);
Nick Pigginfb2d5b82011-01-07 17:49:26 +11002126 memcpy((unsigned char *)dentry->d_name.name, name->name, name->len);
Nick Piggin31e6b012011-01-07 17:49:52 +11002127 write_seqcount_end(&dentry->d_seq);
Nick Pigginfb2d5b82011-01-07 17:49:26 +11002128 spin_unlock(&dentry->d_lock);
Nick Pigginfb2d5b82011-01-07 17:49:26 +11002129}
2130EXPORT_SYMBOL(dentry_update_name_case);
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132static void switch_names(struct dentry *dentry, struct dentry *target)
2133{
2134 if (dname_external(target)) {
2135 if (dname_external(dentry)) {
2136 /*
2137 * Both external: swap the pointers
2138 */
Wu Fengguang9a8d5bb2009-01-07 18:09:14 -08002139 swap(target->d_name.name, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 } else {
2141 /*
2142 * dentry:internal, target:external. Steal target's
2143 * storage and make target internal.
2144 */
J. Bruce Fields321bcf92007-10-21 16:41:38 -07002145 memcpy(target->d_iname, dentry->d_name.name,
2146 dentry->d_name.len + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 dentry->d_name.name = target->d_name.name;
2148 target->d_name.name = target->d_iname;
2149 }
2150 } else {
2151 if (dname_external(dentry)) {
2152 /*
2153 * dentry:external, target:internal. Give dentry's
2154 * storage to target and make dentry internal
2155 */
2156 memcpy(dentry->d_iname, target->d_name.name,
2157 target->d_name.len + 1);
2158 target->d_name.name = dentry->d_name.name;
2159 dentry->d_name.name = dentry->d_iname;
2160 } else {
2161 /*
2162 * Both are internal. Just copy target to dentry
2163 */
2164 memcpy(dentry->d_iname, target->d_name.name,
2165 target->d_name.len + 1);
Al Virodc711ca2008-11-03 15:03:50 -05002166 dentry->d_name.len = target->d_name.len;
2167 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
2169 }
Wu Fengguang9a8d5bb2009-01-07 18:09:14 -08002170 swap(dentry->d_name.len, target->d_name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171}
2172
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002173static void dentry_lock_for_move(struct dentry *dentry, struct dentry *target)
2174{
2175 /*
2176 * XXXX: do we really need to take target->d_lock?
2177 */
2178 if (IS_ROOT(dentry) || dentry->d_parent == target->d_parent)
2179 spin_lock(&target->d_parent->d_lock);
2180 else {
2181 if (d_ancestor(dentry->d_parent, target->d_parent)) {
2182 spin_lock(&dentry->d_parent->d_lock);
2183 spin_lock_nested(&target->d_parent->d_lock,
2184 DENTRY_D_LOCK_NESTED);
2185 } else {
2186 spin_lock(&target->d_parent->d_lock);
2187 spin_lock_nested(&dentry->d_parent->d_lock,
2188 DENTRY_D_LOCK_NESTED);
2189 }
2190 }
2191 if (target < dentry) {
2192 spin_lock_nested(&target->d_lock, 2);
2193 spin_lock_nested(&dentry->d_lock, 3);
2194 } else {
2195 spin_lock_nested(&dentry->d_lock, 2);
2196 spin_lock_nested(&target->d_lock, 3);
2197 }
2198}
2199
2200static void dentry_unlock_parents_for_move(struct dentry *dentry,
2201 struct dentry *target)
2202{
2203 if (target->d_parent != dentry->d_parent)
2204 spin_unlock(&dentry->d_parent->d_lock);
2205 if (target->d_parent != target)
2206 spin_unlock(&target->d_parent->d_lock);
2207}
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209/*
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002210 * When switching names, the actual string doesn't strictly have to
2211 * be preserved in the target - because we're dropping the target
2212 * anyway. As such, we can just do a simple memcpy() to copy over
2213 * the new name before we switch.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 *
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002215 * Note that we have to be a lot more careful about getting the hash
2216 * switched - we have to switch the hash value properly even if it
2217 * then no longer matches the actual (corrupted) string of the target.
2218 * The hash value has to match the hash queue that the dentry is on..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 */
Trond Myklebust9eaef272006-10-21 10:24:20 -07002220/*
Nick Pigginb5c84bf2011-01-07 17:49:38 +11002221 * d_move - move a dentry
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 * @dentry: entry to move
2223 * @target: new dentry
2224 *
2225 * Update the dcache to reflect the move of a file name. Negative
2226 * dcache entries should not be moved in this way.
2227 */
Nick Pigginb5c84bf2011-01-07 17:49:38 +11002228void d_move(struct dentry * dentry, struct dentry * target)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (!dentry->d_inode)
2231 printk(KERN_WARNING "VFS: moving negative dcache entry\n");
2232
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002233 BUG_ON(d_ancestor(dentry, target));
2234 BUG_ON(d_ancestor(target, dentry));
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 write_seqlock(&rename_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002237
2238 dentry_lock_for_move(dentry, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Nick Piggin31e6b012011-01-07 17:49:52 +11002240 write_seqcount_begin(&dentry->d_seq);
2241 write_seqcount_begin(&target->d_seq);
2242
Nick Pigginceb5bdc2011-01-07 17:50:05 +11002243 /* __d_drop does write_seqcount_barrier, but they're OK to nest. */
2244
2245 /*
2246 * Move the dentry to the target hash queue. Don't bother checking
2247 * for the same hash queue because of how unlikely it is.
2248 */
2249 __d_drop(dentry);
Nick Piggin789680d2011-01-07 17:49:30 +11002250 __d_rehash(dentry, d_hash(target->d_parent, target->d_name.hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252 /* Unhash the target: dput() will then get rid of it */
2253 __d_drop(target);
2254
Eric Dumazet5160ee62006-01-08 01:03:32 -08002255 list_del(&dentry->d_u.d_child);
2256 list_del(&target->d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 /* Switch the names.. */
2259 switch_names(dentry, target);
Wu Fengguang9a8d5bb2009-01-07 18:09:14 -08002260 swap(dentry->d_name.hash, target->d_name.hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 /* ... and switch the parents */
2263 if (IS_ROOT(dentry)) {
2264 dentry->d_parent = target->d_parent;
2265 target->d_parent = target;
Eric Dumazet5160ee62006-01-08 01:03:32 -08002266 INIT_LIST_HEAD(&target->d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 } else {
Wu Fengguang9a8d5bb2009-01-07 18:09:14 -08002268 swap(dentry->d_parent, target->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 /* And add them back to the (new) parent lists */
Eric Dumazet5160ee62006-01-08 01:03:32 -08002271 list_add(&target->d_u.d_child, &target->d_parent->d_subdirs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
2273
Eric Dumazet5160ee62006-01-08 01:03:32 -08002274 list_add(&dentry->d_u.d_child, &dentry->d_parent->d_subdirs);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002275
Nick Piggin31e6b012011-01-07 17:49:52 +11002276 write_seqcount_end(&target->d_seq);
2277 write_seqcount_end(&dentry->d_seq);
2278
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002279 dentry_unlock_parents_for_move(dentry, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 spin_unlock(&target->d_lock);
Nick Pigginc32ccd82006-03-25 03:07:09 -08002281 fsnotify_d_move(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 spin_unlock(&dentry->d_lock);
2283 write_sequnlock(&rename_lock);
Trond Myklebust9eaef272006-10-21 10:24:20 -07002284}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07002285EXPORT_SYMBOL(d_move);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002287/**
2288 * d_ancestor - search for an ancestor
2289 * @p1: ancestor dentry
2290 * @p2: child dentry
2291 *
2292 * Returns the ancestor dentry of p2 which is a child of p1, if p1 is
2293 * an ancestor of p2, else NULL.
Trond Myklebust9eaef272006-10-21 10:24:20 -07002294 */
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002295struct dentry *d_ancestor(struct dentry *p1, struct dentry *p2)
Trond Myklebust9eaef272006-10-21 10:24:20 -07002296{
2297 struct dentry *p;
2298
OGAWA Hirofumi871c0062008-10-16 07:50:27 +09002299 for (p = p2; !IS_ROOT(p); p = p->d_parent) {
Trond Myklebust9eaef272006-10-21 10:24:20 -07002300 if (p->d_parent == p1)
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002301 return p;
Trond Myklebust9eaef272006-10-21 10:24:20 -07002302 }
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002303 return NULL;
Trond Myklebust9eaef272006-10-21 10:24:20 -07002304}
2305
2306/*
2307 * This helper attempts to cope with remotely renamed directories
2308 *
2309 * It assumes that the caller is already holding
Nick Piggin873feea2011-01-07 17:50:06 +11002310 * dentry->d_parent->d_inode->i_mutex and the inode->i_lock
Trond Myklebust9eaef272006-10-21 10:24:20 -07002311 *
2312 * Note: If ever the locking in lock_rename() changes, then please
2313 * remember to update this too...
Trond Myklebust9eaef272006-10-21 10:24:20 -07002314 */
Nick Piggin873feea2011-01-07 17:50:06 +11002315static struct dentry *__d_unalias(struct inode *inode,
2316 struct dentry *dentry, struct dentry *alias)
Trond Myklebust9eaef272006-10-21 10:24:20 -07002317{
2318 struct mutex *m1 = NULL, *m2 = NULL;
2319 struct dentry *ret;
2320
2321 /* If alias and dentry share a parent, then no extra locks required */
2322 if (alias->d_parent == dentry->d_parent)
2323 goto out_unalias;
2324
2325 /* Check for loops */
2326 ret = ERR_PTR(-ELOOP);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002327 if (d_ancestor(alias, dentry))
Trond Myklebust9eaef272006-10-21 10:24:20 -07002328 goto out_err;
2329
2330 /* See lock_rename() */
2331 ret = ERR_PTR(-EBUSY);
2332 if (!mutex_trylock(&dentry->d_sb->s_vfs_rename_mutex))
2333 goto out_err;
2334 m1 = &dentry->d_sb->s_vfs_rename_mutex;
2335 if (!mutex_trylock(&alias->d_parent->d_inode->i_mutex))
2336 goto out_err;
2337 m2 = &alias->d_parent->d_inode->i_mutex;
2338out_unalias:
Nick Pigginb5c84bf2011-01-07 17:49:38 +11002339 d_move(alias, dentry);
Trond Myklebust9eaef272006-10-21 10:24:20 -07002340 ret = alias;
2341out_err:
Nick Piggin873feea2011-01-07 17:50:06 +11002342 spin_unlock(&inode->i_lock);
Trond Myklebust9eaef272006-10-21 10:24:20 -07002343 if (m2)
2344 mutex_unlock(m2);
2345 if (m1)
2346 mutex_unlock(m1);
2347 return ret;
2348}
2349
2350/*
David Howells770bfad2006-08-22 20:06:07 -04002351 * Prepare an anonymous dentry for life in the superblock's dentry tree as a
2352 * named dentry in place of the dentry to be replaced.
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002353 * returns with anon->d_lock held!
David Howells770bfad2006-08-22 20:06:07 -04002354 */
2355static void __d_materialise_dentry(struct dentry *dentry, struct dentry *anon)
2356{
2357 struct dentry *dparent, *aparent;
2358
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002359 dentry_lock_for_move(anon, dentry);
David Howells770bfad2006-08-22 20:06:07 -04002360
Nick Piggin31e6b012011-01-07 17:49:52 +11002361 write_seqcount_begin(&dentry->d_seq);
2362 write_seqcount_begin(&anon->d_seq);
2363
David Howells770bfad2006-08-22 20:06:07 -04002364 dparent = dentry->d_parent;
2365 aparent = anon->d_parent;
2366
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002367 switch_names(dentry, anon);
2368 swap(dentry->d_name.hash, anon->d_name.hash);
2369
David Howells770bfad2006-08-22 20:06:07 -04002370 dentry->d_parent = (aparent == anon) ? dentry : aparent;
2371 list_del(&dentry->d_u.d_child);
2372 if (!IS_ROOT(dentry))
2373 list_add(&dentry->d_u.d_child, &dentry->d_parent->d_subdirs);
2374 else
2375 INIT_LIST_HEAD(&dentry->d_u.d_child);
2376
2377 anon->d_parent = (dparent == dentry) ? anon : dparent;
2378 list_del(&anon->d_u.d_child);
2379 if (!IS_ROOT(anon))
2380 list_add(&anon->d_u.d_child, &anon->d_parent->d_subdirs);
2381 else
2382 INIT_LIST_HEAD(&anon->d_u.d_child);
2383
Nick Piggin31e6b012011-01-07 17:49:52 +11002384 write_seqcount_end(&dentry->d_seq);
2385 write_seqcount_end(&anon->d_seq);
2386
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002387 dentry_unlock_parents_for_move(anon, dentry);
2388 spin_unlock(&dentry->d_lock);
2389
2390 /* anon->d_lock still locked, returns locked */
David Howells770bfad2006-08-22 20:06:07 -04002391 anon->d_flags &= ~DCACHE_DISCONNECTED;
2392}
2393
2394/**
2395 * d_materialise_unique - introduce an inode into the tree
2396 * @dentry: candidate dentry
2397 * @inode: inode to bind to the dentry, to which aliases may be attached
2398 *
2399 * Introduces an dentry into the tree, substituting an extant disconnected
2400 * root directory alias in its place if there is one
2401 */
2402struct dentry *d_materialise_unique(struct dentry *dentry, struct inode *inode)
2403{
Trond Myklebust9eaef272006-10-21 10:24:20 -07002404 struct dentry *actual;
David Howells770bfad2006-08-22 20:06:07 -04002405
2406 BUG_ON(!d_unhashed(dentry));
2407
David Howells770bfad2006-08-22 20:06:07 -04002408 if (!inode) {
2409 actual = dentry;
OGAWA Hirofumi360da902008-10-16 07:50:28 +09002410 __d_instantiate(dentry, NULL);
Nick Piggin357f8e62011-01-07 17:49:42 +11002411 d_rehash(actual);
2412 goto out_nolock;
David Howells770bfad2006-08-22 20:06:07 -04002413 }
2414
Nick Piggin873feea2011-01-07 17:50:06 +11002415 spin_lock(&inode->i_lock);
Nick Piggin357f8e62011-01-07 17:49:42 +11002416
Trond Myklebust9eaef272006-10-21 10:24:20 -07002417 if (S_ISDIR(inode->i_mode)) {
2418 struct dentry *alias;
David Howells770bfad2006-08-22 20:06:07 -04002419
Trond Myklebust9eaef272006-10-21 10:24:20 -07002420 /* Does an aliased dentry already exist? */
2421 alias = __d_find_alias(inode, 0);
2422 if (alias) {
2423 actual = alias;
2424 /* Is this an anonymous mountpoint that we could splice
2425 * into our tree? */
2426 if (IS_ROOT(alias)) {
Trond Myklebust9eaef272006-10-21 10:24:20 -07002427 __d_materialise_dentry(dentry, alias);
2428 __d_drop(alias);
2429 goto found;
2430 }
2431 /* Nope, but we must(!) avoid directory aliasing */
Nick Piggin873feea2011-01-07 17:50:06 +11002432 actual = __d_unalias(inode, dentry, alias);
Trond Myklebust9eaef272006-10-21 10:24:20 -07002433 if (IS_ERR(actual))
2434 dput(alias);
2435 goto out_nolock;
2436 }
David Howells770bfad2006-08-22 20:06:07 -04002437 }
2438
2439 /* Add a unique reference */
2440 actual = __d_instantiate_unique(dentry, inode);
2441 if (!actual)
2442 actual = dentry;
Nick Piggin357f8e62011-01-07 17:49:42 +11002443 else
2444 BUG_ON(!d_unhashed(actual));
David Howells770bfad2006-08-22 20:06:07 -04002445
David Howells770bfad2006-08-22 20:06:07 -04002446 spin_lock(&actual->d_lock);
2447found:
2448 _d_rehash(actual);
2449 spin_unlock(&actual->d_lock);
Nick Piggin873feea2011-01-07 17:50:06 +11002450 spin_unlock(&inode->i_lock);
Trond Myklebust9eaef272006-10-21 10:24:20 -07002451out_nolock:
David Howells770bfad2006-08-22 20:06:07 -04002452 if (actual == dentry) {
2453 security_d_instantiate(dentry, inode);
2454 return NULL;
2455 }
2456
2457 iput(inode);
2458 return actual;
David Howells770bfad2006-08-22 20:06:07 -04002459}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07002460EXPORT_SYMBOL_GPL(d_materialise_unique);
David Howells770bfad2006-08-22 20:06:07 -04002461
Miklos Szeredicdd16d02008-06-23 18:11:53 +02002462static int prepend(char **buffer, int *buflen, const char *str, int namelen)
Ram Pai6092d042008-03-27 13:06:20 +01002463{
2464 *buflen -= namelen;
2465 if (*buflen < 0)
2466 return -ENAMETOOLONG;
2467 *buffer -= namelen;
2468 memcpy(*buffer, str, namelen);
2469 return 0;
2470}
2471
Miklos Szeredicdd16d02008-06-23 18:11:53 +02002472static int prepend_name(char **buffer, int *buflen, struct qstr *name)
2473{
2474 return prepend(buffer, buflen, name->name, name->len);
2475}
2476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477/**
Randy Dunlap208898c2010-11-18 15:02:49 -08002478 * prepend_path - Prepend path string to a buffer
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002479 * @path: the dentry/vfsmount to report
2480 * @root: root vfsmnt/dentry (may be modified by this function)
2481 * @buffer: pointer to the end of the buffer
2482 * @buflen: pointer to buffer length
2483 *
Nick Piggin949854d2011-01-07 17:49:37 +11002484 * Caller holds the rename_lock.
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002485 *
2486 * If path is not reachable from the supplied root, then the value of
2487 * root is changed (without modifying refcounts).
2488 */
2489static int prepend_path(const struct path *path, struct path *root,
2490 char **buffer, int *buflen)
2491{
2492 struct dentry *dentry = path->dentry;
2493 struct vfsmount *vfsmnt = path->mnt;
2494 bool slash = false;
2495 int error = 0;
2496
Nick Piggin99b7db72010-08-18 04:37:39 +10002497 br_read_lock(vfsmount_lock);
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002498 while (dentry != root->dentry || vfsmnt != root->mnt) {
2499 struct dentry * parent;
2500
2501 if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
2502 /* Global root? */
2503 if (vfsmnt->mnt_parent == vfsmnt) {
2504 goto global_root;
2505 }
2506 dentry = vfsmnt->mnt_mountpoint;
2507 vfsmnt = vfsmnt->mnt_parent;
2508 continue;
2509 }
2510 parent = dentry->d_parent;
2511 prefetch(parent);
Nick Piggin9abca362011-01-07 17:49:36 +11002512 spin_lock(&dentry->d_lock);
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002513 error = prepend_name(buffer, buflen, &dentry->d_name);
Nick Piggin9abca362011-01-07 17:49:36 +11002514 spin_unlock(&dentry->d_lock);
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002515 if (!error)
2516 error = prepend(buffer, buflen, "/", 1);
2517 if (error)
2518 break;
2519
2520 slash = true;
2521 dentry = parent;
2522 }
2523
2524out:
2525 if (!error && !slash)
2526 error = prepend(buffer, buflen, "/", 1);
2527
Nick Piggin99b7db72010-08-18 04:37:39 +10002528 br_read_unlock(vfsmount_lock);
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002529 return error;
2530
2531global_root:
2532 /*
2533 * Filesystems needing to implement special "root names"
2534 * should do so with ->d_dname()
2535 */
2536 if (IS_ROOT(dentry) &&
2537 (dentry->d_name.len != 1 || dentry->d_name.name[0] != '/')) {
2538 WARN(1, "Root dentry has weird name <%.*s>\n",
2539 (int) dentry->d_name.len, dentry->d_name.name);
2540 }
2541 root->mnt = vfsmnt;
2542 root->dentry = dentry;
2543 goto out;
2544}
2545
2546/**
Miklos Szeredi31f3e0b2008-06-23 18:11:52 +02002547 * __d_path - return the path of a dentry
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +01002548 * @path: the dentry/vfsmount to report
2549 * @root: root vfsmnt/dentry (may be modified by this function)
Randy Dunlapcd956a12010-08-14 13:05:31 -07002550 * @buf: buffer to return value in
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 * @buflen: buffer length
2552 *
Miklos Szerediffd1f4e2010-08-10 11:41:40 +02002553 * Convert a dentry into an ASCII path name.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 *
Arjan van de Ven52afeef2008-12-01 14:35:00 -08002555 * Returns a pointer into the buffer or an error code if the
2556 * path was too long.
Linus Torvalds552ce542007-02-13 12:08:18 -08002557 *
Christoph Hellwigbe148242010-10-10 05:36:21 -04002558 * "buflen" should be positive.
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +01002559 *
2560 * If path is not reachable from the supplied root, then the value of
2561 * root is changed (without modifying refcounts).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 */
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +01002563char *__d_path(const struct path *path, struct path *root,
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002564 char *buf, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002566 char *res = buf + buflen;
2567 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002569 prepend(&res, &buflen, "\0", 1);
Nick Piggin949854d2011-01-07 17:49:37 +11002570 write_seqlock(&rename_lock);
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002571 error = prepend_path(path, root, &res, &buflen);
Nick Piggin949854d2011-01-07 17:49:37 +11002572 write_sequnlock(&rename_lock);
Christoph Hellwigbe148242010-10-10 05:36:21 -04002573
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002574 if (error)
2575 return ERR_PTR(error);
Miklos Szeredif2eb6572010-08-10 11:41:39 +02002576 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
Miklos Szerediffd1f4e2010-08-10 11:41:40 +02002579/*
2580 * same as __d_path but appends "(deleted)" for unlinked files.
2581 */
2582static int path_with_deleted(const struct path *path, struct path *root,
2583 char **buf, int *buflen)
2584{
2585 prepend(buf, buflen, "\0", 1);
2586 if (d_unlinked(path->dentry)) {
2587 int error = prepend(buf, buflen, " (deleted)", 10);
2588 if (error)
2589 return error;
2590 }
2591
2592 return prepend_path(path, root, buf, buflen);
2593}
2594
Miklos Szeredi8df9d1a2010-08-10 11:41:41 +02002595static int prepend_unreachable(char **buffer, int *buflen)
2596{
2597 return prepend(buffer, buflen, "(unreachable)", 13);
2598}
2599
Jan Bluncka03a8a702008-02-14 19:38:32 -08002600/**
2601 * d_path - return the path of a dentry
Jan Blunckcf28b482008-02-14 19:38:44 -08002602 * @path: path to report
Jan Bluncka03a8a702008-02-14 19:38:32 -08002603 * @buf: buffer to return value in
2604 * @buflen: buffer length
2605 *
2606 * Convert a dentry into an ASCII path name. If the entry has been deleted
2607 * the string " (deleted)" is appended. Note that this is ambiguous.
2608 *
Arjan van de Ven52afeef2008-12-01 14:35:00 -08002609 * Returns a pointer into the buffer or an error code if the path was
2610 * too long. Note: Callers should use the returned pointer, not the passed
2611 * in buffer, to use the name! The implementation often starts at an offset
2612 * into the buffer, and may leave 0 bytes at the start.
Jan Bluncka03a8a702008-02-14 19:38:32 -08002613 *
Miklos Szeredi31f3e0b2008-06-23 18:11:52 +02002614 * "buflen" should be positive.
Jan Bluncka03a8a702008-02-14 19:38:32 -08002615 */
Jan Engelhardt20d4fdc2008-06-09 16:40:36 -07002616char *d_path(const struct path *path, char *buf, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
Miklos Szerediffd1f4e2010-08-10 11:41:40 +02002618 char *res = buf + buflen;
Jan Blunck6ac08c32008-02-14 19:34:38 -08002619 struct path root;
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +01002620 struct path tmp;
Miklos Szerediffd1f4e2010-08-10 11:41:40 +02002621 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Eric Dumazetc23fbb62007-05-08 00:26:18 -07002623 /*
2624 * We have various synthetic filesystems that never get mounted. On
2625 * these filesystems dentries are never used for lookup purposes, and
2626 * thus don't need to be hashed. They also don't need a name until a
2627 * user wants to identify the object in /proc/pid/fd/. The little hack
2628 * below allows us to generate a name for these objects on demand:
2629 */
Jan Blunckcf28b482008-02-14 19:38:44 -08002630 if (path->dentry->d_op && path->dentry->d_op->d_dname)
2631 return path->dentry->d_op->d_dname(path->dentry, buf, buflen);
Eric Dumazetc23fbb62007-05-08 00:26:18 -07002632
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002633 get_fs_root(current->fs, &root);
Nick Piggin949854d2011-01-07 17:49:37 +11002634 write_seqlock(&rename_lock);
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +01002635 tmp = root;
Miklos Szerediffd1f4e2010-08-10 11:41:40 +02002636 error = path_with_deleted(path, &tmp, &res, &buflen);
2637 if (error)
2638 res = ERR_PTR(error);
Nick Piggin949854d2011-01-07 17:49:37 +11002639 write_sequnlock(&rename_lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08002640 path_put(&root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 return res;
2642}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07002643EXPORT_SYMBOL(d_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Miklos Szeredi8df9d1a2010-08-10 11:41:41 +02002645/**
2646 * d_path_with_unreachable - return the path of a dentry
2647 * @path: path to report
2648 * @buf: buffer to return value in
2649 * @buflen: buffer length
2650 *
2651 * The difference from d_path() is that this prepends "(unreachable)"
2652 * to paths which are unreachable from the current process' root.
2653 */
2654char *d_path_with_unreachable(const struct path *path, char *buf, int buflen)
2655{
2656 char *res = buf + buflen;
2657 struct path root;
2658 struct path tmp;
2659 int error;
2660
2661 if (path->dentry->d_op && path->dentry->d_op->d_dname)
2662 return path->dentry->d_op->d_dname(path->dentry, buf, buflen);
2663
2664 get_fs_root(current->fs, &root);
Nick Piggin949854d2011-01-07 17:49:37 +11002665 write_seqlock(&rename_lock);
Miklos Szeredi8df9d1a2010-08-10 11:41:41 +02002666 tmp = root;
2667 error = path_with_deleted(path, &tmp, &res, &buflen);
2668 if (!error && !path_equal(&tmp, &root))
2669 error = prepend_unreachable(&res, &buflen);
Nick Piggin949854d2011-01-07 17:49:37 +11002670 write_sequnlock(&rename_lock);
Miklos Szeredi8df9d1a2010-08-10 11:41:41 +02002671 path_put(&root);
2672 if (error)
2673 res = ERR_PTR(error);
2674
2675 return res;
2676}
2677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678/*
Eric Dumazetc23fbb62007-05-08 00:26:18 -07002679 * Helper function for dentry_operations.d_dname() members
2680 */
2681char *dynamic_dname(struct dentry *dentry, char *buffer, int buflen,
2682 const char *fmt, ...)
2683{
2684 va_list args;
2685 char temp[64];
2686 int sz;
2687
2688 va_start(args, fmt);
2689 sz = vsnprintf(temp, sizeof(temp), fmt, args) + 1;
2690 va_end(args);
2691
2692 if (sz > sizeof(temp) || sz > buflen)
2693 return ERR_PTR(-ENAMETOOLONG);
2694
2695 buffer += buflen - sz;
2696 return memcpy(buffer, temp, sz);
2697}
2698
2699/*
Ram Pai6092d042008-03-27 13:06:20 +01002700 * Write full pathname from the root of the filesystem into the buffer.
2701 */
Nick Pigginec2447c2011-01-07 17:49:29 +11002702static char *__dentry_path(struct dentry *dentry, char *buf, int buflen)
Ram Pai6092d042008-03-27 13:06:20 +01002703{
2704 char *end = buf + buflen;
2705 char *retval;
2706
Ram Pai6092d042008-03-27 13:06:20 +01002707 prepend(&end, &buflen, "\0", 1);
Ram Pai6092d042008-03-27 13:06:20 +01002708 if (buflen < 1)
2709 goto Elong;
2710 /* Get '/' right */
2711 retval = end-1;
2712 *retval = '/';
2713
Miklos Szeredicdd16d02008-06-23 18:11:53 +02002714 while (!IS_ROOT(dentry)) {
2715 struct dentry *parent = dentry->d_parent;
Nick Piggin9abca362011-01-07 17:49:36 +11002716 int error;
Ram Pai6092d042008-03-27 13:06:20 +01002717
Ram Pai6092d042008-03-27 13:06:20 +01002718 prefetch(parent);
Nick Piggin9abca362011-01-07 17:49:36 +11002719 spin_lock(&dentry->d_lock);
2720 error = prepend_name(&end, &buflen, &dentry->d_name);
2721 spin_unlock(&dentry->d_lock);
2722 if (error != 0 || prepend(&end, &buflen, "/", 1) != 0)
Ram Pai6092d042008-03-27 13:06:20 +01002723 goto Elong;
2724
2725 retval = end;
2726 dentry = parent;
2727 }
Al Viroc1031352010-06-06 22:31:14 -04002728 return retval;
2729Elong:
2730 return ERR_PTR(-ENAMETOOLONG);
2731}
Nick Pigginec2447c2011-01-07 17:49:29 +11002732
2733char *dentry_path_raw(struct dentry *dentry, char *buf, int buflen)
2734{
2735 char *retval;
2736
Nick Piggin949854d2011-01-07 17:49:37 +11002737 write_seqlock(&rename_lock);
Nick Pigginec2447c2011-01-07 17:49:29 +11002738 retval = __dentry_path(dentry, buf, buflen);
Nick Piggin949854d2011-01-07 17:49:37 +11002739 write_sequnlock(&rename_lock);
Nick Pigginec2447c2011-01-07 17:49:29 +11002740
2741 return retval;
2742}
2743EXPORT_SYMBOL(dentry_path_raw);
Al Viroc1031352010-06-06 22:31:14 -04002744
2745char *dentry_path(struct dentry *dentry, char *buf, int buflen)
2746{
2747 char *p = NULL;
2748 char *retval;
2749
Nick Piggin949854d2011-01-07 17:49:37 +11002750 write_seqlock(&rename_lock);
Al Viroc1031352010-06-06 22:31:14 -04002751 if (d_unlinked(dentry)) {
2752 p = buf + buflen;
2753 if (prepend(&p, &buflen, "//deleted", 10) != 0)
2754 goto Elong;
2755 buflen++;
2756 }
2757 retval = __dentry_path(dentry, buf, buflen);
Nick Piggin949854d2011-01-07 17:49:37 +11002758 write_sequnlock(&rename_lock);
Al Viroc1031352010-06-06 22:31:14 -04002759 if (!IS_ERR(retval) && p)
2760 *p = '/'; /* restore '/' overriden with '\0' */
Ram Pai6092d042008-03-27 13:06:20 +01002761 return retval;
2762Elong:
Ram Pai6092d042008-03-27 13:06:20 +01002763 return ERR_PTR(-ENAMETOOLONG);
2764}
2765
2766/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 * NOTE! The user-level library version returns a
2768 * character pointer. The kernel system call just
2769 * returns the length of the buffer filled (which
2770 * includes the ending '\0' character), or a negative
2771 * error value. So libc would do something like
2772 *
2773 * char *getcwd(char * buf, size_t size)
2774 * {
2775 * int retval;
2776 *
2777 * retval = sys_getcwd(buf, size);
2778 * if (retval >= 0)
2779 * return buf;
2780 * errno = -retval;
2781 * return NULL;
2782 * }
2783 */
Heiko Carstens3cdad422009-01-14 14:14:22 +01002784SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785{
Linus Torvalds552ce542007-02-13 12:08:18 -08002786 int error;
Jan Blunck6ac08c32008-02-14 19:34:38 -08002787 struct path pwd, root;
Linus Torvalds552ce542007-02-13 12:08:18 -08002788 char *page = (char *) __get_free_page(GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790 if (!page)
2791 return -ENOMEM;
2792
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002793 get_fs_root_and_pwd(current->fs, &root, &pwd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Linus Torvalds552ce542007-02-13 12:08:18 -08002795 error = -ENOENT;
Nick Piggin949854d2011-01-07 17:49:37 +11002796 write_seqlock(&rename_lock);
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002797 if (!d_unlinked(pwd.dentry)) {
Linus Torvalds552ce542007-02-13 12:08:18 -08002798 unsigned long len;
Miklos Szeredi9d1bc6012008-03-27 13:06:21 +01002799 struct path tmp = root;
Miklos Szeredi8df9d1a2010-08-10 11:41:41 +02002800 char *cwd = page + PAGE_SIZE;
2801 int buflen = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Miklos Szeredi8df9d1a2010-08-10 11:41:41 +02002803 prepend(&cwd, &buflen, "\0", 1);
2804 error = prepend_path(&pwd, &tmp, &cwd, &buflen);
Nick Piggin949854d2011-01-07 17:49:37 +11002805 write_sequnlock(&rename_lock);
Linus Torvalds552ce542007-02-13 12:08:18 -08002806
Miklos Szeredi8df9d1a2010-08-10 11:41:41 +02002807 if (error)
Linus Torvalds552ce542007-02-13 12:08:18 -08002808 goto out;
2809
Miklos Szeredi8df9d1a2010-08-10 11:41:41 +02002810 /* Unreachable from current root */
2811 if (!path_equal(&tmp, &root)) {
2812 error = prepend_unreachable(&cwd, &buflen);
2813 if (error)
2814 goto out;
2815 }
2816
Linus Torvalds552ce542007-02-13 12:08:18 -08002817 error = -ERANGE;
2818 len = PAGE_SIZE + page - cwd;
2819 if (len <= size) {
2820 error = len;
2821 if (copy_to_user(buf, cwd, len))
2822 error = -EFAULT;
2823 }
Nick Piggin949854d2011-01-07 17:49:37 +11002824 } else {
2825 write_sequnlock(&rename_lock);
Nick Piggin949854d2011-01-07 17:49:37 +11002826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828out:
Jan Blunck6ac08c32008-02-14 19:34:38 -08002829 path_put(&pwd);
2830 path_put(&root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 free_page((unsigned long) page);
2832 return error;
2833}
2834
2835/*
2836 * Test whether new_dentry is a subdirectory of old_dentry.
2837 *
2838 * Trivially implemented using the dcache structure
2839 */
2840
2841/**
2842 * is_subdir - is new dentry a subdirectory of old_dentry
2843 * @new_dentry: new dentry
2844 * @old_dentry: old dentry
2845 *
2846 * Returns 1 if new_dentry is a subdirectory of the parent (at any depth).
2847 * Returns 0 otherwise.
2848 * Caller must ensure that "new_dentry" is pinned before calling is_subdir()
2849 */
2850
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002851int is_subdir(struct dentry *new_dentry, struct dentry *old_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
2853 int result;
Nick Piggin949854d2011-01-07 17:49:37 +11002854 unsigned seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002856 if (new_dentry == old_dentry)
2857 return 1;
2858
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002859 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 /* for restarting inner loop in case of seq retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 seq = read_seqbegin(&rename_lock);
Nick Piggin949854d2011-01-07 17:49:37 +11002862 /*
2863 * Need rcu_readlock to protect against the d_parent trashing
2864 * due to d_move
2865 */
2866 rcu_read_lock();
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002867 if (d_ancestor(old_dentry, new_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 result = 1;
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002869 else
2870 result = 0;
Nick Piggin949854d2011-01-07 17:49:37 +11002871 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 } while (read_seqretry(&rename_lock, seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
2874 return result;
2875}
2876
Al Viro2096f752010-01-30 13:16:21 -05002877int path_is_under(struct path *path1, struct path *path2)
2878{
2879 struct vfsmount *mnt = path1->mnt;
2880 struct dentry *dentry = path1->dentry;
2881 int res;
Nick Piggin99b7db72010-08-18 04:37:39 +10002882
2883 br_read_lock(vfsmount_lock);
Al Viro2096f752010-01-30 13:16:21 -05002884 if (mnt != path2->mnt) {
2885 for (;;) {
2886 if (mnt->mnt_parent == mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +10002887 br_read_unlock(vfsmount_lock);
Al Viro2096f752010-01-30 13:16:21 -05002888 return 0;
2889 }
2890 if (mnt->mnt_parent == path2->mnt)
2891 break;
2892 mnt = mnt->mnt_parent;
2893 }
2894 dentry = mnt->mnt_mountpoint;
2895 }
2896 res = is_subdir(dentry, path2->dentry);
Nick Piggin99b7db72010-08-18 04:37:39 +10002897 br_read_unlock(vfsmount_lock);
Al Viro2096f752010-01-30 13:16:21 -05002898 return res;
2899}
2900EXPORT_SYMBOL(path_is_under);
2901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902void d_genocide(struct dentry *root)
2903{
Nick Piggin949854d2011-01-07 17:49:37 +11002904 struct dentry *this_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 struct list_head *next;
Nick Piggin949854d2011-01-07 17:49:37 +11002906 unsigned seq;
Nick Piggin58db63d2011-01-07 17:49:39 +11002907 int locked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Nick Piggin949854d2011-01-07 17:49:37 +11002909 seq = read_seqbegin(&rename_lock);
Nick Piggin58db63d2011-01-07 17:49:39 +11002910again:
2911 this_parent = root;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002912 spin_lock(&this_parent->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913repeat:
2914 next = this_parent->d_subdirs.next;
2915resume:
2916 while (next != &this_parent->d_subdirs) {
2917 struct list_head *tmp = next;
Eric Dumazet5160ee62006-01-08 01:03:32 -08002918 struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 next = tmp->next;
Nick Piggin949854d2011-01-07 17:49:37 +11002920
Nick Pigginda502952011-01-07 17:49:33 +11002921 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
2922 if (d_unhashed(dentry) || !dentry->d_inode) {
2923 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 continue;
Nick Pigginda502952011-01-07 17:49:33 +11002925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 if (!list_empty(&dentry->d_subdirs)) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002927 spin_unlock(&this_parent->d_lock);
2928 spin_release(&dentry->d_lock.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 this_parent = dentry;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002930 spin_acquire(&this_parent->d_lock.dep_map, 0, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 goto repeat;
2932 }
Nick Piggin949854d2011-01-07 17:49:37 +11002933 if (!(dentry->d_flags & DCACHE_GENOCIDE)) {
2934 dentry->d_flags |= DCACHE_GENOCIDE;
2935 dentry->d_count--;
2936 }
Nick Pigginb7ab39f2011-01-07 17:49:32 +11002937 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 }
2939 if (this_parent != root) {
Linus Torvaldsc826cb72011-03-15 15:29:21 -07002940 struct dentry *child = this_parent;
Nick Piggin949854d2011-01-07 17:49:37 +11002941 if (!(this_parent->d_flags & DCACHE_GENOCIDE)) {
2942 this_parent->d_flags |= DCACHE_GENOCIDE;
2943 this_parent->d_count--;
2944 }
Linus Torvaldsc826cb72011-03-15 15:29:21 -07002945 this_parent = try_to_ascend(this_parent, locked, seq);
2946 if (!this_parent)
Nick Piggin949854d2011-01-07 17:49:37 +11002947 goto rename_retry;
Nick Piggin949854d2011-01-07 17:49:37 +11002948 next = child->d_u.d_child.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 goto resume;
2950 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11002951 spin_unlock(&this_parent->d_lock);
Nick Piggin58db63d2011-01-07 17:49:39 +11002952 if (!locked && read_seqretry(&rename_lock, seq))
Nick Piggin949854d2011-01-07 17:49:37 +11002953 goto rename_retry;
Nick Piggin58db63d2011-01-07 17:49:39 +11002954 if (locked)
2955 write_sequnlock(&rename_lock);
2956 return;
2957
2958rename_retry:
2959 locked = 1;
2960 write_seqlock(&rename_lock);
2961 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962}
2963
2964/**
2965 * find_inode_number - check for dentry with name
2966 * @dir: directory to check
2967 * @name: Name to find.
2968 *
2969 * Check whether a dentry already exists for the given name,
2970 * and return the inode number if it has an inode. Otherwise
2971 * 0 is returned.
2972 *
2973 * This routine is used to post-process directory listings for
2974 * filesystems using synthetic inode numbers, and is necessary
2975 * to keep getcwd() working.
2976 */
2977
2978ino_t find_inode_number(struct dentry *dir, struct qstr *name)
2979{
2980 struct dentry * dentry;
2981 ino_t ino = 0;
2982
Eric W. Biederman3e7e2412006-03-31 02:31:43 -08002983 dentry = d_hash_and_lookup(dir, name);
2984 if (dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 if (dentry->d_inode)
2986 ino = dentry->d_inode->i_ino;
2987 dput(dentry);
2988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 return ino;
2990}
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07002991EXPORT_SYMBOL(find_inode_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
2993static __initdata unsigned long dhash_entries;
2994static int __init set_dhash_entries(char *str)
2995{
2996 if (!str)
2997 return 0;
2998 dhash_entries = simple_strtoul(str, &str, 0);
2999 return 1;
3000}
3001__setup("dhash_entries=", set_dhash_entries);
3002
3003static void __init dcache_init_early(void)
3004{
3005 int loop;
3006
3007 /* If hashes are distributed across NUMA nodes, defer
3008 * hash allocation until vmalloc space is available.
3009 */
3010 if (hashdist)
3011 return;
3012
3013 dentry_hashtable =
3014 alloc_large_system_hash("Dentry cache",
Linus Torvaldsb07ad992011-04-23 22:32:03 -07003015 sizeof(struct hlist_bl_head),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 dhash_entries,
3017 13,
3018 HASH_EARLY,
3019 &d_hash_shift,
3020 &d_hash_mask,
3021 0);
3022
3023 for (loop = 0; loop < (1 << d_hash_shift); loop++)
Linus Torvaldsb07ad992011-04-23 22:32:03 -07003024 INIT_HLIST_BL_HEAD(dentry_hashtable + loop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
Denis Cheng74bf17c2007-10-16 23:26:30 -07003027static void __init dcache_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
3029 int loop;
3030
3031 /*
3032 * A constructor could be added for stable state like the lists,
3033 * but it is probably not worth it because of the cache nature
3034 * of the dcache.
3035 */
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003036 dentry_cache = KMEM_CACHE(dentry,
3037 SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|SLAB_MEM_SPREAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Rusty Russell8e1f9362007-07-17 04:03:17 -07003039 register_shrinker(&dcache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
3041 /* Hash may have been set up in dcache_init_early */
3042 if (!hashdist)
3043 return;
3044
3045 dentry_hashtable =
3046 alloc_large_system_hash("Dentry cache",
Linus Torvaldsb07ad992011-04-23 22:32:03 -07003047 sizeof(struct hlist_bl_head),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 dhash_entries,
3049 13,
3050 0,
3051 &d_hash_shift,
3052 &d_hash_mask,
3053 0);
3054
3055 for (loop = 0; loop < (1 << d_hash_shift); loop++)
Linus Torvaldsb07ad992011-04-23 22:32:03 -07003056 INIT_HLIST_BL_HEAD(dentry_hashtable + loop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057}
3058
3059/* SLAB cache for __getname() consumers */
Christoph Lametere18b8902006-12-06 20:33:20 -08003060struct kmem_cache *names_cachep __read_mostly;
H Hartley Sweetenec4f8602010-01-05 13:45:18 -07003061EXPORT_SYMBOL(names_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063EXPORT_SYMBOL(d_genocide);
3064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065void __init vfs_caches_init_early(void)
3066{
3067 dcache_init_early();
3068 inode_init_early();
3069}
3070
3071void __init vfs_caches_init(unsigned long mempages)
3072{
3073 unsigned long reserve;
3074
3075 /* Base hash sizes on available memory, with a reserve equal to
3076 150% of current kernel size */
3077
3078 reserve = min((mempages - nr_free_pages()) * 3/2, mempages - 1);
3079 mempages -= reserve;
3080
3081 names_cachep = kmem_cache_create("names_cache", PATH_MAX, 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09003082 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
Denis Cheng74bf17c2007-10-16 23:26:30 -07003084 dcache_init();
3085 inode_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 files_init(mempages);
Denis Cheng74bf17c2007-10-16 23:26:30 -07003087 mnt_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 bdev_cache_init();
3089 chrdev_init();
3090}