blob: 18989b5b3b56b8b0b59836492606ec99fd3debbe [file] [log] [blame]
Greg Kroah-Hartmand9d16e12017-11-07 17:30:05 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * kobject.c - library routines for handling generic kernel objects
4 *
5 * Copyright (c) 2002-2003 Patrick Mochel <mochel@osdl.org>
Greg Kroah-Hartmanf0e7e1b2007-09-27 14:48:53 -07006 * Copyright (c) 2006-2007 Greg Kroah-Hartman <greg@kroah.com>
7 * Copyright (c) 2006-2007 Novell Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Please see the file Documentation/kobject.txt for critical information
10 * about using the kobject interface.
11 */
12
13#include <linux/kobject.h>
14#include <linux/string.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050015#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/stat.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080017#include <linux/slab.h>
Bjorn Helgaas89c86a62013-12-05 17:37:51 -070018#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Tejun Heoe34ff492013-09-11 22:29:05 -040020/**
21 * kobject_namespace - return @kobj's namespace tag
22 * @kobj: kobject in question
23 *
24 * Returns namespace tag of @kobj if its parent has namespace ops enabled
25 * and thus @kobj should have a namespace tag associated with it. Returns
26 * %NULL otherwise.
27 */
28const void *kobject_namespace(struct kobject *kobj)
29{
30 const struct kobj_ns_type_operations *ns_ops = kobj_ns_ops(kobj);
31
32 if (!ns_ops || ns_ops->type == KOBJ_NS_TYPE_NONE)
33 return NULL;
34
Linus Torvaldsa1212d22013-11-07 20:47:28 +090035 return kobj->ktype->namespace(kobj);
Tejun Heoe34ff492013-09-11 22:29:05 -040036}
37
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080038/*
39 * populate_dir - populate directory with attributes.
40 * @kobj: object we're working on.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 *
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080042 * Most subsystems have a set of default attributes that are associated
43 * with an object that registers with them. This is a helper called during
44 * object registration that loops through the default attributes of the
45 * subsystem and creates attributes files for them in sysfs.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080047static int populate_dir(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080049 struct kobj_type *t = get_ktype(kobj);
50 struct attribute *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int error = 0;
52 int i;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (t && t->default_attrs) {
55 for (i = 0; (attr = t->default_attrs[i]) != NULL; i++) {
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080056 error = sysfs_create_file(kobj, attr);
57 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 break;
59 }
60 }
61 return error;
62}
63
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080064static int create_dir(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Tejun Heoc84a3b22013-11-23 18:01:46 -050066 const struct kobj_ns_type_operations *ops;
Tejun Heoe34ff492013-09-11 22:29:05 -040067 int error;
68
69 error = sysfs_create_dir_ns(kobj, kobject_namespace(kobj));
Tejun Heoc84a3b22013-11-23 18:01:46 -050070 if (error)
71 return error;
72
73 error = populate_dir(kobj);
74 if (error) {
75 sysfs_remove_dir(kobj);
76 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
Tejun Heo26ea12d2013-09-18 17:15:36 -040078
79 /*
80 * @kobj->sd may be deleted by an ancestor going away. Hold an
81 * extra reference so that it stays until @kobj is gone.
82 */
83 sysfs_get(kobj->sd);
84
Tejun Heoc84a3b22013-11-23 18:01:46 -050085 /*
86 * If @kobj has ns_ops, its children need to be filtered based on
87 * their namespace tags. Enable namespace support on @kobj->sd.
88 */
89 ops = kobj_child_ns_ops(kobj);
90 if (ops) {
91 BUG_ON(ops->type <= KOBJ_NS_TYPE_NONE);
92 BUG_ON(ops->type >= KOBJ_NS_TYPES);
93 BUG_ON(!kobj_ns_type_registered(ops->type));
94
Tejun Heofa4cd452014-02-07 13:32:07 -050095 sysfs_enable_ns(kobj->sd);
Tejun Heoc84a3b22013-11-23 18:01:46 -050096 }
97
98 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static int get_kobj_path_length(struct kobject *kobj)
102{
103 int length = 1;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800104 struct kobject *parent = kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800106 /* walk up the ancestors until we hit the one pointing to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * root.
108 * Add 1 to strlen for leading '/' of each level.
109 */
110 do {
Chuck Ebbertb365b3d2006-01-12 20:02:00 -0500111 if (kobject_name(parent) == NULL)
112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 length += strlen(kobject_name(parent)) + 1;
114 parent = parent->parent;
115 } while (parent);
116 return length;
117}
118
119static void fill_kobj_path(struct kobject *kobj, char *path, int length)
120{
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800121 struct kobject *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 --length;
124 for (parent = kobj; parent; parent = parent->parent) {
125 int cur = strlen(kobject_name(parent));
126 /* back up enough to print this name with '/' */
127 length -= cur;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800128 strncpy(path + length, kobject_name(parent), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 *(path + --length) = '/';
130 }
131
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800132 pr_debug("kobject: '%s' (%p): %s: path = '%s'\n", kobject_name(kobj),
Harvey Harrison810304d2008-04-30 00:55:08 -0700133 kobj, __func__, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800137 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
139 * @kobj: kobject in question, with which to build the path
140 * @gfp_mask: the allocation type used to allocate the path
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800141 *
142 * The result must be freed by the caller with kfree().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
Al Virofd4f2df2005-10-21 03:18:50 -0400144char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 char *path;
147 int len;
148
149 len = get_kobj_path_length(kobj);
Chuck Ebbertb365b3d2006-01-12 20:02:00 -0500150 if (len == 0)
151 return NULL;
Burman Yan4668edc2006-12-06 20:38:51 -0800152 path = kzalloc(len, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!path)
154 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 fill_kobj_path(kobj, path, len);
156
157 return path;
158}
Dmitry Torokhov80fc9f52006-10-11 01:43:58 -0400159EXPORT_SYMBOL_GPL(kobject_get_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100161/* add the kobject to its kset's list */
162static void kobj_kset_join(struct kobject *kobj)
163{
164 if (!kobj->kset)
165 return;
166
167 kset_get(kobj->kset);
168 spin_lock(&kobj->kset->list_lock);
169 list_add_tail(&kobj->entry, &kobj->kset->list);
170 spin_unlock(&kobj->kset->list_lock);
171}
172
173/* remove the kobject from its kset's list */
174static void kobj_kset_leave(struct kobject *kobj)
175{
176 if (!kobj->kset)
177 return;
178
179 spin_lock(&kobj->kset->list_lock);
180 list_del_init(&kobj->entry);
181 spin_unlock(&kobj->kset->list_lock);
182 kset_put(kobj->kset);
183}
184
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800185static void kobject_init_internal(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800187 if (!kobj)
188 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 kref_init(&kobj->kref);
190 INIT_LIST_HEAD(&kobj->entry);
Greg Kroah-Hartmana4573c42008-02-26 09:36:38 -0800191 kobj->state_in_sysfs = 0;
192 kobj->state_add_uevent_sent = 0;
193 kobj->state_remove_uevent_sent = 0;
194 kobj->state_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700198static int kobject_add_internal(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 int error = 0;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800201 struct kobject *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100203 if (!kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return -ENOENT;
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100205
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100206 if (!kobj->name || !kobj->name[0]) {
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200207 WARN(1,
208 "kobject: (%p): attempted to be registered with empty name!\n",
209 kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800210 return -EINVAL;
211 }
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 parent = kobject_get(kobj->parent);
214
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100215 /* join kset if set, use it as parent if we do not already have one */
216 if (kobj->kset) {
217 if (!parent)
218 parent = kobject_get(&kobj->kset->kobj);
219 kobj_kset_join(kobj);
220 kobj->parent = parent;
221 }
222
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800223 pr_debug("kobject: '%s' (%p): %s: parent: '%s', set: '%s'\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700224 kobject_name(kobj), kobj, __func__,
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800225 parent ? kobject_name(parent) : "<NULL>",
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800226 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900228 error = create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (error) {
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100230 kobj_kset_leave(kobj);
231 kobject_put(parent);
232 kobj->parent = NULL;
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800233
234 /* be noisy on error issues */
235 if (error == -EEXIST)
Dmitry Vyukov3e14c6a2018-04-11 17:22:43 +0200236 pr_err("%s failed for %s with -EEXIST, don't try to register things with the same name in the same directory.\n",
237 __func__, kobject_name(kobj));
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800238 else
Dmitry Vyukov3e14c6a2018-04-11 17:22:43 +0200239 pr_err("%s failed for %s (error: %d parent: %s)\n",
240 __func__, kobject_name(kobj), error,
241 parent ? kobject_name(parent) : "'none'");
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100242 } else
243 kobj->state_in_sysfs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 return error;
246}
247
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700248/**
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500249 * kobject_set_name_vargs - Set the name of an kobject
250 * @kobj: struct kobject to set the name of
Greg Kroah-Hartman8c4606b2007-12-04 14:45:47 +0800251 * @fmt: format string used to build the name
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500252 * @vargs: vargs to format the string.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100254int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500255 va_list vargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Rasmus Villemoesf773f322015-11-06 16:31:23 -0800257 const char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Kay Sievers8a577ff2009-04-18 15:05:45 -0700259 if (kobj->name && !fmt)
260 return 0;
261
Rasmus Villemoesf773f322015-11-06 16:31:23 -0800262 s = kvasprintf_const(GFP_KERNEL, fmt, vargs);
Rasmus Villemoes2abf1142015-06-25 15:02:30 -0700263 if (!s)
Kay Sieversa4ca6612008-04-30 02:06:29 +0200264 return -ENOMEM;
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500265
Rasmus Villemoesf773f322015-11-06 16:31:23 -0800266 /*
267 * ewww... some of these buggers have '/' in the name ... If
268 * that's the case, we need to make sure we have an actual
269 * allocated copy to modify, since kvasprintf_const may have
270 * returned something from .rodata.
271 */
272 if (strchr(s, '/')) {
273 char *t;
274
275 t = kstrdup(s, GFP_KERNEL);
276 kfree_const(s);
277 if (!t)
278 return -ENOMEM;
279 strreplace(t, '/', '!');
280 s = t;
281 }
282 kfree_const(kobj->name);
Rasmus Villemoes2abf1142015-06-25 15:02:30 -0700283 kobj->name = s;
Kay Sievers9f255652008-05-06 22:24:04 +0200284
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500285 return 0;
286}
287
288/**
289 * kobject_set_name - Set the name of a kobject
290 * @kobj: struct kobject to set the name of
291 * @fmt: format string used to build the name
292 *
293 * This sets the name of the kobject. If you have already added the
294 * kobject to the system, you must call kobject_rename() in order to
295 * change the name of the kobject.
296 */
297int kobject_set_name(struct kobject *kobj, const char *fmt, ...)
298{
Kay Sieversa4ca6612008-04-30 02:06:29 +0200299 va_list vargs;
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500300 int retval;
301
Kay Sieversa4ca6612008-04-30 02:06:29 +0200302 va_start(vargs, fmt);
303 retval = kobject_set_name_vargs(kobj, fmt, vargs);
304 va_end(vargs);
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500305
306 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308EXPORT_SYMBOL(kobject_set_name);
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310/**
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700311 * kobject_init - initialize a kobject structure
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800312 * @kobj: pointer to the kobject to initialize
313 * @ktype: pointer to the ktype for this kobject.
314 *
315 * This function will properly initialize a kobject such that it can then
316 * be passed to the kobject_add() call.
317 *
318 * After this function is called, the kobject MUST be cleaned up by a call
319 * to kobject_put(), not by a call to kfree directly to ensure that all of
320 * the memory is cleaned up properly.
321 */
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700322void kobject_init(struct kobject *kobj, struct kobj_type *ktype)
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800323{
324 char *err_str;
325
326 if (!kobj) {
327 err_str = "invalid kobject pointer!";
328 goto error;
329 }
330 if (!ktype) {
331 err_str = "must have a ktype to be initialized properly!\n";
332 goto error;
333 }
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100334 if (kobj->state_initialized) {
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800335 /* do not error out as sometimes we can recover */
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200336 pr_err("kobject (%p): tried to init an initialized object, something is seriously wrong.\n",
337 kobj);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800338 dump_stack();
339 }
340
Greg Kroah-Hartmana4573c42008-02-26 09:36:38 -0800341 kobject_init_internal(kobj);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800342 kobj->ktype = ktype;
343 return;
344
345error:
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200346 pr_err("kobject (%p): %s\n", kobj, err_str);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800347 dump_stack();
348}
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700349EXPORT_SYMBOL(kobject_init);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800350
Nicolas Iooss8db14862015-07-17 16:23:42 -0700351static __printf(3, 0) int kobject_add_varg(struct kobject *kobj,
352 struct kobject *parent,
353 const char *fmt, va_list vargs)
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800354{
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800355 int retval;
356
Kay Sieversa4ca6612008-04-30 02:06:29 +0200357 retval = kobject_set_name_vargs(kobj, fmt, vargs);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800358 if (retval) {
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200359 pr_err("kobject: can not set name properly!\n");
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800360 return retval;
361 }
362 kobj->parent = parent;
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700363 return kobject_add_internal(kobj);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800364}
365
366/**
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700367 * kobject_add - the main kobject add function
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800368 * @kobj: the kobject to add
369 * @parent: pointer to the parent of the kobject.
370 * @fmt: format to name the kobject with.
371 *
372 * The kobject name is set and added to the kobject hierarchy in this
373 * function.
374 *
375 * If @parent is set, then the parent of the @kobj will be set to it.
376 * If @parent is NULL, then the parent of the @kobj will be set to the
Bart Van Assche97057102014-01-04 14:20:04 +0100377 * kobject associated with the kset assigned to this kobject. If no kset
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800378 * is assigned to the kobject, then the kobject will be located in the
379 * root of the sysfs tree.
380 *
381 * If this function returns an error, kobject_put() must be called to
382 * properly clean up the memory associated with the object.
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800383 * Under no instance should the kobject that is passed to this function
384 * be directly freed with a call to kfree(), that can leak memory.
385 *
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100386 * Note, no "add" uevent will be created with this call, the caller should set
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800387 * up all of the necessary sysfs files for the object and then call
388 * kobject_uevent() with the UEVENT_ADD parameter to ensure that
389 * userspace is properly notified of this kobject's creation.
390 */
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700391int kobject_add(struct kobject *kobj, struct kobject *parent,
392 const char *fmt, ...)
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800393{
394 va_list args;
395 int retval;
396
397 if (!kobj)
398 return -EINVAL;
399
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100400 if (!kobj->state_initialized) {
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200401 pr_err("kobject '%s' (%p): tried to add an uninitialized object, something is seriously wrong.\n",
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100402 kobject_name(kobj), kobj);
403 dump_stack();
404 return -EINVAL;
405 }
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800406 va_start(args, fmt);
407 retval = kobject_add_varg(kobj, parent, fmt, args);
408 va_end(args);
409
410 return retval;
411}
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700412EXPORT_SYMBOL(kobject_add);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800413
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800414/**
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800415 * kobject_init_and_add - initialize a kobject structure and add it to the kobject hierarchy
416 * @kobj: pointer to the kobject to initialize
417 * @ktype: pointer to the ktype for this kobject.
418 * @parent: pointer to the parent of this kobject.
419 * @fmt: the name of the kobject.
420 *
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700421 * This function combines the call to kobject_init() and
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700422 * kobject_add(). The same type of error handling after a call to
423 * kobject_add() and kobject lifetime rules are the same here.
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800424 */
425int kobject_init_and_add(struct kobject *kobj, struct kobj_type *ktype,
426 struct kobject *parent, const char *fmt, ...)
427{
428 va_list args;
429 int retval;
430
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700431 kobject_init(kobj, ktype);
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800432
433 va_start(args, fmt);
434 retval = kobject_add_varg(kobj, parent, fmt, args);
435 va_end(args);
436
437 return retval;
438}
439EXPORT_SYMBOL_GPL(kobject_init_and_add);
440
441/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800442 * kobject_rename - change the name of an object
443 * @kobj: object in question.
444 * @new_name: object's new name
Eric W. Biederman030c1d22008-05-08 14:41:00 -0700445 *
446 * It is the responsibility of the caller to provide mutual
447 * exclusion between two different calls of kobject_rename
448 * on the same kobject and to ensure that new_name is valid and
449 * won't conflict with other kobjects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800451int kobject_rename(struct kobject *kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 int error = 0;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800454 const char *devpath = NULL;
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700455 const char *dup_name = NULL, *name;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800456 char *devpath_string = NULL;
457 char *envp[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 kobj = kobject_get(kobj);
460 if (!kobj)
461 return -EINVAL;
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700462 if (!kobj->parent)
463 return -EINVAL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800464
465 devpath = kobject_get_path(kobj, GFP_KERNEL);
466 if (!devpath) {
467 error = -ENOMEM;
468 goto out;
469 }
470 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
471 if (!devpath_string) {
472 error = -ENOMEM;
473 goto out;
474 }
475 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
476 envp[0] = devpath_string;
477 envp[1] = NULL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800478
Rasmus Villemoesf773f322015-11-06 16:31:23 -0800479 name = dup_name = kstrdup_const(new_name, GFP_KERNEL);
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700480 if (!name) {
481 error = -ENOMEM;
482 goto out;
483 }
484
Tejun Heoe34ff492013-09-11 22:29:05 -0400485 error = sysfs_rename_dir_ns(kobj, new_name, kobject_namespace(kobj));
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700486 if (error)
487 goto out;
488
489 /* Install the new kobject name */
490 dup_name = kobj->name;
491 kobj->name = name;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800492
493 /* This function is mostly/only used for network interface.
494 * Some hotplug package track interfaces by their name and
495 * therefore want to know when the name is changed by the user. */
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700496 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800497
498out:
Rasmus Villemoesf773f322015-11-06 16:31:23 -0800499 kfree_const(dup_name);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800500 kfree(devpath_string);
501 kfree(devpath);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700502 kobject_put(kobj);
503
504 return error;
505}
Alex Chiang8344b562008-06-10 15:30:42 -0600506EXPORT_SYMBOL_GPL(kobject_rename);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700507
508/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800509 * kobject_move - move object to another parent
510 * @kobj: object in question.
511 * @new_parent: object's new parent (can be NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +0100512 */
Cornelia Huck8a824722006-11-20 17:07:51 +0100513int kobject_move(struct kobject *kobj, struct kobject *new_parent)
514{
515 int error;
516 struct kobject *old_parent;
517 const char *devpath = NULL;
518 char *devpath_string = NULL;
519 char *envp[2];
520
521 kobj = kobject_get(kobj);
522 if (!kobj)
523 return -EINVAL;
524 new_parent = kobject_get(new_parent);
525 if (!new_parent) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100526 if (kobj->kset)
527 new_parent = kobject_get(&kobj->kset->kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +0100528 }
Tejun Heoe34ff492013-09-11 22:29:05 -0400529
Cornelia Huck8a824722006-11-20 17:07:51 +0100530 /* old object path */
531 devpath = kobject_get_path(kobj, GFP_KERNEL);
532 if (!devpath) {
533 error = -ENOMEM;
534 goto out;
535 }
536 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
537 if (!devpath_string) {
538 error = -ENOMEM;
539 goto out;
540 }
541 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
542 envp[0] = devpath_string;
543 envp[1] = NULL;
Tejun Heoe34ff492013-09-11 22:29:05 -0400544 error = sysfs_move_dir_ns(kobj, new_parent, kobject_namespace(kobj));
Cornelia Huck8a824722006-11-20 17:07:51 +0100545 if (error)
546 goto out;
547 old_parent = kobj->parent;
548 kobj->parent = new_parent;
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300549 new_parent = NULL;
Cornelia Huck8a824722006-11-20 17:07:51 +0100550 kobject_put(old_parent);
551 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
552out:
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300553 kobject_put(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +0100554 kobject_put(kobj);
555 kfree(devpath_string);
556 kfree(devpath);
557 return error;
558}
Anand Jain24199d22015-02-12 07:03:37 +0800559EXPORT_SYMBOL_GPL(kobject_move);
Cornelia Huck8a824722006-11-20 17:07:51 +0100560
561/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800562 * kobject_del - unlink kobject from hierarchy.
563 * @kobj: object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800565void kobject_del(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Tejun Heo324a56e2013-12-11 14:11:53 -0500567 struct kernfs_node *sd;
Tejun Heo26ea12d2013-09-18 17:15:36 -0400568
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800569 if (!kobj)
570 return;
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100571
Tejun Heo26ea12d2013-09-18 17:15:36 -0400572 sd = kobj->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 sysfs_remove_dir(kobj);
Tejun Heo26ea12d2013-09-18 17:15:36 -0400574 sysfs_put(sd);
575
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100576 kobj->state_in_sysfs = 0;
577 kobj_kset_leave(kobj);
578 kobject_put(kobj->parent);
579 kobj->parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
Gabriel Somlofa40ae32015-08-10 15:51:43 -0400581EXPORT_SYMBOL(kobject_del);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800584 * kobject_get - increment refcount for object.
585 * @kobj: object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800587struct kobject *kobject_get(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Ethan Zhaod82d54a2015-03-12 13:04:16 +0900589 if (kobj) {
590 if (!kobj->state_initialized)
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200591 WARN(1, KERN_WARNING
592 "kobject: '%s' (%p): is not initialized, yet kobject_get() is being called.\n",
593 kobject_name(kobj), kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 kref_get(&kobj->kref);
Ethan Zhaod82d54a2015-03-12 13:04:16 +0900595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return kobj;
597}
Gabriel Somlofa40ae32015-08-10 15:51:43 -0400598EXPORT_SYMBOL(kobject_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Jan Karac70c1762017-03-23 01:37:01 +0100600struct kobject * __must_check kobject_get_unless_zero(struct kobject *kobj)
Linus Torvaldsa49b7e82013-04-13 15:15:30 -0700601{
Jan Karac70c1762017-03-23 01:37:01 +0100602 if (!kobj)
603 return NULL;
Linus Torvaldsa49b7e82013-04-13 15:15:30 -0700604 if (!kref_get_unless_zero(&kobj->kref))
605 kobj = NULL;
606 return kobj;
607}
Jan Karac70c1762017-03-23 01:37:01 +0100608EXPORT_SYMBOL(kobject_get_unless_zero);
Linus Torvaldsa49b7e82013-04-13 15:15:30 -0700609
Greg Kroah-Hartman18041f42007-12-03 21:31:08 -0800610/*
611 * kobject_cleanup - free kobject resources.
612 * @kobj: object to cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 */
Greg Kroah-Hartman18041f42007-12-03 21:31:08 -0800614static void kobject_cleanup(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100616 struct kobj_type *t = get_ktype(kobj);
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100617 const char *name = kobj->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Russell Kingc817a672013-06-27 15:06:14 +0100619 pr_debug("kobject: '%s' (%p): %s, parent %p\n",
620 kobject_name(kobj), kobj, __func__, kobj->parent);
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100621
622 if (t && !t->release)
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200623 pr_debug("kobject: '%s' (%p): does not have a release() function, it is broken and must be fixed.\n",
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100624 kobject_name(kobj), kobj);
625
626 /* send "remove" if the caller did not do it but sent "add" */
627 if (kobj->state_add_uevent_sent && !kobj->state_remove_uevent_sent) {
628 pr_debug("kobject: '%s' (%p): auto cleanup 'remove' event\n",
629 kobject_name(kobj), kobj);
630 kobject_uevent(kobj, KOBJ_REMOVE);
631 }
632
633 /* remove from sysfs if the caller did not do it */
634 if (kobj->state_in_sysfs) {
635 pr_debug("kobject: '%s' (%p): auto cleanup kobject_del\n",
636 kobject_name(kobj), kobj);
637 kobject_del(kobj);
638 }
639
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700640 if (t && t->release) {
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100641 pr_debug("kobject: '%s' (%p): calling ktype release\n",
642 kobject_name(kobj), kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 t->release(kobj);
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100644 }
645
646 /* free name if we allocated it */
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100647 if (name) {
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100648 pr_debug("kobject: '%s': free name\n", name);
Rasmus Villemoesf773f322015-11-06 16:31:23 -0800649 kfree_const(name);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Russell Kingc817a672013-06-27 15:06:14 +0100653#ifdef CONFIG_DEBUG_KOBJECT_RELEASE
654static void kobject_delayed_cleanup(struct work_struct *work)
655{
656 kobject_cleanup(container_of(to_delayed_work(work),
657 struct kobject, release));
658}
659#endif
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661static void kobject_release(struct kref *kref)
662{
Russell Kingc817a672013-06-27 15:06:14 +0100663 struct kobject *kobj = container_of(kref, struct kobject, kref);
664#ifdef CONFIG_DEBUG_KOBJECT_RELEASE
Bjorn Helgaas89c86a62013-12-05 17:37:51 -0700665 unsigned long delay = HZ + HZ * (get_random_int() & 0x3);
666 pr_info("kobject: '%s' (%p): %s, parent %p (delayed %ld)\n",
667 kobject_name(kobj), kobj, __func__, kobj->parent, delay);
Russell Kingc817a672013-06-27 15:06:14 +0100668 INIT_DELAYED_WORK(&kobj->release, kobject_delayed_cleanup);
Bjorn Helgaas89c86a62013-12-05 17:37:51 -0700669
670 schedule_delayed_work(&kobj->release, delay);
Russell Kingc817a672013-06-27 15:06:14 +0100671#else
672 kobject_cleanup(kobj);
673#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800677 * kobject_put - decrement refcount for object.
678 * @kobj: object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800680 * Decrement the refcount, and if 0, call kobject_cleanup().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800682void kobject_put(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Greg Kroah-Hartmanc1ebdae2008-02-26 09:36:38 -0800684 if (kobj) {
Arjan van de Vend955c782008-07-25 01:45:55 -0700685 if (!kobj->state_initialized)
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200686 WARN(1, KERN_WARNING
687 "kobject: '%s' (%p): is not initialized, yet kobject_put() is being called.\n",
688 kobject_name(kobj), kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 kref_put(&kobj->kref, kobject_release);
Greg Kroah-Hartmanc1ebdae2008-02-26 09:36:38 -0800690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
Gabriel Somlofa40ae32015-08-10 15:51:43 -0400692EXPORT_SYMBOL(kobject_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800694static void dynamic_kobj_release(struct kobject *kobj)
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500695{
Harvey Harrison810304d2008-04-30 00:55:08 -0700696 pr_debug("kobject: (%p): %s\n", kobj, __func__);
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500697 kfree(kobj);
698}
699
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800700static struct kobj_type dynamic_kobj_ktype = {
Kay Sievers386f2752007-11-02 13:47:53 +0100701 .release = dynamic_kobj_release,
702 .sysfs_ops = &kobj_sysfs_ops,
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500703};
704
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800705/**
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800706 * kobject_create - create a struct kobject dynamically
707 *
708 * This function creates a kobject structure dynamically and sets it up
709 * to be a "dynamic" kobject with a default release function set up.
710 *
711 * If the kobject was not able to be created, NULL will be returned.
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800712 * The kobject structure returned from here must be cleaned up with a
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700713 * call to kobject_put() and not kfree(), as kobject_init() has
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800714 * already been called on this structure.
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800715 */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800716struct kobject *kobject_create(void)
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800717{
718 struct kobject *kobj;
719
720 kobj = kzalloc(sizeof(*kobj), GFP_KERNEL);
721 if (!kobj)
722 return NULL;
723
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700724 kobject_init(kobj, &dynamic_kobj_ktype);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800725 return kobj;
726}
727
728/**
729 * kobject_create_and_add - create a struct kobject dynamically and register it with sysfs
730 *
Zhi Yong Wu9ff1f832012-05-07 10:48:25 +0800731 * @name: the name for the kobject
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800732 * @parent: the parent kobject of this kobject, if any.
733 *
Dave Youngf70701a2008-01-28 16:58:00 +0800734 * This function creates a kobject structure dynamically and registers it
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800735 * with sysfs. When you are finished with this structure, call
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -0800736 * kobject_put() and the structure will be dynamically freed when
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800737 * it is no longer being used.
738 *
739 * If the kobject was not able to be created, NULL will be returned.
740 */
741struct kobject *kobject_create_and_add(const char *name, struct kobject *parent)
742{
743 struct kobject *kobj;
744 int retval;
745
746 kobj = kobject_create();
747 if (!kobj)
748 return NULL;
749
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700750 retval = kobject_add(kobj, parent, "%s", name);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800751 if (retval) {
Andy Shevchenko82d1f112018-03-15 15:23:43 +0200752 pr_warn("%s: kobject_add error: %d\n", __func__, retval);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800753 kobject_put(kobj);
754 kobj = NULL;
755 }
756 return kobj;
757}
758EXPORT_SYMBOL_GPL(kobject_create_and_add);
759
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500760/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800761 * kset_init - initialize a kset for use
762 * @k: kset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800764void kset_init(struct kset *k)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Greg Kroah-Hartmane1543dd2007-12-17 23:05:35 -0700766 kobject_init_internal(&k->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 INIT_LIST_HEAD(&k->list);
768 spin_lock_init(&k->list_lock);
769}
770
Kay Sievers23b52122007-11-02 13:47:53 +0100771/* default kobject attribute operations */
772static ssize_t kobj_attr_show(struct kobject *kobj, struct attribute *attr,
773 char *buf)
774{
775 struct kobj_attribute *kattr;
776 ssize_t ret = -EIO;
777
778 kattr = container_of(attr, struct kobj_attribute, attr);
779 if (kattr->show)
780 ret = kattr->show(kobj, kattr, buf);
781 return ret;
782}
783
784static ssize_t kobj_attr_store(struct kobject *kobj, struct attribute *attr,
785 const char *buf, size_t count)
786{
787 struct kobj_attribute *kattr;
788 ssize_t ret = -EIO;
789
790 kattr = container_of(attr, struct kobj_attribute, attr);
791 if (kattr->store)
792 ret = kattr->store(kobj, kattr, buf, count);
793 return ret;
794}
795
Emese Revfy52cf25d2010-01-19 02:58:23 +0100796const struct sysfs_ops kobj_sysfs_ops = {
Kay Sievers23b52122007-11-02 13:47:53 +0100797 .show = kobj_attr_show,
798 .store = kobj_attr_store,
799};
Jeff Mahoney29dfe2d2013-11-01 13:06:56 -0400800EXPORT_SYMBOL_GPL(kobj_sysfs_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800803 * kset_register - initialize and add a kset.
804 * @k: kset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800806int kset_register(struct kset *k)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Kay Sievers80f03e32007-05-26 11:21:36 +0200808 int err;
809
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800810 if (!k)
811 return -EINVAL;
Kay Sievers80f03e32007-05-26 11:21:36 +0200812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 kset_init(k);
Greg Kroah-Hartman12e339a2002-04-09 12:14:34 -0700814 err = kobject_add_internal(&k->kobj);
Kay Sievers80f03e32007-05-26 11:21:36 +0200815 if (err)
816 return err;
817 kobject_uevent(&k->kobj, KOBJ_ADD);
818 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
Gabriel Somlofa40ae32015-08-10 15:51:43 -0400820EXPORT_SYMBOL(kset_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800823 * kset_unregister - remove a kset.
824 * @k: kset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800826void kset_unregister(struct kset *k)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800828 if (!k)
829 return;
Bjorn Helgaas35a5fe62013-12-05 17:38:00 -0700830 kobject_del(&k->kobj);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -0800831 kobject_put(&k->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
Gabriel Somlofa40ae32015-08-10 15:51:43 -0400833EXPORT_SYMBOL(kset_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800836 * kset_find_obj - search for object in kset.
837 * @kset: kset we're looking in.
838 * @name: object's name.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 *
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800840 * Lock kset via @kset->subsys, and iterate over @kset->list,
841 * looking for a matching kobject. If matching object is found
842 * take a reference and return the object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800844struct kobject *kset_find_obj(struct kset *kset, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Robert P. J. Dayc6a2a3d2008-03-27 01:13:34 -0400846 struct kobject *k;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800847 struct kobject *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 spin_lock(&kset->list_lock);
Robin Holtc25d1df2010-09-29 14:00:54 -0500850
Robert P. J. Dayc6a2a3d2008-03-27 01:13:34 -0400851 list_for_each_entry(k, &kset->list, entry) {
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800852 if (kobject_name(k) && !strcmp(kobject_name(k), name)) {
Linus Torvaldsa49b7e82013-04-13 15:15:30 -0700853 ret = kobject_get_unless_zero(k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 break;
855 }
856 }
Robin Holtc25d1df2010-09-29 14:00:54 -0500857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 spin_unlock(&kset->list_lock);
859 return ret;
860}
Gabriel Somlo2fe829a2016-01-28 09:23:12 -0500861EXPORT_SYMBOL_GPL(kset_find_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700863static void kset_release(struct kobject *kobj)
864{
865 struct kset *kset = container_of(kobj, struct kset, kobj);
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800866 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700867 kobject_name(kobj), kobj, __func__);
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700868 kfree(kset);
869}
870
Kay Sievers386f2752007-11-02 13:47:53 +0100871static struct kobj_type kset_ktype = {
872 .sysfs_ops = &kobj_sysfs_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700873 .release = kset_release,
874};
875
876/**
877 * kset_create - create a struct kset dynamically
878 *
879 * @name: the name for the kset
880 * @uevent_ops: a struct kset_uevent_ops for the kset
881 * @parent_kobj: the parent kobject of this kset, if any.
882 *
883 * This function creates a kset structure dynamically. This structure can
884 * then be registered with the system and show up in sysfs with a call to
885 * kset_register(). When you are finished with this structure, if
886 * kset_register() has been called, call kset_unregister() and the
887 * structure will be dynamically freed when it is no longer being used.
888 *
889 * If the kset was not able to be created, NULL will be returned.
890 */
891static struct kset *kset_create(const char *name,
Emese Revfy9cd43612009-12-31 14:52:51 +0100892 const struct kset_uevent_ops *uevent_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700893 struct kobject *parent_kobj)
894{
895 struct kset *kset;
Dave Youngd9cd8f32009-05-11 14:17:45 +0800896 int retval;
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700897
898 kset = kzalloc(sizeof(*kset), GFP_KERNEL);
899 if (!kset)
900 return NULL;
Kees Cookb7165eb2013-06-06 13:52:19 -0700901 retval = kobject_set_name(&kset->kobj, "%s", name);
Dave Youngd9cd8f32009-05-11 14:17:45 +0800902 if (retval) {
903 kfree(kset);
904 return NULL;
905 }
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700906 kset->uevent_ops = uevent_ops;
907 kset->kobj.parent = parent_kobj;
908
909 /*
Kay Sievers386f2752007-11-02 13:47:53 +0100910 * The kobject of this kset will have a type of kset_ktype and belong to
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700911 * no kset itself. That way we can properly free it when it is
912 * finished being used.
913 */
Kay Sievers386f2752007-11-02 13:47:53 +0100914 kset->kobj.ktype = &kset_ktype;
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700915 kset->kobj.kset = NULL;
916
917 return kset;
918}
919
920/**
921 * kset_create_and_add - create a struct kset dynamically and add it to sysfs
922 *
923 * @name: the name for the kset
924 * @uevent_ops: a struct kset_uevent_ops for the kset
925 * @parent_kobj: the parent kobject of this kset, if any.
926 *
927 * This function creates a kset structure dynamically and registers it
928 * with sysfs. When you are finished with this structure, call
929 * kset_unregister() and the structure will be dynamically freed when it
930 * is no longer being used.
931 *
932 * If the kset was not able to be created, NULL will be returned.
933 */
934struct kset *kset_create_and_add(const char *name,
Emese Revfy9cd43612009-12-31 14:52:51 +0100935 const struct kset_uevent_ops *uevent_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700936 struct kobject *parent_kobj)
937{
938 struct kset *kset;
939 int error;
940
941 kset = kset_create(name, uevent_ops, parent_kobj);
942 if (!kset)
943 return NULL;
944 error = kset_register(kset);
945 if (error) {
946 kfree(kset);
947 return NULL;
948 }
949 return kset;
950}
951EXPORT_SYMBOL_GPL(kset_create_and_add);
952
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700953
954static DEFINE_SPINLOCK(kobj_ns_type_lock);
955static const struct kobj_ns_type_operations *kobj_ns_ops_tbl[KOBJ_NS_TYPES];
956
957int kobj_ns_type_register(const struct kobj_ns_type_operations *ops)
958{
959 enum kobj_ns_type type = ops->type;
960 int error;
961
962 spin_lock(&kobj_ns_type_lock);
963
964 error = -EINVAL;
965 if (type >= KOBJ_NS_TYPES)
966 goto out;
967
968 error = -EINVAL;
969 if (type <= KOBJ_NS_TYPE_NONE)
970 goto out;
971
972 error = -EBUSY;
973 if (kobj_ns_ops_tbl[type])
974 goto out;
975
976 error = 0;
977 kobj_ns_ops_tbl[type] = ops;
978
979out:
980 spin_unlock(&kobj_ns_type_lock);
981 return error;
982}
983
984int kobj_ns_type_registered(enum kobj_ns_type type)
985{
986 int registered = 0;
987
988 spin_lock(&kobj_ns_type_lock);
989 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES))
990 registered = kobj_ns_ops_tbl[type] != NULL;
991 spin_unlock(&kobj_ns_type_lock);
992
993 return registered;
994}
995
996const struct kobj_ns_type_operations *kobj_child_ns_ops(struct kobject *parent)
997{
998 const struct kobj_ns_type_operations *ops = NULL;
999
Pankaj Dubey41fb96a2014-09-24 16:25:54 +05301000 if (parent && parent->ktype && parent->ktype->child_ns_type)
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001001 ops = parent->ktype->child_ns_type(parent);
1002
1003 return ops;
1004}
1005
1006const struct kobj_ns_type_operations *kobj_ns_ops(struct kobject *kobj)
1007{
1008 return kobj_child_ns_ops(kobj->parent);
1009}
1010
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001011bool kobj_ns_current_may_mount(enum kobj_ns_type type)
1012{
Eric W. Biederman730d7d32013-09-23 14:41:17 -07001013 bool may_mount = true;
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001014
1015 spin_lock(&kobj_ns_type_lock);
1016 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1017 kobj_ns_ops_tbl[type])
1018 may_mount = kobj_ns_ops_tbl[type]->current_may_mount();
1019 spin_unlock(&kobj_ns_type_lock);
1020
1021 return may_mount;
1022}
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001023
Al Viroa685e082011-06-08 21:13:01 -04001024void *kobj_ns_grab_current(enum kobj_ns_type type)
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001025{
Al Viroa685e082011-06-08 21:13:01 -04001026 void *ns = NULL;
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001027
1028 spin_lock(&kobj_ns_type_lock);
1029 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1030 kobj_ns_ops_tbl[type])
Al Viroa685e082011-06-08 21:13:01 -04001031 ns = kobj_ns_ops_tbl[type]->grab_current_ns();
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001032 spin_unlock(&kobj_ns_type_lock);
1033
1034 return ns;
1035}
Bart Van Assche172856e2018-01-22 14:27:11 -08001036EXPORT_SYMBOL_GPL(kobj_ns_grab_current);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001037
1038const void *kobj_ns_netlink(enum kobj_ns_type type, struct sock *sk)
1039{
1040 const void *ns = NULL;
1041
1042 spin_lock(&kobj_ns_type_lock);
1043 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1044 kobj_ns_ops_tbl[type])
1045 ns = kobj_ns_ops_tbl[type]->netlink_ns(sk);
1046 spin_unlock(&kobj_ns_type_lock);
1047
1048 return ns;
1049}
1050
1051const void *kobj_ns_initial(enum kobj_ns_type type)
1052{
1053 const void *ns = NULL;
1054
1055 spin_lock(&kobj_ns_type_lock);
1056 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1057 kobj_ns_ops_tbl[type])
1058 ns = kobj_ns_ops_tbl[type]->initial_ns();
1059 spin_unlock(&kobj_ns_type_lock);
1060
1061 return ns;
1062}
1063
Al Viroa685e082011-06-08 21:13:01 -04001064void kobj_ns_drop(enum kobj_ns_type type, void *ns)
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001065{
Al Viroa685e082011-06-08 21:13:01 -04001066 spin_lock(&kobj_ns_type_lock);
1067 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1068 kobj_ns_ops_tbl[type] && kobj_ns_ops_tbl[type]->drop_ns)
1069 kobj_ns_ops_tbl[type]->drop_ns(ns);
1070 spin_unlock(&kobj_ns_type_lock);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001071}
Bart Van Assche172856e2018-01-22 14:27:11 -08001072EXPORT_SYMBOL_GPL(kobj_ns_drop);