netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] net: gre: use icmp_hdr() to get inner ip header
@ 2014-01-28  3:49 Duan Jiong
  2014-01-28  4:39 ` David Miller
  2014-01-28  5:35 ` Pravin Shelar
  0 siblings, 2 replies; 3+ messages in thread
From: Duan Jiong @ 2014-01-28  3:49 UTC (permalink / raw)
  To: David Miller; +Cc: Daniel Borkmann, netdev, Pravin Shelar


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

v2: use icmp_hdr() instead of conditional pulling of headers

 net/ipv4/ip_gre.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c
index e7a92fd..ec4f762 100644
--- a/net/ipv4/ip_gre.c
+++ b/net/ipv4/ip_gre.c
@@ -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);
 
-- 
1.8.3.1

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

* Re: [PATCH v2] net: gre: use icmp_hdr() to get inner ip header
  2014-01-28  3:49 [PATCH v2] net: gre: use icmp_hdr() to get inner ip header Duan Jiong
@ 2014-01-28  4:39 ` David Miller
  2014-01-28  5:35 ` Pravin Shelar
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2014-01-28  4:39 UTC (permalink / raw)
  To: duanj.fnst; +Cc: dborkman, netdev, pshelar

From: Duan Jiong <duanj.fnst@cn.fujitsu.com>
Date: Tue, 28 Jan 2014 11:49:43 +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>

Applied and queued up for -stable, thanks.

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

* Re: [PATCH v2] net: gre: use icmp_hdr() to get inner ip header
  2014-01-28  3:49 [PATCH v2] net: gre: use icmp_hdr() to get inner ip header Duan Jiong
  2014-01-28  4:39 ` David Miller
@ 2014-01-28  5:35 ` Pravin Shelar
  1 sibling, 0 replies; 3+ messages in thread
From: Pravin Shelar @ 2014-01-28  5:35 UTC (permalink / raw)
  To: Duan Jiong; +Cc: David Miller, Daniel Borkmann, netdev

On Mon, Jan 27, 2014 at 7:49 PM, Duan Jiong <duanj.fnst@cn.fujitsu.com> wrote:
>
> 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>
> ---
>
> v2: use icmp_hdr() instead of conditional pulling of headers
>
>  net/ipv4/ip_gre.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c
> index e7a92fd..ec4f762 100644
> --- a/net/ipv4/ip_gre.c
> +++ b/net/ipv4/ip_gre.c
> @@ -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);
>

Don't we need to pull inner ip header first?

> --
> 1.8.3.1
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2014-01-28  5:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-28  3:49 [PATCH v2] net: gre: use icmp_hdr() to get inner ip header Duan Jiong
2014-01-28  4:39 ` David Miller
2014-01-28  5:35 ` Pravin Shelar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).