]> git.baikalelectronics.ru Git - kernel.git/commit
ipv6: icmp6_send: fix Oops when pinging a not set up IPv6 peer on a sit tunnel
authorFX Le Bail <fx.lebail@yahoo.com>
Fri, 7 Feb 2014 10:22:37 +0000 (11:22 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 10 Feb 2014 02:12:40 +0000 (18:12 -0800)
commit6472ba803f24493b03805e4f3b2d7474f76d27a0
treeacb605343e531fd8abf9e8362ef5bf8e5f014f73
parent449844a5f8d59bf428238de43927dfe70dc54eef
ipv6: icmp6_send: fix Oops when pinging a not set up IPv6 peer on a sit tunnel

The patch d3edb7e8bbc9c1f70432777e6b41cece866672be ("ipv6: enable anycast addresses
as source addresses in ICMPv6 error messages") causes an Oops when pinging a not
set up IPv6 peer on a sit tunnel.

The problem is that ipv6_anycast_destination() uses unconditionally skb_dst(skb),
which is NULL in this case.

The solution is to use instead the ipv6_chk_acast_addr_src() function.

Here are the steps to reproduce it:
modprobe sit
ip link add sit1 type sit remote 10.16.0.121 local 10.16.0.249
ip l s sit1 up
ip -6 a a dev sit1 2001:1234::123 remote 2001:1234::121
ping6 2001:1234::121

Reported-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Tested-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: Francois-Xavier Le Bail <fx.lebail@yahoo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/icmp.c