2 * Wininet - Utility functions
4 * Copyright 1999 Corel Corporation
5 * Copyright 2002 CodeWeavers Inc.
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/port.h"
28 #if defined(__MINGW32__) || defined (_MSC_VER)
42 #include "wine/debug.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
47 #ifndef HAVE_GETADDRINFO
49 /* critical section to protect non-reentrant gethostbyname() */
50 static CRITICAL_SECTION cs_gethostbyname;
51 static CRITICAL_SECTION_DEBUG critsect_debug =
53 0, 0, &cs_gethostbyname,
54 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
55 0, 0, { (DWORD_PTR)(__FILE__ ": cs_gethostbyname") }
57 static CRITICAL_SECTION cs_gethostbyname = { &critsect_debug, -1, 0, 0, 0, 0 };
61 #define TIME_STRING_LEN 30
63 time_t ConvertTimeString(LPCWSTR asctime)
65 WCHAR tmpChar[TIME_STRING_LEN];
68 int timelen = strlenW(asctime);
73 /* FIXME: the atoiWs below rely on that tmpChar is \0 padded */
74 memset( tmpChar, 0, sizeof(tmpChar) );
75 lstrcpynW(tmpChar, asctime, TIME_STRING_LEN);
77 /* Assert that the string is the expected length */
78 if (strlenW(asctime) >= TIME_STRING_LEN) FIXME("\n");
80 /* Convert a time such as 'Mon, 15 Nov 1999 16:09:35 GMT' into a SYSTEMTIME structure
81 * We assume the time is in this format
82 * and divide it into easy to swallow chunks
92 memset( &t, 0, sizeof(t) );
93 t.tm_year = atoiW(tmpChar+12) - 1900;
94 t.tm_mday = atoiW(tmpChar+5);
95 t.tm_hour = atoiW(tmpChar+17);
96 t.tm_min = atoiW(tmpChar+20);
97 t.tm_sec = atoiW(tmpChar+23);
100 tmpChar2 = tmpChar + 8;
147 BOOL GetAddress(LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
148 struct sockaddr *psa, socklen_t *sa_len)
153 #ifdef HAVE_GETADDRINFO
154 struct addrinfo *res, hints;
158 struct sockaddr_in *sin = (struct sockaddr_in *)psa;
161 TRACE("%s\n", debugstr_w(lpszServerName));
163 /* Validate server name first
164 * Check if there is sth. like
165 * pinger.macromedia.com:80
166 * if yes, eliminate the :80....
168 found = strchrW(lpszServerName, ':');
170 len = found - lpszServerName;
172 len = strlenW(lpszServerName);
174 sz = WideCharToMultiByte( CP_UNIXCP, 0, lpszServerName, len, NULL, 0, NULL, NULL );
175 if (!(name = heap_alloc(sz + 1))) return FALSE;
176 WideCharToMultiByte( CP_UNIXCP, 0, lpszServerName, len, name, sz, NULL, NULL );
179 #ifdef HAVE_GETADDRINFO
180 memset( &hints, 0, sizeof(struct addrinfo) );
181 /* Prefer IPv4 to IPv6 addresses, since some servers do not listen on
182 * their IPv6 addresses even though they have IPv6 addresses in the DNS.
184 hints.ai_family = AF_INET;
186 ret = getaddrinfo( name, NULL, &hints, &res );
189 TRACE("failed to get IPv4 address of %s (%s), retrying with IPv6\n", debugstr_w(lpszServerName), gai_strerror(ret));
190 hints.ai_family = AF_INET6;
191 ret = getaddrinfo( name, NULL, &hints, &res );
196 TRACE("failed to get address of %s (%s)\n", debugstr_w(lpszServerName), gai_strerror(ret));
199 if (*sa_len < res->ai_addrlen)
201 WARN("address too small\n");
205 *sa_len = res->ai_addrlen;
206 memcpy( psa, res->ai_addr, res->ai_addrlen );
208 switch (res->ai_family)
211 ((struct sockaddr_in *)psa)->sin_port = htons(nServerPort);
214 ((struct sockaddr_in6 *)psa)->sin6_port = htons(nServerPort);
220 EnterCriticalSection( &cs_gethostbyname );
221 phe = gethostbyname(name);
226 TRACE("failed to get address of %s (%d)\n", debugstr_w(lpszServerName), h_errno);
227 LeaveCriticalSection( &cs_gethostbyname );
230 if (*sa_len < sizeof(struct sockaddr_in))
232 WARN("address too small\n");
233 LeaveCriticalSection( &cs_gethostbyname );
236 *sa_len = sizeof(struct sockaddr_in);
237 memset(sin,0,sizeof(struct sockaddr_in));
238 memcpy((char *)&sin->sin_addr, phe->h_addr, phe->h_length);
239 sin->sin_family = phe->h_addrtype;
240 sin->sin_port = htons(nServerPort);
242 LeaveCriticalSection( &cs_gethostbyname );
248 * Helper function for sending async Callbacks
251 static const char *get_callback_name(DWORD dwInternetStatus) {
252 static const wininet_flag_info internet_status[] = {
253 #define FE(x) { x, #x }
254 FE(INTERNET_STATUS_RESOLVING_NAME),
255 FE(INTERNET_STATUS_NAME_RESOLVED),
256 FE(INTERNET_STATUS_CONNECTING_TO_SERVER),
257 FE(INTERNET_STATUS_CONNECTED_TO_SERVER),
258 FE(INTERNET_STATUS_SENDING_REQUEST),
259 FE(INTERNET_STATUS_REQUEST_SENT),
260 FE(INTERNET_STATUS_RECEIVING_RESPONSE),
261 FE(INTERNET_STATUS_RESPONSE_RECEIVED),
262 FE(INTERNET_STATUS_CTL_RESPONSE_RECEIVED),
263 FE(INTERNET_STATUS_PREFETCH),
264 FE(INTERNET_STATUS_CLOSING_CONNECTION),
265 FE(INTERNET_STATUS_CONNECTION_CLOSED),
266 FE(INTERNET_STATUS_HANDLE_CREATED),
267 FE(INTERNET_STATUS_HANDLE_CLOSING),
268 FE(INTERNET_STATUS_REQUEST_COMPLETE),
269 FE(INTERNET_STATUS_REDIRECT),
270 FE(INTERNET_STATUS_INTERMEDIATE_RESPONSE),
271 FE(INTERNET_STATUS_USER_INPUT_REQUIRED),
272 FE(INTERNET_STATUS_STATE_CHANGE),
273 FE(INTERNET_STATUS_COOKIE_SENT),
274 FE(INTERNET_STATUS_COOKIE_RECEIVED),
275 FE(INTERNET_STATUS_PRIVACY_IMPACTED),
276 FE(INTERNET_STATUS_P3P_HEADER),
277 FE(INTERNET_STATUS_P3P_POLICYREF),
278 FE(INTERNET_STATUS_COOKIE_HISTORY)
283 for (i = 0; i < (sizeof(internet_status) / sizeof(internet_status[0])); i++) {
284 if (internet_status[i].val == dwInternetStatus) return internet_status[i].name;
289 static const char *debugstr_status_info(DWORD status, void *info)
292 case INTERNET_STATUS_REQUEST_COMPLETE: {
293 INTERNET_ASYNC_RESULT *iar = info;
294 return wine_dbg_sprintf("{%s, %d}", wine_dbgstr_longlong(iar->dwResult), iar->dwError);
297 return wine_dbg_sprintf("%p", info);
301 VOID INTERNET_SendCallback(object_header_t *hdr, DWORD_PTR dwContext,
302 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
303 DWORD dwStatusInfoLength)
305 LPVOID lpvNewInfo = NULL;
307 if( !hdr->lpfnStatusCB )
310 /* the IE5 version of wininet does not
311 send callbacks if dwContext is zero */
315 lpvNewInfo = lpvStatusInfo;
316 if(hdr->dwInternalFlags & INET_CALLBACKW) {
317 switch(dwInternetStatus) {
318 case INTERNET_STATUS_NAME_RESOLVED:
319 case INTERNET_STATUS_CONNECTING_TO_SERVER:
320 case INTERNET_STATUS_CONNECTED_TO_SERVER:
321 lpvNewInfo = heap_strdupAtoW(lpvStatusInfo);
322 dwStatusInfoLength *= sizeof(WCHAR);
324 case INTERNET_STATUS_RESOLVING_NAME:
325 case INTERNET_STATUS_REDIRECT:
326 lpvNewInfo = heap_strdupW(lpvStatusInfo);
330 switch(dwInternetStatus)
332 case INTERNET_STATUS_NAME_RESOLVED:
333 case INTERNET_STATUS_CONNECTING_TO_SERVER:
334 case INTERNET_STATUS_CONNECTED_TO_SERVER:
335 lpvNewInfo = heap_alloc(strlen(lpvStatusInfo) + 1);
336 if (lpvNewInfo) strcpy(lpvNewInfo, lpvStatusInfo);
338 case INTERNET_STATUS_RESOLVING_NAME:
339 case INTERNET_STATUS_REDIRECT:
340 lpvNewInfo = heap_strdupWtoA(lpvStatusInfo);
341 dwStatusInfoLength /= sizeof(WCHAR);
346 TRACE(" callback(%p) (%p (%p), %08lx, %d (%s), %s, %d)\n",
347 hdr->lpfnStatusCB, hdr->hInternet, hdr, dwContext, dwInternetStatus, get_callback_name(dwInternetStatus),
348 debugstr_status_info(dwInternetStatus, lpvNewInfo), dwStatusInfoLength);
350 hdr->lpfnStatusCB(hdr->hInternet, dwContext, dwInternetStatus,
351 lpvNewInfo, dwStatusInfoLength);
353 TRACE(" end callback().\n");
355 if(lpvNewInfo != lpvStatusInfo)
356 heap_free(lpvNewInfo);
359 static void SendAsyncCallbackProc(WORKREQUEST *workRequest)
361 struct WORKREQ_SENDCALLBACK const *req = &workRequest->u.SendCallback;
363 TRACE("%p\n", workRequest->hdr);
365 INTERNET_SendCallback(workRequest->hdr,
366 req->dwContext, req->dwInternetStatus, req->lpvStatusInfo,
367 req->dwStatusInfoLength);
369 /* And frees the copy of the status info */
370 heap_free(req->lpvStatusInfo);
373 void SendAsyncCallback(object_header_t *hdr, DWORD_PTR dwContext,
374 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
375 DWORD dwStatusInfoLength)
377 TRACE("(%p, %08lx, %d (%s), %p, %d): %sasync call with callback %p\n",
378 hdr, dwContext, dwInternetStatus, get_callback_name(dwInternetStatus),
379 lpvStatusInfo, dwStatusInfoLength,
380 hdr->dwFlags & INTERNET_FLAG_ASYNC ? "" : "non ",
383 if (!(hdr->lpfnStatusCB))
386 if (hdr->dwFlags & INTERNET_FLAG_ASYNC)
388 WORKREQUEST workRequest;
389 struct WORKREQ_SENDCALLBACK *req;
390 void *lpvStatusInfo_copy = lpvStatusInfo;
394 lpvStatusInfo_copy = heap_alloc(dwStatusInfoLength);
395 memcpy(lpvStatusInfo_copy, lpvStatusInfo, dwStatusInfoLength);
398 workRequest.asyncproc = SendAsyncCallbackProc;
399 workRequest.hdr = WININET_AddRef( hdr );
400 req = &workRequest.u.SendCallback;
401 req->dwContext = dwContext;
402 req->dwInternetStatus = dwInternetStatus;
403 req->lpvStatusInfo = lpvStatusInfo_copy;
404 req->dwStatusInfoLength = dwStatusInfoLength;
406 INTERNET_AsyncCall(&workRequest);
409 INTERNET_SendCallback(hdr, dwContext, dwInternetStatus,
410 lpvStatusInfo, dwStatusInfoLength);