diff options
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 | ||