mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
sr9700: sanity check for packet length
commit e9da0b56fe upstream.
A malicious device can leak heap data to user space
providing bogus frame lengths. Introduce a sanity check.
Signed-off-by: Oliver Neukum <oneukum@suse.com>
Reviewed-by: Grant Grundler <grundler@chromium.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
55eec5c630
commit
4f5f5411f0
|
|
@ -410,7 +410,7 @@ static int sr9700_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
|
||||||
/* ignore the CRC length */
|
/* ignore the CRC length */
|
||||||
len = (skb->data[1] | (skb->data[2] << 8)) - 4;
|
len = (skb->data[1] | (skb->data[2] << 8)) - 4;
|
||||||
|
|
||||||
if (len > ETH_FRAME_LEN)
|
if (len > ETH_FRAME_LEN || len > skb->len)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
/* the last packet of current skb */
|
/* the last packet of current skb */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user