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
6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
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>
27 DEFINE_MUTEX(sysfs_mutex
);
28 DEFINE_SPINLOCK(sysfs_assoc_lock
);
30 static DEFINE_SPINLOCK(sysfs_ino_lock
);
31 static DEFINE_IDA(sysfs_ino_ida
);
34 * sysfs_link_sibling - link sysfs_dirent into sibling list
35 * @sd: sysfs_dirent of interest
37 * Link @sd into its sibling list which starts from
38 * sd->s_parent->s_dir.children.
41 * mutex_lock(sysfs_mutex)
43 static void sysfs_link_sibling(struct sysfs_dirent
*sd
)
45 struct sysfs_dirent
*parent_sd
= sd
->s_parent
;
46 struct sysfs_dirent
**pos
;
49 struct rb_node
*parent
;
51 BUG_ON(sd
->s_sibling
);
53 if (sysfs_type(sd
) == SYSFS_DIR
)
54 parent_sd
->s_dir
.subdirs
++;
56 /* Store directory entries in order by ino. This allows
57 * readdir to properly restart without having to add a
58 * cursor into the s_dir.children list.
60 for (pos
= &parent_sd
->s_dir
.children
; *pos
; pos
= &(*pos
)->s_sibling
) {
61 if (sd
->s_ino
< (*pos
)->s_ino
)
67 p
= &parent_sd
->s_dir
.name_tree
.rb_node
;
72 #define node rb_entry(parent, struct sysfs_dirent, name_node)
73 c
= strcmp(sd
->s_name
, node
->s_name
);
75 p
= &node
->name_node
.rb_left
;
77 p
= &node
->name_node
.rb_right
;
81 rb_link_node(&sd
->name_node
, parent
, p
);
82 rb_insert_color(&sd
->name_node
, &parent_sd
->s_dir
.name_tree
);
86 * sysfs_unlink_sibling - unlink sysfs_dirent from sibling list
87 * @sd: sysfs_dirent of interest
89 * Unlink @sd from its sibling list which starts from
90 * sd->s_parent->s_dir.children.
93 * mutex_lock(sysfs_mutex)
95 static void sysfs_unlink_sibling(struct sysfs_dirent
*sd
)
97 struct sysfs_dirent
**pos
;
99 if (sysfs_type(sd
) == SYSFS_DIR
)
100 sd
->s_parent
->s_dir
.subdirs
--;
102 for (pos
= &sd
->s_parent
->s_dir
.children
; *pos
;
103 pos
= &(*pos
)->s_sibling
) {
105 *pos
= sd
->s_sibling
;
106 sd
->s_sibling
= NULL
;
111 rb_erase(&sd
->name_node
, &sd
->s_parent
->s_dir
.name_tree
);
115 * sysfs_get_active - get an active reference to sysfs_dirent
116 * @sd: sysfs_dirent to get an active reference to
118 * Get an active reference of @sd. This function is noop if @sd
122 * Pointer to @sd on success, NULL on failure.
124 struct sysfs_dirent
*sysfs_get_active(struct sysfs_dirent
*sd
)
132 v
= atomic_read(&sd
->s_active
);
136 t
= atomic_cmpxchg(&sd
->s_active
, v
, v
+ 1);
137 if (likely(t
== v
)) {
138 rwsem_acquire_read(&sd
->dep_map
, 0, 1, _RET_IP_
);
149 * sysfs_put_active - put an active reference to sysfs_dirent
150 * @sd: sysfs_dirent to put an active reference to
152 * Put an active reference to @sd. This function is noop if @sd
155 void sysfs_put_active(struct sysfs_dirent
*sd
)
157 struct completion
*cmpl
;
163 rwsem_release(&sd
->dep_map
, 1, _RET_IP_
);
164 v
= atomic_dec_return(&sd
->s_active
);
165 if (likely(v
!= SD_DEACTIVATED_BIAS
))
168 /* atomic_dec_return() is a mb(), we'll always see the updated
171 cmpl
= (void *)sd
->s_sibling
;
176 * sysfs_deactivate - deactivate sysfs_dirent
177 * @sd: sysfs_dirent to deactivate
179 * Deny new active references and drain existing ones.
181 static void sysfs_deactivate(struct sysfs_dirent
*sd
)
183 DECLARE_COMPLETION_ONSTACK(wait
);
186 BUG_ON(sd
->s_sibling
|| !(sd
->s_flags
& SYSFS_FLAG_REMOVED
));
188 if (!(sysfs_type(sd
) & SYSFS_ACTIVE_REF
))
191 sd
->s_sibling
= (void *)&wait
;
193 rwsem_acquire(&sd
->dep_map
, 0, 0, _RET_IP_
);
194 /* atomic_add_return() is a mb(), put_active() will always see
195 * the updated sd->s_sibling.
197 v
= atomic_add_return(SD_DEACTIVATED_BIAS
, &sd
->s_active
);
199 if (v
!= SD_DEACTIVATED_BIAS
) {
200 lock_contended(&sd
->dep_map
, _RET_IP_
);
201 wait_for_completion(&wait
);
204 sd
->s_sibling
= NULL
;
206 lock_acquired(&sd
->dep_map
, _RET_IP_
);
207 rwsem_release(&sd
->dep_map
, 1, _RET_IP_
);
210 static int sysfs_alloc_ino(ino_t
*pino
)
215 spin_lock(&sysfs_ino_lock
);
216 rc
= ida_get_new_above(&sysfs_ino_ida
, 2, &ino
);
217 spin_unlock(&sysfs_ino_lock
);
220 if (ida_pre_get(&sysfs_ino_ida
, GFP_KERNEL
))
229 static void sysfs_free_ino(ino_t ino
)
231 spin_lock(&sysfs_ino_lock
);
232 ida_remove(&sysfs_ino_ida
, ino
);
233 spin_unlock(&sysfs_ino_lock
);
236 void release_sysfs_dirent(struct sysfs_dirent
* sd
)
238 struct sysfs_dirent
*parent_sd
;
241 /* Moving/renaming is always done while holding reference.
242 * sd->s_parent won't change beneath us.
244 parent_sd
= sd
->s_parent
;
246 if (sysfs_type(sd
) == SYSFS_KOBJ_LINK
)
247 sysfs_put(sd
->s_symlink
.target_sd
);
248 if (sysfs_type(sd
) & SYSFS_COPY_NAME
)
250 if (sd
->s_iattr
&& sd
->s_iattr
->ia_secdata
)
251 security_release_secctx(sd
->s_iattr
->ia_secdata
,
252 sd
->s_iattr
->ia_secdata_len
);
254 sysfs_free_ino(sd
->s_ino
);
255 kmem_cache_free(sysfs_dir_cachep
, sd
);
258 if (sd
&& atomic_dec_and_test(&sd
->s_count
))
262 static int sysfs_dentry_delete(const struct dentry
*dentry
)
264 struct sysfs_dirent
*sd
= dentry
->d_fsdata
;
265 return !!(sd
->s_flags
& SYSFS_FLAG_REMOVED
);
268 static int sysfs_dentry_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
270 struct sysfs_dirent
*sd
;
273 if (nd
->flags
& LOOKUP_RCU
)
276 sd
= dentry
->d_fsdata
;
277 mutex_lock(&sysfs_mutex
);
279 /* The sysfs dirent has been deleted */
280 if (sd
->s_flags
& SYSFS_FLAG_REMOVED
)
283 /* The sysfs dirent has been moved? */
284 if (dentry
->d_parent
->d_fsdata
!= sd
->s_parent
)
287 /* The sysfs dirent has been renamed */
288 if (strcmp(dentry
->d_name
.name
, sd
->s_name
) != 0)
291 mutex_unlock(&sysfs_mutex
);
295 /* Remove the dentry from the dcache hashes.
296 * If this is a deleted dentry we use d_drop instead of d_delete
297 * so sysfs doesn't need to cope with negative dentries.
299 * If this is a dentry that has simply been renamed we
300 * use d_drop to remove it from the dcache lookup on its
301 * old parent. If this dentry persists later when a lookup
302 * is performed at its new name the dentry will be readded
303 * to the dcache hashes.
305 is_dir
= (sysfs_type(sd
) == SYSFS_DIR
);
306 mutex_unlock(&sysfs_mutex
);
308 /* If we have submounts we must allow the vfs caches
309 * to lie about the state of the filesystem to prevent
310 * leaks and other nasty things.
312 if (have_submounts(dentry
))
314 shrink_dcache_parent(dentry
);
320 static void sysfs_dentry_iput(struct dentry
*dentry
, struct inode
*inode
)
322 struct sysfs_dirent
* sd
= dentry
->d_fsdata
;
328 static const struct dentry_operations sysfs_dentry_ops
= {
329 .d_revalidate
= sysfs_dentry_revalidate
,
330 .d_delete
= sysfs_dentry_delete
,
331 .d_iput
= sysfs_dentry_iput
,
334 struct sysfs_dirent
*sysfs_new_dirent(const char *name
, umode_t mode
, int type
)
336 char *dup_name
= NULL
;
337 struct sysfs_dirent
*sd
;
339 if (type
& SYSFS_COPY_NAME
) {
340 name
= dup_name
= kstrdup(name
, GFP_KERNEL
);
345 sd
= kmem_cache_zalloc(sysfs_dir_cachep
, GFP_KERNEL
);
349 if (sysfs_alloc_ino(&sd
->s_ino
))
352 atomic_set(&sd
->s_count
, 1);
353 atomic_set(&sd
->s_active
, 0);
362 kmem_cache_free(sysfs_dir_cachep
, sd
);
369 * sysfs_addrm_start - prepare for sysfs_dirent add/remove
370 * @acxt: pointer to sysfs_addrm_cxt to be used
371 * @parent_sd: parent sysfs_dirent
373 * This function is called when the caller is about to add or
374 * remove sysfs_dirent under @parent_sd. This function acquires
375 * sysfs_mutex. @acxt is used to keep and pass context to
376 * other addrm functions.
379 * Kernel thread context (may sleep). sysfs_mutex is locked on
382 void sysfs_addrm_start(struct sysfs_addrm_cxt
*acxt
,
383 struct sysfs_dirent
*parent_sd
)
385 memset(acxt
, 0, sizeof(*acxt
));
386 acxt
->parent_sd
= parent_sd
;
388 mutex_lock(&sysfs_mutex
);
392 * __sysfs_add_one - add sysfs_dirent to parent without warning
393 * @acxt: addrm context to use
394 * @sd: sysfs_dirent to be added
396 * Get @acxt->parent_sd and set sd->s_parent to it and increment
397 * nlink of parent inode if @sd is a directory and link into the
398 * children list of the parent.
400 * This function should be called between calls to
401 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
402 * passed the same @acxt as passed to sysfs_addrm_start().
405 * Determined by sysfs_addrm_start().
408 * 0 on success, -EEXIST if entry with the given name already
411 int __sysfs_add_one(struct sysfs_addrm_cxt
*acxt
, struct sysfs_dirent
*sd
)
413 struct sysfs_inode_attrs
*ps_iattr
;
415 if (sysfs_find_dirent(acxt
->parent_sd
, sd
->s_ns
, sd
->s_name
))
418 sd
->s_parent
= sysfs_get(acxt
->parent_sd
);
420 sysfs_link_sibling(sd
);
422 /* Update timestamps on the parent */
423 ps_iattr
= acxt
->parent_sd
->s_iattr
;
425 struct iattr
*ps_iattrs
= &ps_iattr
->ia_iattr
;
426 ps_iattrs
->ia_ctime
= ps_iattrs
->ia_mtime
= CURRENT_TIME
;
433 * sysfs_pathname - return full path to sysfs dirent
434 * @sd: sysfs_dirent whose path we want
435 * @path: caller allocated buffer
437 * Gives the name "/" to the sysfs_root entry; any path returned
438 * is relative to wherever sysfs is mounted.
440 * XXX: does no error checking on @path size
442 static char *sysfs_pathname(struct sysfs_dirent
*sd
, char *path
)
445 sysfs_pathname(sd
->s_parent
, path
);
448 strcat(path
, sd
->s_name
);
453 * sysfs_add_one - add sysfs_dirent to parent
454 * @acxt: addrm context to use
455 * @sd: sysfs_dirent to be added
457 * Get @acxt->parent_sd and set sd->s_parent to it and increment
458 * nlink of parent inode if @sd is a directory and link into the
459 * children list of the parent.
461 * This function should be called between calls to
462 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
463 * passed the same @acxt as passed to sysfs_addrm_start().
466 * Determined by sysfs_addrm_start().
469 * 0 on success, -EEXIST if entry with the given name already
472 int sysfs_add_one(struct sysfs_addrm_cxt
*acxt
, struct sysfs_dirent
*sd
)
476 ret
= __sysfs_add_one(acxt
, sd
);
477 if (ret
== -EEXIST
) {
478 char *path
= kzalloc(PATH_MAX
, GFP_KERNEL
);
480 "sysfs: cannot create duplicate filename '%s'\n",
481 (path
== NULL
) ? sd
->s_name
:
482 strcat(strcat(sysfs_pathname(acxt
->parent_sd
, path
), "/"),
491 * sysfs_remove_one - remove sysfs_dirent from parent
492 * @acxt: addrm context to use
493 * @sd: sysfs_dirent to be removed
495 * Mark @sd removed and drop nlink of parent inode if @sd is a
496 * directory. @sd is unlinked from the children list.
498 * This function should be called between calls to
499 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
500 * passed the same @acxt as passed to sysfs_addrm_start().
503 * Determined by sysfs_addrm_start().
505 void sysfs_remove_one(struct sysfs_addrm_cxt
*acxt
, struct sysfs_dirent
*sd
)
507 struct sysfs_inode_attrs
*ps_iattr
;
509 BUG_ON(sd
->s_flags
& SYSFS_FLAG_REMOVED
);
511 sysfs_unlink_sibling(sd
);
513 /* Update timestamps on the parent */
514 ps_iattr
= acxt
->parent_sd
->s_iattr
;
516 struct iattr
*ps_iattrs
= &ps_iattr
->ia_iattr
;
517 ps_iattrs
->ia_ctime
= ps_iattrs
->ia_mtime
= CURRENT_TIME
;
520 sd
->s_flags
|= SYSFS_FLAG_REMOVED
;
521 sd
->s_sibling
= acxt
->removed
;
526 * sysfs_addrm_finish - finish up sysfs_dirent add/remove
527 * @acxt: addrm context to finish up
529 * Finish up sysfs_dirent add/remove. Resources acquired by
530 * sysfs_addrm_start() are released and removed sysfs_dirents are
534 * sysfs_mutex is released.
536 void sysfs_addrm_finish(struct sysfs_addrm_cxt
*acxt
)
538 /* release resources acquired by sysfs_addrm_start() */
539 mutex_unlock(&sysfs_mutex
);
541 /* kill removed sysfs_dirents */
542 while (acxt
->removed
) {
543 struct sysfs_dirent
*sd
= acxt
->removed
;
545 acxt
->removed
= sd
->s_sibling
;
546 sd
->s_sibling
= NULL
;
548 sysfs_deactivate(sd
);
555 * sysfs_find_dirent - find sysfs_dirent with the given name
556 * @parent_sd: sysfs_dirent to search under
557 * @name: name to look for
559 * Look for sysfs_dirent with name @name under @parent_sd.
562 * mutex_lock(sysfs_mutex)
565 * Pointer to sysfs_dirent if found, NULL if not.
567 struct sysfs_dirent
*sysfs_find_dirent(struct sysfs_dirent
*parent_sd
,
569 const unsigned char *name
)
571 struct rb_node
*p
= parent_sd
->s_dir
.name_tree
.rb_node
;
572 struct sysfs_dirent
*found
= NULL
;
576 #define node rb_entry(p, struct sysfs_dirent, name_node)
577 c
= strcmp(name
, node
->s_name
);
579 p
= node
->name_node
.rb_left
;
581 p
= node
->name_node
.rb_right
;
584 p
= node
->name_node
.rb_left
;
590 while (found
->s_ns
&& found
->s_ns
!= ns
) {
591 p
= rb_next(&found
->name_node
);
594 found
= rb_entry(p
, struct sysfs_dirent
, name_node
);
595 if (strcmp(name
, found
->s_name
))
604 * sysfs_get_dirent - find and get sysfs_dirent with the given name
605 * @parent_sd: sysfs_dirent to search under
606 * @name: name to look for
608 * Look for sysfs_dirent with name @name under @parent_sd and get
612 * Kernel thread context (may sleep). Grabs sysfs_mutex.
615 * Pointer to sysfs_dirent if found, NULL if not.
617 struct sysfs_dirent
*sysfs_get_dirent(struct sysfs_dirent
*parent_sd
,
619 const unsigned char *name
)
621 struct sysfs_dirent
*sd
;
623 mutex_lock(&sysfs_mutex
);
624 sd
= sysfs_find_dirent(parent_sd
, ns
, name
);
626 mutex_unlock(&sysfs_mutex
);
630 EXPORT_SYMBOL_GPL(sysfs_get_dirent
);
632 static int create_dir(struct kobject
*kobj
, struct sysfs_dirent
*parent_sd
,
633 enum kobj_ns_type type
, const void *ns
, const char *name
,
634 struct sysfs_dirent
**p_sd
)
636 umode_t mode
= S_IFDIR
| S_IRWXU
| S_IRUGO
| S_IXUGO
;
637 struct sysfs_addrm_cxt acxt
;
638 struct sysfs_dirent
*sd
;
642 sd
= sysfs_new_dirent(name
, mode
, SYSFS_DIR
);
646 sd
->s_flags
|= (type
<< SYSFS_NS_TYPE_SHIFT
);
648 sd
->s_dir
.kobj
= kobj
;
651 sysfs_addrm_start(&acxt
, parent_sd
);
652 rc
= sysfs_add_one(&acxt
, sd
);
653 sysfs_addrm_finish(&acxt
);
663 int sysfs_create_subdir(struct kobject
*kobj
, const char *name
,
664 struct sysfs_dirent
**p_sd
)
666 return create_dir(kobj
, kobj
->sd
,
667 KOBJ_NS_TYPE_NONE
, NULL
, name
, p_sd
);
671 * sysfs_read_ns_type: return associated ns_type
672 * @kobj: the kobject being queried
674 * Each kobject can be tagged with exactly one namespace type
675 * (i.e. network or user). Return the ns_type associated with
678 static enum kobj_ns_type
sysfs_read_ns_type(struct kobject
*kobj
)
680 const struct kobj_ns_type_operations
*ops
;
681 enum kobj_ns_type type
;
683 ops
= kobj_child_ns_ops(kobj
);
685 return KOBJ_NS_TYPE_NONE
;
688 BUG_ON(type
<= KOBJ_NS_TYPE_NONE
);
689 BUG_ON(type
>= KOBJ_NS_TYPES
);
690 BUG_ON(!kobj_ns_type_registered(type
));
696 * sysfs_create_dir - create a directory for an object.
697 * @kobj: object we're creating directory for.
699 int sysfs_create_dir(struct kobject
* kobj
)
701 enum kobj_ns_type type
;
702 struct sysfs_dirent
*parent_sd
, *sd
;
703 const void *ns
= NULL
;
709 parent_sd
= kobj
->parent
->sd
;
711 parent_sd
= &sysfs_root
;
713 if (sysfs_ns_type(parent_sd
))
714 ns
= kobj
->ktype
->namespace(kobj
);
715 type
= sysfs_read_ns_type(kobj
);
717 error
= create_dir(kobj
, parent_sd
, type
, ns
, kobject_name(kobj
), &sd
);
723 static struct dentry
* sysfs_lookup(struct inode
*dir
, struct dentry
*dentry
,
724 struct nameidata
*nd
)
726 struct dentry
*ret
= NULL
;
727 struct dentry
*parent
= dentry
->d_parent
;
728 struct sysfs_dirent
*parent_sd
= parent
->d_fsdata
;
729 struct sysfs_dirent
*sd
;
731 enum kobj_ns_type type
;
734 mutex_lock(&sysfs_mutex
);
736 type
= sysfs_ns_type(parent_sd
);
737 ns
= sysfs_info(dir
->i_sb
)->ns
[type
];
739 sd
= sysfs_find_dirent(parent_sd
, ns
, dentry
->d_name
.name
);
743 ret
= ERR_PTR(-ENOENT
);
747 /* attach dentry and inode */
748 inode
= sysfs_get_inode(dir
->i_sb
, sd
);
750 ret
= ERR_PTR(-ENOMEM
);
754 /* instantiate and hash dentry */
755 ret
= d_find_alias(inode
);
757 d_set_d_op(dentry
, &sysfs_dentry_ops
);
758 dentry
->d_fsdata
= sysfs_get(sd
);
759 d_add(dentry
, inode
);
766 mutex_unlock(&sysfs_mutex
);
770 const struct inode_operations sysfs_dir_inode_operations
= {
771 .lookup
= sysfs_lookup
,
772 .permission
= sysfs_permission
,
773 .setattr
= sysfs_setattr
,
774 .getattr
= sysfs_getattr
,
775 .setxattr
= sysfs_setxattr
,
778 static void remove_dir(struct sysfs_dirent
*sd
)
780 struct sysfs_addrm_cxt acxt
;
782 sysfs_addrm_start(&acxt
, sd
->s_parent
);
783 sysfs_remove_one(&acxt
, sd
);
784 sysfs_addrm_finish(&acxt
);
787 void sysfs_remove_subdir(struct sysfs_dirent
*sd
)
793 static void __sysfs_remove_dir(struct sysfs_dirent
*dir_sd
)
795 struct sysfs_addrm_cxt acxt
;
796 struct sysfs_dirent
**pos
;
801 pr_debug("sysfs %s: removing dir\n", dir_sd
->s_name
);
802 sysfs_addrm_start(&acxt
, dir_sd
);
803 pos
= &dir_sd
->s_dir
.children
;
805 struct sysfs_dirent
*sd
= *pos
;
807 if (sysfs_type(sd
) != SYSFS_DIR
)
808 sysfs_remove_one(&acxt
, sd
);
810 pos
= &(*pos
)->s_sibling
;
812 sysfs_addrm_finish(&acxt
);
818 * sysfs_remove_dir - remove an object's directory.
821 * The only thing special about this is that we remove any files in
822 * the directory before we remove the directory, and we've inlined
823 * what used to be sysfs_rmdir() below, instead of calling separately.
826 void sysfs_remove_dir(struct kobject
* kobj
)
828 struct sysfs_dirent
*sd
= kobj
->sd
;
830 spin_lock(&sysfs_assoc_lock
);
832 spin_unlock(&sysfs_assoc_lock
);
834 __sysfs_remove_dir(sd
);
837 int sysfs_rename(struct sysfs_dirent
*sd
,
838 struct sysfs_dirent
*new_parent_sd
, const void *new_ns
,
839 const char *new_name
)
841 const char *dup_name
= NULL
;
844 mutex_lock(&sysfs_mutex
);
847 if ((sd
->s_parent
== new_parent_sd
) && (sd
->s_ns
== new_ns
) &&
848 (strcmp(sd
->s_name
, new_name
) == 0))
849 goto out
; /* nothing to rename */
852 if (sysfs_find_dirent(new_parent_sd
, new_ns
, new_name
))
855 /* rename sysfs_dirent */
856 if (strcmp(sd
->s_name
, new_name
) != 0) {
858 new_name
= dup_name
= kstrdup(new_name
, GFP_KERNEL
);
862 dup_name
= sd
->s_name
;
863 sd
->s_name
= new_name
;
866 /* Remove from old parent's list and insert into new parent's list. */
867 if (sd
->s_parent
!= new_parent_sd
) {
868 sysfs_unlink_sibling(sd
);
869 sysfs_get(new_parent_sd
);
870 sysfs_put(sd
->s_parent
);
871 sd
->s_parent
= new_parent_sd
;
872 sysfs_link_sibling(sd
);
878 mutex_unlock(&sysfs_mutex
);
883 int sysfs_rename_dir(struct kobject
*kobj
, const char *new_name
)
885 struct sysfs_dirent
*parent_sd
= kobj
->sd
->s_parent
;
886 const void *new_ns
= NULL
;
888 if (sysfs_ns_type(parent_sd
))
889 new_ns
= kobj
->ktype
->namespace(kobj
);
891 return sysfs_rename(kobj
->sd
, parent_sd
, new_ns
, new_name
);
894 int sysfs_move_dir(struct kobject
*kobj
, struct kobject
*new_parent_kobj
)
896 struct sysfs_dirent
*sd
= kobj
->sd
;
897 struct sysfs_dirent
*new_parent_sd
;
898 const void *new_ns
= NULL
;
900 BUG_ON(!sd
->s_parent
);
901 if (sysfs_ns_type(sd
->s_parent
))
902 new_ns
= kobj
->ktype
->namespace(kobj
);
903 new_parent_sd
= new_parent_kobj
&& new_parent_kobj
->sd
?
904 new_parent_kobj
->sd
: &sysfs_root
;
906 return sysfs_rename(sd
, new_parent_sd
, new_ns
, sd
->s_name
);
909 /* Relationship between s_mode and the DT_xxx types */
910 static inline unsigned char dt_type(struct sysfs_dirent
*sd
)
912 return (sd
->s_mode
>> 12) & 15;
915 static int sysfs_dir_release(struct inode
*inode
, struct file
*filp
)
917 sysfs_put(filp
->private_data
);
921 static struct sysfs_dirent
*sysfs_dir_pos(const void *ns
,
922 struct sysfs_dirent
*parent_sd
, ino_t ino
, struct sysfs_dirent
*pos
)
925 int valid
= !(pos
->s_flags
& SYSFS_FLAG_REMOVED
) &&
926 pos
->s_parent
== parent_sd
&&
932 if (!pos
&& (ino
> 1) && (ino
< INT_MAX
)) {
933 pos
= parent_sd
->s_dir
.children
;
934 while (pos
&& (ino
> pos
->s_ino
))
935 pos
= pos
->s_sibling
;
937 while (pos
&& pos
->s_ns
&& pos
->s_ns
!= ns
)
938 pos
= pos
->s_sibling
;
942 static struct sysfs_dirent
*sysfs_dir_next_pos(const void *ns
,
943 struct sysfs_dirent
*parent_sd
, ino_t ino
, struct sysfs_dirent
*pos
)
945 pos
= sysfs_dir_pos(ns
, parent_sd
, ino
, pos
);
947 pos
= pos
->s_sibling
;
948 while (pos
&& pos
->s_ns
&& pos
->s_ns
!= ns
)
949 pos
= pos
->s_sibling
;
953 static int sysfs_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
955 struct dentry
*dentry
= filp
->f_path
.dentry
;
956 struct sysfs_dirent
* parent_sd
= dentry
->d_fsdata
;
957 struct sysfs_dirent
*pos
= filp
->private_data
;
958 enum kobj_ns_type type
;
962 type
= sysfs_ns_type(parent_sd
);
963 ns
= sysfs_info(dentry
->d_sb
)->ns
[type
];
965 if (filp
->f_pos
== 0) {
966 ino
= parent_sd
->s_ino
;
967 if (filldir(dirent
, ".", 1, filp
->f_pos
, ino
, DT_DIR
) == 0)
970 if (filp
->f_pos
== 1) {
971 if (parent_sd
->s_parent
)
972 ino
= parent_sd
->s_parent
->s_ino
;
974 ino
= parent_sd
->s_ino
;
975 if (filldir(dirent
, "..", 2, filp
->f_pos
, ino
, DT_DIR
) == 0)
978 mutex_lock(&sysfs_mutex
);
979 for (pos
= sysfs_dir_pos(ns
, parent_sd
, filp
->f_pos
, pos
);
981 pos
= sysfs_dir_next_pos(ns
, parent_sd
, filp
->f_pos
, pos
)) {
991 filp
->private_data
= sysfs_get(pos
);
993 mutex_unlock(&sysfs_mutex
);
994 ret
= filldir(dirent
, name
, len
, filp
->f_pos
, ino
, type
);
995 mutex_lock(&sysfs_mutex
);
999 mutex_unlock(&sysfs_mutex
);
1000 if ((filp
->f_pos
> 1) && !pos
) { /* EOF */
1001 filp
->f_pos
= INT_MAX
;
1002 filp
->private_data
= NULL
;
1008 const struct file_operations sysfs_dir_operations
= {
1009 .read
= generic_read_dir
,
1010 .readdir
= sysfs_readdir
,
1011 .release
= sysfs_dir_release
,
1012 .llseek
= generic_file_llseek
,