Windows 上的 GetAddrInfo (C++) 未正确处理 IPv6,对于通过其他方式正常解析的域,返回错误代码 11004

GetAddrInfo (C++) on Windows not handling IPv6 correctly, returning error code 11004 for domains that resolve fine through other means

提问人:Nick Williams 提问时间:3/23/2021 更新时间:3/23/2021 访问量:659

问:

注意:我在这里广泛查看了一个类似(但不是重复)的问题:GetAddrInfo 无法解析 ipv6.google.com(但 nslookup 可以)。这个问题已经有 9 年的历史了,OP 没有遇到与我完全相同的行为,并且已经接受的答案并不能解决我的问题——事实上,我特别遵循了该答案的建议,但在下面的示例代码中无济于事,而且我得到了与该问题不同的错误。此外,我仅仅通过评论就成功地让任何人参与到一个如此古老的问题上的可能性为零。这与我今天遇到的问题不是同一个问题,所以我被创建了一个新的、更详细的问题。

我有一台运行 Visual Studio 2017 的 Windows 10 计算机和一台运行 Visual Studio 2019 的 Windows Server 2016 计算机。两台计算机都配置了 IPv4 和 IPv6 地址。在两台计算机上,返回三个不同域的预期结果:nslookup.exe

> nslookup www.google.com
...
Addresses:  2607:f8b0:4002:80a::2004
          172.217.3.228
...
> nslookup ipv4.google.com
...
Addresses:  74.125.136.102
...
> nslookup ipv6.google.com
...
Addresses:  2607:f8b0:4002:812::200e
...

现在,我正在尝试编写一个示例程序,用于查找这三个域:GetAddrInfo

#include <iostream>
#include <sstream>
#include <winsock2.h>
#include <ws2tcpip.h>
#pragma comment(lib,"WS2_32.Lib")

int main(int argc, char* argv[])
{
   WORD wVersionRequested = MAKEWORD(2, 2);
   WSADATA wsaData;
   int err( WSAStartup(wVersionRequested, &wsaData) );
   if (err != 0)
   {
       std::cout << "WSAStartup failed with error " << err << std::endl << std::flush;
       return 1;
   }

   struct addrinfo hints;
   memset(&hints, 0, sizeof(hints));
   hints.ai_socktype = SOCK_STREAM; // so that we get each IP address once, instead of once per socket type
   hints.ai_protocol = 0; // we don't care about the protocol
   hints.ai_canonname = NULL; // should be NULL for hints
   hints.ai_addr = NULL; // should be NULL for hints
   hints.ai_next = NULL; // should be NULL for hints
   hints.ai_flags = 0;

   hints.ai_family = AF_UNSPEC; // I vary this and the hostname below

   struct addrinfo* results;

   int error = getaddrinfo("ipv6.google.com", NULL, &hints, &results);
   if (error != 0)
   {
       std::ostringstream msg;
       std::cout << "Could not resolve hostname due to ";
       std::cout << "the following error in getaddrinfo: " << error << ": ";
       if (error == -11)
       {
           std::cout << "EAI_SYSTEM";
       }
       else
       {
           std::cout << gai_strerrorA(error);
       }
       std::cout << std::endl << std::flush;
       return 1;
   }

   for (struct addrinfo* result = results; result != NULL; result = result->ai_next)
   {
       if (result->ai_family == AF_INET6)
       {
           char buffer[INET6_ADDRSTRLEN];
           std::string ipv6Str(
               inet_ntop(
                   AF_INET6,
                   &((struct sockaddr_in6*)result->ai_addr)->sin6_addr,
                   buffer,
                   sizeof(buffer)));
           std::cout << ipv6Str << std::endl << std::flush;
       }
       else
       {
           char buffer[INET_ADDRSTRLEN];
           std::string ipv4Str(
               inet_ntop(
                   AF_INET,
                   &((struct sockaddr_in*)result->ai_addr)->sin_addr,
                   buffer,
                   sizeof(buffer)));
           std::cout << ipv4Str << std::endl << std::flush;
       }
   }

   freeaddrinfo(results);

   return 0;
}

为简单起见,我只是更改硬编码的主机名,然后重新编译并重新运行(使用 Visual Studio)。这些是我得到的结果:hints.ai_family

主机名 提示.ai_family 结果 预期?
www.google.com AF_UNSPEC 一个 IPv4 地址和一个 IPv6 地址
www.google.com AF_INET 仅一个 IPv4 地址
www.google.com AF_INET6 错误 11004:名称有效,无数据 ⛔️
ipv4.google.com AF_UNSPEC 仅一个 IPv4 地址
ipv4.google.com AF_INET 仅一个 IPv4 地址
ipv4.google.com AF_INET6 错误 11004:名称有效,无数据
ipv6.google.com AF_UNSPEC 错误 11004:名称有效,无数据 ⛔️
ipv6.google.com AF_INET 错误 11004:名称有效,无数据
ipv6.google.com AF_INET6 错误 11004:名称有效,无数据 ⛔️

我已经为此敲了一整天,但我无法返回预期的结果。为什么这不起作用?似乎使用了其他东西(也许是根和胶水名称服务器的更低级查询),因为它在那里工作正常。另请注意,此代码(具有不同的包含和不包含 WSA 启动过程)在 RedHat、CentOS、Ubuntu 和 macOS High Sierra 中运行良好。getaddrinfonslookup.exegetaddrinfo

除了改变 之外,我还尝试过一些方法,所有这些方法都会产生与下表相同的结果:ai_family

ai_flags = AI_NUMERICSERV
ai_flags = AI_ALL
ai_flags = AI_ALL | AI_NUMERICSERV
ai_socktype = SOCK_DGRAM
ai_socktype = 0
ai_protocol = IPPROTO_TCP

此外,事实证明这实际上是一个 for ,所以我尝试使用该域,但无济于事。ipv6.google.comCNAMEipv6.l.google.com

C Windows 可视化 C++ IPv6 getaddrinfo

评论

2赞 Sam Varshavchik 3/23/2021
FWIW,在 Linux 上编译上述内容(在剥离所有特定于 Windows 的东西之后),我获得了成功的 IPv6 查找和加速结果。显示的代码没有问题。一定是某些特定于 Windows 的配置问题。
0赞 Ron Maupin 3/24/2021
您是否阅读并尝试了旧问题的其他答案?
0赞 Nick Williams 3/24/2021
是的。我上面的代码专门包含了旧问题的答案:将查询AF_INET与AF_INET6分开。它对发布旧问题的 OP 有效,对我不起作用(如上面的结果表所示)。
1赞 Ron Maupin 3/31/2021
不,我为旧问题写了“另一个答案”,而不是公认的答案。它更改 Windows 配置以使其正常工作。
0赞 mhn_namak 11/25/2021
你找到解决方案了吗?

答: 暂无答案