blob: c321f1910cc2bd944161046a58d7d68ef3b76c65 [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>
16#include <linux/string.h>
17#include <linux/module.h>
18#include <linux/stat.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/**
22 * populate_dir - populate directory with attributes.
23 * @kobj: object we're working on.
24 *
25 * Most subsystems have a set of default attributes that
26 * are associated with an object that registers with them.
27 * This is a helper called during object registration that
28 * loops through the default attributes of the subsystem
29 * and creates attributes files for them in sysfs.
30 *
31 */
32
33static int populate_dir(struct kobject * kobj)
34{
35 struct kobj_type * t = get_ktype(kobj);
36 struct attribute * attr;
37 int error = 0;
38 int i;
39
40 if (t && t->default_attrs) {
41 for (i = 0; (attr = t->default_attrs[i]) != NULL; i++) {
42 if ((error = sysfs_create_file(kobj,attr)))
43 break;
44 }
45 }
46 return error;
47}
48
Eric W. Biederman90bc6132007-07-31 19:15:08 +090049static int create_dir(struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 int error = 0;
52 if (kobject_name(kobj)) {
Eric W. Biederman90bc6132007-07-31 19:15:08 +090053 error = sysfs_create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (!error) {
55 if ((error = populate_dir(kobj)))
56 sysfs_remove_dir(kobj);
57 }
58 }
59 return error;
60}
61
62static inline struct kobject * to_kobj(struct list_head * entry)
63{
64 return container_of(entry,struct kobject,entry);
65}
66
67static int get_kobj_path_length(struct kobject *kobj)
68{
69 int length = 1;
70 struct kobject * parent = kobj;
71
72 /* walk up the ancestors until we hit the one pointing to the
73 * root.
74 * Add 1 to strlen for leading '/' of each level.
75 */
76 do {
Chuck Ebbertb365b3d2006-01-12 20:02:00 -050077 if (kobject_name(parent) == NULL)
78 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 length += strlen(kobject_name(parent)) + 1;
80 parent = parent->parent;
81 } while (parent);
82 return length;
83}
84
85static void fill_kobj_path(struct kobject *kobj, char *path, int length)
86{
87 struct kobject * parent;
88
89 --length;
90 for (parent = kobj; parent; parent = parent->parent) {
91 int cur = strlen(kobject_name(parent));
92 /* back up enough to print this name with '/' */
93 length -= cur;
94 strncpy (path + length, kobject_name(parent), cur);
95 *(path + --length) = '/';
96 }
97
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -080098 pr_debug("kobject: '%s' (%p): %s: path = '%s'\n", kobject_name(kobj),
99 kobj, __FUNCTION__,path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800103 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
105 * @kobj: kobject in question, with which to build the path
106 * @gfp_mask: the allocation type used to allocate the path
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800107 *
108 * The result must be freed by the caller with kfree().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 */
Al Virofd4f2df2005-10-21 03:18:50 -0400110char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 char *path;
113 int len;
114
115 len = get_kobj_path_length(kobj);
Chuck Ebbertb365b3d2006-01-12 20:02:00 -0500116 if (len == 0)
117 return NULL;
Burman Yan4668edc2006-12-06 20:38:51 -0800118 path = kzalloc(len, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (!path)
120 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 fill_kobj_path(kobj, path, len);
122
123 return path;
124}
Dmitry Torokhov80fc9f52006-10-11 01:43:58 -0400125EXPORT_SYMBOL_GPL(kobject_get_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Greg Kroah-Hartmane1543dd2007-12-17 23:05:35 -0700127static void kobject_init_internal(struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800129 if (!kobj)
130 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 kref_init(&kobj->kref);
132 INIT_LIST_HEAD(&kobj->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135
136/**
137 * unlink - remove kobject from kset list.
138 * @kobj: kobject.
139 *
140 * Remove the kobject from the kset list and decrement
141 * its parent's refcount.
142 * This is separated out, so we can use it in both
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700143 * kobject_del() and kobject_add_internal() on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
145
146static void unlink(struct kobject * kobj)
147{
Alan Stern09f82ea2007-11-19 10:53:40 -0500148 struct kobject *parent = kobj->parent;
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (kobj->kset) {
151 spin_lock(&kobj->kset->list_lock);
152 list_del_init(&kobj->entry);
153 spin_unlock(&kobj->kset->list_lock);
154 }
Alan Stern09f82ea2007-11-19 10:53:40 -0500155 kobj->parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 kobject_put(kobj);
Alan Stern09f82ea2007-11-19 10:53:40 -0500157 kobject_put(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700160static int kobject_add_internal(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 int error = 0;
163 struct kobject * parent;
164
165 if (!(kobj = kobject_get(kobj)))
166 return -ENOENT;
167 if (!kobj->k_name)
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700168 kobject_set_name(kobj, "NO_NAME");
Martin Stoilov13507702007-02-05 16:15:23 -0800169 if (!*kobj->k_name) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800170 pr_debug("kobject (%p) attempted to be registered with no "
171 "name!\n", kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800172 WARN_ON(1);
Cornelia Huck88db4722007-04-10 14:35:27 +0200173 kobject_put(kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800174 return -EINVAL;
175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 parent = kobject_get(kobj->parent);
177
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800178 pr_debug("kobject: '%s' (%p): %s: parent: '%s', set: '%s'\n",
179 kobject_name(kobj), kobj, __FUNCTION__,
180 parent ? kobject_name(parent) : "<NULL>",
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700181 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 if (kobj->kset) {
Greg Kroah-Hartmancfb36ff2007-11-28 10:46:22 -0800184 kobj->kset = kset_get(kobj->kset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700186 if (!parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 parent = kobject_get(&kobj->kset->kobj);
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700188 /*
189 * If the kset is our parent, get a second
190 * reference, we drop both the kset and the
191 * parent ref on cleanup
192 */
193 kobject_get(parent);
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Greg Kroah-Hartmancfb36ff2007-11-28 10:46:22 -0800196 spin_lock(&kobj->kset->list_lock);
197 list_add_tail(&kobj->entry, &kobj->kset->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 spin_unlock(&kobj->kset->list_lock);
Dmitriy Monakhov460f7e92007-03-10 14:00:10 +0300199 kobj->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900202 error = create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (error) {
204 /* unlink does the kobject_put() for us */
205 unlink(kobj);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800206
207 /* be noisy on error issues */
208 if (error == -EEXIST)
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700209 printk(KERN_ERR "%s failed for %s with "
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700210 "-EEXIST, don't try to register things with "
211 "the same name in the same directory.\n",
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700212 __FUNCTION__, kobject_name(kobj));
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800213 else
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700214 printk(KERN_ERR "%s failed for %s (%d)\n",
215 __FUNCTION__, kobject_name(kobj), error);
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700216 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
219 return error;
220}
221
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700222/**
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500223 * kobject_set_name_vargs - Set the name of an kobject
224 * @kobj: struct kobject to set the name of
Greg Kroah-Hartman8c4606b2007-12-04 14:45:47 +0800225 * @fmt: format string used to build the name
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500226 * @vargs: vargs to format the string.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 */
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500228static int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
229 va_list vargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500231 va_list aq;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700232 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500234 va_copy(aq, vargs);
235 name = kvasprintf(GFP_KERNEL, fmt, vargs);
236 va_end(aq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500238 if (!name)
239 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /* Free the old name, if necessary. */
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700242 kfree(kobj->k_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 /* Now, set the new name */
245 kobj->k_name = name;
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500246
247 return 0;
248}
249
250/**
251 * kobject_set_name - Set the name of a kobject
252 * @kobj: struct kobject to set the name of
253 * @fmt: format string used to build the name
254 *
255 * This sets the name of the kobject. If you have already added the
256 * kobject to the system, you must call kobject_rename() in order to
257 * change the name of the kobject.
258 */
259int kobject_set_name(struct kobject *kobj, const char *fmt, ...)
260{
261 va_list args;
262 int retval;
263
264 va_start(args, fmt);
265 retval = kobject_set_name_vargs(kobj, fmt, args);
266 va_end(args);
267
268 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270EXPORT_SYMBOL(kobject_set_name);
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272/**
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700273 * kobject_init - initialize a kobject structure
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800274 * @kobj: pointer to the kobject to initialize
275 * @ktype: pointer to the ktype for this kobject.
276 *
277 * This function will properly initialize a kobject such that it can then
278 * be passed to the kobject_add() call.
279 *
280 * After this function is called, the kobject MUST be cleaned up by a call
281 * to kobject_put(), not by a call to kfree directly to ensure that all of
282 * the memory is cleaned up properly.
283 */
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700284void kobject_init(struct kobject *kobj, struct kobj_type *ktype)
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800285{
286 char *err_str;
287
288 if (!kobj) {
289 err_str = "invalid kobject pointer!";
290 goto error;
291 }
292 if (!ktype) {
293 err_str = "must have a ktype to be initialized properly!\n";
294 goto error;
295 }
296 if (atomic_read(&kobj->kref.refcount)) {
297 /* do not error out as sometimes we can recover */
298 printk(KERN_ERR "kobject: reference count is already set, "
299 "something is seriously wrong.\n");
300 dump_stack();
301 }
302
303 kref_init(&kobj->kref);
304 INIT_LIST_HEAD(&kobj->entry);
305 kobj->ktype = ktype;
306 return;
307
308error:
309 printk(KERN_ERR "kobject: %s\n", err_str);
310 dump_stack();
311}
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700312EXPORT_SYMBOL(kobject_init);
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800313
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800314static int kobject_add_varg(struct kobject *kobj, struct kobject *parent,
315 const char *fmt, va_list vargs)
316{
317 va_list aq;
318 int retval;
319
320 va_copy(aq, vargs);
321 retval = kobject_set_name_vargs(kobj, fmt, aq);
322 va_end(aq);
323 if (retval) {
324 printk(KERN_ERR "kobject: can not set name properly!\n");
325 return retval;
326 }
327 kobj->parent = parent;
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700328 return kobject_add_internal(kobj);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800329}
330
331/**
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700332 * kobject_add - the main kobject add function
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800333 * @kobj: the kobject to add
334 * @parent: pointer to the parent of the kobject.
335 * @fmt: format to name the kobject with.
336 *
337 * The kobject name is set and added to the kobject hierarchy in this
338 * function.
339 *
340 * If @parent is set, then the parent of the @kobj will be set to it.
341 * If @parent is NULL, then the parent of the @kobj will be set to the
342 * kobject associted with the kset assigned to this kobject. If no kset
343 * is assigned to the kobject, then the kobject will be located in the
344 * root of the sysfs tree.
345 *
346 * If this function returns an error, kobject_put() must be called to
347 * properly clean up the memory associated with the object.
348 *
349 * If the function is successful, the only way to properly clean up the
350 * memory is with a call to kobject_del(), in which case, a call to
351 * kobject_put() is not necessary (kobject_del() does the final
352 * kobject_put() to call the release function in the ktype's release
353 * pointer.)
354 *
355 * Under no instance should the kobject that is passed to this function
356 * be directly freed with a call to kfree(), that can leak memory.
357 *
358 * Note, no uevent will be created with this call, the caller should set
359 * up all of the necessary sysfs files for the object and then call
360 * kobject_uevent() with the UEVENT_ADD parameter to ensure that
361 * userspace is properly notified of this kobject's creation.
362 */
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700363int kobject_add(struct kobject *kobj, struct kobject *parent,
364 const char *fmt, ...)
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800365{
366 va_list args;
367 int retval;
368
369 if (!kobj)
370 return -EINVAL;
371
372 va_start(args, fmt);
373 retval = kobject_add_varg(kobj, parent, fmt, args);
374 va_end(args);
375
376 return retval;
377}
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700378EXPORT_SYMBOL(kobject_add);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800379
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800380/**
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800381 * kobject_init_and_add - initialize a kobject structure and add it to the kobject hierarchy
382 * @kobj: pointer to the kobject to initialize
383 * @ktype: pointer to the ktype for this kobject.
384 * @parent: pointer to the parent of this kobject.
385 * @fmt: the name of the kobject.
386 *
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700387 * This function combines the call to kobject_init() and
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700388 * kobject_add(). The same type of error handling after a call to
389 * kobject_add() and kobject lifetime rules are the same here.
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800390 */
391int kobject_init_and_add(struct kobject *kobj, struct kobj_type *ktype,
392 struct kobject *parent, const char *fmt, ...)
393{
394 va_list args;
395 int retval;
396
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700397 kobject_init(kobj, ktype);
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800398
399 va_start(args, fmt);
400 retval = kobject_add_varg(kobj, parent, fmt, args);
401 va_end(args);
402
403 return retval;
404}
405EXPORT_SYMBOL_GPL(kobject_init_and_add);
406
407/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * kobject_rename - change the name of an object
409 * @kobj: object in question.
410 * @new_name: object's new name
411 */
412
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -0500413int kobject_rename(struct kobject * kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 int error = 0;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800416 const char *devpath = NULL;
417 char *devpath_string = NULL;
418 char *envp[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 kobj = kobject_get(kobj);
421 if (!kobj)
422 return -EINVAL;
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700423 if (!kobj->parent)
424 return -EINVAL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800425
Greg Kroah-Hartman34358c22007-10-24 16:52:31 -0700426 /* see if this name is already in use */
427 if (kobj->kset) {
428 struct kobject *temp_kobj;
429 temp_kobj = kset_find_obj(kobj->kset, new_name);
430 if (temp_kobj) {
Johannes Berg71409a42007-11-05 13:59:11 +0100431 printk(KERN_WARNING "kobject '%s' cannot be renamed "
432 "to '%s' as '%s' is already in existence.\n",
Greg Kroah-Hartman34358c22007-10-24 16:52:31 -0700433 kobject_name(kobj), new_name, new_name);
434 kobject_put(temp_kobj);
435 return -EINVAL;
436 }
437 }
438
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800439 devpath = kobject_get_path(kobj, GFP_KERNEL);
440 if (!devpath) {
441 error = -ENOMEM;
442 goto out;
443 }
444 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
445 if (!devpath_string) {
446 error = -ENOMEM;
447 goto out;
448 }
449 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
450 envp[0] = devpath_string;
451 envp[1] = NULL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800452
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900453 error = sysfs_rename_dir(kobj, new_name);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800454
455 /* This function is mostly/only used for network interface.
456 * Some hotplug package track interfaces by their name and
457 * therefore want to know when the name is changed by the user. */
458 if (!error)
459 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
460
461out:
462 kfree(devpath_string);
463 kfree(devpath);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700464 kobject_put(kobj);
465
466 return error;
467}
468
469/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100470 * kobject_move - move object to another parent
471 * @kobj: object in question.
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100472 * @new_parent: object's new parent (can be NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +0100473 */
474
475int kobject_move(struct kobject *kobj, struct kobject *new_parent)
476{
477 int error;
478 struct kobject *old_parent;
479 const char *devpath = NULL;
480 char *devpath_string = NULL;
481 char *envp[2];
482
483 kobj = kobject_get(kobj);
484 if (!kobj)
485 return -EINVAL;
486 new_parent = kobject_get(new_parent);
487 if (!new_parent) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100488 if (kobj->kset)
489 new_parent = kobject_get(&kobj->kset->kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +0100490 }
491 /* old object path */
492 devpath = kobject_get_path(kobj, GFP_KERNEL);
493 if (!devpath) {
494 error = -ENOMEM;
495 goto out;
496 }
497 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
498 if (!devpath_string) {
499 error = -ENOMEM;
500 goto out;
501 }
502 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
503 envp[0] = devpath_string;
504 envp[1] = NULL;
505 error = sysfs_move_dir(kobj, new_parent);
506 if (error)
507 goto out;
508 old_parent = kobj->parent;
509 kobj->parent = new_parent;
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300510 new_parent = NULL;
Cornelia Huck8a824722006-11-20 17:07:51 +0100511 kobject_put(old_parent);
512 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
513out:
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300514 kobject_put(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +0100515 kobject_put(kobj);
516 kfree(devpath_string);
517 kfree(devpath);
518 return error;
519}
520
521/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * kobject_del - unlink kobject from hierarchy.
523 * @kobj: object.
524 */
525
526void kobject_del(struct kobject * kobj)
527{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800528 if (!kobj)
529 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 sysfs_remove_dir(kobj);
531 unlink(kobj);
532}
533
534/**
535 * kobject_unregister - remove object from hierarchy and decrement refcount.
536 * @kobj: object going away.
537 */
538
539void kobject_unregister(struct kobject * kobj)
540{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800541 if (!kobj)
542 return;
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800543 pr_debug("kobject: '%s' (%p): %s\n",
544 kobject_name(kobj), kobj, __FUNCTION__);
Kay Sievers312c0042005-11-16 09:00:00 +0100545 kobject_uevent(kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 kobject_del(kobj);
547 kobject_put(kobj);
548}
549
550/**
551 * kobject_get - increment refcount for object.
552 * @kobj: object.
553 */
554
555struct kobject * kobject_get(struct kobject * kobj)
556{
557 if (kobj)
558 kref_get(&kobj->kref);
559 return kobj;
560}
561
Greg Kroah-Hartman18041f42007-12-03 21:31:08 -0800562/*
563 * kobject_cleanup - free kobject resources.
564 * @kobj: object to cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
Greg Kroah-Hartman18041f42007-12-03 21:31:08 -0800566static void kobject_cleanup(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 struct kobj_type * t = get_ktype(kobj);
569 struct kset * s = kobj->kset;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700570 const char *name = kobj->k_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800572 pr_debug("kobject: '%s' (%p): %s\n",
573 kobject_name(kobj), kobj, __FUNCTION__);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700574 if (t && t->release) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 t->release(kobj);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700576 /* If we have a release function, we can guess that this was
577 * not a statically allocated kobject, so we should be safe to
578 * free the name */
579 kfree(name);
580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (s)
582 kset_put(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585static void kobject_release(struct kref *kref)
586{
587 kobject_cleanup(container_of(kref, struct kobject, kref));
588}
589
590/**
591 * kobject_put - decrement refcount for object.
592 * @kobj: object.
593 *
594 * Decrement the refcount, and if 0, call kobject_cleanup().
595 */
596void kobject_put(struct kobject * kobj)
597{
598 if (kobj)
599 kref_put(&kobj->kref, kobject_release);
600}
601
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800602static void dynamic_kobj_release(struct kobject *kobj)
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500603{
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800604 pr_debug("kobject: '%s' (%p): %s\n",
605 kobject_name(kobj), kobj, __FUNCTION__);
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500606 kfree(kobj);
607}
608
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800609static struct kobj_type dynamic_kobj_ktype = {
Kay Sievers386f2752007-11-02 13:47:53 +0100610 .release = dynamic_kobj_release,
611 .sysfs_ops = &kobj_sysfs_ops,
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500612};
613
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800614/**
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800615 * kobject_create - create a struct kobject dynamically
616 *
617 * This function creates a kobject structure dynamically and sets it up
618 * to be a "dynamic" kobject with a default release function set up.
619 *
620 * If the kobject was not able to be created, NULL will be returned.
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800621 * The kobject structure returned from here must be cleaned up with a
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700622 * call to kobject_put() and not kfree(), as kobject_init() has
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800623 * already been called on this structure.
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800624 */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800625struct kobject *kobject_create(void)
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800626{
627 struct kobject *kobj;
628
629 kobj = kzalloc(sizeof(*kobj), GFP_KERNEL);
630 if (!kobj)
631 return NULL;
632
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700633 kobject_init(kobj, &dynamic_kobj_ktype);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800634 return kobj;
635}
636
637/**
638 * kobject_create_and_add - create a struct kobject dynamically and register it with sysfs
639 *
640 * @name: the name for the kset
641 * @parent: the parent kobject of this kobject, if any.
642 *
643 * This function creates a kset structure dynamically and registers it
644 * with sysfs. When you are finished with this structure, call
645 * kobject_unregister() and the structure will be dynamically freed when
646 * it is no longer being used.
647 *
648 * If the kobject was not able to be created, NULL will be returned.
649 */
650struct kobject *kobject_create_and_add(const char *name, struct kobject *parent)
651{
652 struct kobject *kobj;
653 int retval;
654
655 kobj = kobject_create();
656 if (!kobj)
657 return NULL;
658
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700659 retval = kobject_add(kobj, parent, "%s", name);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800660 if (retval) {
661 printk(KERN_WARNING "%s: kobject_add error: %d\n",
662 __FUNCTION__, retval);
663 kobject_put(kobj);
664 kobj = NULL;
665 }
666 return kobj;
667}
668EXPORT_SYMBOL_GPL(kobject_create_and_add);
669
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500670/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 * kset_init - initialize a kset for use
672 * @k: kset
673 */
674
675void kset_init(struct kset * k)
676{
Greg Kroah-Hartmane1543dd2007-12-17 23:05:35 -0700677 kobject_init_internal(&k->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 INIT_LIST_HEAD(&k->list);
679 spin_lock_init(&k->list_lock);
680}
681
Kay Sievers23b52122007-11-02 13:47:53 +0100682/* default kobject attribute operations */
683static ssize_t kobj_attr_show(struct kobject *kobj, struct attribute *attr,
684 char *buf)
685{
686 struct kobj_attribute *kattr;
687 ssize_t ret = -EIO;
688
689 kattr = container_of(attr, struct kobj_attribute, attr);
690 if (kattr->show)
691 ret = kattr->show(kobj, kattr, buf);
692 return ret;
693}
694
695static ssize_t kobj_attr_store(struct kobject *kobj, struct attribute *attr,
696 const char *buf, size_t count)
697{
698 struct kobj_attribute *kattr;
699 ssize_t ret = -EIO;
700
701 kattr = container_of(attr, struct kobj_attribute, attr);
702 if (kattr->store)
703 ret = kattr->store(kobj, kattr, buf, count);
704 return ret;
705}
706
707struct sysfs_ops kobj_sysfs_ops = {
708 .show = kobj_attr_show,
709 .store = kobj_attr_store,
710};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 * kset_register - initialize and add a kset.
714 * @k: kset.
715 */
716
717int kset_register(struct kset * k)
718{
Kay Sievers80f03e32007-05-26 11:21:36 +0200719 int err;
720
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800721 if (!k)
722 return -EINVAL;
Kay Sievers80f03e32007-05-26 11:21:36 +0200723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 kset_init(k);
Greg Kroah-Hartman12e339a2002-04-09 12:14:34 -0700725 err = kobject_add_internal(&k->kobj);
Kay Sievers80f03e32007-05-26 11:21:36 +0200726 if (err)
727 return err;
728 kobject_uevent(&k->kobj, KOBJ_ADD);
729 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732
733/**
734 * kset_unregister - remove a kset.
735 * @k: kset.
736 */
737
738void kset_unregister(struct kset * k)
739{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800740 if (!k)
741 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 kobject_unregister(&k->kobj);
743}
744
745
746/**
747 * kset_find_obj - search for object in kset.
748 * @kset: kset we're looking in.
749 * @name: object's name.
750 *
751 * Lock kset via @kset->subsys, and iterate over @kset->list,
752 * looking for a matching kobject. If matching object is found
753 * take a reference and return the object.
754 */
755
756struct kobject * kset_find_obj(struct kset * kset, const char * name)
757{
758 struct list_head * entry;
759 struct kobject * ret = NULL;
760
761 spin_lock(&kset->list_lock);
762 list_for_each(entry,&kset->list) {
763 struct kobject * k = to_kobj(entry);
764 if (kobject_name(k) && !strcmp(kobject_name(k),name)) {
765 ret = kobject_get(k);
766 break;
767 }
768 }
769 spin_unlock(&kset->list_lock);
770 return ret;
771}
772
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700773static void kset_release(struct kobject *kobj)
774{
775 struct kset *kset = container_of(kobj, struct kset, kobj);
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800776 pr_debug("kobject: '%s' (%p): %s\n",
777 kobject_name(kobj), kobj, __FUNCTION__);
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700778 kfree(kset);
779}
780
Kay Sievers386f2752007-11-02 13:47:53 +0100781static struct kobj_type kset_ktype = {
782 .sysfs_ops = &kobj_sysfs_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700783 .release = kset_release,
784};
785
786/**
787 * kset_create - create a struct kset dynamically
788 *
789 * @name: the name for the kset
790 * @uevent_ops: a struct kset_uevent_ops for the kset
791 * @parent_kobj: the parent kobject of this kset, if any.
792 *
793 * This function creates a kset structure dynamically. This structure can
794 * then be registered with the system and show up in sysfs with a call to
795 * kset_register(). When you are finished with this structure, if
796 * kset_register() has been called, call kset_unregister() and the
797 * structure will be dynamically freed when it is no longer being used.
798 *
799 * If the kset was not able to be created, NULL will be returned.
800 */
801static struct kset *kset_create(const char *name,
802 struct kset_uevent_ops *uevent_ops,
803 struct kobject *parent_kobj)
804{
805 struct kset *kset;
806
807 kset = kzalloc(sizeof(*kset), GFP_KERNEL);
808 if (!kset)
809 return NULL;
810 kobject_set_name(&kset->kobj, name);
811 kset->uevent_ops = uevent_ops;
812 kset->kobj.parent = parent_kobj;
813
814 /*
Kay Sievers386f2752007-11-02 13:47:53 +0100815 * The kobject of this kset will have a type of kset_ktype and belong to
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700816 * no kset itself. That way we can properly free it when it is
817 * finished being used.
818 */
Kay Sievers386f2752007-11-02 13:47:53 +0100819 kset->kobj.ktype = &kset_ktype;
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700820 kset->kobj.kset = NULL;
821
822 return kset;
823}
824
825/**
826 * kset_create_and_add - create a struct kset dynamically and add it to sysfs
827 *
828 * @name: the name for the kset
829 * @uevent_ops: a struct kset_uevent_ops for the kset
830 * @parent_kobj: the parent kobject of this kset, if any.
831 *
832 * This function creates a kset structure dynamically and registers it
833 * with sysfs. When you are finished with this structure, call
834 * kset_unregister() and the structure will be dynamically freed when it
835 * is no longer being used.
836 *
837 * If the kset was not able to be created, NULL will be returned.
838 */
839struct kset *kset_create_and_add(const char *name,
840 struct kset_uevent_ops *uevent_ops,
841 struct kobject *parent_kobj)
842{
843 struct kset *kset;
844 int error;
845
846 kset = kset_create(name, uevent_ops, parent_kobj);
847 if (!kset)
848 return NULL;
849 error = kset_register(kset);
850 if (error) {
851 kfree(kset);
852 return NULL;
853 }
854 return kset;
855}
856EXPORT_SYMBOL_GPL(kset_create_and_add);
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858EXPORT_SYMBOL(kobject_unregister);
859EXPORT_SYMBOL(kobject_get);
860EXPORT_SYMBOL(kobject_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861EXPORT_SYMBOL(kobject_del);
862
863EXPORT_SYMBOL(kset_register);
864EXPORT_SYMBOL(kset_unregister);