diff options
author | Florian Westphal <fw@strlen.de> | 2011-04-04 11:00:54 -0400 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2011-04-04 11:00:54 -0400 |
commit | 0fae2e7740aca7e384c5f337f458897e7e337d58 (patch) | |
tree | ff0767f2dc382ee8a62e324e441b671382f0433c /net/ipv6 | |
parent | 31ad3dd64e689bc79dd819f8f134b9b025240eb8 (diff) |
netfilter: af_info: add 'strict' parameter to limit lookup to .oif
ipv6 fib lookup can set RT6_LOOKUP_F_IFACE flag to restrict search
to an interface, but this flag cannot be set via struct flowi.
Also, it cannot be set via ip6_route_output: this function uses the
passed sock struct to determine if this flag is required
(by testing for nonzero sk_bound_dev_if).
Work around this by passing in an artificial struct sk in case
'strict' argument is true.
This is required to replace the rt6_lookup call in xt_addrtype.c with
nf_afinfo->route().
Signed-off-by: Florian Westphal <fw@strlen.de>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/net/ipv6/netfilter.c b/net/ipv6/netfilter.c index e008b9b4a779..28bc1f644b7b 100644 --- a/net/ipv6/netfilter.c +++ b/net/ipv6/netfilter.c | |||
@@ -91,9 +91,17 @@ static int nf_ip6_reroute(struct sk_buff *skb, | |||
91 | } | 91 | } |
92 | 92 | ||
93 | static int nf_ip6_route(struct net *net, struct dst_entry **dst, | 93 | static int nf_ip6_route(struct net *net, struct dst_entry **dst, |
94 | struct flowi *fl) | 94 | struct flowi *fl, bool strict) |
95 | { | 95 | { |
96 | *dst = ip6_route_output(net, NULL, &fl->u.ip6); | 96 | static const struct ipv6_pinfo fake_pinfo; |
97 | static const struct inet_sock fake_sk = { | ||
98 | /* makes ip6_route_output set RT6_LOOKUP_F_IFACE: */ | ||
99 | .sk.sk_bound_dev_if = 1, | ||
100 | .pinet6 = (struct ipv6_pinfo *) &fake_pinfo, | ||
101 | }; | ||
102 | const void *sk = strict ? &fake_sk : NULL; | ||
103 | |||
104 | *dst = ip6_route_output(net, sk, &fl->u.ip6); | ||
97 | return (*dst)->error; | 105 | return (*dst)->error; |
98 | } | 106 | } |
99 | 107 | ||