diff options
Diffstat (limited to 'net/ipv4/ipconfig.c')
-rw-r--r-- | net/ipv4/ipconfig.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index 5ae4849878a3..08ff623371f0 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c | |||
@@ -426,6 +426,9 @@ ic_rarp_recv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt | |||
426 | unsigned char *sha, *tha; /* s for "source", t for "target" */ | 426 | unsigned char *sha, *tha; /* s for "source", t for "target" */ |
427 | struct ic_device *d; | 427 | struct ic_device *d; |
428 | 428 | ||
429 | if (dev->nd_net != &init_net) | ||
430 | goto drop; | ||
431 | |||
429 | if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL) | 432 | if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL) |
430 | return NET_RX_DROP; | 433 | return NET_RX_DROP; |
431 | 434 | ||
@@ -835,6 +838,9 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str | |||
835 | struct ic_device *d; | 838 | struct ic_device *d; |
836 | int len, ext_len; | 839 | int len, ext_len; |
837 | 840 | ||
841 | if (dev->nd_net != &init_net) | ||
842 | goto drop; | ||
843 | |||
838 | /* Perform verifications before taking the lock. */ | 844 | /* Perform verifications before taking the lock. */ |
839 | if (skb->pkt_type == PACKET_OTHERHOST) | 845 | if (skb->pkt_type == PACKET_OTHERHOST) |
840 | goto drop; | 846 | goto drop; |