]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/kernfs/dir.c
kernfs: remove KERNFS_REMOVED
[mirror_ubuntu-artful-kernel.git] / fs / kernfs / dir.c
CommitLineData
b8441ed2
TH
1/*
2 * fs/kernfs/dir.c - kernfs directory implementation
3 *
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
6 * Copyright (c) 2007, 2013 Tejun Heo <tj@kernel.org>
7 *
8 * This file is released under the GPLv2.
9 */
fd7b9f7b 10
abd54f02 11#include <linux/sched.h>
fd7b9f7b
TH
12#include <linux/fs.h>
13#include <linux/namei.h>
14#include <linux/idr.h>
15#include <linux/slab.h>
16#include <linux/security.h>
17#include <linux/hash.h>
18
19#include "kernfs-internal.h"
20
a797bfc3 21DEFINE_MUTEX(kernfs_mutex);
fd7b9f7b 22
adc5e8b5 23#define rb_to_kn(X) rb_entry((X), struct kernfs_node, rb)
fd7b9f7b 24
81c173cb
TH
25static bool kernfs_active(struct kernfs_node *kn)
26{
27 lockdep_assert_held(&kernfs_mutex);
28 return atomic_read(&kn->active) >= 0;
29}
30
182fd64b
TH
31static bool kernfs_lockdep(struct kernfs_node *kn)
32{
33#ifdef CONFIG_DEBUG_LOCK_ALLOC
34 return kn->flags & KERNFS_LOCKDEP;
35#else
36 return false;
37#endif
38}
39
fd7b9f7b 40/**
c637b8ac 41 * kernfs_name_hash
fd7b9f7b
TH
42 * @name: Null terminated string to hash
43 * @ns: Namespace tag to hash
44 *
45 * Returns 31 bit hash of ns + name (so it fits in an off_t )
46 */
c637b8ac 47static unsigned int kernfs_name_hash(const char *name, const void *ns)
fd7b9f7b
TH
48{
49 unsigned long hash = init_name_hash();
50 unsigned int len = strlen(name);
51 while (len--)
52 hash = partial_name_hash(*name++, hash);
53 hash = (end_name_hash(hash) ^ hash_ptr((void *)ns, 31));
54 hash &= 0x7fffffffU;
55 /* Reserve hash numbers 0, 1 and INT_MAX for magic directory entries */
56 if (hash < 1)
57 hash += 2;
58 if (hash >= INT_MAX)
59 hash = INT_MAX - 1;
60 return hash;
61}
62
c637b8ac
TH
63static int kernfs_name_compare(unsigned int hash, const char *name,
64 const void *ns, const struct kernfs_node *kn)
fd7b9f7b 65{
adc5e8b5
TH
66 if (hash != kn->hash)
67 return hash - kn->hash;
68 if (ns != kn->ns)
69 return ns - kn->ns;
70 return strcmp(name, kn->name);
fd7b9f7b
TH
71}
72
c637b8ac
TH
73static int kernfs_sd_compare(const struct kernfs_node *left,
74 const struct kernfs_node *right)
fd7b9f7b 75{
c637b8ac 76 return kernfs_name_compare(left->hash, left->name, left->ns, right);
fd7b9f7b
TH
77}
78
79/**
c637b8ac 80 * kernfs_link_sibling - link kernfs_node into sibling rbtree
324a56e1 81 * @kn: kernfs_node of interest
fd7b9f7b 82 *
324a56e1 83 * Link @kn into its sibling rbtree which starts from
adc5e8b5 84 * @kn->parent->dir.children.
fd7b9f7b
TH
85 *
86 * Locking:
a797bfc3 87 * mutex_lock(kernfs_mutex)
fd7b9f7b
TH
88 *
89 * RETURNS:
90 * 0 on susccess -EEXIST on failure.
91 */
c637b8ac 92static int kernfs_link_sibling(struct kernfs_node *kn)
fd7b9f7b 93{
adc5e8b5 94 struct rb_node **node = &kn->parent->dir.children.rb_node;
fd7b9f7b
TH
95 struct rb_node *parent = NULL;
96
df23fc39 97 if (kernfs_type(kn) == KERNFS_DIR)
adc5e8b5 98 kn->parent->dir.subdirs++;
fd7b9f7b
TH
99
100 while (*node) {
324a56e1 101 struct kernfs_node *pos;
fd7b9f7b
TH
102 int result;
103
324a56e1 104 pos = rb_to_kn(*node);
fd7b9f7b 105 parent = *node;
c637b8ac 106 result = kernfs_sd_compare(kn, pos);
fd7b9f7b 107 if (result < 0)
adc5e8b5 108 node = &pos->rb.rb_left;
fd7b9f7b 109 else if (result > 0)
adc5e8b5 110 node = &pos->rb.rb_right;
fd7b9f7b
TH
111 else
112 return -EEXIST;
113 }
114 /* add new node and rebalance the tree */
adc5e8b5
TH
115 rb_link_node(&kn->rb, parent, node);
116 rb_insert_color(&kn->rb, &kn->parent->dir.children);
fd7b9f7b
TH
117 return 0;
118}
119
120/**
c637b8ac 121 * kernfs_unlink_sibling - unlink kernfs_node from sibling rbtree
324a56e1 122 * @kn: kernfs_node of interest
fd7b9f7b 123 *
35beab06
TH
124 * Try to unlink @kn from its sibling rbtree which starts from
125 * kn->parent->dir.children. Returns %true if @kn was actually
126 * removed, %false if @kn wasn't on the rbtree.
fd7b9f7b
TH
127 *
128 * Locking:
a797bfc3 129 * mutex_lock(kernfs_mutex)
fd7b9f7b 130 */
35beab06 131static bool kernfs_unlink_sibling(struct kernfs_node *kn)
fd7b9f7b 132{
35beab06
TH
133 if (RB_EMPTY_NODE(&kn->rb))
134 return false;
135
df23fc39 136 if (kernfs_type(kn) == KERNFS_DIR)
adc5e8b5 137 kn->parent->dir.subdirs--;
fd7b9f7b 138
adc5e8b5 139 rb_erase(&kn->rb, &kn->parent->dir.children);
35beab06
TH
140 RB_CLEAR_NODE(&kn->rb);
141 return true;
fd7b9f7b
TH
142}
143
144/**
c637b8ac 145 * kernfs_get_active - get an active reference to kernfs_node
324a56e1 146 * @kn: kernfs_node to get an active reference to
fd7b9f7b 147 *
324a56e1 148 * Get an active reference of @kn. This function is noop if @kn
fd7b9f7b
TH
149 * is NULL.
150 *
151 * RETURNS:
324a56e1 152 * Pointer to @kn on success, NULL on failure.
fd7b9f7b 153 */
c637b8ac 154struct kernfs_node *kernfs_get_active(struct kernfs_node *kn)
fd7b9f7b 155{
324a56e1 156 if (unlikely(!kn))
fd7b9f7b
TH
157 return NULL;
158
f4b3e631
GKH
159 if (!atomic_inc_unless_negative(&kn->active))
160 return NULL;
895a068a 161
182fd64b 162 if (kernfs_lockdep(kn))
f4b3e631
GKH
163 rwsem_acquire_read(&kn->dep_map, 0, 1, _RET_IP_);
164 return kn;
fd7b9f7b
TH
165}
166
167/**
c637b8ac 168 * kernfs_put_active - put an active reference to kernfs_node
324a56e1 169 * @kn: kernfs_node to put an active reference to
fd7b9f7b 170 *
324a56e1 171 * Put an active reference to @kn. This function is noop if @kn
fd7b9f7b
TH
172 * is NULL.
173 */
c637b8ac 174void kernfs_put_active(struct kernfs_node *kn)
fd7b9f7b 175{
abd54f02 176 struct kernfs_root *root = kernfs_root(kn);
fd7b9f7b
TH
177 int v;
178
324a56e1 179 if (unlikely(!kn))
fd7b9f7b
TH
180 return;
181
182fd64b 182 if (kernfs_lockdep(kn))
324a56e1 183 rwsem_release(&kn->dep_map, 1, _RET_IP_);
adc5e8b5 184 v = atomic_dec_return(&kn->active);
df23fc39 185 if (likely(v != KN_DEACTIVATED_BIAS))
fd7b9f7b
TH
186 return;
187
abd54f02 188 wake_up_all(&root->deactivate_waitq);
fd7b9f7b
TH
189}
190
191/**
81c173cb
TH
192 * kernfs_drain - drain kernfs_node
193 * @kn: kernfs_node to drain
fd7b9f7b 194 *
81c173cb
TH
195 * Drain existing usages and nuke all existing mmaps of @kn. Mutiple
196 * removers may invoke this function concurrently on @kn and all will
197 * return after draining is complete.
fd7b9f7b 198 */
81c173cb 199static void kernfs_drain(struct kernfs_node *kn)
35beab06 200 __releases(&kernfs_mutex) __acquires(&kernfs_mutex)
fd7b9f7b 201{
abd54f02 202 struct kernfs_root *root = kernfs_root(kn);
fd7b9f7b 203
35beab06 204 lockdep_assert_held(&kernfs_mutex);
81c173cb 205 WARN_ON_ONCE(kernfs_active(kn));
ea1c472d 206
35beab06 207 mutex_unlock(&kernfs_mutex);
abd54f02 208
182fd64b 209 if (kernfs_lockdep(kn)) {
35beab06
TH
210 rwsem_acquire(&kn->dep_map, 0, 0, _RET_IP_);
211 if (atomic_read(&kn->active) != KN_DEACTIVATED_BIAS)
212 lock_contended(&kn->dep_map, _RET_IP_);
213 }
abd54f02 214
35beab06 215 /* but everyone should wait for draining */
abd54f02
TH
216 wait_event(root->deactivate_waitq,
217 atomic_read(&kn->active) == KN_DEACTIVATED_BIAS);
fd7b9f7b 218
182fd64b 219 if (kernfs_lockdep(kn)) {
a6607930
TH
220 lock_acquired(&kn->dep_map, _RET_IP_);
221 rwsem_release(&kn->dep_map, 1, _RET_IP_);
222 }
35beab06 223
ccf02aaf
TH
224 kernfs_unmap_bin_file(kn);
225
35beab06 226 mutex_lock(&kernfs_mutex);
fd7b9f7b
TH
227}
228
fd7b9f7b 229/**
324a56e1
TH
230 * kernfs_get - get a reference count on a kernfs_node
231 * @kn: the target kernfs_node
fd7b9f7b 232 */
324a56e1 233void kernfs_get(struct kernfs_node *kn)
fd7b9f7b 234{
324a56e1 235 if (kn) {
adc5e8b5
TH
236 WARN_ON(!atomic_read(&kn->count));
237 atomic_inc(&kn->count);
fd7b9f7b
TH
238 }
239}
240EXPORT_SYMBOL_GPL(kernfs_get);
241
242/**
324a56e1
TH
243 * kernfs_put - put a reference count on a kernfs_node
244 * @kn: the target kernfs_node
fd7b9f7b 245 *
324a56e1 246 * Put a reference count of @kn and destroy it if it reached zero.
fd7b9f7b 247 */
324a56e1 248void kernfs_put(struct kernfs_node *kn)
fd7b9f7b 249{
324a56e1 250 struct kernfs_node *parent;
ba7443bc 251 struct kernfs_root *root;
fd7b9f7b 252
adc5e8b5 253 if (!kn || !atomic_dec_and_test(&kn->count))
fd7b9f7b 254 return;
324a56e1 255 root = kernfs_root(kn);
fd7b9f7b 256 repeat:
81c173cb
TH
257 /*
258 * Moving/renaming is always done while holding reference.
adc5e8b5 259 * kn->parent won't change beneath us.
fd7b9f7b 260 */
adc5e8b5 261 parent = kn->parent;
fd7b9f7b 262
81c173cb
TH
263 WARN_ONCE(atomic_read(&kn->active) != KN_DEACTIVATED_BIAS,
264 "kernfs_put: %s/%s: released with incorrect active_ref %d\n",
265 parent ? parent->name : "", kn->name, atomic_read(&kn->active));
324a56e1 266
df23fc39 267 if (kernfs_type(kn) == KERNFS_LINK)
adc5e8b5 268 kernfs_put(kn->symlink.target_kn);
2063d608 269 if (!(kn->flags & KERNFS_STATIC_NAME))
adc5e8b5
TH
270 kfree(kn->name);
271 if (kn->iattr) {
272 if (kn->iattr->ia_secdata)
273 security_release_secctx(kn->iattr->ia_secdata,
274 kn->iattr->ia_secdata_len);
275 simple_xattrs_free(&kn->iattr->xattrs);
2322392b 276 }
adc5e8b5
TH
277 kfree(kn->iattr);
278 ida_simple_remove(&root->ino_ida, kn->ino);
a797bfc3 279 kmem_cache_free(kernfs_node_cache, kn);
fd7b9f7b 280
324a56e1
TH
281 kn = parent;
282 if (kn) {
adc5e8b5 283 if (atomic_dec_and_test(&kn->count))
ba7443bc
TH
284 goto repeat;
285 } else {
324a56e1 286 /* just released the root kn, free @root too */
bc755553 287 ida_destroy(&root->ino_ida);
ba7443bc
TH
288 kfree(root);
289 }
fd7b9f7b
TH
290}
291EXPORT_SYMBOL_GPL(kernfs_put);
292
c637b8ac 293static int kernfs_dop_revalidate(struct dentry *dentry, unsigned int flags)
fd7b9f7b 294{
324a56e1 295 struct kernfs_node *kn;
fd7b9f7b
TH
296
297 if (flags & LOOKUP_RCU)
298 return -ECHILD;
299
19bbb926
TH
300 /* Always perform fresh lookup for negatives */
301 if (!dentry->d_inode)
302 goto out_bad_unlocked;
303
324a56e1 304 kn = dentry->d_fsdata;
a797bfc3 305 mutex_lock(&kernfs_mutex);
fd7b9f7b 306
81c173cb
TH
307 /* The kernfs node has been deactivated */
308 if (!kernfs_active(kn))
fd7b9f7b
TH
309 goto out_bad;
310
c637b8ac 311 /* The kernfs node has been moved? */
adc5e8b5 312 if (dentry->d_parent->d_fsdata != kn->parent)
fd7b9f7b
TH
313 goto out_bad;
314
c637b8ac 315 /* The kernfs node has been renamed */
adc5e8b5 316 if (strcmp(dentry->d_name.name, kn->name) != 0)
fd7b9f7b
TH
317 goto out_bad;
318
c637b8ac 319 /* The kernfs node has been moved to a different namespace */
adc5e8b5 320 if (kn->parent && kernfs_ns_enabled(kn->parent) &&
c525aadd 321 kernfs_info(dentry->d_sb)->ns != kn->ns)
fd7b9f7b
TH
322 goto out_bad;
323
a797bfc3 324 mutex_unlock(&kernfs_mutex);
fd7b9f7b
TH
325out_valid:
326 return 1;
327out_bad:
a797bfc3 328 mutex_unlock(&kernfs_mutex);
19bbb926
TH
329out_bad_unlocked:
330 /*
331 * @dentry doesn't match the underlying kernfs node, drop the
332 * dentry and force lookup. If we have submounts we must allow the
333 * vfs caches to lie about the state of the filesystem to prevent
334 * leaks and other nasty things, so use check_submounts_and_drop()
335 * instead of d_drop().
fd7b9f7b
TH
336 */
337 if (check_submounts_and_drop(dentry) != 0)
338 goto out_valid;
339
340 return 0;
341}
342
c637b8ac 343static void kernfs_dop_release(struct dentry *dentry)
fd7b9f7b
TH
344{
345 kernfs_put(dentry->d_fsdata);
346}
347
a797bfc3 348const struct dentry_operations kernfs_dops = {
c637b8ac 349 .d_revalidate = kernfs_dop_revalidate,
c637b8ac 350 .d_release = kernfs_dop_release,
fd7b9f7b
TH
351};
352
db4aad20
TH
353static struct kernfs_node *__kernfs_new_node(struct kernfs_root *root,
354 const char *name, umode_t mode,
355 unsigned flags)
fd7b9f7b
TH
356{
357 char *dup_name = NULL;
324a56e1 358 struct kernfs_node *kn;
bc755553 359 int ret;
fd7b9f7b 360
2063d608 361 if (!(flags & KERNFS_STATIC_NAME)) {
fd7b9f7b
TH
362 name = dup_name = kstrdup(name, GFP_KERNEL);
363 if (!name)
364 return NULL;
365 }
366
a797bfc3 367 kn = kmem_cache_zalloc(kernfs_node_cache, GFP_KERNEL);
324a56e1 368 if (!kn)
fd7b9f7b
TH
369 goto err_out1;
370
bc755553
TH
371 ret = ida_simple_get(&root->ino_ida, 1, 0, GFP_KERNEL);
372 if (ret < 0)
fd7b9f7b 373 goto err_out2;
adc5e8b5 374 kn->ino = ret;
fd7b9f7b 375
adc5e8b5 376 atomic_set(&kn->count, 1);
81c173cb 377 atomic_set(&kn->active, KN_DEACTIVATED_BIAS);
35beab06 378 RB_CLEAR_NODE(&kn->rb);
fd7b9f7b 379
adc5e8b5
TH
380 kn->name = name;
381 kn->mode = mode;
81c173cb 382 kn->flags = flags;
fd7b9f7b 383
324a56e1 384 return kn;
fd7b9f7b
TH
385
386 err_out2:
a797bfc3 387 kmem_cache_free(kernfs_node_cache, kn);
fd7b9f7b
TH
388 err_out1:
389 kfree(dup_name);
390 return NULL;
391}
392
db4aad20
TH
393struct kernfs_node *kernfs_new_node(struct kernfs_node *parent,
394 const char *name, umode_t mode,
395 unsigned flags)
396{
397 struct kernfs_node *kn;
398
399 kn = __kernfs_new_node(kernfs_root(parent), name, mode, flags);
400 if (kn) {
401 kernfs_get(parent);
402 kn->parent = parent;
403 }
404 return kn;
405}
406
fd7b9f7b 407/**
c637b8ac 408 * kernfs_add_one - add kernfs_node to parent without warning
324a56e1 409 * @kn: kernfs_node to be added
fd7b9f7b 410 *
db4aad20
TH
411 * The caller must already have initialized @kn->parent. This
412 * function increments nlink of the parent's inode if @kn is a
413 * directory and link into the children list of the parent.
fd7b9f7b 414 *
fd7b9f7b
TH
415 * RETURNS:
416 * 0 on success, -EEXIST if entry with the given name already
417 * exists.
418 */
988cd7af 419int kernfs_add_one(struct kernfs_node *kn)
fd7b9f7b 420{
db4aad20 421 struct kernfs_node *parent = kn->parent;
c525aadd 422 struct kernfs_iattrs *ps_iattr;
988cd7af 423 bool has_ns;
fd7b9f7b
TH
424 int ret;
425
988cd7af
TH
426 mutex_lock(&kernfs_mutex);
427
428 ret = -EINVAL;
429 has_ns = kernfs_ns_enabled(parent);
430 if (WARN(has_ns != (bool)kn->ns, KERN_WARNING "kernfs: ns %s in '%s' for '%s'\n",
431 has_ns ? "required" : "invalid", parent->name, kn->name))
432 goto out_unlock;
fd7b9f7b 433
df23fc39 434 if (kernfs_type(parent) != KERNFS_DIR)
988cd7af 435 goto out_unlock;
fd7b9f7b 436
988cd7af 437 ret = -ENOENT;
81c173cb 438 if (!kernfs_active(parent))
988cd7af 439 goto out_unlock;
798c75a0 440
c637b8ac 441 kn->hash = kernfs_name_hash(kn->name, kn->ns);
fd7b9f7b 442
c637b8ac 443 ret = kernfs_link_sibling(kn);
fd7b9f7b 444 if (ret)
988cd7af 445 goto out_unlock;
fd7b9f7b
TH
446
447 /* Update timestamps on the parent */
adc5e8b5 448 ps_iattr = parent->iattr;
fd7b9f7b
TH
449 if (ps_iattr) {
450 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
451 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
452 }
453
454 /* Mark the entry added into directory tree */
81c173cb 455 atomic_sub(KN_DEACTIVATED_BIAS, &kn->active);
988cd7af
TH
456 ret = 0;
457out_unlock:
a797bfc3 458 mutex_unlock(&kernfs_mutex);
988cd7af 459 return ret;
fd7b9f7b
TH
460}
461
462/**
324a56e1
TH
463 * kernfs_find_ns - find kernfs_node with the given name
464 * @parent: kernfs_node to search under
fd7b9f7b
TH
465 * @name: name to look for
466 * @ns: the namespace tag to use
467 *
324a56e1
TH
468 * Look for kernfs_node with name @name under @parent. Returns pointer to
469 * the found kernfs_node on success, %NULL on failure.
fd7b9f7b 470 */
324a56e1
TH
471static struct kernfs_node *kernfs_find_ns(struct kernfs_node *parent,
472 const unsigned char *name,
473 const void *ns)
fd7b9f7b 474{
adc5e8b5 475 struct rb_node *node = parent->dir.children.rb_node;
ac9bba03 476 bool has_ns = kernfs_ns_enabled(parent);
fd7b9f7b
TH
477 unsigned int hash;
478
a797bfc3 479 lockdep_assert_held(&kernfs_mutex);
fd7b9f7b
TH
480
481 if (has_ns != (bool)ns) {
c637b8ac 482 WARN(1, KERN_WARNING "kernfs: ns %s in '%s' for '%s'\n",
adc5e8b5 483 has_ns ? "required" : "invalid", parent->name, name);
fd7b9f7b
TH
484 return NULL;
485 }
486
c637b8ac 487 hash = kernfs_name_hash(name, ns);
fd7b9f7b 488 while (node) {
324a56e1 489 struct kernfs_node *kn;
fd7b9f7b
TH
490 int result;
491
324a56e1 492 kn = rb_to_kn(node);
c637b8ac 493 result = kernfs_name_compare(hash, name, ns, kn);
fd7b9f7b
TH
494 if (result < 0)
495 node = node->rb_left;
496 else if (result > 0)
497 node = node->rb_right;
498 else
324a56e1 499 return kn;
fd7b9f7b
TH
500 }
501 return NULL;
502}
503
504/**
324a56e1
TH
505 * kernfs_find_and_get_ns - find and get kernfs_node with the given name
506 * @parent: kernfs_node to search under
fd7b9f7b
TH
507 * @name: name to look for
508 * @ns: the namespace tag to use
509 *
324a56e1 510 * Look for kernfs_node with name @name under @parent and get a reference
fd7b9f7b 511 * if found. This function may sleep and returns pointer to the found
324a56e1 512 * kernfs_node on success, %NULL on failure.
fd7b9f7b 513 */
324a56e1
TH
514struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
515 const char *name, const void *ns)
fd7b9f7b 516{
324a56e1 517 struct kernfs_node *kn;
fd7b9f7b 518
a797bfc3 519 mutex_lock(&kernfs_mutex);
324a56e1
TH
520 kn = kernfs_find_ns(parent, name, ns);
521 kernfs_get(kn);
a797bfc3 522 mutex_unlock(&kernfs_mutex);
fd7b9f7b 523
324a56e1 524 return kn;
fd7b9f7b
TH
525}
526EXPORT_SYMBOL_GPL(kernfs_find_and_get_ns);
527
ba7443bc
TH
528/**
529 * kernfs_create_root - create a new kernfs hierarchy
80b9bbef 530 * @kdops: optional directory syscall operations for the hierarchy
ba7443bc
TH
531 * @priv: opaque data associated with the new directory
532 *
533 * Returns the root of the new hierarchy on success, ERR_PTR() value on
534 * failure.
535 */
80b9bbef 536struct kernfs_root *kernfs_create_root(struct kernfs_dir_ops *kdops, void *priv)
ba7443bc
TH
537{
538 struct kernfs_root *root;
324a56e1 539 struct kernfs_node *kn;
ba7443bc
TH
540
541 root = kzalloc(sizeof(*root), GFP_KERNEL);
542 if (!root)
543 return ERR_PTR(-ENOMEM);
544
bc755553
TH
545 ida_init(&root->ino_ida);
546
db4aad20
TH
547 kn = __kernfs_new_node(root, "", S_IFDIR | S_IRUGO | S_IXUGO,
548 KERNFS_DIR);
324a56e1 549 if (!kn) {
bc755553 550 ida_destroy(&root->ino_ida);
ba7443bc
TH
551 kfree(root);
552 return ERR_PTR(-ENOMEM);
553 }
554
81c173cb 555 atomic_sub(KN_DEACTIVATED_BIAS, &kn->active);
324a56e1 556 kn->priv = priv;
adc5e8b5 557 kn->dir.root = root;
ba7443bc 558
80b9bbef 559 root->dir_ops = kdops;
324a56e1 560 root->kn = kn;
abd54f02 561 init_waitqueue_head(&root->deactivate_waitq);
ba7443bc
TH
562
563 return root;
564}
565
566/**
567 * kernfs_destroy_root - destroy a kernfs hierarchy
568 * @root: root of the hierarchy to destroy
569 *
570 * Destroy the hierarchy anchored at @root by removing all existing
571 * directories and destroying @root.
572 */
573void kernfs_destroy_root(struct kernfs_root *root)
574{
324a56e1 575 kernfs_remove(root->kn); /* will also free @root */
ba7443bc
TH
576}
577
fd7b9f7b
TH
578/**
579 * kernfs_create_dir_ns - create a directory
580 * @parent: parent in which to create a new directory
581 * @name: name of the new directory
bb8b9d09 582 * @mode: mode of the new directory
fd7b9f7b
TH
583 * @priv: opaque data associated with the new directory
584 * @ns: optional namespace tag of the directory
585 *
586 * Returns the created node on success, ERR_PTR() value on failure.
587 */
324a56e1 588struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
bb8b9d09
TH
589 const char *name, umode_t mode,
590 void *priv, const void *ns)
fd7b9f7b 591{
324a56e1 592 struct kernfs_node *kn;
fd7b9f7b
TH
593 int rc;
594
595 /* allocate */
db4aad20 596 kn = kernfs_new_node(parent, name, mode | S_IFDIR, KERNFS_DIR);
324a56e1 597 if (!kn)
fd7b9f7b
TH
598 return ERR_PTR(-ENOMEM);
599
adc5e8b5
TH
600 kn->dir.root = parent->dir.root;
601 kn->ns = ns;
324a56e1 602 kn->priv = priv;
fd7b9f7b
TH
603
604 /* link in */
988cd7af 605 rc = kernfs_add_one(kn);
fd7b9f7b 606 if (!rc)
324a56e1 607 return kn;
fd7b9f7b 608
324a56e1 609 kernfs_put(kn);
fd7b9f7b
TH
610 return ERR_PTR(rc);
611}
612
c637b8ac
TH
613static struct dentry *kernfs_iop_lookup(struct inode *dir,
614 struct dentry *dentry,
615 unsigned int flags)
fd7b9f7b 616{
19bbb926 617 struct dentry *ret;
324a56e1
TH
618 struct kernfs_node *parent = dentry->d_parent->d_fsdata;
619 struct kernfs_node *kn;
fd7b9f7b
TH
620 struct inode *inode;
621 const void *ns = NULL;
622
a797bfc3 623 mutex_lock(&kernfs_mutex);
fd7b9f7b 624
324a56e1 625 if (kernfs_ns_enabled(parent))
c525aadd 626 ns = kernfs_info(dir->i_sb)->ns;
fd7b9f7b 627
324a56e1 628 kn = kernfs_find_ns(parent, dentry->d_name.name, ns);
fd7b9f7b
TH
629
630 /* no such entry */
324a56e1 631 if (!kn) {
19bbb926 632 ret = NULL;
fd7b9f7b
TH
633 goto out_unlock;
634 }
324a56e1
TH
635 kernfs_get(kn);
636 dentry->d_fsdata = kn;
fd7b9f7b
TH
637
638 /* attach dentry and inode */
c637b8ac 639 inode = kernfs_get_inode(dir->i_sb, kn);
fd7b9f7b
TH
640 if (!inode) {
641 ret = ERR_PTR(-ENOMEM);
642 goto out_unlock;
643 }
644
645 /* instantiate and hash dentry */
646 ret = d_materialise_unique(dentry, inode);
647 out_unlock:
a797bfc3 648 mutex_unlock(&kernfs_mutex);
fd7b9f7b
TH
649 return ret;
650}
651
80b9bbef
TH
652static int kernfs_iop_mkdir(struct inode *dir, struct dentry *dentry,
653 umode_t mode)
654{
655 struct kernfs_node *parent = dir->i_private;
656 struct kernfs_dir_ops *kdops = kernfs_root(parent)->dir_ops;
657
658 if (!kdops || !kdops->mkdir)
659 return -EPERM;
660
661 return kdops->mkdir(parent, dentry->d_name.name, mode);
662}
663
664static int kernfs_iop_rmdir(struct inode *dir, struct dentry *dentry)
665{
666 struct kernfs_node *kn = dentry->d_fsdata;
667 struct kernfs_dir_ops *kdops = kernfs_root(kn)->dir_ops;
668
669 if (!kdops || !kdops->rmdir)
670 return -EPERM;
671
672 return kdops->rmdir(kn);
673}
674
675static int kernfs_iop_rename(struct inode *old_dir, struct dentry *old_dentry,
676 struct inode *new_dir, struct dentry *new_dentry)
677{
678 struct kernfs_node *kn = old_dentry->d_fsdata;
679 struct kernfs_node *new_parent = new_dir->i_private;
680 struct kernfs_dir_ops *kdops = kernfs_root(kn)->dir_ops;
681
682 if (!kdops || !kdops->rename)
683 return -EPERM;
684
685 return kdops->rename(kn, new_parent, new_dentry->d_name.name);
686}
687
a797bfc3 688const struct inode_operations kernfs_dir_iops = {
c637b8ac
TH
689 .lookup = kernfs_iop_lookup,
690 .permission = kernfs_iop_permission,
691 .setattr = kernfs_iop_setattr,
692 .getattr = kernfs_iop_getattr,
693 .setxattr = kernfs_iop_setxattr,
694 .removexattr = kernfs_iop_removexattr,
695 .getxattr = kernfs_iop_getxattr,
696 .listxattr = kernfs_iop_listxattr,
80b9bbef
TH
697
698 .mkdir = kernfs_iop_mkdir,
699 .rmdir = kernfs_iop_rmdir,
700 .rename = kernfs_iop_rename,
fd7b9f7b
TH
701};
702
c637b8ac 703static struct kernfs_node *kernfs_leftmost_descendant(struct kernfs_node *pos)
fd7b9f7b 704{
324a56e1 705 struct kernfs_node *last;
fd7b9f7b
TH
706
707 while (true) {
708 struct rb_node *rbn;
709
710 last = pos;
711
df23fc39 712 if (kernfs_type(pos) != KERNFS_DIR)
fd7b9f7b
TH
713 break;
714
adc5e8b5 715 rbn = rb_first(&pos->dir.children);
fd7b9f7b
TH
716 if (!rbn)
717 break;
718
324a56e1 719 pos = rb_to_kn(rbn);
fd7b9f7b
TH
720 }
721
722 return last;
723}
724
725/**
c637b8ac 726 * kernfs_next_descendant_post - find the next descendant for post-order walk
fd7b9f7b 727 * @pos: the current position (%NULL to initiate traversal)
324a56e1 728 * @root: kernfs_node whose descendants to walk
fd7b9f7b
TH
729 *
730 * Find the next descendant to visit for post-order traversal of @root's
731 * descendants. @root is included in the iteration and the last node to be
732 * visited.
733 */
c637b8ac
TH
734static struct kernfs_node *kernfs_next_descendant_post(struct kernfs_node *pos,
735 struct kernfs_node *root)
fd7b9f7b
TH
736{
737 struct rb_node *rbn;
738
a797bfc3 739 lockdep_assert_held(&kernfs_mutex);
fd7b9f7b
TH
740
741 /* if first iteration, visit leftmost descendant which may be root */
742 if (!pos)
c637b8ac 743 return kernfs_leftmost_descendant(root);
fd7b9f7b
TH
744
745 /* if we visited @root, we're done */
746 if (pos == root)
747 return NULL;
748
749 /* if there's an unvisited sibling, visit its leftmost descendant */
adc5e8b5 750 rbn = rb_next(&pos->rb);
fd7b9f7b 751 if (rbn)
c637b8ac 752 return kernfs_leftmost_descendant(rb_to_kn(rbn));
fd7b9f7b
TH
753
754 /* no sibling left, visit parent */
adc5e8b5 755 return pos->parent;
fd7b9f7b
TH
756}
757
988cd7af 758static void __kernfs_remove(struct kernfs_node *kn)
fd7b9f7b 759{
35beab06
TH
760 struct kernfs_node *pos;
761
762 lockdep_assert_held(&kernfs_mutex);
fd7b9f7b 763
ce9b499c
GKH
764 if (!kn)
765 return;
766
c637b8ac 767 pr_debug("kernfs %s: removing\n", kn->name);
fd7b9f7b 768
81c173cb 769 /* prevent any new usage under @kn by deactivating all nodes */
35beab06
TH
770 pos = NULL;
771 while ((pos = kernfs_next_descendant_post(pos, kn)))
81c173cb
TH
772 if (kernfs_active(pos))
773 atomic_add(KN_DEACTIVATED_BIAS, &pos->active);
35beab06
TH
774
775 /* deactivate and unlink the subtree node-by-node */
fd7b9f7b 776 do {
35beab06
TH
777 pos = kernfs_leftmost_descendant(kn);
778
779 /*
81c173cb
TH
780 * kernfs_drain() drops kernfs_mutex temporarily and @pos's
781 * base ref could have been put by someone else by the time
782 * the function returns. Make sure it doesn't go away
783 * underneath us.
35beab06
TH
784 */
785 kernfs_get(pos);
786
81c173cb 787 kernfs_drain(pos);
35beab06
TH
788
789 /*
790 * kernfs_unlink_sibling() succeeds once per node. Use it
791 * to decide who's responsible for cleanups.
792 */
793 if (!pos->parent || kernfs_unlink_sibling(pos)) {
794 struct kernfs_iattrs *ps_iattr =
795 pos->parent ? pos->parent->iattr : NULL;
796
797 /* update timestamps on the parent */
798 if (ps_iattr) {
799 ps_iattr->ia_iattr.ia_ctime = CURRENT_TIME;
800 ps_iattr->ia_iattr.ia_mtime = CURRENT_TIME;
801 }
802
988cd7af 803 kernfs_put(pos);
35beab06
TH
804 }
805
806 kernfs_put(pos);
807 } while (pos != kn);
fd7b9f7b
TH
808}
809
810/**
324a56e1
TH
811 * kernfs_remove - remove a kernfs_node recursively
812 * @kn: the kernfs_node to remove
fd7b9f7b 813 *
324a56e1 814 * Remove @kn along with all its subdirectories and files.
fd7b9f7b 815 */
324a56e1 816void kernfs_remove(struct kernfs_node *kn)
fd7b9f7b 817{
988cd7af
TH
818 mutex_lock(&kernfs_mutex);
819 __kernfs_remove(kn);
820 mutex_unlock(&kernfs_mutex);
fd7b9f7b
TH
821}
822
823/**
324a56e1
TH
824 * kernfs_remove_by_name_ns - find a kernfs_node by name and remove it
825 * @parent: parent of the target
826 * @name: name of the kernfs_node to remove
827 * @ns: namespace tag of the kernfs_node to remove
fd7b9f7b 828 *
324a56e1
TH
829 * Look for the kernfs_node with @name and @ns under @parent and remove it.
830 * Returns 0 on success, -ENOENT if such entry doesn't exist.
fd7b9f7b 831 */
324a56e1 832int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
fd7b9f7b
TH
833 const void *ns)
834{
324a56e1 835 struct kernfs_node *kn;
fd7b9f7b 836
324a56e1 837 if (!parent) {
c637b8ac 838 WARN(1, KERN_WARNING "kernfs: can not remove '%s', no directory\n",
fd7b9f7b
TH
839 name);
840 return -ENOENT;
841 }
842
988cd7af 843 mutex_lock(&kernfs_mutex);
fd7b9f7b 844
324a56e1
TH
845 kn = kernfs_find_ns(parent, name, ns);
846 if (kn)
988cd7af 847 __kernfs_remove(kn);
fd7b9f7b 848
988cd7af 849 mutex_unlock(&kernfs_mutex);
fd7b9f7b 850
324a56e1 851 if (kn)
fd7b9f7b
TH
852 return 0;
853 else
854 return -ENOENT;
855}
856
857/**
858 * kernfs_rename_ns - move and rename a kernfs_node
324a56e1 859 * @kn: target node
fd7b9f7b
TH
860 * @new_parent: new parent to put @sd under
861 * @new_name: new name
862 * @new_ns: new namespace tag
863 */
324a56e1 864int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
fd7b9f7b
TH
865 const char *new_name, const void *new_ns)
866{
867 int error;
868
798c75a0
GKH
869 mutex_lock(&kernfs_mutex);
870
d0ae3d43 871 error = -ENOENT;
81c173cb 872 if (!kernfs_active(kn) || !kernfs_active(new_parent))
d0ae3d43
TH
873 goto out;
874
fd7b9f7b 875 error = 0;
adc5e8b5
TH
876 if ((kn->parent == new_parent) && (kn->ns == new_ns) &&
877 (strcmp(kn->name, new_name) == 0))
798c75a0 878 goto out; /* nothing to rename */
fd7b9f7b
TH
879
880 error = -EEXIST;
881 if (kernfs_find_ns(new_parent, new_name, new_ns))
798c75a0 882 goto out;
fd7b9f7b 883
324a56e1 884 /* rename kernfs_node */
adc5e8b5 885 if (strcmp(kn->name, new_name) != 0) {
fd7b9f7b
TH
886 error = -ENOMEM;
887 new_name = kstrdup(new_name, GFP_KERNEL);
888 if (!new_name)
798c75a0 889 goto out;
fd7b9f7b 890
47a52e91
TH
891 if (kn->flags & KERNFS_STATIC_NAME)
892 kn->flags &= ~KERNFS_STATIC_NAME;
893 else
894 kfree(kn->name);
895
adc5e8b5 896 kn->name = new_name;
fd7b9f7b
TH
897 }
898
899 /*
900 * Move to the appropriate place in the appropriate directories rbtree.
901 */
c637b8ac 902 kernfs_unlink_sibling(kn);
fd7b9f7b 903 kernfs_get(new_parent);
adc5e8b5
TH
904 kernfs_put(kn->parent);
905 kn->ns = new_ns;
c637b8ac 906 kn->hash = kernfs_name_hash(kn->name, kn->ns);
adc5e8b5 907 kn->parent = new_parent;
c637b8ac 908 kernfs_link_sibling(kn);
fd7b9f7b
TH
909
910 error = 0;
798c75a0 911 out:
a797bfc3 912 mutex_unlock(&kernfs_mutex);
fd7b9f7b
TH
913 return error;
914}
915
fd7b9f7b 916/* Relationship between s_mode and the DT_xxx types */
324a56e1 917static inline unsigned char dt_type(struct kernfs_node *kn)
fd7b9f7b 918{
adc5e8b5 919 return (kn->mode >> 12) & 15;
fd7b9f7b
TH
920}
921
c637b8ac 922static int kernfs_dir_fop_release(struct inode *inode, struct file *filp)
fd7b9f7b
TH
923{
924 kernfs_put(filp->private_data);
925 return 0;
926}
927
c637b8ac 928static struct kernfs_node *kernfs_dir_pos(const void *ns,
324a56e1 929 struct kernfs_node *parent, loff_t hash, struct kernfs_node *pos)
fd7b9f7b
TH
930{
931 if (pos) {
81c173cb 932 int valid = kernfs_active(pos) &&
798c75a0 933 pos->parent == parent && hash == pos->hash;
fd7b9f7b
TH
934 kernfs_put(pos);
935 if (!valid)
936 pos = NULL;
937 }
938 if (!pos && (hash > 1) && (hash < INT_MAX)) {
adc5e8b5 939 struct rb_node *node = parent->dir.children.rb_node;
fd7b9f7b 940 while (node) {
324a56e1 941 pos = rb_to_kn(node);
fd7b9f7b 942
adc5e8b5 943 if (hash < pos->hash)
fd7b9f7b 944 node = node->rb_left;
adc5e8b5 945 else if (hash > pos->hash)
fd7b9f7b
TH
946 node = node->rb_right;
947 else
948 break;
949 }
950 }
951 /* Skip over entries in the wrong namespace */
adc5e8b5
TH
952 while (pos && pos->ns != ns) {
953 struct rb_node *node = rb_next(&pos->rb);
fd7b9f7b
TH
954 if (!node)
955 pos = NULL;
956 else
324a56e1 957 pos = rb_to_kn(node);
fd7b9f7b
TH
958 }
959 return pos;
960}
961
c637b8ac 962static struct kernfs_node *kernfs_dir_next_pos(const void *ns,
324a56e1 963 struct kernfs_node *parent, ino_t ino, struct kernfs_node *pos)
fd7b9f7b 964{
c637b8ac 965 pos = kernfs_dir_pos(ns, parent, ino, pos);
fd7b9f7b
TH
966 if (pos)
967 do {
adc5e8b5 968 struct rb_node *node = rb_next(&pos->rb);
fd7b9f7b
TH
969 if (!node)
970 pos = NULL;
971 else
324a56e1 972 pos = rb_to_kn(node);
adc5e8b5 973 } while (pos && pos->ns != ns);
fd7b9f7b
TH
974 return pos;
975}
976
c637b8ac 977static int kernfs_fop_readdir(struct file *file, struct dir_context *ctx)
fd7b9f7b
TH
978{
979 struct dentry *dentry = file->f_path.dentry;
324a56e1
TH
980 struct kernfs_node *parent = dentry->d_fsdata;
981 struct kernfs_node *pos = file->private_data;
fd7b9f7b
TH
982 const void *ns = NULL;
983
984 if (!dir_emit_dots(file, ctx))
985 return 0;
a797bfc3 986 mutex_lock(&kernfs_mutex);
fd7b9f7b 987
324a56e1 988 if (kernfs_ns_enabled(parent))
c525aadd 989 ns = kernfs_info(dentry->d_sb)->ns;
fd7b9f7b 990
c637b8ac 991 for (pos = kernfs_dir_pos(ns, parent, ctx->pos, pos);
fd7b9f7b 992 pos;
c637b8ac 993 pos = kernfs_dir_next_pos(ns, parent, ctx->pos, pos)) {
adc5e8b5 994 const char *name = pos->name;
fd7b9f7b
TH
995 unsigned int type = dt_type(pos);
996 int len = strlen(name);
adc5e8b5 997 ino_t ino = pos->ino;
fd7b9f7b 998
adc5e8b5 999 ctx->pos = pos->hash;
fd7b9f7b
TH
1000 file->private_data = pos;
1001 kernfs_get(pos);
1002
a797bfc3 1003 mutex_unlock(&kernfs_mutex);
fd7b9f7b
TH
1004 if (!dir_emit(ctx, name, len, ino, type))
1005 return 0;
a797bfc3 1006 mutex_lock(&kernfs_mutex);
fd7b9f7b 1007 }
a797bfc3 1008 mutex_unlock(&kernfs_mutex);
fd7b9f7b
TH
1009 file->private_data = NULL;
1010 ctx->pos = INT_MAX;
1011 return 0;
1012}
1013
c637b8ac
TH
1014static loff_t kernfs_dir_fop_llseek(struct file *file, loff_t offset,
1015 int whence)
fd7b9f7b
TH
1016{
1017 struct inode *inode = file_inode(file);
1018 loff_t ret;
1019
1020 mutex_lock(&inode->i_mutex);
1021 ret = generic_file_llseek(file, offset, whence);
1022 mutex_unlock(&inode->i_mutex);
1023
1024 return ret;
1025}
1026
a797bfc3 1027const struct file_operations kernfs_dir_fops = {
fd7b9f7b 1028 .read = generic_read_dir,
c637b8ac
TH
1029 .iterate = kernfs_fop_readdir,
1030 .release = kernfs_dir_fop_release,
1031 .llseek = kernfs_dir_fop_llseek,
fd7b9f7b 1032};