]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: ipv6: Fixed up ipsec packet be re-routing issue
authorhuizhang <huizhang@marvell.com>
Mon, 9 Jun 2014 04:37:25 +0000 (12:37 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Jun 2014 07:47:31 +0000 (00:47 -0700)
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: Hui Zhang <huizhang@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/output_core.c

index 56596ce390a19783fa20819aeb5110195fb7d484..a2bbc0d08d927791ed70e1a34f43e9353881bd39 100644 (file)
@@ -104,6 +104,7 @@ int __ip6_local_out(struct sk_buff *skb)
        if (len > IPV6_MAXPLEN)
                len = 0;
        ipv6_hdr(skb)->payload_len = htons(len);
+       IP6CB(skb)->nhoff = offsetof(struct ipv6hdr, nexthdr);
 
        return nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
                       skb_dst(skb)->dev, dst_output);