]> Pileus Git - ~andy/linux/commitdiff
net: gre: use icmp_hdr() to get inner ip header
authorDuan Jiong <duanj.fnst@cn.fujitsu.com>
Tue, 28 Jan 2014 03:49:43 +0000 (11:49 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 28 Jan 2014 04:38:26 +0000 (20:38 -0800)
When dealing with icmp messages, the skb->data points the
ip header that triggered the sending of the icmp message.

In gre_cisco_err(), the parse_gre_header() is called, and the
iptunnel_pull_header() is called to pull the skb at the end of
the parse_gre_header(), so the skb->data doesn't point the
inner ip header.

Unfortunately, the ipgre_err still needs those ip addresses in
inner ip header to look up tunnel by ip_tunnel_lookup().

So just use icmp_hdr() to get inner ip header instead of skb->data.

Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/ip_gre.c

index e7a92fdb36f61b779e04b1da45acf12312302c6b..ec4f762efda50918254329d9cccfd493533fae4b 100644 (file)
@@ -178,7 +178,7 @@ static int ipgre_err(struct sk_buff *skb, u32 info,
        else
                itn = net_generic(net, ipgre_net_id);
 
-       iph = (const struct iphdr *)skb->data;
+       iph = (const struct iphdr *)(icmp_hdr(skb) + 1);
        t = ip_tunnel_lookup(itn, skb->dev->ifindex, tpi->flags,
                             iph->daddr, iph->saddr, tpi->key);