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