1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * class.c - basic device class management
4 *
5 * Copyright (c) 2002-3 Patrick Mochel
6 * Copyright (c) 2002-3 Open Source Development Labs
7 * Copyright (c) 2003-2004 Greg Kroah-Hartman
8 * Copyright (c) 2003-2004 IBM Corp.
9 */
10
11 #include <linux/device/class.h>
12 #include <linux/device.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/string.h>
16 #include <linux/kdev_t.h>
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/blkdev.h>
20 #include <linux/mutex.h>
21 #include "base.h"
22
23 /* /sys/class */
24 static struct kset *class_kset;
25
26 #define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
27
28 /**
29 * class_to_subsys - Turn a struct class into a struct subsys_private
30 *
31 * @class: pointer to the struct bus_type to look up
32 *
33 * The driver core internals need to work on the subsys_private structure, not
34 * the external struct class pointer. This function walks the list of
35 * registered classes in the system and finds the matching one and returns the
36 * internal struct subsys_private that relates to that class.
37 *
38 * Note, the reference count of the return value is INCREMENTED if it is not
39 * NULL. A call to subsys_put() must be done when finished with the pointer in
40 * order for it to be properly freed.
41 */
class_to_subsys(const struct class * class)42 struct subsys_private *class_to_subsys(const struct class *class)
43 {
44 struct subsys_private *sp = NULL;
45 struct kobject *kobj;
46
47 if (!class || !class_kset)
48 return NULL;
49
50 spin_lock(&class_kset->list_lock);
51
52 if (list_empty(&class_kset->list))
53 goto done;
54
55 list_for_each_entry(kobj, &class_kset->list, entry) {
56 struct kset *kset = container_of(kobj, struct kset, kobj);
57
58 sp = container_of_const(kset, struct subsys_private, subsys);
59 if (sp->class == class)
60 goto done;
61 }
62 sp = NULL;
63 done:
64 sp = subsys_get(sp);
65 spin_unlock(&class_kset->list_lock);
66 return sp;
67 }
68
class_attr_show(struct kobject * kobj,struct attribute * attr,char * buf)69 static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr,
70 char *buf)
71 {
72 struct class_attribute *class_attr = to_class_attr(attr);
73 struct subsys_private *cp = to_subsys_private(kobj);
74 ssize_t ret = -EIO;
75
76 if (class_attr->show)
77 ret = class_attr->show(cp->class, class_attr, buf);
78 return ret;
79 }
80
class_attr_store(struct kobject * kobj,struct attribute * attr,const char * buf,size_t count)81 static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr,
82 const char *buf, size_t count)
83 {
84 struct class_attribute *class_attr = to_class_attr(attr);
85 struct subsys_private *cp = to_subsys_private(kobj);
86 ssize_t ret = -EIO;
87
88 if (class_attr->store)
89 ret = class_attr->store(cp->class, class_attr, buf, count);
90 return ret;
91 }
92
class_release(struct kobject * kobj)93 static void class_release(struct kobject *kobj)
94 {
95 struct subsys_private *cp = to_subsys_private(kobj);
96 const struct class *class = cp->class;
97
98 pr_debug("class '%s': release.\n", class->name);
99
100 if (class->class_release)
101 class->class_release(class);
102 else
103 pr_debug("class '%s' does not have a release() function, "
104 "be careful\n", class->name);
105
106 lockdep_unregister_key(&cp->lock_key);
107 kfree(cp);
108 }
109
class_child_ns_type(const struct kobject * kobj)110 static const struct kobj_ns_type_operations *class_child_ns_type(const struct kobject *kobj)
111 {
112 const struct subsys_private *cp = to_subsys_private(kobj);
113 const struct class *class = cp->class;
114
115 return class->ns_type;
116 }
117
118 static const struct sysfs_ops class_sysfs_ops = {
119 .show = class_attr_show,
120 .store = class_attr_store,
121 };
122
123 static const struct kobj_type class_ktype = {
124 .sysfs_ops = &class_sysfs_ops,
125 .release = class_release,
126 .child_ns_type = class_child_ns_type,
127 };
128
class_create_file_ns(const struct class * cls,const struct class_attribute * attr,const void * ns)129 int class_create_file_ns(const struct class *cls, const struct class_attribute *attr,
130 const void *ns)
131 {
132 struct subsys_private *sp = class_to_subsys(cls);
133 int error;
134
135 if (!sp)
136 return -EINVAL;
137
138 error = sysfs_create_file_ns(&sp->subsys.kobj, &attr->attr, ns);
139 subsys_put(sp);
140
141 return error;
142 }
143 EXPORT_SYMBOL_GPL(class_create_file_ns);
144
class_remove_file_ns(const struct class * cls,const struct class_attribute * attr,const void * ns)145 void class_remove_file_ns(const struct class *cls, const struct class_attribute *attr,
146 const void *ns)
147 {
148 struct subsys_private *sp = class_to_subsys(cls);
149
150 if (!sp)
151 return;
152
153 sysfs_remove_file_ns(&sp->subsys.kobj, &attr->attr, ns);
154 subsys_put(sp);
155 }
156 EXPORT_SYMBOL_GPL(class_remove_file_ns);
157
klist_class_to_dev(struct klist_node * n)158 static struct device *klist_class_to_dev(struct klist_node *n)
159 {
160 struct device_private *p = to_device_private_class(n);
161 return p->device;
162 }
163
klist_class_dev_get(struct klist_node * n)164 static void klist_class_dev_get(struct klist_node *n)
165 {
166 struct device *dev = klist_class_to_dev(n);
167
168 get_device(dev);
169 }
170
klist_class_dev_put(struct klist_node * n)171 static void klist_class_dev_put(struct klist_node *n)
172 {
173 struct device *dev = klist_class_to_dev(n);
174
175 put_device(dev);
176 }
177
class_register(const struct class * cls)178 int class_register(const struct class *cls)
179 {
180 struct subsys_private *cp;
181 struct lock_class_key *key;
182 int error;
183
184 pr_debug("device class '%s': registering\n", cls->name);
185
186 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
187 if (!cp)
188 return -ENOMEM;
189 klist_init(&cp->klist_devices, klist_class_dev_get, klist_class_dev_put);
190 INIT_LIST_HEAD(&cp->interfaces);
191 kset_init(&cp->glue_dirs);
192 key = &cp->lock_key;
193 lockdep_register_key(key);
194 __mutex_init(&cp->mutex, "subsys mutex", key);
195 error = kobject_set_name(&cp->subsys.kobj, "%s", cls->name);
196 if (error) {
197 kfree(cp);
198 return error;
199 }
200
201 cp->subsys.kobj.kset = class_kset;
202 cp->subsys.kobj.ktype = &class_ktype;
203 cp->class = cls;
204
205 error = kset_register(&cp->subsys);
206 if (error)
207 goto err_out;
208
209 error = sysfs_create_groups(&cp->subsys.kobj, cls->class_groups);
210 if (error) {
211 kobject_del(&cp->subsys.kobj);
212 kfree_const(cp->subsys.kobj.name);
213 goto err_out;
214 }
215 return 0;
216
217 err_out:
218 lockdep_unregister_key(key);
219 kfree(cp);
220 return error;
221 }
222 EXPORT_SYMBOL_GPL(class_register);
223
class_unregister(const struct class * cls)224 void class_unregister(const struct class *cls)
225 {
226 struct subsys_private *sp = class_to_subsys(cls);
227
228 if (!sp)
229 return;
230
231 pr_debug("device class '%s': unregistering\n", cls->name);
232
233 sysfs_remove_groups(&sp->subsys.kobj, cls->class_groups);
234 kset_unregister(&sp->subsys);
235 subsys_put(sp);
236 }
237 EXPORT_SYMBOL_GPL(class_unregister);
238
class_create_release(const struct class * cls)239 static void class_create_release(const struct class *cls)
240 {
241 pr_debug("%s called for %s\n", __func__, cls->name);
242 kfree(cls);
243 }
244
245 /**
246 * class_create - create a struct class structure
247 * @name: pointer to a string for the name of this class.
248 *
249 * This is used to create a struct class pointer that can then be used
250 * in calls to device_create().
251 *
252 * Returns &struct class pointer on success, or ERR_PTR() on error.
253 *
254 * Note, the pointer created here is to be destroyed when finished by
255 * making a call to class_destroy().
256 */
class_create(const char * name)257 struct class *class_create(const char *name)
258 {
259 struct class *cls;
260 int retval;
261
262 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
263 if (!cls) {
264 retval = -ENOMEM;
265 goto error;
266 }
267
268 cls->name = name;
269 cls->class_release = class_create_release;
270
271 retval = class_register(cls);
272 if (retval)
273 goto error;
274
275 return cls;
276
277 error:
278 kfree(cls);
279 return ERR_PTR(retval);
280 }
281 EXPORT_SYMBOL_GPL(class_create);
282
283 /**
284 * class_destroy - destroys a struct class structure
285 * @cls: pointer to the struct class that is to be destroyed
286 *
287 * Note, the pointer to be destroyed must have been created with a call
288 * to class_create().
289 */
class_destroy(const struct class * cls)290 void class_destroy(const struct class *cls)
291 {
292 if (IS_ERR_OR_NULL(cls))
293 return;
294
295 class_unregister(cls);
296 }
297 EXPORT_SYMBOL_GPL(class_destroy);
298
299 /**
300 * class_dev_iter_init - initialize class device iterator
301 * @iter: class iterator to initialize
302 * @class: the class we wanna iterate over
303 * @start: the device to start iterating from, if any
304 * @type: device_type of the devices to iterate over, NULL for all
305 *
306 * Initialize class iterator @iter such that it iterates over devices
307 * of @class. If @start is set, the list iteration will start there,
308 * otherwise if it is NULL, the iteration starts at the beginning of
309 * the list.
310 */
class_dev_iter_init(struct class_dev_iter * iter,const struct class * class,const struct device * start,const struct device_type * type)311 void class_dev_iter_init(struct class_dev_iter *iter, const struct class *class,
312 const struct device *start, const struct device_type *type)
313 {
314 struct subsys_private *sp = class_to_subsys(class);
315 struct klist_node *start_knode = NULL;
316
317 if (!sp)
318 return;
319
320 if (start)
321 start_knode = &start->p->knode_class;
322 klist_iter_init_node(&sp->klist_devices, &iter->ki, start_knode);
323 iter->type = type;
324 iter->sp = sp;
325 }
326 EXPORT_SYMBOL_GPL(class_dev_iter_init);
327
328 /**
329 * class_dev_iter_next - iterate to the next device
330 * @iter: class iterator to proceed
331 *
332 * Proceed @iter to the next device and return it. Returns NULL if
333 * iteration is complete.
334 *
335 * The returned device is referenced and won't be released till
336 * iterator is proceed to the next device or exited. The caller is
337 * free to do whatever it wants to do with the device including
338 * calling back into class code.
339 */
class_dev_iter_next(struct class_dev_iter * iter)340 struct device *class_dev_iter_next(struct class_dev_iter *iter)
341 {
342 struct klist_node *knode;
343 struct device *dev;
344
345 while (1) {
346 knode = klist_next(&iter->ki);
347 if (!knode)
348 return NULL;
349 dev = klist_class_to_dev(knode);
350 if (!iter->type || iter->type == dev->type)
351 return dev;
352 }
353 }
354 EXPORT_SYMBOL_GPL(class_dev_iter_next);
355
356 /**
357 * class_dev_iter_exit - finish iteration
358 * @iter: class iterator to finish
359 *
360 * Finish an iteration. Always call this function after iteration is
361 * complete whether the iteration ran till the end or not.
362 */
class_dev_iter_exit(struct class_dev_iter * iter)363 void class_dev_iter_exit(struct class_dev_iter *iter)
364 {
365 klist_iter_exit(&iter->ki);
366 subsys_put(iter->sp);
367 }
368 EXPORT_SYMBOL_GPL(class_dev_iter_exit);
369
370 /**
371 * class_for_each_device - device iterator
372 * @class: the class we're iterating
373 * @start: the device to start with in the list, if any.
374 * @data: data for the callback
375 * @fn: function to be called for each device
376 *
377 * Iterate over @class's list of devices, and call @fn for each,
378 * passing it @data. If @start is set, the list iteration will start
379 * there, otherwise if it is NULL, the iteration starts at the
380 * beginning of the list.
381 *
382 * We check the return of @fn each time. If it returns anything
383 * other than 0, we break out and return that value.
384 *
385 * @fn is allowed to do anything including calling back into class
386 * code. There's no locking restriction.
387 */
class_for_each_device(const struct class * class,const struct device * start,void * data,int (* fn)(struct device *,void *))388 int class_for_each_device(const struct class *class, const struct device *start,
389 void *data, int (*fn)(struct device *, void *))
390 {
391 struct subsys_private *sp = class_to_subsys(class);
392 struct class_dev_iter iter;
393 struct device *dev;
394 int error = 0;
395
396 if (!class)
397 return -EINVAL;
398 if (!sp) {
399 WARN(1, "%s called for class '%s' before it was initialized",
400 __func__, class->name);
401 return -EINVAL;
402 }
403
404 class_dev_iter_init(&iter, class, start, NULL);
405 while ((dev = class_dev_iter_next(&iter))) {
406 error = fn(dev, data);
407 if (error)
408 break;
409 }
410 class_dev_iter_exit(&iter);
411 subsys_put(sp);
412
413 return error;
414 }
415 EXPORT_SYMBOL_GPL(class_for_each_device);
416
417 /**
418 * class_find_device - device iterator for locating a particular device
419 * @class: the class we're iterating
420 * @start: Device to begin with
421 * @data: data for the match function
422 * @match: function to check device
423 *
424 * This is similar to the class_for_each_dev() function above, but it
425 * returns a reference to a device that is 'found' for later use, as
426 * determined by the @match callback.
427 *
428 * The callback should return 0 if the device doesn't match and non-zero
429 * if it does. If the callback returns non-zero, this function will
430 * return to the caller and not iterate over any more devices.
431 *
432 * Note, you will need to drop the reference with put_device() after use.
433 *
434 * @match is allowed to do anything including calling back into class
435 * code. There's no locking restriction.
436 */
class_find_device(const struct class * class,const struct device * start,const void * data,int (* match)(struct device *,const void *))437 struct device *class_find_device(const struct class *class, const struct device *start,
438 const void *data,
439 int (*match)(struct device *, const void *))
440 {
441 struct subsys_private *sp = class_to_subsys(class);
442 struct class_dev_iter iter;
443 struct device *dev;
444
445 if (!class)
446 return NULL;
447 if (!sp) {
448 WARN(1, "%s called for class '%s' before it was initialized",
449 __func__, class->name);
450 return NULL;
451 }
452
453 class_dev_iter_init(&iter, class, start, NULL);
454 while ((dev = class_dev_iter_next(&iter))) {
455 if (match(dev, data)) {
456 get_device(dev);
457 break;
458 }
459 }
460 class_dev_iter_exit(&iter);
461 subsys_put(sp);
462
463 return dev;
464 }
465 EXPORT_SYMBOL_GPL(class_find_device);
466
class_interface_register(struct class_interface * class_intf)467 int class_interface_register(struct class_interface *class_intf)
468 {
469 struct subsys_private *sp;
470 const struct class *parent;
471 struct class_dev_iter iter;
472 struct device *dev;
473
474 if (!class_intf || !class_intf->class)
475 return -ENODEV;
476
477 parent = class_intf->class;
478 sp = class_to_subsys(parent);
479 if (!sp)
480 return -EINVAL;
481
482 /*
483 * Reference in sp is now incremented and will be dropped when
484 * the interface is removed in the call to class_interface_unregister()
485 */
486
487 mutex_lock(&sp->mutex);
488 list_add_tail(&class_intf->node, &sp->interfaces);
489 if (class_intf->add_dev) {
490 class_dev_iter_init(&iter, parent, NULL, NULL);
491 while ((dev = class_dev_iter_next(&iter)))
492 class_intf->add_dev(dev);
493 class_dev_iter_exit(&iter);
494 }
495 mutex_unlock(&sp->mutex);
496
497 return 0;
498 }
499 EXPORT_SYMBOL_GPL(class_interface_register);
500
class_interface_unregister(struct class_interface * class_intf)501 void class_interface_unregister(struct class_interface *class_intf)
502 {
503 struct subsys_private *sp;
504 const struct class *parent = class_intf->class;
505 struct class_dev_iter iter;
506 struct device *dev;
507
508 if (!parent)
509 return;
510
511 sp = class_to_subsys(parent);
512 if (!sp)
513 return;
514
515 mutex_lock(&sp->mutex);
516 list_del_init(&class_intf->node);
517 if (class_intf->remove_dev) {
518 class_dev_iter_init(&iter, parent, NULL, NULL);
519 while ((dev = class_dev_iter_next(&iter)))
520 class_intf->remove_dev(dev);
521 class_dev_iter_exit(&iter);
522 }
523 mutex_unlock(&sp->mutex);
524
525 /*
526 * Decrement the reference count twice, once for the class_to_subsys()
527 * call in the start of this function, and the second one from the
528 * reference increment in class_interface_register()
529 */
530 subsys_put(sp);
531 subsys_put(sp);
532 }
533 EXPORT_SYMBOL_GPL(class_interface_unregister);
534
show_class_attr_string(const struct class * class,const struct class_attribute * attr,char * buf)535 ssize_t show_class_attr_string(const struct class *class,
536 const struct class_attribute *attr, char *buf)
537 {
538 struct class_attribute_string *cs;
539
540 cs = container_of(attr, struct class_attribute_string, attr);
541 return sysfs_emit(buf, "%s\n", cs->str);
542 }
543
544 EXPORT_SYMBOL_GPL(show_class_attr_string);
545
546 struct class_compat {
547 struct kobject *kobj;
548 };
549
550 /**
551 * class_compat_register - register a compatibility class
552 * @name: the name of the class
553 *
554 * Compatibility class are meant as a temporary user-space compatibility
555 * workaround when converting a family of class devices to a bus devices.
556 */
class_compat_register(const char * name)557 struct class_compat *class_compat_register(const char *name)
558 {
559 struct class_compat *cls;
560
561 cls = kmalloc(sizeof(struct class_compat), GFP_KERNEL);
562 if (!cls)
563 return NULL;
564 cls->kobj = kobject_create_and_add(name, &class_kset->kobj);
565 if (!cls->kobj) {
566 kfree(cls);
567 return NULL;
568 }
569 return cls;
570 }
571 EXPORT_SYMBOL_GPL(class_compat_register);
572
573 /**
574 * class_compat_unregister - unregister a compatibility class
575 * @cls: the class to unregister
576 */
class_compat_unregister(struct class_compat * cls)577 void class_compat_unregister(struct class_compat *cls)
578 {
579 kobject_put(cls->kobj);
580 kfree(cls);
581 }
582 EXPORT_SYMBOL_GPL(class_compat_unregister);
583
584 /**
585 * class_compat_create_link - create a compatibility class device link to
586 * a bus device
587 * @cls: the compatibility class
588 * @dev: the target bus device
589 * @device_link: an optional device to which a "device" link should be created
590 */
class_compat_create_link(struct class_compat * cls,struct device * dev,struct device * device_link)591 int class_compat_create_link(struct class_compat *cls, struct device *dev,
592 struct device *device_link)
593 {
594 int error;
595
596 error = sysfs_create_link(cls->kobj, &dev->kobj, dev_name(dev));
597 if (error)
598 return error;
599
600 /*
601 * Optionally add a "device" link (typically to the parent), as a
602 * class device would have one and we want to provide as much
603 * backwards compatibility as possible.
604 */
605 if (device_link) {
606 error = sysfs_create_link(&dev->kobj, &device_link->kobj,
607 "device");
608 if (error)
609 sysfs_remove_link(cls->kobj, dev_name(dev));
610 }
611
612 return error;
613 }
614 EXPORT_SYMBOL_GPL(class_compat_create_link);
615
616 /**
617 * class_compat_remove_link - remove a compatibility class device link to
618 * a bus device
619 * @cls: the compatibility class
620 * @dev: the target bus device
621 * @device_link: an optional device to which a "device" link was previously
622 * created
623 */
class_compat_remove_link(struct class_compat * cls,struct device * dev,struct device * device_link)624 void class_compat_remove_link(struct class_compat *cls, struct device *dev,
625 struct device *device_link)
626 {
627 if (device_link)
628 sysfs_remove_link(&dev->kobj, "device");
629 sysfs_remove_link(cls->kobj, dev_name(dev));
630 }
631 EXPORT_SYMBOL_GPL(class_compat_remove_link);
632
633 /**
634 * class_is_registered - determine if at this moment in time, a class is
635 * registered in the driver core or not.
636 * @class: the class to check
637 *
638 * Returns a boolean to state if the class is registered in the driver core
639 * or not. Note that the value could switch right after this call is made,
640 * so only use this in places where you "know" it is safe to do so (usually
641 * to determine if the specific class has been registered yet or not).
642 *
643 * Be careful in using this.
644 */
class_is_registered(const struct class * class)645 bool class_is_registered(const struct class *class)
646 {
647 struct subsys_private *sp = class_to_subsys(class);
648 bool is_initialized = false;
649
650 if (sp) {
651 is_initialized = true;
652 subsys_put(sp);
653 }
654 return is_initialized;
655 }
656 EXPORT_SYMBOL_GPL(class_is_registered);
657
classes_init(void)658 int __init classes_init(void)
659 {
660 class_kset = kset_create_and_add("class", NULL, NULL);
661 if (!class_kset)
662 return -ENOMEM;
663 return 0;
664 }
665