2 * fs/sysfs/dir.c - sysfs core and dir operation implementation
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
8 * This file is released under the GPLv2.
10 * Please see Documentation/filesystems/sysfs.txt for more information.
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>
28 DEFINE_MUTEX(sysfs_mutex);
29 DEFINE_SPINLOCK(sysfs_assoc_lock);
31 #define to_sysfs_dirent(X) rb_entry((X), struct sysfs_dirent, s_rb);
33 static DEFINE_SPINLOCK(sysfs_ino_lock);
34 static DEFINE_IDA(sysfs_ino_ida);
38 * @ns: Namespace tag to hash
39 * @name: Null terminated string to hash
41 * Returns 31 bit hash of ns + name (so it fits in an off_t )
43 static unsigned int sysfs_name_hash(const void *ns, const char *name)
45 unsigned long hash = init_name_hash();
46 unsigned int len = strlen(name);
48 hash = partial_name_hash(*name++, hash);
49 hash = ( end_name_hash(hash) ^ hash_ptr( (void *)ns, 31 ) );
51 /* Reserve hash numbers 0, 1 and INT_MAX for magic directory entries */
59 static int sysfs_name_compare(unsigned int hash, const void *ns,
60 const char *name, const struct sysfs_dirent *sd)
62 if (hash != sd->s_hash)
63 return hash - sd->s_hash;
66 return strcmp(name, sd->s_name);
69 static int sysfs_sd_compare(const struct sysfs_dirent *left,
70 const struct sysfs_dirent *right)
72 return sysfs_name_compare(left->s_hash, left->s_ns, left->s_name,
77 * sysfs_link_sibling - link sysfs_dirent into sibling rbtree
78 * @sd: sysfs_dirent of interest
80 * Link @sd into its sibling rbtree which starts from
81 * sd->s_parent->s_dir.children.
84 * mutex_lock(sysfs_mutex)
87 * 0 on susccess -EEXIST on failure.
89 static int sysfs_link_sibling(struct sysfs_dirent *sd)
91 struct rb_node **node = &sd->s_parent->s_dir.children.rb_node;
92 struct rb_node *parent = NULL;
94 if (sysfs_type(sd) == SYSFS_DIR)
95 sd->s_parent->s_dir.subdirs++;
98 struct sysfs_dirent *pos;
101 pos = to_sysfs_dirent(*node);
103 result = sysfs_sd_compare(sd, pos);
105 node = &pos->s_rb.rb_left;
107 node = &pos->s_rb.rb_right;
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);
118 * sysfs_unlink_sibling - unlink sysfs_dirent from sibling rbtree
119 * @sd: sysfs_dirent of interest
121 * Unlink @sd from its sibling rbtree which starts from
122 * sd->s_parent->s_dir.children.
125 * mutex_lock(sysfs_mutex)
127 static void sysfs_unlink_sibling(struct sysfs_dirent *sd)
129 if (sysfs_type(sd) == SYSFS_DIR)
130 sd->s_parent->s_dir.subdirs--;
132 rb_erase(&sd->s_rb, &sd->s_parent->s_dir.children);
135 #ifdef CONFIG_DEBUG_LOCK_ALLOC
137 /* Test for attributes that want to ignore lockdep for read-locking */
138 static bool ignore_lockdep(struct sysfs_dirent *sd)
140 return sysfs_type(sd) == SYSFS_KOBJ_ATTR &&
141 sd->s_attr.attr->ignore_lockdep;
146 static inline bool ignore_lockdep(struct sysfs_dirent *sd)
154 * sysfs_get_active - get an active reference to sysfs_dirent
155 * @sd: sysfs_dirent to get an active reference to
157 * Get an active reference of @sd. This function is noop if @sd
161 * Pointer to @sd on success, NULL on failure.
163 struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd)
168 if (!atomic_inc_unless_negative(&sd->s_active))
171 if (likely(!ignore_lockdep(sd)))
172 rwsem_acquire_read(&sd->dep_map, 0, 1, _RET_IP_);
177 * sysfs_put_active - put an active reference to sysfs_dirent
178 * @sd: sysfs_dirent to put an active reference to
180 * Put an active reference to @sd. This function is noop if @sd
183 void sysfs_put_active(struct sysfs_dirent *sd)
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))
196 /* atomic_dec_return() is a mb(), we'll always see the updated
199 complete(sd->u.completion);
203 * sysfs_deactivate - deactivate sysfs_dirent
204 * @sd: sysfs_dirent to deactivate
206 * Deny new active references and drain existing ones.
208 static void sysfs_deactivate(struct sysfs_dirent *sd)
210 DECLARE_COMPLETION_ONSTACK(wait);
213 BUG_ON(!(sd->s_flags & SYSFS_FLAG_REMOVED));
215 if (!(sysfs_type(sd) & SYSFS_ACTIVE_REF))
218 sd->u.completion = (void *)&wait;
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.
224 v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active);
226 if (v != SD_DEACTIVATED_BIAS) {
227 lock_contended(&sd->dep_map, _RET_IP_);
228 wait_for_completion(&wait);
231 lock_acquired(&sd->dep_map, _RET_IP_);
232 rwsem_release(&sd->dep_map, 1, _RET_IP_);
235 static int sysfs_alloc_ino(unsigned int *pino)
240 spin_lock(&sysfs_ino_lock);
241 rc = ida_get_new_above(&sysfs_ino_ida, 2, &ino);
242 spin_unlock(&sysfs_ino_lock);
245 if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL))
254 static void sysfs_free_ino(unsigned int ino)
256 spin_lock(&sysfs_ino_lock);
257 ida_remove(&sysfs_ino_ida, ino);
258 spin_unlock(&sysfs_ino_lock);
261 void release_sysfs_dirent(struct sysfs_dirent * sd)
263 struct sysfs_dirent *parent_sd;
266 /* Moving/renaming is always done while holding reference.
267 * sd->s_parent won't change beneath us.
269 parent_sd = sd->s_parent;
271 WARN(!(sd->s_flags & SYSFS_FLAG_REMOVED),
272 "sysfs: free using entry: %s/%s\n",
273 parent_sd ? parent_sd->s_name : "", sd->s_name);
275 if (sysfs_type(sd) == SYSFS_KOBJ_LINK)
276 sysfs_put(sd->s_symlink.target_sd);
277 if (sysfs_type(sd) & SYSFS_COPY_NAME)
279 if (sd->s_iattr && sd->s_iattr->ia_secdata)
280 security_release_secctx(sd->s_iattr->ia_secdata,
281 sd->s_iattr->ia_secdata_len);
283 sysfs_free_ino(sd->s_ino);
284 kmem_cache_free(sysfs_dir_cachep, sd);
287 if (sd && atomic_dec_and_test(&sd->s_count))
291 static int sysfs_dentry_delete(const struct dentry *dentry)
293 struct sysfs_dirent *sd = dentry->d_fsdata;
294 return !(sd && !(sd->s_flags & SYSFS_FLAG_REMOVED));
297 static int sysfs_dentry_revalidate(struct dentry *dentry, unsigned int flags)
299 struct sysfs_dirent *sd;
303 if (flags & LOOKUP_RCU)
306 sd = dentry->d_fsdata;
307 mutex_lock(&sysfs_mutex);
309 /* The sysfs dirent has been deleted */
310 if (sd->s_flags & SYSFS_FLAG_REMOVED)
313 /* The sysfs dirent has been moved? */
314 if (dentry->d_parent->d_fsdata != sd->s_parent)
317 /* The sysfs dirent has been renamed */
318 if (strcmp(dentry->d_name.name, sd->s_name) != 0)
321 /* The sysfs dirent has been moved to a different namespace */
322 type = KOBJ_NS_TYPE_NONE;
324 type = sysfs_ns_type(sd->s_parent);
325 if (type != KOBJ_NS_TYPE_NONE &&
326 sysfs_info(dentry->d_sb)->ns[type] != sd->s_ns)
330 mutex_unlock(&sysfs_mutex);
334 /* Remove the dentry from the dcache hashes.
335 * If this is a deleted dentry we use d_drop instead of d_delete
336 * so sysfs doesn't need to cope with negative dentries.
338 * If this is a dentry that has simply been renamed we
339 * use d_drop to remove it from the dcache lookup on its
340 * old parent. If this dentry persists later when a lookup
341 * is performed at its new name the dentry will be readded
342 * to the dcache hashes.
344 is_dir = (sysfs_type(sd) == SYSFS_DIR);
345 mutex_unlock(&sysfs_mutex);
347 /* If we have submounts we must allow the vfs caches
348 * to lie about the state of the filesystem to prevent
349 * leaks and other nasty things.
351 if (have_submounts(dentry))
353 shrink_dcache_parent(dentry);
359 static void sysfs_dentry_release(struct dentry *dentry)
361 sysfs_put(dentry->d_fsdata);
364 const struct dentry_operations sysfs_dentry_ops = {
365 .d_revalidate = sysfs_dentry_revalidate,
366 .d_delete = sysfs_dentry_delete,
367 .d_release = sysfs_dentry_release,
370 struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
372 char *dup_name = NULL;
373 struct sysfs_dirent *sd;
375 if (type & SYSFS_COPY_NAME) {
376 name = dup_name = kstrdup(name, GFP_KERNEL);
381 sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
385 if (sysfs_alloc_ino(&sd->s_ino))
388 atomic_set(&sd->s_count, 1);
389 atomic_set(&sd->s_active, 0);
393 sd->s_flags = type | SYSFS_FLAG_REMOVED;
398 kmem_cache_free(sysfs_dir_cachep, sd);
405 * sysfs_addrm_start - prepare for sysfs_dirent add/remove
406 * @acxt: pointer to sysfs_addrm_cxt to be used
407 * @parent_sd: parent sysfs_dirent
409 * This function is called when the caller is about to add or
410 * remove sysfs_dirent under @parent_sd. This function acquires
411 * sysfs_mutex. @acxt is used to keep and pass context to
412 * other addrm functions.
415 * Kernel thread context (may sleep). sysfs_mutex is locked on
418 void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
419 struct sysfs_dirent *parent_sd)
421 memset(acxt, 0, sizeof(*acxt));
422 acxt->parent_sd = parent_sd;
424 mutex_lock(&sysfs_mutex);
428 * __sysfs_add_one - add sysfs_dirent to parent without warning
429 * @acxt: addrm context to use
430 * @sd: sysfs_dirent to be added
432 * Get @acxt->parent_sd and set sd->s_parent to it and increment
433 * nlink of parent inode if @sd is a directory and link into the
434 * children list of the parent.
436 * This function should be called between calls to
437 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
438 * passed the same @acxt as passed to sysfs_addrm_start().
441 * Determined by sysfs_addrm_start().
444 * 0 on success, -EEXIST if entry with the given name already
447 int __sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
449 struct sysfs_inode_attrs *ps_iattr;
452 if (!!sysfs_ns_type(acxt->parent_sd) != !!sd->s_ns) {
453 WARN(1, KERN_WARNING "sysfs: ns %s in '%s' for '%s'\n",
454 sysfs_ns_type(acxt->parent_sd)? "required": "invalid",
455 acxt->parent_sd->s_name, sd->s_name);
459 sd->s_hash = sysfs_name_hash(sd->s_ns, sd->s_name);
460 sd->s_parent = sysfs_get(acxt->parent_sd);
462 ret = sysfs_link_sibling(sd);
466 /* Update timestamps on the parent */
467 ps_iattr = acxt->parent_sd->s_iattr;
469 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
470 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
473 /* Mark the entry added into directory tree */
474 sd->s_flags &= ~SYSFS_FLAG_REMOVED;
480 * sysfs_pathname - return full path to sysfs dirent
481 * @sd: sysfs_dirent whose path we want
482 * @path: caller allocated buffer of size PATH_MAX
484 * Gives the name "/" to the sysfs_root entry; any path returned
485 * is relative to wherever sysfs is mounted.
487 static char *sysfs_pathname(struct sysfs_dirent *sd, char *path)
490 sysfs_pathname(sd->s_parent, path);
491 strlcat(path, "/", PATH_MAX);
493 strlcat(path, sd->s_name, PATH_MAX);
498 * sysfs_add_one - add sysfs_dirent to parent
499 * @acxt: addrm context to use
500 * @sd: sysfs_dirent to be added
502 * Get @acxt->parent_sd and set sd->s_parent to it and increment
503 * nlink of parent inode if @sd is a directory and link into the
504 * children list of the parent.
506 * This function should be called between calls to
507 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
508 * passed the same @acxt as passed to sysfs_addrm_start().
511 * Determined by sysfs_addrm_start().
514 * 0 on success, -EEXIST if entry with the given name already
517 int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
521 ret = __sysfs_add_one(acxt, sd);
522 if (ret == -EEXIST) {
523 char *path = kzalloc(PATH_MAX, GFP_KERNEL);
525 "sysfs: cannot create duplicate filename '%s'\n",
526 (path == NULL) ? sd->s_name
527 : (sysfs_pathname(acxt->parent_sd, path),
528 strlcat(path, "/", PATH_MAX),
529 strlcat(path, sd->s_name, PATH_MAX),
538 * sysfs_remove_one - remove sysfs_dirent from parent
539 * @acxt: addrm context to use
540 * @sd: sysfs_dirent to be removed
542 * Mark @sd removed and drop nlink of parent inode if @sd is a
543 * directory. @sd is unlinked from the children list.
545 * This function should be called between calls to
546 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
547 * passed the same @acxt as passed to sysfs_addrm_start().
550 * Determined by sysfs_addrm_start().
552 void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
554 struct sysfs_inode_attrs *ps_iattr;
556 BUG_ON(sd->s_flags & SYSFS_FLAG_REMOVED);
558 sysfs_unlink_sibling(sd);
560 /* Update timestamps on the parent */
561 ps_iattr = acxt->parent_sd->s_iattr;
563 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
564 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
567 sd->s_flags |= SYSFS_FLAG_REMOVED;
568 sd->u.removed_list = acxt->removed;
573 * sysfs_addrm_finish - finish up sysfs_dirent add/remove
574 * @acxt: addrm context to finish up
576 * Finish up sysfs_dirent add/remove. Resources acquired by
577 * sysfs_addrm_start() are released and removed sysfs_dirents are
581 * sysfs_mutex is released.
583 void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
585 /* release resources acquired by sysfs_addrm_start() */
586 mutex_unlock(&sysfs_mutex);
588 /* kill removed sysfs_dirents */
589 while (acxt->removed) {
590 struct sysfs_dirent *sd = acxt->removed;
592 acxt->removed = sd->u.removed_list;
594 sysfs_deactivate(sd);
601 * sysfs_find_dirent - find sysfs_dirent with the given name
602 * @parent_sd: sysfs_dirent to search under
603 * @name: name to look for
605 * Look for sysfs_dirent with name @name under @parent_sd.
608 * mutex_lock(sysfs_mutex)
611 * Pointer to sysfs_dirent if found, NULL if not.
613 struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
615 const unsigned char *name)
617 struct rb_node *node = parent_sd->s_dir.children.rb_node;
620 if (!!sysfs_ns_type(parent_sd) != !!ns) {
621 WARN(1, KERN_WARNING "sysfs: ns %s in '%s' for '%s'\n",
622 sysfs_ns_type(parent_sd)? "required": "invalid",
623 parent_sd->s_name, name);
627 hash = sysfs_name_hash(ns, name);
629 struct sysfs_dirent *sd;
632 sd = to_sysfs_dirent(node);
633 result = sysfs_name_compare(hash, ns, name, sd);
635 node = node->rb_left;
637 node = node->rb_right;
645 * sysfs_get_dirent - find and get sysfs_dirent with the given name
646 * @parent_sd: sysfs_dirent to search under
647 * @name: name to look for
649 * Look for sysfs_dirent with name @name under @parent_sd and get
653 * Kernel thread context (may sleep). Grabs sysfs_mutex.
656 * Pointer to sysfs_dirent if found, NULL if not.
658 struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
660 const unsigned char *name)
662 struct sysfs_dirent *sd;
664 mutex_lock(&sysfs_mutex);
665 sd = sysfs_find_dirent(parent_sd, ns, name);
667 mutex_unlock(&sysfs_mutex);
671 EXPORT_SYMBOL_GPL(sysfs_get_dirent);
673 static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
674 enum kobj_ns_type type, const void *ns, const char *name,
675 struct sysfs_dirent **p_sd)
677 umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
678 struct sysfs_addrm_cxt acxt;
679 struct sysfs_dirent *sd;
683 sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
687 sd->s_flags |= (type << SYSFS_NS_TYPE_SHIFT);
689 sd->s_dir.kobj = kobj;
692 sysfs_addrm_start(&acxt, parent_sd);
693 rc = sysfs_add_one(&acxt, sd);
694 sysfs_addrm_finish(&acxt);
704 int sysfs_create_subdir(struct kobject *kobj, const char *name,
705 struct sysfs_dirent **p_sd)
707 return create_dir(kobj, kobj->sd,
708 KOBJ_NS_TYPE_NONE, NULL, name, p_sd);
712 * sysfs_read_ns_type: return associated ns_type
713 * @kobj: the kobject being queried
715 * Each kobject can be tagged with exactly one namespace type
716 * (i.e. network or user). Return the ns_type associated with
719 static enum kobj_ns_type sysfs_read_ns_type(struct kobject *kobj)
721 const struct kobj_ns_type_operations *ops;
722 enum kobj_ns_type type;
724 ops = kobj_child_ns_ops(kobj);
726 return KOBJ_NS_TYPE_NONE;
729 BUG_ON(type <= KOBJ_NS_TYPE_NONE);
730 BUG_ON(type >= KOBJ_NS_TYPES);
731 BUG_ON(!kobj_ns_type_registered(type));
737 * sysfs_create_dir - create a directory for an object.
738 * @kobj: object we're creating directory for.
740 int sysfs_create_dir(struct kobject * kobj)
742 enum kobj_ns_type type;
743 struct sysfs_dirent *parent_sd, *sd;
744 const void *ns = NULL;
750 parent_sd = kobj->parent->sd;
752 parent_sd = &sysfs_root;
757 if (sysfs_ns_type(parent_sd))
758 ns = kobj->ktype->namespace(kobj);
759 type = sysfs_read_ns_type(kobj);
761 error = create_dir(kobj, parent_sd, type, ns, kobject_name(kobj), &sd);
767 static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry,
770 struct dentry *ret = NULL;
771 struct dentry *parent = dentry->d_parent;
772 struct sysfs_dirent *parent_sd = parent->d_fsdata;
773 struct sysfs_dirent *sd;
775 enum kobj_ns_type type;
778 mutex_lock(&sysfs_mutex);
780 type = sysfs_ns_type(parent_sd);
781 ns = sysfs_info(dir->i_sb)->ns[type];
783 sd = sysfs_find_dirent(parent_sd, ns, dentry->d_name.name);
787 ret = ERR_PTR(-ENOENT);
790 dentry->d_fsdata = sysfs_get(sd);
792 /* attach dentry and inode */
793 inode = sysfs_get_inode(dir->i_sb, sd);
795 ret = ERR_PTR(-ENOMEM);
799 /* instantiate and hash dentry */
800 ret = d_materialise_unique(dentry, inode);
802 mutex_unlock(&sysfs_mutex);
806 const struct inode_operations sysfs_dir_inode_operations = {
807 .lookup = sysfs_lookup,
808 .permission = sysfs_permission,
809 .setattr = sysfs_setattr,
810 .getattr = sysfs_getattr,
811 .setxattr = sysfs_setxattr,
814 static void remove_dir(struct sysfs_dirent *sd)
816 struct sysfs_addrm_cxt acxt;
818 sysfs_addrm_start(&acxt, sd->s_parent);
819 sysfs_remove_one(&acxt, sd);
820 sysfs_addrm_finish(&acxt);
823 void sysfs_remove_subdir(struct sysfs_dirent *sd)
829 static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd)
831 struct sysfs_addrm_cxt acxt;
837 pr_debug("sysfs %s: removing dir\n", dir_sd->s_name);
838 sysfs_addrm_start(&acxt, dir_sd);
839 pos = rb_first(&dir_sd->s_dir.children);
841 struct sysfs_dirent *sd = to_sysfs_dirent(pos);
843 if (sysfs_type(sd) != SYSFS_DIR)
844 sysfs_remove_one(&acxt, sd);
846 sysfs_addrm_finish(&acxt);
852 * sysfs_remove_dir - remove an object's directory.
855 * The only thing special about this is that we remove any files in
856 * the directory before we remove the directory, and we've inlined
857 * what used to be sysfs_rmdir() below, instead of calling separately.
860 void sysfs_remove_dir(struct kobject * kobj)
862 struct sysfs_dirent *sd = kobj->sd;
864 spin_lock(&sysfs_assoc_lock);
866 spin_unlock(&sysfs_assoc_lock);
868 __sysfs_remove_dir(sd);
871 int sysfs_rename(struct sysfs_dirent *sd,
872 struct sysfs_dirent *new_parent_sd, const void *new_ns,
873 const char *new_name)
877 mutex_lock(&sysfs_mutex);
880 if ((sd->s_parent == new_parent_sd) && (sd->s_ns == new_ns) &&
881 (strcmp(sd->s_name, new_name) == 0))
882 goto out; /* nothing to rename */
885 if (sysfs_find_dirent(new_parent_sd, new_ns, new_name))
888 /* rename sysfs_dirent */
889 if (strcmp(sd->s_name, new_name) != 0) {
891 new_name = kstrdup(new_name, GFP_KERNEL);
896 sd->s_name = new_name;
899 /* Move to the appropriate place in the appropriate directories rbtree. */
900 sysfs_unlink_sibling(sd);
901 sysfs_get(new_parent_sd);
902 sysfs_put(sd->s_parent);
904 sd->s_hash = sysfs_name_hash(sd->s_ns, sd->s_name);
905 sd->s_parent = new_parent_sd;
906 sysfs_link_sibling(sd);
910 mutex_unlock(&sysfs_mutex);
914 int sysfs_rename_dir(struct kobject *kobj, const char *new_name)
916 struct sysfs_dirent *parent_sd = kobj->sd->s_parent;
917 const void *new_ns = NULL;
919 if (sysfs_ns_type(parent_sd))
920 new_ns = kobj->ktype->namespace(kobj);
922 return sysfs_rename(kobj->sd, parent_sd, new_ns, new_name);
925 int sysfs_move_dir(struct kobject *kobj, struct kobject *new_parent_kobj)
927 struct sysfs_dirent *sd = kobj->sd;
928 struct sysfs_dirent *new_parent_sd;
929 const void *new_ns = NULL;
931 BUG_ON(!sd->s_parent);
932 if (sysfs_ns_type(sd->s_parent))
933 new_ns = kobj->ktype->namespace(kobj);
934 new_parent_sd = new_parent_kobj && new_parent_kobj->sd ?
935 new_parent_kobj->sd : &sysfs_root;
937 return sysfs_rename(sd, new_parent_sd, new_ns, sd->s_name);
940 /* Relationship between s_mode and the DT_xxx types */
941 static inline unsigned char dt_type(struct sysfs_dirent *sd)
943 return (sd->s_mode >> 12) & 15;
946 static int sysfs_dir_release(struct inode *inode, struct file *filp)
948 sysfs_put(filp->private_data);
952 static struct sysfs_dirent *sysfs_dir_pos(const void *ns,
953 struct sysfs_dirent *parent_sd, loff_t hash, struct sysfs_dirent *pos)
956 int valid = !(pos->s_flags & SYSFS_FLAG_REMOVED) &&
957 pos->s_parent == parent_sd &&
963 if (!pos && (hash > 1) && (hash < INT_MAX)) {
964 struct rb_node *node = parent_sd->s_dir.children.rb_node;
966 pos = to_sysfs_dirent(node);
968 if (hash < pos->s_hash)
969 node = node->rb_left;
970 else if (hash > pos->s_hash)
971 node = node->rb_right;
976 /* Skip over entries in the wrong namespace */
977 while (pos && pos->s_ns != ns) {
978 struct rb_node *node = rb_next(&pos->s_rb);
982 pos = to_sysfs_dirent(node);
987 static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns,
988 struct sysfs_dirent *parent_sd, ino_t ino, struct sysfs_dirent *pos)
990 pos = sysfs_dir_pos(ns, parent_sd, ino, pos);
992 struct rb_node *node = rb_next(&pos->s_rb);
996 pos = to_sysfs_dirent(node);
997 } while (pos && pos->s_ns != ns);
1001 static int sysfs_readdir(struct file *file, struct dir_context *ctx)
1003 struct dentry *dentry = file->f_path.dentry;
1004 struct sysfs_dirent * parent_sd = dentry->d_fsdata;
1005 struct sysfs_dirent *pos = file->private_data;
1006 enum kobj_ns_type type;
1009 type = sysfs_ns_type(parent_sd);
1010 ns = sysfs_info(dentry->d_sb)->ns[type];
1012 if (!dir_emit_dots(file, ctx))
1014 mutex_lock(&sysfs_mutex);
1015 for (pos = sysfs_dir_pos(ns, parent_sd, ctx->pos, pos);
1017 pos = sysfs_dir_next_pos(ns, parent_sd, ctx->pos, pos)) {
1018 const char *name = pos->s_name;
1019 unsigned int type = dt_type(pos);
1020 int len = strlen(name);
1021 ino_t ino = pos->s_ino;
1022 ctx->pos = pos->s_hash;
1023 file->private_data = sysfs_get(pos);
1025 mutex_unlock(&sysfs_mutex);
1026 if (!dir_emit(ctx, name, len, ino, type))
1028 mutex_lock(&sysfs_mutex);
1030 mutex_unlock(&sysfs_mutex);
1031 file->private_data = NULL;
1036 static loff_t sysfs_dir_llseek(struct file *file, loff_t offset, int whence)
1038 struct inode *inode = file_inode(file);
1041 mutex_lock(&inode->i_mutex);
1042 ret = generic_file_llseek(file, offset, whence);
1043 mutex_unlock(&inode->i_mutex);
1048 const struct file_operations sysfs_dir_operations = {
1049 .read = generic_read_dir,
1050 .iterate = sysfs_readdir,
1051 .release = sysfs_dir_release,
1052 .llseek = sysfs_dir_llseek,