blob: 9947560def654b89cded8c0594bd6ff601ca4c03 [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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080025static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr,
26 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080028 struct class_attribute *class_attr = to_class_attr(attr);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050029 struct class_private *cp = to_class(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050030 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32 if (class_attr->show)
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050033 ret = class_attr->show(cp->class, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 return ret;
35}
36
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080037static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr,
38 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080040 struct class_attribute *class_attr = to_class_attr(attr);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050041 struct class_private *cp = to_class(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050042 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 if (class_attr->store)
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050045 ret = class_attr->store(cp->class, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return ret;
47}
48
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080049static void class_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050051 struct class_private *cp = to_class(kobj);
52 struct class *class = cp->class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
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-Hartman7c714482008-01-22 18:17:41 -050081 error = sysfs_create_file(&cls->p->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-Hartman7c714482008-01-22 18:17:41 -050090 sysfs_remove_file(&cls->p->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-Hartman7c714482008-01-22 18:17:41 -050096 kset_get(&cls->p->subsys);
97 return cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800100static void class_put(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700102 if (cls)
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500103 kset_put(&cls->p->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800106static int add_class_attrs(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 int i;
109 int error = 0;
110
111 if (cls->class_attrs) {
112 for (i = 0; attr_name(cls->class_attrs[i]); i++) {
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800113 error = class_create_file(cls, &cls->class_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (error)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800115 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117 }
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800118done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800120error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800122 class_remove_file(cls, &cls->class_attrs[i]);
123 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800126static void remove_class_attrs(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 int i;
129
130 if (cls->class_attrs) {
131 for (i = 0; attr_name(cls->class_attrs[i]); i++)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800132 class_remove_file(cls, &cls->class_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134}
135
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800136int class_register(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500138 struct class_private *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 int error;
140
141 pr_debug("device class '%s': registering\n", cls->name);
142
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500143 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
144 if (!cp)
145 return -ENOMEM;
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700146 INIT_LIST_HEAD(&cp->class_devices);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500147 INIT_LIST_HEAD(&cp->interfaces);
148 kset_init(&cp->class_dirs);
149 init_MUTEX(&cp->sem);
150 error = kobject_set_name(&cp->subsys.kobj, "%s", cls->name);
151 if (error) {
152 kfree(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return error;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Dan Williamse105b8b2008-04-21 10:51:07 -0700156 /* set the default /sys/dev directory for devices of this class */
157 if (!cls->dev_kobj)
158 cls->dev_kobj = sysfs_dev_char_kobj;
159
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800160#if defined(CONFIG_SYSFS_DEPRECATED) && defined(CONFIG_BLOCK)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200161 /* let the block class directory show up in the root of sysfs */
162 if (cls != &block_class)
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500163 cp->subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200164#else
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500165 cp->subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200166#endif
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500167 cp->subsys.kobj.ktype = &class_ktype;
168 cp->class = cls;
169 cls->p = cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500171 error = kset_register(&cp->subsys);
172 if (error) {
173 kfree(cp);
174 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500176 error = add_class_attrs(class_get(cls));
177 class_put(cls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return error;
179}
180
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800181void class_unregister(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 pr_debug("device class '%s': unregistering\n", cls->name);
184 remove_class_attrs(cls);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500185 kset_unregister(&cls->p->subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800188static void class_create_release(struct class *cls)
189{
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800190 pr_debug("%s called for %s\n", __func__, cls->name);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800191 kfree(cls);
192}
193
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800194/**
195 * class_create - create a struct class structure
196 * @owner: pointer to the module that is to "own" this struct class
197 * @name: pointer to a string for the name of this class.
198 *
199 * This is used to create a struct class pointer that can then be used
Kay Sieversc3b19ff2008-03-12 20:47:35 +0100200 * in calls to device_create().
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800201 *
202 * Note, the pointer created here is to be destroyed when finished by
203 * making a call to class_destroy().
204 */
Miguel Ojeda Sandonisab7d7372006-09-13 15:34:05 +0200205struct class *class_create(struct module *owner, const char *name)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800206{
207 struct class *cls;
208 int retval;
209
Jiri Slaby4aed0642005-09-13 01:25:01 -0700210 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800211 if (!cls) {
212 retval = -ENOMEM;
213 goto error;
214 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800215
216 cls->name = name;
217 cls->owner = owner;
218 cls->class_release = class_create_release;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800219
220 retval = class_register(cls);
221 if (retval)
222 goto error;
223
224 return cls;
225
226error:
227 kfree(cls);
228 return ERR_PTR(retval);
229}
230
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800231/**
232 * class_destroy - destroys a struct class structure
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700233 * @cls: pointer to the struct class that is to be destroyed
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800234 *
235 * Note, the pointer to be destroyed must have been created with a call
236 * to class_create().
237 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800238void class_destroy(struct class *cls)
239{
240 if ((cls == NULL) || (IS_ERR(cls)))
241 return;
242
243 class_unregister(cls);
244}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Kay Sievers805fab42006-09-14 11:23:28 +0200246#ifdef CONFIG_SYSFS_DEPRECATED
247char *make_class_name(const char *name, struct kobject *kobj)
248{
249 char *class_name;
250 int size;
251
252 size = strlen(name) + strlen(kobject_name(kobj)) + 2;
253
254 class_name = kmalloc(size, GFP_KERNEL);
255 if (!class_name)
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100256 return NULL;
Kay Sievers805fab42006-09-14 11:23:28 +0200257
258 strcpy(class_name, name);
259 strcat(class_name, ":");
260 strcat(class_name, kobject_name(kobj));
261 return class_name;
262}
Kay Sievers805fab42006-09-14 11:23:28 +0200263#endif
264
Dave Youngfd048972008-01-22 15:27:08 +0800265/**
266 * class_for_each_device - device iterator
267 * @class: the class we're iterating
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400268 * @start: the device to start with in the list, if any.
Dave Youngfd048972008-01-22 15:27:08 +0800269 * @data: data for the callback
270 * @fn: function to be called for each device
271 *
272 * Iterate over @class's list of devices, and call @fn for each,
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400273 * passing it @data. If @start is set, the list iteration will start
274 * there, otherwise if it is NULL, the iteration starts at the
275 * beginning of the list.
Dave Youngfd048972008-01-22 15:27:08 +0800276 *
277 * We check the return of @fn each time. If it returns anything
278 * other than 0, we break out and return that value.
279 *
280 * Note, we hold class->sem in this function, so it can not be
281 * re-acquired in @fn, otherwise it will self-deadlocking. For
282 * example, calls to add or remove class members would be verboten.
283 */
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400284int class_for_each_device(struct class *class, struct device *start,
285 void *data, int (*fn)(struct device *, void *))
Dave Youngfd048972008-01-22 15:27:08 +0800286{
287 struct device *dev;
288 int error = 0;
289
290 if (!class)
291 return -EINVAL;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500292 down(&class->p->sem);
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700293 list_for_each_entry(dev, &class->p->class_devices, node) {
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400294 if (start) {
295 if (start == dev)
296 start = NULL;
297 continue;
298 }
Dave Youngfd048972008-01-22 15:27:08 +0800299 dev = get_device(dev);
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400300 error = fn(dev, data);
301 put_device(dev);
Dave Youngfd048972008-01-22 15:27:08 +0800302 if (error)
303 break;
304 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500305 up(&class->p->sem);
Dave Youngfd048972008-01-22 15:27:08 +0800306
307 return error;
308}
309EXPORT_SYMBOL_GPL(class_for_each_device);
310
311/**
312 * class_find_device - device iterator for locating a particular device
313 * @class: the class we're iterating
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400314 * @start: Device to begin with
Dave Youngfd048972008-01-22 15:27:08 +0800315 * @data: data for the match function
316 * @match: function to check device
317 *
318 * This is similar to the class_for_each_dev() function above, but it
319 * returns a reference to a device that is 'found' for later use, as
320 * determined by the @match callback.
321 *
322 * The callback should return 0 if the device doesn't match and non-zero
323 * if it does. If the callback returns non-zero, this function will
324 * return to the caller and not iterate over any more devices.
Randy Dunlapa63ca8f2008-01-30 11:51:08 -0800325 *
Dave Youngfd048972008-01-22 15:27:08 +0800326 * Note, you will need to drop the reference with put_device() after use.
327 *
328 * We hold class->sem in this function, so it can not be
329 * re-acquired in @match, otherwise it will self-deadlocking. For
330 * example, calls to add or remove class members would be verboten.
331 */
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400332struct device *class_find_device(struct class *class, struct device *start,
333 void *data,
334 int (*match)(struct device *, void *))
Dave Youngfd048972008-01-22 15:27:08 +0800335{
336 struct device *dev;
337 int found = 0;
338
339 if (!class)
340 return NULL;
341
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500342 down(&class->p->sem);
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700343 list_for_each_entry(dev, &class->p->class_devices, node) {
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400344 if (start) {
345 if (start == dev)
346 start = NULL;
347 continue;
348 }
Dave Youngfd048972008-01-22 15:27:08 +0800349 dev = get_device(dev);
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400350 if (match(dev, data)) {
351 found = 1;
Dave Youngfd048972008-01-22 15:27:08 +0800352 break;
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400353 } else
354 put_device(dev);
Dave Youngfd048972008-01-22 15:27:08 +0800355 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500356 up(&class->p->sem);
Dave Youngfd048972008-01-22 15:27:08 +0800357
358 return found ? dev : NULL;
359}
360EXPORT_SYMBOL_GPL(class_find_device);
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362int class_interface_register(struct class_interface *class_intf)
363{
364 struct class *parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200365 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 if (!class_intf || !class_intf->class)
368 return -ENODEV;
369
370 parent = class_get(class_intf->class);
371 if (!parent)
372 return -EINVAL;
373
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500374 down(&parent->p->sem);
375 list_add_tail(&class_intf->node, &parent->p->interfaces);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200376 if (class_intf->add_dev) {
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700377 list_for_each_entry(dev, &parent->p->class_devices, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200378 class_intf->add_dev(dev, class_intf);
379 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500380 up(&parent->p->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 return 0;
383}
384
385void class_interface_unregister(struct class_interface *class_intf)
386{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800387 struct class *parent = class_intf->class;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200388 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (!parent)
391 return;
392
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500393 down(&parent->p->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 list_del_init(&class_intf->node);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200395 if (class_intf->remove_dev) {
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700396 list_for_each_entry(dev, &parent->p->class_devices, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200397 class_intf->remove_dev(dev, class_intf);
398 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500399 up(&parent->p->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 class_put(parent);
402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404int __init classes_init(void)
405{
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -0500406 class_kset = kset_create_and_add("class", NULL, NULL);
407 if (!class_kset)
408 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return 0;
410}
411
412EXPORT_SYMBOL_GPL(class_create_file);
413EXPORT_SYMBOL_GPL(class_remove_file);
414EXPORT_SYMBOL_GPL(class_register);
415EXPORT_SYMBOL_GPL(class_unregister);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800416EXPORT_SYMBOL_GPL(class_create);
417EXPORT_SYMBOL_GPL(class_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419EXPORT_SYMBOL_GPL(class_interface_register);
420EXPORT_SYMBOL_GPL(class_interface_unregister);