MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / lib / kobject.c
blob7dd5c0e9d996adb07681e02037e746b68a2a2f50
1 /*
2 * kobject.c - library routines for handling generic kernel objects
4 * Copyright (c) 2002-2003 Patrick Mochel <mochel@osdl.org>
6 * This file is released under the GPLv2.
9 * Please see the file Documentation/kobject.txt for critical information
10 * about using the kobject interface.
13 #include <linux/kobject.h>
14 #include <linux/string.h>
15 #include <linux/module.h>
16 #include <linux/stat.h>
17 #include <linux/slab.h>
19 /**
20 * populate_dir - populate directory with attributes.
21 * @kobj: object we're working on.
23 * Most subsystems have a set of default attributes that
24 * are associated with an object that registers with them.
25 * This is a helper called during object registration that
26 * loops through the default attributes of the subsystem
27 * and creates attributes files for them in sysfs.
31 static int populate_dir(struct kobject * kobj)
33 struct kobj_type * t = get_ktype(kobj);
34 struct attribute * attr;
35 int error = 0;
36 int i;
38 if (t && t->default_attrs) {
39 for (i = 0; (attr = t->default_attrs[i]) != NULL; i++) {
40 if ((error = sysfs_create_file(kobj,attr)))
41 break;
44 return error;
47 static int create_dir(struct kobject * kobj)
49 int error = 0;
50 if (kobject_name(kobj)) {
51 error = sysfs_create_dir(kobj);
52 if (!error) {
53 if ((error = populate_dir(kobj)))
54 sysfs_remove_dir(kobj);
57 return error;
60 static inline struct kobject * to_kobj(struct list_head * entry)
62 return container_of(entry,struct kobject,entry);
65 static int get_kobj_path_length(struct kobject *kobj)
67 int length = 1;
68 struct kobject * parent = kobj;
70 /* walk up the ancestors until we hit the one pointing to the
71 * root.
72 * Add 1 to strlen for leading '/' of each level.
74 do {
75 if (kobject_name(parent) == NULL)
76 return 0;
77 length += strlen(kobject_name(parent)) + 1;
78 parent = parent->parent;
79 } while (parent);
80 return length;
83 static void fill_kobj_path(struct kobject *kobj, char *path, int length)
85 struct kobject * parent;
87 --length;
88 for (parent = kobj; parent; parent = parent->parent) {
89 int cur = strlen(kobject_name(parent));
90 /* back up enough to print this name with '/' */
91 length -= cur;
92 strncpy (path + length, kobject_name(parent), cur);
93 *(path + --length) = '/';
96 pr_debug("%s: path = '%s'\n",__FUNCTION__,path);
99 /**
100 * kobject_get_path - generate and return the path associated with a given kobj
101 * and kset pair. The result must be freed by the caller with kfree().
103 * @kobj: kobject in question, with which to build the path
104 * @gfp_mask: the allocation type used to allocate the path
106 char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
108 char *path;
109 int len;
111 len = get_kobj_path_length(kobj);
112 if (len == 0)
113 return NULL;
114 path = kmalloc(len, gfp_mask);
115 if (!path)
116 return NULL;
117 memset(path, 0x00, len);
118 fill_kobj_path(kobj, path, len);
120 return path;
122 EXPORT_SYMBOL_GPL(kobject_get_path);
125 * kobject_init - initialize object.
126 * @kobj: object in question.
128 void kobject_init(struct kobject * kobj)
130 kref_init(&kobj->kref);
131 INIT_LIST_HEAD(&kobj->entry);
132 init_waitqueue_head(&kobj->poll);
133 kobj->kset = kset_get(kobj->kset);
138 * unlink - remove kobject from kset list.
139 * @kobj: kobject.
141 * Remove the kobject from the kset list and decrement
142 * its parent's refcount.
143 * This is separated out, so we can use it in both
144 * kobject_del() and kobject_add() on error.
147 static void unlink(struct kobject * kobj)
149 if (kobj->kset) {
150 spin_lock(&kobj->kset->list_lock);
151 list_del_init(&kobj->entry);
152 spin_unlock(&kobj->kset->list_lock);
154 kobject_put(kobj);
158 * kobject_add - add an object to the hierarchy.
159 * @kobj: object.
162 int kobject_add(struct kobject * kobj)
164 int error = 0;
165 struct kobject * parent;
167 if (!(kobj = kobject_get(kobj)))
168 return -ENOENT;
169 if (!kobj->k_name)
170 kobj->k_name = kobj->name;
171 if (!kobj->k_name) {
172 pr_debug("kobject attempted to be registered with no name!\n");
173 WARN_ON(1);
174 return -EINVAL;
176 parent = kobject_get(kobj->parent);
178 pr_debug("kobject %s: registering. parent: %s, set: %s\n",
179 kobject_name(kobj), parent ? kobject_name(parent) : "<NULL>",
180 kobj->kset ? kobj->kset->kobj.name : "<NULL>" );
182 if (kobj->kset) {
183 spin_lock(&kobj->kset->list_lock);
185 if (!parent)
186 parent = kobject_get(&kobj->kset->kobj);
188 list_add_tail(&kobj->entry,&kobj->kset->list);
189 spin_unlock(&kobj->kset->list_lock);
191 kobj->parent = parent;
193 error = create_dir(kobj);
194 if (error) {
195 /* unlink does the kobject_put() for us */
196 unlink(kobj);
197 if (parent)
198 kobject_put(parent);
200 /* be noisy on error issues */
201 if (error == -EEXIST)
202 printk("kobject_add failed for %s with -EEXIST, "
203 "don't try to register things with the "
204 "same name in the same directory.\n",
205 kobject_name(kobj));
206 else
207 printk("kobject_add failed for %s (%d)\n",
208 kobject_name(kobj), error);
209 dump_stack();
212 return error;
217 * kobject_register - initialize and add an object.
218 * @kobj: object in question.
221 int kobject_register(struct kobject * kobj)
223 int error = -EINVAL;
224 if (kobj) {
225 kobject_init(kobj);
226 error = kobject_add(kobj);
227 if (!error)
228 kobject_uevent(kobj, KOBJ_ADD);
230 return error;
235 * kobject_set_name - Set the name of an object
236 * @kobj: object.
237 * @fmt: format string used to build the name
239 * If strlen(name) >= KOBJ_NAME_LEN, then use a dynamically allocated
240 * string that @kobj->k_name points to. Otherwise, use the static
241 * @kobj->name array.
243 int kobject_set_name(struct kobject * kobj, const char * fmt, ...)
245 int error = 0;
246 int limit = KOBJ_NAME_LEN;
247 int need;
248 va_list args;
249 char * name;
252 * First, try the static array
254 va_start(args,fmt);
255 need = vsnprintf(kobj->name,limit,fmt,args);
256 va_end(args);
257 if (need < limit)
258 name = kobj->name;
259 else {
261 * Need more space? Allocate it and try again
263 limit = need + 1;
264 name = kmalloc(limit,GFP_KERNEL);
265 if (!name) {
266 error = -ENOMEM;
267 goto Done;
269 va_start(args,fmt);
270 need = vsnprintf(name,limit,fmt,args);
271 va_end(args);
273 /* Still? Give up. */
274 if (need >= limit) {
275 kfree(name);
276 error = -EFAULT;
277 goto Done;
281 /* Free the old name, if necessary. */
282 if (kobj->k_name && kobj->k_name != kobj->name)
283 kfree(kobj->k_name);
285 /* Now, set the new name */
286 kobj->k_name = name;
287 Done:
288 return error;
291 EXPORT_SYMBOL(kobject_set_name);
295 * kobject_rename - change the name of an object
296 * @kobj: object in question.
297 * @new_name: object's new name
300 int kobject_rename(struct kobject * kobj, const char *new_name)
302 int error = 0;
304 kobj = kobject_get(kobj);
305 if (!kobj)
306 return -EINVAL;
307 error = sysfs_rename_dir(kobj, new_name);
308 kobject_put(kobj);
310 return error;
314 * kobject_del - unlink kobject from hierarchy.
315 * @kobj: object.
318 void kobject_del(struct kobject * kobj)
320 sysfs_remove_dir(kobj);
321 unlink(kobj);
325 * kobject_unregister - remove object from hierarchy and decrement refcount.
326 * @kobj: object going away.
329 void kobject_unregister(struct kobject * kobj)
331 pr_debug("kobject %s: unregistering\n",kobject_name(kobj));
332 kobject_uevent(kobj, KOBJ_REMOVE);
333 kobject_del(kobj);
334 kobject_put(kobj);
338 * kobject_get - increment refcount for object.
339 * @kobj: object.
342 struct kobject * kobject_get(struct kobject * kobj)
344 if (kobj)
345 kref_get(&kobj->kref);
346 return kobj;
350 * kobject_cleanup - free kobject resources.
351 * @kobj: object.
354 void kobject_cleanup(struct kobject * kobj)
356 struct kobj_type * t = get_ktype(kobj);
357 struct kset * s = kobj->kset;
358 struct kobject * parent = kobj->parent;
360 pr_debug("kobject %s: cleaning up\n",kobject_name(kobj));
361 if (kobj->k_name != kobj->name)
362 kfree(kobj->k_name);
363 kobj->k_name = NULL;
364 if (t && t->release)
365 t->release(kobj);
366 if (s)
367 kset_put(s);
368 if (parent)
369 kobject_put(parent);
372 static void kobject_release(struct kref *kref)
374 kobject_cleanup(container_of(kref, struct kobject, kref));
378 * kobject_put - decrement refcount for object.
379 * @kobj: object.
381 * Decrement the refcount, and if 0, call kobject_cleanup().
383 void kobject_put(struct kobject * kobj)
385 if (kobj)
386 kref_put(&kobj->kref, kobject_release);
390 static void dir_release(struct kobject *kobj)
392 kfree(kobj);
395 static struct kobj_type dir_ktype = {
396 .release = dir_release,
397 .sysfs_ops = NULL,
398 .default_attrs = NULL,
402 * kobject_add_dir - add sub directory of object.
403 * @parent: object in which a directory is created.
404 * @name: directory name.
406 * Add a plain directory object as child of given object.
408 struct kobject *kobject_add_dir(struct kobject *parent, const char *name)
410 struct kobject *k;
411 int ret;
413 if (!parent)
414 return NULL;
416 k = kzalloc(sizeof(*k), GFP_KERNEL);
417 if (!k)
418 return NULL;
420 k->parent = parent;
421 k->ktype = &dir_ktype;
422 kobject_set_name(k, name);
423 ret = kobject_register(k);
424 if (ret < 0) {
425 printk(KERN_WARNING "kobject_add_dir: "
426 "kobject_register error: %d\n", ret);
427 kobject_del(k);
428 return NULL;
431 return k;
435 * kset_init - initialize a kset for use
436 * @k: kset
439 void kset_init(struct kset * k)
441 kobject_init(&k->kobj);
442 INIT_LIST_HEAD(&k->list);
443 spin_lock_init(&k->list_lock);
448 * kset_add - add a kset object to the hierarchy.
449 * @k: kset.
451 * Simply, this adds the kset's embedded kobject to the
452 * hierarchy.
453 * We also try to make sure that the kset's embedded kobject
454 * has a parent before it is added. We only care if the embedded
455 * kobject is not part of a kset itself, since kobject_add()
456 * assigns a parent in that case.
457 * If that is the case, and the kset has a controlling subsystem,
458 * then we set the kset's parent to be said subsystem.
461 int kset_add(struct kset * k)
463 if (!k->kobj.parent && !k->kobj.kset && k->subsys)
464 k->kobj.parent = &k->subsys->kset.kobj;
466 return kobject_add(&k->kobj);
471 * kset_register - initialize and add a kset.
472 * @k: kset.
475 int kset_register(struct kset * k)
477 kset_init(k);
478 return kset_add(k);
483 * kset_unregister - remove a kset.
484 * @k: kset.
487 void kset_unregister(struct kset * k)
489 kobject_unregister(&k->kobj);
494 * kset_find_obj - search for object in kset.
495 * @kset: kset we're looking in.
496 * @name: object's name.
498 * Lock kset via @kset->subsys, and iterate over @kset->list,
499 * looking for a matching kobject. If matching object is found
500 * take a reference and return the object.
503 struct kobject * kset_find_obj(struct kset * kset, const char * name)
505 struct list_head * entry;
506 struct kobject * ret = NULL;
508 spin_lock(&kset->list_lock);
509 list_for_each(entry,&kset->list) {
510 struct kobject * k = to_kobj(entry);
511 if (kobject_name(k) && !strcmp(kobject_name(k),name)) {
512 ret = kobject_get(k);
513 break;
516 spin_unlock(&kset->list_lock);
517 return ret;
521 void subsystem_init(struct subsystem * s)
523 init_rwsem(&s->rwsem);
524 kset_init(&s->kset);
528 * subsystem_register - register a subsystem.
529 * @s: the subsystem we're registering.
531 * Once we register the subsystem, we want to make sure that
532 * the kset points back to this subsystem for correct usage of
533 * the rwsem.
536 int subsystem_register(struct subsystem * s)
538 int error;
540 subsystem_init(s);
541 pr_debug("subsystem %s: registering\n",s->kset.kobj.name);
543 if (!(error = kset_add(&s->kset))) {
544 if (!s->kset.subsys)
545 s->kset.subsys = s;
547 return error;
550 void subsystem_unregister(struct subsystem * s)
552 pr_debug("subsystem %s: unregistering\n",s->kset.kobj.name);
553 kset_unregister(&s->kset);
558 * subsystem_create_file - export sysfs attribute file.
559 * @s: subsystem.
560 * @a: subsystem attribute descriptor.
563 int subsys_create_file(struct subsystem * s, struct subsys_attribute * a)
565 int error = 0;
566 if (subsys_get(s)) {
567 error = sysfs_create_file(&s->kset.kobj,&a->attr);
568 subsys_put(s);
570 return error;
575 * subsystem_remove_file - remove sysfs attribute file.
576 * @s: subsystem.
577 * @a: attribute desciptor.
579 #if 0
580 void subsys_remove_file(struct subsystem * s, struct subsys_attribute * a)
582 if (subsys_get(s)) {
583 sysfs_remove_file(&s->kset.kobj,&a->attr);
584 subsys_put(s);
587 #endif /* 0 */
589 EXPORT_SYMBOL(kobject_init);
590 EXPORT_SYMBOL(kobject_register);
591 EXPORT_SYMBOL(kobject_unregister);
592 EXPORT_SYMBOL(kobject_get);
593 EXPORT_SYMBOL(kobject_put);
594 EXPORT_SYMBOL(kobject_add);
595 EXPORT_SYMBOL(kobject_del);
597 EXPORT_SYMBOL(kset_register);
598 EXPORT_SYMBOL(kset_unregister);
600 EXPORT_SYMBOL(subsystem_register);
601 EXPORT_SYMBOL(subsystem_unregister);
602 EXPORT_SYMBOL(subsys_create_file);