[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1400742346-24727-1-git-send-email-huizhang@marvell.com>
Date: Thu, 22 May 2014 15:05:46 +0800
From: huizhang <huizhang@...vell.com>
To: <netdev@...r.kernel.org>
CC: <huizhang@...vell.com>, <alan@...rguk.ukuu.org.uk>,
<nickcave.zhang@...il.com>
Subject: [PATCH] net: ipv6: Fixed up ipsec packet be re-routing issue
From: Hui Zhang <huizhang@...vell.com>
Bug report on https://bugzilla.kernel.org/show_bug.cgi?id=75781
When a local output ipsec packet match the mangle table rule,
and be set mark value, the packet will be route again in
route_me_harder -> _session_decoder6
In this case, the nhoff in CB of skb was still the default
value 0. So the protocal match can't success and the packet can't match
correct SA rule,and then the packet be send out in plaintext.
To fixed up the issue. The CB->nhoff must be set.
Signed-off-by: huizhang <huizhang@...vell.com>
---
net/ipv6/xfrm6_policy.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/ipv6/xfrm6_policy.c b/net/ipv6/xfrm6_policy.c
index 5f8e128..869b68b 100644
--- a/net/ipv6/xfrm6_policy.c
+++ b/net/ipv6/xfrm6_policy.c
@@ -134,6 +134,8 @@ _decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
const struct ipv6hdr *hdr = ipv6_hdr(skb);
struct ipv6_opt_hdr *exthdr;
const unsigned char *nh = skb_network_header(skb);
+ if(IP6CB(skb)->nhoff==0)
+ IP6CB(skb)->nhoff = offsetof(struct ipv6hdr, nexthdr);
u8 nexthdr = nh[IP6CB(skb)->nhoff];
int oif = 0;
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists