]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/sysfs/dir.c
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / fs / sysfs / dir.c
CommitLineData
1da177e4 1/*
6d66f5cd
TH
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.
1da177e4
LT
11 */
12
13#undef DEBUG
14
15#include <linux/fs.h>
1da177e4 16#include <linux/kobject.h>
c6f87733 17#include <linux/slab.h>
1da177e4
LT
18#include "sysfs.h"
19
0cae60f9 20DEFINE_SPINLOCK(sysfs_symlink_target_lock);
1da177e4 21
324a56e1 22void sysfs_warn_dup(struct kernfs_node *parent, const char *name)
d1c1459e 23{
3abb1d90 24 char *buf;
d1c1459e 25
3eef34ad
TH
26 buf = kzalloc(PATH_MAX, GFP_KERNEL);
27 if (buf)
3abb1d90 28 kernfs_path(parent, buf, PATH_MAX);
d1c1459e 29
3eef34ad 30 WARN(1, KERN_WARNING "sysfs: cannot create duplicate filename '%s/%s'\n",
3abb1d90 31 buf, name);
d1c1459e 32
3eef34ad 33 kfree(buf);
d1c1459e
TH
34}
35
1da177e4 36/**
e34ff490
TH
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
1da177e4 40 */
e34ff490 41int sysfs_create_dir_ns(struct kobject *kobj, const void *ns)
1da177e4 42{
324a56e1 43 struct kernfs_node *parent, *kn;
1da177e4
LT
44
45 BUG_ON(!kobj);
46
90bc6135 47 if (kobj->parent)
324a56e1 48 parent = kobj->parent->sd;
1da177e4 49 else
324a56e1 50 parent = sysfs_root_kn;
1da177e4 51
324a56e1 52 if (!parent)
3a198886
DW
53 return -ENOENT;
54
bb8b9d09
TH
55 kn = kernfs_create_dir_ns(parent, kobject_name(kobj),
56 S_IRWXU | S_IRUGO | S_IXUGO, kobj, ns);
324a56e1
TH
57 if (IS_ERR(kn)) {
58 if (PTR_ERR(kn) == -EEXIST)
59 sysfs_warn_dup(parent, kobject_name(kobj));
60 return PTR_ERR(kn);
93b2b8e4
TH
61 }
62
324a56e1 63 kobj->sd = kn;
93b2b8e4 64 return 0;
1da177e4
LT
65}
66
b592fcfe
EB
67/**
68 * sysfs_remove_dir - remove an object's directory.
69 * @kobj: object.
70 *
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.
74 */
1b18dc2b 75void sysfs_remove_dir(struct kobject *kobj)
b592fcfe 76{
324a56e1 77 struct kernfs_node *kn = kobj->sd;
aecdceda 78
0cae60f9
TH
79 /*
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
324a56e1
TH
84 * control over removal. @kobj->sd may be removed anytime
85 * and symlink code may end up dereferencing an already freed node.
0cae60f9 86 *
324a56e1
TH
87 * sysfs_symlink_target_lock synchronizes @kobj->sd
88 * disassociation against symlink operations so that symlink code
89 * can safely dereference @kobj->sd.
0cae60f9
TH
90 */
91 spin_lock(&sysfs_symlink_target_lock);
608e266a 92 kobj->sd = NULL;
0cae60f9 93 spin_unlock(&sysfs_symlink_target_lock);
aecdceda 94
324a56e1 95 if (kn) {
df23fc39 96 WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
324a56e1 97 kernfs_remove(kn);
250f7c3f 98 }
1da177e4
LT
99}
100
e34ff490
TH
101int sysfs_rename_dir_ns(struct kobject *kobj, const char *new_name,
102 const void *new_ns)
ca1bab38 103{
3eef34ad
TH
104 struct kernfs_node *parent;
105 int ret;
3ff195b0 106
3eef34ad
TH
107 parent = kernfs_get_parent(kobj->sd);
108 ret = kernfs_rename_ns(kobj->sd, parent, new_name, new_ns);
109 kernfs_put(parent);
110 return ret;
ca1bab38
EB
111}
112
e34ff490
TH
113int sysfs_move_dir_ns(struct kobject *kobj, struct kobject *new_parent_kobj,
114 const void *new_ns)
8a82472f 115{
324a56e1
TH
116 struct kernfs_node *kn = kobj->sd;
117 struct kernfs_node *new_parent;
8a82472f 118
324a56e1
TH
119 new_parent = new_parent_kobj && new_parent_kobj->sd ?
120 new_parent_kobj->sd : sysfs_root_kn;
51225039 121
adc5e8b5 122 return kernfs_rename_ns(kn, new_parent, kn->name, new_ns);
8a82472f 123}
87d2846f
EB
124
125/**
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
129 */
130int sysfs_create_mount_point(struct kobject *parent_kobj, const char *name)
131{
132 struct kernfs_node *kn, *parent = parent_kobj->sd;
133
134 kn = kernfs_create_empty_dir(parent, name);
135 if (IS_ERR(kn)) {
136 if (PTR_ERR(kn) == -EEXIST)
137 sysfs_warn_dup(parent, name);
138 return PTR_ERR(kn);
139 }
140
141 return 0;
142}
143EXPORT_SYMBOL_GPL(sysfs_create_mount_point);
144
145/**
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
149 *
150 */
151void sysfs_remove_mount_point(struct kobject *parent_kobj, const char *name)
152{
153 struct kernfs_node *parent = parent_kobj->sd;
154
155 kernfs_remove_by_name_ns(parent, name, NULL);
156}
157EXPORT_SYMBOL_GPL(sysfs_remove_mount_point);