Commit 3b3f78a6 authored by Liu Jian's avatar Liu Jian Committed by Greg Kroah-Hartman

driver: uio: fix possible use-after-free in __uio_register_device

[ Upstream commit 221a1f4a ]

In uio_dev_add_attributes() error handing case, idev is used after
device_unregister(), in which 'idev' has been released, touch idev cause
use-after-free.

Fixes: a93e7b33 ("uio: Prevent device destruction while fds are open")
Signed-off-by: default avatarLiu Jian <liujian56@huawei.com>
Reviewed-by: default avatarHamish Martin <hamish.martin@alliedtelesis.co.nz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 3b656e7c
......@@ -943,6 +943,7 @@ int __uio_register_device(struct module *owner,
return ret;
}
device_initialize(&idev->dev);
idev->dev.devt = MKDEV(uio_major, idev->minor);
idev->dev.class = &uio_class;
idev->dev.parent = parent;
......@@ -953,7 +954,7 @@ int __uio_register_device(struct module *owner,
if (ret)
goto err_device_create;
ret = device_register(&idev->dev);
ret = device_add(&idev->dev);
if (ret)
goto err_device_create;
......@@ -985,9 +986,10 @@ int __uio_register_device(struct module *owner,
err_request_irq:
uio_dev_del_attributes(idev);
err_uio_dev_add_attributes:
device_unregister(&idev->dev);
device_del(&idev->dev);
err_device_create:
uio_free_minor(idev);
put_device(&idev->dev);
return ret;
}
EXPORT_SYMBOL_GPL(__uio_register_device);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment