* [patch 2/2 v2] USB: keyspan: add a sanity test on "len"
@ 2013-04-05 5:43 Dan Carpenter
2013-04-05 7:09 ` walter harms
0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2013-04-05 5:43 UTC (permalink / raw)
To: kernel-janitors
"len" comes from the USB transfer and it's probably correct. The thing
is that we already have similar checks like:
if (data[i] >= serial->num_ports) {
So adding a sanity test here matches the rest of the code and is a good
idea.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
v2: No change. Rebased.
diff --git a/drivers/usb/serial/keyspan.c b/drivers/usb/serial/keyspan.c
index 3d303f0..eb30d7b 100644
--- a/drivers/usb/serial/keyspan.c
+++ b/drivers/usb/serial/keyspan.c
@@ -727,14 +727,15 @@ static void usa49wg_indat_callback(struct urb *urb)
if ((data[i] & 0x80) = 0) {
/* no error on any byte */
i++;
- for (x = 1; x < len ; ++x)
+ for (x = 1; x < len && i < urb->actual_length; ++x)
tty_insert_flip_char(&port->port,
data[i++], 0);
} else {
/*
* some bytes had errors, every byte has status
*/
- for (x = 0; x + 1 < len; x += 2) {
+ for (x = 0; x + 1 < len &&
+ i + 1 < urb->actual_length; x += 2) {
int stat = data[i], flag = 0;
if (stat & RXERROR_OVERRUN)
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [patch 2/2 v2] USB: keyspan: add a sanity test on "len"
2013-04-05 5:43 [patch 2/2 v2] USB: keyspan: add a sanity test on "len" Dan Carpenter
@ 2013-04-05 7:09 ` walter harms
0 siblings, 0 replies; 2+ messages in thread
From: walter harms @ 2013-04-05 7:09 UTC (permalink / raw)
To: kernel-janitors
Am 05.04.2013 07:43, schrieb Dan Carpenter:
> "len" comes from the USB transfer and it's probably correct. The thing
> is that we already have similar checks like:
>
> if (data[i] >= serial->num_ports) {
>
> So adding a sanity test here matches the rest of the code and is a good
> idea.
>
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
> v2: No change. Rebased.
>
> diff --git a/drivers/usb/serial/keyspan.c b/drivers/usb/serial/keyspan.c
> index 3d303f0..eb30d7b 100644
> --- a/drivers/usb/serial/keyspan.c
> +++ b/drivers/usb/serial/keyspan.c
> @@ -727,14 +727,15 @@ static void usa49wg_indat_callback(struct urb *urb)
> if ((data[i] & 0x80) = 0) {
> /* no error on any byte */
> i++;
> - for (x = 1; x < len ; ++x)
> + for (x = 1; x < len && i < urb->actual_length; ++x)
> tty_insert_flip_char(&port->port,
> data[i++], 0);
maybe is is a bit late ...
mixing i,x here is prone to error, the casual reader will be confused.
i suggest the following variation.
for (x = 1; x < len && i < urb->actual_length; ++x)
if (i < urb->actual_length)
tty_insert_flip_char(&port->port,ata[i++], 0);
> } else {
> /*
> * some bytes had errors, every byte has status
> */
> - for (x = 0; x + 1 < len; x += 2) {
> + for (x = 0; x + 1 < len &&
> + i + 1 < urb->actual_length; x += 2) {
> int stat = data[i], flag = 0;
>
> if (stat & RXERROR_OVERRUN)
same as above.
re,
wh
> --
> To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-04-05 7:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-05 5:43 [patch 2/2 v2] USB: keyspan: add a sanity test on "len" Dan Carpenter
2013-04-05 7:09 ` walter harms
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox