Skip to content

Commit f78b54e

Browse files
lsgunthbwhacks
authored andcommitted
chardev: add helper function to register char devs with a struct device
commit 233ed09 upstream. Credit for this patch goes is shared with Dan Williams [1]. I've taken things one step further to make the helper function more useful and clean up calling code. There's a common pattern in the kernel whereby a struct cdev is placed in a structure along side a struct device which manages the life-cycle of both. In the naive approach, the reference counting is broken and the struct device can free everything before the chardev code is entirely released. Many developers have solved this problem by linking the internal kobjs in this fashion: cdev.kobj.parent = &parent_dev.kobj; The cdev code explicitly gets and puts a reference to it's kobj parent. So this seems like it was intended to be used this way. Dmitrty Torokhov first put this in place in 2012 with this commit: 2f0157f char_dev: pin parent kobject and the first instance of the fix was then done in the input subsystem in the following commit: 4a215aa Input: fix use-after-free introduced with dynamic minor changes Subsequently over the years, however, this issue seems to have tripped up multiple developers independently. For example, see these commits: 0d5b7da iio: Prevent race between IIO chardev opening and IIO device (by Lars-Peter Clausen in 2013) ba0ef85 tpm: Fix initialization of the cdev (by Jason Gunthorpe in 2015) 5b28dde [media] media: fix use-after-free in cdev_put() when app exits after driver unbind (by Shauh Khan in 2016) This technique is similarly done in at least 15 places within the kernel and probably should have been done so in another, at least, 5 places. The kobj line also looks very suspect in that one would not expect drivers to have to mess with kobject internals in this way. Even highly experienced kernel developers can be surprised by this code, as seen in [2]. To help alleviate this situation, and hopefully prevent future wasted effort on this problem, this patch introduces a helper function to register a char device along with its parent struct device. This creates a more regular API for tying a char device to its parent without the developer having to set members in the underlying kobject. This patch introduce cdev_device_add and cdev_device_del which replaces a common pattern including setting the kobj parent, calling cdev_add and then calling device_add. It also introduces cdev_set_parent for the few cases that set the kobject parent without using device_add. [1] https://lkml.org/lkml/2017/2/13/700 [2] https://lkml.org/lkml/2017/2/10/370 Signed-off-by: Logan Gunthorpe <[email protected]> Signed-off-by: Dan Williams <[email protected]> Reviewed-by: Hans Verkuil <[email protected]> Reviewed-by: Alexandre Belloni <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Ben Hutchings <[email protected]>
1 parent 890346c commit f78b54e

File tree

2 files changed

+91
-0
lines changed

2 files changed

+91
-0
lines changed

fs/char_dev.c

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,85 @@ int cdev_add(struct cdev *p, dev_t dev, unsigned count)
488488
return 0;
489489
}
490490

491+
/**
492+
* cdev_set_parent() - set the parent kobject for a char device
493+
* @p: the cdev structure
494+
* @kobj: the kobject to take a reference to
495+
*
496+
* cdev_set_parent() sets a parent kobject which will be referenced
497+
* appropriately so the parent is not freed before the cdev. This
498+
* should be called before cdev_add.
499+
*/
500+
void cdev_set_parent(struct cdev *p, struct kobject *kobj)
501+
{
502+
WARN_ON(!kobj->state_initialized);
503+
p->kobj.parent = kobj;
504+
}
505+
506+
/**
507+
* cdev_device_add() - add a char device and it's corresponding
508+
* struct device, linkink
509+
* @dev: the device structure
510+
* @cdev: the cdev structure
511+
*
512+
* cdev_device_add() adds the char device represented by @cdev to the system,
513+
* just as cdev_add does. It then adds @dev to the system using device_add
514+
* The dev_t for the char device will be taken from the struct device which
515+
* needs to be initialized first. This helper function correctly takes a
516+
* reference to the parent device so the parent will not get released until
517+
* all references to the cdev are released.
518+
*
519+
* This helper uses dev->devt for the device number. If it is not set
520+
* it will not add the cdev and it will be equivalent to device_add.
521+
*
522+
* This function should be used whenever the struct cdev and the
523+
* struct device are members of the same structure whose lifetime is
524+
* managed by the struct device.
525+
*
526+
* NOTE: Callers must assume that userspace was able to open the cdev and
527+
* can call cdev fops callbacks at any time, even if this function fails.
528+
*/
529+
int cdev_device_add(struct cdev *cdev, struct device *dev)
530+
{
531+
int rc = 0;
532+
533+
if (dev->devt) {
534+
cdev_set_parent(cdev, &dev->kobj);
535+
536+
rc = cdev_add(cdev, dev->devt, 1);
537+
if (rc)
538+
return rc;
539+
}
540+
541+
rc = device_add(dev);
542+
if (rc)
543+
cdev_del(cdev);
544+
545+
return rc;
546+
}
547+
548+
/**
549+
* cdev_device_del() - inverse of cdev_device_add
550+
* @dev: the device structure
551+
* @cdev: the cdev structure
552+
*
553+
* cdev_device_del() is a helper function to call cdev_del and device_del.
554+
* It should be used whenever cdev_device_add is used.
555+
*
556+
* If dev->devt is not set it will not remove the cdev and will be equivalent
557+
* to device_del.
558+
*
559+
* NOTE: This guarantees that associated sysfs callbacks are not running
560+
* or runnable, however any cdevs already open will remain and their fops
561+
* will still be callable even after this function returns.
562+
*/
563+
void cdev_device_del(struct cdev *cdev, struct device *dev)
564+
{
565+
device_del(dev);
566+
if (dev->devt)
567+
cdev_del(cdev);
568+
}
569+
491570
static void cdev_unmap(dev_t dev, unsigned count)
492571
{
493572
kobj_unmap(cdev_map, dev, count);
@@ -499,6 +578,10 @@ static void cdev_unmap(dev_t dev, unsigned count)
499578
*
500579
* cdev_del() removes @p from the system, possibly freeing the structure
501580
* itself.
581+
*
582+
* NOTE: This guarantees that cdev device will no longer be able to be
583+
* opened, however any cdevs already open will remain and their fops will
584+
* still be callable even after cdev_del returns.
502585
*/
503586
void cdev_del(struct cdev *p)
504587
{
@@ -589,6 +672,9 @@ EXPORT_SYMBOL(cdev_init);
589672
EXPORT_SYMBOL(cdev_alloc);
590673
EXPORT_SYMBOL(cdev_del);
591674
EXPORT_SYMBOL(cdev_add);
675+
EXPORT_SYMBOL(cdev_set_parent);
676+
EXPORT_SYMBOL(cdev_device_add);
677+
EXPORT_SYMBOL(cdev_device_del);
592678
EXPORT_SYMBOL(__register_chrdev);
593679
EXPORT_SYMBOL(__unregister_chrdev);
594680
EXPORT_SYMBOL(directly_mappable_cdev_bdi);

include/linux/cdev.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <linux/kobject.h>
55
#include <linux/kdev_t.h>
66
#include <linux/list.h>
7+
#include <linux/device.h>
78

89
struct file_operations;
910
struct inode;
@@ -26,6 +27,10 @@ void cdev_put(struct cdev *p);
2627

2728
int cdev_add(struct cdev *, dev_t, unsigned);
2829

30+
void cdev_set_parent(struct cdev *p, struct kobject *kobj);
31+
int cdev_device_add(struct cdev *cdev, struct device *dev);
32+
void cdev_device_del(struct cdev *cdev, struct device *dev);
33+
2934
void cdev_del(struct cdev *);
3035

3136
void cd_forget(struct inode *);

0 commit comments

Comments
 (0)