summaryrefslogtreecommitdiffstats
path: root/drivers/net/usb
diff options
context:
space:
mode:
authorAurelien Jacobs2012-01-07 21:15:16 +0100
committerDavid S. Miller2012-01-07 21:15:16 +0100
commit6c15d74defd38e7e7f8805392578b7a1d508097e (patch)
treec647b38da15453d689c840893564508e27d6a17a /drivers/net/usb
parentnet: Default UDP and UNIX diag to 'n'. (diff)
downloadkernel-qcow2-linux-6c15d74defd38e7e7f8805392578b7a1d508097e.tar.gz
kernel-qcow2-linux-6c15d74defd38e7e7f8805392578b7a1d508097e.tar.xz
kernel-qcow2-linux-6c15d74defd38e7e7f8805392578b7a1d508097e.zip
asix: fix infinite loop in rx_fixup()
At this point if skb->len happens to be 2, the subsequant skb_pull(skb, 4) call won't work and the skb->len won't be decreased and won't ever reach 0, resulting in an infinite loop. With an ASIX 88772 under heavy load, without this patch, rx_fixup() reaches an infinite loop in less than a minute. With this patch applied, no infinite loop even after hours of heavy load. Signed-off-by: Aurelien Jacobs <aurel@gnuage.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb')
-rw-r--r--drivers/net/usb/asix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c
index dbdca225b846..df2b08dbbf9e 100644
--- a/drivers/net/usb/asix.c
+++ b/drivers/net/usb/asix.c
@@ -376,7 +376,7 @@ static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
skb_pull(skb, (size + 1) & 0xfffe);
- if (skb->len == 0)
+ if (skb->len < sizeof(header))
break;
head = (u8 *) skb->data;