blob: e8181d3cec34407b3dafd6a334f8d2fe0a90327e [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>
5 *
6 * This file is released under the GPLv2.
7 *
8 *
9 * Please see the file Documentation/kobject.txt for critical information
10 * about using the kobject interface.
11 */
12
13#include <linux/kobject.h>
14#include <linux/string.h>
15#include <linux/module.h>
16#include <linux/stat.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19/**
20 * populate_dir - populate directory with attributes.
21 * @kobj: object we're working on.
22 *
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.
28 *
29 */
30
31static int populate_dir(struct kobject * kobj)
32{
33 struct kobj_type * t = get_ktype(kobj);
34 struct attribute * attr;
35 int error = 0;
36 int i;
37
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;
42 }
43 }
44 return error;
45}
46
Eric W. Biederman90bc6132007-07-31 19:15:08 +090047static int create_dir(struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 int error = 0;
50 if (kobject_name(kobj)) {
Eric W. Biederman90bc6132007-07-31 19:15:08 +090051 error = sysfs_create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (!error) {
53 if ((error = populate_dir(kobj)))
54 sysfs_remove_dir(kobj);
55 }
56 }
57 return error;
58}
59
60static inline struct kobject * to_kobj(struct list_head * entry)
61{
62 return container_of(entry,struct kobject,entry);
63}
64
65static int get_kobj_path_length(struct kobject *kobj)
66{
67 int length = 1;
68 struct kobject * parent = kobj;
69
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.
73 */
74 do {
Chuck Ebbertb365b3d2006-01-12 20:02:00 -050075 if (kobject_name(parent) == NULL)
76 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 length += strlen(kobject_name(parent)) + 1;
78 parent = parent->parent;
79 } while (parent);
80 return length;
81}
82
83static void fill_kobj_path(struct kobject *kobj, char *path, int length)
84{
85 struct kobject * parent;
86
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) = '/';
94 }
95
96 pr_debug("%s: path = '%s'\n",__FUNCTION__,path);
97}
98
99/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800100 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
102 * @kobj: kobject in question, with which to build the path
103 * @gfp_mask: the allocation type used to allocate the path
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800104 *
105 * The result must be freed by the caller with kfree().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
Al Virofd4f2df2005-10-21 03:18:50 -0400107char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 char *path;
110 int len;
111
112 len = get_kobj_path_length(kobj);
Chuck Ebbertb365b3d2006-01-12 20:02:00 -0500113 if (len == 0)
114 return NULL;
Burman Yan4668edc2006-12-06 20:38:51 -0800115 path = kzalloc(len, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (!path)
117 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 fill_kobj_path(kobj, path, len);
119
120 return path;
121}
Dmitry Torokhov80fc9f52006-10-11 01:43:58 -0400122EXPORT_SYMBOL_GPL(kobject_get_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124/**
125 * kobject_init - initialize object.
126 * @kobj: object in question.
127 */
128void kobject_init(struct kobject * kobj)
129{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800130 if (!kobj)
131 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 kref_init(&kobj->kref);
133 INIT_LIST_HEAD(&kobj->entry);
NeilBrown4508a7a2006-03-20 17:53:53 +1100134 init_waitqueue_head(&kobj->poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 kobj->kset = kset_get(kobj->kset);
136}
137
138
139/**
140 * unlink - remove kobject from kset list.
141 * @kobj: kobject.
142 *
143 * Remove the kobject from the kset list and decrement
144 * its parent's refcount.
145 * This is separated out, so we can use it in both
146 * kobject_del() and kobject_add() on error.
147 */
148
149static void unlink(struct kobject * kobj)
150{
151 if (kobj->kset) {
152 spin_lock(&kobj->kset->list_lock);
153 list_del_init(&kobj->entry);
154 spin_unlock(&kobj->kset->list_lock);
155 }
156 kobject_put(kobj);
157}
158
159/**
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900160 * kobject_add - add an object to the hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * @kobj: object.
162 */
163
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900164int kobject_add(struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 int error = 0;
167 struct kobject * parent;
168
169 if (!(kobj = kobject_get(kobj)))
170 return -ENOENT;
171 if (!kobj->k_name)
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700172 kobject_set_name(kobj, "NO_NAME");
Martin Stoilov13507702007-02-05 16:15:23 -0800173 if (!*kobj->k_name) {
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800174 pr_debug("kobject attempted to be registered with no name!\n");
175 WARN_ON(1);
Cornelia Huck88db4722007-04-10 14:35:27 +0200176 kobject_put(kobj);
Greg Kroah-Hartmanc171fef2006-01-20 14:08:59 -0800177 return -EINVAL;
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 parent = kobject_get(kobj->parent);
180
181 pr_debug("kobject %s: registering. parent: %s, set: %s\n",
182 kobject_name(kobj), parent ? kobject_name(parent) : "<NULL>",
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700183 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (kobj->kset) {
186 spin_lock(&kobj->kset->list_lock);
187
188 if (!parent)
189 parent = kobject_get(&kobj->kset->kobj);
190
191 list_add_tail(&kobj->entry,&kobj->kset->list);
192 spin_unlock(&kobj->kset->list_lock);
Dmitriy Monakhov460f7e92007-03-10 14:00:10 +0300193 kobj->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900196 error = create_dir(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (error) {
198 /* unlink does the kobject_put() for us */
199 unlink(kobj);
Mariusz Kozlowskib067db42007-01-02 13:44:44 +0100200 kobject_put(parent);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800201
202 /* be noisy on error issues */
203 if (error == -EEXIST)
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700204 printk(KERN_ERR "kobject_add failed for %s with "
205 "-EEXIST, don't try to register things with "
206 "the same name in the same directory.\n",
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800207 kobject_name(kobj));
208 else
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700209 printk(KERN_ERR "kobject_add failed for %s (%d)\n",
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800210 kobject_name(kobj), error);
Greg Kroah-Hartman5c73a3f2007-06-07 15:05:15 -0700211 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
214 return error;
215}
216
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700217/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * kobject_register - initialize and add an object.
219 * @kobj: object in question.
220 */
221
222int kobject_register(struct kobject * kobj)
223{
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800224 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (kobj) {
226 kobject_init(kobj);
227 error = kobject_add(kobj);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800228 if (!error)
Kay Sievers312c0042005-11-16 09:00:00 +0100229 kobject_uevent(kobj, KOBJ_ADD);
Greg Kroah-Hartmandcd0da02006-03-20 13:17:13 -0800230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return error;
232}
233
234
235/**
236 * kobject_set_name - Set the name of an object
237 * @kobj: object.
Martin Waitz67be2dd2005-05-01 08:59:26 -0700238 * @fmt: format string used to build the name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 *
240 * If strlen(name) >= KOBJ_NAME_LEN, then use a dynamically allocated
241 * string that @kobj->k_name points to. Otherwise, use the static
242 * @kobj->name array.
243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244int kobject_set_name(struct kobject * kobj, const char * fmt, ...)
245{
246 int error = 0;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700247 int limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int need;
249 va_list args;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700250 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700252 /* find out how big a buffer we need */
253 name = kmalloc(1024, GFP_KERNEL);
254 if (!name) {
255 error = -ENOMEM;
256 goto done;
257 }
258 va_start(args, fmt);
259 need = vsnprintf(name, 1024, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 va_end(args);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700261 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700263 /* Allocate the new space and copy the string in */
264 limit = need + 1;
265 name = kmalloc(limit, GFP_KERNEL);
266 if (!name) {
267 error = -ENOMEM;
268 goto done;
269 }
270 va_start(args, fmt);
271 need = vsnprintf(name, limit, fmt, args);
272 va_end(args);
273
274 /* something wrong with the string we copied? */
275 if (need >= limit) {
276 kfree(name);
277 error = -EFAULT;
278 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
281 /* Free the old name, if necessary. */
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700282 kfree(kobj->k_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /* Now, set the new name */
285 kobj->k_name = name;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700286done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return error;
288}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289EXPORT_SYMBOL(kobject_set_name);
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/**
292 * kobject_rename - change the name of an object
293 * @kobj: object in question.
294 * @new_name: object's new name
295 */
296
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -0500297int kobject_rename(struct kobject * kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 int error = 0;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800300 const char *devpath = NULL;
301 char *devpath_string = NULL;
302 char *envp[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 kobj = kobject_get(kobj);
305 if (!kobj)
306 return -EINVAL;
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700307 if (!kobj->parent)
308 return -EINVAL;
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800309
310 devpath = kobject_get_path(kobj, GFP_KERNEL);
311 if (!devpath) {
312 error = -ENOMEM;
313 goto out;
314 }
315 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
316 if (!devpath_string) {
317 error = -ENOMEM;
318 goto out;
319 }
320 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
321 envp[0] = devpath_string;
322 envp[1] = NULL;
323 /* Note : if we want to send the new name alone, not the full path,
324 * we could probably use kobject_name(kobj); */
325
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900326 error = sysfs_rename_dir(kobj, new_name);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -0800327
328 /* This function is mostly/only used for network interface.
329 * Some hotplug package track interfaces by their name and
330 * therefore want to know when the name is changed by the user. */
331 if (!error)
332 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
333
334out:
335 kfree(devpath_string);
336 kfree(devpath);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700337 kobject_put(kobj);
338
339 return error;
340}
341
342/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100343 * kobject_move - move object to another parent
344 * @kobj: object in question.
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100345 * @new_parent: object's new parent (can be NULL)
Cornelia Huck8a824722006-11-20 17:07:51 +0100346 */
347
348int kobject_move(struct kobject *kobj, struct kobject *new_parent)
349{
350 int error;
351 struct kobject *old_parent;
352 const char *devpath = NULL;
353 char *devpath_string = NULL;
354 char *envp[2];
355
356 kobj = kobject_get(kobj);
357 if (!kobj)
358 return -EINVAL;
359 new_parent = kobject_get(new_parent);
360 if (!new_parent) {
Cornelia Huckc744aeae2007-01-08 20:16:44 +0100361 if (kobj->kset)
362 new_parent = kobject_get(&kobj->kset->kobj);
Cornelia Huck8a824722006-11-20 17:07:51 +0100363 }
364 /* old object path */
365 devpath = kobject_get_path(kobj, GFP_KERNEL);
366 if (!devpath) {
367 error = -ENOMEM;
368 goto out;
369 }
370 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
371 if (!devpath_string) {
372 error = -ENOMEM;
373 goto out;
374 }
375 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
376 envp[0] = devpath_string;
377 envp[1] = NULL;
378 error = sysfs_move_dir(kobj, new_parent);
379 if (error)
380 goto out;
381 old_parent = kobj->parent;
382 kobj->parent = new_parent;
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300383 new_parent = NULL;
Cornelia Huck8a824722006-11-20 17:07:51 +0100384 kobject_put(old_parent);
385 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
386out:
Dmitriy Monakhov9e993ef2007-03-03 16:11:21 +0300387 kobject_put(new_parent);
Cornelia Huck8a824722006-11-20 17:07:51 +0100388 kobject_put(kobj);
389 kfree(devpath_string);
390 kfree(devpath);
391 return error;
392}
393
394/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * kobject_del - unlink kobject from hierarchy.
396 * @kobj: object.
397 */
398
399void kobject_del(struct kobject * kobj)
400{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800401 if (!kobj)
402 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 sysfs_remove_dir(kobj);
404 unlink(kobj);
405}
406
407/**
408 * kobject_unregister - remove object from hierarchy and decrement refcount.
409 * @kobj: object going away.
410 */
411
412void kobject_unregister(struct kobject * kobj)
413{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800414 if (!kobj)
415 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 pr_debug("kobject %s: unregistering\n",kobject_name(kobj));
Kay Sievers312c0042005-11-16 09:00:00 +0100417 kobject_uevent(kobj, KOBJ_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 kobject_del(kobj);
419 kobject_put(kobj);
420}
421
422/**
423 * kobject_get - increment refcount for object.
424 * @kobj: object.
425 */
426
427struct kobject * kobject_get(struct kobject * kobj)
428{
429 if (kobj)
430 kref_get(&kobj->kref);
431 return kobj;
432}
433
434/**
435 * kobject_cleanup - free kobject resources.
436 * @kobj: object.
437 */
438
439void kobject_cleanup(struct kobject * kobj)
440{
441 struct kobj_type * t = get_ktype(kobj);
442 struct kset * s = kobj->kset;
443 struct kobject * parent = kobj->parent;
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700444 const char *name = kobj->k_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 pr_debug("kobject %s: cleaning up\n",kobject_name(kobj));
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700447 if (t && t->release) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 t->release(kobj);
Greg Kroah-Hartmance2c9cb2007-09-12 15:06:57 -0700449 /* If we have a release function, we can guess that this was
450 * not a statically allocated kobject, so we should be safe to
451 * free the name */
452 kfree(name);
453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (s)
455 kset_put(s);
Mariusz Kozlowskib067db42007-01-02 13:44:44 +0100456 kobject_put(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459static void kobject_release(struct kref *kref)
460{
461 kobject_cleanup(container_of(kref, struct kobject, kref));
462}
463
464/**
465 * kobject_put - decrement refcount for object.
466 * @kobj: object.
467 *
468 * Decrement the refcount, and if 0, call kobject_cleanup().
469 */
470void kobject_put(struct kobject * kobj)
471{
472 if (kobj)
473 kref_put(&kobj->kref, kobject_release);
474}
475
476
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500477static void dir_release(struct kobject *kobj)
478{
479 kfree(kobj);
480}
481
482static struct kobj_type dir_ktype = {
483 .release = dir_release,
484 .sysfs_ops = NULL,
485 .default_attrs = NULL,
486};
487
488/**
Eric W. Biederman27531332007-04-06 10:47:11 -0600489 * kobject_kset_add_dir - add sub directory of object.
Kay Sievers86406242007-03-14 03:25:56 +0100490 * @kset: kset the directory is belongs to.
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500491 * @parent: object in which a directory is created.
492 * @name: directory name.
493 *
494 * Add a plain directory object as child of given object.
495 */
Kay Sievers86406242007-03-14 03:25:56 +0100496struct kobject *kobject_kset_add_dir(struct kset *kset,
497 struct kobject *parent, const char *name)
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500498{
499 struct kobject *k;
Randy Dunlap10188012006-07-11 20:49:41 -0700500 int ret;
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500501
502 if (!parent)
503 return NULL;
504
505 k = kzalloc(sizeof(*k), GFP_KERNEL);
506 if (!k)
507 return NULL;
508
Kay Sievers86406242007-03-14 03:25:56 +0100509 k->kset = kset;
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500510 k->parent = parent;
511 k->ktype = &dir_ktype;
512 kobject_set_name(k, name);
Randy Dunlap10188012006-07-11 20:49:41 -0700513 ret = kobject_register(k);
514 if (ret < 0) {
Eric W. Biederman27531332007-04-06 10:47:11 -0600515 printk(KERN_WARNING "%s: kobject_register error: %d\n",
516 __func__, ret);
Randy Dunlap10188012006-07-11 20:49:41 -0700517 kobject_del(k);
518 return NULL;
519 }
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500520
521 return k;
522}
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500523
Eric W. Biederman27531332007-04-06 10:47:11 -0600524/**
525 * kobject_add_dir - add sub directory of object.
526 * @parent: object in which a directory is created.
527 * @name: directory name.
528 *
529 * Add a plain directory object as child of given object.
530 */
Kay Sievers86406242007-03-14 03:25:56 +0100531struct kobject *kobject_add_dir(struct kobject *parent, const char *name)
532{
533 return kobject_kset_add_dir(NULL, parent, name);
534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/**
537 * kset_init - initialize a kset for use
538 * @k: kset
539 */
540
541void kset_init(struct kset * k)
542{
543 kobject_init(&k->kobj);
544 INIT_LIST_HEAD(&k->list);
545 spin_lock_init(&k->list_lock);
546}
547
548
549/**
550 * kset_add - add a kset object to the hierarchy.
551 * @k: kset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 */
553
554int kset_add(struct kset * k)
555{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return kobject_add(&k->kobj);
557}
558
559
560/**
561 * kset_register - initialize and add a kset.
562 * @k: kset.
563 */
564
565int kset_register(struct kset * k)
566{
Kay Sievers80f03e32007-05-26 11:21:36 +0200567 int err;
568
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800569 if (!k)
570 return -EINVAL;
Kay Sievers80f03e32007-05-26 11:21:36 +0200571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 kset_init(k);
Kay Sievers80f03e32007-05-26 11:21:36 +0200573 err = kset_add(k);
574 if (err)
575 return err;
576 kobject_uevent(&k->kobj, KOBJ_ADD);
577 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
580
581/**
582 * kset_unregister - remove a kset.
583 * @k: kset.
584 */
585
586void kset_unregister(struct kset * k)
587{
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800588 if (!k)
589 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 kobject_unregister(&k->kobj);
591}
592
593
594/**
595 * kset_find_obj - search for object in kset.
596 * @kset: kset we're looking in.
597 * @name: object's name.
598 *
599 * Lock kset via @kset->subsys, and iterate over @kset->list,
600 * looking for a matching kobject. If matching object is found
601 * take a reference and return the object.
602 */
603
604struct kobject * kset_find_obj(struct kset * kset, const char * name)
605{
606 struct list_head * entry;
607 struct kobject * ret = NULL;
608
609 spin_lock(&kset->list_lock);
610 list_for_each(entry,&kset->list) {
611 struct kobject * k = to_kobj(entry);
612 if (kobject_name(k) && !strcmp(kobject_name(k),name)) {
613 ret = kobject_get(k);
614 break;
615 }
616 }
617 spin_unlock(&kset->list_lock);
618 return ret;
619}
620
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700621void subsystem_init(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700623 kset_init(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700626int subsystem_register(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700628 return kset_register(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700631void subsystem_unregister(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700633 kset_unregister(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636/**
637 * subsystem_create_file - export sysfs attribute file.
638 * @s: subsystem.
639 * @a: subsystem attribute descriptor.
640 */
641
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700642int subsys_create_file(struct kset *s, struct subsys_attribute *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
644 int error = 0;
Greg Kroah-Hartman31b9025a2007-01-18 12:23:51 -0800645
646 if (!s || !a)
647 return -EINVAL;
648
Greg Kroah-Hartman1ef4cfa2007-09-12 15:06:57 -0700649 if (kset_get(s)) {
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700650 error = sysfs_create_file(&s->kobj, &a->attr);
Greg Kroah-Hartman6e9d9302007-09-12 15:06:57 -0700651 kset_put(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653 return error;
654}
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656EXPORT_SYMBOL(kobject_init);
657EXPORT_SYMBOL(kobject_register);
658EXPORT_SYMBOL(kobject_unregister);
659EXPORT_SYMBOL(kobject_get);
660EXPORT_SYMBOL(kobject_put);
661EXPORT_SYMBOL(kobject_add);
662EXPORT_SYMBOL(kobject_del);
663
664EXPORT_SYMBOL(kset_register);
665EXPORT_SYMBOL(kset_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667EXPORT_SYMBOL(subsystem_register);
668EXPORT_SYMBOL(subsystem_unregister);
669EXPORT_SYMBOL(subsys_create_file);