net: ipv6: Add IPv6 support to the ping socket.
authorLorenzo Colitti <lorenzo@google.com>
Wed, 22 May 2013 20:17:31 +0000 (20:17 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 26 May 2013 04:07:49 +0000 (21:07 -0700)
commit6d0bfe22611602f36617bc7aa2ffa1bbb2f54c67
tree140f06221a5da5c44526cb61f921d80fec2132c2
parent6e2842f4bbb5abcf57d3cb0f10870e0ce20c0ba2
net: ipv6: Add IPv6 support to the ping socket.

This adds the ability to send ICMPv6 echo requests without a
raw socket. The equivalent ability for ICMPv4 was added in
2011.

Instead of having separate code paths for IPv4 and IPv6, make
most of the code in net/ipv4/ping.c dual-stack and only add a
few IPv6-specific bits (like the protocol definition) to a new
net/ipv6/ping.c. Hopefully this will reduce divergence and/or
duplication of bugs in the future.

Caveats:

- Setting options via ancillary data (e.g., using IPV6_PKTINFO
  to specify the outgoing interface) is not yet supported.
- There are no separate security settings for IPv4 and IPv6;
  everything is controlled by /proc/net/ipv4/ping_group_range.
- The proc interface does not yet display IPv6 ping sockets
  properly.

Tested with a patched copy of ping6 and using raw socket calls.
Compiles and works with all of CONFIG_IPV6={n,m,y}.

Signed-off-by: Lorenzo Colitti <lorenzo@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/ipv6.h
include/net/ping.h
include/net/transp_v6.h
net/ipv4/icmp.c
net/ipv4/ping.c
net/ipv6/Makefile
net/ipv6/af_inet6.c
net/ipv6/icmp.c
net/ipv6/ping.c [new file with mode: 0644]