aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQiujun Huang <[email protected]>2020-03-25 15:52:37 +0800
committerJohan Hovold <[email protected]>2020-03-26 10:22:15 +0100
commit57aa9f294b09463492f604feaa5cc719beaace32 (patch)
tree4cbf781beae88192a47ac1501d54c93879773a42
parentdfee7e2f478346b12ea651d5c28b069f6a4af563 (diff)
USB: serial: io_edgeport: fix slab-out-of-bounds read in edge_interrupt_callback
Fix slab-out-of-bounds read in the interrupt-URB completion handler. The boundary condition should be (length - 1) as we access data[position + 1]. Reported-and-tested-by: [email protected] Signed-off-by: Qiujun Huang <[email protected]> Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Cc: stable <[email protected]> Signed-off-by: Johan Hovold <[email protected]>
-rw-r--r--drivers/usb/serial/io_edgeport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c
index 5737add6a2a4..4cca0b836f43 100644
--- a/drivers/usb/serial/io_edgeport.c
+++ b/drivers/usb/serial/io_edgeport.c
@@ -710,7 +710,7 @@ static void edge_interrupt_callback(struct urb *urb)
/* grab the txcredits for the ports if available */
position = 2;
portNumber = 0;
- while ((position < length) &&
+ while ((position < length - 1) &&
(portNumber < edge_serial->serial->num_ports)) {
txCredits = data[position] | (data[position+1] << 8);
if (txCredits) {