projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06f6902
)
USB: serial: whiteheat: fix potential slab corruption
author
Johan Hovold
<johan@kernel.org>
Tue, 29 Oct 2019 10:23:53 +0000
(11:23 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 6 Nov 2019 11:18:19 +0000
(12:18 +0100)
commit
1251dab9e0a2c4d0d2d48370ba5baa095a5e8774
upstream.
Fix a user-controlled slab buffer overflow due to a missing sanity check
on the bulk-out transfer buffer used for control requests.
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
Link:
https://lore.kernel.org/r/20191029102354.2733-2-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/whiteheat.c
patch
|
blob
|
history
diff --git
a/drivers/usb/serial/whiteheat.c
b/drivers/usb/serial/whiteheat.c
index d3ea90bef84d98a67f110f6040ca70ec12b7a5fb..52b4f8ad93d057ff95456082a108a241b4d97f06 100644
(file)
--- a/
drivers/usb/serial/whiteheat.c
+++ b/
drivers/usb/serial/whiteheat.c
@@
-604,6
+604,10
@@
static int firm_send_command(struct usb_serial_port *port, __u8 command,
command_port = port->serial->port[COMMAND_PORT];
command_info = usb_get_serial_port_data(command_port);
+
+ if (command_port->bulk_out_size < datasize + 1)
+ return -EIO;
+
mutex_lock(&command_info->mutex);
command_info->command_finished = false;