2 * kobject.c - library routines for handling generic kernel objects
4 * Copyright (c) 2002-2003 Patrick Mochel <mochel@osdl.org>
5 * Copyright (c) 2006-2007 Greg Kroah-Hartman <greg@kroah.com>
6 * Copyright (c) 2006-2007 Novell Inc.
8 * This file is released under the GPLv2.
11 * Please see the file Documentation/kobject.txt for critical information
12 * about using the kobject interface.
15 #include <linux/kobject.h>
16 #include <linux/string.h>
17 #include <linux/module.h>
18 #include <linux/stat.h>
19 #include <linux/slab.h>
22 * populate_dir - populate directory with attributes.
23 * @kobj: object we're working on.
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.
33 static int populate_dir(struct kobject
* kobj
)
35 struct kobj_type
* t
= get_ktype(kobj
);
36 struct attribute
* attr
;
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
)))
49 static int create_dir(struct kobject
* kobj
)
52 if (kobject_name(kobj
)) {
53 error
= sysfs_create_dir(kobj
);
55 if ((error
= populate_dir(kobj
)))
56 sysfs_remove_dir(kobj
);
62 static inline struct kobject
* to_kobj(struct list_head
* entry
)
64 return container_of(entry
,struct kobject
,entry
);
67 static int get_kobj_path_length(struct kobject
*kobj
)
70 struct kobject
* parent
= kobj
;
72 /* walk up the ancestors until we hit the one pointing to the
74 * Add 1 to strlen for leading '/' of each level.
77 if (kobject_name(parent
) == NULL
)
79 length
+= strlen(kobject_name(parent
)) + 1;
80 parent
= parent
->parent
;
85 static void fill_kobj_path(struct kobject
*kobj
, char *path
, int length
)
87 struct kobject
* parent
;
90 for (parent
= kobj
; parent
; parent
= parent
->parent
) {
91 int cur
= strlen(kobject_name(parent
));
92 /* back up enough to print this name with '/' */
94 strncpy (path
+ length
, kobject_name(parent
), cur
);
95 *(path
+ --length
) = '/';
98 pr_debug("%s: path = '%s'\n",__FUNCTION__
,path
);
102 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
104 * @kobj: kobject in question, with which to build the path
105 * @gfp_mask: the allocation type used to allocate the path
107 * The result must be freed by the caller with kfree().
109 char *kobject_get_path(struct kobject
*kobj
, gfp_t gfp_mask
)
114 len
= get_kobj_path_length(kobj
);
117 path
= kzalloc(len
, gfp_mask
);
120 fill_kobj_path(kobj
, path
, len
);
124 EXPORT_SYMBOL_GPL(kobject_get_path
);
127 * kobject_init - initialize object.
128 * @kobj: object in question.
130 void kobject_init(struct kobject
* kobj
)
134 kref_init(&kobj
->kref
);
135 INIT_LIST_HEAD(&kobj
->entry
);
136 kobj
->kset
= kset_get(kobj
->kset
);
141 * unlink - remove kobject from kset list.
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.
150 static void unlink(struct kobject
* kobj
)
153 spin_lock(&kobj
->kset
->list_lock
);
154 list_del_init(&kobj
->entry
);
155 spin_unlock(&kobj
->kset
->list_lock
);
161 * kobject_add - add an object to the hierarchy.
165 int kobject_add(struct kobject
* kobj
)
168 struct kobject
* parent
;
170 if (!(kobj
= kobject_get(kobj
)))
173 kobject_set_name(kobj
, "NO_NAME");
174 if (!*kobj
->k_name
) {
175 pr_debug("kobject attempted to be registered with no name!\n");
180 parent
= kobject_get(kobj
->parent
);
182 pr_debug("kobject %s: registering. parent: %s, set: %s\n",
183 kobject_name(kobj
), parent
? kobject_name(parent
) : "<NULL>",
184 kobj
->kset
? kobject_name(&kobj
->kset
->kobj
) : "<NULL>" );
187 spin_lock(&kobj
->kset
->list_lock
);
190 parent
= kobject_get(&kobj
->kset
->kobj
);
192 list_add_tail(&kobj
->entry
,&kobj
->kset
->list
);
193 spin_unlock(&kobj
->kset
->list_lock
);
194 kobj
->parent
= parent
;
197 error
= create_dir(kobj
);
199 /* unlink does the kobject_put() for us */
203 /* be noisy on error issues */
204 if (error
== -EEXIST
)
205 printk(KERN_ERR
"kobject_add failed for %s with "
206 "-EEXIST, don't try to register things with "
207 "the same name in the same directory.\n",
210 printk(KERN_ERR
"kobject_add failed for %s (%d)\n",
211 kobject_name(kobj
), error
);
219 * kobject_register - initialize and add an object.
220 * @kobj: object in question.
223 int kobject_register(struct kobject
* kobj
)
228 error
= kobject_add(kobj
);
230 kobject_uevent(kobj
, KOBJ_ADD
);
237 * kobject_set_name - Set the name of an object
239 * @fmt: format string used to build the name
241 * If strlen(name) >= KOBJ_NAME_LEN, then use a dynamically allocated
242 * string that @kobj->k_name points to. Otherwise, use the static
245 int kobject_set_name(struct kobject
* kobj
, const char * fmt
, ...)
253 /* find out how big a buffer we need */
254 name
= kmalloc(1024, GFP_KERNEL
);
260 need
= vsnprintf(name
, 1024, fmt
, args
);
264 /* Allocate the new space and copy the string in */
266 name
= kmalloc(limit
, GFP_KERNEL
);
272 need
= vsnprintf(name
, limit
, fmt
, args
);
275 /* something wrong with the string we copied? */
282 /* Free the old name, if necessary. */
285 /* Now, set the new name */
290 EXPORT_SYMBOL(kobject_set_name
);
293 * kobject_rename - change the name of an object
294 * @kobj: object in question.
295 * @new_name: object's new name
298 int kobject_rename(struct kobject
* kobj
, const char *new_name
)
301 const char *devpath
= NULL
;
302 char *devpath_string
= NULL
;
305 kobj
= kobject_get(kobj
);
311 devpath
= kobject_get_path(kobj
, GFP_KERNEL
);
316 devpath_string
= kmalloc(strlen(devpath
) + 15, GFP_KERNEL
);
317 if (!devpath_string
) {
321 sprintf(devpath_string
, "DEVPATH_OLD=%s", devpath
);
322 envp
[0] = devpath_string
;
324 /* Note : if we want to send the new name alone, not the full path,
325 * we could probably use kobject_name(kobj); */
327 error
= sysfs_rename_dir(kobj
, new_name
);
329 /* This function is mostly/only used for network interface.
330 * Some hotplug package track interfaces by their name and
331 * therefore want to know when the name is changed by the user. */
333 kobject_uevent_env(kobj
, KOBJ_MOVE
, envp
);
336 kfree(devpath_string
);
344 * kobject_move - move object to another parent
345 * @kobj: object in question.
346 * @new_parent: object's new parent (can be NULL)
349 int kobject_move(struct kobject
*kobj
, struct kobject
*new_parent
)
352 struct kobject
*old_parent
;
353 const char *devpath
= NULL
;
354 char *devpath_string
= NULL
;
357 kobj
= kobject_get(kobj
);
360 new_parent
= kobject_get(new_parent
);
363 new_parent
= kobject_get(&kobj
->kset
->kobj
);
365 /* old object path */
366 devpath
= kobject_get_path(kobj
, GFP_KERNEL
);
371 devpath_string
= kmalloc(strlen(devpath
) + 15, GFP_KERNEL
);
372 if (!devpath_string
) {
376 sprintf(devpath_string
, "DEVPATH_OLD=%s", devpath
);
377 envp
[0] = devpath_string
;
379 error
= sysfs_move_dir(kobj
, new_parent
);
382 old_parent
= kobj
->parent
;
383 kobj
->parent
= new_parent
;
385 kobject_put(old_parent
);
386 kobject_uevent_env(kobj
, KOBJ_MOVE
, envp
);
388 kobject_put(new_parent
);
390 kfree(devpath_string
);
396 * kobject_del - unlink kobject from hierarchy.
400 void kobject_del(struct kobject
* kobj
)
404 sysfs_remove_dir(kobj
);
409 * kobject_unregister - remove object from hierarchy and decrement refcount.
410 * @kobj: object going away.
413 void kobject_unregister(struct kobject
* kobj
)
417 pr_debug("kobject %s: unregistering\n",kobject_name(kobj
));
418 kobject_uevent(kobj
, KOBJ_REMOVE
);
424 * kobject_get - increment refcount for object.
428 struct kobject
* kobject_get(struct kobject
* kobj
)
431 kref_get(&kobj
->kref
);
436 * kobject_cleanup - free kobject resources.
440 void kobject_cleanup(struct kobject
* kobj
)
442 struct kobj_type
* t
= get_ktype(kobj
);
443 struct kset
* s
= kobj
->kset
;
444 struct kobject
* parent
= kobj
->parent
;
445 const char *name
= kobj
->k_name
;
447 pr_debug("kobject %s: cleaning up\n",kobject_name(kobj
));
448 if (t
&& t
->release
) {
450 /* If we have a release function, we can guess that this was
451 * not a statically allocated kobject, so we should be safe to
460 static void kobject_release(struct kref
*kref
)
462 kobject_cleanup(container_of(kref
, struct kobject
, kref
));
466 * kobject_put - decrement refcount for object.
469 * Decrement the refcount, and if 0, call kobject_cleanup().
471 void kobject_put(struct kobject
* kobj
)
474 kref_put(&kobj
->kref
, kobject_release
);
478 static void dir_release(struct kobject
*kobj
)
483 static struct kobj_type dir_ktype
= {
484 .release
= dir_release
,
486 .default_attrs
= NULL
,
490 * kobject_kset_add_dir - add sub directory of object.
491 * @kset: kset the directory is belongs to.
492 * @parent: object in which a directory is created.
493 * @name: directory name.
495 * Add a plain directory object as child of given object.
497 struct kobject
*kobject_kset_add_dir(struct kset
*kset
,
498 struct kobject
*parent
, const char *name
)
506 k
= kzalloc(sizeof(*k
), GFP_KERNEL
);
512 k
->ktype
= &dir_ktype
;
513 kobject_set_name(k
, name
);
514 ret
= kobject_register(k
);
516 printk(KERN_WARNING
"%s: kobject_register error: %d\n",
526 * kobject_add_dir - add sub directory of object.
527 * @parent: object in which a directory is created.
528 * @name: directory name.
530 * Add a plain directory object as child of given object.
532 struct kobject
*kobject_add_dir(struct kobject
*parent
, const char *name
)
534 return kobject_kset_add_dir(NULL
, parent
, name
);
538 * kset_init - initialize a kset for use
542 void kset_init(struct kset
* k
)
544 kobject_init(&k
->kobj
);
545 INIT_LIST_HEAD(&k
->list
);
546 spin_lock_init(&k
->list_lock
);
551 * kset_add - add a kset object to the hierarchy.
555 int kset_add(struct kset
* k
)
557 return kobject_add(&k
->kobj
);
562 * kset_register - initialize and add a kset.
566 int kset_register(struct kset
* k
)
577 kobject_uevent(&k
->kobj
, KOBJ_ADD
);
583 * kset_unregister - remove a kset.
587 void kset_unregister(struct kset
* k
)
591 kobject_unregister(&k
->kobj
);
596 * kset_find_obj - search for object in kset.
597 * @kset: kset we're looking in.
598 * @name: object's name.
600 * Lock kset via @kset->subsys, and iterate over @kset->list,
601 * looking for a matching kobject. If matching object is found
602 * take a reference and return the object.
605 struct kobject
* kset_find_obj(struct kset
* kset
, const char * name
)
607 struct list_head
* entry
;
608 struct kobject
* ret
= NULL
;
610 spin_lock(&kset
->list_lock
);
611 list_for_each(entry
,&kset
->list
) {
612 struct kobject
* k
= to_kobj(entry
);
613 if (kobject_name(k
) && !strcmp(kobject_name(k
),name
)) {
614 ret
= kobject_get(k
);
618 spin_unlock(&kset
->list_lock
);
622 int subsystem_register(struct kset
*s
)
624 return kset_register(s
);
627 void subsystem_unregister(struct kset
*s
)
633 * subsystem_create_file - export sysfs attribute file.
635 * @a: subsystem attribute descriptor.
638 int subsys_create_file(struct kset
*s
, struct subsys_attribute
*a
)
646 error
= sysfs_create_file(&s
->kobj
, &a
->attr
);
652 EXPORT_SYMBOL(kobject_init
);
653 EXPORT_SYMBOL(kobject_register
);
654 EXPORT_SYMBOL(kobject_unregister
);
655 EXPORT_SYMBOL(kobject_get
);
656 EXPORT_SYMBOL(kobject_put
);
657 EXPORT_SYMBOL(kobject_add
);
658 EXPORT_SYMBOL(kobject_del
);
660 EXPORT_SYMBOL(kset_register
);
661 EXPORT_SYMBOL(kset_unregister
);
663 EXPORT_SYMBOL(subsystem_register
);
664 EXPORT_SYMBOL(subsystem_unregister
);
665 EXPORT_SYMBOL(subsys_create_file
);