blob: 493e991abb1b452c205d6224fb41e223c9aa63c1 [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
127/**
128 * kobject_init - initialize object.
129 * @kobj: object in question.
130 */
131void kobject_init(struct kobject * kobj)
132{
Greg Kroah-Hartman31b90252007-01-18 12:23:51 -0800133 if (!kobj)
134 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 kref_init(&kobj->kref);
136 INIT_LIST_HEAD(&kobj->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139
140/**
141 * unlink - remove kobject from kset list.
142 * @kobj: kobject.
143 *
144 * Remove the kobject from the kset list and decrement
145 * its parent's refcount.
146 * This is separated out, so we can use it in both
147 * kobject_del() and kobject_add() on error.
148 */
149
150static void unlink(struct kobject * kobj)
151{
Alan Stern09f82ea2007-11-19 10:53:40 -0500152 struct kobject *parent = kobj->parent;
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (kobj->kset) {
155 spin_lock(&kobj->kset->list_lock);
156 list_del_init(&kobj->entry);
157 spin_unlock(&kobj->kset->list_lock);
158 }
Alan Stern09f82ea2007-11-19 10:53:40 -0500159 kobj->parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 kobject_put(kobj);
Alan Stern09f82ea2007-11-19 10:53:40 -0500161 kobject_put(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164/**
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900165 * kobject_add - add an object to the hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * @kobj: object.
167 */
168
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900169int kobject_add(struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 int error = 0;
172 struct kobject * parent;
173
174 if (!(kobj = kobject_get(kobj)))
175 return -ENOENT;
176 if (!kobj->k_name)
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700177 kobject_set_name(kobj, "NO_NAME");
Martin Stoilov13507702007-02-05 16:15:23 -0800178 if (!*kobj->k_name) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800179 pr_debug("kobject (%p) attempted to be registered with no "
180 "name!\n", kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800181 WARN_ON(1);
Cornelia Huck88db4722007-04-10 14:35:27 +0200182 kobject_put(kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800183 return -EINVAL;
184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 parent = kobject_get(kobj->parent);
186
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800187 pr_debug("kobject: '%s' (%p): %s: parent: '%s', set: '%s'\n",
188 kobject_name(kobj), kobj, __FUNCTION__,
189 parent ? kobject_name(parent) : "<NULL>",
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700190 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (kobj->kset) {
Greg Kroah-Hartmancfb36ff2007-11-28 10:46:22 -0800193 kobj->kset = kset_get(kobj->kset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700195 if (!parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 parent = kobject_get(&kobj->kset->kobj);
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700197 /*
198 * If the kset is our parent, get a second
199 * reference, we drop both the kset and the
200 * parent ref on cleanup
201 */
202 kobject_get(parent);
203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Greg Kroah-Hartmancfb36ff2007-11-28 10:46:22 -0800205 spin_lock(&kobj->kset->list_lock);
206 list_add_tail(&kobj->entry, &kobj->kset->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 spin_unlock(&kobj->kset->list_lock);
Dmitriy Monakhov460f7e92007-03-10 14:00:10 +0300208 kobj->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900211 error = create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (error) {
213 /* unlink does the kobject_put() for us */
214 unlink(kobj);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800215
216 /* be noisy on error issues */
217 if (error == -EEXIST)
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700218 printk(KERN_ERR "kobject_add failed for %s with "
219 "-EEXIST, don't try to register things with "
220 "the same name in the same directory.\n",
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800221 kobject_name(kobj));
222 else
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700223 printk(KERN_ERR "kobject_add failed for %s (%d)\n",
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800224 kobject_name(kobj), error);
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700225 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
228 return error;
229}
230
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700231/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * kobject_register - initialize and add an object.
233 * @kobj: object in question.
234 */
235
236int kobject_register(struct kobject * kobj)
237{
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800238 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (kobj) {
240 kobject_init(kobj);
241 error = kobject_add(kobj);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800242 if (!error)
Kay Sievers312c0042005-11-16 09:00:00 +0100243 kobject_uevent(kobj, KOBJ_ADD);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return error;
246}
247
Linus Torvalds1da177e2005-04-16 15:20:36 -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 */
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500254static int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
255 va_list vargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500257 va_list aq;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700258 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500260 va_copy(aq, vargs);
261 name = kvasprintf(GFP_KERNEL, fmt, vargs);
262 va_end(aq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500264 if (!name)
265 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /* Free the old name, if necessary. */
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700268 kfree(kobj->k_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /* Now, set the new name */
271 kobj->k_name = name;
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500272
273 return 0;
274}
275
276/**
277 * kobject_set_name - Set the name of a kobject
278 * @kobj: struct kobject to set the name of
279 * @fmt: format string used to build the name
280 *
281 * This sets the name of the kobject. If you have already added the
282 * kobject to the system, you must call kobject_rename() in order to
283 * change the name of the kobject.
284 */
285int kobject_set_name(struct kobject *kobj, const char *fmt, ...)
286{
287 va_list args;
288 int retval;
289
290 va_start(args, fmt);
291 retval = kobject_set_name_vargs(kobj, fmt, args);
292 va_end(args);
293
294 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296EXPORT_SYMBOL(kobject_set_name);
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/**
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800299 * kobject_init_ng - initialize a kobject structure
300 * @kobj: pointer to the kobject to initialize
301 * @ktype: pointer to the ktype for this kobject.
302 *
303 * This function will properly initialize a kobject such that it can then
304 * be passed to the kobject_add() call.
305 *
306 * After this function is called, the kobject MUST be cleaned up by a call
307 * to kobject_put(), not by a call to kfree directly to ensure that all of
308 * the memory is cleaned up properly.
309 */
310void kobject_init_ng(struct kobject *kobj, struct kobj_type *ktype)
311{
312 char *err_str;
313
314 if (!kobj) {
315 err_str = "invalid kobject pointer!";
316 goto error;
317 }
318 if (!ktype) {
319 err_str = "must have a ktype to be initialized properly!\n";
320 goto error;
321 }
322 if (atomic_read(&kobj->kref.refcount)) {
323 /* do not error out as sometimes we can recover */
324 printk(KERN_ERR "kobject: reference count is already set, "
325 "something is seriously wrong.\n");
326 dump_stack();
327 }
328
329 kref_init(&kobj->kref);
330 INIT_LIST_HEAD(&kobj->entry);
331 kobj->ktype = ktype;
332 return;
333
334error:
335 printk(KERN_ERR "kobject: %s\n", err_str);
336 dump_stack();
337}
338EXPORT_SYMBOL(kobject_init_ng);
339
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800340static int kobject_add_varg(struct kobject *kobj, struct kobject *parent,
341 const char *fmt, va_list vargs)
342{
343 va_list aq;
344 int retval;
345
346 va_copy(aq, vargs);
347 retval = kobject_set_name_vargs(kobj, fmt, aq);
348 va_end(aq);
349 if (retval) {
350 printk(KERN_ERR "kobject: can not set name properly!\n");
351 return retval;
352 }
353 kobj->parent = parent;
354 return kobject_add(kobj);
355}
356
357/**
358 * kobject_add_ng - the main kobject add function
359 * @kobj: the kobject to add
360 * @parent: pointer to the parent of the kobject.
361 * @fmt: format to name the kobject with.
362 *
363 * The kobject name is set and added to the kobject hierarchy in this
364 * function.
365 *
366 * If @parent is set, then the parent of the @kobj will be set to it.
367 * If @parent is NULL, then the parent of the @kobj will be set to the
368 * kobject associted with the kset assigned to this kobject. If no kset
369 * is assigned to the kobject, then the kobject will be located in the
370 * root of the sysfs tree.
371 *
372 * If this function returns an error, kobject_put() must be called to
373 * properly clean up the memory associated with the object.
374 *
375 * If the function is successful, the only way to properly clean up the
376 * memory is with a call to kobject_del(), in which case, a call to
377 * kobject_put() is not necessary (kobject_del() does the final
378 * kobject_put() to call the release function in the ktype's release
379 * pointer.)
380 *
381 * Under no instance should the kobject that is passed to this function
382 * be directly freed with a call to kfree(), that can leak memory.
383 *
384 * Note, no uevent will be created with this call, the caller should set
385 * up all of the necessary sysfs files for the object and then call
386 * kobject_uevent() with the UEVENT_ADD parameter to ensure that
387 * userspace is properly notified of this kobject's creation.
388 */
389int kobject_add_ng(struct kobject *kobj, struct kobject *parent,
390 const char *fmt, ...)
391{
392 va_list args;
393 int retval;
394
395 if (!kobj)
396 return -EINVAL;
397
398 va_start(args, fmt);
399 retval = kobject_add_varg(kobj, parent, fmt, args);
400 va_end(args);
401
402 return retval;
403}
404EXPORT_SYMBOL(kobject_add_ng);
405
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800406/**
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800407 * kobject_init_and_add - initialize a kobject structure and add it to the kobject hierarchy
408 * @kobj: pointer to the kobject to initialize
409 * @ktype: pointer to the ktype for this kobject.
410 * @parent: pointer to the parent of this kobject.
411 * @fmt: the name of the kobject.
412 *
413 * This function combines the call to kobject_init_ng() and
414 * kobject_add_ng(). The same type of error handling after a call to
415 * kobject_add_ng() and kobject lifetime rules are the same here.
416 */
417int kobject_init_and_add(struct kobject *kobj, struct kobj_type *ktype,
418 struct kobject *parent, const char *fmt, ...)
419{
420 va_list args;
421 int retval;
422
423 kobject_init_ng(kobj, ktype);
424
425 va_start(args, fmt);
426 retval = kobject_add_varg(kobj, parent, fmt, args);
427 va_end(args);
428
429 return retval;
430}
431EXPORT_SYMBOL_GPL(kobject_init_and_add);
432
433/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 * kobject_rename - change the name of an object
435 * @kobj: object in question.
436 * @new_name: object's new name
437 */
438
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -0500439int kobject_rename(struct kobject * kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 int error = 0;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800442 const char *devpath = NULL;
443 char *devpath_string = NULL;
444 char *envp[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 kobj = kobject_get(kobj);
447 if (!kobj)
448 return -EINVAL;
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700449 if (!kobj->parent)
450 return -EINVAL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800451
Greg Kroah-Hartman34358c22007-10-24 16:52:31 -0700452 /* see if this name is already in use */
453 if (kobj->kset) {
454 struct kobject *temp_kobj;
455 temp_kobj = kset_find_obj(kobj->kset, new_name);
456 if (temp_kobj) {
Johannes Berg71409a42007-11-05 13:59:11 +0100457 printk(KERN_WARNING "kobject '%s' cannot be renamed "
458 "to '%s' as '%s' is already in existence.\n",
Greg Kroah-Hartman34358c22007-10-24 16:52:31 -0700459 kobject_name(kobj), new_name, new_name);
460 kobject_put(temp_kobj);
461 return -EINVAL;
462 }
463 }
464
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800465 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
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900479 error = sysfs_rename_dir(kobj, new_name);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800480
481 /* This function is mostly/only used for network interface.
482 * Some hotplug package track interfaces by their name and
483 * therefore want to know when the name is changed by the user. */
484 if (!error)
485 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
486
487out:
488 kfree(devpath_string);
489 kfree(devpath);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700490 kobject_put(kobj);
491
492 return error;
493}
494
495/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100496 * kobject_move - move object to another parent
497 * @kobj: object in question.
Cornelia Huckc744aea2007-01-08 20:16:44 +0100498 * @new_parent: object's new parent (can be NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +0100499 */
500
501int kobject_move(struct kobject *kobj, struct kobject *new_parent)
502{
503 int error;
504 struct kobject *old_parent;
505 const char *devpath = NULL;
506 char *devpath_string = NULL;
507 char *envp[2];
508
509 kobj = kobject_get(kobj);
510 if (!kobj)
511 return -EINVAL;
512 new_parent = kobject_get(new_parent);
513 if (!new_parent) {
Cornelia Huckc744aea2007-01-08 20:16:44 +0100514 if (kobj->kset)
515 new_parent = kobject_get(&kobj->kset->kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +0100516 }
517 /* old object path */
518 devpath = kobject_get_path(kobj, GFP_KERNEL);
519 if (!devpath) {
520 error = -ENOMEM;
521 goto out;
522 }
523 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
524 if (!devpath_string) {
525 error = -ENOMEM;
526 goto out;
527 }
528 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
529 envp[0] = devpath_string;
530 envp[1] = NULL;
531 error = sysfs_move_dir(kobj, new_parent);
532 if (error)
533 goto out;
534 old_parent = kobj->parent;
535 kobj->parent = new_parent;
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300536 new_parent = NULL;
Cornelia Huck8a824722006-11-20 17:07:51 +0100537 kobject_put(old_parent);
538 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
539out:
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300540 kobject_put(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +0100541 kobject_put(kobj);
542 kfree(devpath_string);
543 kfree(devpath);
544 return error;
545}
546
547/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 * kobject_del - unlink kobject from hierarchy.
549 * @kobj: object.
550 */
551
552void kobject_del(struct kobject * kobj)
553{
Greg Kroah-Hartman31b90252007-01-18 12:23:51 -0800554 if (!kobj)
555 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 sysfs_remove_dir(kobj);
557 unlink(kobj);
558}
559
560/**
561 * kobject_unregister - remove object from hierarchy and decrement refcount.
562 * @kobj: object going away.
563 */
564
565void kobject_unregister(struct kobject * kobj)
566{
Greg Kroah-Hartman31b90252007-01-18 12:23:51 -0800567 if (!kobj)
568 return;
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800569 pr_debug("kobject: '%s' (%p): %s\n",
570 kobject_name(kobj), kobj, __FUNCTION__);
Kay Sievers312c0042005-11-16 09:00:00 +0100571 kobject_uevent(kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 kobject_del(kobj);
573 kobject_put(kobj);
574}
575
576/**
577 * kobject_get - increment refcount for object.
578 * @kobj: object.
579 */
580
581struct kobject * kobject_get(struct kobject * kobj)
582{
583 if (kobj)
584 kref_get(&kobj->kref);
585 return kobj;
586}
587
Greg Kroah-Hartman18041f42007-12-03 21:31:08 -0800588/*
589 * kobject_cleanup - free kobject resources.
590 * @kobj: object to cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
Greg Kroah-Hartman18041f42007-12-03 21:31:08 -0800592static void kobject_cleanup(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 struct kobj_type * t = get_ktype(kobj);
595 struct kset * s = kobj->kset;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700596 const char *name = kobj->k_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800598 pr_debug("kobject: '%s' (%p): %s\n",
599 kobject_name(kobj), kobj, __FUNCTION__);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700600 if (t && t->release) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 t->release(kobj);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700602 /* If we have a release function, we can guess that this was
603 * not a statically allocated kobject, so we should be safe to
604 * free the name */
605 kfree(name);
606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (s)
608 kset_put(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611static void kobject_release(struct kref *kref)
612{
613 kobject_cleanup(container_of(kref, struct kobject, kref));
614}
615
616/**
617 * kobject_put - decrement refcount for object.
618 * @kobj: object.
619 *
620 * Decrement the refcount, and if 0, call kobject_cleanup().
621 */
622void kobject_put(struct kobject * kobj)
623{
624 if (kobj)
625 kref_put(&kobj->kref, kobject_release);
626}
627
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800628static void dynamic_kobj_release(struct kobject *kobj)
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500629{
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800630 pr_debug("kobject: '%s' (%p): %s\n",
631 kobject_name(kobj), kobj, __FUNCTION__);
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500632 kfree(kobj);
633}
634
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800635static struct kobj_type dynamic_kobj_ktype = {
Kay Sievers386f2752007-11-02 13:47:53 +0100636 .release = dynamic_kobj_release,
637 .sysfs_ops = &kobj_sysfs_ops,
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500638};
639
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800640/**
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800641 * kobject_create - create a struct kobject dynamically
642 *
643 * This function creates a kobject structure dynamically and sets it up
644 * to be a "dynamic" kobject with a default release function set up.
645 *
646 * If the kobject was not able to be created, NULL will be returned.
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800647 * The kobject structure returned from here must be cleaned up with a
648 * call to kobject_put() and not kfree(), as kobject_init_ng() has
649 * already been called on this structure.
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800650 */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800651struct kobject *kobject_create(void)
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800652{
653 struct kobject *kobj;
654
655 kobj = kzalloc(sizeof(*kobj), GFP_KERNEL);
656 if (!kobj)
657 return NULL;
658
659 kobject_init_ng(kobj, &dynamic_kobj_ktype);
660 return kobj;
661}
662
663/**
664 * kobject_create_and_add - create a struct kobject dynamically and register it with sysfs
665 *
666 * @name: the name for the kset
667 * @parent: the parent kobject of this kobject, if any.
668 *
669 * This function creates a kset structure dynamically and registers it
670 * with sysfs. When you are finished with this structure, call
671 * kobject_unregister() and the structure will be dynamically freed when
672 * it is no longer being used.
673 *
674 * If the kobject was not able to be created, NULL will be returned.
675 */
676struct kobject *kobject_create_and_add(const char *name, struct kobject *parent)
677{
678 struct kobject *kobj;
679 int retval;
680
681 kobj = kobject_create();
682 if (!kobj)
683 return NULL;
684
685 retval = kobject_add_ng(kobj, parent, "%s", name);
686 if (retval) {
687 printk(KERN_WARNING "%s: kobject_add error: %d\n",
688 __FUNCTION__, retval);
689 kobject_put(kobj);
690 kobj = NULL;
691 }
692 return kobj;
693}
694EXPORT_SYMBOL_GPL(kobject_create_and_add);
695
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500696/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 * kset_init - initialize a kset for use
698 * @k: kset
699 */
700
701void kset_init(struct kset * k)
702{
703 kobject_init(&k->kobj);
704 INIT_LIST_HEAD(&k->list);
705 spin_lock_init(&k->list_lock);
706}
707
Kay Sievers23b52122007-11-02 13:47:53 +0100708/* default kobject attribute operations */
709static ssize_t kobj_attr_show(struct kobject *kobj, struct attribute *attr,
710 char *buf)
711{
712 struct kobj_attribute *kattr;
713 ssize_t ret = -EIO;
714
715 kattr = container_of(attr, struct kobj_attribute, attr);
716 if (kattr->show)
717 ret = kattr->show(kobj, kattr, buf);
718 return ret;
719}
720
721static ssize_t kobj_attr_store(struct kobject *kobj, struct attribute *attr,
722 const char *buf, size_t count)
723{
724 struct kobj_attribute *kattr;
725 ssize_t ret = -EIO;
726
727 kattr = container_of(attr, struct kobj_attribute, attr);
728 if (kattr->store)
729 ret = kattr->store(kobj, kattr, buf, count);
730 return ret;
731}
732
733struct sysfs_ops kobj_sysfs_ops = {
734 .show = kobj_attr_show,
735 .store = kobj_attr_store,
736};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738/**
739 * kset_add - add a kset object to the hierarchy.
740 * @k: kset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 */
742
743int kset_add(struct kset * k)
744{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return kobject_add(&k->kobj);
746}
747
748
749/**
750 * kset_register - initialize and add a kset.
751 * @k: kset.
752 */
753
754int kset_register(struct kset * k)
755{
Kay Sievers80f03e32007-05-26 11:21:36 +0200756 int err;
757
Greg Kroah-Hartman31b90252007-01-18 12:23:51 -0800758 if (!k)
759 return -EINVAL;
Kay Sievers80f03e32007-05-26 11:21:36 +0200760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 kset_init(k);
Kay Sievers80f03e32007-05-26 11:21:36 +0200762 err = kset_add(k);
763 if (err)
764 return err;
765 kobject_uevent(&k->kobj, KOBJ_ADD);
766 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769
770/**
771 * kset_unregister - remove a kset.
772 * @k: kset.
773 */
774
775void kset_unregister(struct kset * k)
776{
Greg Kroah-Hartman31b90252007-01-18 12:23:51 -0800777 if (!k)
778 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 kobject_unregister(&k->kobj);
780}
781
782
783/**
784 * kset_find_obj - search for object in kset.
785 * @kset: kset we're looking in.
786 * @name: object's name.
787 *
788 * Lock kset via @kset->subsys, and iterate over @kset->list,
789 * looking for a matching kobject. If matching object is found
790 * take a reference and return the object.
791 */
792
793struct kobject * kset_find_obj(struct kset * kset, const char * name)
794{
795 struct list_head * entry;
796 struct kobject * ret = NULL;
797
798 spin_lock(&kset->list_lock);
799 list_for_each(entry,&kset->list) {
800 struct kobject * k = to_kobj(entry);
801 if (kobject_name(k) && !strcmp(kobject_name(k),name)) {
802 ret = kobject_get(k);
803 break;
804 }
805 }
806 spin_unlock(&kset->list_lock);
807 return ret;
808}
809
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700810static void kset_release(struct kobject *kobj)
811{
812 struct kset *kset = container_of(kobj, struct kset, kobj);
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800813 pr_debug("kobject: '%s' (%p): %s\n",
814 kobject_name(kobj), kobj, __FUNCTION__);
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700815 kfree(kset);
816}
817
Kay Sievers386f2752007-11-02 13:47:53 +0100818static struct kobj_type kset_ktype = {
819 .sysfs_ops = &kobj_sysfs_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700820 .release = kset_release,
821};
822
823/**
824 * kset_create - create a struct kset dynamically
825 *
826 * @name: the name for the kset
827 * @uevent_ops: a struct kset_uevent_ops for the kset
828 * @parent_kobj: the parent kobject of this kset, if any.
829 *
830 * This function creates a kset structure dynamically. This structure can
831 * then be registered with the system and show up in sysfs with a call to
832 * kset_register(). When you are finished with this structure, if
833 * kset_register() has been called, call kset_unregister() and the
834 * structure will be dynamically freed when it is no longer being used.
835 *
836 * If the kset was not able to be created, NULL will be returned.
837 */
838static struct kset *kset_create(const char *name,
839 struct kset_uevent_ops *uevent_ops,
840 struct kobject *parent_kobj)
841{
842 struct kset *kset;
843
844 kset = kzalloc(sizeof(*kset), GFP_KERNEL);
845 if (!kset)
846 return NULL;
847 kobject_set_name(&kset->kobj, name);
848 kset->uevent_ops = uevent_ops;
849 kset->kobj.parent = parent_kobj;
850
851 /*
Kay Sievers386f2752007-11-02 13:47:53 +0100852 * The kobject of this kset will have a type of kset_ktype and belong to
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700853 * no kset itself. That way we can properly free it when it is
854 * finished being used.
855 */
Kay Sievers386f2752007-11-02 13:47:53 +0100856 kset->kobj.ktype = &kset_ktype;
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700857 kset->kobj.kset = NULL;
858
859 return kset;
860}
861
862/**
863 * kset_create_and_add - create a struct kset dynamically and add it to sysfs
864 *
865 * @name: the name for the kset
866 * @uevent_ops: a struct kset_uevent_ops for the kset
867 * @parent_kobj: the parent kobject of this kset, if any.
868 *
869 * This function creates a kset structure dynamically and registers it
870 * with sysfs. When you are finished with this structure, call
871 * kset_unregister() and the structure will be dynamically freed when it
872 * is no longer being used.
873 *
874 * If the kset was not able to be created, NULL will be returned.
875 */
876struct kset *kset_create_and_add(const char *name,
877 struct kset_uevent_ops *uevent_ops,
878 struct kobject *parent_kobj)
879{
880 struct kset *kset;
881 int error;
882
883 kset = kset_create(name, uevent_ops, parent_kobj);
884 if (!kset)
885 return NULL;
886 error = kset_register(kset);
887 if (error) {
888 kfree(kset);
889 return NULL;
890 }
891 return kset;
892}
893EXPORT_SYMBOL_GPL(kset_create_and_add);
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895EXPORT_SYMBOL(kobject_init);
896EXPORT_SYMBOL(kobject_register);
897EXPORT_SYMBOL(kobject_unregister);
898EXPORT_SYMBOL(kobject_get);
899EXPORT_SYMBOL(kobject_put);
900EXPORT_SYMBOL(kobject_add);
901EXPORT_SYMBOL(kobject_del);
902
903EXPORT_SYMBOL(kset_register);
904EXPORT_SYMBOL(kset_unregister);