]> bbs.cooldavid.org Git - net-next-2.6.git/blame - lib/kobject.c
Kobject: convert kernel/module.c to use kobject_init/add_ng()
[net-next-2.6.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
LT
126
127/**
128 * kobject_init - initialize object.
129 * @kobj: object in question.
130 */
131void kobject_init(struct kobject * kobj)
132{
31b9025a
GKH
133 if (!kobj)
134 return;
1da177e4
LT
135 kref_init(&kobj->kref);
136 INIT_LIST_HEAD(&kobj->entry);
1da177e4
LT
137}
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{
09f82ea9
AS
152 struct kobject *parent = kobj->parent;
153
1da177e4
LT
154 if (kobj->kset) {
155 spin_lock(&kobj->kset->list_lock);
156 list_del_init(&kobj->entry);
157 spin_unlock(&kobj->kset->list_lock);
158 }
09f82ea9 159 kobj->parent = NULL;
1da177e4 160 kobject_put(kobj);
09f82ea9 161 kobject_put(parent);
1da177e4
LT
162}
163
164/**
90bc6135 165 * kobject_add - add an object to the hierarchy.
1da177e4
LT
166 * @kobj: object.
167 */
168
90bc6135 169int kobject_add(struct kobject * kobj)
1da177e4
LT
170{
171 int error = 0;
172 struct kobject * parent;
173
174 if (!(kobj = kobject_get(kobj)))
175 return -ENOENT;
176 if (!kobj->k_name)
ce2c9cb0 177 kobject_set_name(kobj, "NO_NAME");
13507701 178 if (!*kobj->k_name) {
9f66fa2a
GKH
179 pr_debug("kobject (%p) attempted to be registered with no "
180 "name!\n", kobj);
c171fef5 181 WARN_ON(1);
88db4721 182 kobject_put(kobj);
c171fef5
GKH
183 return -EINVAL;
184 }
1da177e4
LT
185 parent = kobject_get(kobj->parent);
186
9f66fa2a
GKH
187 pr_debug("kobject: '%s' (%p): %s: parent: '%s', set: '%s'\n",
188 kobject_name(kobj), kobj, __FUNCTION__,
189 parent ? kobject_name(parent) : "<NULL>",
ce2c9cb0 190 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>" );
1da177e4
LT
191
192 if (kobj->kset) {
cfb36fff 193 kobj->kset = kset_get(kobj->kset);
1da177e4 194
b727c702 195 if (!parent) {
1da177e4 196 parent = kobject_get(&kobj->kset->kobj);
b727c702
GKH
197 /*
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 }
1da177e4 204
cfb36fff
GKH
205 spin_lock(&kobj->kset->list_lock);
206 list_add_tail(&kobj->entry, &kobj->kset->list);
1da177e4 207 spin_unlock(&kobj->kset->list_lock);
460f7e9a 208 kobj->parent = parent;
1da177e4 209 }
1da177e4 210
90bc6135 211 error = create_dir(kobj);
1da177e4
LT
212 if (error) {
213 /* unlink does the kobject_put() for us */
214 unlink(kobj);
dcd0da00
GKH
215
216 /* be noisy on error issues */
217 if (error == -EEXIST)
5c73a3fb
GKH
218 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",
dcd0da00
GKH
221 kobject_name(kobj));
222 else
5c73a3fb 223 printk(KERN_ERR "kobject_add failed for %s (%d)\n",
dcd0da00 224 kobject_name(kobj), error);
5c73a3fb 225 dump_stack();
1da177e4
LT
226 }
227
228 return error;
229}
230
1da177e4
LT
231/**
232 * kobject_register - initialize and add an object.
233 * @kobj: object in question.
234 */
235
236int kobject_register(struct kobject * kobj)
237{
dcd0da00 238 int error = -EINVAL;
1da177e4
LT
239 if (kobj) {
240 kobject_init(kobj);
241 error = kobject_add(kobj);
dcd0da00 242 if (!error)
312c004d 243 kobject_uevent(kobj, KOBJ_ADD);
dcd0da00 244 }
1da177e4
LT
245 return error;
246}
247
663a4743
GKH
248/**
249 * kobject_set_name_vargs - Set the name of an kobject
250 * @kobj: struct kobject to set the name of
251 * @fmt: format string used to build the name
252 * @vargs: vargs to format the string.
253 */
254static int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
255 va_list vargs)
256{
257 va_list aq;
258 char *name;
259
260 va_copy(aq, vargs);
261 name = kvasprintf(GFP_KERNEL, fmt, vargs);
262 va_end(aq);
263
264 if (!name)
265 return -ENOMEM;
266
267 /* Free the old name, if necessary. */
268 kfree(kobj->k_name);
269
270 /* Now, set the new name */
271 kobj->k_name = name;
272
273 return 0;
274}
1da177e4
LT
275
276/**
8c4606b1 277 * kobject_set_name - Set the name of a kobject
663a4743 278 * @kobj: struct kobject to set the name of
8c4606b1 279 * @fmt: format string used to build the name
1da177e4 280 *
8c4606b1
GKH
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.
1da177e4 284 */
663a4743 285int kobject_set_name(struct kobject *kobj, const char *fmt, ...)
1da177e4 286{
1da177e4 287 va_list args;
663a4743 288 int retval;
1da177e4 289
ce2c9cb0 290 va_start(args, fmt);
663a4743 291 retval = kobject_set_name_vargs(kobj, fmt, args);
1da177e4 292 va_end(args);
1da177e4 293
663a4743 294 return retval;
1da177e4 295}
1da177e4
LT
296EXPORT_SYMBOL(kobject_set_name);
297
e86000d0
GKH
298/**
299 * 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
244f6cee
GKH
340static 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
c11c4154
GKH
406/**
407 * 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
1da177e4
LT
433/**
434 * kobject_rename - change the name of an object
435 * @kobj: object in question.
436 * @new_name: object's new name
437 */
438
f3b4f3c6 439int kobject_rename(struct kobject * kobj, const char *new_name)
1da177e4
LT
440{
441 int error = 0;
ca2f37db
JT
442 const char *devpath = NULL;
443 char *devpath_string = NULL;
444 char *envp[2];
1da177e4
LT
445
446 kobj = kobject_get(kobj);
447 if (!kobj)
448 return -EINVAL;
b592fcfe
EB
449 if (!kobj->parent)
450 return -EINVAL;
ca2f37db 451
34358c26
GKH
452 /* 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) {
71409a49
JB
457 printk(KERN_WARNING "kobject '%s' cannot be renamed "
458 "to '%s' as '%s' is already in existence.\n",
34358c26
GKH
459 kobject_name(kobj), new_name, new_name);
460 kobject_put(temp_kobj);
461 return -EINVAL;
462 }
463 }
464
ca2f37db
JT
465 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;
ca2f37db 478
90bc6135 479 error = sysfs_rename_dir(kobj, new_name);
ca2f37db
JT
480
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);
b592fcfe
EB
490 kobject_put(kobj);
491
492 return error;
493}
494
8a82472f
CH
495/**
496 * kobject_move - move object to another parent
497 * @kobj: object in question.
c744aeae 498 * @new_parent: object's new parent (can be NULL)
8a82472f
CH
499 */
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) {
c744aeae
CH
514 if (kobj->kset)
515 new_parent = kobject_get(&kobj->kset->kobj);
8a82472f
CH
516 }
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;
9e993efb 536 new_parent = NULL;
8a82472f
CH
537 kobject_put(old_parent);
538 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
539out:
9e993efb 540 kobject_put(new_parent);
8a82472f
CH
541 kobject_put(kobj);
542 kfree(devpath_string);
543 kfree(devpath);
544 return error;
545}
546
1da177e4
LT
547/**
548 * kobject_del - unlink kobject from hierarchy.
549 * @kobj: object.
550 */
551
552void kobject_del(struct kobject * kobj)
553{
31b9025a
GKH
554 if (!kobj)
555 return;
1da177e4
LT
556 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{
31b9025a
GKH
567 if (!kobj)
568 return;
9f66fa2a
GKH
569 pr_debug("kobject: '%s' (%p): %s\n",
570 kobject_name(kobj), kobj, __FUNCTION__);
312c004d 571 kobject_uevent(kobj, KOBJ_REMOVE);
1da177e4
LT
572 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
18041f47
GKH
588/*
589 * kobject_cleanup - free kobject resources.
590 * @kobj: object to cleanup
1da177e4 591 */
18041f47 592static void kobject_cleanup(struct kobject *kobj)
1da177e4
LT
593{
594 struct kobj_type * t = get_ktype(kobj);
595 struct kset * s = kobj->kset;
ce2c9cb0 596 const char *name = kobj->k_name;
1da177e4 597
9f66fa2a
GKH
598 pr_debug("kobject: '%s' (%p): %s\n",
599 kobject_name(kobj), kobj, __FUNCTION__);
ce2c9cb0 600 if (t && t->release) {
1da177e4 601 t->release(kobj);
ce2c9cb0
GKH
602 /* 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 }
1da177e4
LT
607 if (s)
608 kset_put(s);
1da177e4
LT
609}
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
3f9e3ee9 628static void dynamic_kobj_release(struct kobject *kobj)
7423172a 629{
9f66fa2a
GKH
630 pr_debug("kobject: '%s' (%p): %s\n",
631 kobject_name(kobj), kobj, __FUNCTION__);
7423172a
JN
632 kfree(kobj);
633}
634
3f9e3ee9 635static struct kobj_type dynamic_kobj_ktype = {
386f275f
KS
636 .release = dynamic_kobj_release,
637 .sysfs_ops = &kobj_sysfs_ops,
7423172a
JN
638};
639
43968d2f 640/**
3f9e3ee9
GKH
641 * 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.
43968d2f
GKH
647 * 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.
3f9e3ee9 650 */
43968d2f 651struct kobject *kobject_create(void)
3f9e3ee9
GKH
652{
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
1da177e4
LT
696/**
697 * 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
23b5212c
KS
708/* 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};
1da177e4
LT
737
738/**
739 * kset_add - add a kset object to the hierarchy.
740 * @k: kset.
1da177e4
LT
741 */
742
743int kset_add(struct kset * k)
744{
1da177e4
LT
745 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{
80f03e34
KS
756 int err;
757
31b9025a
GKH
758 if (!k)
759 return -EINVAL;
80f03e34 760
1da177e4 761 kset_init(k);
80f03e34
KS
762 err = kset_add(k);
763 if (err)
764 return err;
765 kobject_uevent(&k->kobj, KOBJ_ADD);
766 return 0;
1da177e4
LT
767}
768
769
770/**
771 * kset_unregister - remove a kset.
772 * @k: kset.
773 */
774
775void kset_unregister(struct kset * k)
776{
31b9025a
GKH
777 if (!k)
778 return;
1da177e4
LT
779 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
b727c702
GKH
810static void kset_release(struct kobject *kobj)
811{
812 struct kset *kset = container_of(kobj, struct kset, kobj);
9f66fa2a
GKH
813 pr_debug("kobject: '%s' (%p): %s\n",
814 kobject_name(kobj), kobj, __FUNCTION__);
b727c702
GKH
815 kfree(kset);
816}
817
386f275f
KS
818static struct kobj_type kset_ktype = {
819 .sysfs_ops = &kobj_sysfs_ops,
b727c702
GKH
820 .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 /*
386f275f 852 * The kobject of this kset will have a type of kset_ktype and belong to
b727c702
GKH
853 * no kset itself. That way we can properly free it when it is
854 * finished being used.
855 */
386f275f 856 kset->kobj.ktype = &kset_ktype;
b727c702
GKH
857 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
1da177e4
LT
895EXPORT_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);