mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-24 15:42:32 +00:00
ipv4: fix wildcard search with inet_confirm_addr()
Help of this function says: "in_dev: only on this interface, 0=any interface",
but since commit 39a6d06300
("[NETNS]: Process inet_confirm_addr in the
correct namespace."), the code supposes that it will never be NULL. This
function is never called with in_dev == NULL, but it's exported and may be used
by an external module.
Because this patch restore the ability to call inet_confirm_addr() with in_dev
== NULL, I partially revert the above commit, as suggested by Julian.
CC: Julian Anastasov <ja@ssi.bg>
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Reviewed-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
95ab09917a
commit
b601fa197f
4 changed files with 11 additions and 11 deletions
|
@ -381,6 +381,7 @@ static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb)
|
|||
|
||||
static int arp_ignore(struct in_device *in_dev, __be32 sip, __be32 tip)
|
||||
{
|
||||
struct net *net = dev_net(in_dev->dev);
|
||||
int scope;
|
||||
|
||||
switch (IN_DEV_ARP_IGNORE(in_dev)) {
|
||||
|
@ -399,6 +400,7 @@ static int arp_ignore(struct in_device *in_dev, __be32 sip, __be32 tip)
|
|||
case 3: /* Do not reply for scope host addresses */
|
||||
sip = 0;
|
||||
scope = RT_SCOPE_LINK;
|
||||
in_dev = NULL;
|
||||
break;
|
||||
case 4: /* Reserved */
|
||||
case 5:
|
||||
|
@ -410,7 +412,7 @@ static int arp_ignore(struct in_device *in_dev, __be32 sip, __be32 tip)
|
|||
default:
|
||||
return 0;
|
||||
}
|
||||
return !inet_confirm_addr(in_dev, sip, tip, scope);
|
||||
return !inet_confirm_addr(net, in_dev, sip, tip, scope);
|
||||
}
|
||||
|
||||
static int arp_filter(__be32 sip, __be32 tip, struct net_device *dev)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue