All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] net: ipv6: more places need LOOPBACK_IFINDEX for flowi6_iif
@ 2014-04-28  7:51 Julian Anastasov
  2014-04-28 18:47 ` David Miller
  2014-04-28 19:17 ` Cong Wang
  0 siblings, 2 replies; 4+ messages in thread
From: Julian Anastasov @ 2014-04-28  7:51 UTC (permalink / raw)
  To: David Miller; +Cc: netdev

To properly match iif in ip rules we have to provide
LOOPBACK_IFINDEX in flowi6_iif, not 0. Some ip6mr_fib_lookup
and fib6_rule_lookup callers need such fix.

Signed-off-by: Julian Anastasov <ja@ssi.bg>
---
 net/ipv6/ip6mr.c                   | 2 +-
 net/ipv6/netfilter/ip6t_rpfilter.c | 1 +
 net/ipv6/route.c                   | 2 ++
 3 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c
index 8659067..8250474 100644
--- a/net/ipv6/ip6mr.c
+++ b/net/ipv6/ip6mr.c
@@ -1633,7 +1633,7 @@ struct sock *mroute6_socket(struct net *net, struct sk_buff *skb)
 {
 	struct mr6_table *mrt;
 	struct flowi6 fl6 = {
-		.flowi6_iif	= skb->skb_iif,
+		.flowi6_iif	= skb->skb_iif ? : LOOPBACK_IFINDEX,
 		.flowi6_oif	= skb->dev->ifindex,
 		.flowi6_mark	= skb->mark,
 	};
diff --git a/net/ipv6/netfilter/ip6t_rpfilter.c b/net/ipv6/netfilter/ip6t_rpfilter.c
index e0983f3..790e0c6 100644
--- a/net/ipv6/netfilter/ip6t_rpfilter.c
+++ b/net/ipv6/netfilter/ip6t_rpfilter.c
@@ -33,6 +33,7 @@ static bool rpfilter_lookup_reverse6(const struct sk_buff *skb,
 	struct ipv6hdr *iph = ipv6_hdr(skb);
 	bool ret = false;
 	struct flowi6 fl6 = {
+		.flowi6_iif = LOOPBACK_IFINDEX,
 		.flowlabel = (* (__be32 *) iph) & IPV6_FLOWINFO_MASK,
 		.flowi6_proto = iph->nexthdr,
 		.daddr = iph->saddr,
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 4011617..004fffb 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -1273,6 +1273,7 @@ void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark)
 	struct flowi6 fl6;
 
 	memset(&fl6, 0, sizeof(fl6));
+	fl6.flowi6_iif = LOOPBACK_IFINDEX;
 	fl6.flowi6_oif = oif;
 	fl6.flowi6_mark = mark;
 	fl6.daddr = iph->daddr;
@@ -1294,6 +1295,7 @@ void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
 	struct flowi6 fl6;
 
 	memset(&fl6, 0, sizeof(fl6));
+	fl6.flowi6_iif = LOOPBACK_IFINDEX;
 	fl6.flowi6_oif = oif;
 	fl6.flowi6_mark = mark;
 	fl6.daddr = msg->dest;
-- 
1.9.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net] net: ipv6: more places need LOOPBACK_IFINDEX for flowi6_iif
  2014-04-28  7:51 [PATCH net] net: ipv6: more places need LOOPBACK_IFINDEX for flowi6_iif Julian Anastasov
@ 2014-04-28 18:47 ` David Miller
  2014-04-28 19:17 ` Cong Wang
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2014-04-28 18:47 UTC (permalink / raw)
  To: ja; +Cc: netdev

From: Julian Anastasov <ja@ssi.bg>
Date: Mon, 28 Apr 2014 10:51:56 +0300

> To properly match iif in ip rules we have to provide
> LOOPBACK_IFINDEX in flowi6_iif, not 0. Some ip6mr_fib_lookup
> and fib6_rule_lookup callers need such fix.
> 
> Signed-off-by: Julian Anastasov <ja@ssi.bg>

Applied, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net] net: ipv6: more places need LOOPBACK_IFINDEX for flowi6_iif
  2014-04-28  7:51 [PATCH net] net: ipv6: more places need LOOPBACK_IFINDEX for flowi6_iif Julian Anastasov
  2014-04-28 18:47 ` David Miller
@ 2014-04-28 19:17 ` Cong Wang
  2014-04-29  4:50   ` Julian Anastasov
  1 sibling, 1 reply; 4+ messages in thread
From: Cong Wang @ 2014-04-28 19:17 UTC (permalink / raw)
  To: Julian Anastasov; +Cc: David Miller, netdev

On Mon, Apr 28, 2014 at 12:51 AM, Julian Anastasov <ja@ssi.bg> wrote:
> To properly match iif in ip rules we have to provide
> LOOPBACK_IFINDEX in flowi6_iif, not 0. Some ip6mr_fib_lookup
> and fib6_rule_lookup callers need such fix.
>
> Signed-off-by: Julian Anastasov <ja@ssi.bg>

Maybe ip6_mr_input() and pim6_rcv() too?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net] net: ipv6: more places need LOOPBACK_IFINDEX for flowi6_iif
  2014-04-28 19:17 ` Cong Wang
@ 2014-04-29  4:50   ` Julian Anastasov
  0 siblings, 0 replies; 4+ messages in thread
From: Julian Anastasov @ 2014-04-29  4:50 UTC (permalink / raw)
  To: Cong Wang; +Cc: David Miller, netdev


	Hello,

On Mon, 28 Apr 2014, Cong Wang wrote:

> On Mon, Apr 28, 2014 at 12:51 AM, Julian Anastasov <ja@ssi.bg> wrote:
> > To properly match iif in ip rules we have to provide
> > LOOPBACK_IFINDEX in flowi6_iif, not 0. Some ip6mr_fib_lookup
> > and fib6_rule_lookup callers need such fix.
> >
> > Signed-off-by: Julian Anastasov <ja@ssi.bg>
> 
> Maybe ip6_mr_input() and pim6_rcv() too?

	They are ok, flowi6_iif contains the input device.

Regards

--
Julian Anastasov <ja@ssi.bg>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-04-29  4:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-28  7:51 [PATCH net] net: ipv6: more places need LOOPBACK_IFINDEX for flowi6_iif Julian Anastasov
2014-04-28 18:47 ` David Miller
2014-04-28 19:17 ` Cong Wang
2014-04-29  4:50   ` Julian Anastasov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.