blob: 359e114790cb40a9e477bb9374660e8f182f733e [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-Hartman31b9025a2007-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
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700147 * kobject_del() and kobject_add_internal() on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
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
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700164static int kobject_add_internal(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 int error = 0;
167 struct kobject * parent;
168
169 if (!(kobj = kobject_get(kobj)))
170 return -ENOENT;
171 if (!kobj->k_name)
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700172 kobject_set_name(kobj, "NO_NAME");
Martin Stoilov13507702007-02-05 16:15:23 -0800173 if (!*kobj->k_name) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800174 pr_debug("kobject (%p) attempted to be registered with no "
175 "name!\n", kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800176 WARN_ON(1);
Cornelia Huck88db4722007-04-10 14:35:27 +0200177 kobject_put(kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800178 return -EINVAL;
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 parent = kobject_get(kobj->parent);
181
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800182 pr_debug("kobject: '%s' (%p): %s: parent: '%s', set: '%s'\n",
183 kobject_name(kobj), kobj, __FUNCTION__,
184 parent ? kobject_name(parent) : "<NULL>",
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700185 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 if (kobj->kset) {
Greg Kroah-Hartmancfb36ff2007-11-28 10:46:22 -0800188 kobj->kset = kset_get(kobj->kset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700190 if (!parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 parent = kobject_get(&kobj->kset->kobj);
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700192 /*
193 * If the kset is our parent, get a second
194 * reference, we drop both the kset and the
195 * parent ref on cleanup
196 */
197 kobject_get(parent);
198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Greg Kroah-Hartmancfb36ff2007-11-28 10:46:22 -0800200 spin_lock(&kobj->kset->list_lock);
201 list_add_tail(&kobj->entry, &kobj->kset->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 spin_unlock(&kobj->kset->list_lock);
Dmitriy Monakhov460f7e92007-03-10 14:00:10 +0300203 kobj->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900206 error = create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (error) {
208 /* unlink does the kobject_put() for us */
209 unlink(kobj);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800210
211 /* be noisy on error issues */
212 if (error == -EEXIST)
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700213 printk(KERN_ERR "%s failed for %s with "
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700214 "-EEXIST, don't try to register things with "
215 "the same name in the same directory.\n",
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700216 __FUNCTION__, kobject_name(kobj));
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800217 else
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700218 printk(KERN_ERR "%s failed for %s (%d)\n",
219 __FUNCTION__, kobject_name(kobj), error);
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700220 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222
223 return error;
224}
225
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700226/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 * kobject_register - initialize and add an object.
228 * @kobj: object in question.
229 */
230
231int kobject_register(struct kobject * kobj)
232{
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800233 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (kobj) {
235 kobject_init(kobj);
236 error = kobject_add(kobj);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800237 if (!error)
Kay Sievers312c0042005-11-16 09:00:00 +0100238 kobject_uevent(kobj, KOBJ_ADD);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return error;
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/**
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500244 * kobject_set_name_vargs - Set the name of an kobject
245 * @kobj: struct kobject to set the name of
Greg Kroah-Hartman8c4606b2007-12-04 14:45:47 +0800246 * @fmt: format string used to build the name
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500247 * @vargs: vargs to format the string.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 */
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500249static int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
250 va_list vargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500252 va_list aq;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700253 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500255 va_copy(aq, vargs);
256 name = kvasprintf(GFP_KERNEL, fmt, vargs);
257 va_end(aq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500259 if (!name)
260 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /* Free the old name, if necessary. */
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700263 kfree(kobj->k_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 /* Now, set the new name */
266 kobj->k_name = name;
Greg Kroah-Hartman663a4742007-11-29 18:32:47 -0500267
268 return 0;
269}
270
271/**
272 * kobject_set_name - Set the name of a kobject
273 * @kobj: struct kobject to set the name of
274 * @fmt: format string used to build the name
275 *
276 * This sets the name of the kobject. If you have already added the
277 * kobject to the system, you must call kobject_rename() in order to
278 * change the name of the kobject.
279 */
280int kobject_set_name(struct kobject *kobj, const char *fmt, ...)
281{
282 va_list args;
283 int retval;
284
285 va_start(args, fmt);
286 retval = kobject_set_name_vargs(kobj, fmt, args);
287 va_end(args);
288
289 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291EXPORT_SYMBOL(kobject_set_name);
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/**
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800294 * kobject_init_ng - initialize a kobject structure
295 * @kobj: pointer to the kobject to initialize
296 * @ktype: pointer to the ktype for this kobject.
297 *
298 * This function will properly initialize a kobject such that it can then
299 * be passed to the kobject_add() call.
300 *
301 * After this function is called, the kobject MUST be cleaned up by a call
302 * to kobject_put(), not by a call to kfree directly to ensure that all of
303 * the memory is cleaned up properly.
304 */
305void kobject_init_ng(struct kobject *kobj, struct kobj_type *ktype)
306{
307 char *err_str;
308
309 if (!kobj) {
310 err_str = "invalid kobject pointer!";
311 goto error;
312 }
313 if (!ktype) {
314 err_str = "must have a ktype to be initialized properly!\n";
315 goto error;
316 }
317 if (atomic_read(&kobj->kref.refcount)) {
318 /* do not error out as sometimes we can recover */
319 printk(KERN_ERR "kobject: reference count is already set, "
320 "something is seriously wrong.\n");
321 dump_stack();
322 }
323
324 kref_init(&kobj->kref);
325 INIT_LIST_HEAD(&kobj->entry);
326 kobj->ktype = ktype;
327 return;
328
329error:
330 printk(KERN_ERR "kobject: %s\n", err_str);
331 dump_stack();
332}
333EXPORT_SYMBOL(kobject_init_ng);
334
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800335static int kobject_add_varg(struct kobject *kobj, struct kobject *parent,
336 const char *fmt, va_list vargs)
337{
338 va_list aq;
339 int retval;
340
341 va_copy(aq, vargs);
342 retval = kobject_set_name_vargs(kobj, fmt, aq);
343 va_end(aq);
344 if (retval) {
345 printk(KERN_ERR "kobject: can not set name properly!\n");
346 return retval;
347 }
348 kobj->parent = parent;
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700349 return kobject_add_internal(kobj);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800350}
351
352/**
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700353 * kobject_add - the main kobject add function
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800354 * @kobj: the kobject to add
355 * @parent: pointer to the parent of the kobject.
356 * @fmt: format to name the kobject with.
357 *
358 * The kobject name is set and added to the kobject hierarchy in this
359 * function.
360 *
361 * If @parent is set, then the parent of the @kobj will be set to it.
362 * If @parent is NULL, then the parent of the @kobj will be set to the
363 * kobject associted with the kset assigned to this kobject. If no kset
364 * is assigned to the kobject, then the kobject will be located in the
365 * root of the sysfs tree.
366 *
367 * If this function returns an error, kobject_put() must be called to
368 * properly clean up the memory associated with the object.
369 *
370 * If the function is successful, the only way to properly clean up the
371 * memory is with a call to kobject_del(), in which case, a call to
372 * kobject_put() is not necessary (kobject_del() does the final
373 * kobject_put() to call the release function in the ktype's release
374 * pointer.)
375 *
376 * Under no instance should the kobject that is passed to this function
377 * be directly freed with a call to kfree(), that can leak memory.
378 *
379 * Note, no uevent will be created with this call, the caller should set
380 * up all of the necessary sysfs files for the object and then call
381 * kobject_uevent() with the UEVENT_ADD parameter to ensure that
382 * userspace is properly notified of this kobject's creation.
383 */
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700384int kobject_add(struct kobject *kobj, struct kobject *parent,
385 const char *fmt, ...)
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800386{
387 va_list args;
388 int retval;
389
390 if (!kobj)
391 return -EINVAL;
392
393 va_start(args, fmt);
394 retval = kobject_add_varg(kobj, parent, fmt, args);
395 va_end(args);
396
397 return retval;
398}
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700399EXPORT_SYMBOL(kobject_add);
Greg Kroah-Hartman244f6ce2007-12-03 21:31:08 -0800400
Greg Kroah-Hartmane86000d2007-12-03 21:31:08 -0800401/**
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800402 * kobject_init_and_add - initialize a kobject structure and add it to the kobject hierarchy
403 * @kobj: pointer to the kobject to initialize
404 * @ktype: pointer to the ktype for this kobject.
405 * @parent: pointer to the parent of this kobject.
406 * @fmt: the name of the kobject.
407 *
408 * This function combines the call to kobject_init_ng() and
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700409 * kobject_add(). The same type of error handling after a call to
410 * kobject_add() and kobject lifetime rules are the same here.
Greg Kroah-Hartmanc11c4152007-12-03 21:31:08 -0800411 */
412int kobject_init_and_add(struct kobject *kobj, struct kobj_type *ktype,
413 struct kobject *parent, const char *fmt, ...)
414{
415 va_list args;
416 int retval;
417
418 kobject_init_ng(kobj, ktype);
419
420 va_start(args, fmt);
421 retval = kobject_add_varg(kobj, parent, fmt, args);
422 va_end(args);
423
424 return retval;
425}
426EXPORT_SYMBOL_GPL(kobject_init_and_add);
427
428/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * kobject_rename - change the name of an object
430 * @kobj: object in question.
431 * @new_name: object's new name
432 */
433
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -0500434int kobject_rename(struct kobject * kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 int error = 0;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800437 const char *devpath = NULL;
438 char *devpath_string = NULL;
439 char *envp[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 kobj = kobject_get(kobj);
442 if (!kobj)
443 return -EINVAL;
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700444 if (!kobj->parent)
445 return -EINVAL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800446
Greg Kroah-Hartman34358c22007-10-24 16:52:31 -0700447 /* see if this name is already in use */
448 if (kobj->kset) {
449 struct kobject *temp_kobj;
450 temp_kobj = kset_find_obj(kobj->kset, new_name);
451 if (temp_kobj) {
Johannes Berg71409a42007-11-05 13:59:11 +0100452 printk(KERN_WARNING "kobject '%s' cannot be renamed "
453 "to '%s' as '%s' is already in existence.\n",
Greg Kroah-Hartman34358c22007-10-24 16:52:31 -0700454 kobject_name(kobj), new_name, new_name);
455 kobject_put(temp_kobj);
456 return -EINVAL;
457 }
458 }
459
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800460 devpath = kobject_get_path(kobj, GFP_KERNEL);
461 if (!devpath) {
462 error = -ENOMEM;
463 goto out;
464 }
465 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
466 if (!devpath_string) {
467 error = -ENOMEM;
468 goto out;
469 }
470 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
471 envp[0] = devpath_string;
472 envp[1] = NULL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800473
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900474 error = sysfs_rename_dir(kobj, new_name);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800475
476 /* This function is mostly/only used for network interface.
477 * Some hotplug package track interfaces by their name and
478 * therefore want to know when the name is changed by the user. */
479 if (!error)
480 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
481
482out:
483 kfree(devpath_string);
484 kfree(devpath);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700485 kobject_put(kobj);
486
487 return error;
488}
489
490/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100491 * kobject_move - move object to another parent
492 * @kobj: object in question.
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100493 * @new_parent: object's new parent (can be NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +0100494 */
495
496int kobject_move(struct kobject *kobj, struct kobject *new_parent)
497{
498 int error;
499 struct kobject *old_parent;
500 const char *devpath = NULL;
501 char *devpath_string = NULL;
502 char *envp[2];
503
504 kobj = kobject_get(kobj);
505 if (!kobj)
506 return -EINVAL;
507 new_parent = kobject_get(new_parent);
508 if (!new_parent) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100509 if (kobj->kset)
510 new_parent = kobject_get(&kobj->kset->kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +0100511 }
512 /* old object path */
513 devpath = kobject_get_path(kobj, GFP_KERNEL);
514 if (!devpath) {
515 error = -ENOMEM;
516 goto out;
517 }
518 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
519 if (!devpath_string) {
520 error = -ENOMEM;
521 goto out;
522 }
523 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
524 envp[0] = devpath_string;
525 envp[1] = NULL;
526 error = sysfs_move_dir(kobj, new_parent);
527 if (error)
528 goto out;
529 old_parent = kobj->parent;
530 kobj->parent = new_parent;
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300531 new_parent = NULL;
Cornelia Huck8a824722006-11-20 17:07:51 +0100532 kobject_put(old_parent);
533 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
534out:
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300535 kobject_put(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +0100536 kobject_put(kobj);
537 kfree(devpath_string);
538 kfree(devpath);
539 return error;
540}
541
542/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 * kobject_del - unlink kobject from hierarchy.
544 * @kobj: object.
545 */
546
547void kobject_del(struct kobject * kobj)
548{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800549 if (!kobj)
550 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 sysfs_remove_dir(kobj);
552 unlink(kobj);
553}
554
555/**
556 * kobject_unregister - remove object from hierarchy and decrement refcount.
557 * @kobj: object going away.
558 */
559
560void kobject_unregister(struct kobject * kobj)
561{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800562 if (!kobj)
563 return;
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800564 pr_debug("kobject: '%s' (%p): %s\n",
565 kobject_name(kobj), kobj, __FUNCTION__);
Kay Sievers312c0042005-11-16 09:00:00 +0100566 kobject_uevent(kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 kobject_del(kobj);
568 kobject_put(kobj);
569}
570
571/**
572 * kobject_get - increment refcount for object.
573 * @kobj: object.
574 */
575
576struct kobject * kobject_get(struct kobject * kobj)
577{
578 if (kobj)
579 kref_get(&kobj->kref);
580 return kobj;
581}
582
Greg Kroah-Hartman18041f42007-12-03 21:31:08 -0800583/*
584 * kobject_cleanup - free kobject resources.
585 * @kobj: object to cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
Greg Kroah-Hartman18041f42007-12-03 21:31:08 -0800587static void kobject_cleanup(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct kobj_type * t = get_ktype(kobj);
590 struct kset * s = kobj->kset;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700591 const char *name = kobj->k_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800593 pr_debug("kobject: '%s' (%p): %s\n",
594 kobject_name(kobj), kobj, __FUNCTION__);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700595 if (t && t->release) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 t->release(kobj);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700597 /* If we have a release function, we can guess that this was
598 * not a statically allocated kobject, so we should be safe to
599 * free the name */
600 kfree(name);
601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (s)
603 kset_put(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606static void kobject_release(struct kref *kref)
607{
608 kobject_cleanup(container_of(kref, struct kobject, kref));
609}
610
611/**
612 * kobject_put - decrement refcount for object.
613 * @kobj: object.
614 *
615 * Decrement the refcount, and if 0, call kobject_cleanup().
616 */
617void kobject_put(struct kobject * kobj)
618{
619 if (kobj)
620 kref_put(&kobj->kref, kobject_release);
621}
622
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800623static void dynamic_kobj_release(struct kobject *kobj)
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500624{
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800625 pr_debug("kobject: '%s' (%p): %s\n",
626 kobject_name(kobj), kobj, __FUNCTION__);
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500627 kfree(kobj);
628}
629
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800630static struct kobj_type dynamic_kobj_ktype = {
Kay Sievers386f2752007-11-02 13:47:53 +0100631 .release = dynamic_kobj_release,
632 .sysfs_ops = &kobj_sysfs_ops,
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500633};
634
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800635/**
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800636 * kobject_create - create a struct kobject dynamically
637 *
638 * This function creates a kobject structure dynamically and sets it up
639 * to be a "dynamic" kobject with a default release function set up.
640 *
641 * If the kobject was not able to be created, NULL will be returned.
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800642 * The kobject structure returned from here must be cleaned up with a
643 * call to kobject_put() and not kfree(), as kobject_init_ng() has
644 * already been called on this structure.
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800645 */
Greg Kroah-Hartman43968d22007-11-05 22:24:43 -0800646struct kobject *kobject_create(void)
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800647{
648 struct kobject *kobj;
649
650 kobj = kzalloc(sizeof(*kobj), GFP_KERNEL);
651 if (!kobj)
652 return NULL;
653
654 kobject_init_ng(kobj, &dynamic_kobj_ktype);
655 return kobj;
656}
657
658/**
659 * kobject_create_and_add - create a struct kobject dynamically and register it with sysfs
660 *
661 * @name: the name for the kset
662 * @parent: the parent kobject of this kobject, if any.
663 *
664 * This function creates a kset structure dynamically and registers it
665 * with sysfs. When you are finished with this structure, call
666 * kobject_unregister() and the structure will be dynamically freed when
667 * it is no longer being used.
668 *
669 * If the kobject was not able to be created, NULL will be returned.
670 */
671struct kobject *kobject_create_and_add(const char *name, struct kobject *parent)
672{
673 struct kobject *kobj;
674 int retval;
675
676 kobj = kobject_create();
677 if (!kobj)
678 return NULL;
679
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700680 retval = kobject_add(kobj, parent, "%s", name);
Greg Kroah-Hartman3f9e3ee2007-11-05 13:16:15 -0800681 if (retval) {
682 printk(KERN_WARNING "%s: kobject_add error: %d\n",
683 __FUNCTION__, retval);
684 kobject_put(kobj);
685 kobj = NULL;
686 }
687 return kobj;
688}
689EXPORT_SYMBOL_GPL(kobject_create_and_add);
690
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500691/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * kset_init - initialize a kset for use
693 * @k: kset
694 */
695
696void kset_init(struct kset * k)
697{
698 kobject_init(&k->kobj);
699 INIT_LIST_HEAD(&k->list);
700 spin_lock_init(&k->list_lock);
701}
702
Kay Sievers23b52122007-11-02 13:47:53 +0100703/* default kobject attribute operations */
704static ssize_t kobj_attr_show(struct kobject *kobj, struct attribute *attr,
705 char *buf)
706{
707 struct kobj_attribute *kattr;
708 ssize_t ret = -EIO;
709
710 kattr = container_of(attr, struct kobj_attribute, attr);
711 if (kattr->show)
712 ret = kattr->show(kobj, kattr, buf);
713 return ret;
714}
715
716static ssize_t kobj_attr_store(struct kobject *kobj, struct attribute *attr,
717 const char *buf, size_t count)
718{
719 struct kobj_attribute *kattr;
720 ssize_t ret = -EIO;
721
722 kattr = container_of(attr, struct kobj_attribute, attr);
723 if (kattr->store)
724 ret = kattr->store(kobj, kattr, buf, count);
725 return ret;
726}
727
728struct sysfs_ops kobj_sysfs_ops = {
729 .show = kobj_attr_show,
730 .store = kobj_attr_store,
731};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733/**
734 * kset_add - add a kset object to the hierarchy.
735 * @k: kset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 */
737
738int kset_add(struct kset * k)
739{
Greg Kroah-Hartman9e7bbcc2007-12-17 23:05:35 -0700740 return kobject_add_internal(&k->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
743
744/**
745 * kset_register - initialize and add a kset.
746 * @k: kset.
747 */
748
749int kset_register(struct kset * k)
750{
Kay Sievers80f03e32007-05-26 11:21:36 +0200751 int err;
752
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800753 if (!k)
754 return -EINVAL;
Kay Sievers80f03e32007-05-26 11:21:36 +0200755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 kset_init(k);
Kay Sievers80f03e32007-05-26 11:21:36 +0200757 err = kset_add(k);
758 if (err)
759 return err;
760 kobject_uevent(&k->kobj, KOBJ_ADD);
761 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764
765/**
766 * kset_unregister - remove a kset.
767 * @k: kset.
768 */
769
770void kset_unregister(struct kset * k)
771{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800772 if (!k)
773 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 kobject_unregister(&k->kobj);
775}
776
777
778/**
779 * kset_find_obj - search for object in kset.
780 * @kset: kset we're looking in.
781 * @name: object's name.
782 *
783 * Lock kset via @kset->subsys, and iterate over @kset->list,
784 * looking for a matching kobject. If matching object is found
785 * take a reference and return the object.
786 */
787
788struct kobject * kset_find_obj(struct kset * kset, const char * name)
789{
790 struct list_head * entry;
791 struct kobject * ret = NULL;
792
793 spin_lock(&kset->list_lock);
794 list_for_each(entry,&kset->list) {
795 struct kobject * k = to_kobj(entry);
796 if (kobject_name(k) && !strcmp(kobject_name(k),name)) {
797 ret = kobject_get(k);
798 break;
799 }
800 }
801 spin_unlock(&kset->list_lock);
802 return ret;
803}
804
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700805static void kset_release(struct kobject *kobj)
806{
807 struct kset *kset = container_of(kobj, struct kset, kobj);
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800808 pr_debug("kobject: '%s' (%p): %s\n",
809 kobject_name(kobj), kobj, __FUNCTION__);
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700810 kfree(kset);
811}
812
Kay Sievers386f2752007-11-02 13:47:53 +0100813static struct kobj_type kset_ktype = {
814 .sysfs_ops = &kobj_sysfs_ops,
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700815 .release = kset_release,
816};
817
818/**
819 * kset_create - create a struct kset dynamically
820 *
821 * @name: the name for the kset
822 * @uevent_ops: a struct kset_uevent_ops for the kset
823 * @parent_kobj: the parent kobject of this kset, if any.
824 *
825 * This function creates a kset structure dynamically. This structure can
826 * then be registered with the system and show up in sysfs with a call to
827 * kset_register(). When you are finished with this structure, if
828 * kset_register() has been called, call kset_unregister() and the
829 * structure will be dynamically freed when it is no longer being used.
830 *
831 * If the kset was not able to be created, NULL will be returned.
832 */
833static struct kset *kset_create(const char *name,
834 struct kset_uevent_ops *uevent_ops,
835 struct kobject *parent_kobj)
836{
837 struct kset *kset;
838
839 kset = kzalloc(sizeof(*kset), GFP_KERNEL);
840 if (!kset)
841 return NULL;
842 kobject_set_name(&kset->kobj, name);
843 kset->uevent_ops = uevent_ops;
844 kset->kobj.parent = parent_kobj;
845
846 /*
Kay Sievers386f2752007-11-02 13:47:53 +0100847 * The kobject of this kset will have a type of kset_ktype and belong to
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700848 * no kset itself. That way we can properly free it when it is
849 * finished being used.
850 */
Kay Sievers386f2752007-11-02 13:47:53 +0100851 kset->kobj.ktype = &kset_ktype;
Greg Kroah-Hartmanb727c702007-09-27 14:48:53 -0700852 kset->kobj.kset = NULL;
853
854 return kset;
855}
856
857/**
858 * kset_create_and_add - create a struct kset dynamically and add it to sysfs
859 *
860 * @name: the name for the kset
861 * @uevent_ops: a struct kset_uevent_ops for the kset
862 * @parent_kobj: the parent kobject of this kset, if any.
863 *
864 * This function creates a kset structure dynamically and registers it
865 * with sysfs. When you are finished with this structure, call
866 * kset_unregister() and the structure will be dynamically freed when it
867 * is no longer being used.
868 *
869 * If the kset was not able to be created, NULL will be returned.
870 */
871struct kset *kset_create_and_add(const char *name,
872 struct kset_uevent_ops *uevent_ops,
873 struct kobject *parent_kobj)
874{
875 struct kset *kset;
876 int error;
877
878 kset = kset_create(name, uevent_ops, parent_kobj);
879 if (!kset)
880 return NULL;
881 error = kset_register(kset);
882 if (error) {
883 kfree(kset);
884 return NULL;
885 }
886 return kset;
887}
888EXPORT_SYMBOL_GPL(kset_create_and_add);
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890EXPORT_SYMBOL(kobject_init);
891EXPORT_SYMBOL(kobject_register);
892EXPORT_SYMBOL(kobject_unregister);
893EXPORT_SYMBOL(kobject_get);
894EXPORT_SYMBOL(kobject_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895EXPORT_SYMBOL(kobject_del);
896
897EXPORT_SYMBOL(kset_register);
898EXPORT_SYMBOL(kset_unregister);