blob: 35e40879860aebc4491082ca3dbc0bad6ef70727 [file] [log] [blame]
Tejun Heob8441ed2013-11-24 09:54:58 -05001/*
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 */
Tejun Heofd7b9f72013-11-28 14:54:33 -050010
Tejun Heoabd54f02014-02-03 14:02:55 -050011#include <linux/sched.h>
Tejun Heofd7b9f72013-11-28 14:54:33 -050012#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
Tejun Heoa797bfc2013-12-11 14:11:57 -050021DEFINE_MUTEX(kernfs_mutex);
Tejun Heo3eef34a2014-02-07 13:32:07 -050022static DEFINE_SPINLOCK(kernfs_rename_lock); /* kn->parent and ->name */
23static char kernfs_pr_cont_buf[PATH_MAX]; /* protected by rename_lock */
Tejun Heofd7b9f72013-11-28 14:54:33 -050024
Tejun Heoadc5e8b2013-12-11 14:11:54 -050025#define rb_to_kn(X) rb_entry((X), struct kernfs_node, rb)
Tejun Heofd7b9f72013-11-28 14:54:33 -050026
Tejun Heo81c173c2014-02-03 14:03:00 -050027static bool kernfs_active(struct kernfs_node *kn)
28{
29 lockdep_assert_held(&kernfs_mutex);
30 return atomic_read(&kn->active) >= 0;
31}
32
Tejun Heo182fd642014-02-03 14:02:59 -050033static bool kernfs_lockdep(struct kernfs_node *kn)
34{
35#ifdef CONFIG_DEBUG_LOCK_ALLOC
36 return kn->flags & KERNFS_LOCKDEP;
37#else
38 return false;
39#endif
40}
41
Tejun Heo3eef34a2014-02-07 13:32:07 -050042static int kernfs_name_locked(struct kernfs_node *kn, char *buf, size_t buflen)
43{
44 return strlcpy(buf, kn->parent ? kn->name : "/", buflen);
45}
46
47static char * __must_check kernfs_path_locked(struct kernfs_node *kn, char *buf,
48 size_t buflen)
49{
50 char *p = buf + buflen;
51 int len;
52
53 *--p = '\0';
54
55 do {
56 len = strlen(kn->name);
57 if (p - buf < len + 1) {
58 buf[0] = '\0';
59 p = NULL;
60 break;
61 }
62 p -= len;
63 memcpy(p, kn->name, len);
64 *--p = '/';
65 kn = kn->parent;
66 } while (kn && kn->parent);
67
68 return p;
69}
70
71/**
72 * kernfs_name - obtain the name of a given node
73 * @kn: kernfs_node of interest
74 * @buf: buffer to copy @kn's name into
75 * @buflen: size of @buf
76 *
77 * Copies the name of @kn into @buf of @buflen bytes. The behavior is
78 * similar to strlcpy(). It returns the length of @kn's name and if @buf
79 * isn't long enough, it's filled upto @buflen-1 and nul terminated.
80 *
81 * This function can be called from any context.
82 */
83int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
84{
85 unsigned long flags;
86 int ret;
87
88 spin_lock_irqsave(&kernfs_rename_lock, flags);
89 ret = kernfs_name_locked(kn, buf, buflen);
90 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
91 return ret;
92}
93
94/**
95 * kernfs_path - build full path of a given node
96 * @kn: kernfs_node of interest
97 * @buf: buffer to copy @kn's name into
98 * @buflen: size of @buf
99 *
100 * Builds and returns the full path of @kn in @buf of @buflen bytes. The
101 * path is built from the end of @buf so the returned pointer usually
102 * doesn't match @buf. If @buf isn't long enough, @buf is nul terminated
103 * and %NULL is returned.
104 */
105char *kernfs_path(struct kernfs_node *kn, char *buf, size_t buflen)
106{
107 unsigned long flags;
108 char *p;
109
110 spin_lock_irqsave(&kernfs_rename_lock, flags);
111 p = kernfs_path_locked(kn, buf, buflen);
112 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
113 return p;
114}
Tejun Heoe61734c2014-02-12 09:29:50 -0500115EXPORT_SYMBOL_GPL(kernfs_path);
Tejun Heo3eef34a2014-02-07 13:32:07 -0500116
117/**
118 * pr_cont_kernfs_name - pr_cont name of a kernfs_node
119 * @kn: kernfs_node of interest
120 *
121 * This function can be called from any context.
122 */
123void pr_cont_kernfs_name(struct kernfs_node *kn)
124{
125 unsigned long flags;
126
127 spin_lock_irqsave(&kernfs_rename_lock, flags);
128
129 kernfs_name_locked(kn, kernfs_pr_cont_buf, sizeof(kernfs_pr_cont_buf));
130 pr_cont("%s", kernfs_pr_cont_buf);
131
132 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
133}
134
135/**
136 * pr_cont_kernfs_path - pr_cont path of a kernfs_node
137 * @kn: kernfs_node of interest
138 *
139 * This function can be called from any context.
140 */
141void pr_cont_kernfs_path(struct kernfs_node *kn)
142{
143 unsigned long flags;
144 char *p;
145
146 spin_lock_irqsave(&kernfs_rename_lock, flags);
147
148 p = kernfs_path_locked(kn, kernfs_pr_cont_buf,
149 sizeof(kernfs_pr_cont_buf));
150 if (p)
151 pr_cont("%s", p);
152 else
153 pr_cont("<name too long>");
154
155 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
156}
157
158/**
159 * kernfs_get_parent - determine the parent node and pin it
160 * @kn: kernfs_node of interest
161 *
162 * Determines @kn's parent, pins and returns it. This function can be
163 * called from any context.
164 */
165struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
166{
167 struct kernfs_node *parent;
168 unsigned long flags;
169
170 spin_lock_irqsave(&kernfs_rename_lock, flags);
171 parent = kn->parent;
172 kernfs_get(parent);
173 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
174
175 return parent;
176}
177
Tejun Heofd7b9f72013-11-28 14:54:33 -0500178/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500179 * kernfs_name_hash
Tejun Heofd7b9f72013-11-28 14:54:33 -0500180 * @name: Null terminated string to hash
181 * @ns: Namespace tag to hash
182 *
183 * Returns 31 bit hash of ns + name (so it fits in an off_t )
184 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500185static unsigned int kernfs_name_hash(const char *name, const void *ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500186{
187 unsigned long hash = init_name_hash();
188 unsigned int len = strlen(name);
189 while (len--)
190 hash = partial_name_hash(*name++, hash);
191 hash = (end_name_hash(hash) ^ hash_ptr((void *)ns, 31));
192 hash &= 0x7fffffffU;
193 /* Reserve hash numbers 0, 1 and INT_MAX for magic directory entries */
Richard Cochran88391d42014-03-05 17:10:52 +0100194 if (hash < 2)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500195 hash += 2;
196 if (hash >= INT_MAX)
197 hash = INT_MAX - 1;
198 return hash;
199}
200
Tejun Heoc637b8a2013-12-11 14:11:58 -0500201static int kernfs_name_compare(unsigned int hash, const char *name,
202 const void *ns, const struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500203{
Rasmus Villemoes72392ed2014-12-05 23:41:33 +0100204 if (hash < kn->hash)
205 return -1;
206 if (hash > kn->hash)
207 return 1;
208 if (ns < kn->ns)
209 return -1;
210 if (ns > kn->ns)
211 return 1;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500212 return strcmp(name, kn->name);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500213}
214
Tejun Heoc637b8a2013-12-11 14:11:58 -0500215static int kernfs_sd_compare(const struct kernfs_node *left,
216 const struct kernfs_node *right)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500217{
Tejun Heoc637b8a2013-12-11 14:11:58 -0500218 return kernfs_name_compare(left->hash, left->name, left->ns, right);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500219}
220
221/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500222 * kernfs_link_sibling - link kernfs_node into sibling rbtree
Tejun Heo324a56e2013-12-11 14:11:53 -0500223 * @kn: kernfs_node of interest
Tejun Heofd7b9f72013-11-28 14:54:33 -0500224 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500225 * Link @kn into its sibling rbtree which starts from
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500226 * @kn->parent->dir.children.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500227 *
228 * Locking:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500229 * mutex_lock(kernfs_mutex)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500230 *
231 * RETURNS:
232 * 0 on susccess -EEXIST on failure.
233 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500234static int kernfs_link_sibling(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500235{
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500236 struct rb_node **node = &kn->parent->dir.children.rb_node;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500237 struct rb_node *parent = NULL;
238
Tejun Heofd7b9f72013-11-28 14:54:33 -0500239 while (*node) {
Tejun Heo324a56e2013-12-11 14:11:53 -0500240 struct kernfs_node *pos;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500241 int result;
242
Tejun Heo324a56e2013-12-11 14:11:53 -0500243 pos = rb_to_kn(*node);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500244 parent = *node;
Tejun Heoc637b8a2013-12-11 14:11:58 -0500245 result = kernfs_sd_compare(kn, pos);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500246 if (result < 0)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500247 node = &pos->rb.rb_left;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500248 else if (result > 0)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500249 node = &pos->rb.rb_right;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500250 else
251 return -EEXIST;
252 }
Jianyu Zhanc1befb82014-04-17 17:52:10 +0800253
Tejun Heofd7b9f72013-11-28 14:54:33 -0500254 /* add new node and rebalance the tree */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500255 rb_link_node(&kn->rb, parent, node);
256 rb_insert_color(&kn->rb, &kn->parent->dir.children);
Jianyu Zhanc1befb82014-04-17 17:52:10 +0800257
258 /* successfully added, account subdir number */
259 if (kernfs_type(kn) == KERNFS_DIR)
260 kn->parent->dir.subdirs++;
261
Tejun Heofd7b9f72013-11-28 14:54:33 -0500262 return 0;
263}
264
265/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500266 * kernfs_unlink_sibling - unlink kernfs_node from sibling rbtree
Tejun Heo324a56e2013-12-11 14:11:53 -0500267 * @kn: kernfs_node of interest
Tejun Heofd7b9f72013-11-28 14:54:33 -0500268 *
Tejun Heo35beab02014-02-03 14:02:56 -0500269 * Try to unlink @kn from its sibling rbtree which starts from
270 * kn->parent->dir.children. Returns %true if @kn was actually
271 * removed, %false if @kn wasn't on the rbtree.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500272 *
273 * Locking:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500274 * mutex_lock(kernfs_mutex)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500275 */
Tejun Heo35beab02014-02-03 14:02:56 -0500276static bool kernfs_unlink_sibling(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500277{
Tejun Heo35beab02014-02-03 14:02:56 -0500278 if (RB_EMPTY_NODE(&kn->rb))
279 return false;
280
Tejun Heodf23fc32013-12-11 14:11:56 -0500281 if (kernfs_type(kn) == KERNFS_DIR)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500282 kn->parent->dir.subdirs--;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500283
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500284 rb_erase(&kn->rb, &kn->parent->dir.children);
Tejun Heo35beab02014-02-03 14:02:56 -0500285 RB_CLEAR_NODE(&kn->rb);
286 return true;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500287}
288
289/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500290 * kernfs_get_active - get an active reference to kernfs_node
Tejun Heo324a56e2013-12-11 14:11:53 -0500291 * @kn: kernfs_node to get an active reference to
Tejun Heofd7b9f72013-11-28 14:54:33 -0500292 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500293 * Get an active reference of @kn. This function is noop if @kn
Tejun Heofd7b9f72013-11-28 14:54:33 -0500294 * is NULL.
295 *
296 * RETURNS:
Tejun Heo324a56e2013-12-11 14:11:53 -0500297 * Pointer to @kn on success, NULL on failure.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500298 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500299struct kernfs_node *kernfs_get_active(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500300{
Tejun Heo324a56e2013-12-11 14:11:53 -0500301 if (unlikely(!kn))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500302 return NULL;
303
Greg Kroah-Hartmanf4b3e632014-01-13 14:13:39 -0800304 if (!atomic_inc_unless_negative(&kn->active))
305 return NULL;
306
Tejun Heo182fd642014-02-03 14:02:59 -0500307 if (kernfs_lockdep(kn))
Tejun Heo324a56e2013-12-11 14:11:53 -0500308 rwsem_acquire_read(&kn->dep_map, 0, 1, _RET_IP_);
Greg Kroah-Hartmanf4b3e632014-01-13 14:13:39 -0800309 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500310}
311
312/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500313 * kernfs_put_active - put an active reference to kernfs_node
Tejun Heo324a56e2013-12-11 14:11:53 -0500314 * @kn: kernfs_node to put an active reference to
Tejun Heofd7b9f72013-11-28 14:54:33 -0500315 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500316 * Put an active reference to @kn. This function is noop if @kn
Tejun Heofd7b9f72013-11-28 14:54:33 -0500317 * is NULL.
318 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500319void kernfs_put_active(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500320{
Tejun Heoabd54f02014-02-03 14:02:55 -0500321 struct kernfs_root *root = kernfs_root(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500322 int v;
323
Tejun Heo324a56e2013-12-11 14:11:53 -0500324 if (unlikely(!kn))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500325 return;
326
Tejun Heo182fd642014-02-03 14:02:59 -0500327 if (kernfs_lockdep(kn))
Tejun Heo324a56e2013-12-11 14:11:53 -0500328 rwsem_release(&kn->dep_map, 1, _RET_IP_);
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500329 v = atomic_dec_return(&kn->active);
Tejun Heodf23fc32013-12-11 14:11:56 -0500330 if (likely(v != KN_DEACTIVATED_BIAS))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500331 return;
332
Tejun Heoabd54f02014-02-03 14:02:55 -0500333 wake_up_all(&root->deactivate_waitq);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500334}
335
336/**
Tejun Heo81c173c2014-02-03 14:03:00 -0500337 * kernfs_drain - drain kernfs_node
338 * @kn: kernfs_node to drain
Tejun Heofd7b9f72013-11-28 14:54:33 -0500339 *
Tejun Heo81c173c2014-02-03 14:03:00 -0500340 * Drain existing usages and nuke all existing mmaps of @kn. Mutiple
341 * removers may invoke this function concurrently on @kn and all will
342 * return after draining is complete.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500343 */
Tejun Heo81c173c2014-02-03 14:03:00 -0500344static void kernfs_drain(struct kernfs_node *kn)
Tejun Heo35beab02014-02-03 14:02:56 -0500345 __releases(&kernfs_mutex) __acquires(&kernfs_mutex)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500346{
Tejun Heoabd54f02014-02-03 14:02:55 -0500347 struct kernfs_root *root = kernfs_root(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500348
Tejun Heo35beab02014-02-03 14:02:56 -0500349 lockdep_assert_held(&kernfs_mutex);
Tejun Heo81c173c2014-02-03 14:03:00 -0500350 WARN_ON_ONCE(kernfs_active(kn));
Tejun Heo35beab02014-02-03 14:02:56 -0500351
352 mutex_unlock(&kernfs_mutex);
353
Tejun Heo182fd642014-02-03 14:02:59 -0500354 if (kernfs_lockdep(kn)) {
Tejun Heoa6607932014-02-03 14:02:54 -0500355 rwsem_acquire(&kn->dep_map, 0, 0, _RET_IP_);
Tejun Heo35beab02014-02-03 14:02:56 -0500356 if (atomic_read(&kn->active) != KN_DEACTIVATED_BIAS)
357 lock_contended(&kn->dep_map, _RET_IP_);
358 }
Greg Kroah-Hartman08901472014-01-13 14:39:52 -0800359
Tejun Heo35beab02014-02-03 14:02:56 -0500360 /* but everyone should wait for draining */
Tejun Heoabd54f02014-02-03 14:02:55 -0500361 wait_event(root->deactivate_waitq,
362 atomic_read(&kn->active) == KN_DEACTIVATED_BIAS);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500363
Tejun Heo182fd642014-02-03 14:02:59 -0500364 if (kernfs_lockdep(kn)) {
Tejun Heoa6607932014-02-03 14:02:54 -0500365 lock_acquired(&kn->dep_map, _RET_IP_);
366 rwsem_release(&kn->dep_map, 1, _RET_IP_);
367 }
Tejun Heo35beab02014-02-03 14:02:56 -0500368
Tejun Heoccf02aa2014-02-03 14:02:57 -0500369 kernfs_unmap_bin_file(kn);
370
Tejun Heo35beab02014-02-03 14:02:56 -0500371 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500372}
373
Tejun Heofd7b9f72013-11-28 14:54:33 -0500374/**
Tejun Heo324a56e2013-12-11 14:11:53 -0500375 * kernfs_get - get a reference count on a kernfs_node
376 * @kn: the target kernfs_node
Tejun Heofd7b9f72013-11-28 14:54:33 -0500377 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500378void kernfs_get(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500379{
Tejun Heo324a56e2013-12-11 14:11:53 -0500380 if (kn) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500381 WARN_ON(!atomic_read(&kn->count));
382 atomic_inc(&kn->count);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500383 }
384}
385EXPORT_SYMBOL_GPL(kernfs_get);
386
387/**
Tejun Heo324a56e2013-12-11 14:11:53 -0500388 * kernfs_put - put a reference count on a kernfs_node
389 * @kn: the target kernfs_node
Tejun Heofd7b9f72013-11-28 14:54:33 -0500390 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500391 * Put a reference count of @kn and destroy it if it reached zero.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500392 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500393void kernfs_put(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500394{
Tejun Heo324a56e2013-12-11 14:11:53 -0500395 struct kernfs_node *parent;
Tejun Heoba7443b2013-11-28 14:54:40 -0500396 struct kernfs_root *root;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500397
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500398 if (!kn || !atomic_dec_and_test(&kn->count))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500399 return;
Tejun Heo324a56e2013-12-11 14:11:53 -0500400 root = kernfs_root(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500401 repeat:
Tejun Heo81c173c2014-02-03 14:03:00 -0500402 /*
403 * Moving/renaming is always done while holding reference.
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500404 * kn->parent won't change beneath us.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500405 */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500406 parent = kn->parent;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500407
Tejun Heo81c173c2014-02-03 14:03:00 -0500408 WARN_ONCE(atomic_read(&kn->active) != KN_DEACTIVATED_BIAS,
409 "kernfs_put: %s/%s: released with incorrect active_ref %d\n",
410 parent ? parent->name : "", kn->name, atomic_read(&kn->active));
Tejun Heofd7b9f72013-11-28 14:54:33 -0500411
Tejun Heodf23fc32013-12-11 14:11:56 -0500412 if (kernfs_type(kn) == KERNFS_LINK)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500413 kernfs_put(kn->symlink.target_kn);
Tejun Heo2063d602013-12-11 16:02:57 -0500414 if (!(kn->flags & KERNFS_STATIC_NAME))
Andrzej Hajda75287a62015-02-13 14:36:27 -0800415 kfree_const(kn->name);
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500416 if (kn->iattr) {
417 if (kn->iattr->ia_secdata)
418 security_release_secctx(kn->iattr->ia_secdata,
419 kn->iattr->ia_secdata_len);
420 simple_xattrs_free(&kn->iattr->xattrs);
Tejun Heo23223922013-11-23 17:40:02 -0500421 }
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500422 kfree(kn->iattr);
423 ida_simple_remove(&root->ino_ida, kn->ino);
Tejun Heoa797bfc2013-12-11 14:11:57 -0500424 kmem_cache_free(kernfs_node_cache, kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500425
Tejun Heo324a56e2013-12-11 14:11:53 -0500426 kn = parent;
427 if (kn) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500428 if (atomic_dec_and_test(&kn->count))
Tejun Heoba7443b2013-11-28 14:54:40 -0500429 goto repeat;
430 } else {
Tejun Heo324a56e2013-12-11 14:11:53 -0500431 /* just released the root kn, free @root too */
Tejun Heobc755552013-11-28 14:54:41 -0500432 ida_destroy(&root->ino_ida);
Tejun Heoba7443b2013-11-28 14:54:40 -0500433 kfree(root);
434 }
Tejun Heofd7b9f72013-11-28 14:54:33 -0500435}
436EXPORT_SYMBOL_GPL(kernfs_put);
437
Tejun Heoc637b8a2013-12-11 14:11:58 -0500438static int kernfs_dop_revalidate(struct dentry *dentry, unsigned int flags)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500439{
Tejun Heo324a56e2013-12-11 14:11:53 -0500440 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500441
442 if (flags & LOOKUP_RCU)
443 return -ECHILD;
444
Tejun Heo19bbb922013-12-11 16:02:59 -0500445 /* Always perform fresh lookup for negatives */
446 if (!dentry->d_inode)
447 goto out_bad_unlocked;
448
Tejun Heo324a56e2013-12-11 14:11:53 -0500449 kn = dentry->d_fsdata;
Tejun Heoa797bfc2013-12-11 14:11:57 -0500450 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500451
Tejun Heo81c173c2014-02-03 14:03:00 -0500452 /* The kernfs node has been deactivated */
453 if (!kernfs_active(kn))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500454 goto out_bad;
455
Tejun Heoc637b8a2013-12-11 14:11:58 -0500456 /* The kernfs node has been moved? */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500457 if (dentry->d_parent->d_fsdata != kn->parent)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500458 goto out_bad;
459
Tejun Heoc637b8a2013-12-11 14:11:58 -0500460 /* The kernfs node has been renamed */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500461 if (strcmp(dentry->d_name.name, kn->name) != 0)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500462 goto out_bad;
463
Tejun Heoc637b8a2013-12-11 14:11:58 -0500464 /* The kernfs node has been moved to a different namespace */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500465 if (kn->parent && kernfs_ns_enabled(kn->parent) &&
Tejun Heoc525aad2013-12-11 14:11:55 -0500466 kernfs_info(dentry->d_sb)->ns != kn->ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500467 goto out_bad;
468
Tejun Heoa797bfc2013-12-11 14:11:57 -0500469 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500470 return 1;
471out_bad:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500472 mutex_unlock(&kernfs_mutex);
Tejun Heo19bbb922013-12-11 16:02:59 -0500473out_bad_unlocked:
Tejun Heofd7b9f72013-11-28 14:54:33 -0500474 return 0;
475}
476
Tejun Heoc637b8a2013-12-11 14:11:58 -0500477static void kernfs_dop_release(struct dentry *dentry)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500478{
479 kernfs_put(dentry->d_fsdata);
480}
481
Tejun Heoa797bfc2013-12-11 14:11:57 -0500482const struct dentry_operations kernfs_dops = {
Tejun Heoc637b8a2013-12-11 14:11:58 -0500483 .d_revalidate = kernfs_dop_revalidate,
Tejun Heoc637b8a2013-12-11 14:11:58 -0500484 .d_release = kernfs_dop_release,
Tejun Heofd7b9f72013-11-28 14:54:33 -0500485};
486
Tejun Heo0c23b222014-02-03 14:09:15 -0500487/**
488 * kernfs_node_from_dentry - determine kernfs_node associated with a dentry
489 * @dentry: the dentry in question
490 *
491 * Return the kernfs_node associated with @dentry. If @dentry is not a
492 * kernfs one, %NULL is returned.
493 *
494 * While the returned kernfs_node will stay accessible as long as @dentry
495 * is accessible, the returned node can be in any state and the caller is
496 * fully responsible for determining what's accessible.
497 */
498struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
499{
Li Zefanf41c5932014-02-14 16:57:27 +0800500 if (dentry->d_sb->s_op == &kernfs_sops)
Tejun Heo0c23b222014-02-03 14:09:15 -0500501 return dentry->d_fsdata;
502 return NULL;
503}
504
Tejun Heodb4aad22014-01-17 09:58:25 -0500505static struct kernfs_node *__kernfs_new_node(struct kernfs_root *root,
506 const char *name, umode_t mode,
507 unsigned flags)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500508{
Andrzej Hajda75287a62015-02-13 14:36:27 -0800509 const char *dup_name = NULL;
Tejun Heo324a56e2013-12-11 14:11:53 -0500510 struct kernfs_node *kn;
Tejun Heobc755552013-11-28 14:54:41 -0500511 int ret;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500512
Tejun Heo2063d602013-12-11 16:02:57 -0500513 if (!(flags & KERNFS_STATIC_NAME)) {
Andrzej Hajda75287a62015-02-13 14:36:27 -0800514 name = dup_name = kstrdup_const(name, GFP_KERNEL);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500515 if (!name)
516 return NULL;
517 }
518
Tejun Heoa797bfc2013-12-11 14:11:57 -0500519 kn = kmem_cache_zalloc(kernfs_node_cache, GFP_KERNEL);
Tejun Heo324a56e2013-12-11 14:11:53 -0500520 if (!kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500521 goto err_out1;
522
Tejun Heobc755552013-11-28 14:54:41 -0500523 ret = ida_simple_get(&root->ino_ida, 1, 0, GFP_KERNEL);
524 if (ret < 0)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500525 goto err_out2;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500526 kn->ino = ret;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500527
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500528 atomic_set(&kn->count, 1);
Tejun Heo81c173c2014-02-03 14:03:00 -0500529 atomic_set(&kn->active, KN_DEACTIVATED_BIAS);
Tejun Heo35beab02014-02-03 14:02:56 -0500530 RB_CLEAR_NODE(&kn->rb);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500531
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500532 kn->name = name;
533 kn->mode = mode;
Tejun Heo81c173c2014-02-03 14:03:00 -0500534 kn->flags = flags;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500535
Tejun Heo324a56e2013-12-11 14:11:53 -0500536 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500537
538 err_out2:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500539 kmem_cache_free(kernfs_node_cache, kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500540 err_out1:
Andrzej Hajda75287a62015-02-13 14:36:27 -0800541 kfree_const(dup_name);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500542 return NULL;
543}
544
Tejun Heodb4aad22014-01-17 09:58:25 -0500545struct kernfs_node *kernfs_new_node(struct kernfs_node *parent,
546 const char *name, umode_t mode,
547 unsigned flags)
548{
549 struct kernfs_node *kn;
550
551 kn = __kernfs_new_node(kernfs_root(parent), name, mode, flags);
552 if (kn) {
553 kernfs_get(parent);
554 kn->parent = parent;
555 }
556 return kn;
557}
558
Tejun Heofd7b9f72013-11-28 14:54:33 -0500559/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500560 * kernfs_add_one - add kernfs_node to parent without warning
Tejun Heo324a56e2013-12-11 14:11:53 -0500561 * @kn: kernfs_node to be added
Tejun Heofd7b9f72013-11-28 14:54:33 -0500562 *
Tejun Heodb4aad22014-01-17 09:58:25 -0500563 * The caller must already have initialized @kn->parent. This
564 * function increments nlink of the parent's inode if @kn is a
565 * directory and link into the children list of the parent.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500566 *
Tejun Heofd7b9f72013-11-28 14:54:33 -0500567 * RETURNS:
568 * 0 on success, -EEXIST if entry with the given name already
569 * exists.
570 */
Tejun Heo988cd7a2014-02-03 14:02:58 -0500571int kernfs_add_one(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500572{
Tejun Heodb4aad22014-01-17 09:58:25 -0500573 struct kernfs_node *parent = kn->parent;
Tejun Heoc525aad2013-12-11 14:11:55 -0500574 struct kernfs_iattrs *ps_iattr;
Tejun Heo988cd7a2014-02-03 14:02:58 -0500575 bool has_ns;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500576 int ret;
577
Tejun Heo988cd7a2014-02-03 14:02:58 -0500578 mutex_lock(&kernfs_mutex);
579
580 ret = -EINVAL;
581 has_ns = kernfs_ns_enabled(parent);
582 if (WARN(has_ns != (bool)kn->ns, KERN_WARNING "kernfs: ns %s in '%s' for '%s'\n",
583 has_ns ? "required" : "invalid", parent->name, kn->name))
584 goto out_unlock;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500585
Tejun Heodf23fc32013-12-11 14:11:56 -0500586 if (kernfs_type(parent) != KERNFS_DIR)
Tejun Heo988cd7a2014-02-03 14:02:58 -0500587 goto out_unlock;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500588
Tejun Heo988cd7a2014-02-03 14:02:58 -0500589 ret = -ENOENT;
Tejun Heod35258e2014-02-03 14:09:12 -0500590 if ((parent->flags & KERNFS_ACTIVATED) && !kernfs_active(parent))
Tejun Heo988cd7a2014-02-03 14:02:58 -0500591 goto out_unlock;
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -0800592
Tejun Heoc637b8a2013-12-11 14:11:58 -0500593 kn->hash = kernfs_name_hash(kn->name, kn->ns);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500594
Tejun Heoc637b8a2013-12-11 14:11:58 -0500595 ret = kernfs_link_sibling(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500596 if (ret)
Tejun Heo988cd7a2014-02-03 14:02:58 -0500597 goto out_unlock;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500598
599 /* Update timestamps on the parent */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500600 ps_iattr = parent->iattr;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500601 if (ps_iattr) {
602 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
603 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
604 }
605
Tejun Heod35258e2014-02-03 14:09:12 -0500606 mutex_unlock(&kernfs_mutex);
607
608 /*
609 * Activate the new node unless CREATE_DEACTIVATED is requested.
610 * If not activated here, the kernfs user is responsible for
611 * activating the node with kernfs_activate(). A node which hasn't
612 * been activated is not visible to userland and its removal won't
613 * trigger deactivation.
614 */
615 if (!(kernfs_root(kn)->flags & KERNFS_ROOT_CREATE_DEACTIVATED))
616 kernfs_activate(kn);
617 return 0;
618
Tejun Heo988cd7a2014-02-03 14:02:58 -0500619out_unlock:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500620 mutex_unlock(&kernfs_mutex);
Tejun Heo988cd7a2014-02-03 14:02:58 -0500621 return ret;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500622}
623
624/**
Tejun Heo324a56e2013-12-11 14:11:53 -0500625 * kernfs_find_ns - find kernfs_node with the given name
626 * @parent: kernfs_node to search under
Tejun Heofd7b9f72013-11-28 14:54:33 -0500627 * @name: name to look for
628 * @ns: the namespace tag to use
629 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500630 * Look for kernfs_node with name @name under @parent. Returns pointer to
631 * the found kernfs_node on success, %NULL on failure.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500632 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500633static struct kernfs_node *kernfs_find_ns(struct kernfs_node *parent,
634 const unsigned char *name,
635 const void *ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500636{
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500637 struct rb_node *node = parent->dir.children.rb_node;
Tejun Heoac9bba02013-11-29 17:19:09 -0500638 bool has_ns = kernfs_ns_enabled(parent);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500639 unsigned int hash;
640
Tejun Heoa797bfc2013-12-11 14:11:57 -0500641 lockdep_assert_held(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500642
643 if (has_ns != (bool)ns) {
Tejun Heoc637b8a2013-12-11 14:11:58 -0500644 WARN(1, KERN_WARNING "kernfs: ns %s in '%s' for '%s'\n",
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500645 has_ns ? "required" : "invalid", parent->name, name);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500646 return NULL;
647 }
648
Tejun Heoc637b8a2013-12-11 14:11:58 -0500649 hash = kernfs_name_hash(name, ns);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500650 while (node) {
Tejun Heo324a56e2013-12-11 14:11:53 -0500651 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500652 int result;
653
Tejun Heo324a56e2013-12-11 14:11:53 -0500654 kn = rb_to_kn(node);
Tejun Heoc637b8a2013-12-11 14:11:58 -0500655 result = kernfs_name_compare(hash, name, ns, kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500656 if (result < 0)
657 node = node->rb_left;
658 else if (result > 0)
659 node = node->rb_right;
660 else
Tejun Heo324a56e2013-12-11 14:11:53 -0500661 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500662 }
663 return NULL;
664}
665
666/**
Tejun Heo324a56e2013-12-11 14:11:53 -0500667 * kernfs_find_and_get_ns - find and get kernfs_node with the given name
668 * @parent: kernfs_node to search under
Tejun Heofd7b9f72013-11-28 14:54:33 -0500669 * @name: name to look for
670 * @ns: the namespace tag to use
671 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500672 * Look for kernfs_node with name @name under @parent and get a reference
Tejun Heofd7b9f72013-11-28 14:54:33 -0500673 * if found. This function may sleep and returns pointer to the found
Tejun Heo324a56e2013-12-11 14:11:53 -0500674 * kernfs_node on success, %NULL on failure.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500675 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500676struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
677 const char *name, const void *ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500678{
Tejun Heo324a56e2013-12-11 14:11:53 -0500679 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500680
Tejun Heoa797bfc2013-12-11 14:11:57 -0500681 mutex_lock(&kernfs_mutex);
Tejun Heo324a56e2013-12-11 14:11:53 -0500682 kn = kernfs_find_ns(parent, name, ns);
683 kernfs_get(kn);
Tejun Heoa797bfc2013-12-11 14:11:57 -0500684 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500685
Tejun Heo324a56e2013-12-11 14:11:53 -0500686 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500687}
688EXPORT_SYMBOL_GPL(kernfs_find_and_get_ns);
689
690/**
Tejun Heoba7443b2013-11-28 14:54:40 -0500691 * kernfs_create_root - create a new kernfs hierarchy
Tejun Heo90c07c82014-02-03 14:09:09 -0500692 * @scops: optional syscall operations for the hierarchy
Tejun Heod35258e2014-02-03 14:09:12 -0500693 * @flags: KERNFS_ROOT_* flags
Tejun Heoba7443b2013-11-28 14:54:40 -0500694 * @priv: opaque data associated with the new directory
695 *
696 * Returns the root of the new hierarchy on success, ERR_PTR() value on
697 * failure.
698 */
Tejun Heo90c07c82014-02-03 14:09:09 -0500699struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
Tejun Heod35258e2014-02-03 14:09:12 -0500700 unsigned int flags, void *priv)
Tejun Heoba7443b2013-11-28 14:54:40 -0500701{
702 struct kernfs_root *root;
Tejun Heo324a56e2013-12-11 14:11:53 -0500703 struct kernfs_node *kn;
Tejun Heoba7443b2013-11-28 14:54:40 -0500704
705 root = kzalloc(sizeof(*root), GFP_KERNEL);
706 if (!root)
707 return ERR_PTR(-ENOMEM);
708
Tejun Heobc755552013-11-28 14:54:41 -0500709 ida_init(&root->ino_ida);
Tejun Heo7d568a82014-04-09 11:07:30 -0400710 INIT_LIST_HEAD(&root->supers);
Tejun Heobc755552013-11-28 14:54:41 -0500711
Tejun Heodb4aad22014-01-17 09:58:25 -0500712 kn = __kernfs_new_node(root, "", S_IFDIR | S_IRUGO | S_IXUGO,
713 KERNFS_DIR);
Tejun Heo324a56e2013-12-11 14:11:53 -0500714 if (!kn) {
Tejun Heobc755552013-11-28 14:54:41 -0500715 ida_destroy(&root->ino_ida);
Tejun Heoba7443b2013-11-28 14:54:40 -0500716 kfree(root);
717 return ERR_PTR(-ENOMEM);
718 }
719
Tejun Heo324a56e2013-12-11 14:11:53 -0500720 kn->priv = priv;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500721 kn->dir.root = root;
Tejun Heoba7443b2013-11-28 14:54:40 -0500722
Tejun Heo90c07c82014-02-03 14:09:09 -0500723 root->syscall_ops = scops;
Tejun Heod35258e2014-02-03 14:09:12 -0500724 root->flags = flags;
Tejun Heo324a56e2013-12-11 14:11:53 -0500725 root->kn = kn;
Tejun Heoabd54f02014-02-03 14:02:55 -0500726 init_waitqueue_head(&root->deactivate_waitq);
Tejun Heoba7443b2013-11-28 14:54:40 -0500727
Tejun Heod35258e2014-02-03 14:09:12 -0500728 if (!(root->flags & KERNFS_ROOT_CREATE_DEACTIVATED))
729 kernfs_activate(kn);
730
Tejun Heoba7443b2013-11-28 14:54:40 -0500731 return root;
732}
733
734/**
735 * kernfs_destroy_root - destroy a kernfs hierarchy
736 * @root: root of the hierarchy to destroy
737 *
738 * Destroy the hierarchy anchored at @root by removing all existing
739 * directories and destroying @root.
740 */
741void kernfs_destroy_root(struct kernfs_root *root)
742{
Tejun Heo324a56e2013-12-11 14:11:53 -0500743 kernfs_remove(root->kn); /* will also free @root */
Tejun Heoba7443b2013-11-28 14:54:40 -0500744}
745
746/**
Tejun Heofd7b9f72013-11-28 14:54:33 -0500747 * kernfs_create_dir_ns - create a directory
748 * @parent: parent in which to create a new directory
749 * @name: name of the new directory
Tejun Heobb8b9d02013-12-11 16:02:55 -0500750 * @mode: mode of the new directory
Tejun Heofd7b9f72013-11-28 14:54:33 -0500751 * @priv: opaque data associated with the new directory
752 * @ns: optional namespace tag of the directory
753 *
754 * Returns the created node on success, ERR_PTR() value on failure.
755 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500756struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
Tejun Heobb8b9d02013-12-11 16:02:55 -0500757 const char *name, umode_t mode,
758 void *priv, const void *ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500759{
Tejun Heo324a56e2013-12-11 14:11:53 -0500760 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500761 int rc;
762
763 /* allocate */
Tejun Heodb4aad22014-01-17 09:58:25 -0500764 kn = kernfs_new_node(parent, name, mode | S_IFDIR, KERNFS_DIR);
Tejun Heo324a56e2013-12-11 14:11:53 -0500765 if (!kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500766 return ERR_PTR(-ENOMEM);
767
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500768 kn->dir.root = parent->dir.root;
769 kn->ns = ns;
Tejun Heo324a56e2013-12-11 14:11:53 -0500770 kn->priv = priv;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500771
772 /* link in */
Tejun Heo988cd7a2014-02-03 14:02:58 -0500773 rc = kernfs_add_one(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500774 if (!rc)
Tejun Heo324a56e2013-12-11 14:11:53 -0500775 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500776
Tejun Heo324a56e2013-12-11 14:11:53 -0500777 kernfs_put(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500778 return ERR_PTR(rc);
779}
780
Tejun Heoc637b8a2013-12-11 14:11:58 -0500781static struct dentry *kernfs_iop_lookup(struct inode *dir,
782 struct dentry *dentry,
783 unsigned int flags)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500784{
Tejun Heo19bbb922013-12-11 16:02:59 -0500785 struct dentry *ret;
Tejun Heo324a56e2013-12-11 14:11:53 -0500786 struct kernfs_node *parent = dentry->d_parent->d_fsdata;
787 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500788 struct inode *inode;
789 const void *ns = NULL;
790
Tejun Heoa797bfc2013-12-11 14:11:57 -0500791 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500792
Tejun Heo324a56e2013-12-11 14:11:53 -0500793 if (kernfs_ns_enabled(parent))
Tejun Heoc525aad2013-12-11 14:11:55 -0500794 ns = kernfs_info(dir->i_sb)->ns;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500795
Tejun Heo324a56e2013-12-11 14:11:53 -0500796 kn = kernfs_find_ns(parent, dentry->d_name.name, ns);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500797
798 /* no such entry */
Tejun Heob9c9dad2014-02-03 14:09:11 -0500799 if (!kn || !kernfs_active(kn)) {
Tejun Heo19bbb922013-12-11 16:02:59 -0500800 ret = NULL;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500801 goto out_unlock;
802 }
Tejun Heo324a56e2013-12-11 14:11:53 -0500803 kernfs_get(kn);
804 dentry->d_fsdata = kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500805
806 /* attach dentry and inode */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500807 inode = kernfs_get_inode(dir->i_sb, kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500808 if (!inode) {
809 ret = ERR_PTR(-ENOMEM);
810 goto out_unlock;
811 }
812
813 /* instantiate and hash dentry */
Al Viro41d28bc2014-10-12 22:24:21 -0400814 ret = d_splice_alias(inode, dentry);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500815 out_unlock:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500816 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500817 return ret;
818}
819
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500820static int kernfs_iop_mkdir(struct inode *dir, struct dentry *dentry,
821 umode_t mode)
822{
823 struct kernfs_node *parent = dir->i_private;
Tejun Heo90c07c82014-02-03 14:09:09 -0500824 struct kernfs_syscall_ops *scops = kernfs_root(parent)->syscall_ops;
Tejun Heo07c75302014-02-03 14:09:08 -0500825 int ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500826
Tejun Heo90c07c82014-02-03 14:09:09 -0500827 if (!scops || !scops->mkdir)
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500828 return -EPERM;
829
Tejun Heo07c75302014-02-03 14:09:08 -0500830 if (!kernfs_get_active(parent))
831 return -ENODEV;
832
Tejun Heo90c07c82014-02-03 14:09:09 -0500833 ret = scops->mkdir(parent, dentry->d_name.name, mode);
Tejun Heo07c75302014-02-03 14:09:08 -0500834
835 kernfs_put_active(parent);
836 return ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500837}
838
839static int kernfs_iop_rmdir(struct inode *dir, struct dentry *dentry)
840{
841 struct kernfs_node *kn = dentry->d_fsdata;
Tejun Heo90c07c82014-02-03 14:09:09 -0500842 struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops;
Tejun Heo07c75302014-02-03 14:09:08 -0500843 int ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500844
Tejun Heo90c07c82014-02-03 14:09:09 -0500845 if (!scops || !scops->rmdir)
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500846 return -EPERM;
847
Tejun Heo07c75302014-02-03 14:09:08 -0500848 if (!kernfs_get_active(kn))
849 return -ENODEV;
850
Tejun Heo90c07c82014-02-03 14:09:09 -0500851 ret = scops->rmdir(kn);
Tejun Heo07c75302014-02-03 14:09:08 -0500852
853 kernfs_put_active(kn);
854 return ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500855}
856
857static int kernfs_iop_rename(struct inode *old_dir, struct dentry *old_dentry,
858 struct inode *new_dir, struct dentry *new_dentry)
859{
860 struct kernfs_node *kn = old_dentry->d_fsdata;
861 struct kernfs_node *new_parent = new_dir->i_private;
Tejun Heo90c07c82014-02-03 14:09:09 -0500862 struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops;
Tejun Heo07c75302014-02-03 14:09:08 -0500863 int ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500864
Tejun Heo90c07c82014-02-03 14:09:09 -0500865 if (!scops || !scops->rename)
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500866 return -EPERM;
867
Tejun Heo07c75302014-02-03 14:09:08 -0500868 if (!kernfs_get_active(kn))
869 return -ENODEV;
870
871 if (!kernfs_get_active(new_parent)) {
872 kernfs_put_active(kn);
873 return -ENODEV;
874 }
875
Tejun Heo90c07c82014-02-03 14:09:09 -0500876 ret = scops->rename(kn, new_parent, new_dentry->d_name.name);
Tejun Heo07c75302014-02-03 14:09:08 -0500877
878 kernfs_put_active(new_parent);
879 kernfs_put_active(kn);
880 return ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500881}
882
Tejun Heoa797bfc2013-12-11 14:11:57 -0500883const struct inode_operations kernfs_dir_iops = {
Tejun Heoc637b8a2013-12-11 14:11:58 -0500884 .lookup = kernfs_iop_lookup,
885 .permission = kernfs_iop_permission,
886 .setattr = kernfs_iop_setattr,
887 .getattr = kernfs_iop_getattr,
888 .setxattr = kernfs_iop_setxattr,
889 .removexattr = kernfs_iop_removexattr,
890 .getxattr = kernfs_iop_getxattr,
891 .listxattr = kernfs_iop_listxattr,
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500892
893 .mkdir = kernfs_iop_mkdir,
894 .rmdir = kernfs_iop_rmdir,
895 .rename = kernfs_iop_rename,
Tejun Heofd7b9f72013-11-28 14:54:33 -0500896};
897
Tejun Heoc637b8a2013-12-11 14:11:58 -0500898static struct kernfs_node *kernfs_leftmost_descendant(struct kernfs_node *pos)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500899{
Tejun Heo324a56e2013-12-11 14:11:53 -0500900 struct kernfs_node *last;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500901
902 while (true) {
903 struct rb_node *rbn;
904
905 last = pos;
906
Tejun Heodf23fc32013-12-11 14:11:56 -0500907 if (kernfs_type(pos) != KERNFS_DIR)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500908 break;
909
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500910 rbn = rb_first(&pos->dir.children);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500911 if (!rbn)
912 break;
913
Tejun Heo324a56e2013-12-11 14:11:53 -0500914 pos = rb_to_kn(rbn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500915 }
916
917 return last;
918}
919
920/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500921 * kernfs_next_descendant_post - find the next descendant for post-order walk
Tejun Heofd7b9f72013-11-28 14:54:33 -0500922 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo324a56e2013-12-11 14:11:53 -0500923 * @root: kernfs_node whose descendants to walk
Tejun Heofd7b9f72013-11-28 14:54:33 -0500924 *
925 * Find the next descendant to visit for post-order traversal of @root's
926 * descendants. @root is included in the iteration and the last node to be
927 * visited.
928 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500929static struct kernfs_node *kernfs_next_descendant_post(struct kernfs_node *pos,
930 struct kernfs_node *root)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500931{
932 struct rb_node *rbn;
933
Tejun Heoa797bfc2013-12-11 14:11:57 -0500934 lockdep_assert_held(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500935
936 /* if first iteration, visit leftmost descendant which may be root */
937 if (!pos)
Tejun Heoc637b8a2013-12-11 14:11:58 -0500938 return kernfs_leftmost_descendant(root);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500939
940 /* if we visited @root, we're done */
941 if (pos == root)
942 return NULL;
943
944 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500945 rbn = rb_next(&pos->rb);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500946 if (rbn)
Tejun Heoc637b8a2013-12-11 14:11:58 -0500947 return kernfs_leftmost_descendant(rb_to_kn(rbn));
Tejun Heofd7b9f72013-11-28 14:54:33 -0500948
949 /* no sibling left, visit parent */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500950 return pos->parent;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500951}
952
Tejun Heod35258e2014-02-03 14:09:12 -0500953/**
954 * kernfs_activate - activate a node which started deactivated
955 * @kn: kernfs_node whose subtree is to be activated
956 *
957 * If the root has KERNFS_ROOT_CREATE_DEACTIVATED set, a newly created node
958 * needs to be explicitly activated. A node which hasn't been activated
959 * isn't visible to userland and deactivation is skipped during its
960 * removal. This is useful to construct atomic init sequences where
961 * creation of multiple nodes should either succeed or fail atomically.
962 *
963 * The caller is responsible for ensuring that this function is not called
964 * after kernfs_remove*() is invoked on @kn.
965 */
966void kernfs_activate(struct kernfs_node *kn)
967{
968 struct kernfs_node *pos;
969
970 mutex_lock(&kernfs_mutex);
971
972 pos = NULL;
973 while ((pos = kernfs_next_descendant_post(pos, kn))) {
974 if (!pos || (pos->flags & KERNFS_ACTIVATED))
975 continue;
976
977 WARN_ON_ONCE(pos->parent && RB_EMPTY_NODE(&pos->rb));
978 WARN_ON_ONCE(atomic_read(&pos->active) != KN_DEACTIVATED_BIAS);
979
980 atomic_sub(KN_DEACTIVATED_BIAS, &pos->active);
981 pos->flags |= KERNFS_ACTIVATED;
982 }
983
984 mutex_unlock(&kernfs_mutex);
985}
986
Tejun Heo988cd7a2014-02-03 14:02:58 -0500987static void __kernfs_remove(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500988{
Tejun Heo35beab02014-02-03 14:02:56 -0500989 struct kernfs_node *pos;
990
991 lockdep_assert_held(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500992
Tejun Heo6b0afc22014-02-03 14:03:01 -0500993 /*
994 * Short-circuit if non-root @kn has already finished removal.
995 * This is for kernfs_remove_self() which plays with active ref
996 * after removal.
997 */
998 if (!kn || (kn->parent && RB_EMPTY_NODE(&kn->rb)))
Greg Kroah-Hartmance9b4992014-01-13 13:50:31 -0800999 return;
1000
Tejun Heoc637b8a2013-12-11 14:11:58 -05001001 pr_debug("kernfs %s: removing\n", kn->name);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001002
Tejun Heo81c173c2014-02-03 14:03:00 -05001003 /* prevent any new usage under @kn by deactivating all nodes */
Tejun Heo35beab02014-02-03 14:02:56 -05001004 pos = NULL;
1005 while ((pos = kernfs_next_descendant_post(pos, kn)))
Tejun Heo81c173c2014-02-03 14:03:00 -05001006 if (kernfs_active(pos))
1007 atomic_add(KN_DEACTIVATED_BIAS, &pos->active);
Tejun Heo35beab02014-02-03 14:02:56 -05001008
1009 /* deactivate and unlink the subtree node-by-node */
Tejun Heofd7b9f72013-11-28 14:54:33 -05001010 do {
Tejun Heo35beab02014-02-03 14:02:56 -05001011 pos = kernfs_leftmost_descendant(kn);
1012
1013 /*
Tejun Heo81c173c2014-02-03 14:03:00 -05001014 * kernfs_drain() drops kernfs_mutex temporarily and @pos's
1015 * base ref could have been put by someone else by the time
1016 * the function returns. Make sure it doesn't go away
1017 * underneath us.
Tejun Heo35beab02014-02-03 14:02:56 -05001018 */
1019 kernfs_get(pos);
1020
Tejun Heod35258e2014-02-03 14:09:12 -05001021 /*
1022 * Drain iff @kn was activated. This avoids draining and
1023 * its lockdep annotations for nodes which have never been
1024 * activated and allows embedding kernfs_remove() in create
1025 * error paths without worrying about draining.
1026 */
1027 if (kn->flags & KERNFS_ACTIVATED)
1028 kernfs_drain(pos);
1029 else
1030 WARN_ON_ONCE(atomic_read(&kn->active) != KN_DEACTIVATED_BIAS);
Tejun Heo35beab02014-02-03 14:02:56 -05001031
1032 /*
1033 * kernfs_unlink_sibling() succeeds once per node. Use it
1034 * to decide who's responsible for cleanups.
1035 */
1036 if (!pos->parent || kernfs_unlink_sibling(pos)) {
1037 struct kernfs_iattrs *ps_iattr =
1038 pos->parent ? pos->parent->iattr : NULL;
1039
1040 /* update timestamps on the parent */
1041 if (ps_iattr) {
1042 ps_iattr->ia_iattr.ia_ctime = CURRENT_TIME;
1043 ps_iattr->ia_iattr.ia_mtime = CURRENT_TIME;
1044 }
1045
Tejun Heo988cd7a2014-02-03 14:02:58 -05001046 kernfs_put(pos);
Tejun Heo35beab02014-02-03 14:02:56 -05001047 }
1048
1049 kernfs_put(pos);
1050 } while (pos != kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001051}
1052
1053/**
Tejun Heo324a56e2013-12-11 14:11:53 -05001054 * kernfs_remove - remove a kernfs_node recursively
1055 * @kn: the kernfs_node to remove
Tejun Heofd7b9f72013-11-28 14:54:33 -05001056 *
Tejun Heo324a56e2013-12-11 14:11:53 -05001057 * Remove @kn along with all its subdirectories and files.
Tejun Heofd7b9f72013-11-28 14:54:33 -05001058 */
Tejun Heo324a56e2013-12-11 14:11:53 -05001059void kernfs_remove(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001060{
Tejun Heo988cd7a2014-02-03 14:02:58 -05001061 mutex_lock(&kernfs_mutex);
1062 __kernfs_remove(kn);
1063 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001064}
1065
1066/**
Tejun Heo6b0afc22014-02-03 14:03:01 -05001067 * kernfs_break_active_protection - break out of active protection
1068 * @kn: the self kernfs_node
1069 *
1070 * The caller must be running off of a kernfs operation which is invoked
1071 * with an active reference - e.g. one of kernfs_ops. Each invocation of
1072 * this function must also be matched with an invocation of
1073 * kernfs_unbreak_active_protection().
1074 *
1075 * This function releases the active reference of @kn the caller is
1076 * holding. Once this function is called, @kn may be removed at any point
1077 * and the caller is solely responsible for ensuring that the objects it
1078 * dereferences are accessible.
1079 */
1080void kernfs_break_active_protection(struct kernfs_node *kn)
1081{
1082 /*
1083 * Take out ourself out of the active ref dependency chain. If
1084 * we're called without an active ref, lockdep will complain.
1085 */
1086 kernfs_put_active(kn);
1087}
1088
1089/**
1090 * kernfs_unbreak_active_protection - undo kernfs_break_active_protection()
1091 * @kn: the self kernfs_node
1092 *
1093 * If kernfs_break_active_protection() was called, this function must be
1094 * invoked before finishing the kernfs operation. Note that while this
1095 * function restores the active reference, it doesn't and can't actually
1096 * restore the active protection - @kn may already or be in the process of
1097 * being removed. Once kernfs_break_active_protection() is invoked, that
1098 * protection is irreversibly gone for the kernfs operation instance.
1099 *
1100 * While this function may be called at any point after
1101 * kernfs_break_active_protection() is invoked, its most useful location
1102 * would be right before the enclosing kernfs operation returns.
1103 */
1104void kernfs_unbreak_active_protection(struct kernfs_node *kn)
1105{
1106 /*
1107 * @kn->active could be in any state; however, the increment we do
1108 * here will be undone as soon as the enclosing kernfs operation
1109 * finishes and this temporary bump can't break anything. If @kn
1110 * is alive, nothing changes. If @kn is being deactivated, the
1111 * soon-to-follow put will either finish deactivation or restore
1112 * deactivated state. If @kn is already removed, the temporary
1113 * bump is guaranteed to be gone before @kn is released.
1114 */
1115 atomic_inc(&kn->active);
1116 if (kernfs_lockdep(kn))
1117 rwsem_acquire(&kn->dep_map, 0, 1, _RET_IP_);
1118}
1119
1120/**
1121 * kernfs_remove_self - remove a kernfs_node from its own method
1122 * @kn: the self kernfs_node to remove
1123 *
1124 * The caller must be running off of a kernfs operation which is invoked
1125 * with an active reference - e.g. one of kernfs_ops. This can be used to
1126 * implement a file operation which deletes itself.
1127 *
1128 * For example, the "delete" file for a sysfs device directory can be
1129 * implemented by invoking kernfs_remove_self() on the "delete" file
1130 * itself. This function breaks the circular dependency of trying to
1131 * deactivate self while holding an active ref itself. It isn't necessary
1132 * to modify the usual removal path to use kernfs_remove_self(). The
1133 * "delete" implementation can simply invoke kernfs_remove_self() on self
1134 * before proceeding with the usual removal path. kernfs will ignore later
1135 * kernfs_remove() on self.
1136 *
1137 * kernfs_remove_self() can be called multiple times concurrently on the
1138 * same kernfs_node. Only the first one actually performs removal and
1139 * returns %true. All others will wait until the kernfs operation which
1140 * won self-removal finishes and return %false. Note that the losers wait
1141 * for the completion of not only the winning kernfs_remove_self() but also
1142 * the whole kernfs_ops which won the arbitration. This can be used to
1143 * guarantee, for example, all concurrent writes to a "delete" file to
1144 * finish only after the whole operation is complete.
1145 */
1146bool kernfs_remove_self(struct kernfs_node *kn)
1147{
1148 bool ret;
1149
1150 mutex_lock(&kernfs_mutex);
1151 kernfs_break_active_protection(kn);
1152
1153 /*
1154 * SUICIDAL is used to arbitrate among competing invocations. Only
1155 * the first one will actually perform removal. When the removal
1156 * is complete, SUICIDED is set and the active ref is restored
1157 * while holding kernfs_mutex. The ones which lost arbitration
1158 * waits for SUICDED && drained which can happen only after the
1159 * enclosing kernfs operation which executed the winning instance
1160 * of kernfs_remove_self() finished.
1161 */
1162 if (!(kn->flags & KERNFS_SUICIDAL)) {
1163 kn->flags |= KERNFS_SUICIDAL;
1164 __kernfs_remove(kn);
1165 kn->flags |= KERNFS_SUICIDED;
1166 ret = true;
1167 } else {
1168 wait_queue_head_t *waitq = &kernfs_root(kn)->deactivate_waitq;
1169 DEFINE_WAIT(wait);
1170
1171 while (true) {
1172 prepare_to_wait(waitq, &wait, TASK_UNINTERRUPTIBLE);
1173
1174 if ((kn->flags & KERNFS_SUICIDED) &&
1175 atomic_read(&kn->active) == KN_DEACTIVATED_BIAS)
1176 break;
1177
1178 mutex_unlock(&kernfs_mutex);
1179 schedule();
1180 mutex_lock(&kernfs_mutex);
1181 }
1182 finish_wait(waitq, &wait);
1183 WARN_ON_ONCE(!RB_EMPTY_NODE(&kn->rb));
1184 ret = false;
1185 }
1186
1187 /*
1188 * This must be done while holding kernfs_mutex; otherwise, waiting
1189 * for SUICIDED && deactivated could finish prematurely.
1190 */
1191 kernfs_unbreak_active_protection(kn);
1192
1193 mutex_unlock(&kernfs_mutex);
1194 return ret;
1195}
1196
1197/**
Tejun Heo324a56e2013-12-11 14:11:53 -05001198 * kernfs_remove_by_name_ns - find a kernfs_node by name and remove it
1199 * @parent: parent of the target
1200 * @name: name of the kernfs_node to remove
1201 * @ns: namespace tag of the kernfs_node to remove
Tejun Heofd7b9f72013-11-28 14:54:33 -05001202 *
Tejun Heo324a56e2013-12-11 14:11:53 -05001203 * Look for the kernfs_node with @name and @ns under @parent and remove it.
1204 * Returns 0 on success, -ENOENT if such entry doesn't exist.
Tejun Heofd7b9f72013-11-28 14:54:33 -05001205 */
Tejun Heo324a56e2013-12-11 14:11:53 -05001206int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
Tejun Heofd7b9f72013-11-28 14:54:33 -05001207 const void *ns)
1208{
Tejun Heo324a56e2013-12-11 14:11:53 -05001209 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001210
Tejun Heo324a56e2013-12-11 14:11:53 -05001211 if (!parent) {
Tejun Heoc637b8a2013-12-11 14:11:58 -05001212 WARN(1, KERN_WARNING "kernfs: can not remove '%s', no directory\n",
Tejun Heofd7b9f72013-11-28 14:54:33 -05001213 name);
1214 return -ENOENT;
1215 }
1216
Tejun Heo988cd7a2014-02-03 14:02:58 -05001217 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001218
Tejun Heo324a56e2013-12-11 14:11:53 -05001219 kn = kernfs_find_ns(parent, name, ns);
1220 if (kn)
Tejun Heo988cd7a2014-02-03 14:02:58 -05001221 __kernfs_remove(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001222
Tejun Heo988cd7a2014-02-03 14:02:58 -05001223 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001224
Tejun Heo324a56e2013-12-11 14:11:53 -05001225 if (kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001226 return 0;
1227 else
1228 return -ENOENT;
1229}
1230
1231/**
1232 * kernfs_rename_ns - move and rename a kernfs_node
Tejun Heo324a56e2013-12-11 14:11:53 -05001233 * @kn: target node
Tejun Heofd7b9f72013-11-28 14:54:33 -05001234 * @new_parent: new parent to put @sd under
1235 * @new_name: new name
1236 * @new_ns: new namespace tag
1237 */
Tejun Heo324a56e2013-12-11 14:11:53 -05001238int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
Tejun Heofd7b9f72013-11-28 14:54:33 -05001239 const char *new_name, const void *new_ns)
1240{
Tejun Heo3eef34a2014-02-07 13:32:07 -05001241 struct kernfs_node *old_parent;
1242 const char *old_name = NULL;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001243 int error;
1244
Tejun Heo3eef34a2014-02-07 13:32:07 -05001245 /* can't move or rename root */
1246 if (!kn->parent)
1247 return -EINVAL;
1248
Tejun Heoae343722014-01-10 08:57:21 -05001249 mutex_lock(&kernfs_mutex);
Tejun Heod0ae3d42013-12-11 16:02:56 -05001250
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001251 error = -ENOENT;
Tejun Heo81c173c2014-02-03 14:03:00 -05001252 if (!kernfs_active(kn) || !kernfs_active(new_parent))
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001253 goto out;
1254
Tejun Heofd7b9f72013-11-28 14:54:33 -05001255 error = 0;
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001256 if ((kn->parent == new_parent) && (kn->ns == new_ns) &&
1257 (strcmp(kn->name, new_name) == 0))
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001258 goto out; /* nothing to rename */
Tejun Heofd7b9f72013-11-28 14:54:33 -05001259
1260 error = -EEXIST;
1261 if (kernfs_find_ns(new_parent, new_name, new_ns))
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001262 goto out;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001263
Tejun Heo324a56e2013-12-11 14:11:53 -05001264 /* rename kernfs_node */
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001265 if (strcmp(kn->name, new_name) != 0) {
Tejun Heofd7b9f72013-11-28 14:54:33 -05001266 error = -ENOMEM;
Andrzej Hajda75287a62015-02-13 14:36:27 -08001267 new_name = kstrdup_const(new_name, GFP_KERNEL);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001268 if (!new_name)
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001269 goto out;
Tejun Heo3eef34a2014-02-07 13:32:07 -05001270 } else {
1271 new_name = NULL;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001272 }
1273
1274 /*
1275 * Move to the appropriate place in the appropriate directories rbtree.
1276 */
Tejun Heoc637b8a2013-12-11 14:11:58 -05001277 kernfs_unlink_sibling(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001278 kernfs_get(new_parent);
Tejun Heo3eef34a2014-02-07 13:32:07 -05001279
1280 /* rename_lock protects ->parent and ->name accessors */
1281 spin_lock_irq(&kernfs_rename_lock);
1282
1283 old_parent = kn->parent;
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001284 kn->parent = new_parent;
Tejun Heo3eef34a2014-02-07 13:32:07 -05001285
1286 kn->ns = new_ns;
1287 if (new_name) {
1288 if (!(kn->flags & KERNFS_STATIC_NAME))
1289 old_name = kn->name;
1290 kn->flags &= ~KERNFS_STATIC_NAME;
1291 kn->name = new_name;
1292 }
1293
1294 spin_unlock_irq(&kernfs_rename_lock);
1295
Tejun Heo9561a892014-02-10 17:57:09 -05001296 kn->hash = kernfs_name_hash(kn->name, kn->ns);
Tejun Heoc637b8a2013-12-11 14:11:58 -05001297 kernfs_link_sibling(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001298
Tejun Heo3eef34a2014-02-07 13:32:07 -05001299 kernfs_put(old_parent);
Andrzej Hajda75287a62015-02-13 14:36:27 -08001300 kfree_const(old_name);
Tejun Heo3eef34a2014-02-07 13:32:07 -05001301
Tejun Heofd7b9f72013-11-28 14:54:33 -05001302 error = 0;
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001303 out:
Tejun Heoa797bfc2013-12-11 14:11:57 -05001304 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001305 return error;
1306}
1307
Tejun Heofd7b9f72013-11-28 14:54:33 -05001308/* Relationship between s_mode and the DT_xxx types */
Tejun Heo324a56e2013-12-11 14:11:53 -05001309static inline unsigned char dt_type(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001310{
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001311 return (kn->mode >> 12) & 15;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001312}
1313
Tejun Heoc637b8a2013-12-11 14:11:58 -05001314static int kernfs_dir_fop_release(struct inode *inode, struct file *filp)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001315{
1316 kernfs_put(filp->private_data);
1317 return 0;
1318}
1319
Tejun Heoc637b8a2013-12-11 14:11:58 -05001320static struct kernfs_node *kernfs_dir_pos(const void *ns,
Tejun Heo324a56e2013-12-11 14:11:53 -05001321 struct kernfs_node *parent, loff_t hash, struct kernfs_node *pos)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001322{
1323 if (pos) {
Tejun Heo81c173c2014-02-03 14:03:00 -05001324 int valid = kernfs_active(pos) &&
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001325 pos->parent == parent && hash == pos->hash;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001326 kernfs_put(pos);
1327 if (!valid)
1328 pos = NULL;
1329 }
1330 if (!pos && (hash > 1) && (hash < INT_MAX)) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001331 struct rb_node *node = parent->dir.children.rb_node;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001332 while (node) {
Tejun Heo324a56e2013-12-11 14:11:53 -05001333 pos = rb_to_kn(node);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001334
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001335 if (hash < pos->hash)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001336 node = node->rb_left;
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001337 else if (hash > pos->hash)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001338 node = node->rb_right;
1339 else
1340 break;
1341 }
1342 }
Tejun Heob9c9dad2014-02-03 14:09:11 -05001343 /* Skip over entries which are dying/dead or in the wrong namespace */
1344 while (pos && (!kernfs_active(pos) || pos->ns != ns)) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001345 struct rb_node *node = rb_next(&pos->rb);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001346 if (!node)
1347 pos = NULL;
1348 else
Tejun Heo324a56e2013-12-11 14:11:53 -05001349 pos = rb_to_kn(node);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001350 }
1351 return pos;
1352}
1353
Tejun Heoc637b8a2013-12-11 14:11:58 -05001354static struct kernfs_node *kernfs_dir_next_pos(const void *ns,
Tejun Heo324a56e2013-12-11 14:11:53 -05001355 struct kernfs_node *parent, ino_t ino, struct kernfs_node *pos)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001356{
Tejun Heoc637b8a2013-12-11 14:11:58 -05001357 pos = kernfs_dir_pos(ns, parent, ino, pos);
Tejun Heob9c9dad2014-02-03 14:09:11 -05001358 if (pos) {
Tejun Heofd7b9f72013-11-28 14:54:33 -05001359 do {
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001360 struct rb_node *node = rb_next(&pos->rb);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001361 if (!node)
1362 pos = NULL;
1363 else
Tejun Heo324a56e2013-12-11 14:11:53 -05001364 pos = rb_to_kn(node);
Tejun Heob9c9dad2014-02-03 14:09:11 -05001365 } while (pos && (!kernfs_active(pos) || pos->ns != ns));
1366 }
Tejun Heofd7b9f72013-11-28 14:54:33 -05001367 return pos;
1368}
1369
Tejun Heoc637b8a2013-12-11 14:11:58 -05001370static int kernfs_fop_readdir(struct file *file, struct dir_context *ctx)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001371{
1372 struct dentry *dentry = file->f_path.dentry;
Tejun Heo324a56e2013-12-11 14:11:53 -05001373 struct kernfs_node *parent = dentry->d_fsdata;
1374 struct kernfs_node *pos = file->private_data;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001375 const void *ns = NULL;
1376
1377 if (!dir_emit_dots(file, ctx))
1378 return 0;
Tejun Heoa797bfc2013-12-11 14:11:57 -05001379 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001380
Tejun Heo324a56e2013-12-11 14:11:53 -05001381 if (kernfs_ns_enabled(parent))
Tejun Heoc525aad2013-12-11 14:11:55 -05001382 ns = kernfs_info(dentry->d_sb)->ns;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001383
Tejun Heoc637b8a2013-12-11 14:11:58 -05001384 for (pos = kernfs_dir_pos(ns, parent, ctx->pos, pos);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001385 pos;
Tejun Heoc637b8a2013-12-11 14:11:58 -05001386 pos = kernfs_dir_next_pos(ns, parent, ctx->pos, pos)) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001387 const char *name = pos->name;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001388 unsigned int type = dt_type(pos);
1389 int len = strlen(name);
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001390 ino_t ino = pos->ino;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001391
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001392 ctx->pos = pos->hash;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001393 file->private_data = pos;
1394 kernfs_get(pos);
1395
Tejun Heoa797bfc2013-12-11 14:11:57 -05001396 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001397 if (!dir_emit(ctx, name, len, ino, type))
1398 return 0;
Tejun Heoa797bfc2013-12-11 14:11:57 -05001399 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001400 }
Tejun Heoa797bfc2013-12-11 14:11:57 -05001401 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001402 file->private_data = NULL;
1403 ctx->pos = INT_MAX;
1404 return 0;
1405}
1406
Tejun Heoc637b8a2013-12-11 14:11:58 -05001407static loff_t kernfs_dir_fop_llseek(struct file *file, loff_t offset,
1408 int whence)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001409{
1410 struct inode *inode = file_inode(file);
1411 loff_t ret;
1412
1413 mutex_lock(&inode->i_mutex);
1414 ret = generic_file_llseek(file, offset, whence);
1415 mutex_unlock(&inode->i_mutex);
1416
1417 return ret;
1418}
1419
Tejun Heoa797bfc2013-12-11 14:11:57 -05001420const struct file_operations kernfs_dir_fops = {
Tejun Heofd7b9f72013-11-28 14:54:33 -05001421 .read = generic_read_dir,
Tejun Heoc637b8a2013-12-11 14:11:58 -05001422 .iterate = kernfs_fop_readdir,
1423 .release = kernfs_dir_fop_release,
1424 .llseek = kernfs_dir_fop_llseek,
Tejun Heofd7b9f72013-11-28 14:54:33 -05001425};