]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - lib/kobject.c
Kobject: remove kobject_unregister() as no one uses it anymore
[mirror_ubuntu-zesty-kernel.git] / lib / kobject.c
CommitLineData
1da177e4
LT
1/*
2 * kobject.c - library routines for handling generic kernel objects
3 *
4 * Copyright (c) 2002-2003 Patrick Mochel <mochel@osdl.org>
f0e7e1bd
GKH
5 * Copyright (c) 2006-2007 Greg Kroah-Hartman <greg@kroah.com>
6 * Copyright (c) 2006-2007 Novell Inc.
1da177e4
LT
7 *
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>
4e57b681 19#include <linux/slab.h>
1da177e4
LT
20
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
90bc6135 49static int create_dir(struct kobject * kobj)
1da177e4
LT
50{
51 int error = 0;
52 if (kobject_name(kobj)) {
90bc6135 53 error = sysfs_create_dir(kobj);
1da177e4
LT
54 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 {
b365b3da
CE
77 if (kobject_name(parent) == NULL)
78 return 0;
1da177e4
LT
79 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
9f66fa2a
GKH
98 pr_debug("kobject: '%s' (%p): %s: path = '%s'\n", kobject_name(kobj),
99 kobj, __FUNCTION__,path);
1da177e4
LT
100}
101
102/**
72fd4a35 103 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
1da177e4
LT
104 *
105 * @kobj: kobject in question, with which to build the path
106 * @gfp_mask: the allocation type used to allocate the path
72fd4a35
RD
107 *
108 * The result must be freed by the caller with kfree().
1da177e4 109 */
fd4f2df2 110char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
1da177e4
LT
111{
112 char *path;
113 int len;
114
115 len = get_kobj_path_length(kobj);
b365b3da
CE
116 if (len == 0)
117 return NULL;
4668edc3 118 path = kzalloc(len, gfp_mask);
1da177e4
LT
119 if (!path)
120 return NULL;
1da177e4
LT
121 fill_kobj_path(kobj, path, len);
122
123 return path;
124}
80fc9f53 125EXPORT_SYMBOL_GPL(kobject_get_path);
1da177e4 126
0f4dafc0
KS
127/* add the kobject to its kset's list */
128static void kobj_kset_join(struct kobject *kobj)
1da177e4 129{
0f4dafc0 130 if (!kobj->kset)
31b9025a 131 return;
0f4dafc0
KS
132
133 kset_get(kobj->kset);
134 spin_lock(&kobj->kset->list_lock);
135 list_add_tail(&kobj->entry, &kobj->kset->list);
136 spin_unlock(&kobj->kset->list_lock);
1da177e4
LT
137}
138
0f4dafc0
KS
139/* remove the kobject from its kset's list */
140static void kobj_kset_leave(struct kobject *kobj)
141{
142 if (!kobj->kset)
143 return;
1da177e4 144
0f4dafc0
KS
145 spin_lock(&kobj->kset->list_lock);
146 list_del_init(&kobj->entry);
147 spin_unlock(&kobj->kset->list_lock);
148 kset_put(kobj->kset);
149}
1da177e4 150
0f4dafc0 151static void kobject_init_internal(struct kobject * kobj)
1da177e4 152{
0f4dafc0
KS
153 if (!kobj)
154 return;
155 kref_init(&kobj->kref);
156 INIT_LIST_HEAD(&kobj->entry);
1da177e4
LT
157}
158
0f4dafc0 159
9e7bbccd 160static int kobject_add_internal(struct kobject *kobj)
1da177e4
LT
161{
162 int error = 0;
163 struct kobject * parent;
164
0f4dafc0 165 if (!kobj)
1da177e4 166 return -ENOENT;
0f4dafc0
KS
167
168 if (!kobj->k_name || !kobj->k_name[0]) {
169 pr_debug("kobject: (%p): attempted to be registered with empty "
9f66fa2a 170 "name!\n", kobj);
c171fef5
GKH
171 WARN_ON(1);
172 return -EINVAL;
173 }
1da177e4 174
0f4dafc0 175 parent = kobject_get(kobj->parent);
1da177e4 176
0f4dafc0 177 /* join kset if set, use it as parent if we do not already have one */
1da177e4 178 if (kobj->kset) {
0f4dafc0 179 if (!parent)
1da177e4 180 parent = kobject_get(&kobj->kset->kobj);
0f4dafc0 181 kobj_kset_join(kobj);
460f7e9a 182 kobj->parent = parent;
1da177e4 183 }
1da177e4 184
0f4dafc0
KS
185 pr_debug("kobject: '%s' (%p): %s: parent: '%s', set: '%s'\n",
186 kobject_name(kobj), kobj, __FUNCTION__,
187 parent ? kobject_name(parent) : "<NULL>",
188 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>" );
189
90bc6135 190 error = create_dir(kobj);
1da177e4 191 if (error) {
0f4dafc0
KS
192 kobj_kset_leave(kobj);
193 kobject_put(parent);
194 kobj->parent = NULL;
dcd0da00
GKH
195
196 /* be noisy on error issues */
197 if (error == -EEXIST)
9e7bbccd 198 printk(KERN_ERR "%s failed for %s with "
5c73a3fb
GKH
199 "-EEXIST, don't try to register things with "
200 "the same name in the same directory.\n",
9e7bbccd 201 __FUNCTION__, kobject_name(kobj));
dcd0da00 202 else
9e7bbccd
GKH
203 printk(KERN_ERR "%s failed for %s (%d)\n",
204 __FUNCTION__, kobject_name(kobj), error);
5c73a3fb 205 dump_stack();
0f4dafc0
KS
206 } else
207 kobj->state_in_sysfs = 1;
1da177e4
LT
208
209 return error;
210}
211
663a4743
GKH
212/**
213 * kobject_set_name_vargs - Set the name of an kobject
214 * @kobj: struct kobject to set the name of
215 * @fmt: format string used to build the name
216 * @vargs: vargs to format the string.
217 */
218static int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
219 va_list vargs)
220{
221 va_list aq;
222 char *name;
223
224 va_copy(aq, vargs);
225 name = kvasprintf(GFP_KERNEL, fmt, vargs);
226 va_end(aq);
227
228 if (!name)
229 return -ENOMEM;
230
0f4dafc0 231
663a4743
GKH
232 /* Free the old name, if necessary. */
233 kfree(kobj->k_name);
234
235 /* Now, set the new name */
236 kobj->k_name = name;
0f4dafc0 237 kobj->state_name_set = 1;
663a4743
GKH
238
239 return 0;
240}
1da177e4
LT
241
242/**
8c4606b1 243 * kobject_set_name - Set the name of a kobject
663a4743 244 * @kobj: struct kobject to set the name of
8c4606b1 245 * @fmt: format string used to build the name
1da177e4 246 *
8c4606b1
GKH
247 * This sets the name of the kobject. If you have already added the
248 * kobject to the system, you must call kobject_rename() in order to
249 * change the name of the kobject.
1da177e4 250 */
663a4743 251int kobject_set_name(struct kobject *kobj, const char *fmt, ...)
1da177e4 252{
1da177e4 253 va_list args;
663a4743 254 int retval;
1da177e4 255
ce2c9cb0 256 va_start(args, fmt);
663a4743 257 retval = kobject_set_name_vargs(kobj, fmt, args);
1da177e4 258 va_end(args);
1da177e4 259
663a4743 260 return retval;
1da177e4 261}
1da177e4
LT
262EXPORT_SYMBOL(kobject_set_name);
263
e86000d0 264/**
f9cb074b 265 * kobject_init - initialize a kobject structure
e86000d0
GKH
266 * @kobj: pointer to the kobject to initialize
267 * @ktype: pointer to the ktype for this kobject.
268 *
269 * This function will properly initialize a kobject such that it can then
270 * be passed to the kobject_add() call.
271 *
272 * After this function is called, the kobject MUST be cleaned up by a call
273 * to kobject_put(), not by a call to kfree directly to ensure that all of
274 * the memory is cleaned up properly.
275 */
f9cb074b 276void kobject_init(struct kobject *kobj, struct kobj_type *ktype)
e86000d0
GKH
277{
278 char *err_str;
279
280 if (!kobj) {
281 err_str = "invalid kobject pointer!";
282 goto error;
283 }
284 if (!ktype) {
285 err_str = "must have a ktype to be initialized properly!\n";
286 goto error;
287 }
0f4dafc0 288 if (kobj->state_initialized) {
e86000d0 289 /* do not error out as sometimes we can recover */
0f4dafc0
KS
290 printk(KERN_ERR "kobject (%p): tried to init an initialized "
291 "object, something is seriously wrong.\n", kobj);
e86000d0
GKH
292 dump_stack();
293 }
294
295 kref_init(&kobj->kref);
296 INIT_LIST_HEAD(&kobj->entry);
297 kobj->ktype = ktype;
0f4dafc0
KS
298 kobj->state_name_set = 0;
299 kobj->state_in_sysfs = 0;
300 kobj->state_add_uevent_sent = 0;
301 kobj->state_remove_uevent_sent = 0;
302 kobj->state_initialized = 1;
e86000d0
GKH
303 return;
304
305error:
0f4dafc0 306 printk(KERN_ERR "kobject (%p): %s\n", kobj, err_str);
e86000d0
GKH
307 dump_stack();
308}
f9cb074b 309EXPORT_SYMBOL(kobject_init);
e86000d0 310
244f6cee
GKH
311static int kobject_add_varg(struct kobject *kobj, struct kobject *parent,
312 const char *fmt, va_list vargs)
313{
314 va_list aq;
315 int retval;
316
317 va_copy(aq, vargs);
318 retval = kobject_set_name_vargs(kobj, fmt, aq);
319 va_end(aq);
320 if (retval) {
321 printk(KERN_ERR "kobject: can not set name properly!\n");
322 return retval;
323 }
324 kobj->parent = parent;
9e7bbccd 325 return kobject_add_internal(kobj);
244f6cee
GKH
326}
327
328/**
b2d6db58 329 * kobject_add - the main kobject add function
244f6cee
GKH
330 * @kobj: the kobject to add
331 * @parent: pointer to the parent of the kobject.
332 * @fmt: format to name the kobject with.
333 *
334 * The kobject name is set and added to the kobject hierarchy in this
335 * function.
336 *
337 * If @parent is set, then the parent of the @kobj will be set to it.
338 * If @parent is NULL, then the parent of the @kobj will be set to the
339 * kobject associted with the kset assigned to this kobject. If no kset
340 * is assigned to the kobject, then the kobject will be located in the
341 * root of the sysfs tree.
342 *
343 * If this function returns an error, kobject_put() must be called to
344 * properly clean up the memory associated with the object.
244f6cee
GKH
345 * Under no instance should the kobject that is passed to this function
346 * be directly freed with a call to kfree(), that can leak memory.
347 *
0f4dafc0 348 * Note, no "add" uevent will be created with this call, the caller should set
244f6cee
GKH
349 * up all of the necessary sysfs files for the object and then call
350 * kobject_uevent() with the UEVENT_ADD parameter to ensure that
351 * userspace is properly notified of this kobject's creation.
352 */
b2d6db58
GKH
353int kobject_add(struct kobject *kobj, struct kobject *parent,
354 const char *fmt, ...)
244f6cee
GKH
355{
356 va_list args;
357 int retval;
358
359 if (!kobj)
360 return -EINVAL;
361
0f4dafc0
KS
362 if (!kobj->state_initialized) {
363 printk(KERN_ERR "kobject '%s' (%p): tried to add an "
364 "uninitialized object, something is seriously wrong.\n",
365 kobject_name(kobj), kobj);
366 dump_stack();
367 return -EINVAL;
368 }
244f6cee
GKH
369 va_start(args, fmt);
370 retval = kobject_add_varg(kobj, parent, fmt, args);
371 va_end(args);
372
373 return retval;
374}
b2d6db58 375EXPORT_SYMBOL(kobject_add);
244f6cee 376
c11c4154
GKH
377/**
378 * kobject_init_and_add - initialize a kobject structure and add it to the kobject hierarchy
379 * @kobj: pointer to the kobject to initialize
380 * @ktype: pointer to the ktype for this kobject.
381 * @parent: pointer to the parent of this kobject.
382 * @fmt: the name of the kobject.
383 *
f9cb074b 384 * This function combines the call to kobject_init() and
b2d6db58
GKH
385 * kobject_add(). The same type of error handling after a call to
386 * kobject_add() and kobject lifetime rules are the same here.
c11c4154
GKH
387 */
388int kobject_init_and_add(struct kobject *kobj, struct kobj_type *ktype,
389 struct kobject *parent, const char *fmt, ...)
390{
391 va_list args;
392 int retval;
393
f9cb074b 394 kobject_init(kobj, ktype);
c11c4154
GKH
395
396 va_start(args, fmt);
397 retval = kobject_add_varg(kobj, parent, fmt, args);
398 va_end(args);
399
400 return retval;
401}
402EXPORT_SYMBOL_GPL(kobject_init_and_add);
403
1da177e4
LT
404/**
405 * kobject_rename - change the name of an object
406 * @kobj: object in question.
407 * @new_name: object's new name
408 */
409
f3b4f3c6 410int kobject_rename(struct kobject * kobj, const char *new_name)
1da177e4
LT
411{
412 int error = 0;
ca2f37db
JT
413 const char *devpath = NULL;
414 char *devpath_string = NULL;
415 char *envp[2];
1da177e4
LT
416
417 kobj = kobject_get(kobj);
418 if (!kobj)
419 return -EINVAL;
b592fcfe
EB
420 if (!kobj->parent)
421 return -EINVAL;
ca2f37db 422
34358c26
GKH
423 /* see if this name is already in use */
424 if (kobj->kset) {
425 struct kobject *temp_kobj;
426 temp_kobj = kset_find_obj(kobj->kset, new_name);
427 if (temp_kobj) {
71409a49
JB
428 printk(KERN_WARNING "kobject '%s' cannot be renamed "
429 "to '%s' as '%s' is already in existence.\n",
34358c26
GKH
430 kobject_name(kobj), new_name, new_name);
431 kobject_put(temp_kobj);
432 return -EINVAL;
433 }
434 }
435
ca2f37db
JT
436 devpath = kobject_get_path(kobj, GFP_KERNEL);
437 if (!devpath) {
438 error = -ENOMEM;
439 goto out;
440 }
441 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
442 if (!devpath_string) {
443 error = -ENOMEM;
444 goto out;
445 }
446 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
447 envp[0] = devpath_string;
448 envp[1] = NULL;
ca2f37db 449
90bc6135 450 error = sysfs_rename_dir(kobj, new_name);
ca2f37db
JT
451
452 /* This function is mostly/only used for network interface.
453 * Some hotplug package track interfaces by their name and
454 * therefore want to know when the name is changed by the user. */
455 if (!error)
456 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
457
458out:
459 kfree(devpath_string);
460 kfree(devpath);
b592fcfe
EB
461 kobject_put(kobj);
462
463 return error;
464}
465
8a82472f
CH
466/**
467 * kobject_move - move object to another parent
468 * @kobj: object in question.
c744aeae 469 * @new_parent: object's new parent (can be NULL)
8a82472f
CH
470 */
471
472int kobject_move(struct kobject *kobj, struct kobject *new_parent)
473{
474 int error;
475 struct kobject *old_parent;
476 const char *devpath = NULL;
477 char *devpath_string = NULL;
478 char *envp[2];
479
480 kobj = kobject_get(kobj);
481 if (!kobj)
482 return -EINVAL;
483 new_parent = kobject_get(new_parent);
484 if (!new_parent) {
c744aeae
CH
485 if (kobj->kset)
486 new_parent = kobject_get(&kobj->kset->kobj);
8a82472f
CH
487 }
488 /* old object path */
489 devpath = kobject_get_path(kobj, GFP_KERNEL);
490 if (!devpath) {
491 error = -ENOMEM;
492 goto out;
493 }
494 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
495 if (!devpath_string) {
496 error = -ENOMEM;
497 goto out;
498 }
499 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
500 envp[0] = devpath_string;
501 envp[1] = NULL;
502 error = sysfs_move_dir(kobj, new_parent);
503 if (error)
504 goto out;
505 old_parent = kobj->parent;
506 kobj->parent = new_parent;
9e993efb 507 new_parent = NULL;
8a82472f
CH
508 kobject_put(old_parent);
509 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
510out:
9e993efb 511 kobject_put(new_parent);
8a82472f
CH
512 kobject_put(kobj);
513 kfree(devpath_string);
514 kfree(devpath);
515 return error;
516}
517
1da177e4
LT
518/**
519 * kobject_del - unlink kobject from hierarchy.
520 * @kobj: object.
521 */
522
523void kobject_del(struct kobject * kobj)
524{
31b9025a
GKH
525 if (!kobj)
526 return;
0f4dafc0 527
1da177e4 528 sysfs_remove_dir(kobj);
0f4dafc0
KS
529 kobj->state_in_sysfs = 0;
530 kobj_kset_leave(kobj);
531 kobject_put(kobj->parent);
532 kobj->parent = NULL;
1da177e4
LT
533}
534
1da177e4
LT
535/**
536 * kobject_get - increment refcount for object.
537 * @kobj: object.
538 */
539
540struct kobject * kobject_get(struct kobject * kobj)
541{
542 if (kobj)
543 kref_get(&kobj->kref);
544 return kobj;
545}
546
18041f47
GKH
547/*
548 * kobject_cleanup - free kobject resources.
549 * @kobj: object to cleanup
1da177e4 550 */
18041f47 551static void kobject_cleanup(struct kobject *kobj)
1da177e4 552{
0f4dafc0 553 struct kobj_type *t = get_ktype(kobj);
ce2c9cb0 554 const char *name = kobj->k_name;
0f4dafc0 555 int name_set = kobj->state_name_set;
1da177e4 556
9f66fa2a
GKH
557 pr_debug("kobject: '%s' (%p): %s\n",
558 kobject_name(kobj), kobj, __FUNCTION__);
0f4dafc0
KS
559
560 if (t && !t->release)
561 pr_debug("kobject: '%s' (%p): does not have a release() "
562 "function, it is broken and must be fixed.\n",
563 kobject_name(kobj), kobj);
564
565 /* send "remove" if the caller did not do it but sent "add" */
566 if (kobj->state_add_uevent_sent && !kobj->state_remove_uevent_sent) {
567 pr_debug("kobject: '%s' (%p): auto cleanup 'remove' event\n",
568 kobject_name(kobj), kobj);
569 kobject_uevent(kobj, KOBJ_REMOVE);
570 }
571
572 /* remove from sysfs if the caller did not do it */
573 if (kobj->state_in_sysfs) {
574 pr_debug("kobject: '%s' (%p): auto cleanup kobject_del\n",
575 kobject_name(kobj), kobj);
576 kobject_del(kobj);
577 }
578
ce2c9cb0 579 if (t && t->release) {
0f4dafc0
KS
580 pr_debug("kobject: '%s' (%p): calling ktype release\n",
581 kobject_name(kobj), kobj);
1da177e4 582 t->release(kobj);
0f4dafc0
KS
583 }
584
585 /* free name if we allocated it */
586 if (name_set && name) {
587 pr_debug("kobject: '%s': free name\n", name);
ce2c9cb0
GKH
588 kfree(name);
589 }
1da177e4
LT
590}
591
592static void kobject_release(struct kref *kref)
593{
594 kobject_cleanup(container_of(kref, struct kobject, kref));
595}
596
597/**
598 * kobject_put - decrement refcount for object.
599 * @kobj: object.
600 *
601 * Decrement the refcount, and if 0, call kobject_cleanup().
602 */
603void kobject_put(struct kobject * kobj)
604{
605 if (kobj)
606 kref_put(&kobj->kref, kobject_release);
607}
608
3f9e3ee9 609static void dynamic_kobj_release(struct kobject *kobj)
7423172a 610{
0f4dafc0 611 pr_debug("kobject: (%p): %s\n", kobj, __FUNCTION__);
7423172a
JN
612 kfree(kobj);
613}
614
3f9e3ee9 615static struct kobj_type dynamic_kobj_ktype = {
386f275f
KS
616 .release = dynamic_kobj_release,
617 .sysfs_ops = &kobj_sysfs_ops,
7423172a
JN
618};
619
43968d2f 620/**
3f9e3ee9
GKH
621 * kobject_create - create a struct kobject dynamically
622 *
623 * This function creates a kobject structure dynamically and sets it up
624 * to be a "dynamic" kobject with a default release function set up.
625 *
626 * If the kobject was not able to be created, NULL will be returned.
43968d2f 627 * The kobject structure returned from here must be cleaned up with a
f9cb074b 628 * call to kobject_put() and not kfree(), as kobject_init() has
43968d2f 629 * already been called on this structure.
3f9e3ee9 630 */
43968d2f 631struct kobject *kobject_create(void)
3f9e3ee9
GKH
632{
633 struct kobject *kobj;
634
635 kobj = kzalloc(sizeof(*kobj), GFP_KERNEL);
636 if (!kobj)
637 return NULL;
638
f9cb074b 639 kobject_init(kobj, &dynamic_kobj_ktype);
3f9e3ee9
GKH
640 return kobj;
641}
642
643/**
644 * kobject_create_and_add - create a struct kobject dynamically and register it with sysfs
645 *
646 * @name: the name for the kset
647 * @parent: the parent kobject of this kobject, if any.
648 *
649 * This function creates a kset structure dynamically and registers it
650 * with sysfs. When you are finished with this structure, call
78a2d906 651 * kobject_put() and the structure will be dynamically freed when
3f9e3ee9
GKH
652 * it is no longer being used.
653 *
654 * If the kobject was not able to be created, NULL will be returned.
655 */
656struct kobject *kobject_create_and_add(const char *name, struct kobject *parent)
657{
658 struct kobject *kobj;
659 int retval;
660
661 kobj = kobject_create();
662 if (!kobj)
663 return NULL;
664
b2d6db58 665 retval = kobject_add(kobj, parent, "%s", name);
3f9e3ee9
GKH
666 if (retval) {
667 printk(KERN_WARNING "%s: kobject_add error: %d\n",
668 __FUNCTION__, retval);
669 kobject_put(kobj);
670 kobj = NULL;
671 }
672 return kobj;
673}
674EXPORT_SYMBOL_GPL(kobject_create_and_add);
675
1da177e4
LT
676/**
677 * kset_init - initialize a kset for use
678 * @k: kset
679 */
680
681void kset_init(struct kset * k)
682{
e1543ddf 683 kobject_init_internal(&k->kobj);
1da177e4
LT
684 INIT_LIST_HEAD(&k->list);
685 spin_lock_init(&k->list_lock);
686}
687
23b5212c
KS
688/* default kobject attribute operations */
689static ssize_t kobj_attr_show(struct kobject *kobj, struct attribute *attr,
690 char *buf)
691{
692 struct kobj_attribute *kattr;
693 ssize_t ret = -EIO;
694
695 kattr = container_of(attr, struct kobj_attribute, attr);
696 if (kattr->show)
697 ret = kattr->show(kobj, kattr, buf);
698 return ret;
699}
700
701static ssize_t kobj_attr_store(struct kobject *kobj, struct attribute *attr,
702 const char *buf, size_t count)
703{
704 struct kobj_attribute *kattr;
705 ssize_t ret = -EIO;
706
707 kattr = container_of(attr, struct kobj_attribute, attr);
708 if (kattr->store)
709 ret = kattr->store(kobj, kattr, buf, count);
710 return ret;
711}
712
713struct sysfs_ops kobj_sysfs_ops = {
714 .show = kobj_attr_show,
715 .store = kobj_attr_store,
716};
1da177e4 717
1da177e4
LT
718/**
719 * kset_register - initialize and add a kset.
720 * @k: kset.
721 */
722
723int kset_register(struct kset * k)
724{
80f03e34
KS
725 int err;
726
31b9025a
GKH
727 if (!k)
728 return -EINVAL;
80f03e34 729
1da177e4 730 kset_init(k);
12e339ac 731 err = kobject_add_internal(&k->kobj);
80f03e34
KS
732 if (err)
733 return err;
734 kobject_uevent(&k->kobj, KOBJ_ADD);
735 return 0;
1da177e4
LT
736}
737
738
739/**
740 * kset_unregister - remove a kset.
741 * @k: kset.
742 */
743
744void kset_unregister(struct kset * k)
745{
31b9025a
GKH
746 if (!k)
747 return;
78a2d906 748 kobject_put(&k->kobj);
1da177e4
LT
749}
750
751
752/**
753 * kset_find_obj - search for object in kset.
754 * @kset: kset we're looking in.
755 * @name: object's name.
756 *
757 * Lock kset via @kset->subsys, and iterate over @kset->list,
758 * looking for a matching kobject. If matching object is found
759 * take a reference and return the object.
760 */
761
762struct kobject * kset_find_obj(struct kset * kset, const char * name)
763{
764 struct list_head * entry;
765 struct kobject * ret = NULL;
766
767 spin_lock(&kset->list_lock);
768 list_for_each(entry,&kset->list) {
769 struct kobject * k = to_kobj(entry);
770 if (kobject_name(k) && !strcmp(kobject_name(k),name)) {
771 ret = kobject_get(k);
772 break;
773 }
774 }
775 spin_unlock(&kset->list_lock);
776 return ret;
777}
778
b727c702
GKH
779static void kset_release(struct kobject *kobj)
780{
781 struct kset *kset = container_of(kobj, struct kset, kobj);
9f66fa2a
GKH
782 pr_debug("kobject: '%s' (%p): %s\n",
783 kobject_name(kobj), kobj, __FUNCTION__);
b727c702
GKH
784 kfree(kset);
785}
786
386f275f
KS
787static struct kobj_type kset_ktype = {
788 .sysfs_ops = &kobj_sysfs_ops,
b727c702
GKH
789 .release = kset_release,
790};
791
792/**
793 * kset_create - create a struct kset dynamically
794 *
795 * @name: the name for the kset
796 * @uevent_ops: a struct kset_uevent_ops for the kset
797 * @parent_kobj: the parent kobject of this kset, if any.
798 *
799 * This function creates a kset structure dynamically. This structure can
800 * then be registered with the system and show up in sysfs with a call to
801 * kset_register(). When you are finished with this structure, if
802 * kset_register() has been called, call kset_unregister() and the
803 * structure will be dynamically freed when it is no longer being used.
804 *
805 * If the kset was not able to be created, NULL will be returned.
806 */
807static struct kset *kset_create(const char *name,
808 struct kset_uevent_ops *uevent_ops,
809 struct kobject *parent_kobj)
810{
811 struct kset *kset;
812
813 kset = kzalloc(sizeof(*kset), GFP_KERNEL);
814 if (!kset)
815 return NULL;
816 kobject_set_name(&kset->kobj, name);
817 kset->uevent_ops = uevent_ops;
818 kset->kobj.parent = parent_kobj;
819
820 /*
386f275f 821 * The kobject of this kset will have a type of kset_ktype and belong to
b727c702
GKH
822 * no kset itself. That way we can properly free it when it is
823 * finished being used.
824 */
386f275f 825 kset->kobj.ktype = &kset_ktype;
b727c702
GKH
826 kset->kobj.kset = NULL;
827
828 return kset;
829}
830
831/**
832 * kset_create_and_add - create a struct kset dynamically and add it to sysfs
833 *
834 * @name: the name for the kset
835 * @uevent_ops: a struct kset_uevent_ops for the kset
836 * @parent_kobj: the parent kobject of this kset, if any.
837 *
838 * This function creates a kset structure dynamically and registers it
839 * with sysfs. When you are finished with this structure, call
840 * kset_unregister() and the structure will be dynamically freed when it
841 * is no longer being used.
842 *
843 * If the kset was not able to be created, NULL will be returned.
844 */
845struct kset *kset_create_and_add(const char *name,
846 struct kset_uevent_ops *uevent_ops,
847 struct kobject *parent_kobj)
848{
849 struct kset *kset;
850 int error;
851
852 kset = kset_create(name, uevent_ops, parent_kobj);
853 if (!kset)
854 return NULL;
855 error = kset_register(kset);
856 if (error) {
857 kfree(kset);
858 return NULL;
859 }
860 return kset;
861}
862EXPORT_SYMBOL_GPL(kset_create_and_add);
863
1da177e4
LT
864EXPORT_SYMBOL(kobject_get);
865EXPORT_SYMBOL(kobject_put);
1da177e4
LT
866EXPORT_SYMBOL(kobject_del);
867
868EXPORT_SYMBOL(kset_register);
869EXPORT_SYMBOL(kset_unregister);