If you unplug an lirc device while reading from it, you will get an
use after free as the cdev is freed while still in use.

Signed-off-by: Sean Young <s...@mess.org>
---
 drivers/media/rc/lirc_dev.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/media/rc/lirc_dev.c b/drivers/media/rc/lirc_dev.c
index bf4309f..60fd106 100644
--- a/drivers/media/rc/lirc_dev.c
+++ b/drivers/media/rc/lirc_dev.c
@@ -164,15 +164,15 @@ static int lirc_cdev_add(struct irctl *ir)
        struct lirc_driver *d = &ir->d;
        struct cdev *cdev;
 
-       cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
+       cdev = cdev_alloc();
        if (!cdev)
                goto err_out;
 
        if (d->fops) {
-               cdev_init(cdev, d->fops);
+               cdev->ops = d->fops;
                cdev->owner = d->owner;
        } else {
-               cdev_init(cdev, &lirc_dev_fops);
+               cdev->ops = &lirc_dev_fops;
                cdev->owner = THIS_MODULE;
        }
        retval = kobject_set_name(&cdev->kobj, "lirc%d", d->minor);
@@ -190,7 +190,7 @@ static int lirc_cdev_add(struct irctl *ir)
        return 0;
 
 err_out:
-       kfree(cdev);
+       cdev_del(cdev);
        return retval;
 }
 
@@ -420,7 +420,6 @@ int lirc_unregister_driver(int minor)
        } else {
                lirc_irctl_cleanup(ir);
                cdev_del(cdev);
-               kfree(cdev);
                kfree(ir);
                irctls[minor] = NULL;
        }
@@ -521,7 +520,6 @@ int lirc_dev_fop_close(struct inode *inode, struct file 
*file)
                lirc_irctl_cleanup(ir);
                cdev_del(cdev);
                irctls[ir->d.minor] = NULL;
-               kfree(cdev);
                kfree(ir);
        }
 
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to