]> git.baikalelectronics.ru Git - kernel.git/commit
USB: adutux: fix use-after-free on release
authorJohan Hovold <johan@kernel.org>
Wed, 9 Oct 2019 15:38:44 +0000 (17:38 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Oct 2019 10:43:19 +0000 (12:43 +0200)
commit04b7bfc5374d43936c884e2c9024fc5c65a89d9b
tree63d8f7575bd025602ab3c5fd91e81ca0b0dbd75c
parentf4a34237dcf76b1025e0a86aa55a52de503c5ce9
USB: adutux: fix use-after-free on release

The driver was accessing its struct usb_device in its release()
callback without holding a reference. This would lead to a
use-after-free whenever the device was disconnected while the character
device was still open.

Fixes: de5e52dc88ab ("USB: adutux: remove custom debug macro")
Cc: stable <stable@vger.kernel.org> # 3.12
Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20191009153848.8664-2-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/adutux.c