Skip to content

Commit

Permalink
ipv6: translate ICMP_TIME_EXCEEDED to ICMPV6_TIME_EXCEED
Browse files Browse the repository at this point in the history
For better traceroute/mtr support for SIT and GRE tunnels,
we translate IPV4 ICMP ICMP_TIME_EXCEEDED to ICMPV6_TIME_EXCEED

We also have to translate the IPv4 source IP address of ICMP
message to IPv6 v4mapped.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Jun 19, 2016
1 parent 5fbba8a commit 2d7a3b2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion include/linux/icmpv6.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ typedef void ip6_icmp_send_t(struct sk_buff *skb, u8 type, u8 code, __u32 info,
const struct in6_addr *force_saddr);
extern int inet6_register_icmp_sender(ip6_icmp_send_t *fn);
extern int inet6_unregister_icmp_sender(ip6_icmp_send_t *fn);
int ip6_err_gen_icmpv6_unreach(struct sk_buff *skb, int nhs);
int ip6_err_gen_icmpv6_unreach(struct sk_buff *skb, int nhs, int type);

#else

Expand Down
12 changes: 9 additions & 3 deletions net/ipv6/icmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,9 @@ void icmpv6_param_prob(struct sk_buff *skb, u8 code, int pos)
* Either an IPv4 header for SIT encap
* an IPv4 header + GRE header for GRE encap
*/
int ip6_err_gen_icmpv6_unreach(struct sk_buff *skb, int nhs)
int ip6_err_gen_icmpv6_unreach(struct sk_buff *skb, int nhs, int type)
{
struct in6_addr temp_saddr;
struct rt6_info *rt;
struct sk_buff *skb2;

Expand All @@ -586,8 +587,13 @@ int ip6_err_gen_icmpv6_unreach(struct sk_buff *skb, int nhs)
if (rt && rt->dst.dev)
skb2->dev = rt->dst.dev;

icmpv6_send(skb2, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);

ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr, &temp_saddr);
if (type == ICMP_TIME_EXCEEDED)
icmp6_send(skb2, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT,
0, &temp_saddr);
else
icmp6_send(skb2, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH,
0, &temp_saddr);
if (rt)
ip6_rt_put(rt);

Expand Down
6 changes: 3 additions & 3 deletions net/ipv6/sit.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,11 +535,11 @@ static int ipip6_err(struct sk_buff *skb, u32 info)
goto out;
}

if (t->parms.iph.daddr == 0)
err = 0;
if (!ip6_err_gen_icmpv6_unreach(skb, iph->ihl * 4, type))
goto out;

err = 0;
if (!ip6_err_gen_icmpv6_unreach(skb, iph->ihl * 4))
if (t->parms.iph.daddr == 0)
goto out;

if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
Expand Down

0 comments on commit 2d7a3b2

Please sign in to comment.