blob: 064451f2a6c3c547c3aca75200f6ccc4e288718f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * kobject.c - library routines for handling generic kernel objects
3 *
4 * Copyright (c) 2002-2003 Patrick Mochel <mochel@osdl.org>
Greg Kroah-Hartmanf0e7e1b2007-09-27 14:48:53 -07005 * Copyright (c) 2006-2007 Greg Kroah-Hartman <greg@kroah.com>
6 * Copyright (c) 2006-2007 Novell Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This file is released under the GPLv2.
9 *
10 *
11 * Please see the file Documentation/kobject.txt for critical information
12 * about using the kobject interface.
13 */
14
15#include <linux/kobject.h>
Jeff Mahoneyeee03162013-09-11 13:00:30 -040016#include <linux/kobj_completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/string.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050018#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/stat.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080020#include <linux/slab.h>
Bjorn Helgaas89c86a62013-12-05 17:37:51 -070021#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Tejun Heoe34ff492013-09-11 22:29:05 -040023/**
24 * kobject_namespace - return @kobj's namespace tag
25 * @kobj: kobject in question
26 *
27 * Returns namespace tag of @kobj if its parent has namespace ops enabled
28 * and thus @kobj should have a namespace tag associated with it. Returns
29 * %NULL otherwise.
30 */
31const void *kobject_namespace(struct kobject *kobj)
32{
33 const struct kobj_ns_type_operations *ns_ops = kobj_ns_ops(kobj);
34
35 if (!ns_ops || ns_ops->type == KOBJ_NS_TYPE_NONE)
36 return NULL;
37
Linus Torvaldsa1212d22013-11-07 20:47:28 +090038 return kobj->ktype->namespace(kobj);
Tejun Heoe34ff492013-09-11 22:29:05 -040039}
40
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080041/*
42 * populate_dir - populate directory with attributes.
43 * @kobj: object we're working on.
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 *
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080045 * Most subsystems have a set of default attributes that are associated
46 * with an object that registers with them. This is a helper called during
47 * object registration that loops through the default attributes of the
48 * subsystem and creates attributes files for them in sysfs.
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080050static int populate_dir(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080052 struct kobj_type *t = get_ktype(kobj);
53 struct attribute *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 int error = 0;
55 int i;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 if (t && t->default_attrs) {
58 for (i = 0; (attr = t->default_attrs[i]) != NULL; i++) {
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080059 error = sysfs_create_file(kobj, attr);
60 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 break;
62 }
63 }
64 return error;
65}
66
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -080067static int create_dir(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Tejun Heoc84a3b22013-11-23 18:01:46 -050069 const struct kobj_ns_type_operations *ops;
Tejun Heoe34ff492013-09-11 22:29:05 -040070 int error;
71
72 error = sysfs_create_dir_ns(kobj, kobject_namespace(kobj));
Tejun Heoc84a3b22013-11-23 18:01:46 -050073 if (error)
74 return error;
75
76 error = populate_dir(kobj);
77 if (error) {
78 sysfs_remove_dir(kobj);
79 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
Tejun Heo26ea12d2013-09-18 17:15:36 -040081
82 /*
83 * @kobj->sd may be deleted by an ancestor going away. Hold an
84 * extra reference so that it stays until @kobj is gone.
85 */
86 sysfs_get(kobj->sd);
87
Tejun Heoc84a3b22013-11-23 18:01:46 -050088 /*
89 * If @kobj has ns_ops, its children need to be filtered based on
90 * their namespace tags. Enable namespace support on @kobj->sd.
91 */
92 ops = kobj_child_ns_ops(kobj);
93 if (ops) {
94 BUG_ON(ops->type <= KOBJ_NS_TYPE_NONE);
95 BUG_ON(ops->type >= KOBJ_NS_TYPES);
96 BUG_ON(!kobj_ns_type_registered(ops->type));
97
Tejun Heo93b2b8e2013-11-28 14:54:15 -050098 kernfs_enable_ns(kobj->sd);
Tejun Heoc84a3b22013-11-23 18:01:46 -050099 }
100
101 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int get_kobj_path_length(struct kobject *kobj)
105{
106 int length = 1;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800107 struct kobject *parent = kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800109 /* walk up the ancestors until we hit the one pointing to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * root.
111 * Add 1 to strlen for leading '/' of each level.
112 */
113 do {
Chuck Ebbertb365b3d2006-01-12 20:02:00 -0500114 if (kobject_name(parent) == NULL)
115 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 length += strlen(kobject_name(parent)) + 1;
117 parent = parent->parent;
118 } while (parent);
119 return length;
120}
121
122static void fill_kobj_path(struct kobject *kobj, char *path, int length)
123{
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800124 struct kobject *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 --length;
127 for (parent = kobj; parent; parent = parent->parent) {
128 int cur = strlen(kobject_name(parent));
129 /* back up enough to print this name with '/' */
130 length -= cur;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800131 strncpy(path + length, kobject_name(parent), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 *(path + --length) = '/';
133 }
134
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800135 pr_debug("kobject: '%s' (%p): %s: path = '%s'\n", kobject_name(kobj),
Harvey Harrison810304d2008-04-30 00:55:08 -0700136 kobj, __func__, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800140 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 *
142 * @kobj: kobject in question, with which to build the path
143 * @gfp_mask: the allocation type used to allocate the path
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800144 *
145 * The result must be freed by the caller with kfree().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
Al Virofd4f2df2005-10-21 03:18:50 -0400147char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 char *path;
150 int len;
151
152 len = get_kobj_path_length(kobj);
Chuck Ebbertb365b3d2006-01-12 20:02:00 -0500153 if (len == 0)
154 return NULL;
Burman Yan4668edc2006-12-06 20:38:51 -0800155 path = kzalloc(len, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (!path)
157 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 fill_kobj_path(kobj, path, len);
159
160 return path;
161}
Dmitry Torokhov80fc9f52006-10-11 01:43:58 -0400162EXPORT_SYMBOL_GPL(kobject_get_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100164/* add the kobject to its kset's list */
165static void kobj_kset_join(struct kobject *kobj)
166{
167 if (!kobj->kset)
168 return;
169
170 kset_get(kobj->kset);
171 spin_lock(&kobj->kset->list_lock);
172 list_add_tail(&kobj->entry, &kobj->kset->list);
173 spin_unlock(&kobj->kset->list_lock);
174}
175
176/* remove the kobject from its kset's list */
177static void kobj_kset_leave(struct kobject *kobj)
178{
179 if (!kobj->kset)
180 return;
181
182 spin_lock(&kobj->kset->list_lock);
183 list_del_init(&kobj->entry);
184 spin_unlock(&kobj->kset->list_lock);
185 kset_put(kobj->kset);
186}
187
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800188static void kobject_init_internal(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800190 if (!kobj)
191 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 kref_init(&kobj->kref);
193 INIT_LIST_HEAD(&kobj->entry);
Greg Kroah-Hartmana4573c42008-02-26 09:36:38 -0800194 kobj->state_in_sysfs = 0;
195 kobj->state_add_uevent_sent = 0;
196 kobj->state_remove_uevent_sent = 0;
197 kobj->state_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
200
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700201static int kobject_add_internal(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 int error = 0;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800204 struct kobject *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100206 if (!kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return -ENOENT;
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100208
Kay Sieversaf5ca3f42007-12-20 02:09:39 +0100209 if (!kobj->name || !kobj->name[0]) {
Arjan van de Vend955c782008-07-25 01:45:55 -0700210 WARN(1, "kobject: (%p): attempted to be registered with empty "
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800211 "name!\n", kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800212 return -EINVAL;
213 }
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 parent = kobject_get(kobj->parent);
216
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100217 /* join kset if set, use it as parent if we do not already have one */
218 if (kobj->kset) {
219 if (!parent)
220 parent = kobject_get(&kobj->kset->kobj);
221 kobj_kset_join(kobj);
222 kobj->parent = parent;
223 }
224
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800225 pr_debug("kobject: '%s' (%p): %s: parent: '%s', set: '%s'\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700226 kobject_name(kobj), kobj, __func__,
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800227 parent ? kobject_name(parent) : "<NULL>",
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800228 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900230 error = create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (error) {
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100232 kobj_kset_leave(kobj);
233 kobject_put(parent);
234 kobj->parent = NULL;
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800235
236 /* be noisy on error issues */
237 if (error == -EEXIST)
Dan Williams282029c2012-04-06 13:41:15 -0700238 WARN(1, "%s failed for %s with "
239 "-EEXIST, don't try to register things with "
240 "the same name in the same directory.\n",
241 __func__, kobject_name(kobj));
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800242 else
Dan Williams282029c2012-04-06 13:41:15 -0700243 WARN(1, "%s failed for %s (error: %d parent: %s)\n",
244 __func__, kobject_name(kobj), error,
245 parent ? kobject_name(parent) : "'none'");
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100246 } else
247 kobj->state_in_sysfs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 return error;
250}
251
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700252/**
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500253 * kobject_set_name_vargs - Set the name of an kobject
254 * @kobj: struct kobject to set the name of
Greg Kroah-Hartman8c4606b2007-12-04 14:45:47 +0800255 * @fmt: format string used to build the name
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500256 * @vargs: vargs to format the string.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100258int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500259 va_list vargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Kay Sievers9f2556512008-05-06 22:24:04 +0200261 const char *old_name = kobj->name;
262 char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Kay Sievers8a577ff2009-04-18 15:05:45 -0700264 if (kobj->name && !fmt)
265 return 0;
266
Kay Sieversa4ca6612008-04-30 02:06:29 +0200267 kobj->name = kvasprintf(GFP_KERNEL, fmt, vargs);
Maurizio Lombardi020d30f2013-11-08 15:28:25 +0100268 if (!kobj->name) {
269 kobj->name = old_name;
Kay Sieversa4ca6612008-04-30 02:06:29 +0200270 return -ENOMEM;
Maurizio Lombardi020d30f2013-11-08 15:28:25 +0100271 }
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500272
Kay Sievers9f2556512008-05-06 22:24:04 +0200273 /* ewww... some of these buggers have '/' in the name ... */
Ingo Oeser25fdeb32008-07-23 01:25:01 +0200274 while ((s = strchr(kobj->name, '/')))
Kay Sievers9f2556512008-05-06 22:24:04 +0200275 s[0] = '!';
276
277 kfree(old_name);
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500278 return 0;
279}
280
281/**
282 * kobject_set_name - Set the name of a kobject
283 * @kobj: struct kobject to set the name of
284 * @fmt: format string used to build the name
285 *
286 * This sets the name of the kobject. If you have already added the
287 * kobject to the system, you must call kobject_rename() in order to
288 * change the name of the kobject.
289 */
290int kobject_set_name(struct kobject *kobj, const char *fmt, ...)
291{
Kay Sieversa4ca6612008-04-30 02:06:29 +0200292 va_list vargs;
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500293 int retval;
294
Kay Sieversa4ca6612008-04-30 02:06:29 +0200295 va_start(vargs, fmt);
296 retval = kobject_set_name_vargs(kobj, fmt, vargs);
297 va_end(vargs);
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500298
299 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301EXPORT_SYMBOL(kobject_set_name);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/**
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700304 * kobject_init - initialize a kobject structure
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800305 * @kobj: pointer to the kobject to initialize
306 * @ktype: pointer to the ktype for this kobject.
307 *
308 * This function will properly initialize a kobject such that it can then
309 * be passed to the kobject_add() call.
310 *
311 * After this function is called, the kobject MUST be cleaned up by a call
312 * to kobject_put(), not by a call to kfree directly to ensure that all of
313 * the memory is cleaned up properly.
314 */
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700315void kobject_init(struct kobject *kobj, struct kobj_type *ktype)
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800316{
317 char *err_str;
318
319 if (!kobj) {
320 err_str = "invalid kobject pointer!";
321 goto error;
322 }
323 if (!ktype) {
324 err_str = "must have a ktype to be initialized properly!\n";
325 goto error;
326 }
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100327 if (kobj->state_initialized) {
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800328 /* do not error out as sometimes we can recover */
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100329 printk(KERN_ERR "kobject (%p): tried to init an initialized "
330 "object, something is seriously wrong.\n", kobj);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800331 dump_stack();
332 }
333
Greg Kroah-Hartmana4573c42008-02-26 09:36:38 -0800334 kobject_init_internal(kobj);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800335 kobj->ktype = ktype;
336 return;
337
338error:
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100339 printk(KERN_ERR "kobject (%p): %s\n", kobj, err_str);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800340 dump_stack();
341}
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700342EXPORT_SYMBOL(kobject_init);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800343
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800344static int kobject_add_varg(struct kobject *kobj, struct kobject *parent,
345 const char *fmt, va_list vargs)
346{
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800347 int retval;
348
Kay Sieversa4ca6612008-04-30 02:06:29 +0200349 retval = kobject_set_name_vargs(kobj, fmt, vargs);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800350 if (retval) {
351 printk(KERN_ERR "kobject: can not set name properly!\n");
352 return retval;
353 }
354 kobj->parent = parent;
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700355 return kobject_add_internal(kobj);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800356}
357
358/**
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700359 * kobject_add - the main kobject add function
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800360 * @kobj: the kobject to add
361 * @parent: pointer to the parent of the kobject.
362 * @fmt: format to name the kobject with.
363 *
364 * The kobject name is set and added to the kobject hierarchy in this
365 * function.
366 *
367 * If @parent is set, then the parent of the @kobj will be set to it.
368 * If @parent is NULL, then the parent of the @kobj will be set to the
369 * kobject associted with the kset assigned to this kobject. If no kset
370 * is assigned to the kobject, then the kobject will be located in the
371 * root of the sysfs tree.
372 *
373 * If this function returns an error, kobject_put() must be called to
374 * properly clean up the memory associated with the object.
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800375 * Under no instance should the kobject that is passed to this function
376 * be directly freed with a call to kfree(), that can leak memory.
377 *
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100378 * Note, no "add" uevent will be created with this call, the caller should set
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800379 * up all of the necessary sysfs files for the object and then call
380 * kobject_uevent() with the UEVENT_ADD parameter to ensure that
381 * userspace is properly notified of this kobject's creation.
382 */
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700383int kobject_add(struct kobject *kobj, struct kobject *parent,
384 const char *fmt, ...)
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800385{
386 va_list args;
387 int retval;
388
389 if (!kobj)
390 return -EINVAL;
391
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100392 if (!kobj->state_initialized) {
393 printk(KERN_ERR "kobject '%s' (%p): tried to add an "
394 "uninitialized object, something is seriously wrong.\n",
395 kobject_name(kobj), kobj);
396 dump_stack();
397 return -EINVAL;
398 }
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800399 va_start(args, fmt);
400 retval = kobject_add_varg(kobj, parent, fmt, args);
401 va_end(args);
402
403 return retval;
404}
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700405EXPORT_SYMBOL(kobject_add);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800406
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800407/**
Greg Kroah-Hartmanc11c41542007-12-03 21:31:08 -0800408 * kobject_init_and_add - initialize a kobject structure and add it to the kobject hierarchy
409 * @kobj: pointer to the kobject to initialize
410 * @ktype: pointer to the ktype for this kobject.
411 * @parent: pointer to the parent of this kobject.
412 * @fmt: the name of the kobject.
413 *
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700414 * This function combines the call to kobject_init() and
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700415 * kobject_add(). The same type of error handling after a call to
416 * kobject_add() and kobject lifetime rules are the same here.
Greg Kroah-Hartmanc11c41542007-12-03 21:31:08 -0800417 */
418int kobject_init_and_add(struct kobject *kobj, struct kobj_type *ktype,
419 struct kobject *parent, const char *fmt, ...)
420{
421 va_list args;
422 int retval;
423
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700424 kobject_init(kobj, ktype);
Greg Kroah-Hartmanc11c41542007-12-03 21:31:08 -0800425
426 va_start(args, fmt);
427 retval = kobject_add_varg(kobj, parent, fmt, args);
428 va_end(args);
429
430 return retval;
431}
432EXPORT_SYMBOL_GPL(kobject_init_and_add);
433
434/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800435 * kobject_rename - change the name of an object
436 * @kobj: object in question.
437 * @new_name: object's new name
Eric W. Biederman030c1d22008-05-08 14:41:00 -0700438 *
439 * It is the responsibility of the caller to provide mutual
440 * exclusion between two different calls of kobject_rename
441 * on the same kobject and to ensure that new_name is valid and
442 * won't conflict with other kobjects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800444int kobject_rename(struct kobject *kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 int error = 0;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800447 const char *devpath = NULL;
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700448 const char *dup_name = NULL, *name;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800449 char *devpath_string = NULL;
450 char *envp[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 kobj = kobject_get(kobj);
453 if (!kobj)
454 return -EINVAL;
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700455 if (!kobj->parent)
456 return -EINVAL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800457
458 devpath = kobject_get_path(kobj, GFP_KERNEL);
459 if (!devpath) {
460 error = -ENOMEM;
461 goto out;
462 }
463 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
464 if (!devpath_string) {
465 error = -ENOMEM;
466 goto out;
467 }
468 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
469 envp[0] = devpath_string;
470 envp[1] = NULL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800471
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700472 name = dup_name = kstrdup(new_name, GFP_KERNEL);
473 if (!name) {
474 error = -ENOMEM;
475 goto out;
476 }
477
Tejun Heoe34ff492013-09-11 22:29:05 -0400478 error = sysfs_rename_dir_ns(kobj, new_name, kobject_namespace(kobj));
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700479 if (error)
480 goto out;
481
482 /* Install the new kobject name */
483 dup_name = kobj->name;
484 kobj->name = name;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800485
486 /* This function is mostly/only used for network interface.
487 * Some hotplug package track interfaces by their name and
488 * therefore want to know when the name is changed by the user. */
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700489 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800490
491out:
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700492 kfree(dup_name);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800493 kfree(devpath_string);
494 kfree(devpath);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700495 kobject_put(kobj);
496
497 return error;
498}
Alex Chiang8344b562008-06-10 15:30:42 -0600499EXPORT_SYMBOL_GPL(kobject_rename);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700500
501/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800502 * kobject_move - move object to another parent
503 * @kobj: object in question.
504 * @new_parent: object's new parent (can be NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +0100505 */
Cornelia Huck8a824722006-11-20 17:07:51 +0100506int kobject_move(struct kobject *kobj, struct kobject *new_parent)
507{
508 int error;
509 struct kobject *old_parent;
510 const char *devpath = NULL;
511 char *devpath_string = NULL;
512 char *envp[2];
513
514 kobj = kobject_get(kobj);
515 if (!kobj)
516 return -EINVAL;
517 new_parent = kobject_get(new_parent);
518 if (!new_parent) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100519 if (kobj->kset)
520 new_parent = kobject_get(&kobj->kset->kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +0100521 }
Tejun Heoe34ff492013-09-11 22:29:05 -0400522
Cornelia Huck8a824722006-11-20 17:07:51 +0100523 /* old object path */
524 devpath = kobject_get_path(kobj, GFP_KERNEL);
525 if (!devpath) {
526 error = -ENOMEM;
527 goto out;
528 }
529 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
530 if (!devpath_string) {
531 error = -ENOMEM;
532 goto out;
533 }
534 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
535 envp[0] = devpath_string;
536 envp[1] = NULL;
Tejun Heoe34ff492013-09-11 22:29:05 -0400537 error = sysfs_move_dir_ns(kobj, new_parent, kobject_namespace(kobj));
Cornelia Huck8a824722006-11-20 17:07:51 +0100538 if (error)
539 goto out;
540 old_parent = kobj->parent;
541 kobj->parent = new_parent;
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300542 new_parent = NULL;
Cornelia Huck8a824722006-11-20 17:07:51 +0100543 kobject_put(old_parent);
544 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
545out:
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300546 kobject_put(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +0100547 kobject_put(kobj);
548 kfree(devpath_string);
549 kfree(devpath);
550 return error;
551}
552
553/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800554 * kobject_del - unlink kobject from hierarchy.
555 * @kobj: object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800557void kobject_del(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Tejun Heo324a56e2013-12-11 14:11:53 -0500559 struct kernfs_node *sd;
Tejun Heo26ea12d2013-09-18 17:15:36 -0400560
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800561 if (!kobj)
562 return;
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100563
Tejun Heo26ea12d2013-09-18 17:15:36 -0400564 sd = kobj->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 sysfs_remove_dir(kobj);
Tejun Heo26ea12d2013-09-18 17:15:36 -0400566 sysfs_put(sd);
567
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100568 kobj->state_in_sysfs = 0;
569 kobj_kset_leave(kobj);
570 kobject_put(kobj->parent);
571 kobj->parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
574/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800575 * kobject_get - increment refcount for object.
576 * @kobj: object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800578struct kobject *kobject_get(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 if (kobj)
581 kref_get(&kobj->kref);
582 return kobj;
583}
584
Anatol Pomozov2d864e42013-05-07 15:37:48 -0700585static struct kobject * __must_check kobject_get_unless_zero(struct kobject *kobj)
Linus Torvaldsa49b7e82013-04-13 15:15:30 -0700586{
587 if (!kref_get_unless_zero(&kobj->kref))
588 kobj = NULL;
589 return kobj;
590}
591
Greg Kroah-Hartman18041f472007-12-03 21:31:08 -0800592/*
593 * kobject_cleanup - free kobject resources.
594 * @kobj: object to cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
Greg Kroah-Hartman18041f472007-12-03 21:31:08 -0800596static void kobject_cleanup(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100598 struct kobj_type *t = get_ktype(kobj);
Kay Sieversaf5ca3f42007-12-20 02:09:39 +0100599 const char *name = kobj->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Russell Kingc817a672013-06-27 15:06:14 +0100601 pr_debug("kobject: '%s' (%p): %s, parent %p\n",
602 kobject_name(kobj), kobj, __func__, kobj->parent);
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100603
604 if (t && !t->release)
605 pr_debug("kobject: '%s' (%p): does not have a release() "
606 "function, it is broken and must be fixed.\n",
607 kobject_name(kobj), kobj);
608
609 /* send "remove" if the caller did not do it but sent "add" */
610 if (kobj->state_add_uevent_sent && !kobj->state_remove_uevent_sent) {
611 pr_debug("kobject: '%s' (%p): auto cleanup 'remove' event\n",
612 kobject_name(kobj), kobj);
613 kobject_uevent(kobj, KOBJ_REMOVE);
614 }
615
616 /* remove from sysfs if the caller did not do it */
617 if (kobj->state_in_sysfs) {
618 pr_debug("kobject: '%s' (%p): auto cleanup kobject_del\n",
619 kobject_name(kobj), kobj);
620 kobject_del(kobj);
621 }
622
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700623 if (t && t->release) {
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100624 pr_debug("kobject: '%s' (%p): calling ktype release\n",
625 kobject_name(kobj), kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 t->release(kobj);
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100627 }
628
629 /* free name if we allocated it */
Kay Sieversaf5ca3f42007-12-20 02:09:39 +0100630 if (name) {
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100631 pr_debug("kobject: '%s': free name\n", name);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700632 kfree(name);
633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Russell Kingc817a672013-06-27 15:06:14 +0100636#ifdef CONFIG_DEBUG_KOBJECT_RELEASE
637static void kobject_delayed_cleanup(struct work_struct *work)
638{
639 kobject_cleanup(container_of(to_delayed_work(work),
640 struct kobject, release));
641}
642#endif
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644static void kobject_release(struct kref *kref)
645{
Russell Kingc817a672013-06-27 15:06:14 +0100646 struct kobject *kobj = container_of(kref, struct kobject, kref);
647#ifdef CONFIG_DEBUG_KOBJECT_RELEASE
Bjorn Helgaas89c86a62013-12-05 17:37:51 -0700648 unsigned long delay = HZ + HZ * (get_random_int() & 0x3);
649 pr_info("kobject: '%s' (%p): %s, parent %p (delayed %ld)\n",
650 kobject_name(kobj), kobj, __func__, kobj->parent, delay);
Russell Kingc817a672013-06-27 15:06:14 +0100651 INIT_DELAYED_WORK(&kobj->release, kobject_delayed_cleanup);
Bjorn Helgaas89c86a62013-12-05 17:37:51 -0700652
653 schedule_delayed_work(&kobj->release, delay);
Russell Kingc817a672013-06-27 15:06:14 +0100654#else
655 kobject_cleanup(kobj);
656#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800660 * kobject_put - decrement refcount for object.
661 * @kobj: object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 *
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800663 * Decrement the refcount, and if 0, call kobject_cleanup().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800665void kobject_put(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Greg Kroah-Hartmanc1ebdae2008-02-26 09:36:38 -0800667 if (kobj) {
Arjan van de Vend955c782008-07-25 01:45:55 -0700668 if (!kobj->state_initialized)
669 WARN(1, KERN_WARNING "kobject: '%s' (%p): is not "
Greg Kroah-Hartmanc1ebdae2008-02-26 09:36:38 -0800670 "initialized, yet kobject_put() is being "
671 "called.\n", kobject_name(kobj), kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 kref_put(&kobj->kref, kobject_release);
Greg Kroah-Hartmanc1ebdae2008-02-26 09:36:38 -0800673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800676static void dynamic_kobj_release(struct kobject *kobj)
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500677{
Harvey Harrison810304d2008-04-30 00:55:08 -0700678 pr_debug("kobject: (%p): %s\n", kobj, __func__);
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500679 kfree(kobj);
680}
681
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800682static struct kobj_type dynamic_kobj_ktype = {
Kay Sievers386f2752007-11-02 13:47:53 +0100683 .release = dynamic_kobj_release,
684 .sysfs_ops = &kobj_sysfs_ops,
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500685};
686
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800687/**
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800688 * kobject_create - create a struct kobject dynamically
689 *
690 * This function creates a kobject structure dynamically and sets it up
691 * to be a "dynamic" kobject with a default release function set up.
692 *
693 * If the kobject was not able to be created, NULL will be returned.
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800694 * The kobject structure returned from here must be cleaned up with a
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700695 * call to kobject_put() and not kfree(), as kobject_init() has
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800696 * already been called on this structure.
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800697 */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800698struct kobject *kobject_create(void)
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800699{
700 struct kobject *kobj;
701
702 kobj = kzalloc(sizeof(*kobj), GFP_KERNEL);
703 if (!kobj)
704 return NULL;
705
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700706 kobject_init(kobj, &dynamic_kobj_ktype);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800707 return kobj;
708}
709
710/**
711 * kobject_create_and_add - create a struct kobject dynamically and register it with sysfs
712 *
Zhi Yong Wu9ff1f832012-05-07 10:48:25 +0800713 * @name: the name for the kobject
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800714 * @parent: the parent kobject of this kobject, if any.
715 *
Dave Youngf70701a2008-01-28 16:58:00 +0800716 * This function creates a kobject structure dynamically and registers it
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800717 * with sysfs. When you are finished with this structure, call
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -0800718 * kobject_put() and the structure will be dynamically freed when
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800719 * it is no longer being used.
720 *
721 * If the kobject was not able to be created, NULL will be returned.
722 */
723struct kobject *kobject_create_and_add(const char *name, struct kobject *parent)
724{
725 struct kobject *kobj;
726 int retval;
727
728 kobj = kobject_create();
729 if (!kobj)
730 return NULL;
731
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700732 retval = kobject_add(kobj, parent, "%s", name);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800733 if (retval) {
734 printk(KERN_WARNING "%s: kobject_add error: %d\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700735 __func__, retval);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800736 kobject_put(kobj);
737 kobj = NULL;
738 }
739 return kobj;
740}
741EXPORT_SYMBOL_GPL(kobject_create_and_add);
742
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500743/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800744 * kset_init - initialize a kset for use
745 * @k: kset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800747void kset_init(struct kset *k)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Greg Kroah-Hartmane1543dd2007-12-17 23:05:35 -0700749 kobject_init_internal(&k->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 INIT_LIST_HEAD(&k->list);
751 spin_lock_init(&k->list_lock);
752}
753
Kay Sievers23b52122007-11-02 13:47:53 +0100754/* default kobject attribute operations */
755static ssize_t kobj_attr_show(struct kobject *kobj, struct attribute *attr,
756 char *buf)
757{
758 struct kobj_attribute *kattr;
759 ssize_t ret = -EIO;
760
761 kattr = container_of(attr, struct kobj_attribute, attr);
762 if (kattr->show)
763 ret = kattr->show(kobj, kattr, buf);
764 return ret;
765}
766
767static ssize_t kobj_attr_store(struct kobject *kobj, struct attribute *attr,
768 const char *buf, size_t count)
769{
770 struct kobj_attribute *kattr;
771 ssize_t ret = -EIO;
772
773 kattr = container_of(attr, struct kobj_attribute, attr);
774 if (kattr->store)
775 ret = kattr->store(kobj, kattr, buf, count);
776 return ret;
777}
778
Emese Revfy52cf25d2010-01-19 02:58:23 +0100779const struct sysfs_ops kobj_sysfs_ops = {
Kay Sievers23b52122007-11-02 13:47:53 +0100780 .show = kobj_attr_show,
781 .store = kobj_attr_store,
782};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784/**
Jeff Mahoneyeee03162013-09-11 13:00:30 -0400785 * kobj_completion_init - initialize a kobj_completion object.
786 * @kc: kobj_completion
787 * @ktype: type of kobject to initialize
788 *
789 * kobj_completion structures can be embedded within structures with different
790 * lifetime rules. During the release of the enclosing object, we can
791 * wait on the release of the kobject so that we don't free it while it's
792 * still busy.
793 */
794void kobj_completion_init(struct kobj_completion *kc, struct kobj_type *ktype)
795{
796 init_completion(&kc->kc_unregister);
797 kobject_init(&kc->kc_kobj, ktype);
798}
799EXPORT_SYMBOL_GPL(kobj_completion_init);
800
801/**
802 * kobj_completion_release - release a kobj_completion object
803 * @kobj: kobject embedded in kobj_completion
804 *
805 * Used with kobject_release to notify waiters that the kobject has been
806 * released.
807 */
808void kobj_completion_release(struct kobject *kobj)
809{
810 struct kobj_completion *kc = kobj_to_kobj_completion(kobj);
811 complete(&kc->kc_unregister);
812}
813EXPORT_SYMBOL_GPL(kobj_completion_release);
814
815/**
816 * kobj_completion_del_and_wait - release the kobject and wait for it
817 * @kc: kobj_completion object to release
818 *
819 * Delete the kobject from sysfs and drop the reference count. Then wait
820 * until any other outstanding references are also dropped. This routine
821 * is only necessary once other references may have been taken on the
822 * kobject. Typically this happens when the kobject has been published
823 * to sysfs via kobject_add.
824 */
825void kobj_completion_del_and_wait(struct kobj_completion *kc)
826{
827 kobject_del(&kc->kc_kobj);
828 kobject_put(&kc->kc_kobj);
829 wait_for_completion(&kc->kc_unregister);
830}
831EXPORT_SYMBOL_GPL(kobj_completion_del_and_wait);
832
833/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800834 * kset_register - initialize and add a kset.
835 * @k: kset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800837int kset_register(struct kset *k)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Kay Sievers80f03e32007-05-26 11:21:36 +0200839 int err;
840
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800841 if (!k)
842 return -EINVAL;
Kay Sievers80f03e32007-05-26 11:21:36 +0200843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 kset_init(k);
Greg Kroah-Hartman12e339a2002-04-09 12:14:34 -0700845 err = kobject_add_internal(&k->kobj);
Kay Sievers80f03e32007-05-26 11:21:36 +0200846 if (err)
847 return err;
848 kobject_uevent(&k->kobj, KOBJ_ADD);
849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800853 * kset_unregister - remove a kset.
854 * @k: kset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800856void kset_unregister(struct kset *k)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800858 if (!k)
859 return;
Bjorn Helgaas35a5fe62013-12-05 17:38:00 -0700860 kobject_del(&k->kobj);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -0800861 kobject_put(&k->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864/**
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800865 * kset_find_obj - search for object in kset.
866 * @kset: kset we're looking in.
867 * @name: object's name.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 *
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800869 * Lock kset via @kset->subsys, and iterate over @kset->list,
870 * looking for a matching kobject. If matching object is found
871 * take a reference and return the object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 */
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800873struct kobject *kset_find_obj(struct kset *kset, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Robert P. J. Dayc6a2a3d2008-03-27 01:13:34 -0400875 struct kobject *k;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800876 struct kobject *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 spin_lock(&kset->list_lock);
Robin Holtc25d1df2010-09-29 14:00:54 -0500879
Robert P. J. Dayc6a2a3d2008-03-27 01:13:34 -0400880 list_for_each_entry(k, &kset->list, entry) {
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800881 if (kobject_name(k) && !strcmp(kobject_name(k), name)) {
Linus Torvaldsa49b7e82013-04-13 15:15:30 -0700882 ret = kobject_get_unless_zero(k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 break;
884 }
885 }
Robin Holtc25d1df2010-09-29 14:00:54 -0500886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 spin_unlock(&kset->list_lock);
888 return ret;
889}
890
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700891static void kset_release(struct kobject *kobj)
892{
893 struct kset *kset = container_of(kobj, struct kset, kobj);
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800894 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700895 kobject_name(kobj), kobj, __func__);
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700896 kfree(kset);
897}
898
Kay Sievers386f2752007-11-02 13:47:53 +0100899static struct kobj_type kset_ktype = {
900 .sysfs_ops = &kobj_sysfs_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700901 .release = kset_release,
902};
903
904/**
905 * kset_create - create a struct kset dynamically
906 *
907 * @name: the name for the kset
908 * @uevent_ops: a struct kset_uevent_ops for the kset
909 * @parent_kobj: the parent kobject of this kset, if any.
910 *
911 * This function creates a kset structure dynamically. This structure can
912 * then be registered with the system and show up in sysfs with a call to
913 * kset_register(). When you are finished with this structure, if
914 * kset_register() has been called, call kset_unregister() and the
915 * structure will be dynamically freed when it is no longer being used.
916 *
917 * If the kset was not able to be created, NULL will be returned.
918 */
919static struct kset *kset_create(const char *name,
Emese Revfy9cd43612009-12-31 14:52:51 +0100920 const struct kset_uevent_ops *uevent_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700921 struct kobject *parent_kobj)
922{
923 struct kset *kset;
Dave Youngd9cd8f32009-05-11 14:17:45 +0800924 int retval;
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700925
926 kset = kzalloc(sizeof(*kset), GFP_KERNEL);
927 if (!kset)
928 return NULL;
Kees Cookb7165eb2013-06-06 13:52:19 -0700929 retval = kobject_set_name(&kset->kobj, "%s", name);
Dave Youngd9cd8f32009-05-11 14:17:45 +0800930 if (retval) {
931 kfree(kset);
932 return NULL;
933 }
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700934 kset->uevent_ops = uevent_ops;
935 kset->kobj.parent = parent_kobj;
936
937 /*
Kay Sievers386f2752007-11-02 13:47:53 +0100938 * The kobject of this kset will have a type of kset_ktype and belong to
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700939 * no kset itself. That way we can properly free it when it is
940 * finished being used.
941 */
Kay Sievers386f2752007-11-02 13:47:53 +0100942 kset->kobj.ktype = &kset_ktype;
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700943 kset->kobj.kset = NULL;
944
945 return kset;
946}
947
948/**
949 * kset_create_and_add - create a struct kset dynamically and add it to sysfs
950 *
951 * @name: the name for the kset
952 * @uevent_ops: a struct kset_uevent_ops for the kset
953 * @parent_kobj: the parent kobject of this kset, if any.
954 *
955 * This function creates a kset structure dynamically and registers it
956 * with sysfs. When you are finished with this structure, call
957 * kset_unregister() and the structure will be dynamically freed when it
958 * is no longer being used.
959 *
960 * If the kset was not able to be created, NULL will be returned.
961 */
962struct kset *kset_create_and_add(const char *name,
Emese Revfy9cd43612009-12-31 14:52:51 +0100963 const struct kset_uevent_ops *uevent_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700964 struct kobject *parent_kobj)
965{
966 struct kset *kset;
967 int error;
968
969 kset = kset_create(name, uevent_ops, parent_kobj);
970 if (!kset)
971 return NULL;
972 error = kset_register(kset);
973 if (error) {
974 kfree(kset);
975 return NULL;
976 }
977 return kset;
978}
979EXPORT_SYMBOL_GPL(kset_create_and_add);
980
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700981
982static DEFINE_SPINLOCK(kobj_ns_type_lock);
983static const struct kobj_ns_type_operations *kobj_ns_ops_tbl[KOBJ_NS_TYPES];
984
985int kobj_ns_type_register(const struct kobj_ns_type_operations *ops)
986{
987 enum kobj_ns_type type = ops->type;
988 int error;
989
990 spin_lock(&kobj_ns_type_lock);
991
992 error = -EINVAL;
993 if (type >= KOBJ_NS_TYPES)
994 goto out;
995
996 error = -EINVAL;
997 if (type <= KOBJ_NS_TYPE_NONE)
998 goto out;
999
1000 error = -EBUSY;
1001 if (kobj_ns_ops_tbl[type])
1002 goto out;
1003
1004 error = 0;
1005 kobj_ns_ops_tbl[type] = ops;
1006
1007out:
1008 spin_unlock(&kobj_ns_type_lock);
1009 return error;
1010}
1011
1012int kobj_ns_type_registered(enum kobj_ns_type type)
1013{
1014 int registered = 0;
1015
1016 spin_lock(&kobj_ns_type_lock);
1017 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES))
1018 registered = kobj_ns_ops_tbl[type] != NULL;
1019 spin_unlock(&kobj_ns_type_lock);
1020
1021 return registered;
1022}
1023
1024const struct kobj_ns_type_operations *kobj_child_ns_ops(struct kobject *parent)
1025{
1026 const struct kobj_ns_type_operations *ops = NULL;
1027
1028 if (parent && parent->ktype->child_ns_type)
1029 ops = parent->ktype->child_ns_type(parent);
1030
1031 return ops;
1032}
1033
1034const struct kobj_ns_type_operations *kobj_ns_ops(struct kobject *kobj)
1035{
1036 return kobj_child_ns_ops(kobj->parent);
1037}
1038
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001039bool kobj_ns_current_may_mount(enum kobj_ns_type type)
1040{
Eric W. Biederman730d7d32013-09-23 14:41:17 -07001041 bool may_mount = true;
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001042
1043 spin_lock(&kobj_ns_type_lock);
1044 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1045 kobj_ns_ops_tbl[type])
1046 may_mount = kobj_ns_ops_tbl[type]->current_may_mount();
1047 spin_unlock(&kobj_ns_type_lock);
1048
1049 return may_mount;
1050}
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001051
Al Viroa685e082011-06-08 21:13:01 -04001052void *kobj_ns_grab_current(enum kobj_ns_type type)
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001053{
Al Viroa685e082011-06-08 21:13:01 -04001054 void *ns = NULL;
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001055
1056 spin_lock(&kobj_ns_type_lock);
1057 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1058 kobj_ns_ops_tbl[type])
Al Viroa685e082011-06-08 21:13:01 -04001059 ns = kobj_ns_ops_tbl[type]->grab_current_ns();
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001060 spin_unlock(&kobj_ns_type_lock);
1061
1062 return ns;
1063}
1064
1065const void *kobj_ns_netlink(enum kobj_ns_type type, struct sock *sk)
1066{
1067 const void *ns = NULL;
1068
1069 spin_lock(&kobj_ns_type_lock);
1070 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1071 kobj_ns_ops_tbl[type])
1072 ns = kobj_ns_ops_tbl[type]->netlink_ns(sk);
1073 spin_unlock(&kobj_ns_type_lock);
1074
1075 return ns;
1076}
1077
1078const void *kobj_ns_initial(enum kobj_ns_type type)
1079{
1080 const void *ns = NULL;
1081
1082 spin_lock(&kobj_ns_type_lock);
1083 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1084 kobj_ns_ops_tbl[type])
1085 ns = kobj_ns_ops_tbl[type]->initial_ns();
1086 spin_unlock(&kobj_ns_type_lock);
1087
1088 return ns;
1089}
1090
Al Viroa685e082011-06-08 21:13:01 -04001091void kobj_ns_drop(enum kobj_ns_type type, void *ns)
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001092{
Al Viroa685e082011-06-08 21:13:01 -04001093 spin_lock(&kobj_ns_type_lock);
1094 if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) &&
1095 kobj_ns_ops_tbl[type] && kobj_ns_ops_tbl[type]->drop_ns)
1096 kobj_ns_ops_tbl[type]->drop_ns(ns);
1097 spin_unlock(&kobj_ns_type_lock);
Eric W. Biedermanbc451f22010-03-30 11:31:25 -07001098}
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100EXPORT_SYMBOL(kobject_get);
1101EXPORT_SYMBOL(kobject_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102EXPORT_SYMBOL(kobject_del);
1103
1104EXPORT_SYMBOL(kset_register);
1105EXPORT_SYMBOL(kset_unregister);