blob: 9500339ae0249d29163261bb489475e90a924a09 [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
98 pr_debug("%s: path = '%s'\n",__FUNCTION__,path);
99}
100
101/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800102 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 *
104 * @kobj: kobject in question, with which to build the path
105 * @gfp_mask: the allocation type used to allocate the path
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800106 *
107 * The result must be freed by the caller with kfree().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
Al Virofd4f2df2005-10-21 03:18:50 -0400109char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 char *path;
112 int len;
113
114 len = get_kobj_path_length(kobj);
Chuck Ebbertb365b3d2006-01-12 20:02:00 -0500115 if (len == 0)
116 return NULL;
Burman Yan4668edc2006-12-06 20:38:51 -0800117 path = kzalloc(len, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (!path)
119 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 fill_kobj_path(kobj, path, len);
121
122 return path;
123}
Dmitry Torokhov80fc9f52006-10-11 01:43:58 -0400124EXPORT_SYMBOL_GPL(kobject_get_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/**
127 * kobject_init - initialize object.
128 * @kobj: object in question.
129 */
130void kobject_init(struct kobject * kobj)
131{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800132 if (!kobj)
133 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 kref_init(&kobj->kref);
135 INIT_LIST_HEAD(&kobj->entry);
136 kobj->kset = kset_get(kobj->kset);
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{
152 if (kobj->kset) {
153 spin_lock(&kobj->kset->list_lock);
154 list_del_init(&kobj->entry);
155 spin_unlock(&kobj->kset->list_lock);
156 }
157 kobject_put(kobj);
158}
159
160/**
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900161 * kobject_add - add an object to the hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * @kobj: object.
163 */
164
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900165int kobject_add(struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 int error = 0;
168 struct kobject * parent;
169
170 if (!(kobj = kobject_get(kobj)))
171 return -ENOENT;
172 if (!kobj->k_name)
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700173 kobject_set_name(kobj, "NO_NAME");
Martin Stoilov13507702007-02-05 16:15:23 -0800174 if (!*kobj->k_name) {
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800175 pr_debug("kobject attempted to be registered with no name!\n");
176 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
182 pr_debug("kobject %s: registering. parent: %s, set: %s\n",
183 kobject_name(kobj), parent ? kobject_name(parent) : "<NULL>",
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700184 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 if (kobj->kset) {
187 spin_lock(&kobj->kset->list_lock);
188
189 if (!parent)
190 parent = kobject_get(&kobj->kset->kobj);
191
192 list_add_tail(&kobj->entry,&kobj->kset->list);
193 spin_unlock(&kobj->kset->list_lock);
Dmitriy Monakhov460f7e92007-03-10 14:00:10 +0300194 kobj->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900197 error = create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (error) {
199 /* unlink does the kobject_put() for us */
200 unlink(kobj);
Mariusz Kozlowskib067db42007-01-02 13:44:44 +0100201 kobject_put(parent);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800202
203 /* be noisy on error issues */
204 if (error == -EEXIST)
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700205 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",
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800208 kobject_name(kobj));
209 else
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700210 printk(KERN_ERR "kobject_add failed for %s (%d)\n",
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800211 kobject_name(kobj), error);
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700212 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
215 return error;
216}
217
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700218/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * kobject_register - initialize and add an object.
220 * @kobj: object in question.
221 */
222
223int kobject_register(struct kobject * kobj)
224{
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800225 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (kobj) {
227 kobject_init(kobj);
228 error = kobject_add(kobj);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800229 if (!error)
Kay Sievers312c0042005-11-16 09:00:00 +0100230 kobject_uevent(kobj, KOBJ_ADD);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return error;
233}
234
235
236/**
Greg Kroah-Hartman8c4606b2007-12-04 14:45:47 +0800237 * kobject_set_name - Set the name of a kobject
238 * @kobj: kobject to name
239 * @fmt: format string used to build the name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 *
Greg Kroah-Hartman8c4606b2007-12-04 14:45:47 +0800241 * This sets the name of the kobject. If you have already added the
242 * kobject to the system, you must call kobject_rename() in order to
243 * change the name of the kobject.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245int kobject_set_name(struct kobject * kobj, const char * fmt, ...)
246{
247 int error = 0;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700248 int limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 int need;
250 va_list args;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700251 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700253 /* find out how big a buffer we need */
254 name = kmalloc(1024, GFP_KERNEL);
255 if (!name) {
256 error = -ENOMEM;
257 goto done;
258 }
259 va_start(args, fmt);
260 need = vsnprintf(name, 1024, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 va_end(args);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700262 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700264 /* Allocate the new space and copy the string in */
265 limit = need + 1;
266 name = kmalloc(limit, GFP_KERNEL);
267 if (!name) {
268 error = -ENOMEM;
269 goto done;
270 }
271 va_start(args, fmt);
272 need = vsnprintf(name, limit, fmt, args);
273 va_end(args);
274
275 /* something wrong with the string we copied? */
276 if (need >= limit) {
277 kfree(name);
278 error = -EFAULT;
279 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
282 /* Free the old name, if necessary. */
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700283 kfree(kobj->k_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /* Now, set the new name */
286 kobj->k_name = name;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700287done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return error;
289}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290EXPORT_SYMBOL(kobject_set_name);
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/**
293 * kobject_rename - change the name of an object
294 * @kobj: object in question.
295 * @new_name: object's new name
296 */
297
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -0500298int kobject_rename(struct kobject * kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 int error = 0;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800301 const char *devpath = NULL;
302 char *devpath_string = NULL;
303 char *envp[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 kobj = kobject_get(kobj);
306 if (!kobj)
307 return -EINVAL;
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700308 if (!kobj->parent)
309 return -EINVAL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800310
Greg Kroah-Hartman34358c22007-10-24 16:52:31 -0700311 /* see if this name is already in use */
312 if (kobj->kset) {
313 struct kobject *temp_kobj;
314 temp_kobj = kset_find_obj(kobj->kset, new_name);
315 if (temp_kobj) {
Johannes Berg71409a42007-11-05 13:59:11 +0100316 printk(KERN_WARNING "kobject '%s' cannot be renamed "
317 "to '%s' as '%s' is already in existence.\n",
Greg Kroah-Hartman34358c22007-10-24 16:52:31 -0700318 kobject_name(kobj), new_name, new_name);
319 kobject_put(temp_kobj);
320 return -EINVAL;
321 }
322 }
323
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800324 devpath = kobject_get_path(kobj, GFP_KERNEL);
325 if (!devpath) {
326 error = -ENOMEM;
327 goto out;
328 }
329 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
330 if (!devpath_string) {
331 error = -ENOMEM;
332 goto out;
333 }
334 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
335 envp[0] = devpath_string;
336 envp[1] = NULL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800337
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900338 error = sysfs_rename_dir(kobj, new_name);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800339
340 /* This function is mostly/only used for network interface.
341 * Some hotplug package track interfaces by their name and
342 * therefore want to know when the name is changed by the user. */
343 if (!error)
344 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
345
346out:
347 kfree(devpath_string);
348 kfree(devpath);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700349 kobject_put(kobj);
350
351 return error;
352}
353
354/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100355 * kobject_move - move object to another parent
356 * @kobj: object in question.
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100357 * @new_parent: object's new parent (can be NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +0100358 */
359
360int kobject_move(struct kobject *kobj, struct kobject *new_parent)
361{
362 int error;
363 struct kobject *old_parent;
364 const char *devpath = NULL;
365 char *devpath_string = NULL;
366 char *envp[2];
367
368 kobj = kobject_get(kobj);
369 if (!kobj)
370 return -EINVAL;
371 new_parent = kobject_get(new_parent);
372 if (!new_parent) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100373 if (kobj->kset)
374 new_parent = kobject_get(&kobj->kset->kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +0100375 }
376 /* old object path */
377 devpath = kobject_get_path(kobj, GFP_KERNEL);
378 if (!devpath) {
379 error = -ENOMEM;
380 goto out;
381 }
382 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
383 if (!devpath_string) {
384 error = -ENOMEM;
385 goto out;
386 }
387 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
388 envp[0] = devpath_string;
389 envp[1] = NULL;
390 error = sysfs_move_dir(kobj, new_parent);
391 if (error)
392 goto out;
393 old_parent = kobj->parent;
394 kobj->parent = new_parent;
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300395 new_parent = NULL;
Cornelia Huck8a824722006-11-20 17:07:51 +0100396 kobject_put(old_parent);
397 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
398out:
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300399 kobject_put(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +0100400 kobject_put(kobj);
401 kfree(devpath_string);
402 kfree(devpath);
403 return error;
404}
405
406/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 * kobject_del - unlink kobject from hierarchy.
408 * @kobj: object.
409 */
410
411void kobject_del(struct kobject * kobj)
412{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800413 if (!kobj)
414 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 sysfs_remove_dir(kobj);
416 unlink(kobj);
417}
418
419/**
420 * kobject_unregister - remove object from hierarchy and decrement refcount.
421 * @kobj: object going away.
422 */
423
424void kobject_unregister(struct kobject * kobj)
425{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800426 if (!kobj)
427 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 pr_debug("kobject %s: unregistering\n",kobject_name(kobj));
Kay Sievers312c0042005-11-16 09:00:00 +0100429 kobject_uevent(kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 kobject_del(kobj);
431 kobject_put(kobj);
432}
433
434/**
435 * kobject_get - increment refcount for object.
436 * @kobj: object.
437 */
438
439struct kobject * kobject_get(struct kobject * kobj)
440{
441 if (kobj)
442 kref_get(&kobj->kref);
443 return kobj;
444}
445
446/**
447 * kobject_cleanup - free kobject resources.
448 * @kobj: object.
449 */
450
451void kobject_cleanup(struct kobject * kobj)
452{
453 struct kobj_type * t = get_ktype(kobj);
454 struct kset * s = kobj->kset;
455 struct kobject * parent = kobj->parent;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700456 const char *name = kobj->k_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 pr_debug("kobject %s: cleaning up\n",kobject_name(kobj));
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700459 if (t && t->release) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 t->release(kobj);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700461 /* If we have a release function, we can guess that this was
462 * not a statically allocated kobject, so we should be safe to
463 * free the name */
464 kfree(name);
465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (s)
467 kset_put(s);
Mariusz Kozlowskib067db42007-01-02 13:44:44 +0100468 kobject_put(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
471static void kobject_release(struct kref *kref)
472{
473 kobject_cleanup(container_of(kref, struct kobject, kref));
474}
475
476/**
477 * kobject_put - decrement refcount for object.
478 * @kobj: object.
479 *
480 * Decrement the refcount, and if 0, call kobject_cleanup().
481 */
482void kobject_put(struct kobject * kobj)
483{
484 if (kobj)
485 kref_put(&kobj->kref, kobject_release);
486}
487
488
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500489static void dir_release(struct kobject *kobj)
490{
491 kfree(kobj);
492}
493
494static struct kobj_type dir_ktype = {
495 .release = dir_release,
496 .sysfs_ops = NULL,
497 .default_attrs = NULL,
498};
499
500/**
Eric W. Biederman27531332007-04-06 10:47:11 -0600501 * kobject_kset_add_dir - add sub directory of object.
Kay Sievers86406242007-03-14 03:25:56 +0100502 * @kset: kset the directory is belongs to.
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500503 * @parent: object in which a directory is created.
504 * @name: directory name.
505 *
506 * Add a plain directory object as child of given object.
507 */
Kay Sievers86406242007-03-14 03:25:56 +0100508struct kobject *kobject_kset_add_dir(struct kset *kset,
509 struct kobject *parent, const char *name)
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500510{
511 struct kobject *k;
Randy Dunlap10188012006-07-11 20:49:41 -0700512 int ret;
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500513
514 if (!parent)
515 return NULL;
516
517 k = kzalloc(sizeof(*k), GFP_KERNEL);
518 if (!k)
519 return NULL;
520
Kay Sievers86406242007-03-14 03:25:56 +0100521 k->kset = kset;
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500522 k->parent = parent;
523 k->ktype = &dir_ktype;
524 kobject_set_name(k, name);
Randy Dunlap10188012006-07-11 20:49:41 -0700525 ret = kobject_register(k);
526 if (ret < 0) {
Eric W. Biederman27531332007-04-06 10:47:11 -0600527 printk(KERN_WARNING "%s: kobject_register error: %d\n",
528 __func__, ret);
Randy Dunlap10188012006-07-11 20:49:41 -0700529 kobject_del(k);
530 return NULL;
531 }
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500532
533 return k;
534}
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500535
Eric W. Biederman27531332007-04-06 10:47:11 -0600536/**
537 * kobject_add_dir - add sub directory of object.
538 * @parent: object in which a directory is created.
539 * @name: directory name.
540 *
541 * Add a plain directory object as child of given object.
542 */
Kay Sievers86406242007-03-14 03:25:56 +0100543struct kobject *kobject_add_dir(struct kobject *parent, const char *name)
544{
545 return kobject_kset_add_dir(NULL, parent, name);
546}
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/**
549 * kset_init - initialize a kset for use
550 * @k: kset
551 */
552
553void kset_init(struct kset * k)
554{
555 kobject_init(&k->kobj);
556 INIT_LIST_HEAD(&k->list);
557 spin_lock_init(&k->list_lock);
558}
559
560
561/**
562 * kset_add - add a kset object to the hierarchy.
563 * @k: kset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
565
566int kset_add(struct kset * k)
567{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return kobject_add(&k->kobj);
569}
570
571
572/**
573 * kset_register - initialize and add a kset.
574 * @k: kset.
575 */
576
577int kset_register(struct kset * k)
578{
Kay Sievers80f03e32007-05-26 11:21:36 +0200579 int err;
580
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800581 if (!k)
582 return -EINVAL;
Kay Sievers80f03e32007-05-26 11:21:36 +0200583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 kset_init(k);
Kay Sievers80f03e32007-05-26 11:21:36 +0200585 err = kset_add(k);
586 if (err)
587 return err;
588 kobject_uevent(&k->kobj, KOBJ_ADD);
589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
592
593/**
594 * kset_unregister - remove a kset.
595 * @k: kset.
596 */
597
598void kset_unregister(struct kset * k)
599{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800600 if (!k)
601 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 kobject_unregister(&k->kobj);
603}
604
605
606/**
607 * kset_find_obj - search for object in kset.
608 * @kset: kset we're looking in.
609 * @name: object's name.
610 *
611 * Lock kset via @kset->subsys, and iterate over @kset->list,
612 * looking for a matching kobject. If matching object is found
613 * take a reference and return the object.
614 */
615
616struct kobject * kset_find_obj(struct kset * kset, const char * name)
617{
618 struct list_head * entry;
619 struct kobject * ret = NULL;
620
621 spin_lock(&kset->list_lock);
622 list_for_each(entry,&kset->list) {
623 struct kobject * k = to_kobj(entry);
624 if (kobject_name(k) && !strcmp(kobject_name(k),name)) {
625 ret = kobject_get(k);
626 break;
627 }
628 }
629 spin_unlock(&kset->list_lock);
630 return ret;
631}
632
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700633int subsystem_register(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700635 return kset_register(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700638void subsystem_unregister(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700640 kset_unregister(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643/**
644 * subsystem_create_file - export sysfs attribute file.
645 * @s: subsystem.
646 * @a: subsystem attribute descriptor.
647 */
648
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700649int subsys_create_file(struct kset *s, struct subsys_attribute *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 int error = 0;
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800652
653 if (!s || !a)
654 return -EINVAL;
655
Greg Kroah-Hartman1ef4cfa2007-09-12 15:06:57 -0700656 if (kset_get(s)) {
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700657 error = sysfs_create_file(&s->kobj, &a->attr);
Greg Kroah-Hartman6e9d9302007-09-12 15:06:57 -0700658 kset_put(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660 return error;
661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663EXPORT_SYMBOL(kobject_init);
664EXPORT_SYMBOL(kobject_register);
665EXPORT_SYMBOL(kobject_unregister);
666EXPORT_SYMBOL(kobject_get);
667EXPORT_SYMBOL(kobject_put);
668EXPORT_SYMBOL(kobject_add);
669EXPORT_SYMBOL(kobject_del);
670
671EXPORT_SYMBOL(kset_register);
672EXPORT_SYMBOL(kset_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674EXPORT_SYMBOL(subsystem_register);
675EXPORT_SYMBOL(subsystem_unregister);
676EXPORT_SYMBOL(subsys_create_file);