2025-11-28 00:35:46 +09:00

526 lines
12 KiB
C++

//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved
//
// Sample WinHttp application for determining the proxy for a particular URL.
// This sample demonstrates the core functionality for querying the proxy
// settings. Additional features may be added by the application/module basing
// their proxy code from this sample, including but not limited to:
// 1) Per URL proxy cache.
// 2) Network Change awareness.
// 3) Bad Proxy Filter.
//
#include <windows.h>
#include <stdio.h>
#include "GetProxy.h"
DWORD
SendRequestWithProxyFailover(
__in HINTERNET hRequest,
__in ProxyResolver *pProxyResolver
)
/*++
Routine Description:
Sends a request using the Request Handle specified and implements
proxy failover if supported.
Arguments:
hRequest - The request handle returned by WinHttpOpenRequest.
pProxyResolver - The Proxy Resolver to use for the request. The resolver
is used to set the proxy info on the request handle and
to implement proxy failover. At this point the proxy
resolver should have been initialized by calling Resolve().
Return Value:
Win32 Error codes.
--*/
{
DWORD dwError = ERROR_SUCCESS;
DWORD dwRequestError = ERROR_SUCCESS;
//
// Reset the proxy list to the beginning in case it is being reused.
//
pProxyResolver->ResetProxyCursor();
for(;;)
{
dwError = pProxyResolver->SetNextProxySetting(hRequest,
dwRequestError);
if (dwError == ERROR_NO_MORE_ITEMS)
{
//
// We reached the end of the list, failover is not supported,
// or the error was fatal.
// Fail with last sendrequest error.
//
ASSERT(dwRequestError != ERROR_SUCCESS);
dwError = dwRequestError;
goto quit;
}
if (dwError != ERROR_SUCCESS)
{
//
// Some other error occured such as a bad proxy setting, bad handle,
// out of memory, etc.
//
goto quit;
}
if (WinHttpSendRequest(hRequest,
NULL, // headers
0, // headerslen
NULL, // entity
0, // entitylen
0, // totallen
NULL)) // context
{
//
// Send Request succeeded, we are done.
//
dwError = ERROR_SUCCESS;
break;
}
dwRequestError = GetLastError();
wprintf(L" WinHttpSendRequest Failed with Error: 0x%x\n\n", dwRequestError);
}
quit:
return dwError;
}
DWORD
SendRequestToHost(
__in HINTERNET hSession,
__in ProxyResolver *pProxyResolver,
__in_z PCWSTR pwszHost,
__in_z_opt PCWSTR pwszPath,
__out DWORD *pdwStatusCode
)
/*++
Routine Description:
Connects to a host with the specified proxy and returns the status code
to the caller.
Arguments:
hSession - The WinHTTP session to use for the connection.
pProxyResolver - The proxy resolver for the request.
pwszHost - The host name of the resource to connect to.
pwszPath - The path of the resource to connect to.
pdwStatusCode - The status code of the connection to the server.
Return Value:
Win32 Error codes.
--*/
{
DWORD dwError = ERROR_SUCCESS;
DWORD dwStatusCode = 0;
DWORD cbStatusCode = sizeof(dwStatusCode);
DWORD dwFlags = 0;
HINTERNET hConnect = NULL;
HINTERNET hRequest = NULL;
PCWSTR pcwszAcceptTypes[] = {L"*/*", NULL};
*pdwStatusCode = 0;
//
// Connect session.
//
hConnect = WinHttpConnect(hSession,
pwszHost,
INTERNET_DEFAULT_HTTP_PORT,
0);
if (hConnect == NULL)
{
dwError = GetLastError();
goto quit;
}
//
// Open HTTP request.
//
hRequest = WinHttpOpenRequest(hConnect,
L"GET",
pwszPath,
NULL, // version
NULL, // referrer
pcwszAcceptTypes,
0); // flags
if (hRequest == NULL)
{
dwError = GetLastError();
goto quit;
}
//
// Send the HTTP request with proxy failover if valid.
//
dwError = SendRequestWithProxyFailover(hRequest,
pProxyResolver);
if (dwError != ERROR_SUCCESS)
{
goto quit;
}
//
// Receive the response from the server.
//
if (!WinHttpReceiveResponse(hRequest,
NULL)) // reserved
{
dwError = GetLastError();
goto quit;
}
//
// Get the status code from the response.
//
dwFlags = WINHTTP_QUERY_FLAG_NUMBER | WINHTTP_QUERY_STATUS_CODE;
if (!WinHttpQueryHeaders(hRequest,
dwFlags,
NULL, // name
&dwStatusCode,
&cbStatusCode,
NULL)) // index
{
dwError = GetLastError();
goto quit;
}
*pdwStatusCode = dwStatusCode;
quit:
if (hRequest != NULL)
{
WinHttpCloseHandle(hRequest);
hRequest = NULL;
}
if (hConnect != NULL)
{
WinHttpCloseHandle(hConnect);
hConnect = NULL;
}
return dwError;
}
DWORD
CrackHostAndPath(
__in_z PCWSTR pwszUrl,
__out PWSTR *ppwszHost,
__out PWSTR *ppwszPath
)
/*++
Routine Description:
Cracks the Host name and Path from a URL and returns the result to the
caller.
Arguments:
pwszUrl - The URL to crack.
ppwszHost - The Host name cracked from the URL.
Free ppwszHost with free.
ppwszPath - The Path cracked from the URL or NULL if no path was provided.
Free ppwszPath with free.
Return Value:
Win32 Error codes.
--*/
{
DWORD dwError = ERROR_SUCCESS;
DWORD cbHost = 0;
DWORD cbPath = 0;
PWSTR pwszHost = NULL;
PWSTR pwszPath = NULL;
URL_COMPONENTS urlComponents = {};
//
// Get the length of each component.
//
urlComponents.dwStructSize = sizeof(urlComponents);
urlComponents.dwHostNameLength = (DWORD)-1;
urlComponents.dwUrlPathLength = (DWORD)-1;
if (!WinHttpCrackUrl(pwszUrl,
0,
0,
&urlComponents))
{
dwError = GetLastError();
goto quit;
}
//
// Create a buffer to copy each component.
//
cbHost = urlComponents.dwHostNameLength * sizeof(WCHAR) + sizeof(WCHAR);
pwszHost = (PWSTR)HeapAlloc(GetProcessHeap(),
HEAP_ZERO_MEMORY,
cbHost);
if (pwszHost == NULL)
{
dwError = ERROR_NOT_ENOUGH_MEMORY;
goto quit;
}
//
// Account for '\0' in Length.
//
urlComponents.dwHostNameLength++;
if (urlComponents.dwUrlPathLength != 0)
{
cbPath = urlComponents.dwUrlPathLength * sizeof(WCHAR) + sizeof(WCHAR);
pwszPath = (PWSTR)HeapAlloc(GetProcessHeap(),
HEAP_ZERO_MEMORY,
cbPath);
if (pwszPath == NULL)
{
dwError = ERROR_NOT_ENOUGH_MEMORY;
goto quit;
}
//
// Account for '\0' in Length.
//
urlComponents.dwUrlPathLength++;
}
//
// Copy each component into new buffer.
//
urlComponents.lpszHostName = pwszHost;
urlComponents.lpszUrlPath = pwszPath;
if (!WinHttpCrackUrl(pwszUrl,
0,
0,
&urlComponents))
{
dwError = GetLastError();
goto quit;
}
*ppwszHost = pwszHost;
pwszHost = NULL;
*ppwszPath = pwszPath;
pwszPath = NULL;
quit:
if (pwszHost != NULL)
{
HeapFree(GetProcessHeap(),
0,
pwszHost);
pwszHost = NULL;
}
if (pwszPath != NULL)
{
HeapFree(GetProcessHeap(),
0,
pwszPath);
pwszPath = NULL;
}
return dwError;
}
int
__cdecl
wmain(
int argc,
WCHAR **argv,
WCHAR **envp
)
{
DWORD dwError = ERROR_SUCCESS;
DWORD dwStatusCode = 0;
PWSTR pwszUrl = NULL;
PWSTR pwszHost = NULL;
PWSTR pwszPath = NULL;
HINTERNET hSession = NULL;
ProxyResolver * pProxyResolver = NULL;
UNREFERENCED_PARAMETER(envp);
if (argc != 2)
{
wprintf(L"Usage: %s <url>\n", argv[0]);
goto quit;
}
pwszUrl = argv[1];
//
// Open a session.
//
hSession = WinHttpOpen(USER_AGENT,
WINHTTP_ACCESS_TYPE_DEFAULT_PROXY,
WINHTTP_NO_PROXY_NAME,
WINHTTP_NO_PROXY_BYPASS,
0);
if (hSession == NULL)
{
dwError = GetLastError();
goto quit;
}
wprintf(L"Getting proxy and bypass for %s\n\n", pwszUrl);
//
// Create a proxy resolver to use for this URL.
//
pProxyResolver = new ProxyResolver();
if (pProxyResolver == NULL)
{
dwError = ERROR_NOT_ENOUGH_MEMORY;
goto quit;
}
//
// Resolve the proxy for the specified URL.
//
dwError = pProxyResolver->ResolveProxy(hSession,
pwszUrl);
if (dwError != ERROR_SUCCESS)
{
wprintf(L"Proxy Resolution failed with Error: 0x%x\n", dwError);
goto quit;
}
pProxyResolver->PrintProxyData();
dwError = CrackHostAndPath(pwszUrl,
&pwszHost,
&pwszPath);
if (dwError != ERROR_SUCCESS)
{
goto quit;
}
wprintf(L"Attempting to connect to\n Url: %s\n Host: %s\n Path: %s\n\n",
pwszUrl,
pwszHost,
pwszPath);
//
// Attempt to connect to the host and retrieve a status code.
//
dwError = SendRequestToHost(hSession,
pProxyResolver,
pwszHost,
pwszPath,
&dwStatusCode);
if (dwError != ERROR_SUCCESS)
{
goto quit;
}
wprintf(L"Status: %d\n", dwStatusCode);
quit:
if (dwError != ERROR_SUCCESS)
{
wprintf(L"Failed with Error: 0x%x\n", dwError);
}
if (hSession != NULL)
{
WinHttpCloseHandle(hSession);
hSession = NULL;
}
if (pProxyResolver != NULL)
{
delete pProxyResolver;
pProxyResolver = NULL;
}
if (pwszHost != NULL)
{
HeapFree(GetProcessHeap(),
0,
pwszHost);
pwszHost = NULL;
}
if (pwszPath != NULL)
{
HeapFree(GetProcessHeap(),
0,
pwszPath);
pwszPath = NULL;
}
}