mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
slirp: Adding IPv6, ICMPv6 Echo and NDP autoconfiguration
This patch adds the functions needed to handle IPv6 packets. ICMPv6 and NDP headers are implemented. Slirp is now able to send NDP Router or Neighbor Advertisement when it receives Router or Neighbor Solicitation. Using a 64bit-sized IPv6 prefix, the guest is now able to perform stateless autoconfiguration (SLAAC) and to compute its IPv6 address. This patch adds an ndp_table, mainly inspired by arp_table, to keep an NDP cache and manage network address resolution. Slirp regularly sends NDP Neighbor Advertisement, as recommended by the RFC, to make the guest refresh its route. This also adds ip6_cksum() to compute ICMPv6 checksums using IPv6 pseudo-header. Some #define ETH_* are moved upper in slirp.h to make them accessible to other slirp/*.h Signed-off-by: Guillaume Subiron <maethor@subiron.org> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Reviewed-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
618a5a8bc5
commit
0d6ff71ae3
12 changed files with 1019 additions and 6 deletions
|
@ -102,6 +102,13 @@ static inline int sockaddr_equal(struct sockaddr_storage *a,
|
|||
return a4->sin_addr.s_addr == b4->sin_addr.s_addr
|
||||
&& a4->sin_port == b4->sin_port;
|
||||
}
|
||||
case AF_INET6:
|
||||
{
|
||||
struct sockaddr_in6 *a6 = (struct sockaddr_in6 *) a;
|
||||
struct sockaddr_in6 *b6 = (struct sockaddr_in6 *) b;
|
||||
return (in6_equal(&a6->sin6_addr, &b6->sin6_addr)
|
||||
&& a6->sin6_port == b6->sin6_port);
|
||||
}
|
||||
default:
|
||||
g_assert_not_reached();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue