xref: /linux/fs/sysfs/dir.c (revision f7db5e7660b122142410dcf36ba903c73d473250)
1 /*
2  * fs/sysfs/dir.c - sysfs core and dir operation implementation
3  *
4  * Copyright (c) 2001-3 Patrick Mochel
5  * Copyright (c) 2007 SUSE Linux Products GmbH
6  * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
7  *
8  * This file is released under the GPLv2.
9  *
10  * Please see Documentation/filesystems/sysfs.txt for more information.
11  */
12 
13 #undef DEBUG
14 
15 #include <linux/fs.h>
16 #include <linux/mount.h>
17 #include <linux/module.h>
18 #include <linux/kobject.h>
19 #include <linux/namei.h>
20 #include <linux/idr.h>
21 #include <linux/completion.h>
22 #include <linux/mutex.h>
23 #include <linux/slab.h>
24 #include <linux/security.h>
25 #include <linux/hash.h>
26 #include "sysfs.h"
27 
28 DEFINE_MUTEX(sysfs_mutex);
29 DEFINE_SPINLOCK(sysfs_assoc_lock);
30 
31 #define to_sysfs_dirent(X) rb_entry((X), struct sysfs_dirent, s_rb);
32 
33 static DEFINE_SPINLOCK(sysfs_ino_lock);
34 static DEFINE_IDA(sysfs_ino_ida);
35 
36 /**
37  *	sysfs_name_hash
38  *	@ns:   Namespace tag to hash
39  *	@name: Null terminated string to hash
40  *
41  *	Returns 31 bit hash of ns + name (so it fits in an off_t )
42  */
43 static unsigned int sysfs_name_hash(const void *ns, const char *name)
44 {
45 	unsigned long hash = init_name_hash();
46 	unsigned int len = strlen(name);
47 	while (len--)
48 		hash = partial_name_hash(*name++, hash);
49 	hash = ( end_name_hash(hash) ^ hash_ptr( (void *)ns, 31 ) );
50 	hash &= 0x7fffffffU;
51 	/* Reserve hash numbers 0, 1 and INT_MAX for magic directory entries */
52 	if (hash < 1)
53 		hash += 2;
54 	if (hash >= INT_MAX)
55 		hash = INT_MAX - 1;
56 	return hash;
57 }
58 
59 static int sysfs_name_compare(unsigned int hash, const void *ns,
60 	const char *name, const struct sysfs_dirent *sd)
61 {
62 	if (hash != sd->s_hash)
63 		return hash - sd->s_hash;
64 	if (ns != sd->s_ns)
65 		return ns - sd->s_ns;
66 	return strcmp(name, sd->s_name);
67 }
68 
69 static int sysfs_sd_compare(const struct sysfs_dirent *left,
70 			    const struct sysfs_dirent *right)
71 {
72 	return sysfs_name_compare(left->s_hash, left->s_ns, left->s_name,
73 				  right);
74 }
75 
76 /**
77  *	sysfs_link_subling - link sysfs_dirent into sibling rbtree
78  *	@sd: sysfs_dirent of interest
79  *
80  *	Link @sd into its sibling rbtree which starts from
81  *	sd->s_parent->s_dir.children.
82  *
83  *	Locking:
84  *	mutex_lock(sysfs_mutex)
85  *
86  *	RETURNS:
87  *	0 on susccess -EEXIST on failure.
88  */
89 static int sysfs_link_sibling(struct sysfs_dirent *sd)
90 {
91 	struct rb_node **node = &sd->s_parent->s_dir.children.rb_node;
92 	struct rb_node *parent = NULL;
93 
94 	if (sysfs_type(sd) == SYSFS_DIR)
95 		sd->s_parent->s_dir.subdirs++;
96 
97 	while (*node) {
98 		struct sysfs_dirent *pos;
99 		int result;
100 
101 		pos = to_sysfs_dirent(*node);
102 		parent = *node;
103 		result = sysfs_sd_compare(sd, pos);
104 		if (result < 0)
105 			node = &pos->s_rb.rb_left;
106 		else if (result > 0)
107 			node = &pos->s_rb.rb_right;
108 		else
109 			return -EEXIST;
110 	}
111 	/* add new node and rebalance the tree */
112 	rb_link_node(&sd->s_rb, parent, node);
113 	rb_insert_color(&sd->s_rb, &sd->s_parent->s_dir.children);
114 	return 0;
115 }
116 
117 /**
118  *	sysfs_unlink_sibling - unlink sysfs_dirent from sibling rbtree
119  *	@sd: sysfs_dirent of interest
120  *
121  *	Unlink @sd from its sibling rbtree which starts from
122  *	sd->s_parent->s_dir.children.
123  *
124  *	Locking:
125  *	mutex_lock(sysfs_mutex)
126  */
127 static void sysfs_unlink_sibling(struct sysfs_dirent *sd)
128 {
129 	if (sysfs_type(sd) == SYSFS_DIR)
130 		sd->s_parent->s_dir.subdirs--;
131 
132 	rb_erase(&sd->s_rb, &sd->s_parent->s_dir.children);
133 }
134 
135 #ifdef CONFIG_DEBUG_LOCK_ALLOC
136 
137 /* Test for attributes that want to ignore lockdep for read-locking */
138 static bool ignore_lockdep(struct sysfs_dirent *sd)
139 {
140 	return sysfs_type(sd) == SYSFS_KOBJ_ATTR &&
141 			sd->s_attr.attr->ignore_lockdep;
142 }
143 
144 #else
145 
146 static inline bool ignore_lockdep(struct sysfs_dirent *sd)
147 {
148 	return true;
149 }
150 
151 #endif
152 
153 /**
154  *	sysfs_get_active - get an active reference to sysfs_dirent
155  *	@sd: sysfs_dirent to get an active reference to
156  *
157  *	Get an active reference of @sd.  This function is noop if @sd
158  *	is NULL.
159  *
160  *	RETURNS:
161  *	Pointer to @sd on success, NULL on failure.
162  */
163 struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd)
164 {
165 	if (unlikely(!sd))
166 		return NULL;
167 
168 	if (!atomic_inc_unless_negative(&sd->s_active))
169 		return NULL;
170 
171 	if (likely(!ignore_lockdep(sd)))
172 		rwsem_acquire_read(&sd->dep_map, 0, 1, _RET_IP_);
173 	return sd;
174 }
175 
176 /**
177  *	sysfs_put_active - put an active reference to sysfs_dirent
178  *	@sd: sysfs_dirent to put an active reference to
179  *
180  *	Put an active reference to @sd.  This function is noop if @sd
181  *	is NULL.
182  */
183 void sysfs_put_active(struct sysfs_dirent *sd)
184 {
185 	int v;
186 
187 	if (unlikely(!sd))
188 		return;
189 
190 	if (likely(!ignore_lockdep(sd)))
191 		rwsem_release(&sd->dep_map, 1, _RET_IP_);
192 	v = atomic_dec_return(&sd->s_active);
193 	if (likely(v != SD_DEACTIVATED_BIAS))
194 		return;
195 
196 	/* atomic_dec_return() is a mb(), we'll always see the updated
197 	 * sd->u.completion.
198 	 */
199 	complete(sd->u.completion);
200 }
201 
202 /**
203  *	sysfs_deactivate - deactivate sysfs_dirent
204  *	@sd: sysfs_dirent to deactivate
205  *
206  *	Deny new active references and drain existing ones.
207  */
208 static void sysfs_deactivate(struct sysfs_dirent *sd)
209 {
210 	DECLARE_COMPLETION_ONSTACK(wait);
211 	int v;
212 
213 	BUG_ON(!(sd->s_flags & SYSFS_FLAG_REMOVED));
214 
215 	if (!(sysfs_type(sd) & SYSFS_ACTIVE_REF))
216 		return;
217 
218 	sd->u.completion = (void *)&wait;
219 
220 	rwsem_acquire(&sd->dep_map, 0, 0, _RET_IP_);
221 	/* atomic_add_return() is a mb(), put_active() will always see
222 	 * the updated sd->u.completion.
223 	 */
224 	v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active);
225 
226 	if (v != SD_DEACTIVATED_BIAS) {
227 		lock_contended(&sd->dep_map, _RET_IP_);
228 		wait_for_completion(&wait);
229 	}
230 
231 	lock_acquired(&sd->dep_map, _RET_IP_);
232 	rwsem_release(&sd->dep_map, 1, _RET_IP_);
233 }
234 
235 static int sysfs_alloc_ino(unsigned int *pino)
236 {
237 	int ino, rc;
238 
239  retry:
240 	spin_lock(&sysfs_ino_lock);
241 	rc = ida_get_new_above(&sysfs_ino_ida, 2, &ino);
242 	spin_unlock(&sysfs_ino_lock);
243 
244 	if (rc == -EAGAIN) {
245 		if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL))
246 			goto retry;
247 		rc = -ENOMEM;
248 	}
249 
250 	*pino = ino;
251 	return rc;
252 }
253 
254 static void sysfs_free_ino(unsigned int ino)
255 {
256 	spin_lock(&sysfs_ino_lock);
257 	ida_remove(&sysfs_ino_ida, ino);
258 	spin_unlock(&sysfs_ino_lock);
259 }
260 
261 void release_sysfs_dirent(struct sysfs_dirent * sd)
262 {
263 	struct sysfs_dirent *parent_sd;
264 
265  repeat:
266 	/* Moving/renaming is always done while holding reference.
267 	 * sd->s_parent won't change beneath us.
268 	 */
269 	parent_sd = sd->s_parent;
270 
271 	if (sysfs_type(sd) == SYSFS_KOBJ_LINK)
272 		sysfs_put(sd->s_symlink.target_sd);
273 	if (sysfs_type(sd) & SYSFS_COPY_NAME)
274 		kfree(sd->s_name);
275 	if (sd->s_iattr && sd->s_iattr->ia_secdata)
276 		security_release_secctx(sd->s_iattr->ia_secdata,
277 					sd->s_iattr->ia_secdata_len);
278 	kfree(sd->s_iattr);
279 	sysfs_free_ino(sd->s_ino);
280 	kmem_cache_free(sysfs_dir_cachep, sd);
281 
282 	sd = parent_sd;
283 	if (sd && atomic_dec_and_test(&sd->s_count))
284 		goto repeat;
285 }
286 
287 static int sysfs_dentry_delete(const struct dentry *dentry)
288 {
289 	struct sysfs_dirent *sd = dentry->d_fsdata;
290 	return !(sd && !(sd->s_flags & SYSFS_FLAG_REMOVED));
291 }
292 
293 static int sysfs_dentry_revalidate(struct dentry *dentry, unsigned int flags)
294 {
295 	struct sysfs_dirent *sd;
296 	int is_dir;
297 	int type;
298 
299 	if (flags & LOOKUP_RCU)
300 		return -ECHILD;
301 
302 	sd = dentry->d_fsdata;
303 	mutex_lock(&sysfs_mutex);
304 
305 	/* The sysfs dirent has been deleted */
306 	if (sd->s_flags & SYSFS_FLAG_REMOVED)
307 		goto out_bad;
308 
309 	/* The sysfs dirent has been moved? */
310 	if (dentry->d_parent->d_fsdata != sd->s_parent)
311 		goto out_bad;
312 
313 	/* The sysfs dirent has been renamed */
314 	if (strcmp(dentry->d_name.name, sd->s_name) != 0)
315 		goto out_bad;
316 
317 	/* The sysfs dirent has been moved to a different namespace */
318 	type = KOBJ_NS_TYPE_NONE;
319 	if (sd->s_parent) {
320 		type = sysfs_ns_type(sd->s_parent);
321 		if (type != KOBJ_NS_TYPE_NONE &&
322 				sysfs_info(dentry->d_sb)->ns[type] != sd->s_ns)
323 			goto out_bad;
324 	}
325 
326 	mutex_unlock(&sysfs_mutex);
327 out_valid:
328 	return 1;
329 out_bad:
330 	/* Remove the dentry from the dcache hashes.
331 	 * If this is a deleted dentry we use d_drop instead of d_delete
332 	 * so sysfs doesn't need to cope with negative dentries.
333 	 *
334 	 * If this is a dentry that has simply been renamed we
335 	 * use d_drop to remove it from the dcache lookup on its
336 	 * old parent.  If this dentry persists later when a lookup
337 	 * is performed at its new name the dentry will be readded
338 	 * to the dcache hashes.
339 	 */
340 	is_dir = (sysfs_type(sd) == SYSFS_DIR);
341 	mutex_unlock(&sysfs_mutex);
342 	if (is_dir) {
343 		/* If we have submounts we must allow the vfs caches
344 		 * to lie about the state of the filesystem to prevent
345 		 * leaks and other nasty things.
346 		 */
347 		if (have_submounts(dentry))
348 			goto out_valid;
349 		shrink_dcache_parent(dentry);
350 	}
351 	d_drop(dentry);
352 	return 0;
353 }
354 
355 static void sysfs_dentry_release(struct dentry *dentry)
356 {
357 	sysfs_put(dentry->d_fsdata);
358 }
359 
360 const struct dentry_operations sysfs_dentry_ops = {
361 	.d_revalidate	= sysfs_dentry_revalidate,
362 	.d_delete	= sysfs_dentry_delete,
363 	.d_release	= sysfs_dentry_release,
364 };
365 
366 struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
367 {
368 	char *dup_name = NULL;
369 	struct sysfs_dirent *sd;
370 
371 	if (type & SYSFS_COPY_NAME) {
372 		name = dup_name = kstrdup(name, GFP_KERNEL);
373 		if (!name)
374 			return NULL;
375 	}
376 
377 	sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
378 	if (!sd)
379 		goto err_out1;
380 
381 	if (sysfs_alloc_ino(&sd->s_ino))
382 		goto err_out2;
383 
384 	atomic_set(&sd->s_count, 1);
385 	atomic_set(&sd->s_active, 0);
386 
387 	sd->s_name = name;
388 	sd->s_mode = mode;
389 	sd->s_flags = type;
390 
391 	return sd;
392 
393  err_out2:
394 	kmem_cache_free(sysfs_dir_cachep, sd);
395  err_out1:
396 	kfree(dup_name);
397 	return NULL;
398 }
399 
400 /**
401  *	sysfs_addrm_start - prepare for sysfs_dirent add/remove
402  *	@acxt: pointer to sysfs_addrm_cxt to be used
403  *	@parent_sd: parent sysfs_dirent
404  *
405  *	This function is called when the caller is about to add or
406  *	remove sysfs_dirent under @parent_sd.  This function acquires
407  *	sysfs_mutex.  @acxt is used to keep and pass context to
408  *	other addrm functions.
409  *
410  *	LOCKING:
411  *	Kernel thread context (may sleep).  sysfs_mutex is locked on
412  *	return.
413  */
414 void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
415 		       struct sysfs_dirent *parent_sd)
416 {
417 	memset(acxt, 0, sizeof(*acxt));
418 	acxt->parent_sd = parent_sd;
419 
420 	mutex_lock(&sysfs_mutex);
421 }
422 
423 /**
424  *	__sysfs_add_one - add sysfs_dirent to parent without warning
425  *	@acxt: addrm context to use
426  *	@sd: sysfs_dirent to be added
427  *
428  *	Get @acxt->parent_sd and set sd->s_parent to it and increment
429  *	nlink of parent inode if @sd is a directory and link into the
430  *	children list of the parent.
431  *
432  *	This function should be called between calls to
433  *	sysfs_addrm_start() and sysfs_addrm_finish() and should be
434  *	passed the same @acxt as passed to sysfs_addrm_start().
435  *
436  *	LOCKING:
437  *	Determined by sysfs_addrm_start().
438  *
439  *	RETURNS:
440  *	0 on success, -EEXIST if entry with the given name already
441  *	exists.
442  */
443 int __sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
444 {
445 	struct sysfs_inode_attrs *ps_iattr;
446 	int ret;
447 
448 	if (!!sysfs_ns_type(acxt->parent_sd) != !!sd->s_ns) {
449 		WARN(1, KERN_WARNING "sysfs: ns %s in '%s' for '%s'\n",
450 			sysfs_ns_type(acxt->parent_sd)? "required": "invalid",
451 			acxt->parent_sd->s_name, sd->s_name);
452 		return -EINVAL;
453 	}
454 
455 	sd->s_hash = sysfs_name_hash(sd->s_ns, sd->s_name);
456 	sd->s_parent = sysfs_get(acxt->parent_sd);
457 
458 	ret = sysfs_link_sibling(sd);
459 	if (ret)
460 		return ret;
461 
462 	/* Update timestamps on the parent */
463 	ps_iattr = acxt->parent_sd->s_iattr;
464 	if (ps_iattr) {
465 		struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
466 		ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
467 	}
468 
469 	return 0;
470 }
471 
472 /**
473  *	sysfs_pathname - return full path to sysfs dirent
474  *	@sd: sysfs_dirent whose path we want
475  *	@path: caller allocated buffer of size PATH_MAX
476  *
477  *	Gives the name "/" to the sysfs_root entry; any path returned
478  *	is relative to wherever sysfs is mounted.
479  */
480 static char *sysfs_pathname(struct sysfs_dirent *sd, char *path)
481 {
482 	if (sd->s_parent) {
483 		sysfs_pathname(sd->s_parent, path);
484 		strlcat(path, "/", PATH_MAX);
485 	}
486 	strlcat(path, sd->s_name, PATH_MAX);
487 	return path;
488 }
489 
490 /**
491  *	sysfs_add_one - add sysfs_dirent to parent
492  *	@acxt: addrm context to use
493  *	@sd: sysfs_dirent to be added
494  *
495  *	Get @acxt->parent_sd and set sd->s_parent to it and increment
496  *	nlink of parent inode if @sd is a directory and link into the
497  *	children list of the parent.
498  *
499  *	This function should be called between calls to
500  *	sysfs_addrm_start() and sysfs_addrm_finish() and should be
501  *	passed the same @acxt as passed to sysfs_addrm_start().
502  *
503  *	LOCKING:
504  *	Determined by sysfs_addrm_start().
505  *
506  *	RETURNS:
507  *	0 on success, -EEXIST if entry with the given name already
508  *	exists.
509  */
510 int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
511 {
512 	int ret;
513 
514 	ret = __sysfs_add_one(acxt, sd);
515 	if (ret == -EEXIST) {
516 		char *path = kzalloc(PATH_MAX, GFP_KERNEL);
517 		WARN(1, KERN_WARNING
518 		     "sysfs: cannot create duplicate filename '%s'\n",
519 		     (path == NULL) ? sd->s_name
520 				    : (sysfs_pathname(acxt->parent_sd, path),
521 				       strlcat(path, "/", PATH_MAX),
522 				       strlcat(path, sd->s_name, PATH_MAX),
523 				       path));
524 		kfree(path);
525 	}
526 
527 	return ret;
528 }
529 
530 /**
531  *	sysfs_remove_one - remove sysfs_dirent from parent
532  *	@acxt: addrm context to use
533  *	@sd: sysfs_dirent to be removed
534  *
535  *	Mark @sd removed and drop nlink of parent inode if @sd is a
536  *	directory.  @sd is unlinked from the children list.
537  *
538  *	This function should be called between calls to
539  *	sysfs_addrm_start() and sysfs_addrm_finish() and should be
540  *	passed the same @acxt as passed to sysfs_addrm_start().
541  *
542  *	LOCKING:
543  *	Determined by sysfs_addrm_start().
544  */
545 void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
546 {
547 	struct sysfs_inode_attrs *ps_iattr;
548 
549 	BUG_ON(sd->s_flags & SYSFS_FLAG_REMOVED);
550 
551 	sysfs_unlink_sibling(sd);
552 
553 	/* Update timestamps on the parent */
554 	ps_iattr = acxt->parent_sd->s_iattr;
555 	if (ps_iattr) {
556 		struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
557 		ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
558 	}
559 
560 	sd->s_flags |= SYSFS_FLAG_REMOVED;
561 	sd->u.removed_list = acxt->removed;
562 	acxt->removed = sd;
563 }
564 
565 /**
566  *	sysfs_addrm_finish - finish up sysfs_dirent add/remove
567  *	@acxt: addrm context to finish up
568  *
569  *	Finish up sysfs_dirent add/remove.  Resources acquired by
570  *	sysfs_addrm_start() are released and removed sysfs_dirents are
571  *	cleaned up.
572  *
573  *	LOCKING:
574  *	sysfs_mutex is released.
575  */
576 void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
577 {
578 	/* release resources acquired by sysfs_addrm_start() */
579 	mutex_unlock(&sysfs_mutex);
580 
581 	/* kill removed sysfs_dirents */
582 	while (acxt->removed) {
583 		struct sysfs_dirent *sd = acxt->removed;
584 
585 		acxt->removed = sd->u.removed_list;
586 
587 		sysfs_deactivate(sd);
588 		unmap_bin_file(sd);
589 		sysfs_put(sd);
590 	}
591 }
592 
593 /**
594  *	sysfs_find_dirent - find sysfs_dirent with the given name
595  *	@parent_sd: sysfs_dirent to search under
596  *	@name: name to look for
597  *
598  *	Look for sysfs_dirent with name @name under @parent_sd.
599  *
600  *	LOCKING:
601  *	mutex_lock(sysfs_mutex)
602  *
603  *	RETURNS:
604  *	Pointer to sysfs_dirent if found, NULL if not.
605  */
606 struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
607 				       const void *ns,
608 				       const unsigned char *name)
609 {
610 	struct rb_node *node = parent_sd->s_dir.children.rb_node;
611 	unsigned int hash;
612 
613 	if (!!sysfs_ns_type(parent_sd) != !!ns) {
614 		WARN(1, KERN_WARNING "sysfs: ns %s in '%s' for '%s'\n",
615 			sysfs_ns_type(parent_sd)? "required": "invalid",
616 			parent_sd->s_name, name);
617 		return NULL;
618 	}
619 
620 	hash = sysfs_name_hash(ns, name);
621 	while (node) {
622 		struct sysfs_dirent *sd;
623 		int result;
624 
625 		sd = to_sysfs_dirent(node);
626 		result = sysfs_name_compare(hash, ns, name, sd);
627 		if (result < 0)
628 			node = node->rb_left;
629 		else if (result > 0)
630 			node = node->rb_right;
631 		else
632 			return sd;
633 	}
634 	return NULL;
635 }
636 
637 /**
638  *	sysfs_get_dirent - find and get sysfs_dirent with the given name
639  *	@parent_sd: sysfs_dirent to search under
640  *	@name: name to look for
641  *
642  *	Look for sysfs_dirent with name @name under @parent_sd and get
643  *	it if found.
644  *
645  *	LOCKING:
646  *	Kernel thread context (may sleep).  Grabs sysfs_mutex.
647  *
648  *	RETURNS:
649  *	Pointer to sysfs_dirent if found, NULL if not.
650  */
651 struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
652 				      const void *ns,
653 				      const unsigned char *name)
654 {
655 	struct sysfs_dirent *sd;
656 
657 	mutex_lock(&sysfs_mutex);
658 	sd = sysfs_find_dirent(parent_sd, ns, name);
659 	sysfs_get(sd);
660 	mutex_unlock(&sysfs_mutex);
661 
662 	return sd;
663 }
664 EXPORT_SYMBOL_GPL(sysfs_get_dirent);
665 
666 static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
667 	enum kobj_ns_type type, const void *ns, const char *name,
668 	struct sysfs_dirent **p_sd)
669 {
670 	umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
671 	struct sysfs_addrm_cxt acxt;
672 	struct sysfs_dirent *sd;
673 	int rc;
674 
675 	/* allocate */
676 	sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
677 	if (!sd)
678 		return -ENOMEM;
679 
680 	sd->s_flags |= (type << SYSFS_NS_TYPE_SHIFT);
681 	sd->s_ns = ns;
682 	sd->s_dir.kobj = kobj;
683 
684 	/* link in */
685 	sysfs_addrm_start(&acxt, parent_sd);
686 	rc = sysfs_add_one(&acxt, sd);
687 	sysfs_addrm_finish(&acxt);
688 
689 	if (rc == 0)
690 		*p_sd = sd;
691 	else
692 		sysfs_put(sd);
693 
694 	return rc;
695 }
696 
697 int sysfs_create_subdir(struct kobject *kobj, const char *name,
698 			struct sysfs_dirent **p_sd)
699 {
700 	return create_dir(kobj, kobj->sd,
701 			  KOBJ_NS_TYPE_NONE, NULL, name, p_sd);
702 }
703 
704 /**
705  *	sysfs_read_ns_type: return associated ns_type
706  *	@kobj: the kobject being queried
707  *
708  *	Each kobject can be tagged with exactly one namespace type
709  *	(i.e. network or user).  Return the ns_type associated with
710  *	this object if any
711  */
712 static enum kobj_ns_type sysfs_read_ns_type(struct kobject *kobj)
713 {
714 	const struct kobj_ns_type_operations *ops;
715 	enum kobj_ns_type type;
716 
717 	ops = kobj_child_ns_ops(kobj);
718 	if (!ops)
719 		return KOBJ_NS_TYPE_NONE;
720 
721 	type = ops->type;
722 	BUG_ON(type <= KOBJ_NS_TYPE_NONE);
723 	BUG_ON(type >= KOBJ_NS_TYPES);
724 	BUG_ON(!kobj_ns_type_registered(type));
725 
726 	return type;
727 }
728 
729 /**
730  *	sysfs_create_dir - create a directory for an object.
731  *	@kobj:		object we're creating directory for.
732  */
733 int sysfs_create_dir(struct kobject * kobj)
734 {
735 	enum kobj_ns_type type;
736 	struct sysfs_dirent *parent_sd, *sd;
737 	const void *ns = NULL;
738 	int error = 0;
739 
740 	BUG_ON(!kobj);
741 
742 	if (kobj->parent)
743 		parent_sd = kobj->parent->sd;
744 	else
745 		parent_sd = &sysfs_root;
746 
747 	if (!parent_sd)
748 		return -ENOENT;
749 
750 	if (sysfs_ns_type(parent_sd))
751 		ns = kobj->ktype->namespace(kobj);
752 	type = sysfs_read_ns_type(kobj);
753 
754 	error = create_dir(kobj, parent_sd, type, ns, kobject_name(kobj), &sd);
755 	if (!error)
756 		kobj->sd = sd;
757 	return error;
758 }
759 
760 static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry,
761 				unsigned int flags)
762 {
763 	struct dentry *ret = NULL;
764 	struct dentry *parent = dentry->d_parent;
765 	struct sysfs_dirent *parent_sd = parent->d_fsdata;
766 	struct sysfs_dirent *sd;
767 	struct inode *inode;
768 	enum kobj_ns_type type;
769 	const void *ns;
770 
771 	mutex_lock(&sysfs_mutex);
772 
773 	type = sysfs_ns_type(parent_sd);
774 	ns = sysfs_info(dir->i_sb)->ns[type];
775 
776 	sd = sysfs_find_dirent(parent_sd, ns, dentry->d_name.name);
777 
778 	/* no such entry */
779 	if (!sd) {
780 		ret = ERR_PTR(-ENOENT);
781 		goto out_unlock;
782 	}
783 	dentry->d_fsdata = sysfs_get(sd);
784 
785 	/* attach dentry and inode */
786 	inode = sysfs_get_inode(dir->i_sb, sd);
787 	if (!inode) {
788 		ret = ERR_PTR(-ENOMEM);
789 		goto out_unlock;
790 	}
791 
792 	/* instantiate and hash dentry */
793 	ret = d_materialise_unique(dentry, inode);
794  out_unlock:
795 	mutex_unlock(&sysfs_mutex);
796 	return ret;
797 }
798 
799 const struct inode_operations sysfs_dir_inode_operations = {
800 	.lookup		= sysfs_lookup,
801 	.permission	= sysfs_permission,
802 	.setattr	= sysfs_setattr,
803 	.getattr	= sysfs_getattr,
804 	.setxattr	= sysfs_setxattr,
805 };
806 
807 static void remove_dir(struct sysfs_dirent *sd)
808 {
809 	struct sysfs_addrm_cxt acxt;
810 
811 	sysfs_addrm_start(&acxt, sd->s_parent);
812 	sysfs_remove_one(&acxt, sd);
813 	sysfs_addrm_finish(&acxt);
814 }
815 
816 void sysfs_remove_subdir(struct sysfs_dirent *sd)
817 {
818 	remove_dir(sd);
819 }
820 
821 
822 static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd)
823 {
824 	struct sysfs_addrm_cxt acxt;
825 	struct rb_node *pos;
826 
827 	if (!dir_sd)
828 		return;
829 
830 	pr_debug("sysfs %s: removing dir\n", dir_sd->s_name);
831 	sysfs_addrm_start(&acxt, dir_sd);
832 	pos = rb_first(&dir_sd->s_dir.children);
833 	while (pos) {
834 		struct sysfs_dirent *sd = to_sysfs_dirent(pos);
835 		pos = rb_next(pos);
836 		if (sysfs_type(sd) != SYSFS_DIR)
837 			sysfs_remove_one(&acxt, sd);
838 	}
839 	sysfs_addrm_finish(&acxt);
840 
841 	remove_dir(dir_sd);
842 }
843 
844 /**
845  *	sysfs_remove_dir - remove an object's directory.
846  *	@kobj:	object.
847  *
848  *	The only thing special about this is that we remove any files in
849  *	the directory before we remove the directory, and we've inlined
850  *	what used to be sysfs_rmdir() below, instead of calling separately.
851  */
852 
853 void sysfs_remove_dir(struct kobject * kobj)
854 {
855 	struct sysfs_dirent *sd = kobj->sd;
856 
857 	spin_lock(&sysfs_assoc_lock);
858 	kobj->sd = NULL;
859 	spin_unlock(&sysfs_assoc_lock);
860 
861 	__sysfs_remove_dir(sd);
862 }
863 
864 int sysfs_rename(struct sysfs_dirent *sd,
865 	struct sysfs_dirent *new_parent_sd, const void *new_ns,
866 	const char *new_name)
867 {
868 	int error;
869 
870 	mutex_lock(&sysfs_mutex);
871 
872 	error = 0;
873 	if ((sd->s_parent == new_parent_sd) && (sd->s_ns == new_ns) &&
874 	    (strcmp(sd->s_name, new_name) == 0))
875 		goto out;	/* nothing to rename */
876 
877 	error = -EEXIST;
878 	if (sysfs_find_dirent(new_parent_sd, new_ns, new_name))
879 		goto out;
880 
881 	/* rename sysfs_dirent */
882 	if (strcmp(sd->s_name, new_name) != 0) {
883 		error = -ENOMEM;
884 		new_name = kstrdup(new_name, GFP_KERNEL);
885 		if (!new_name)
886 			goto out;
887 
888 		kfree(sd->s_name);
889 		sd->s_name = new_name;
890 	}
891 
892 	/* Move to the appropriate place in the appropriate directories rbtree. */
893 	sysfs_unlink_sibling(sd);
894 	sysfs_get(new_parent_sd);
895 	sysfs_put(sd->s_parent);
896 	sd->s_ns = new_ns;
897 	sd->s_hash = sysfs_name_hash(sd->s_ns, sd->s_name);
898 	sd->s_parent = new_parent_sd;
899 	sysfs_link_sibling(sd);
900 
901 	error = 0;
902  out:
903 	mutex_unlock(&sysfs_mutex);
904 	return error;
905 }
906 
907 int sysfs_rename_dir(struct kobject *kobj, const char *new_name)
908 {
909 	struct sysfs_dirent *parent_sd = kobj->sd->s_parent;
910 	const void *new_ns = NULL;
911 
912 	if (sysfs_ns_type(parent_sd))
913 		new_ns = kobj->ktype->namespace(kobj);
914 
915 	return sysfs_rename(kobj->sd, parent_sd, new_ns, new_name);
916 }
917 
918 int sysfs_move_dir(struct kobject *kobj, struct kobject *new_parent_kobj)
919 {
920 	struct sysfs_dirent *sd = kobj->sd;
921 	struct sysfs_dirent *new_parent_sd;
922 	const void *new_ns = NULL;
923 
924 	BUG_ON(!sd->s_parent);
925 	if (sysfs_ns_type(sd->s_parent))
926 		new_ns = kobj->ktype->namespace(kobj);
927 	new_parent_sd = new_parent_kobj && new_parent_kobj->sd ?
928 		new_parent_kobj->sd : &sysfs_root;
929 
930 	return sysfs_rename(sd, new_parent_sd, new_ns, sd->s_name);
931 }
932 
933 /* Relationship between s_mode and the DT_xxx types */
934 static inline unsigned char dt_type(struct sysfs_dirent *sd)
935 {
936 	return (sd->s_mode >> 12) & 15;
937 }
938 
939 static int sysfs_dir_release(struct inode *inode, struct file *filp)
940 {
941 	sysfs_put(filp->private_data);
942 	return 0;
943 }
944 
945 static struct sysfs_dirent *sysfs_dir_pos(const void *ns,
946 	struct sysfs_dirent *parent_sd,	loff_t hash, struct sysfs_dirent *pos)
947 {
948 	if (pos) {
949 		int valid = !(pos->s_flags & SYSFS_FLAG_REMOVED) &&
950 			pos->s_parent == parent_sd &&
951 			hash == pos->s_hash;
952 		sysfs_put(pos);
953 		if (!valid)
954 			pos = NULL;
955 	}
956 	if (!pos && (hash > 1) && (hash < INT_MAX)) {
957 		struct rb_node *node = parent_sd->s_dir.children.rb_node;
958 		while (node) {
959 			pos = to_sysfs_dirent(node);
960 
961 			if (hash < pos->s_hash)
962 				node = node->rb_left;
963 			else if (hash > pos->s_hash)
964 				node = node->rb_right;
965 			else
966 				break;
967 		}
968 	}
969 	/* Skip over entries in the wrong namespace */
970 	while (pos && pos->s_ns != ns) {
971 		struct rb_node *node = rb_next(&pos->s_rb);
972 		if (!node)
973 			pos = NULL;
974 		else
975 			pos = to_sysfs_dirent(node);
976 	}
977 	return pos;
978 }
979 
980 static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns,
981 	struct sysfs_dirent *parent_sd,	ino_t ino, struct sysfs_dirent *pos)
982 {
983 	pos = sysfs_dir_pos(ns, parent_sd, ino, pos);
984 	if (pos) do {
985 		struct rb_node *node = rb_next(&pos->s_rb);
986 		if (!node)
987 			pos = NULL;
988 		else
989 			pos = to_sysfs_dirent(node);
990 	} while (pos && pos->s_ns != ns);
991 	return pos;
992 }
993 
994 static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
995 {
996 	struct dentry *dentry = filp->f_path.dentry;
997 	struct sysfs_dirent * parent_sd = dentry->d_fsdata;
998 	struct sysfs_dirent *pos = filp->private_data;
999 	enum kobj_ns_type type;
1000 	const void *ns;
1001 	ino_t ino;
1002 	loff_t off;
1003 
1004 	type = sysfs_ns_type(parent_sd);
1005 	ns = sysfs_info(dentry->d_sb)->ns[type];
1006 
1007 	if (filp->f_pos == 0) {
1008 		ino = parent_sd->s_ino;
1009 		if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) == 0)
1010 			filp->f_pos++;
1011 		else
1012 			return 0;
1013 	}
1014 	if (filp->f_pos == 1) {
1015 		if (parent_sd->s_parent)
1016 			ino = parent_sd->s_parent->s_ino;
1017 		else
1018 			ino = parent_sd->s_ino;
1019 		if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) == 0)
1020 			filp->f_pos++;
1021 		else
1022 			return 0;
1023 	}
1024 	mutex_lock(&sysfs_mutex);
1025 	off = filp->f_pos;
1026 	for (pos = sysfs_dir_pos(ns, parent_sd, filp->f_pos, pos);
1027 	     pos;
1028 	     pos = sysfs_dir_next_pos(ns, parent_sd, filp->f_pos, pos)) {
1029 		const char * name;
1030 		unsigned int type;
1031 		int len, ret;
1032 
1033 		name = pos->s_name;
1034 		len = strlen(name);
1035 		ino = pos->s_ino;
1036 		type = dt_type(pos);
1037 		off = filp->f_pos = pos->s_hash;
1038 		filp->private_data = sysfs_get(pos);
1039 
1040 		mutex_unlock(&sysfs_mutex);
1041 		ret = filldir(dirent, name, len, off, ino, type);
1042 		mutex_lock(&sysfs_mutex);
1043 		if (ret < 0)
1044 			break;
1045 	}
1046 	mutex_unlock(&sysfs_mutex);
1047 
1048 	/* don't reference last entry if its refcount is dropped */
1049 	if (!pos) {
1050 		filp->private_data = NULL;
1051 
1052 		/* EOF and not changed as 0 or 1 in read/write path */
1053 		if (off == filp->f_pos && off > 1)
1054 			filp->f_pos = INT_MAX;
1055 	}
1056 	return 0;
1057 }
1058 
1059 static loff_t sysfs_dir_llseek(struct file *file, loff_t offset, int whence)
1060 {
1061 	struct inode *inode = file_inode(file);
1062 	loff_t ret;
1063 
1064 	mutex_lock(&inode->i_mutex);
1065 	ret = generic_file_llseek(file, offset, whence);
1066 	mutex_unlock(&inode->i_mutex);
1067 
1068 	return ret;
1069 }
1070 
1071 const struct file_operations sysfs_dir_operations = {
1072 	.read		= generic_read_dir,
1073 	.readdir	= sysfs_readdir,
1074 	.release	= sysfs_dir_release,
1075 	.llseek		= sysfs_dir_llseek,
1076 };
1077