blob: 642700131dd5ea219f1b491faad9290fd8b98665 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/sysfs/group.c - Operations for adding/removing multiple files at once.
3 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
6 *
Greg Kroah-Hartmane6c56922013-08-21 16:06:14 -07007 * This file is released undert the GPL v2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 */
10
11#include <linux/kobject.h>
12#include <linux/module.h>
13#include <linux/dcache.h>
Christoph Hellwig5f45f1a2005-06-23 00:09:12 -070014#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/err.h>
16#include "sysfs.h"
17
18
James Bottomleyd4acd722007-10-31 09:38:04 -050019static void remove_files(struct sysfs_dirent *dir_sd, struct kobject *kobj,
Tejun Heo608e2662007-06-14 04:27:22 +090020 const struct attribute_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Greg Kroah-Hartman995d8ed2013-08-21 16:07:29 -070022 struct attribute *const *attr;
23 struct bin_attribute *const *bin_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Greg Kroah-Hartman6ab9cea2013-07-14 16:05:55 -070025 if (grp->attrs)
26 for (attr = grp->attrs; *attr; attr++)
27 sysfs_hash_and_remove(dir_sd, NULL, (*attr)->name);
28 if (grp->bin_attrs)
29 for (bin_attr = grp->bin_attrs; *bin_attr; bin_attr++)
30 sysfs_remove_bin_file(kobj, *bin_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031}
32
James Bottomleyd4acd722007-10-31 09:38:04 -050033static int create_files(struct sysfs_dirent *dir_sd, struct kobject *kobj,
James Bottomley0f423892008-03-20 20:47:52 -050034 const struct attribute_group *grp, int update)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Greg Kroah-Hartman995d8ed2013-08-21 16:07:29 -070036 struct attribute *const *attr;
37 struct bin_attribute *const *bin_attr;
James Bottomleyd4acd722007-10-31 09:38:04 -050038 int error = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Greg Kroah-Hartman6ab9cea2013-07-14 16:05:55 -070040 if (grp->attrs) {
41 for (i = 0, attr = grp->attrs; *attr && !error; i++, attr++) {
42 umode_t mode = 0;
James Bottomley0f423892008-03-20 20:47:52 -050043
Greg Kroah-Hartman6ab9cea2013-07-14 16:05:55 -070044 /*
45 * In update mode, we're changing the permissions or
46 * visibility. Do this by first removing then
47 * re-adding (if required) the file.
48 */
49 if (update)
50 sysfs_hash_and_remove(dir_sd, NULL,
51 (*attr)->name);
52 if (grp->is_visible) {
53 mode = grp->is_visible(kobj, *attr, i);
54 if (!mode)
55 continue;
56 }
57 error = sysfs_add_file_mode(dir_sd, *attr,
58 SYSFS_KOBJ_ATTR,
59 (*attr)->mode | mode);
60 if (unlikely(error))
61 break;
James Bottomley0f423892008-03-20 20:47:52 -050062 }
Greg Kroah-Hartman6ab9cea2013-07-14 16:05:55 -070063 if (error) {
64 remove_files(dir_sd, kobj, grp);
65 goto exit;
66 }
James Bottomley0f423892008-03-20 20:47:52 -050067 }
Greg Kroah-Hartman6ab9cea2013-07-14 16:05:55 -070068
69 if (grp->bin_attrs) {
70 for (bin_attr = grp->bin_attrs; *bin_attr; bin_attr++) {
71 if (update)
72 sysfs_remove_bin_file(kobj, *bin_attr);
73 error = sysfs_create_bin_file(kobj, *bin_attr);
74 if (error)
75 break;
76 }
77 if (error)
78 remove_files(dir_sd, kobj, grp);
79 }
80exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return error;
82}
83
84
James Bottomley0f423892008-03-20 20:47:52 -050085static int internal_create_group(struct kobject *kobj, int update,
86 const struct attribute_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Tejun Heo608e2662007-06-14 04:27:22 +090088 struct sysfs_dirent *sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int error;
90
James Bottomley0f423892008-03-20 20:47:52 -050091 BUG_ON(!kobj || (!update && !kobj->sd));
92
93 /* Updates may happen before the object has been instantiated */
94 if (unlikely(update && !kobj->sd))
95 return -EINVAL;
Oliver Schinagl388a8c32013-07-14 16:05:56 -070096 if (!grp->attrs && !grp->bin_attrs) {
97 WARN(1, "sysfs: (bin_)attrs not set by subsystem for group: %s/%s\n",
Bruno Prémont5631f2c2012-04-03 09:59:48 +020098 kobj->name, grp->name ? "" : grp->name);
99 return -EINVAL;
100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (grp->name) {
Tejun Heo608e2662007-06-14 04:27:22 +0900102 error = sysfs_create_subdir(kobj, grp->name, &sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (error)
104 return error;
105 } else
Tejun Heo608e2662007-06-14 04:27:22 +0900106 sd = kobj->sd;
107 sysfs_get(sd);
James Bottomley0f423892008-03-20 20:47:52 -0500108 error = create_files(sd, kobj, grp, update);
Tejun Heo608e2662007-06-14 04:27:22 +0900109 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (grp->name)
Tejun Heo608e2662007-06-14 04:27:22 +0900111 sysfs_remove_subdir(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
Tejun Heo608e2662007-06-14 04:27:22 +0900113 sysfs_put(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return error;
115}
116
James Bottomley0f423892008-03-20 20:47:52 -0500117/**
118 * sysfs_create_group - given a directory kobject, create an attribute group
119 * @kobj: The kobject to create the group on
120 * @grp: The attribute group to create
121 *
122 * This function creates a group for the first time. It will explicitly
123 * warn and error if any of the attribute files being created already exist.
124 *
125 * Returns 0 on success or error.
126 */
127int sysfs_create_group(struct kobject *kobj,
128 const struct attribute_group *grp)
129{
130 return internal_create_group(kobj, 0, grp);
131}
Greg Kroah-Hartmand363bc52013-08-21 16:04:12 -0700132EXPORT_SYMBOL_GPL(sysfs_create_group);
James Bottomley0f423892008-03-20 20:47:52 -0500133
134/**
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -0700135 * sysfs_create_groups - given a directory kobject, create a bunch of attribute groups
136 * @kobj: The kobject to create the group on
137 * @groups: The attribute groups to create, NULL terminated
138 *
139 * This function creates a bunch of attribute groups. If an error occurs when
140 * creating a group, all previously created groups will be removed, unwinding
141 * everything back to the original state when this function was called.
142 * It will explicitly warn and error if any of the attribute files being
143 * created already exist.
144 *
145 * Returns 0 on success or error code from sysfs_create_groups on error.
146 */
147int sysfs_create_groups(struct kobject *kobj,
148 const struct attribute_group **groups)
149{
150 int error = 0;
151 int i;
152
153 if (!groups)
154 return 0;
155
156 for (i = 0; groups[i]; i++) {
157 error = sysfs_create_group(kobj, groups[i]);
158 if (error) {
159 while (--i >= 0)
160 sysfs_remove_group(kobj, groups[i]);
161 break;
162 }
163 }
164 return error;
165}
166EXPORT_SYMBOL_GPL(sysfs_create_groups);
167
168/**
Robert P. J. Day1f8e1cd2011-05-07 17:18:20 -0400169 * sysfs_update_group - given a directory kobject, update an attribute group
170 * @kobj: The kobject to update the group on
171 * @grp: The attribute group to update
James Bottomley0f423892008-03-20 20:47:52 -0500172 *
173 * This function updates an attribute group. Unlike
174 * sysfs_create_group(), it will explicitly not warn or error if any
175 * of the attribute files being created already exist. Furthermore,
176 * if the visibility of the files has changed through the is_visible()
177 * callback, it will update the permissions and add or remove the
178 * relevant files.
179 *
180 * The primary use for this function is to call it after making a change
181 * that affects group visibility.
182 *
183 * Returns 0 on success or error.
184 */
185int sysfs_update_group(struct kobject *kobj,
186 const struct attribute_group *grp)
187{
188 return internal_create_group(kobj, 1, grp);
189}
Greg Kroah-Hartmand363bc52013-08-21 16:04:12 -0700190EXPORT_SYMBOL_GPL(sysfs_update_group);
James Bottomley0f423892008-03-20 20:47:52 -0500191
Greg Kroah-Hartman995d8ed2013-08-21 16:07:29 -0700192void sysfs_remove_group(struct kobject *kobj,
193 const struct attribute_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Tejun Heo608e2662007-06-14 04:27:22 +0900195 struct sysfs_dirent *dir_sd = kobj->sd;
196 struct sysfs_dirent *sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
James Morris057f6c02007-04-26 00:12:05 -0700198 if (grp->name) {
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700199 sd = sysfs_get_dirent(dir_sd, NULL, grp->name);
Greg Kroah-Hartman969affd2008-02-07 11:58:54 -0500200 if (!sd) {
Greg Kroah-Hartman16aebf12013-08-21 16:10:02 -0700201 WARN(!sd, KERN_WARNING
202 "sysfs group %p not found for kobject '%s'\n",
203 grp, kobject_name(kobj));
Greg Kroah-Hartman969affd2008-02-07 11:58:54 -0500204 return;
205 }
Tejun Heo608e2662007-06-14 04:27:22 +0900206 } else
207 sd = sysfs_get(dir_sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
James Bottomleyd4acd722007-10-31 09:38:04 -0500209 remove_files(sd, kobj, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (grp->name)
Tejun Heo608e2662007-06-14 04:27:22 +0900211 sysfs_remove_subdir(sd);
212
213 sysfs_put(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
Greg Kroah-Hartmand363bc52013-08-21 16:04:12 -0700215EXPORT_SYMBOL_GPL(sysfs_remove_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Alan Stern69d44ff2010-09-25 23:34:22 +0200217/**
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -0700218 * sysfs_remove_groups - remove a list of groups
219 *
220 * kobj: The kobject for the groups to be removed from
221 * groups: NULL terminated list of groups to be removed
222 *
223 * If groups is not NULL, the all groups will be removed from the kobject
224 */
225void sysfs_remove_groups(struct kobject *kobj,
226 const struct attribute_group **groups)
227{
228 int i;
229
230 if (!groups)
231 return;
232 for (i = 0; groups[i]; i++)
233 sysfs_remove_group(kobj, groups[i]);
234}
235EXPORT_SYMBOL_GPL(sysfs_remove_groups);
236
237/**
Alan Stern69d44ff2010-09-25 23:34:22 +0200238 * sysfs_merge_group - merge files into a pre-existing attribute group.
239 * @kobj: The kobject containing the group.
240 * @grp: The files to create and the attribute group they belong to.
241 *
242 * This function returns an error if the group doesn't exist or any of the
243 * files already exist in that group, in which case none of the new files
244 * are created.
245 */
246int sysfs_merge_group(struct kobject *kobj,
247 const struct attribute_group *grp)
248{
249 struct sysfs_dirent *dir_sd;
250 int error = 0;
251 struct attribute *const *attr;
252 int i;
253
Alan Sterne030d582010-11-15 15:46:07 -0500254 dir_sd = sysfs_get_dirent(kobj->sd, NULL, grp->name);
Alan Stern69d44ff2010-09-25 23:34:22 +0200255 if (!dir_sd)
256 return -ENOENT;
257
258 for ((i = 0, attr = grp->attrs); *attr && !error; (++i, ++attr))
259 error = sysfs_add_file(dir_sd, *attr, SYSFS_KOBJ_ATTR);
260 if (error) {
261 while (--i >= 0)
262 sysfs_hash_and_remove(dir_sd, NULL, (*--attr)->name);
263 }
264 sysfs_put(dir_sd);
265
266 return error;
267}
268EXPORT_SYMBOL_GPL(sysfs_merge_group);
269
270/**
271 * sysfs_unmerge_group - remove files from a pre-existing attribute group.
272 * @kobj: The kobject containing the group.
273 * @grp: The files to remove and the attribute group they belong to.
274 */
275void sysfs_unmerge_group(struct kobject *kobj,
276 const struct attribute_group *grp)
277{
278 struct sysfs_dirent *dir_sd;
279 struct attribute *const *attr;
280
Alan Sterne030d582010-11-15 15:46:07 -0500281 dir_sd = sysfs_get_dirent(kobj->sd, NULL, grp->name);
Alan Stern69d44ff2010-09-25 23:34:22 +0200282 if (dir_sd) {
283 for (attr = grp->attrs; *attr; ++attr)
284 sysfs_hash_and_remove(dir_sd, NULL, (*attr)->name);
285 sysfs_put(dir_sd);
286 }
287}
288EXPORT_SYMBOL_GPL(sysfs_unmerge_group);
289
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +0100290/**
291 * sysfs_add_link_to_group - add a symlink to an attribute group.
292 * @kobj: The kobject containing the group.
293 * @group_name: The name of the group.
294 * @target: The target kobject of the symlink to create.
295 * @link_name: The name of the symlink to create.
296 */
297int sysfs_add_link_to_group(struct kobject *kobj, const char *group_name,
298 struct kobject *target, const char *link_name)
299{
300 struct sysfs_dirent *dir_sd;
301 int error = 0;
302
303 dir_sd = sysfs_get_dirent(kobj->sd, NULL, group_name);
304 if (!dir_sd)
305 return -ENOENT;
306
307 error = sysfs_create_link_sd(dir_sd, target, link_name);
308 sysfs_put(dir_sd);
309
310 return error;
311}
312EXPORT_SYMBOL_GPL(sysfs_add_link_to_group);
313
314/**
315 * sysfs_remove_link_from_group - remove a symlink from an attribute group.
316 * @kobj: The kobject containing the group.
317 * @group_name: The name of the group.
318 * @link_name: The name of the symlink to remove.
319 */
320void sysfs_remove_link_from_group(struct kobject *kobj, const char *group_name,
321 const char *link_name)
322{
323 struct sysfs_dirent *dir_sd;
324
325 dir_sd = sysfs_get_dirent(kobj->sd, NULL, group_name);
326 if (dir_sd) {
327 sysfs_hash_and_remove(dir_sd, NULL, link_name);
328 sysfs_put(dir_sd);
329 }
330}
331EXPORT_SYMBOL_GPL(sysfs_remove_link_from_group);