From: Michal Privoznik Date: Wed, 15 Jul 2020 11:48:46 +0000 (+0200) Subject: virNetSocketCheckProtocols: Confirm IPv4 by lookup too X-Git-Tag: v6.6.0-rc1~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b0cb0e666f;p=thirdparty%2Flibvirt.git virNetSocketCheckProtocols: Confirm IPv4 by lookup too Historically, if we found an interface with an IPv6 address we did not blindly trust that host is IPv6 capable (as in we can successfully translate IPv4 addresses) but used getaddrinfo() to confirm it. Turns out, we have use the same argument for IPv4. For instance, in an namespace created by the following steps, getaddrinfo("127.0.0.1", ...) fails (demonstrating by "Socket TCP/IPv4 Accept" test case failing in virnetsockettest): unshare -n ip link set lo up ip link add dummy0 type dummy ip link set dummy0 up Signed-off-by: Michal Privoznik Reviewed-by: Ján Tomko --- diff --git a/src/rpc/virnetsocket.c b/src/rpc/virnetsocket.c index 2edd2a21d6..45dcf48206 100644 --- a/src/rpc/virnetsocket.c +++ b/src/rpc/virnetsocket.c @@ -205,6 +205,9 @@ int virNetSocketCheckProtocols(bool *hasIPv4, freeifaddrs(ifaddr); + if (hasIPv4 && + virNetSocketCheckProtocolByLookup("127.0.0.1", AF_INET, hasIPv4) < 0) + return -1; if (hasIPv6 && virNetSocketCheckProtocolByLookup("::1", AF_INET6, hasIPv6) < 0)