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 memset(iter, 0, sizeof(*iter));
318 if (!sp) {
319 pr_crit("%s: class %p was not registered yet\n",
320 __func__, class);
321 return;
322 }
323
324 if (start)
325 start_knode = &start->p->knode_class;
326 klist_iter_init_node(&sp->klist_devices, &iter->ki, start_knode);
327 iter->type = type;
328 iter->sp = sp;
329 }
330 EXPORT_SYMBOL_GPL(class_dev_iter_init);
331
332 /**
333 * class_dev_iter_next - iterate to the next device
334 * @iter: class iterator to proceed
335 *
336 * Proceed @iter to the next device and return it. Returns NULL if
337 * iteration is complete.
338 *
339 * The returned device is referenced and won't be released till
340 * iterator is proceed to the next device or exited. The caller is
341 * free to do whatever it wants to do with the device including
342 * calling back into class code.
343 */
class_dev_iter_next(struct class_dev_iter * iter)344 struct device *class_dev_iter_next(struct class_dev_iter *iter)
345 {
346 struct klist_node *knode;
347 struct device *dev;
348
349 if (!iter->sp)
350 return NULL;
351
352 while (1) {
353 knode = klist_next(&iter->ki);
354 if (!knode)
355 return NULL;
356 dev = klist_class_to_dev(knode);
357 if (!iter->type || iter->type == dev->type)
358 return dev;
359 }
360 }
361 EXPORT_SYMBOL_GPL(class_dev_iter_next);
362
363 /**
364 * class_dev_iter_exit - finish iteration
365 * @iter: class iterator to finish
366 *
367 * Finish an iteration. Always call this function after iteration is
368 * complete whether the iteration ran till the end or not.
369 */
class_dev_iter_exit(struct class_dev_iter * iter)370 void class_dev_iter_exit(struct class_dev_iter *iter)
371 {
372 klist_iter_exit(&iter->ki);
373 subsys_put(iter->sp);
374 }
375 EXPORT_SYMBOL_GPL(class_dev_iter_exit);
376
377 /**
378 * class_for_each_device - device iterator
379 * @class: the class we're iterating
380 * @start: the device to start with in the list, if any.
381 * @data: data for the callback
382 * @fn: function to be called for each device
383 *
384 * Iterate over @class's list of devices, and call @fn for each,
385 * passing it @data. If @start is set, the list iteration will start
386 * there, otherwise if it is NULL, the iteration starts at the
387 * beginning of the list.
388 *
389 * We check the return of @fn each time. If it returns anything
390 * other than 0, we break out and return that value.
391 *
392 * @fn is allowed to do anything including calling back into class
393 * code. There's no locking restriction.
394 */
class_for_each_device(const struct class * class,const struct device * start,void * data,int (* fn)(struct device *,void *))395 int class_for_each_device(const struct class *class, const struct device *start,
396 void *data, int (*fn)(struct device *, void *))
397 {
398 struct subsys_private *sp = class_to_subsys(class);
399 struct class_dev_iter iter;
400 struct device *dev;
401 int error = 0;
402
403 if (!class)
404 return -EINVAL;
405 if (!sp) {
406 WARN(1, "%s called for class '%s' before it was initialized",
407 __func__, class->name);
408 return -EINVAL;
409 }
410
411 class_dev_iter_init(&iter, class, start, NULL);
412 while ((dev = class_dev_iter_next(&iter))) {
413 error = fn(dev, data);
414 if (error)
415 break;
416 }
417 class_dev_iter_exit(&iter);
418 subsys_put(sp);
419
420 return error;
421 }
422 EXPORT_SYMBOL_GPL(class_for_each_device);
423
424 /**
425 * class_find_device - device iterator for locating a particular device
426 * @class: the class we're iterating
427 * @start: Device to begin with
428 * @data: data for the match function
429 * @match: function to check device
430 *
431 * This is similar to the class_for_each_dev() function above, but it
432 * returns a reference to a device that is 'found' for later use, as
433 * determined by the @match callback.
434 *
435 * The callback should return 0 if the device doesn't match and non-zero
436 * if it does. If the callback returns non-zero, this function will
437 * return to the caller and not iterate over any more devices.
438 *
439 * Note, you will need to drop the reference with put_device() after use.
440 *
441 * @match is allowed to do anything including calling back into class
442 * code. There's no locking restriction.
443 */
class_find_device(const struct class * class,const struct device * start,const void * data,int (* match)(struct device *,const void *))444 struct device *class_find_device(const struct class *class, const struct device *start,
445 const void *data,
446 int (*match)(struct device *, const void *))
447 {
448 struct subsys_private *sp = class_to_subsys(class);
449 struct class_dev_iter iter;
450 struct device *dev;
451
452 if (!class)
453 return NULL;
454 if (!sp) {
455 WARN(1, "%s called for class '%s' before it was initialized",
456 __func__, class->name);
457 return NULL;
458 }
459
460 class_dev_iter_init(&iter, class, start, NULL);
461 while ((dev = class_dev_iter_next(&iter))) {
462 if (match(dev, data)) {
463 get_device(dev);
464 break;
465 }
466 }
467 class_dev_iter_exit(&iter);
468 subsys_put(sp);
469
470 return dev;
471 }
472 EXPORT_SYMBOL_GPL(class_find_device);
473
class_interface_register(struct class_interface * class_intf)474 int class_interface_register(struct class_interface *class_intf)
475 {
476 struct subsys_private *sp;
477 const struct class *parent;
478 struct class_dev_iter iter;
479 struct device *dev;
480
481 if (!class_intf || !class_intf->class)
482 return -ENODEV;
483
484 parent = class_intf->class;
485 sp = class_to_subsys(parent);
486 if (!sp)
487 return -EINVAL;
488
489 /*
490 * Reference in sp is now incremented and will be dropped when
491 * the interface is removed in the call to class_interface_unregister()
492 */
493
494 mutex_lock(&sp->mutex);
495 list_add_tail(&class_intf->node, &sp->interfaces);
496 if (class_intf->add_dev) {
497 class_dev_iter_init(&iter, parent, NULL, NULL);
498 while ((dev = class_dev_iter_next(&iter)))
499 class_intf->add_dev(dev);
500 class_dev_iter_exit(&iter);
501 }
502 mutex_unlock(&sp->mutex);
503
504 return 0;
505 }
506 EXPORT_SYMBOL_GPL(class_interface_register);
507
class_interface_unregister(struct class_interface * class_intf)508 void class_interface_unregister(struct class_interface *class_intf)
509 {
510 struct subsys_private *sp;
511 const struct class *parent = class_intf->class;
512 struct class_dev_iter iter;
513 struct device *dev;
514
515 if (!parent)
516 return;
517
518 sp = class_to_subsys(parent);
519 if (!sp)
520 return;
521
522 mutex_lock(&sp->mutex);
523 list_del_init(&class_intf->node);
524 if (class_intf->remove_dev) {
525 class_dev_iter_init(&iter, parent, NULL, NULL);
526 while ((dev = class_dev_iter_next(&iter)))
527 class_intf->remove_dev(dev);
528 class_dev_iter_exit(&iter);
529 }
530 mutex_unlock(&sp->mutex);
531
532 /*
533 * Decrement the reference count twice, once for the class_to_subsys()
534 * call in the start of this function, and the second one from the
535 * reference increment in class_interface_register()
536 */
537 subsys_put(sp);
538 subsys_put(sp);
539 }
540 EXPORT_SYMBOL_GPL(class_interface_unregister);
541
show_class_attr_string(const struct class * class,const struct class_attribute * attr,char * buf)542 ssize_t show_class_attr_string(const struct class *class,
543 const struct class_attribute *attr, char *buf)
544 {
545 struct class_attribute_string *cs;
546
547 cs = container_of(attr, struct class_attribute_string, attr);
548 return sysfs_emit(buf, "%s\n", cs->str);
549 }
550
551 EXPORT_SYMBOL_GPL(show_class_attr_string);
552
553 struct class_compat {
554 struct kobject *kobj;
555 };
556
557 /**
558 * class_compat_register - register a compatibility class
559 * @name: the name of the class
560 *
561 * Compatibility class are meant as a temporary user-space compatibility
562 * workaround when converting a family of class devices to a bus devices.
563 */
class_compat_register(const char * name)564 struct class_compat *class_compat_register(const char *name)
565 {
566 struct class_compat *cls;
567
568 cls = kmalloc(sizeof(struct class_compat), GFP_KERNEL);
569 if (!cls)
570 return NULL;
571 cls->kobj = kobject_create_and_add(name, &class_kset->kobj);
572 if (!cls->kobj) {
573 kfree(cls);
574 return NULL;
575 }
576 return cls;
577 }
578 EXPORT_SYMBOL_GPL(class_compat_register);
579
580 /**
581 * class_compat_unregister - unregister a compatibility class
582 * @cls: the class to unregister
583 */
class_compat_unregister(struct class_compat * cls)584 void class_compat_unregister(struct class_compat *cls)
585 {
586 kobject_put(cls->kobj);
587 kfree(cls);
588 }
589 EXPORT_SYMBOL_GPL(class_compat_unregister);
590
591 /**
592 * class_compat_create_link - create a compatibility class device link to
593 * a bus device
594 * @cls: the compatibility class
595 * @dev: the target bus device
596 * @device_link: an optional device to which a "device" link should be created
597 */
class_compat_create_link(struct class_compat * cls,struct device * dev,struct device * device_link)598 int class_compat_create_link(struct class_compat *cls, struct device *dev,
599 struct device *device_link)
600 {
601 int error;
602
603 error = sysfs_create_link(cls->kobj, &dev->kobj, dev_name(dev));
604 if (error)
605 return error;
606
607 /*
608 * Optionally add a "device" link (typically to the parent), as a
609 * class device would have one and we want to provide as much
610 * backwards compatibility as possible.
611 */
612 if (device_link) {
613 error = sysfs_create_link(&dev->kobj, &device_link->kobj,
614 "device");
615 if (error)
616 sysfs_remove_link(cls->kobj, dev_name(dev));
617 }
618
619 return error;
620 }
621 EXPORT_SYMBOL_GPL(class_compat_create_link);
622
623 /**
624 * class_compat_remove_link - remove a compatibility class device link to
625 * a bus device
626 * @cls: the compatibility class
627 * @dev: the target bus device
628 * @device_link: an optional device to which a "device" link was previously
629 * created
630 */
class_compat_remove_link(struct class_compat * cls,struct device * dev,struct device * device_link)631 void class_compat_remove_link(struct class_compat *cls, struct device *dev,
632 struct device *device_link)
633 {
634 if (device_link)
635 sysfs_remove_link(&dev->kobj, "device");
636 sysfs_remove_link(cls->kobj, dev_name(dev));
637 }
638 EXPORT_SYMBOL_GPL(class_compat_remove_link);
639
640 /**
641 * class_is_registered - determine if at this moment in time, a class is
642 * registered in the driver core or not.
643 * @class: the class to check
644 *
645 * Returns a boolean to state if the class is registered in the driver core
646 * or not. Note that the value could switch right after this call is made,
647 * so only use this in places where you "know" it is safe to do so (usually
648 * to determine if the specific class has been registered yet or not).
649 *
650 * Be careful in using this.
651 */
class_is_registered(const struct class * class)652 bool class_is_registered(const struct class *class)
653 {
654 struct subsys_private *sp = class_to_subsys(class);
655 bool is_initialized = false;
656
657 if (sp) {
658 is_initialized = true;
659 subsys_put(sp);
660 }
661 return is_initialized;
662 }
663 EXPORT_SYMBOL_GPL(class_is_registered);
664
classes_init(void)665 int __init classes_init(void)
666 {
667 class_kset = kset_create_and_add("class", NULL, NULL);
668 if (!class_kset)
669 return -ENOMEM;
670 return 0;
671 }
672