blob: 0ef00e8d4153879513bfa2823a7fad0e25e4f6b7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * class.c - basic device class management
3 *
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
6 * Copyright (c) 2003-2004 Greg Kroah-Hartman
7 * Copyright (c) 2003-2004 IBM Corp.
8 *
9 * This file is released under the GPLv2
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/device.h>
14#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/string.h>
17#include <linux/kdev_t.h>
gregkh@suse.dee9ba6362005-03-15 11:54:21 -080018#include <linux/err.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080019#include <linux/slab.h>
Kay Sieversedfaa7c2007-05-21 22:08:01 +020020#include <linux/genhd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "base.h"
22
23#define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070024#define to_class(obj) container_of(obj, struct class, subsys.kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080026static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr,
27 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080029 struct class_attribute *class_attr = to_class_attr(attr);
30 struct class *dc = to_class(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050031 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33 if (class_attr->show)
34 ret = class_attr->show(dc, buf);
35 return ret;
36}
37
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080038static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr,
39 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080041 struct class_attribute *class_attr = to_class_attr(attr);
42 struct class *dc = to_class(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050043 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45 if (class_attr->store)
46 ret = class_attr->store(dc, buf, count);
47 return ret;
48}
49
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080050static void class_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 struct class *class = to_class(kobj);
53
54 pr_debug("class '%s': release.\n", class->name);
55
56 if (class->class_release)
57 class->class_release(class);
58 else
59 pr_debug("class '%s' does not have a release() function, "
60 "be careful\n", class->name);
61}
62
63static struct sysfs_ops class_sysfs_ops = {
64 .show = class_attr_show,
65 .store = class_attr_store,
66};
67
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -060068static struct kobj_type class_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .sysfs_ops = &class_sysfs_ops,
70 .release = class_release,
71};
72
73/* Hotplug events for classes go to the class_obj subsys */
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -050074static struct kset *class_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080077int class_create_file(struct class *cls, const struct class_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 int error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080080 if (cls)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070081 error = sysfs_create_file(&cls->subsys.kobj, &attr->attr);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080082 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 error = -EINVAL;
84 return error;
85}
86
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080087void class_remove_file(struct class *cls, const struct class_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 if (cls)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070090 sysfs_remove_file(&cls->subsys.kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Greg Kroah-Hartman17407572006-05-02 16:59:59 +020093static struct class *class_get(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 if (cls)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080096 return container_of(kset_get(&cls->subsys),
97 struct class, subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return NULL;
99}
100
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800101static void class_put(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700103 if (cls)
Greg Kroah-Hartman6e9d9302007-09-12 15:06:57 -0700104 kset_put(&cls->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800107static int add_class_attrs(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 int i;
110 int error = 0;
111
112 if (cls->class_attrs) {
113 for (i = 0; attr_name(cls->class_attrs[i]); i++) {
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800114 error = class_create_file(cls, &cls->class_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (error)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800116 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 }
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800119done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800121error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800123 class_remove_file(cls, &cls->class_attrs[i]);
124 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800127static void remove_class_attrs(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 int i;
130
131 if (cls->class_attrs) {
132 for (i = 0; attr_name(cls->class_attrs[i]); i++)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800133 class_remove_file(cls, &cls->class_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135}
136
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800137int class_register(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 int error;
140
141 pr_debug("device class '%s': registering\n", cls->name);
142
143 INIT_LIST_HEAD(&cls->children);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700144 INIT_LIST_HEAD(&cls->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 INIT_LIST_HEAD(&cls->interfaces);
Kay Sievers86406242007-03-14 03:25:56 +0100146 kset_init(&cls->class_dirs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 init_MUTEX(&cls->sem);
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700148 error = kobject_set_name(&cls->subsys.kobj, "%s", cls->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (error)
150 return error;
151
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800152#if defined(CONFIG_SYSFS_DEPRECATED) && defined(CONFIG_BLOCK)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200153 /* let the block class directory show up in the root of sysfs */
154 if (cls != &block_class)
155 cls->subsys.kobj.kset = class_kset;
156#else
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -0500157 cls->subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200158#endif
Greg Kroah-Hartman3514fac2007-10-16 10:11:44 -0600159 cls->subsys.kobj.ktype = &class_ktype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Greg Kroah-Hartman2fb91132007-11-06 15:03:30 -0800161 error = kset_register(&cls->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (!error) {
163 error = add_class_attrs(class_get(cls));
164 class_put(cls);
165 }
166 return error;
167}
168
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800169void class_unregister(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 pr_debug("device class '%s': unregistering\n", cls->name);
172 remove_class_attrs(cls);
Greg Kroah-Hartman2fb91132007-11-06 15:03:30 -0800173 kset_unregister(&cls->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800176static void class_create_release(struct class *cls)
177{
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800178 pr_debug("%s called for %s\n", __func__, cls->name);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800179 kfree(cls);
180}
181
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800182/**
183 * class_create - create a struct class structure
184 * @owner: pointer to the module that is to "own" this struct class
185 * @name: pointer to a string for the name of this class.
186 *
187 * This is used to create a struct class pointer that can then be used
Kay Sieversc3b19ff2008-03-12 20:47:35 +0100188 * in calls to device_create().
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800189 *
190 * Note, the pointer created here is to be destroyed when finished by
191 * making a call to class_destroy().
192 */
Miguel Ojeda Sandonisab7d7372006-09-13 15:34:05 +0200193struct class *class_create(struct module *owner, const char *name)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800194{
195 struct class *cls;
196 int retval;
197
Jiri Slaby4aed0642005-09-13 01:25:01 -0700198 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800199 if (!cls) {
200 retval = -ENOMEM;
201 goto error;
202 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800203
204 cls->name = name;
205 cls->owner = owner;
206 cls->class_release = class_create_release;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800207
208 retval = class_register(cls);
209 if (retval)
210 goto error;
211
212 return cls;
213
214error:
215 kfree(cls);
216 return ERR_PTR(retval);
217}
218
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800219/**
220 * class_destroy - destroys a struct class structure
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700221 * @cls: pointer to the struct class that is to be destroyed
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800222 *
223 * Note, the pointer to be destroyed must have been created with a call
224 * to class_create().
225 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800226void class_destroy(struct class *cls)
227{
228 if ((cls == NULL) || (IS_ERR(cls)))
229 return;
230
231 class_unregister(cls);
232}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Kay Sievers805fab42006-09-14 11:23:28 +0200234#ifdef CONFIG_SYSFS_DEPRECATED
235char *make_class_name(const char *name, struct kobject *kobj)
236{
237 char *class_name;
238 int size;
239
240 size = strlen(name) + strlen(kobject_name(kobj)) + 2;
241
242 class_name = kmalloc(size, GFP_KERNEL);
243 if (!class_name)
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100244 return NULL;
Kay Sievers805fab42006-09-14 11:23:28 +0200245
246 strcpy(class_name, name);
247 strcat(class_name, ":");
248 strcat(class_name, kobject_name(kobj));
249 return class_name;
250}
Kay Sievers805fab42006-09-14 11:23:28 +0200251#endif
252
Dave Youngfd048972008-01-22 15:27:08 +0800253/**
254 * class_for_each_device - device iterator
255 * @class: the class we're iterating
256 * @data: data for the callback
257 * @fn: function to be called for each device
258 *
259 * Iterate over @class's list of devices, and call @fn for each,
260 * passing it @data.
261 *
262 * We check the return of @fn each time. If it returns anything
263 * other than 0, we break out and return that value.
264 *
265 * Note, we hold class->sem in this function, so it can not be
266 * re-acquired in @fn, otherwise it will self-deadlocking. For
267 * example, calls to add or remove class members would be verboten.
268 */
269int class_for_each_device(struct class *class, void *data,
270 int (*fn)(struct device *, void *))
271{
272 struct device *dev;
273 int error = 0;
274
275 if (!class)
276 return -EINVAL;
277 down(&class->sem);
278 list_for_each_entry(dev, &class->devices, node) {
279 dev = get_device(dev);
280 if (dev) {
281 error = fn(dev, data);
282 put_device(dev);
283 } else
284 error = -ENODEV;
285 if (error)
286 break;
287 }
288 up(&class->sem);
289
290 return error;
291}
292EXPORT_SYMBOL_GPL(class_for_each_device);
293
294/**
295 * class_find_device - device iterator for locating a particular device
296 * @class: the class we're iterating
297 * @data: data for the match function
298 * @match: function to check device
299 *
300 * This is similar to the class_for_each_dev() function above, but it
301 * returns a reference to a device that is 'found' for later use, as
302 * determined by the @match callback.
303 *
304 * The callback should return 0 if the device doesn't match and non-zero
305 * if it does. If the callback returns non-zero, this function will
306 * return to the caller and not iterate over any more devices.
Randy Dunlapa63ca8f2008-01-30 11:51:08 -0800307 *
Dave Youngfd048972008-01-22 15:27:08 +0800308 * Note, you will need to drop the reference with put_device() after use.
309 *
310 * We hold class->sem in this function, so it can not be
311 * re-acquired in @match, otherwise it will self-deadlocking. For
312 * example, calls to add or remove class members would be verboten.
313 */
314struct device *class_find_device(struct class *class, void *data,
315 int (*match)(struct device *, void *))
316{
317 struct device *dev;
318 int found = 0;
319
320 if (!class)
321 return NULL;
322
323 down(&class->sem);
324 list_for_each_entry(dev, &class->devices, node) {
325 dev = get_device(dev);
326 if (dev) {
327 if (match(dev, data)) {
328 found = 1;
329 break;
330 } else
331 put_device(dev);
332 } else
333 break;
334 }
335 up(&class->sem);
336
337 return found ? dev : NULL;
338}
339EXPORT_SYMBOL_GPL(class_find_device);
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341int class_interface_register(struct class_interface *class_intf)
342{
343 struct class *parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200344 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 if (!class_intf || !class_intf->class)
347 return -ENODEV;
348
349 parent = class_get(class_intf->class);
350 if (!parent)
351 return -EINVAL;
352
353 down(&parent->sem);
354 list_add_tail(&class_intf->node, &parent->interfaces);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200355 if (class_intf->add_dev) {
356 list_for_each_entry(dev, &parent->devices, node)
357 class_intf->add_dev(dev, class_intf);
358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 up(&parent->sem);
360
361 return 0;
362}
363
364void class_interface_unregister(struct class_interface *class_intf)
365{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800366 struct class *parent = class_intf->class;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200367 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 if (!parent)
370 return;
371
372 down(&parent->sem);
373 list_del_init(&class_intf->node);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200374 if (class_intf->remove_dev) {
375 list_for_each_entry(dev, &parent->devices, node)
376 class_intf->remove_dev(dev, class_intf);
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 up(&parent->sem);
379
380 class_put(parent);
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383int __init classes_init(void)
384{
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -0500385 class_kset = kset_create_and_add("class", NULL, NULL);
386 if (!class_kset)
387 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 0;
389}
390
391EXPORT_SYMBOL_GPL(class_create_file);
392EXPORT_SYMBOL_GPL(class_remove_file);
393EXPORT_SYMBOL_GPL(class_register);
394EXPORT_SYMBOL_GPL(class_unregister);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800395EXPORT_SYMBOL_GPL(class_create);
396EXPORT_SYMBOL_GPL(class_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398EXPORT_SYMBOL_GPL(class_interface_register);
399EXPORT_SYMBOL_GPL(class_interface_unregister);