ページ ヒープをオンにして Application Verifier でアプリケーションをテストしようとすると、問題が発生しました。「localhost」のような正当なホスト名であっても、gethostbyname API は常に失敗することが判明しました。この問題は、gethostbyname を使用した非常に単純なテスト アプリケーションでも試したすべての Win-7 または Server 2008 R2 で再現されます。
再現手順: appverifier で "page heap" と "UseLFGGuard..." チェックボックスをオンにし、gethostbyname(..) を使用して任意のアプリを実行します。
アプリケーション コードの例 (appverifier がオフの場合は「127.0.0.1」を出力し、appverifier がオンの場合は「getaddrinfo failed」を出力します):
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdio.h>
#include <windows.h>
#pragma comment(lib, "ws2_32.lib")
void
Exercise()
{
int i = 0;
struct hostent *remoteHost;
struct in_addr addr;
remoteHost = gethostbyname("localhost");
if (remoteHost == NULL)
{
printf("gethostbyname(localhost) failed\n");
}
else
{
if (remoteHost->h_addrtype == AF_INET)
{
i=0;
while (remoteHost->h_addr_list[i] != 0)
{
addr.s_addr = *(u_long *) remoteHost->h_addr_list[i++];
printf("\tIP Address #%d: %s\n", i, inet_ntoa(addr));
}
}
else
{
printf("unexpected address type\n");
}
}
}
int
main()
{
WSADATA wsaData;
int iResult;
// Initialize Winsock
iResult = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (iResult != 0)
{
printf("WSAStartup failed: %d\n", iResult);
return 1;
}
for(int i=0; i<1000; i++)
{
Exercise();
Sleep(1000);
}
return 0;
}
最も珍しいことは、インターネットで何も見つけられなかったことです。これは既知の問題ですか? 回避策はありますか?