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/kobject.h>
17 #include <linux/slab.h>
20 DEFINE_SPINLOCK(sysfs_symlink_target_lock
);
22 void sysfs_warn_dup(struct kernfs_node
*parent
, const char *name
)
26 buf
= kzalloc(PATH_MAX
, GFP_KERNEL
);
28 kernfs_path(parent
, buf
, PATH_MAX
);
30 WARN(1, KERN_WARNING
"sysfs: cannot create duplicate filename '%s/%s'\n",
37 * sysfs_create_dir_ns - create a directory for an object with a namespace tag
38 * @kobj: object we're creating directory for
39 * @ns: the namespace tag to use
41 int sysfs_create_dir_ns(struct kobject
*kobj
, const void *ns
)
43 struct kernfs_node
*parent
, *kn
;
48 parent
= kobj
->parent
->sd
;
50 parent
= sysfs_root_kn
;
55 kn
= kernfs_create_dir_ns(parent
, kobject_name(kobj
),
56 S_IRWXU
| S_IRUGO
| S_IXUGO
, kobj
, ns
);
58 if (PTR_ERR(kn
) == -EEXIST
)
59 sysfs_warn_dup(parent
, kobject_name(kobj
));
68 * sysfs_remove_dir - remove an object's directory.
71 * The only thing special about this is that we remove any files in
72 * the directory before we remove the directory, and we've inlined
73 * what used to be sysfs_rmdir() below, instead of calling separately.
75 void sysfs_remove_dir(struct kobject
*kobj
)
77 struct kernfs_node
*kn
= kobj
->sd
;
80 * In general, kboject owner is responsible for ensuring removal
81 * doesn't race with other operations and sysfs doesn't provide any
82 * protection; however, when @kobj is used as a symlink target, the
83 * symlinking entity usually doesn't own @kobj and thus has no
84 * control over removal. @kobj->sd may be removed anytime
85 * and symlink code may end up dereferencing an already freed node.
87 * sysfs_symlink_target_lock synchronizes @kobj->sd
88 * disassociation against symlink operations so that symlink code
89 * can safely dereference @kobj->sd.
91 spin_lock(&sysfs_symlink_target_lock
);
93 spin_unlock(&sysfs_symlink_target_lock
);
96 WARN_ON_ONCE(kernfs_type(kn
) != KERNFS_DIR
);
101 int sysfs_rename_dir_ns(struct kobject
*kobj
, const char *new_name
,
104 struct kernfs_node
*parent
;
107 parent
= kernfs_get_parent(kobj
->sd
);
108 ret
= kernfs_rename_ns(kobj
->sd
, parent
, new_name
, new_ns
);
113 int sysfs_move_dir_ns(struct kobject
*kobj
, struct kobject
*new_parent_kobj
,
116 struct kernfs_node
*kn
= kobj
->sd
;
117 struct kernfs_node
*new_parent
;
119 new_parent
= new_parent_kobj
&& new_parent_kobj
->sd
?
120 new_parent_kobj
->sd
: sysfs_root_kn
;
122 return kernfs_rename_ns(kn
, new_parent
, kn
->name
, new_ns
);
126 * sysfs_create_mount_point - create an always empty directory
127 * @parent_kobj: kobject that will contain this always empty directory
128 * @name: The name of the always empty directory to add
130 int sysfs_create_mount_point(struct kobject
*parent_kobj
, const char *name
)
132 struct kernfs_node
*kn
, *parent
= parent_kobj
->sd
;
134 kn
= kernfs_create_empty_dir(parent
, name
);
136 if (PTR_ERR(kn
) == -EEXIST
)
137 sysfs_warn_dup(parent
, name
);
143 EXPORT_SYMBOL_GPL(sysfs_create_mount_point
);
146 * sysfs_remove_mount_point - remove an always empty directory.
147 * @parent_kobj: kobject that will contain this always empty directory
148 * @name: The name of the always empty directory to remove
151 void sysfs_remove_mount_point(struct kobject
*parent_kobj
, const char *name
)
153 struct kernfs_node
*parent
= parent_kobj
->sd
;
155 kernfs_remove_by_name_ns(parent
, name
, NULL
);
157 EXPORT_SYMBOL_GPL(sysfs_remove_mount_point
);