blob: 798f0f03b62bbf77e20dc9905e5c6e9f959fbc27 [file] [log] [blame]
Thomas Gleixner55716d22019-06-01 10:08:42 +02001// SPDX-License-Identifier: GPL-2.0-only
Tejun Heob8441ed2013-11-24 09:54:58 -05002/*
3 * fs/kernfs/dir.c - kernfs directory implementation
4 *
5 * Copyright (c) 2001-3 Patrick Mochel
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007, 2013 Tejun Heo <tj@kernel.org>
Tejun Heob8441ed2013-11-24 09:54:58 -05008 */
Tejun Heofd7b9f72013-11-28 14:54:33 -05009
Tejun Heoabd54f02014-02-03 14:02:55 -050010#include <linux/sched.h>
Tejun Heofd7b9f72013-11-28 14:54:33 -050011#include <linux/fs.h>
12#include <linux/namei.h>
13#include <linux/idr.h>
14#include <linux/slab.h>
15#include <linux/security.h>
16#include <linux/hash.h>
17
18#include "kernfs-internal.h"
19
Tejun Heoa797bfc2013-12-11 14:11:57 -050020DEFINE_MUTEX(kernfs_mutex);
Tejun Heo3eef34a2014-02-07 13:32:07 -050021static DEFINE_SPINLOCK(kernfs_rename_lock); /* kn->parent and ->name */
22static char kernfs_pr_cont_buf[PATH_MAX]; /* protected by rename_lock */
Shaohua Li7d350792017-07-12 11:49:46 -070023static DEFINE_SPINLOCK(kernfs_idr_lock); /* root->ino_idr */
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{
Konstantin Khlebnikov17627152017-02-08 14:28:55 +030044 if (!kn)
45 return strlcpy(buf, "(null)", buflen);
46
Tejun Heo3eef34a2014-02-07 13:32:07 -050047 return strlcpy(buf, kn->parent ? kn->name : "/", buflen);
48}
49
Aditya Kali9f6df572016-01-29 02:54:04 -060050/* kernfs_node_depth - compute depth from @from to @to */
51static size_t kernfs_depth(struct kernfs_node *from, struct kernfs_node *to)
Tejun Heo3eef34a2014-02-07 13:32:07 -050052{
Aditya Kali9f6df572016-01-29 02:54:04 -060053 size_t depth = 0;
Tejun Heo3eef34a2014-02-07 13:32:07 -050054
Aditya Kali9f6df572016-01-29 02:54:04 -060055 while (to->parent && to != from) {
56 depth++;
57 to = to->parent;
58 }
59 return depth;
60}
Tejun Heo3eef34a2014-02-07 13:32:07 -050061
Aditya Kali9f6df572016-01-29 02:54:04 -060062static struct kernfs_node *kernfs_common_ancestor(struct kernfs_node *a,
63 struct kernfs_node *b)
64{
65 size_t da, db;
66 struct kernfs_root *ra = kernfs_root(a), *rb = kernfs_root(b);
Tejun Heo3eef34a2014-02-07 13:32:07 -050067
Aditya Kali9f6df572016-01-29 02:54:04 -060068 if (ra != rb)
69 return NULL;
70
71 da = kernfs_depth(ra->kn, a);
72 db = kernfs_depth(rb->kn, b);
73
74 while (da > db) {
75 a = a->parent;
76 da--;
77 }
78 while (db > da) {
79 b = b->parent;
80 db--;
81 }
82
83 /* worst case b and a will be the same at root */
84 while (b != a) {
85 b = b->parent;
86 a = a->parent;
87 }
88
89 return a;
90}
91
92/**
93 * kernfs_path_from_node_locked - find a pseudo-absolute path to @kn_to,
94 * where kn_from is treated as root of the path.
95 * @kn_from: kernfs node which should be treated as root for the path
96 * @kn_to: kernfs node to which path is needed
97 * @buf: buffer to copy the path into
98 * @buflen: size of @buf
99 *
100 * We need to handle couple of scenarios here:
101 * [1] when @kn_from is an ancestor of @kn_to at some level
102 * kn_from: /n1/n2/n3
103 * kn_to: /n1/n2/n3/n4/n5
104 * result: /n4/n5
105 *
106 * [2] when @kn_from is on a different hierarchy and we need to find common
107 * ancestor between @kn_from and @kn_to.
108 * kn_from: /n1/n2/n3/n4
109 * kn_to: /n1/n2/n5
110 * result: /../../n5
111 * OR
112 * kn_from: /n1/n2/n3/n4/n5 [depth=5]
113 * kn_to: /n1/n2/n3 [depth=3]
114 * result: /../..
115 *
Konstantin Khlebnikov17627152017-02-08 14:28:55 +0300116 * [3] when @kn_to is NULL result will be "(null)"
117 *
Tejun Heo3abb1d92016-08-10 11:23:44 -0400118 * Returns the length of the full path. If the full length is equal to or
119 * greater than @buflen, @buf contains the truncated path with the trailing
120 * '\0'. On error, -errno is returned.
Aditya Kali9f6df572016-01-29 02:54:04 -0600121 */
122static int kernfs_path_from_node_locked(struct kernfs_node *kn_to,
123 struct kernfs_node *kn_from,
124 char *buf, size_t buflen)
125{
126 struct kernfs_node *kn, *common;
127 const char parent_str[] = "/..";
Tejun Heo3abb1d92016-08-10 11:23:44 -0400128 size_t depth_from, depth_to, len = 0;
129 int i, j;
Aditya Kali9f6df572016-01-29 02:54:04 -0600130
Konstantin Khlebnikov17627152017-02-08 14:28:55 +0300131 if (!kn_to)
132 return strlcpy(buf, "(null)", buflen);
133
Aditya Kali9f6df572016-01-29 02:54:04 -0600134 if (!kn_from)
135 kn_from = kernfs_root(kn_to)->kn;
136
137 if (kn_from == kn_to)
138 return strlcpy(buf, "/", buflen);
139
Jia-Ju Baibbe70e42019-07-24 10:22:42 +0800140 if (!buf)
141 return -EINVAL;
142
Aditya Kali9f6df572016-01-29 02:54:04 -0600143 common = kernfs_common_ancestor(kn_from, kn_to);
144 if (WARN_ON(!common))
Tejun Heo3abb1d92016-08-10 11:23:44 -0400145 return -EINVAL;
Aditya Kali9f6df572016-01-29 02:54:04 -0600146
147 depth_to = kernfs_depth(common, kn_to);
148 depth_from = kernfs_depth(common, kn_from);
149
Jia-Ju Baibbe70e42019-07-24 10:22:42 +0800150 buf[0] = '\0';
Aditya Kali9f6df572016-01-29 02:54:04 -0600151
152 for (i = 0; i < depth_from; i++)
153 len += strlcpy(buf + len, parent_str,
154 len < buflen ? buflen - len : 0);
155
156 /* Calculate how many bytes we need for the rest */
Tejun Heo3abb1d92016-08-10 11:23:44 -0400157 for (i = depth_to - 1; i >= 0; i--) {
158 for (kn = kn_to, j = 0; j < i; j++)
159 kn = kn->parent;
160 len += strlcpy(buf + len, "/",
161 len < buflen ? buflen - len : 0);
162 len += strlcpy(buf + len, kn->name,
163 len < buflen ? buflen - len : 0);
Aditya Kali9f6df572016-01-29 02:54:04 -0600164 }
165
Tejun Heo3abb1d92016-08-10 11:23:44 -0400166 return len;
Tejun Heo3eef34a2014-02-07 13:32:07 -0500167}
168
169/**
170 * kernfs_name - obtain the name of a given node
171 * @kn: kernfs_node of interest
172 * @buf: buffer to copy @kn's name into
173 * @buflen: size of @buf
174 *
175 * Copies the name of @kn into @buf of @buflen bytes. The behavior is
176 * similar to strlcpy(). It returns the length of @kn's name and if @buf
177 * isn't long enough, it's filled upto @buflen-1 and nul terminated.
178 *
Konstantin Khlebnikov17627152017-02-08 14:28:55 +0300179 * Fills buffer with "(null)" if @kn is NULL.
180 *
Tejun Heo3eef34a2014-02-07 13:32:07 -0500181 * This function can be called from any context.
182 */
183int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
184{
185 unsigned long flags;
186 int ret;
187
188 spin_lock_irqsave(&kernfs_rename_lock, flags);
189 ret = kernfs_name_locked(kn, buf, buflen);
190 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
191 return ret;
192}
193
194/**
Aditya Kali9f6df572016-01-29 02:54:04 -0600195 * kernfs_path_from_node - build path of node @to relative to @from.
196 * @from: parent kernfs_node relative to which we need to build the path
197 * @to: kernfs_node of interest
198 * @buf: buffer to copy @to's path into
199 * @buflen: size of @buf
200 *
201 * Builds @to's path relative to @from in @buf. @from and @to must
202 * be on the same kernfs-root. If @from is not parent of @to, then a relative
203 * path (which includes '..'s) as needed to reach from @from to @to is
204 * returned.
205 *
Tejun Heo3abb1d92016-08-10 11:23:44 -0400206 * Returns the length of the full path. If the full length is equal to or
207 * greater than @buflen, @buf contains the truncated path with the trailing
208 * '\0'. On error, -errno is returned.
Aditya Kali9f6df572016-01-29 02:54:04 -0600209 */
210int kernfs_path_from_node(struct kernfs_node *to, struct kernfs_node *from,
211 char *buf, size_t buflen)
212{
213 unsigned long flags;
214 int ret;
215
216 spin_lock_irqsave(&kernfs_rename_lock, flags);
217 ret = kernfs_path_from_node_locked(to, from, buf, buflen);
218 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
219 return ret;
220}
221EXPORT_SYMBOL_GPL(kernfs_path_from_node);
222
223/**
Tejun Heo3eef34a2014-02-07 13:32:07 -0500224 * pr_cont_kernfs_name - pr_cont name of a kernfs_node
225 * @kn: kernfs_node of interest
226 *
227 * This function can be called from any context.
228 */
229void pr_cont_kernfs_name(struct kernfs_node *kn)
230{
231 unsigned long flags;
232
233 spin_lock_irqsave(&kernfs_rename_lock, flags);
234
235 kernfs_name_locked(kn, kernfs_pr_cont_buf, sizeof(kernfs_pr_cont_buf));
236 pr_cont("%s", kernfs_pr_cont_buf);
237
238 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
239}
240
241/**
242 * pr_cont_kernfs_path - pr_cont path of a kernfs_node
243 * @kn: kernfs_node of interest
244 *
245 * This function can be called from any context.
246 */
247void pr_cont_kernfs_path(struct kernfs_node *kn)
248{
249 unsigned long flags;
Aditya Kali9f6df572016-01-29 02:54:04 -0600250 int sz;
Tejun Heo3eef34a2014-02-07 13:32:07 -0500251
252 spin_lock_irqsave(&kernfs_rename_lock, flags);
253
Aditya Kali9f6df572016-01-29 02:54:04 -0600254 sz = kernfs_path_from_node_locked(kn, NULL, kernfs_pr_cont_buf,
255 sizeof(kernfs_pr_cont_buf));
256 if (sz < 0) {
257 pr_cont("(error)");
258 goto out;
259 }
Tejun Heo3eef34a2014-02-07 13:32:07 -0500260
Aditya Kali9f6df572016-01-29 02:54:04 -0600261 if (sz >= sizeof(kernfs_pr_cont_buf)) {
262 pr_cont("(name too long)");
263 goto out;
264 }
265
266 pr_cont("%s", kernfs_pr_cont_buf);
267
268out:
Tejun Heo3eef34a2014-02-07 13:32:07 -0500269 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
270}
271
272/**
273 * kernfs_get_parent - determine the parent node and pin it
274 * @kn: kernfs_node of interest
275 *
276 * Determines @kn's parent, pins and returns it. This function can be
277 * called from any context.
278 */
279struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
280{
281 struct kernfs_node *parent;
282 unsigned long flags;
283
284 spin_lock_irqsave(&kernfs_rename_lock, flags);
285 parent = kn->parent;
286 kernfs_get(parent);
287 spin_unlock_irqrestore(&kernfs_rename_lock, flags);
288
289 return parent;
290}
291
Tejun Heofd7b9f72013-11-28 14:54:33 -0500292/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500293 * kernfs_name_hash
Tejun Heofd7b9f72013-11-28 14:54:33 -0500294 * @name: Null terminated string to hash
295 * @ns: Namespace tag to hash
296 *
297 * Returns 31 bit hash of ns + name (so it fits in an off_t )
298 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500299static unsigned int kernfs_name_hash(const char *name, const void *ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500300{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700301 unsigned long hash = init_name_hash(ns);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500302 unsigned int len = strlen(name);
303 while (len--)
304 hash = partial_name_hash(*name++, hash);
Linus Torvalds8387ff22016-06-10 07:51:30 -0700305 hash = end_name_hash(hash);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500306 hash &= 0x7fffffffU;
307 /* Reserve hash numbers 0, 1 and INT_MAX for magic directory entries */
Richard Cochran88391d42014-03-05 17:10:52 +0100308 if (hash < 2)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500309 hash += 2;
310 if (hash >= INT_MAX)
311 hash = INT_MAX - 1;
312 return hash;
313}
314
Tejun Heoc637b8a2013-12-11 14:11:58 -0500315static int kernfs_name_compare(unsigned int hash, const char *name,
316 const void *ns, const struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500317{
Rasmus Villemoes72392ed2014-12-05 23:41:33 +0100318 if (hash < kn->hash)
319 return -1;
320 if (hash > kn->hash)
321 return 1;
322 if (ns < kn->ns)
323 return -1;
324 if (ns > kn->ns)
325 return 1;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500326 return strcmp(name, kn->name);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500327}
328
Tejun Heoc637b8a2013-12-11 14:11:58 -0500329static int kernfs_sd_compare(const struct kernfs_node *left,
330 const struct kernfs_node *right)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500331{
Tejun Heoc637b8a2013-12-11 14:11:58 -0500332 return kernfs_name_compare(left->hash, left->name, left->ns, right);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500333}
334
335/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500336 * kernfs_link_sibling - link kernfs_node into sibling rbtree
Tejun Heo324a56e2013-12-11 14:11:53 -0500337 * @kn: kernfs_node of interest
Tejun Heofd7b9f72013-11-28 14:54:33 -0500338 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500339 * Link @kn into its sibling rbtree which starts from
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500340 * @kn->parent->dir.children.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500341 *
342 * Locking:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500343 * mutex_lock(kernfs_mutex)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500344 *
345 * RETURNS:
346 * 0 on susccess -EEXIST on failure.
347 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500348static int kernfs_link_sibling(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500349{
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500350 struct rb_node **node = &kn->parent->dir.children.rb_node;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500351 struct rb_node *parent = NULL;
352
Tejun Heofd7b9f72013-11-28 14:54:33 -0500353 while (*node) {
Tejun Heo324a56e2013-12-11 14:11:53 -0500354 struct kernfs_node *pos;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500355 int result;
356
Tejun Heo324a56e2013-12-11 14:11:53 -0500357 pos = rb_to_kn(*node);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500358 parent = *node;
Tejun Heoc637b8a2013-12-11 14:11:58 -0500359 result = kernfs_sd_compare(kn, pos);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500360 if (result < 0)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500361 node = &pos->rb.rb_left;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500362 else if (result > 0)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500363 node = &pos->rb.rb_right;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500364 else
365 return -EEXIST;
366 }
Jianyu Zhanc1befb82014-04-17 17:52:10 +0800367
Tejun Heofd7b9f72013-11-28 14:54:33 -0500368 /* add new node and rebalance the tree */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500369 rb_link_node(&kn->rb, parent, node);
370 rb_insert_color(&kn->rb, &kn->parent->dir.children);
Jianyu Zhanc1befb82014-04-17 17:52:10 +0800371
372 /* successfully added, account subdir number */
373 if (kernfs_type(kn) == KERNFS_DIR)
374 kn->parent->dir.subdirs++;
375
Tejun Heofd7b9f72013-11-28 14:54:33 -0500376 return 0;
377}
378
379/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500380 * kernfs_unlink_sibling - unlink kernfs_node from sibling rbtree
Tejun Heo324a56e2013-12-11 14:11:53 -0500381 * @kn: kernfs_node of interest
Tejun Heofd7b9f72013-11-28 14:54:33 -0500382 *
Tejun Heo35beab02014-02-03 14:02:56 -0500383 * Try to unlink @kn from its sibling rbtree which starts from
384 * kn->parent->dir.children. Returns %true if @kn was actually
385 * removed, %false if @kn wasn't on the rbtree.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500386 *
387 * Locking:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500388 * mutex_lock(kernfs_mutex)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500389 */
Tejun Heo35beab02014-02-03 14:02:56 -0500390static bool kernfs_unlink_sibling(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500391{
Tejun Heo35beab02014-02-03 14:02:56 -0500392 if (RB_EMPTY_NODE(&kn->rb))
393 return false;
394
Tejun Heodf23fc32013-12-11 14:11:56 -0500395 if (kernfs_type(kn) == KERNFS_DIR)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500396 kn->parent->dir.subdirs--;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500397
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500398 rb_erase(&kn->rb, &kn->parent->dir.children);
Tejun Heo35beab02014-02-03 14:02:56 -0500399 RB_CLEAR_NODE(&kn->rb);
400 return true;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500401}
402
403/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500404 * kernfs_get_active - get an active reference to kernfs_node
Tejun Heo324a56e2013-12-11 14:11:53 -0500405 * @kn: kernfs_node to get an active reference to
Tejun Heofd7b9f72013-11-28 14:54:33 -0500406 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500407 * Get an active reference of @kn. This function is noop if @kn
Tejun Heofd7b9f72013-11-28 14:54:33 -0500408 * is NULL.
409 *
410 * RETURNS:
Tejun Heo324a56e2013-12-11 14:11:53 -0500411 * Pointer to @kn on success, NULL on failure.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500412 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500413struct kernfs_node *kernfs_get_active(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500414{
Tejun Heo324a56e2013-12-11 14:11:53 -0500415 if (unlikely(!kn))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500416 return NULL;
417
Greg Kroah-Hartmanf4b3e632014-01-13 14:13:39 -0800418 if (!atomic_inc_unless_negative(&kn->active))
419 return NULL;
420
Tejun Heo182fd642014-02-03 14:02:59 -0500421 if (kernfs_lockdep(kn))
Tejun Heo324a56e2013-12-11 14:11:53 -0500422 rwsem_acquire_read(&kn->dep_map, 0, 1, _RET_IP_);
Greg Kroah-Hartmanf4b3e632014-01-13 14:13:39 -0800423 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500424}
425
426/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500427 * kernfs_put_active - put an active reference to kernfs_node
Tejun Heo324a56e2013-12-11 14:11:53 -0500428 * @kn: kernfs_node to put an active reference to
Tejun Heofd7b9f72013-11-28 14:54:33 -0500429 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500430 * Put an active reference to @kn. This function is noop if @kn
Tejun Heofd7b9f72013-11-28 14:54:33 -0500431 * is NULL.
432 */
Tejun Heoc637b8a2013-12-11 14:11:58 -0500433void kernfs_put_active(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500434{
435 int v;
436
Tejun Heo324a56e2013-12-11 14:11:53 -0500437 if (unlikely(!kn))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500438 return;
439
Tejun Heo182fd642014-02-03 14:02:59 -0500440 if (kernfs_lockdep(kn))
Tejun Heo324a56e2013-12-11 14:11:53 -0500441 rwsem_release(&kn->dep_map, 1, _RET_IP_);
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500442 v = atomic_dec_return(&kn->active);
Tejun Heodf23fc32013-12-11 14:11:56 -0500443 if (likely(v != KN_DEACTIVATED_BIAS))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500444 return;
445
Peng Wang2fd60da2019-07-08 23:16:11 +0800446 wake_up_all(&kernfs_root(kn)->deactivate_waitq);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500447}
448
449/**
Tejun Heo81c173c2014-02-03 14:03:00 -0500450 * kernfs_drain - drain kernfs_node
451 * @kn: kernfs_node to drain
Tejun Heofd7b9f72013-11-28 14:54:33 -0500452 *
Tejun Heo81c173c2014-02-03 14:03:00 -0500453 * Drain existing usages and nuke all existing mmaps of @kn. Mutiple
454 * removers may invoke this function concurrently on @kn and all will
455 * return after draining is complete.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500456 */
Tejun Heo81c173c2014-02-03 14:03:00 -0500457static void kernfs_drain(struct kernfs_node *kn)
Tejun Heo35beab02014-02-03 14:02:56 -0500458 __releases(&kernfs_mutex) __acquires(&kernfs_mutex)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500459{
Tejun Heoabd54f02014-02-03 14:02:55 -0500460 struct kernfs_root *root = kernfs_root(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500461
Tejun Heo35beab02014-02-03 14:02:56 -0500462 lockdep_assert_held(&kernfs_mutex);
Tejun Heo81c173c2014-02-03 14:03:00 -0500463 WARN_ON_ONCE(kernfs_active(kn));
Tejun Heo35beab02014-02-03 14:02:56 -0500464
465 mutex_unlock(&kernfs_mutex);
466
Tejun Heo182fd642014-02-03 14:02:59 -0500467 if (kernfs_lockdep(kn)) {
Tejun Heoa6607932014-02-03 14:02:54 -0500468 rwsem_acquire(&kn->dep_map, 0, 0, _RET_IP_);
Tejun Heo35beab02014-02-03 14:02:56 -0500469 if (atomic_read(&kn->active) != KN_DEACTIVATED_BIAS)
470 lock_contended(&kn->dep_map, _RET_IP_);
471 }
Greg Kroah-Hartman08901472014-01-13 14:39:52 -0800472
Tejun Heo35beab02014-02-03 14:02:56 -0500473 /* but everyone should wait for draining */
Tejun Heoabd54f02014-02-03 14:02:55 -0500474 wait_event(root->deactivate_waitq,
475 atomic_read(&kn->active) == KN_DEACTIVATED_BIAS);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500476
Tejun Heo182fd642014-02-03 14:02:59 -0500477 if (kernfs_lockdep(kn)) {
Tejun Heoa6607932014-02-03 14:02:54 -0500478 lock_acquired(&kn->dep_map, _RET_IP_);
479 rwsem_release(&kn->dep_map, 1, _RET_IP_);
480 }
Tejun Heo35beab02014-02-03 14:02:56 -0500481
Tejun Heo0e67db22016-12-27 14:49:03 -0500482 kernfs_drain_open_files(kn);
Tejun Heoccf02aa2014-02-03 14:02:57 -0500483
Tejun Heo35beab02014-02-03 14:02:56 -0500484 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500485}
486
Tejun Heofd7b9f72013-11-28 14:54:33 -0500487/**
Tejun Heo324a56e2013-12-11 14:11:53 -0500488 * kernfs_get - get a reference count on a kernfs_node
489 * @kn: the target kernfs_node
Tejun Heofd7b9f72013-11-28 14:54:33 -0500490 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500491void kernfs_get(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500492{
Tejun Heo324a56e2013-12-11 14:11:53 -0500493 if (kn) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500494 WARN_ON(!atomic_read(&kn->count));
495 atomic_inc(&kn->count);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500496 }
497}
498EXPORT_SYMBOL_GPL(kernfs_get);
499
500/**
Tejun Heo324a56e2013-12-11 14:11:53 -0500501 * kernfs_put - put a reference count on a kernfs_node
502 * @kn: the target kernfs_node
Tejun Heofd7b9f72013-11-28 14:54:33 -0500503 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500504 * Put a reference count of @kn and destroy it if it reached zero.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500505 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500506void kernfs_put(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500507{
Tejun Heo324a56e2013-12-11 14:11:53 -0500508 struct kernfs_node *parent;
Tejun Heoba7443b2013-11-28 14:54:40 -0500509 struct kernfs_root *root;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500510
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500511 if (!kn || !atomic_dec_and_test(&kn->count))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500512 return;
Tejun Heo324a56e2013-12-11 14:11:53 -0500513 root = kernfs_root(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500514 repeat:
Tejun Heo81c173c2014-02-03 14:03:00 -0500515 /*
516 * Moving/renaming is always done while holding reference.
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500517 * kn->parent won't change beneath us.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500518 */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500519 parent = kn->parent;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500520
Tejun Heo81c173c2014-02-03 14:03:00 -0500521 WARN_ONCE(atomic_read(&kn->active) != KN_DEACTIVATED_BIAS,
522 "kernfs_put: %s/%s: released with incorrect active_ref %d\n",
523 parent ? parent->name : "", kn->name, atomic_read(&kn->active));
Tejun Heofd7b9f72013-11-28 14:54:33 -0500524
Tejun Heodf23fc32013-12-11 14:11:56 -0500525 if (kernfs_type(kn) == KERNFS_LINK)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500526 kernfs_put(kn->symlink.target_kn);
Tejun Heodfeb07502015-02-13 14:36:31 -0800527
528 kfree_const(kn->name);
529
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500530 if (kn->iattr) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500531 simple_xattrs_free(&kn->iattr->xattrs);
Ayush Mittal26e28d62019-02-06 10:25:42 +0530532 kmem_cache_free(kernfs_iattrs_cache, kn->iattr);
Tejun Heo23223922013-11-23 17:40:02 -0500533 }
Shaohua Li7d350792017-07-12 11:49:46 -0700534 spin_lock(&kernfs_idr_lock);
Shaohua Lic53cd492017-07-12 11:49:50 -0700535 idr_remove(&root->ino_idr, kn->id.ino);
Shaohua Li7d350792017-07-12 11:49:46 -0700536 spin_unlock(&kernfs_idr_lock);
Tejun Heoa797bfc2013-12-11 14:11:57 -0500537 kmem_cache_free(kernfs_node_cache, kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500538
Tejun Heo324a56e2013-12-11 14:11:53 -0500539 kn = parent;
540 if (kn) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500541 if (atomic_dec_and_test(&kn->count))
Tejun Heoba7443b2013-11-28 14:54:40 -0500542 goto repeat;
543 } else {
Tejun Heo324a56e2013-12-11 14:11:53 -0500544 /* just released the root kn, free @root too */
Shaohua Li7d350792017-07-12 11:49:46 -0700545 idr_destroy(&root->ino_idr);
Tejun Heoba7443b2013-11-28 14:54:40 -0500546 kfree(root);
547 }
Tejun Heofd7b9f72013-11-28 14:54:33 -0500548}
549EXPORT_SYMBOL_GPL(kernfs_put);
550
Tejun Heoc637b8a2013-12-11 14:11:58 -0500551static int kernfs_dop_revalidate(struct dentry *dentry, unsigned int flags)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500552{
Tejun Heo324a56e2013-12-11 14:11:53 -0500553 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500554
555 if (flags & LOOKUP_RCU)
556 return -ECHILD;
557
Tejun Heo19bbb922013-12-11 16:02:59 -0500558 /* Always perform fresh lookup for negatives */
David Howells2b0143b2015-03-17 22:25:59 +0000559 if (d_really_is_negative(dentry))
Tejun Heo19bbb922013-12-11 16:02:59 -0500560 goto out_bad_unlocked;
561
Shaohua Li319ba912017-07-12 11:49:49 -0700562 kn = kernfs_dentry_node(dentry);
Tejun Heoa797bfc2013-12-11 14:11:57 -0500563 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500564
Tejun Heo81c173c2014-02-03 14:03:00 -0500565 /* The kernfs node has been deactivated */
566 if (!kernfs_active(kn))
Tejun Heofd7b9f72013-11-28 14:54:33 -0500567 goto out_bad;
568
Tejun Heoc637b8a2013-12-11 14:11:58 -0500569 /* The kernfs node has been moved? */
Shaohua Li319ba912017-07-12 11:49:49 -0700570 if (kernfs_dentry_node(dentry->d_parent) != kn->parent)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500571 goto out_bad;
572
Tejun Heoc637b8a2013-12-11 14:11:58 -0500573 /* The kernfs node has been renamed */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500574 if (strcmp(dentry->d_name.name, kn->name) != 0)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500575 goto out_bad;
576
Tejun Heoc637b8a2013-12-11 14:11:58 -0500577 /* The kernfs node has been moved to a different namespace */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500578 if (kn->parent && kernfs_ns_enabled(kn->parent) &&
Tejun Heoc525aad2013-12-11 14:11:55 -0500579 kernfs_info(dentry->d_sb)->ns != kn->ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500580 goto out_bad;
581
Tejun Heoa797bfc2013-12-11 14:11:57 -0500582 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500583 return 1;
584out_bad:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500585 mutex_unlock(&kernfs_mutex);
Tejun Heo19bbb922013-12-11 16:02:59 -0500586out_bad_unlocked:
Tejun Heofd7b9f72013-11-28 14:54:33 -0500587 return 0;
588}
589
Tejun Heoa797bfc2013-12-11 14:11:57 -0500590const struct dentry_operations kernfs_dops = {
Tejun Heoc637b8a2013-12-11 14:11:58 -0500591 .d_revalidate = kernfs_dop_revalidate,
Tejun Heofd7b9f72013-11-28 14:54:33 -0500592};
593
Tejun Heo0c23b222014-02-03 14:09:15 -0500594/**
595 * kernfs_node_from_dentry - determine kernfs_node associated with a dentry
596 * @dentry: the dentry in question
597 *
598 * Return the kernfs_node associated with @dentry. If @dentry is not a
599 * kernfs one, %NULL is returned.
600 *
601 * While the returned kernfs_node will stay accessible as long as @dentry
602 * is accessible, the returned node can be in any state and the caller is
603 * fully responsible for determining what's accessible.
604 */
605struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
606{
Shaohua Li319ba912017-07-12 11:49:49 -0700607 if (dentry->d_sb->s_op == &kernfs_sops &&
608 !d_really_is_negative(dentry))
609 return kernfs_dentry_node(dentry);
Tejun Heo0c23b222014-02-03 14:09:15 -0500610 return NULL;
611}
612
Tejun Heodb4aad22014-01-17 09:58:25 -0500613static struct kernfs_node *__kernfs_new_node(struct kernfs_root *root,
Ondrej Mosnaceke19dfdc2019-02-22 15:57:18 +0100614 struct kernfs_node *parent,
Tejun Heodb4aad22014-01-17 09:58:25 -0500615 const char *name, umode_t mode,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000616 kuid_t uid, kgid_t gid,
Tejun Heodb4aad22014-01-17 09:58:25 -0500617 unsigned flags)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500618{
Tejun Heo324a56e2013-12-11 14:11:53 -0500619 struct kernfs_node *kn;
Shaohua Li4a3ef682017-07-12 11:49:47 -0700620 u32 gen;
Tejun Heobc755552013-11-28 14:54:41 -0500621 int ret;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500622
Tejun Heodfeb07502015-02-13 14:36:31 -0800623 name = kstrdup_const(name, GFP_KERNEL);
624 if (!name)
625 return NULL;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500626
Tejun Heoa797bfc2013-12-11 14:11:57 -0500627 kn = kmem_cache_zalloc(kernfs_node_cache, GFP_KERNEL);
Tejun Heo324a56e2013-12-11 14:11:53 -0500628 if (!kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500629 goto err_out1;
630
Shaohua Li7d350792017-07-12 11:49:46 -0700631 idr_preload(GFP_KERNEL);
632 spin_lock(&kernfs_idr_lock);
Shaohua Li4a3ef682017-07-12 11:49:47 -0700633 ret = idr_alloc_cyclic(&root->ino_idr, kn, 1, 0, GFP_ATOMIC);
Tejun Heoe23f5682019-11-04 15:54:29 -0800634 if (ret >= 0 && ret < root->last_ino)
Shaohua Li4a3ef682017-07-12 11:49:47 -0700635 root->next_generation++;
636 gen = root->next_generation;
Tejun Heoe23f5682019-11-04 15:54:29 -0800637 root->last_ino = ret;
Shaohua Li7d350792017-07-12 11:49:46 -0700638 spin_unlock(&kernfs_idr_lock);
639 idr_preload_end();
Tejun Heobc755552013-11-28 14:54:41 -0500640 if (ret < 0)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500641 goto err_out2;
Shaohua Lic53cd492017-07-12 11:49:50 -0700642 kn->id.ino = ret;
643 kn->id.generation = gen;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500644
Tejun Heob680b082019-11-04 15:54:29 -0800645 atomic_set(&kn->count, 1);
Tejun Heo81c173c2014-02-03 14:03:00 -0500646 atomic_set(&kn->active, KN_DEACTIVATED_BIAS);
Tejun Heo35beab02014-02-03 14:02:56 -0500647 RB_CLEAR_NODE(&kn->rb);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500648
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500649 kn->name = name;
650 kn->mode = mode;
Tejun Heo81c173c2014-02-03 14:03:00 -0500651 kn->flags = flags;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500652
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000653 if (!uid_eq(uid, GLOBAL_ROOT_UID) || !gid_eq(gid, GLOBAL_ROOT_GID)) {
654 struct iattr iattr = {
655 .ia_valid = ATTR_UID | ATTR_GID,
656 .ia_uid = uid,
657 .ia_gid = gid,
658 };
659
660 ret = __kernfs_setattr(kn, &iattr);
661 if (ret < 0)
662 goto err_out3;
663 }
664
Ondrej Mosnaceke19dfdc2019-02-22 15:57:18 +0100665 if (parent) {
666 ret = security_kernfs_init_security(parent, kn);
667 if (ret)
668 goto err_out3;
669 }
670
Tejun Heo324a56e2013-12-11 14:11:53 -0500671 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500672
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000673 err_out3:
674 idr_remove(&root->ino_idr, kn->id.ino);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500675 err_out2:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500676 kmem_cache_free(kernfs_node_cache, kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500677 err_out1:
Tejun Heodfeb07502015-02-13 14:36:31 -0800678 kfree_const(name);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500679 return NULL;
680}
681
Tejun Heodb4aad22014-01-17 09:58:25 -0500682struct kernfs_node *kernfs_new_node(struct kernfs_node *parent,
683 const char *name, umode_t mode,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000684 kuid_t uid, kgid_t gid,
Tejun Heodb4aad22014-01-17 09:58:25 -0500685 unsigned flags)
686{
687 struct kernfs_node *kn;
688
Ondrej Mosnaceke19dfdc2019-02-22 15:57:18 +0100689 kn = __kernfs_new_node(kernfs_root(parent), parent,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000690 name, mode, uid, gid, flags);
Tejun Heodb4aad22014-01-17 09:58:25 -0500691 if (kn) {
692 kernfs_get(parent);
693 kn->parent = parent;
694 }
695 return kn;
696}
697
Shaohua Liba16b282017-07-12 11:49:48 -0700698/*
699 * kernfs_find_and_get_node_by_ino - get kernfs_node from inode number
700 * @root: the kernfs root
701 * @ino: inode number
702 *
703 * RETURNS:
704 * NULL on failure. Return a kernfs node with reference counter incremented
705 */
706struct kernfs_node *kernfs_find_and_get_node_by_ino(struct kernfs_root *root,
707 unsigned int ino)
708{
709 struct kernfs_node *kn;
710
Tejun Heob680b082019-11-04 15:54:29 -0800711 spin_lock(&kernfs_idr_lock);
712
Shaohua Liba16b282017-07-12 11:49:48 -0700713 kn = idr_find(&root->ino_idr, ino);
714 if (!kn)
Tejun Heob680b082019-11-04 15:54:29 -0800715 goto err_unlock;
Shaohua Liba16b282017-07-12 11:49:48 -0700716
Tejun Heob680b082019-11-04 15:54:29 -0800717 if (unlikely(!atomic_inc_not_zero(&kn->count)))
718 goto err_unlock;
Shaohua Liba16b282017-07-12 11:49:48 -0700719
Tejun Heob680b082019-11-04 15:54:29 -0800720 spin_unlock(&kernfs_idr_lock);
Shaohua Liba16b282017-07-12 11:49:48 -0700721 return kn;
Tejun Heob680b082019-11-04 15:54:29 -0800722err_unlock:
723 spin_unlock(&kernfs_idr_lock);
Shaohua Liba16b282017-07-12 11:49:48 -0700724 return NULL;
725}
726
Tejun Heofd7b9f72013-11-28 14:54:33 -0500727/**
Tejun Heoc637b8a2013-12-11 14:11:58 -0500728 * kernfs_add_one - add kernfs_node to parent without warning
Tejun Heo324a56e2013-12-11 14:11:53 -0500729 * @kn: kernfs_node to be added
Tejun Heofd7b9f72013-11-28 14:54:33 -0500730 *
Tejun Heodb4aad22014-01-17 09:58:25 -0500731 * The caller must already have initialized @kn->parent. This
732 * function increments nlink of the parent's inode if @kn is a
733 * directory and link into the children list of the parent.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500734 *
Tejun Heofd7b9f72013-11-28 14:54:33 -0500735 * RETURNS:
736 * 0 on success, -EEXIST if entry with the given name already
737 * exists.
738 */
Tejun Heo988cd7a2014-02-03 14:02:58 -0500739int kernfs_add_one(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500740{
Tejun Heodb4aad22014-01-17 09:58:25 -0500741 struct kernfs_node *parent = kn->parent;
Tejun Heoc525aad2013-12-11 14:11:55 -0500742 struct kernfs_iattrs *ps_iattr;
Tejun Heo988cd7a2014-02-03 14:02:58 -0500743 bool has_ns;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500744 int ret;
745
Tejun Heo988cd7a2014-02-03 14:02:58 -0500746 mutex_lock(&kernfs_mutex);
747
748 ret = -EINVAL;
749 has_ns = kernfs_ns_enabled(parent);
750 if (WARN(has_ns != (bool)kn->ns, KERN_WARNING "kernfs: ns %s in '%s' for '%s'\n",
751 has_ns ? "required" : "invalid", parent->name, kn->name))
752 goto out_unlock;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500753
Tejun Heodf23fc32013-12-11 14:11:56 -0500754 if (kernfs_type(parent) != KERNFS_DIR)
Tejun Heo988cd7a2014-02-03 14:02:58 -0500755 goto out_unlock;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500756
Tejun Heo988cd7a2014-02-03 14:02:58 -0500757 ret = -ENOENT;
Eric W. Biedermanea015212015-05-13 16:09:29 -0500758 if (parent->flags & KERNFS_EMPTY_DIR)
759 goto out_unlock;
760
Tejun Heod35258e2014-02-03 14:09:12 -0500761 if ((parent->flags & KERNFS_ACTIVATED) && !kernfs_active(parent))
Tejun Heo988cd7a2014-02-03 14:02:58 -0500762 goto out_unlock;
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -0800763
Tejun Heoc637b8a2013-12-11 14:11:58 -0500764 kn->hash = kernfs_name_hash(kn->name, kn->ns);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500765
Tejun Heoc637b8a2013-12-11 14:11:58 -0500766 ret = kernfs_link_sibling(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500767 if (ret)
Tejun Heo988cd7a2014-02-03 14:02:58 -0500768 goto out_unlock;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500769
770 /* Update timestamps on the parent */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500771 ps_iattr = parent->iattr;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500772 if (ps_iattr) {
Ondrej Mosnacek05895212019-02-22 15:57:12 +0100773 ktime_get_real_ts64(&ps_iattr->ia_ctime);
774 ps_iattr->ia_mtime = ps_iattr->ia_ctime;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500775 }
776
Tejun Heod35258e2014-02-03 14:09:12 -0500777 mutex_unlock(&kernfs_mutex);
778
779 /*
780 * Activate the new node unless CREATE_DEACTIVATED is requested.
781 * If not activated here, the kernfs user is responsible for
782 * activating the node with kernfs_activate(). A node which hasn't
783 * been activated is not visible to userland and its removal won't
784 * trigger deactivation.
785 */
786 if (!(kernfs_root(kn)->flags & KERNFS_ROOT_CREATE_DEACTIVATED))
787 kernfs_activate(kn);
788 return 0;
789
Tejun Heo988cd7a2014-02-03 14:02:58 -0500790out_unlock:
Tejun Heoa797bfc2013-12-11 14:11:57 -0500791 mutex_unlock(&kernfs_mutex);
Tejun Heo988cd7a2014-02-03 14:02:58 -0500792 return ret;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500793}
794
795/**
Tejun Heo324a56e2013-12-11 14:11:53 -0500796 * kernfs_find_ns - find kernfs_node with the given name
797 * @parent: kernfs_node to search under
Tejun Heofd7b9f72013-11-28 14:54:33 -0500798 * @name: name to look for
799 * @ns: the namespace tag to use
800 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500801 * Look for kernfs_node with name @name under @parent. Returns pointer to
802 * the found kernfs_node on success, %NULL on failure.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500803 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500804static struct kernfs_node *kernfs_find_ns(struct kernfs_node *parent,
805 const unsigned char *name,
806 const void *ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500807{
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500808 struct rb_node *node = parent->dir.children.rb_node;
Tejun Heoac9bba02013-11-29 17:19:09 -0500809 bool has_ns = kernfs_ns_enabled(parent);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500810 unsigned int hash;
811
Tejun Heoa797bfc2013-12-11 14:11:57 -0500812 lockdep_assert_held(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500813
814 if (has_ns != (bool)ns) {
Tejun Heoc637b8a2013-12-11 14:11:58 -0500815 WARN(1, KERN_WARNING "kernfs: ns %s in '%s' for '%s'\n",
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500816 has_ns ? "required" : "invalid", parent->name, name);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500817 return NULL;
818 }
819
Tejun Heoc637b8a2013-12-11 14:11:58 -0500820 hash = kernfs_name_hash(name, ns);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500821 while (node) {
Tejun Heo324a56e2013-12-11 14:11:53 -0500822 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500823 int result;
824
Tejun Heo324a56e2013-12-11 14:11:53 -0500825 kn = rb_to_kn(node);
Tejun Heoc637b8a2013-12-11 14:11:58 -0500826 result = kernfs_name_compare(hash, name, ns, kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500827 if (result < 0)
828 node = node->rb_left;
829 else if (result > 0)
830 node = node->rb_right;
831 else
Tejun Heo324a56e2013-12-11 14:11:53 -0500832 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500833 }
834 return NULL;
835}
836
Tejun Heobd96f762015-11-20 15:55:52 -0500837static struct kernfs_node *kernfs_walk_ns(struct kernfs_node *parent,
838 const unsigned char *path,
839 const void *ns)
840{
Tejun Heoe56ed3582016-01-15 12:30:14 -0500841 size_t len;
842 char *p, *name;
Tejun Heobd96f762015-11-20 15:55:52 -0500843
844 lockdep_assert_held(&kernfs_mutex);
845
Tejun Heoe56ed3582016-01-15 12:30:14 -0500846 /* grab kernfs_rename_lock to piggy back on kernfs_pr_cont_buf */
847 spin_lock_irq(&kernfs_rename_lock);
848
849 len = strlcpy(kernfs_pr_cont_buf, path, sizeof(kernfs_pr_cont_buf));
850
851 if (len >= sizeof(kernfs_pr_cont_buf)) {
852 spin_unlock_irq(&kernfs_rename_lock);
Tejun Heobd96f762015-11-20 15:55:52 -0500853 return NULL;
Tejun Heoe56ed3582016-01-15 12:30:14 -0500854 }
855
856 p = kernfs_pr_cont_buf;
Tejun Heobd96f762015-11-20 15:55:52 -0500857
858 while ((name = strsep(&p, "/")) && parent) {
859 if (*name == '\0')
860 continue;
861 parent = kernfs_find_ns(parent, name, ns);
862 }
863
Tejun Heoe56ed3582016-01-15 12:30:14 -0500864 spin_unlock_irq(&kernfs_rename_lock);
865
Tejun Heobd96f762015-11-20 15:55:52 -0500866 return parent;
867}
868
Tejun Heofd7b9f72013-11-28 14:54:33 -0500869/**
Tejun Heo324a56e2013-12-11 14:11:53 -0500870 * kernfs_find_and_get_ns - find and get kernfs_node with the given name
871 * @parent: kernfs_node to search under
Tejun Heofd7b9f72013-11-28 14:54:33 -0500872 * @name: name to look for
873 * @ns: the namespace tag to use
874 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500875 * Look for kernfs_node with name @name under @parent and get a reference
Tejun Heofd7b9f72013-11-28 14:54:33 -0500876 * if found. This function may sleep and returns pointer to the found
Tejun Heo324a56e2013-12-11 14:11:53 -0500877 * kernfs_node on success, %NULL on failure.
Tejun Heofd7b9f72013-11-28 14:54:33 -0500878 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500879struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
880 const char *name, const void *ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500881{
Tejun Heo324a56e2013-12-11 14:11:53 -0500882 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500883
Tejun Heoa797bfc2013-12-11 14:11:57 -0500884 mutex_lock(&kernfs_mutex);
Tejun Heo324a56e2013-12-11 14:11:53 -0500885 kn = kernfs_find_ns(parent, name, ns);
886 kernfs_get(kn);
Tejun Heoa797bfc2013-12-11 14:11:57 -0500887 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -0500888
Tejun Heo324a56e2013-12-11 14:11:53 -0500889 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500890}
891EXPORT_SYMBOL_GPL(kernfs_find_and_get_ns);
892
893/**
Tejun Heobd96f762015-11-20 15:55:52 -0500894 * kernfs_walk_and_get_ns - find and get kernfs_node with the given path
895 * @parent: kernfs_node to search under
896 * @path: path to look for
897 * @ns: the namespace tag to use
898 *
899 * Look for kernfs_node with path @path under @parent and get a reference
900 * if found. This function may sleep and returns pointer to the found
901 * kernfs_node on success, %NULL on failure.
902 */
903struct kernfs_node *kernfs_walk_and_get_ns(struct kernfs_node *parent,
904 const char *path, const void *ns)
905{
906 struct kernfs_node *kn;
907
908 mutex_lock(&kernfs_mutex);
909 kn = kernfs_walk_ns(parent, path, ns);
910 kernfs_get(kn);
911 mutex_unlock(&kernfs_mutex);
912
913 return kn;
914}
915
916/**
Tejun Heoba7443b2013-11-28 14:54:40 -0500917 * kernfs_create_root - create a new kernfs hierarchy
Tejun Heo90c07c82014-02-03 14:09:09 -0500918 * @scops: optional syscall operations for the hierarchy
Tejun Heod35258e2014-02-03 14:09:12 -0500919 * @flags: KERNFS_ROOT_* flags
Tejun Heoba7443b2013-11-28 14:54:40 -0500920 * @priv: opaque data associated with the new directory
921 *
922 * Returns the root of the new hierarchy on success, ERR_PTR() value on
923 * failure.
924 */
Tejun Heo90c07c82014-02-03 14:09:09 -0500925struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
Tejun Heod35258e2014-02-03 14:09:12 -0500926 unsigned int flags, void *priv)
Tejun Heoba7443b2013-11-28 14:54:40 -0500927{
928 struct kernfs_root *root;
Tejun Heo324a56e2013-12-11 14:11:53 -0500929 struct kernfs_node *kn;
Tejun Heoba7443b2013-11-28 14:54:40 -0500930
931 root = kzalloc(sizeof(*root), GFP_KERNEL);
932 if (!root)
933 return ERR_PTR(-ENOMEM);
934
Shaohua Li7d350792017-07-12 11:49:46 -0700935 idr_init(&root->ino_idr);
Tejun Heo7d568a82014-04-09 11:07:30 -0400936 INIT_LIST_HEAD(&root->supers);
Shaohua Li4a3ef682017-07-12 11:49:47 -0700937 root->next_generation = 1;
Tejun Heobc755552013-11-28 14:54:41 -0500938
Ondrej Mosnaceke19dfdc2019-02-22 15:57:18 +0100939 kn = __kernfs_new_node(root, NULL, "", S_IFDIR | S_IRUGO | S_IXUGO,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000940 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
Tejun Heodb4aad22014-01-17 09:58:25 -0500941 KERNFS_DIR);
Tejun Heo324a56e2013-12-11 14:11:53 -0500942 if (!kn) {
Shaohua Li7d350792017-07-12 11:49:46 -0700943 idr_destroy(&root->ino_idr);
Tejun Heoba7443b2013-11-28 14:54:40 -0500944 kfree(root);
945 return ERR_PTR(-ENOMEM);
946 }
947
Tejun Heo324a56e2013-12-11 14:11:53 -0500948 kn->priv = priv;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500949 kn->dir.root = root;
Tejun Heoba7443b2013-11-28 14:54:40 -0500950
Tejun Heo90c07c82014-02-03 14:09:09 -0500951 root->syscall_ops = scops;
Tejun Heod35258e2014-02-03 14:09:12 -0500952 root->flags = flags;
Tejun Heo324a56e2013-12-11 14:11:53 -0500953 root->kn = kn;
Tejun Heoabd54f02014-02-03 14:02:55 -0500954 init_waitqueue_head(&root->deactivate_waitq);
Tejun Heoba7443b2013-11-28 14:54:40 -0500955
Tejun Heod35258e2014-02-03 14:09:12 -0500956 if (!(root->flags & KERNFS_ROOT_CREATE_DEACTIVATED))
957 kernfs_activate(kn);
958
Tejun Heoba7443b2013-11-28 14:54:40 -0500959 return root;
960}
961
962/**
963 * kernfs_destroy_root - destroy a kernfs hierarchy
964 * @root: root of the hierarchy to destroy
965 *
966 * Destroy the hierarchy anchored at @root by removing all existing
967 * directories and destroying @root.
968 */
969void kernfs_destroy_root(struct kernfs_root *root)
970{
Tejun Heo324a56e2013-12-11 14:11:53 -0500971 kernfs_remove(root->kn); /* will also free @root */
Tejun Heoba7443b2013-11-28 14:54:40 -0500972}
973
974/**
Tejun Heofd7b9f72013-11-28 14:54:33 -0500975 * kernfs_create_dir_ns - create a directory
976 * @parent: parent in which to create a new directory
977 * @name: name of the new directory
Tejun Heobb8b9d02013-12-11 16:02:55 -0500978 * @mode: mode of the new directory
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000979 * @uid: uid of the new directory
980 * @gid: gid of the new directory
Tejun Heofd7b9f72013-11-28 14:54:33 -0500981 * @priv: opaque data associated with the new directory
982 * @ns: optional namespace tag of the directory
983 *
984 * Returns the created node on success, ERR_PTR() value on failure.
985 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500986struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
Tejun Heobb8b9d02013-12-11 16:02:55 -0500987 const char *name, umode_t mode,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000988 kuid_t uid, kgid_t gid,
Tejun Heobb8b9d02013-12-11 16:02:55 -0500989 void *priv, const void *ns)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500990{
Tejun Heo324a56e2013-12-11 14:11:53 -0500991 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -0500992 int rc;
993
994 /* allocate */
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000995 kn = kernfs_new_node(parent, name, mode | S_IFDIR,
996 uid, gid, KERNFS_DIR);
Tejun Heo324a56e2013-12-11 14:11:53 -0500997 if (!kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -0500998 return ERR_PTR(-ENOMEM);
999
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001000 kn->dir.root = parent->dir.root;
1001 kn->ns = ns;
Tejun Heo324a56e2013-12-11 14:11:53 -05001002 kn->priv = priv;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001003
1004 /* link in */
Tejun Heo988cd7a2014-02-03 14:02:58 -05001005 rc = kernfs_add_one(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001006 if (!rc)
Tejun Heo324a56e2013-12-11 14:11:53 -05001007 return kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001008
Tejun Heo324a56e2013-12-11 14:11:53 -05001009 kernfs_put(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001010 return ERR_PTR(rc);
1011}
1012
Eric W. Biedermanea015212015-05-13 16:09:29 -05001013/**
1014 * kernfs_create_empty_dir - create an always empty directory
1015 * @parent: parent in which to create a new directory
1016 * @name: name of the new directory
1017 *
1018 * Returns the created node on success, ERR_PTR() value on failure.
1019 */
1020struct kernfs_node *kernfs_create_empty_dir(struct kernfs_node *parent,
1021 const char *name)
1022{
1023 struct kernfs_node *kn;
1024 int rc;
1025
1026 /* allocate */
Dmitry Torokhov488dee92018-07-20 21:56:47 +00001027 kn = kernfs_new_node(parent, name, S_IRUGO|S_IXUGO|S_IFDIR,
1028 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, KERNFS_DIR);
Eric W. Biedermanea015212015-05-13 16:09:29 -05001029 if (!kn)
1030 return ERR_PTR(-ENOMEM);
1031
1032 kn->flags |= KERNFS_EMPTY_DIR;
1033 kn->dir.root = parent->dir.root;
1034 kn->ns = NULL;
1035 kn->priv = NULL;
1036
1037 /* link in */
1038 rc = kernfs_add_one(kn);
1039 if (!rc)
1040 return kn;
1041
1042 kernfs_put(kn);
1043 return ERR_PTR(rc);
1044}
1045
Tejun Heoc637b8a2013-12-11 14:11:58 -05001046static struct dentry *kernfs_iop_lookup(struct inode *dir,
1047 struct dentry *dentry,
1048 unsigned int flags)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001049{
Tejun Heo19bbb922013-12-11 16:02:59 -05001050 struct dentry *ret;
Shaohua Li319ba912017-07-12 11:49:49 -07001051 struct kernfs_node *parent = dir->i_private;
Tejun Heo324a56e2013-12-11 14:11:53 -05001052 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001053 struct inode *inode;
1054 const void *ns = NULL;
1055
Tejun Heoa797bfc2013-12-11 14:11:57 -05001056 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001057
Tejun Heo324a56e2013-12-11 14:11:53 -05001058 if (kernfs_ns_enabled(parent))
Tejun Heoc525aad2013-12-11 14:11:55 -05001059 ns = kernfs_info(dir->i_sb)->ns;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001060
Tejun Heo324a56e2013-12-11 14:11:53 -05001061 kn = kernfs_find_ns(parent, dentry->d_name.name, ns);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001062
1063 /* no such entry */
Tejun Heob9c9dad2014-02-03 14:09:11 -05001064 if (!kn || !kernfs_active(kn)) {
Tejun Heo19bbb922013-12-11 16:02:59 -05001065 ret = NULL;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001066 goto out_unlock;
1067 }
Tejun Heofd7b9f72013-11-28 14:54:33 -05001068
1069 /* attach dentry and inode */
Tejun Heoc637b8a2013-12-11 14:11:58 -05001070 inode = kernfs_get_inode(dir->i_sb, kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001071 if (!inode) {
1072 ret = ERR_PTR(-ENOMEM);
1073 goto out_unlock;
1074 }
1075
1076 /* instantiate and hash dentry */
Al Viro41d28bc2014-10-12 22:24:21 -04001077 ret = d_splice_alias(inode, dentry);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001078 out_unlock:
Tejun Heoa797bfc2013-12-11 14:11:57 -05001079 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001080 return ret;
1081}
1082
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001083static int kernfs_iop_mkdir(struct inode *dir, struct dentry *dentry,
1084 umode_t mode)
1085{
1086 struct kernfs_node *parent = dir->i_private;
Tejun Heo90c07c82014-02-03 14:09:09 -05001087 struct kernfs_syscall_ops *scops = kernfs_root(parent)->syscall_ops;
Tejun Heo07c75302014-02-03 14:09:08 -05001088 int ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001089
Tejun Heo90c07c82014-02-03 14:09:09 -05001090 if (!scops || !scops->mkdir)
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001091 return -EPERM;
1092
Tejun Heo07c75302014-02-03 14:09:08 -05001093 if (!kernfs_get_active(parent))
1094 return -ENODEV;
1095
Tejun Heo90c07c82014-02-03 14:09:09 -05001096 ret = scops->mkdir(parent, dentry->d_name.name, mode);
Tejun Heo07c75302014-02-03 14:09:08 -05001097
1098 kernfs_put_active(parent);
1099 return ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001100}
1101
1102static int kernfs_iop_rmdir(struct inode *dir, struct dentry *dentry)
1103{
Shaohua Li319ba912017-07-12 11:49:49 -07001104 struct kernfs_node *kn = kernfs_dentry_node(dentry);
Tejun Heo90c07c82014-02-03 14:09:09 -05001105 struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops;
Tejun Heo07c75302014-02-03 14:09:08 -05001106 int ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001107
Tejun Heo90c07c82014-02-03 14:09:09 -05001108 if (!scops || !scops->rmdir)
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001109 return -EPERM;
1110
Tejun Heo07c75302014-02-03 14:09:08 -05001111 if (!kernfs_get_active(kn))
1112 return -ENODEV;
1113
Tejun Heo90c07c82014-02-03 14:09:09 -05001114 ret = scops->rmdir(kn);
Tejun Heo07c75302014-02-03 14:09:08 -05001115
1116 kernfs_put_active(kn);
1117 return ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001118}
1119
1120static int kernfs_iop_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001121 struct inode *new_dir, struct dentry *new_dentry,
1122 unsigned int flags)
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001123{
Shaohua Li319ba912017-07-12 11:49:49 -07001124 struct kernfs_node *kn = kernfs_dentry_node(old_dentry);
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001125 struct kernfs_node *new_parent = new_dir->i_private;
Tejun Heo90c07c82014-02-03 14:09:09 -05001126 struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops;
Tejun Heo07c75302014-02-03 14:09:08 -05001127 int ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001128
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001129 if (flags)
1130 return -EINVAL;
1131
Tejun Heo90c07c82014-02-03 14:09:09 -05001132 if (!scops || !scops->rename)
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001133 return -EPERM;
1134
Tejun Heo07c75302014-02-03 14:09:08 -05001135 if (!kernfs_get_active(kn))
1136 return -ENODEV;
1137
1138 if (!kernfs_get_active(new_parent)) {
1139 kernfs_put_active(kn);
1140 return -ENODEV;
1141 }
1142
Tejun Heo90c07c82014-02-03 14:09:09 -05001143 ret = scops->rename(kn, new_parent, new_dentry->d_name.name);
Tejun Heo07c75302014-02-03 14:09:08 -05001144
1145 kernfs_put_active(new_parent);
1146 kernfs_put_active(kn);
1147 return ret;
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001148}
1149
Tejun Heoa797bfc2013-12-11 14:11:57 -05001150const struct inode_operations kernfs_dir_iops = {
Tejun Heoc637b8a2013-12-11 14:11:58 -05001151 .lookup = kernfs_iop_lookup,
1152 .permission = kernfs_iop_permission,
1153 .setattr = kernfs_iop_setattr,
1154 .getattr = kernfs_iop_getattr,
Tejun Heoc637b8a2013-12-11 14:11:58 -05001155 .listxattr = kernfs_iop_listxattr,
Tejun Heo80b9bbe2013-12-11 16:03:00 -05001156
1157 .mkdir = kernfs_iop_mkdir,
1158 .rmdir = kernfs_iop_rmdir,
1159 .rename = kernfs_iop_rename,
Tejun Heofd7b9f72013-11-28 14:54:33 -05001160};
1161
Tejun Heoc637b8a2013-12-11 14:11:58 -05001162static struct kernfs_node *kernfs_leftmost_descendant(struct kernfs_node *pos)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001163{
Tejun Heo324a56e2013-12-11 14:11:53 -05001164 struct kernfs_node *last;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001165
1166 while (true) {
1167 struct rb_node *rbn;
1168
1169 last = pos;
1170
Tejun Heodf23fc32013-12-11 14:11:56 -05001171 if (kernfs_type(pos) != KERNFS_DIR)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001172 break;
1173
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001174 rbn = rb_first(&pos->dir.children);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001175 if (!rbn)
1176 break;
1177
Tejun Heo324a56e2013-12-11 14:11:53 -05001178 pos = rb_to_kn(rbn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001179 }
1180
1181 return last;
1182}
1183
1184/**
Tejun Heoc637b8a2013-12-11 14:11:58 -05001185 * kernfs_next_descendant_post - find the next descendant for post-order walk
Tejun Heofd7b9f72013-11-28 14:54:33 -05001186 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo324a56e2013-12-11 14:11:53 -05001187 * @root: kernfs_node whose descendants to walk
Tejun Heofd7b9f72013-11-28 14:54:33 -05001188 *
1189 * Find the next descendant to visit for post-order traversal of @root's
1190 * descendants. @root is included in the iteration and the last node to be
1191 * visited.
1192 */
Tejun Heoc637b8a2013-12-11 14:11:58 -05001193static struct kernfs_node *kernfs_next_descendant_post(struct kernfs_node *pos,
1194 struct kernfs_node *root)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001195{
1196 struct rb_node *rbn;
1197
Tejun Heoa797bfc2013-12-11 14:11:57 -05001198 lockdep_assert_held(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001199
1200 /* if first iteration, visit leftmost descendant which may be root */
1201 if (!pos)
Tejun Heoc637b8a2013-12-11 14:11:58 -05001202 return kernfs_leftmost_descendant(root);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001203
1204 /* if we visited @root, we're done */
1205 if (pos == root)
1206 return NULL;
1207
1208 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001209 rbn = rb_next(&pos->rb);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001210 if (rbn)
Tejun Heoc637b8a2013-12-11 14:11:58 -05001211 return kernfs_leftmost_descendant(rb_to_kn(rbn));
Tejun Heofd7b9f72013-11-28 14:54:33 -05001212
1213 /* no sibling left, visit parent */
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001214 return pos->parent;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001215}
1216
Tejun Heod35258e2014-02-03 14:09:12 -05001217/**
1218 * kernfs_activate - activate a node which started deactivated
1219 * @kn: kernfs_node whose subtree is to be activated
1220 *
1221 * If the root has KERNFS_ROOT_CREATE_DEACTIVATED set, a newly created node
1222 * needs to be explicitly activated. A node which hasn't been activated
1223 * isn't visible to userland and deactivation is skipped during its
1224 * removal. This is useful to construct atomic init sequences where
1225 * creation of multiple nodes should either succeed or fail atomically.
1226 *
1227 * The caller is responsible for ensuring that this function is not called
1228 * after kernfs_remove*() is invoked on @kn.
1229 */
1230void kernfs_activate(struct kernfs_node *kn)
1231{
1232 struct kernfs_node *pos;
1233
1234 mutex_lock(&kernfs_mutex);
1235
1236 pos = NULL;
1237 while ((pos = kernfs_next_descendant_post(pos, kn))) {
1238 if (!pos || (pos->flags & KERNFS_ACTIVATED))
1239 continue;
1240
1241 WARN_ON_ONCE(pos->parent && RB_EMPTY_NODE(&pos->rb));
1242 WARN_ON_ONCE(atomic_read(&pos->active) != KN_DEACTIVATED_BIAS);
1243
1244 atomic_sub(KN_DEACTIVATED_BIAS, &pos->active);
1245 pos->flags |= KERNFS_ACTIVATED;
1246 }
1247
1248 mutex_unlock(&kernfs_mutex);
1249}
1250
Tejun Heo988cd7a2014-02-03 14:02:58 -05001251static void __kernfs_remove(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001252{
Tejun Heo35beab02014-02-03 14:02:56 -05001253 struct kernfs_node *pos;
1254
1255 lockdep_assert_held(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001256
Tejun Heo6b0afc22014-02-03 14:03:01 -05001257 /*
1258 * Short-circuit if non-root @kn has already finished removal.
1259 * This is for kernfs_remove_self() which plays with active ref
1260 * after removal.
1261 */
1262 if (!kn || (kn->parent && RB_EMPTY_NODE(&kn->rb)))
Greg Kroah-Hartmance9b4992014-01-13 13:50:31 -08001263 return;
1264
Tejun Heoc637b8a2013-12-11 14:11:58 -05001265 pr_debug("kernfs %s: removing\n", kn->name);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001266
Tejun Heo81c173c2014-02-03 14:03:00 -05001267 /* prevent any new usage under @kn by deactivating all nodes */
Tejun Heo35beab02014-02-03 14:02:56 -05001268 pos = NULL;
1269 while ((pos = kernfs_next_descendant_post(pos, kn)))
Tejun Heo81c173c2014-02-03 14:03:00 -05001270 if (kernfs_active(pos))
1271 atomic_add(KN_DEACTIVATED_BIAS, &pos->active);
Tejun Heo35beab02014-02-03 14:02:56 -05001272
1273 /* deactivate and unlink the subtree node-by-node */
Tejun Heofd7b9f72013-11-28 14:54:33 -05001274 do {
Tejun Heo35beab02014-02-03 14:02:56 -05001275 pos = kernfs_leftmost_descendant(kn);
1276
1277 /*
Tejun Heo81c173c2014-02-03 14:03:00 -05001278 * kernfs_drain() drops kernfs_mutex temporarily and @pos's
1279 * base ref could have been put by someone else by the time
1280 * the function returns. Make sure it doesn't go away
1281 * underneath us.
Tejun Heo35beab02014-02-03 14:02:56 -05001282 */
1283 kernfs_get(pos);
1284
Tejun Heod35258e2014-02-03 14:09:12 -05001285 /*
1286 * Drain iff @kn was activated. This avoids draining and
1287 * its lockdep annotations for nodes which have never been
1288 * activated and allows embedding kernfs_remove() in create
1289 * error paths without worrying about draining.
1290 */
1291 if (kn->flags & KERNFS_ACTIVATED)
1292 kernfs_drain(pos);
1293 else
1294 WARN_ON_ONCE(atomic_read(&kn->active) != KN_DEACTIVATED_BIAS);
Tejun Heo35beab02014-02-03 14:02:56 -05001295
1296 /*
1297 * kernfs_unlink_sibling() succeeds once per node. Use it
1298 * to decide who's responsible for cleanups.
1299 */
1300 if (!pos->parent || kernfs_unlink_sibling(pos)) {
1301 struct kernfs_iattrs *ps_iattr =
1302 pos->parent ? pos->parent->iattr : NULL;
1303
1304 /* update timestamps on the parent */
1305 if (ps_iattr) {
Ondrej Mosnacek05895212019-02-22 15:57:12 +01001306 ktime_get_real_ts64(&ps_iattr->ia_ctime);
1307 ps_iattr->ia_mtime = ps_iattr->ia_ctime;
Tejun Heo35beab02014-02-03 14:02:56 -05001308 }
1309
Tejun Heo988cd7a2014-02-03 14:02:58 -05001310 kernfs_put(pos);
Tejun Heo35beab02014-02-03 14:02:56 -05001311 }
1312
1313 kernfs_put(pos);
1314 } while (pos != kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001315}
1316
1317/**
Tejun Heo324a56e2013-12-11 14:11:53 -05001318 * kernfs_remove - remove a kernfs_node recursively
1319 * @kn: the kernfs_node to remove
Tejun Heofd7b9f72013-11-28 14:54:33 -05001320 *
Tejun Heo324a56e2013-12-11 14:11:53 -05001321 * Remove @kn along with all its subdirectories and files.
Tejun Heofd7b9f72013-11-28 14:54:33 -05001322 */
Tejun Heo324a56e2013-12-11 14:11:53 -05001323void kernfs_remove(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001324{
Tejun Heo988cd7a2014-02-03 14:02:58 -05001325 mutex_lock(&kernfs_mutex);
1326 __kernfs_remove(kn);
1327 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001328}
1329
1330/**
Tejun Heo6b0afc22014-02-03 14:03:01 -05001331 * kernfs_break_active_protection - break out of active protection
1332 * @kn: the self kernfs_node
1333 *
1334 * The caller must be running off of a kernfs operation which is invoked
1335 * with an active reference - e.g. one of kernfs_ops. Each invocation of
1336 * this function must also be matched with an invocation of
1337 * kernfs_unbreak_active_protection().
1338 *
1339 * This function releases the active reference of @kn the caller is
1340 * holding. Once this function is called, @kn may be removed at any point
1341 * and the caller is solely responsible for ensuring that the objects it
1342 * dereferences are accessible.
1343 */
1344void kernfs_break_active_protection(struct kernfs_node *kn)
1345{
1346 /*
1347 * Take out ourself out of the active ref dependency chain. If
1348 * we're called without an active ref, lockdep will complain.
1349 */
1350 kernfs_put_active(kn);
1351}
1352
1353/**
1354 * kernfs_unbreak_active_protection - undo kernfs_break_active_protection()
1355 * @kn: the self kernfs_node
1356 *
1357 * If kernfs_break_active_protection() was called, this function must be
1358 * invoked before finishing the kernfs operation. Note that while this
1359 * function restores the active reference, it doesn't and can't actually
1360 * restore the active protection - @kn may already or be in the process of
1361 * being removed. Once kernfs_break_active_protection() is invoked, that
1362 * protection is irreversibly gone for the kernfs operation instance.
1363 *
1364 * While this function may be called at any point after
1365 * kernfs_break_active_protection() is invoked, its most useful location
1366 * would be right before the enclosing kernfs operation returns.
1367 */
1368void kernfs_unbreak_active_protection(struct kernfs_node *kn)
1369{
1370 /*
1371 * @kn->active could be in any state; however, the increment we do
1372 * here will be undone as soon as the enclosing kernfs operation
1373 * finishes and this temporary bump can't break anything. If @kn
1374 * is alive, nothing changes. If @kn is being deactivated, the
1375 * soon-to-follow put will either finish deactivation or restore
1376 * deactivated state. If @kn is already removed, the temporary
1377 * bump is guaranteed to be gone before @kn is released.
1378 */
1379 atomic_inc(&kn->active);
1380 if (kernfs_lockdep(kn))
1381 rwsem_acquire(&kn->dep_map, 0, 1, _RET_IP_);
1382}
1383
1384/**
1385 * kernfs_remove_self - remove a kernfs_node from its own method
1386 * @kn: the self kernfs_node to remove
1387 *
1388 * The caller must be running off of a kernfs operation which is invoked
1389 * with an active reference - e.g. one of kernfs_ops. This can be used to
1390 * implement a file operation which deletes itself.
1391 *
1392 * For example, the "delete" file for a sysfs device directory can be
1393 * implemented by invoking kernfs_remove_self() on the "delete" file
1394 * itself. This function breaks the circular dependency of trying to
1395 * deactivate self while holding an active ref itself. It isn't necessary
1396 * to modify the usual removal path to use kernfs_remove_self(). The
1397 * "delete" implementation can simply invoke kernfs_remove_self() on self
1398 * before proceeding with the usual removal path. kernfs will ignore later
1399 * kernfs_remove() on self.
1400 *
1401 * kernfs_remove_self() can be called multiple times concurrently on the
1402 * same kernfs_node. Only the first one actually performs removal and
1403 * returns %true. All others will wait until the kernfs operation which
1404 * won self-removal finishes and return %false. Note that the losers wait
1405 * for the completion of not only the winning kernfs_remove_self() but also
1406 * the whole kernfs_ops which won the arbitration. This can be used to
1407 * guarantee, for example, all concurrent writes to a "delete" file to
1408 * finish only after the whole operation is complete.
1409 */
1410bool kernfs_remove_self(struct kernfs_node *kn)
1411{
1412 bool ret;
1413
1414 mutex_lock(&kernfs_mutex);
1415 kernfs_break_active_protection(kn);
1416
1417 /*
1418 * SUICIDAL is used to arbitrate among competing invocations. Only
1419 * the first one will actually perform removal. When the removal
1420 * is complete, SUICIDED is set and the active ref is restored
1421 * while holding kernfs_mutex. The ones which lost arbitration
1422 * waits for SUICDED && drained which can happen only after the
1423 * enclosing kernfs operation which executed the winning instance
1424 * of kernfs_remove_self() finished.
1425 */
1426 if (!(kn->flags & KERNFS_SUICIDAL)) {
1427 kn->flags |= KERNFS_SUICIDAL;
1428 __kernfs_remove(kn);
1429 kn->flags |= KERNFS_SUICIDED;
1430 ret = true;
1431 } else {
1432 wait_queue_head_t *waitq = &kernfs_root(kn)->deactivate_waitq;
1433 DEFINE_WAIT(wait);
1434
1435 while (true) {
1436 prepare_to_wait(waitq, &wait, TASK_UNINTERRUPTIBLE);
1437
1438 if ((kn->flags & KERNFS_SUICIDED) &&
1439 atomic_read(&kn->active) == KN_DEACTIVATED_BIAS)
1440 break;
1441
1442 mutex_unlock(&kernfs_mutex);
1443 schedule();
1444 mutex_lock(&kernfs_mutex);
1445 }
1446 finish_wait(waitq, &wait);
1447 WARN_ON_ONCE(!RB_EMPTY_NODE(&kn->rb));
1448 ret = false;
1449 }
1450
1451 /*
1452 * This must be done while holding kernfs_mutex; otherwise, waiting
1453 * for SUICIDED && deactivated could finish prematurely.
1454 */
1455 kernfs_unbreak_active_protection(kn);
1456
1457 mutex_unlock(&kernfs_mutex);
1458 return ret;
1459}
1460
1461/**
Tejun Heo324a56e2013-12-11 14:11:53 -05001462 * kernfs_remove_by_name_ns - find a kernfs_node by name and remove it
1463 * @parent: parent of the target
1464 * @name: name of the kernfs_node to remove
1465 * @ns: namespace tag of the kernfs_node to remove
Tejun Heofd7b9f72013-11-28 14:54:33 -05001466 *
Tejun Heo324a56e2013-12-11 14:11:53 -05001467 * Look for the kernfs_node with @name and @ns under @parent and remove it.
1468 * Returns 0 on success, -ENOENT if such entry doesn't exist.
Tejun Heofd7b9f72013-11-28 14:54:33 -05001469 */
Tejun Heo324a56e2013-12-11 14:11:53 -05001470int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
Tejun Heofd7b9f72013-11-28 14:54:33 -05001471 const void *ns)
1472{
Tejun Heo324a56e2013-12-11 14:11:53 -05001473 struct kernfs_node *kn;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001474
Tejun Heo324a56e2013-12-11 14:11:53 -05001475 if (!parent) {
Tejun Heoc637b8a2013-12-11 14:11:58 -05001476 WARN(1, KERN_WARNING "kernfs: can not remove '%s', no directory\n",
Tejun Heofd7b9f72013-11-28 14:54:33 -05001477 name);
1478 return -ENOENT;
1479 }
1480
Tejun Heo988cd7a2014-02-03 14:02:58 -05001481 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001482
Tejun Heo324a56e2013-12-11 14:11:53 -05001483 kn = kernfs_find_ns(parent, name, ns);
1484 if (kn)
Tejun Heo988cd7a2014-02-03 14:02:58 -05001485 __kernfs_remove(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001486
Tejun Heo988cd7a2014-02-03 14:02:58 -05001487 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001488
Tejun Heo324a56e2013-12-11 14:11:53 -05001489 if (kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001490 return 0;
1491 else
1492 return -ENOENT;
1493}
1494
1495/**
1496 * kernfs_rename_ns - move and rename a kernfs_node
Tejun Heo324a56e2013-12-11 14:11:53 -05001497 * @kn: target node
Tejun Heofd7b9f72013-11-28 14:54:33 -05001498 * @new_parent: new parent to put @sd under
1499 * @new_name: new name
1500 * @new_ns: new namespace tag
1501 */
Tejun Heo324a56e2013-12-11 14:11:53 -05001502int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
Tejun Heofd7b9f72013-11-28 14:54:33 -05001503 const char *new_name, const void *new_ns)
1504{
Tejun Heo3eef34a2014-02-07 13:32:07 -05001505 struct kernfs_node *old_parent;
1506 const char *old_name = NULL;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001507 int error;
1508
Tejun Heo3eef34a2014-02-07 13:32:07 -05001509 /* can't move or rename root */
1510 if (!kn->parent)
1511 return -EINVAL;
1512
Tejun Heoae343722014-01-10 08:57:21 -05001513 mutex_lock(&kernfs_mutex);
Tejun Heod0ae3d42013-12-11 16:02:56 -05001514
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001515 error = -ENOENT;
Eric W. Biedermanea015212015-05-13 16:09:29 -05001516 if (!kernfs_active(kn) || !kernfs_active(new_parent) ||
1517 (new_parent->flags & KERNFS_EMPTY_DIR))
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001518 goto out;
1519
Tejun Heofd7b9f72013-11-28 14:54:33 -05001520 error = 0;
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001521 if ((kn->parent == new_parent) && (kn->ns == new_ns) &&
1522 (strcmp(kn->name, new_name) == 0))
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001523 goto out; /* nothing to rename */
Tejun Heofd7b9f72013-11-28 14:54:33 -05001524
1525 error = -EEXIST;
1526 if (kernfs_find_ns(new_parent, new_name, new_ns))
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001527 goto out;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001528
Tejun Heo324a56e2013-12-11 14:11:53 -05001529 /* rename kernfs_node */
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001530 if (strcmp(kn->name, new_name) != 0) {
Tejun Heofd7b9f72013-11-28 14:54:33 -05001531 error = -ENOMEM;
Andrzej Hajda75287a62015-02-13 14:36:27 -08001532 new_name = kstrdup_const(new_name, GFP_KERNEL);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001533 if (!new_name)
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001534 goto out;
Tejun Heo3eef34a2014-02-07 13:32:07 -05001535 } else {
1536 new_name = NULL;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001537 }
1538
1539 /*
1540 * Move to the appropriate place in the appropriate directories rbtree.
1541 */
Tejun Heoc637b8a2013-12-11 14:11:58 -05001542 kernfs_unlink_sibling(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001543 kernfs_get(new_parent);
Tejun Heo3eef34a2014-02-07 13:32:07 -05001544
1545 /* rename_lock protects ->parent and ->name accessors */
1546 spin_lock_irq(&kernfs_rename_lock);
1547
1548 old_parent = kn->parent;
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001549 kn->parent = new_parent;
Tejun Heo3eef34a2014-02-07 13:32:07 -05001550
1551 kn->ns = new_ns;
1552 if (new_name) {
Tejun Heodfeb07502015-02-13 14:36:31 -08001553 old_name = kn->name;
Tejun Heo3eef34a2014-02-07 13:32:07 -05001554 kn->name = new_name;
1555 }
1556
1557 spin_unlock_irq(&kernfs_rename_lock);
1558
Tejun Heo9561a892014-02-10 17:57:09 -05001559 kn->hash = kernfs_name_hash(kn->name, kn->ns);
Tejun Heoc637b8a2013-12-11 14:11:58 -05001560 kernfs_link_sibling(kn);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001561
Tejun Heo3eef34a2014-02-07 13:32:07 -05001562 kernfs_put(old_parent);
Andrzej Hajda75287a62015-02-13 14:36:27 -08001563 kfree_const(old_name);
Tejun Heo3eef34a2014-02-07 13:32:07 -05001564
Tejun Heofd7b9f72013-11-28 14:54:33 -05001565 error = 0;
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001566 out:
Tejun Heoa797bfc2013-12-11 14:11:57 -05001567 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001568 return error;
1569}
1570
Tejun Heofd7b9f72013-11-28 14:54:33 -05001571/* Relationship between s_mode and the DT_xxx types */
Tejun Heo324a56e2013-12-11 14:11:53 -05001572static inline unsigned char dt_type(struct kernfs_node *kn)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001573{
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001574 return (kn->mode >> 12) & 15;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001575}
1576
Tejun Heoc637b8a2013-12-11 14:11:58 -05001577static int kernfs_dir_fop_release(struct inode *inode, struct file *filp)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001578{
1579 kernfs_put(filp->private_data);
1580 return 0;
1581}
1582
Tejun Heoc637b8a2013-12-11 14:11:58 -05001583static struct kernfs_node *kernfs_dir_pos(const void *ns,
Tejun Heo324a56e2013-12-11 14:11:53 -05001584 struct kernfs_node *parent, loff_t hash, struct kernfs_node *pos)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001585{
1586 if (pos) {
Tejun Heo81c173c2014-02-03 14:03:00 -05001587 int valid = kernfs_active(pos) &&
Greg Kroah-Hartman798c75a2014-01-13 14:36:03 -08001588 pos->parent == parent && hash == pos->hash;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001589 kernfs_put(pos);
1590 if (!valid)
1591 pos = NULL;
1592 }
1593 if (!pos && (hash > 1) && (hash < INT_MAX)) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001594 struct rb_node *node = parent->dir.children.rb_node;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001595 while (node) {
Tejun Heo324a56e2013-12-11 14:11:53 -05001596 pos = rb_to_kn(node);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001597
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001598 if (hash < pos->hash)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001599 node = node->rb_left;
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001600 else if (hash > pos->hash)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001601 node = node->rb_right;
1602 else
1603 break;
1604 }
1605 }
Tejun Heob9c9dad2014-02-03 14:09:11 -05001606 /* Skip over entries which are dying/dead or in the wrong namespace */
1607 while (pos && (!kernfs_active(pos) || pos->ns != ns)) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001608 struct rb_node *node = rb_next(&pos->rb);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001609 if (!node)
1610 pos = NULL;
1611 else
Tejun Heo324a56e2013-12-11 14:11:53 -05001612 pos = rb_to_kn(node);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001613 }
1614 return pos;
1615}
1616
Tejun Heoc637b8a2013-12-11 14:11:58 -05001617static struct kernfs_node *kernfs_dir_next_pos(const void *ns,
Tejun Heo324a56e2013-12-11 14:11:53 -05001618 struct kernfs_node *parent, ino_t ino, struct kernfs_node *pos)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001619{
Tejun Heoc637b8a2013-12-11 14:11:58 -05001620 pos = kernfs_dir_pos(ns, parent, ino, pos);
Tejun Heob9c9dad2014-02-03 14:09:11 -05001621 if (pos) {
Tejun Heofd7b9f72013-11-28 14:54:33 -05001622 do {
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001623 struct rb_node *node = rb_next(&pos->rb);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001624 if (!node)
1625 pos = NULL;
1626 else
Tejun Heo324a56e2013-12-11 14:11:53 -05001627 pos = rb_to_kn(node);
Tejun Heob9c9dad2014-02-03 14:09:11 -05001628 } while (pos && (!kernfs_active(pos) || pos->ns != ns));
1629 }
Tejun Heofd7b9f72013-11-28 14:54:33 -05001630 return pos;
1631}
1632
Tejun Heoc637b8a2013-12-11 14:11:58 -05001633static int kernfs_fop_readdir(struct file *file, struct dir_context *ctx)
Tejun Heofd7b9f72013-11-28 14:54:33 -05001634{
1635 struct dentry *dentry = file->f_path.dentry;
Shaohua Li319ba912017-07-12 11:49:49 -07001636 struct kernfs_node *parent = kernfs_dentry_node(dentry);
Tejun Heo324a56e2013-12-11 14:11:53 -05001637 struct kernfs_node *pos = file->private_data;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001638 const void *ns = NULL;
1639
1640 if (!dir_emit_dots(file, ctx))
1641 return 0;
Tejun Heoa797bfc2013-12-11 14:11:57 -05001642 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001643
Tejun Heo324a56e2013-12-11 14:11:53 -05001644 if (kernfs_ns_enabled(parent))
Tejun Heoc525aad2013-12-11 14:11:55 -05001645 ns = kernfs_info(dentry->d_sb)->ns;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001646
Tejun Heoc637b8a2013-12-11 14:11:58 -05001647 for (pos = kernfs_dir_pos(ns, parent, ctx->pos, pos);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001648 pos;
Tejun Heoc637b8a2013-12-11 14:11:58 -05001649 pos = kernfs_dir_next_pos(ns, parent, ctx->pos, pos)) {
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001650 const char *name = pos->name;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001651 unsigned int type = dt_type(pos);
1652 int len = strlen(name);
Shaohua Lic53cd492017-07-12 11:49:50 -07001653 ino_t ino = pos->id.ino;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001654
Tejun Heoadc5e8b2013-12-11 14:11:54 -05001655 ctx->pos = pos->hash;
Tejun Heofd7b9f72013-11-28 14:54:33 -05001656 file->private_data = pos;
1657 kernfs_get(pos);
1658
Tejun Heoa797bfc2013-12-11 14:11:57 -05001659 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001660 if (!dir_emit(ctx, name, len, ino, type))
1661 return 0;
Tejun Heoa797bfc2013-12-11 14:11:57 -05001662 mutex_lock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001663 }
Tejun Heoa797bfc2013-12-11 14:11:57 -05001664 mutex_unlock(&kernfs_mutex);
Tejun Heofd7b9f72013-11-28 14:54:33 -05001665 file->private_data = NULL;
1666 ctx->pos = INT_MAX;
1667 return 0;
1668}
1669
Tejun Heoa797bfc2013-12-11 14:11:57 -05001670const struct file_operations kernfs_dir_fops = {
Tejun Heofd7b9f72013-11-28 14:54:33 -05001671 .read = generic_read_dir,
Al Viro8cb0d2c2016-04-20 19:59:01 -04001672 .iterate_shared = kernfs_fop_readdir,
Tejun Heoc637b8a2013-12-11 14:11:58 -05001673 .release = kernfs_dir_fop_release,
Al Viro8cb0d2c2016-04-20 19:59:01 -04001674 .llseek = generic_file_llseek,
Tejun Heofd7b9f72013-11-28 14:54:33 -05001675};