Commit da829c38 authored by David S. Miller's avatar David S. Miller

[IPV4]: Bootp packet extension area is variable length.

1) Remove the magic 300 constant
2) Allow b->exten area to be zero or more
   variable bytes in length.
Signed-off-by: default avatarDavid S. Miller <davem@redhat.com>
parent b2acaf13
...@@ -818,7 +818,7 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str ...@@ -818,7 +818,7 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str
struct bootp_pkt *b; struct bootp_pkt *b;
struct iphdr *h; struct iphdr *h;
struct ic_device *d; struct ic_device *d;
int len; int len, ext_len;
/* Perform verifications before taking the lock. */ /* Perform verifications before taking the lock. */
if (skb->pkt_type == PACKET_OTHERHOST) if (skb->pkt_type == PACKET_OTHERHOST)
...@@ -859,7 +859,11 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str ...@@ -859,7 +859,11 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str
goto drop; goto drop;
len = ntohs(b->udph.len) - sizeof(struct udphdr); len = ntohs(b->udph.len) - sizeof(struct udphdr);
if (len < 300) ext_len = len - (sizeof(*b) -
sizeof(struct iphdr) -
sizeof(struct udphdr) -
sizeof(b->exten));
if (ext_len < 0)
goto drop; goto drop;
/* Ok the front looks good, make sure we can get at the rest. */ /* Ok the front looks good, make sure we can get at the rest. */
...@@ -894,7 +898,8 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str ...@@ -894,7 +898,8 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str
} }
/* Parse extensions */ /* Parse extensions */
if (!memcmp(b->exten, ic_bootp_cookie, 4)) { /* Check magic cookie */ if (ext_len >= 4 &&
!memcmp(b->exten, ic_bootp_cookie, 4)) { /* Check magic cookie */
u8 *end = (u8 *) b + ntohs(b->iph.tot_len); u8 *end = (u8 *) b + ntohs(b->iph.tot_len);
u8 *ext; u8 *ext;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment