projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
25184b8
)
USB: chaoskey: fix use-after-free on release
author
Johan Hovold
<johan@kernel.org>
Wed, 9 Oct 2019 15:38:45 +0000
(17:38 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Thu, 17 Oct 2019 20:42:36 +0000
(13:42 -0700)
commit
93ddb1f56ae102f14f9e46a9a9c8017faa970003
upstream.
The driver was accessing its struct usb_interface 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:
66e3e591891d
("usb: Add driver for Altus Metrum ChaosKey device (v2)")
Cc: stable <stable@vger.kernel.org> # 4.1
Signed-off-by: Johan Hovold <johan@kernel.org>
Link:
https://lore.kernel.org/r/20191009153848.8664-3-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/chaoskey.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/usb/misc/chaoskey.c
b/drivers/usb/misc/chaoskey.c
index efecb87428b1c5d9f4ab12f55efba00ef3f8ca02..64f2eeffaa002a8f9799c6cdf3fe04f0950a1b95 100644
(file)
--- a/
drivers/usb/misc/chaoskey.c
+++ b/
drivers/usb/misc/chaoskey.c
@@
-108,6
+108,7
@@
static void chaoskey_free(struct chaoskey *dev)
usb_free_urb(dev->urb);
kfree(dev->name);
kfree(dev->buf);
+ usb_put_intf(dev->interface);
kfree(dev);
}
}
@@
-157,6
+158,8
@@
static int chaoskey_probe(struct usb_interface *interface,
if (dev == NULL)
goto out;
+ dev->interface = usb_get_intf(interface);
+
dev->buf = kmalloc(size, GFP_KERNEL);
if (dev->buf == NULL)
@@
-190,8
+193,6
@@
static int chaoskey_probe(struct usb_interface *interface,
strcat(dev->name, udev->serial);
}
- dev->interface = interface;
-
dev->in_ep = in_ep;
if (le16_to_cpu(udev->descriptor.idVendor) != ALEA_VENDOR_ID)