2 * Copyright 2008 Hans Leidekker for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "wine/port.h"
21 #include "wine/debug.h"
36 #include "winhttp_private.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(winhttp
);
40 #define DEFAULT_RESOLVE_TIMEOUT 0
41 #define DEFAULT_CONNECT_TIMEOUT 20000
42 #define DEFAULT_SEND_TIMEOUT 30000
43 #define DEFAULT_RECEIVE_TIMEOUT 30000
45 static const WCHAR global_funcsW
[] = {'g','l','o','b','a','l','_','f','u','n','c','s',0};
46 static const WCHAR dns_resolveW
[] = {'d','n','s','_','r','e','s','o','l','v','e',0};
48 void set_last_error( DWORD error
)
51 SetLastError( error
);
54 DWORD
get_last_error( void )
57 return GetLastError();
60 void send_callback( object_header_t
*hdr
, DWORD status
, LPVOID info
, DWORD buflen
)
62 TRACE("%p, 0x%08x, %p, %u\n", hdr
, status
, info
, buflen
);
64 if (hdr
->callback
&& (hdr
->notify_mask
& status
)) hdr
->callback( hdr
->handle
, hdr
->context
, status
, info
, buflen
);
67 /***********************************************************************
68 * WinHttpCheckPlatform (winhttp.@)
70 BOOL WINAPI
WinHttpCheckPlatform( void )
76 /***********************************************************************
77 * session_destroy (internal)
79 static void session_destroy( object_header_t
*hdr
)
81 session_t
*session
= (session_t
*)hdr
;
82 struct list
*item
, *next
;
85 TRACE("%p\n", session
);
87 LIST_FOR_EACH_SAFE( item
, next
, &session
->cookie_cache
)
89 domain
= LIST_ENTRY( item
, domain_t
, entry
);
90 delete_domain( domain
);
92 heap_free( session
->agent
);
93 heap_free( session
->proxy_server
);
94 heap_free( session
->proxy_bypass
);
95 heap_free( session
->proxy_username
);
96 heap_free( session
->proxy_password
);
100 static BOOL
session_query_option( object_header_t
*hdr
, DWORD option
, LPVOID buffer
, LPDWORD buflen
)
102 session_t
*session
= (session_t
*)hdr
;
106 case WINHTTP_OPTION_REDIRECT_POLICY
:
108 if (!buffer
|| *buflen
< sizeof(DWORD
))
110 *buflen
= sizeof(DWORD
);
111 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
115 *(DWORD
*)buffer
= hdr
->redirect_policy
;
116 *buflen
= sizeof(DWORD
);
119 case WINHTTP_OPTION_RESOLVE_TIMEOUT
:
120 *(DWORD
*)buffer
= session
->resolve_timeout
;
121 *buflen
= sizeof(DWORD
);
123 case WINHTTP_OPTION_CONNECT_TIMEOUT
:
124 *(DWORD
*)buffer
= session
->connect_timeout
;
125 *buflen
= sizeof(DWORD
);
127 case WINHTTP_OPTION_SEND_TIMEOUT
:
128 *(DWORD
*)buffer
= session
->send_timeout
;
129 *buflen
= sizeof(DWORD
);
131 case WINHTTP_OPTION_RECEIVE_TIMEOUT
:
132 *(DWORD
*)buffer
= session
->recv_timeout
;
133 *buflen
= sizeof(DWORD
);
136 FIXME("unimplemented option %u\n", option
);
137 set_last_error( ERROR_INVALID_PARAMETER
);
142 static BOOL
session_set_option( object_header_t
*hdr
, DWORD option
, LPVOID buffer
, DWORD buflen
)
144 session_t
*session
= (session_t
*)hdr
;
148 case WINHTTP_OPTION_PROXY
:
150 WINHTTP_PROXY_INFO
*pi
= buffer
;
152 FIXME("%u %s %s\n", pi
->dwAccessType
, debugstr_w(pi
->lpszProxy
), debugstr_w(pi
->lpszProxyBypass
));
155 case WINHTTP_OPTION_REDIRECT_POLICY
:
159 if (buflen
!= sizeof(policy
))
161 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
165 policy
= *(DWORD
*)buffer
;
166 TRACE("0x%x\n", policy
);
167 hdr
->redirect_policy
= policy
;
170 case WINHTTP_OPTION_DISABLE_FEATURE
:
171 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE
);
173 case WINHTTP_OPTION_RESOLVE_TIMEOUT
:
174 session
->resolve_timeout
= *(DWORD
*)buffer
;
176 case WINHTTP_OPTION_CONNECT_TIMEOUT
:
177 session
->connect_timeout
= *(DWORD
*)buffer
;
179 case WINHTTP_OPTION_SEND_TIMEOUT
:
180 session
->send_timeout
= *(DWORD
*)buffer
;
182 case WINHTTP_OPTION_RECEIVE_TIMEOUT
:
183 session
->recv_timeout
= *(DWORD
*)buffer
;
186 FIXME("unimplemented option %u\n", option
);
187 set_last_error( ERROR_INVALID_PARAMETER
);
192 static const object_vtbl_t session_vtbl
=
195 session_query_option
,
199 /***********************************************************************
200 * WinHttpOpen (winhttp.@)
202 HINTERNET WINAPI
WinHttpOpen( LPCWSTR agent
, DWORD access
, LPCWSTR proxy
, LPCWSTR bypass
, DWORD flags
)
205 HINTERNET handle
= NULL
;
207 TRACE("%s, %u, %s, %s, 0x%08x\n", debugstr_w(agent
), access
, debugstr_w(proxy
), debugstr_w(bypass
), flags
);
209 if (!(session
= heap_alloc_zero( sizeof(session_t
) ))) return NULL
;
211 session
->hdr
.type
= WINHTTP_HANDLE_TYPE_SESSION
;
212 session
->hdr
.vtbl
= &session_vtbl
;
213 session
->hdr
.flags
= flags
;
214 session
->hdr
.refs
= 1;
215 session
->hdr
.redirect_policy
= WINHTTP_OPTION_REDIRECT_POLICY_DISALLOW_HTTPS_TO_HTTP
;
216 list_init( &session
->hdr
.children
);
217 session
->resolve_timeout
= DEFAULT_RESOLVE_TIMEOUT
;
218 session
->connect_timeout
= DEFAULT_CONNECT_TIMEOUT
;
219 session
->send_timeout
= DEFAULT_SEND_TIMEOUT
;
220 session
->recv_timeout
= DEFAULT_RECEIVE_TIMEOUT
;
221 list_init( &session
->cookie_cache
);
223 if (agent
&& !(session
->agent
= strdupW( agent
))) goto end
;
224 if (access
== WINHTTP_ACCESS_TYPE_DEFAULT_PROXY
)
226 WINHTTP_PROXY_INFO info
;
228 WinHttpGetDefaultProxyConfiguration( &info
);
229 session
->access
= info
.dwAccessType
;
230 if (info
.lpszProxy
&& !(session
->proxy_server
= strdupW( info
.lpszProxy
)))
232 GlobalFree( (LPWSTR
)info
.lpszProxy
);
233 GlobalFree( (LPWSTR
)info
.lpszProxyBypass
);
236 if (info
.lpszProxyBypass
&& !(session
->proxy_bypass
= strdupW( info
.lpszProxyBypass
)))
238 GlobalFree( (LPWSTR
)info
.lpszProxy
);
239 GlobalFree( (LPWSTR
)info
.lpszProxyBypass
);
243 else if (access
== WINHTTP_ACCESS_TYPE_NAMED_PROXY
)
245 session
->access
= access
;
246 if (proxy
&& !(session
->proxy_server
= strdupW( proxy
))) goto end
;
247 if (bypass
&& !(session
->proxy_bypass
= strdupW( bypass
))) goto end
;
250 if (!(handle
= alloc_handle( &session
->hdr
))) goto end
;
251 session
->hdr
.handle
= handle
;
254 release_object( &session
->hdr
);
255 TRACE("returning %p\n", handle
);
259 /***********************************************************************
260 * connect_destroy (internal)
262 static void connect_destroy( object_header_t
*hdr
)
264 connect_t
*connect
= (connect_t
*)hdr
;
266 TRACE("%p\n", connect
);
268 release_object( &connect
->session
->hdr
);
270 heap_free( connect
->hostname
);
271 heap_free( connect
->servername
);
272 heap_free( connect
->username
);
273 heap_free( connect
->password
);
274 heap_free( connect
);
277 static BOOL
connect_query_option( object_header_t
*hdr
, DWORD option
, LPVOID buffer
, LPDWORD buflen
)
279 connect_t
*connect
= (connect_t
*)hdr
;
283 case WINHTTP_OPTION_PARENT_HANDLE
:
285 if (!buffer
|| *buflen
< sizeof(HINTERNET
))
287 *buflen
= sizeof(HINTERNET
);
288 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
292 *(HINTERNET
*)buffer
= ((object_header_t
*)connect
->session
)->handle
;
293 *buflen
= sizeof(HINTERNET
);
296 case WINHTTP_OPTION_RESOLVE_TIMEOUT
:
297 *(DWORD
*)buffer
= connect
->session
->resolve_timeout
;
298 *buflen
= sizeof(DWORD
);
300 case WINHTTP_OPTION_CONNECT_TIMEOUT
:
301 *(DWORD
*)buffer
= connect
->session
->connect_timeout
;
302 *buflen
= sizeof(DWORD
);
304 case WINHTTP_OPTION_SEND_TIMEOUT
:
305 *(DWORD
*)buffer
= connect
->session
->send_timeout
;
306 *buflen
= sizeof(DWORD
);
308 case WINHTTP_OPTION_RECEIVE_TIMEOUT
:
309 *(DWORD
*)buffer
= connect
->session
->recv_timeout
;
310 *buflen
= sizeof(DWORD
);
313 FIXME("unimplemented option %u\n", option
);
314 set_last_error( ERROR_INVALID_PARAMETER
);
319 static const object_vtbl_t connect_vtbl
=
322 connect_query_option
,
326 static BOOL
domain_matches(LPCWSTR server
, LPCWSTR domain
)
328 static const WCHAR localW
[] = { '<','l','o','c','a','l','>',0 };
331 if (!strcmpiW( domain
, localW
) && !strchrW( server
, '.' ))
333 else if (*domain
== '*')
335 if (domain
[1] == '.')
339 /* For a hostname to match a wildcard, the last domain must match
340 * the wildcard exactly. E.g. if the wildcard is *.a.b, and the
341 * hostname is www.foo.a.b, it matches, but a.b does not.
343 dot
= strchrW( server
, '.' );
346 int len
= strlenW( dot
+ 1 );
348 if (len
> strlenW( domain
+ 2 ))
352 /* The server's domain is longer than the wildcard, so it
353 * could be a subdomain. Compare the last portion of the
356 ptr
= dot
+ len
+ 1 - strlenW( domain
+ 2 );
357 if (!strcmpiW( ptr
, domain
+ 2 ))
359 /* This is only a match if the preceding character is
360 * a '.', i.e. that it is a matching domain. E.g.
361 * if domain is '*.b.c' and server is 'www.ab.c' they
364 ret
= *(ptr
- 1) == '.';
368 ret
= !strcmpiW( dot
+ 1, domain
+ 2 );
373 ret
= !strcmpiW( server
, domain
);
377 /* Matches INTERNET_MAX_HOST_NAME_LENGTH in wininet.h, also RFC 1035 */
378 #define MAX_HOST_NAME_LENGTH 256
380 static BOOL
should_bypass_proxy(session_t
*session
, LPCWSTR server
)
385 if (!session
->proxy_bypass
) return FALSE
;
386 ptr
= session
->proxy_bypass
;
390 ptr
= strchrW( ptr
, ';' );
392 ptr
= strchrW( tmp
, ' ' );
395 if (ptr
- tmp
< MAX_HOST_NAME_LENGTH
)
397 WCHAR domain
[MAX_HOST_NAME_LENGTH
];
399 memcpy( domain
, tmp
, (ptr
- tmp
) * sizeof(WCHAR
) );
400 domain
[ptr
- tmp
] = 0;
401 ret
= domain_matches( server
, domain
);
406 ret
= domain_matches( server
, tmp
);
407 } while (ptr
&& !ret
);
411 BOOL
set_server_for_hostname( connect_t
*connect
, LPCWSTR server
, INTERNET_PORT port
)
413 session_t
*session
= connect
->session
;
416 if (session
->proxy_server
&& !should_bypass_proxy(session
, server
))
420 if ((colon
= strchrW( session
->proxy_server
, ':' )))
422 if (!connect
->servername
|| strncmpiW( connect
->servername
,
423 session
->proxy_server
, colon
- session
->proxy_server
- 1 ))
425 heap_free( connect
->servername
);
426 connect
->resolved
= FALSE
;
427 if (!(connect
->servername
= heap_alloc(
428 (colon
- session
->proxy_server
+ 1) * sizeof(WCHAR
) )))
433 memcpy( connect
->servername
, session
->proxy_server
,
434 (colon
- session
->proxy_server
) * sizeof(WCHAR
) );
435 connect
->servername
[colon
- session
->proxy_server
] = 0;
437 connect
->serverport
= atoiW( colon
+ 1 );
439 connect
->serverport
= INTERNET_DEFAULT_PORT
;
444 if (!connect
->servername
|| strcmpiW( connect
->servername
,
445 session
->proxy_server
))
447 heap_free( connect
->servername
);
448 connect
->resolved
= FALSE
;
449 if (!(connect
->servername
= strdupW( session
->proxy_server
)))
454 connect
->serverport
= INTERNET_DEFAULT_PORT
;
460 heap_free( connect
->servername
);
461 connect
->resolved
= FALSE
;
462 if (!(connect
->servername
= strdupW( server
)))
467 connect
->serverport
= port
;
473 /***********************************************************************
474 * WinHttpConnect (winhttp.@)
476 HINTERNET WINAPI
WinHttpConnect( HINTERNET hsession
, LPCWSTR server
, INTERNET_PORT port
, DWORD reserved
)
480 HINTERNET hconnect
= NULL
;
482 TRACE("%p, %s, %u, %x\n", hsession
, debugstr_w(server
), port
, reserved
);
486 set_last_error( ERROR_INVALID_PARAMETER
);
489 if (!(session
= (session_t
*)grab_object( hsession
)))
491 set_last_error( ERROR_INVALID_HANDLE
);
494 if (session
->hdr
.type
!= WINHTTP_HANDLE_TYPE_SESSION
)
496 release_object( &session
->hdr
);
497 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE
);
500 if (!(connect
= heap_alloc_zero( sizeof(connect_t
) )))
502 release_object( &session
->hdr
);
505 connect
->hdr
.type
= WINHTTP_HANDLE_TYPE_CONNECT
;
506 connect
->hdr
.vtbl
= &connect_vtbl
;
507 connect
->hdr
.refs
= 1;
508 connect
->hdr
.flags
= session
->hdr
.flags
;
509 connect
->hdr
.callback
= session
->hdr
.callback
;
510 connect
->hdr
.notify_mask
= session
->hdr
.notify_mask
;
511 connect
->hdr
.context
= session
->hdr
.context
;
512 list_init( &connect
->hdr
.children
);
514 addref_object( &session
->hdr
);
515 connect
->session
= session
;
516 list_add_head( &session
->hdr
.children
, &connect
->hdr
.entry
);
518 if (!(connect
->hostname
= strdupW( server
))) goto end
;
519 connect
->hostport
= port
;
520 if (!set_server_for_hostname( connect
, server
, port
)) goto end
;
522 if (!(hconnect
= alloc_handle( &connect
->hdr
))) goto end
;
523 connect
->hdr
.handle
= hconnect
;
525 send_callback( &session
->hdr
, WINHTTP_CALLBACK_STATUS_HANDLE_CREATED
, &hconnect
, sizeof(hconnect
) );
528 release_object( &connect
->hdr
);
529 release_object( &session
->hdr
);
530 TRACE("returning %p\n", hconnect
);
534 /***********************************************************************
535 * request_destroy (internal)
537 static void request_destroy( object_header_t
*hdr
)
539 request_t
*request
= (request_t
*)hdr
;
542 TRACE("%p\n", request
);
544 release_object( &request
->connect
->hdr
);
546 heap_free( request
->verb
);
547 heap_free( request
->path
);
548 heap_free( request
->version
);
549 heap_free( request
->raw_headers
);
550 heap_free( request
->status_text
);
551 for (i
= 0; i
< request
->num_headers
; i
++)
553 heap_free( request
->headers
[i
].field
);
554 heap_free( request
->headers
[i
].value
);
556 heap_free( request
->headers
);
557 for (i
= 0; i
< request
->num_accept_types
; i
++) heap_free( request
->accept_types
[i
] );
558 heap_free( request
->accept_types
);
559 heap_free( request
);
562 static void str_to_buffer( WCHAR
*buffer
, const WCHAR
*str
, LPDWORD buflen
)
565 if (str
) len
= strlenW( str
);
566 if (buffer
&& *buflen
> len
)
568 if (str
) memcpy( buffer
, str
, len
* sizeof(WCHAR
) );
571 *buflen
= len
* sizeof(WCHAR
);
574 static WCHAR
*blob_to_str( DWORD encoding
, CERT_NAME_BLOB
*blob
)
577 DWORD size
, format
= CERT_SIMPLE_NAME_STR
| CERT_NAME_STR_CRLF_FLAG
;
579 size
= CertNameToStrW( encoding
, blob
, format
, NULL
, 0 );
580 if ((ret
= LocalAlloc( 0, size
* sizeof(WCHAR
) )))
581 CertNameToStrW( encoding
, blob
, format
, ret
, size
);
586 static BOOL
request_query_option( object_header_t
*hdr
, DWORD option
, LPVOID buffer
, LPDWORD buflen
)
588 request_t
*request
= (request_t
*)hdr
;
592 case WINHTTP_OPTION_SECURITY_FLAGS
:
597 if (!buffer
|| *buflen
< sizeof(flags
))
599 *buflen
= sizeof(flags
);
600 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
605 if (hdr
->flags
& WINHTTP_FLAG_SECURE
) flags
|= SECURITY_FLAG_SECURE
;
606 flags
|= request
->netconn
.security_flags
;
607 bits
= netconn_get_cipher_strength( &request
->netconn
);
609 flags
|= SECURITY_FLAG_STRENGTH_STRONG
;
611 flags
|= SECURITY_FLAG_STRENGTH_MEDIUM
;
613 flags
|= SECURITY_FLAG_STRENGTH_WEAK
;
614 *(DWORD
*)buffer
= flags
;
615 *buflen
= sizeof(flags
);
618 case WINHTTP_OPTION_SERVER_CERT_CONTEXT
:
620 const CERT_CONTEXT
*cert
;
622 if (!buffer
|| *buflen
< sizeof(cert
))
624 *buflen
= sizeof(cert
);
625 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
629 if (!(cert
= netconn_get_certificate( &request
->netconn
))) return FALSE
;
630 *(CERT_CONTEXT
**)buffer
= (CERT_CONTEXT
*)cert
;
631 *buflen
= sizeof(cert
);
634 case WINHTTP_OPTION_SECURITY_CERTIFICATE_STRUCT
:
636 const CERT_CONTEXT
*cert
;
637 const CRYPT_OID_INFO
*oidInfo
;
638 WINHTTP_CERTIFICATE_INFO
*ci
= buffer
;
640 FIXME("partial stub\n");
642 if (!buffer
|| *buflen
< sizeof(*ci
))
644 *buflen
= sizeof(*ci
);
645 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
648 if (!(cert
= netconn_get_certificate( &request
->netconn
))) return FALSE
;
650 ci
->ftExpiry
= cert
->pCertInfo
->NotAfter
;
651 ci
->ftStart
= cert
->pCertInfo
->NotBefore
;
652 ci
->lpszSubjectInfo
= blob_to_str( cert
->dwCertEncodingType
, &cert
->pCertInfo
->Subject
);
653 ci
->lpszIssuerInfo
= blob_to_str( cert
->dwCertEncodingType
, &cert
->pCertInfo
->Issuer
);
654 ci
->lpszProtocolName
= NULL
;
655 oidInfo
= CryptFindOIDInfo( CRYPT_OID_INFO_OID_KEY
,
656 cert
->pCertInfo
->SignatureAlgorithm
.pszObjId
,
659 ci
->lpszSignatureAlgName
= (LPWSTR
)oidInfo
->pwszName
;
661 ci
->lpszSignatureAlgName
= NULL
;
662 ci
->lpszEncryptionAlgName
= NULL
;
663 ci
->dwKeySize
= netconn_get_cipher_strength( &request
->netconn
);
665 CertFreeCertificateContext( cert
);
666 *buflen
= sizeof(*ci
);
669 case WINHTTP_OPTION_SECURITY_KEY_BITNESS
:
671 if (!buffer
|| *buflen
< sizeof(DWORD
))
673 *buflen
= sizeof(DWORD
);
674 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
678 *(DWORD
*)buffer
= netconn_get_cipher_strength( &request
->netconn
);
679 *buflen
= sizeof(DWORD
);
682 case WINHTTP_OPTION_RESOLVE_TIMEOUT
:
683 *(DWORD
*)buffer
= request
->resolve_timeout
;
684 *buflen
= sizeof(DWORD
);
686 case WINHTTP_OPTION_CONNECT_TIMEOUT
:
687 *(DWORD
*)buffer
= request
->connect_timeout
;
688 *buflen
= sizeof(DWORD
);
690 case WINHTTP_OPTION_SEND_TIMEOUT
:
691 *(DWORD
*)buffer
= request
->send_timeout
;
692 *buflen
= sizeof(DWORD
);
694 case WINHTTP_OPTION_RECEIVE_TIMEOUT
:
695 *(DWORD
*)buffer
= request
->recv_timeout
;
696 *buflen
= sizeof(DWORD
);
699 case WINHTTP_OPTION_USERNAME
:
700 str_to_buffer( buffer
, request
->connect
->username
, buflen
);
703 case WINHTTP_OPTION_PASSWORD
:
704 str_to_buffer( buffer
, request
->connect
->password
, buflen
);
707 case WINHTTP_OPTION_PROXY_USERNAME
:
708 str_to_buffer( buffer
, request
->connect
->session
->proxy_username
, buflen
);
711 case WINHTTP_OPTION_PROXY_PASSWORD
:
712 str_to_buffer( buffer
, request
->connect
->session
->proxy_password
, buflen
);
716 FIXME("unimplemented option %u\n", option
);
717 set_last_error( ERROR_INVALID_PARAMETER
);
722 static WCHAR
*buffer_to_str( WCHAR
*buffer
, DWORD buflen
)
725 if ((ret
= heap_alloc( (buflen
+ 1) * sizeof(WCHAR
))))
727 memcpy( ret
, buffer
, buflen
* sizeof(WCHAR
) );
731 set_last_error( ERROR_OUTOFMEMORY
);
735 static BOOL
request_set_option( object_header_t
*hdr
, DWORD option
, LPVOID buffer
, DWORD buflen
)
737 request_t
*request
= (request_t
*)hdr
;
741 case WINHTTP_OPTION_PROXY
:
743 WINHTTP_PROXY_INFO
*pi
= buffer
;
745 FIXME("%u %s %s\n", pi
->dwAccessType
, debugstr_w(pi
->lpszProxy
), debugstr_w(pi
->lpszProxyBypass
));
748 case WINHTTP_OPTION_DISABLE_FEATURE
:
752 if (buflen
!= sizeof(DWORD
))
754 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
758 disable
= *(DWORD
*)buffer
;
759 TRACE("0x%x\n", disable
);
760 hdr
->disable_flags
|= disable
;
763 case WINHTTP_OPTION_AUTOLOGON_POLICY
:
767 if (buflen
!= sizeof(DWORD
))
769 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
773 policy
= *(DWORD
*)buffer
;
774 TRACE("0x%x\n", policy
);
775 hdr
->logon_policy
= policy
;
778 case WINHTTP_OPTION_REDIRECT_POLICY
:
782 if (buflen
!= sizeof(DWORD
))
784 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
788 policy
= *(DWORD
*)buffer
;
789 TRACE("0x%x\n", policy
);
790 hdr
->redirect_policy
= policy
;
793 case WINHTTP_OPTION_SECURITY_FLAGS
:
797 if (buflen
< sizeof(DWORD
))
799 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
802 flags
= *(DWORD
*)buffer
;
803 TRACE("0x%x\n", flags
);
804 if (!(flags
& (SECURITY_FLAG_IGNORE_CERT_CN_INVALID
|
805 SECURITY_FLAG_IGNORE_CERT_DATE_INVALID
|
806 SECURITY_FLAG_IGNORE_UNKNOWN_CA
|
807 SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE
)))
809 set_last_error( ERROR_INVALID_PARAMETER
);
812 request
->netconn
.security_flags
= flags
;
815 case WINHTTP_OPTION_RESOLVE_TIMEOUT
:
816 request
->resolve_timeout
= *(DWORD
*)buffer
;
818 case WINHTTP_OPTION_CONNECT_TIMEOUT
:
819 request
->connect_timeout
= *(DWORD
*)buffer
;
821 case WINHTTP_OPTION_SEND_TIMEOUT
:
822 request
->send_timeout
= *(DWORD
*)buffer
;
824 case WINHTTP_OPTION_RECEIVE_TIMEOUT
:
825 request
->recv_timeout
= *(DWORD
*)buffer
;
828 case WINHTTP_OPTION_USERNAME
:
830 connect_t
*connect
= request
->connect
;
832 heap_free( connect
->username
);
833 if (!(connect
->username
= buffer_to_str( buffer
, buflen
))) return FALSE
;
836 case WINHTTP_OPTION_PASSWORD
:
838 connect_t
*connect
= request
->connect
;
840 heap_free( connect
->password
);
841 if (!(connect
->password
= buffer_to_str( buffer
, buflen
))) return FALSE
;
844 case WINHTTP_OPTION_PROXY_USERNAME
:
846 session_t
*session
= request
->connect
->session
;
848 heap_free( session
->proxy_username
);
849 if (!(session
->proxy_username
= buffer_to_str( buffer
, buflen
))) return FALSE
;
852 case WINHTTP_OPTION_PROXY_PASSWORD
:
854 session_t
*session
= request
->connect
->session
;
856 heap_free( session
->proxy_password
);
857 if (!(session
->proxy_password
= buffer_to_str( buffer
, buflen
))) return FALSE
;
861 FIXME("unimplemented option %u\n", option
);
862 set_last_error( ERROR_INVALID_PARAMETER
);
867 static const object_vtbl_t request_vtbl
=
870 request_query_option
,
874 static BOOL
store_accept_types( request_t
*request
, const WCHAR
**accept_types
)
876 const WCHAR
**types
= accept_types
;
879 if (!types
) return TRUE
;
882 request
->num_accept_types
++;
885 if (!request
->num_accept_types
) return TRUE
;
886 if (!(request
->accept_types
= heap_alloc( request
->num_accept_types
* sizeof(WCHAR
*))))
888 request
->num_accept_types
= 0;
891 types
= accept_types
;
892 for (i
= 0; i
< request
->num_accept_types
; i
++)
894 if (!(request
->accept_types
[i
] = strdupW( *types
)))
896 for (; i
>= 0; i
--) heap_free( request
->accept_types
[i
] );
897 heap_free( request
->accept_types
);
898 request
->accept_types
= NULL
;
899 request
->num_accept_types
= 0;
907 /***********************************************************************
908 * WinHttpOpenRequest (winhttp.@)
910 HINTERNET WINAPI
WinHttpOpenRequest( HINTERNET hconnect
, LPCWSTR verb
, LPCWSTR object
, LPCWSTR version
,
911 LPCWSTR referrer
, LPCWSTR
*types
, DWORD flags
)
915 HINTERNET hrequest
= NULL
;
917 TRACE("%p, %s, %s, %s, %s, %p, 0x%08x\n", hconnect
, debugstr_w(verb
), debugstr_w(object
),
918 debugstr_w(version
), debugstr_w(referrer
), types
, flags
);
920 if(types
&& TRACE_ON(winhttp
)) {
923 TRACE("accept types:\n");
924 for(iter
= types
; *iter
; iter
++)
925 TRACE(" %s\n", debugstr_w(*iter
));
928 if (!(connect
= (connect_t
*)grab_object( hconnect
)))
930 set_last_error( ERROR_INVALID_HANDLE
);
933 if (connect
->hdr
.type
!= WINHTTP_HANDLE_TYPE_CONNECT
)
935 release_object( &connect
->hdr
);
936 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE
);
939 if (!(request
= heap_alloc_zero( sizeof(request_t
) )))
941 release_object( &connect
->hdr
);
944 request
->hdr
.type
= WINHTTP_HANDLE_TYPE_REQUEST
;
945 request
->hdr
.vtbl
= &request_vtbl
;
946 request
->hdr
.refs
= 1;
947 request
->hdr
.flags
= flags
;
948 request
->hdr
.callback
= connect
->hdr
.callback
;
949 request
->hdr
.notify_mask
= connect
->hdr
.notify_mask
;
950 request
->hdr
.context
= connect
->hdr
.context
;
951 list_init( &request
->hdr
.children
);
953 addref_object( &connect
->hdr
);
954 request
->connect
= connect
;
955 list_add_head( &connect
->hdr
.children
, &request
->hdr
.entry
);
957 if (!netconn_init( &request
->netconn
, request
->hdr
.flags
& WINHTTP_FLAG_SECURE
)) goto end
;
958 request
->resolve_timeout
= connect
->session
->resolve_timeout
;
959 request
->connect_timeout
= connect
->session
->connect_timeout
;
960 request
->send_timeout
= connect
->session
->send_timeout
;
961 request
->recv_timeout
= connect
->session
->recv_timeout
;
963 if (!verb
|| !verb
[0]) verb
= getW
;
964 if (!(request
->verb
= strdupW( verb
))) goto end
;
971 len
= strlenW( object
) + 1;
972 if (object
[0] != '/') len
++;
973 if (!(p
= path
= heap_alloc( len
* sizeof(WCHAR
) ))) goto end
;
975 if (object
[0] != '/') *p
++ = '/';
976 strcpyW( p
, object
);
977 request
->path
= path
;
979 else if (!(request
->path
= strdupW( slashW
))) goto end
;
981 if (!version
|| !version
[0]) version
= http1_1
;
982 if (!(request
->version
= strdupW( version
))) goto end
;
983 if (!(store_accept_types( request
, types
))) goto end
;
985 if (!(hrequest
= alloc_handle( &request
->hdr
))) goto end
;
986 request
->hdr
.handle
= hrequest
;
988 send_callback( &request
->hdr
, WINHTTP_CALLBACK_STATUS_HANDLE_CREATED
, &hrequest
, sizeof(hrequest
) );
991 release_object( &request
->hdr
);
992 release_object( &connect
->hdr
);
993 TRACE("returning %p\n", hrequest
);
997 /***********************************************************************
998 * WinHttpCloseHandle (winhttp.@)
1000 BOOL WINAPI
WinHttpCloseHandle( HINTERNET handle
)
1002 object_header_t
*hdr
;
1004 TRACE("%p\n", handle
);
1006 if (!(hdr
= grab_object( handle
)))
1008 set_last_error( ERROR_INVALID_HANDLE
);
1011 release_object( hdr
);
1012 free_handle( handle
);
1016 static BOOL
query_option( object_header_t
*hdr
, DWORD option
, LPVOID buffer
, LPDWORD buflen
)
1022 set_last_error( ERROR_INVALID_PARAMETER
);
1028 case WINHTTP_OPTION_CONTEXT_VALUE
:
1030 if (!buffer
|| *buflen
< sizeof(DWORD_PTR
))
1032 *buflen
= sizeof(DWORD_PTR
);
1033 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
1037 *(DWORD_PTR
*)buffer
= hdr
->context
;
1038 *buflen
= sizeof(DWORD_PTR
);
1042 if (hdr
->vtbl
->query_option
) ret
= hdr
->vtbl
->query_option( hdr
, option
, buffer
, buflen
);
1045 FIXME("unimplemented option %u\n", option
);
1046 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE
);
1054 /***********************************************************************
1055 * WinHttpQueryOption (winhttp.@)
1057 BOOL WINAPI
WinHttpQueryOption( HINTERNET handle
, DWORD option
, LPVOID buffer
, LPDWORD buflen
)
1060 object_header_t
*hdr
;
1062 TRACE("%p, %u, %p, %p\n", handle
, option
, buffer
, buflen
);
1064 if (!(hdr
= grab_object( handle
)))
1066 set_last_error( ERROR_INVALID_HANDLE
);
1070 ret
= query_option( hdr
, option
, buffer
, buflen
);
1072 release_object( hdr
);
1076 static BOOL
set_option( object_header_t
*hdr
, DWORD option
, LPVOID buffer
, DWORD buflen
)
1082 set_last_error( ERROR_INVALID_PARAMETER
);
1088 case WINHTTP_OPTION_CONTEXT_VALUE
:
1090 if (buflen
!= sizeof(DWORD_PTR
))
1092 set_last_error( ERROR_INSUFFICIENT_BUFFER
);
1096 hdr
->context
= *(DWORD_PTR
*)buffer
;
1100 if (hdr
->vtbl
->set_option
) ret
= hdr
->vtbl
->set_option( hdr
, option
, buffer
, buflen
);
1103 FIXME("unimplemented option %u\n", option
);
1104 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE
);
1112 /***********************************************************************
1113 * WinHttpSetOption (winhttp.@)
1115 BOOL WINAPI
WinHttpSetOption( HINTERNET handle
, DWORD option
, LPVOID buffer
, DWORD buflen
)
1118 object_header_t
*hdr
;
1120 TRACE("%p, %u, %p, %u\n", handle
, option
, buffer
, buflen
);
1122 if (!(hdr
= grab_object( handle
)))
1124 set_last_error( ERROR_INVALID_HANDLE
);
1128 ret
= set_option( hdr
, option
, buffer
, buflen
);
1130 release_object( hdr
);
1134 static char *get_computer_name( COMPUTER_NAME_FORMAT format
)
1139 GetComputerNameExA( format
, NULL
, &size
);
1140 if (GetLastError() != ERROR_MORE_DATA
) return NULL
;
1141 if (!(ret
= heap_alloc( size
))) return NULL
;
1142 if (!GetComputerNameExA( format
, ret
, &size
))
1150 static BOOL
is_domain_suffix( const char *domain
, const char *suffix
)
1152 int len_domain
= strlen( domain
), len_suffix
= strlen( suffix
);
1154 if (len_suffix
> len_domain
) return FALSE
;
1155 if (!strcasecmp( domain
+ len_domain
- len_suffix
, suffix
)) return TRUE
;
1159 static void printf_addr( const WCHAR
*fmt
, WCHAR
*buf
, struct sockaddr_in
*addr
)
1162 (unsigned int)(ntohl( addr
->sin_addr
.s_addr
) >> 24 & 0xff),
1163 (unsigned int)(ntohl( addr
->sin_addr
.s_addr
) >> 16 & 0xff),
1164 (unsigned int)(ntohl( addr
->sin_addr
.s_addr
) >> 8 & 0xff),
1165 (unsigned int)(ntohl( addr
->sin_addr
.s_addr
) & 0xff) );
1168 static WCHAR
*build_wpad_url( const struct addrinfo
*ai
)
1170 static const WCHAR fmtW
[] =
1171 {'h','t','t','p',':','/','/','%','u','.','%','u','.','%','u','.','%','u',
1172 '/','w','p','a','d','.','d','a','t',0};
1175 while (ai
&& ai
->ai_family
!= AF_INET
) ai
= ai
->ai_next
;
1176 if (!ai
) return NULL
;
1178 if (!(ret
= GlobalAlloc( 0, sizeof(fmtW
) + 12 * sizeof(WCHAR
) ))) return NULL
;
1179 printf_addr( fmtW
, ret
, (struct sockaddr_in
*)ai
->ai_addr
);
1183 /***********************************************************************
1184 * WinHttpDetectAutoProxyConfigUrl (winhttp.@)
1186 BOOL WINAPI
WinHttpDetectAutoProxyConfigUrl( DWORD flags
, LPWSTR
*url
)
1190 TRACE("0x%08x, %p\n", flags
, url
);
1194 set_last_error( ERROR_INVALID_PARAMETER
);
1197 if (flags
& WINHTTP_AUTO_DETECT_TYPE_DHCP
) FIXME("discovery via DHCP not supported\n");
1198 if (flags
& WINHTTP_AUTO_DETECT_TYPE_DNS_A
)
1200 #ifdef HAVE_GETADDRINFO
1201 char *fqdn
, *domain
, *p
;
1203 if (!(fqdn
= get_computer_name( ComputerNamePhysicalDnsFullyQualified
))) return FALSE
;
1204 if (!(domain
= get_computer_name( ComputerNamePhysicalDnsDomain
)))
1210 while ((p
= strchr( p
, '.' )) && is_domain_suffix( p
+ 1, domain
))
1212 struct addrinfo
*ai
;
1216 if (!(name
= heap_alloc( sizeof("wpad") + strlen(p
) )))
1219 heap_free( domain
);
1222 strcpy( name
, "wpad" );
1224 res
= getaddrinfo( name
, NULL
, NULL
, &ai
);
1228 *url
= build_wpad_url( ai
);
1232 TRACE("returning %s\n", debugstr_w(*url
));
1239 heap_free( domain
);
1242 FIXME("getaddrinfo not found at build time\n");
1245 if (!ret
) set_last_error( ERROR_WINHTTP_AUTODETECTION_FAILED
);
1249 static const WCHAR Connections
[] = {
1250 'S','o','f','t','w','a','r','e','\\',
1251 'M','i','c','r','o','s','o','f','t','\\',
1252 'W','i','n','d','o','w','s','\\',
1253 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
1254 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
1255 'C','o','n','n','e','c','t','i','o','n','s',0 };
1256 static const WCHAR WinHttpSettings
[] = {
1257 'W','i','n','H','t','t','p','S','e','t','t','i','n','g','s',0 };
1258 static const DWORD WINHTTP_SETTINGS_MAGIC
= 0x18;
1259 static const DWORD WININET_SETTINGS_MAGIC
= 0x46;
1260 static const DWORD PROXY_TYPE_DIRECT
= 1;
1261 static const DWORD PROXY_TYPE_PROXY
= 2;
1262 static const DWORD PROXY_USE_PAC_SCRIPT
= 4;
1263 static const DWORD PROXY_AUTODETECT_SETTINGS
= 8;
1265 struct connection_settings_header
1268 DWORD unknown
; /* always zero? */
1269 DWORD flags
; /* one or more of PROXY_* */
1272 static inline void copy_char_to_wchar_sz(const BYTE
*src
, DWORD len
, WCHAR
*dst
)
1276 for (begin
= src
; src
- begin
< len
; src
++, dst
++)
1281 /***********************************************************************
1282 * WinHttpGetDefaultProxyConfiguration (winhttp.@)
1284 BOOL WINAPI
WinHttpGetDefaultProxyConfiguration( WINHTTP_PROXY_INFO
*info
)
1288 BOOL got_from_reg
= FALSE
, direct
= TRUE
;
1291 TRACE("%p\n", info
);
1293 l
= RegOpenKeyExW( HKEY_LOCAL_MACHINE
, Connections
, 0, KEY_READ
, &key
);
1296 DWORD type
, size
= 0;
1298 l
= RegQueryValueExW( key
, WinHttpSettings
, NULL
, &type
, NULL
, &size
);
1299 if (!l
&& type
== REG_BINARY
&&
1300 size
>= sizeof(struct connection_settings_header
) + 2 * sizeof(DWORD
))
1302 BYTE
*buf
= heap_alloc( size
);
1306 struct connection_settings_header
*hdr
=
1307 (struct connection_settings_header
*)buf
;
1308 DWORD
*len
= (DWORD
*)(hdr
+ 1);
1310 l
= RegQueryValueExW( key
, WinHttpSettings
, NULL
, NULL
, buf
,
1312 if (!l
&& hdr
->magic
== WINHTTP_SETTINGS_MAGIC
&&
1315 if (hdr
->flags
& PROXY_TYPE_PROXY
)
1318 LPWSTR proxy
= NULL
;
1319 LPWSTR proxy_bypass
= NULL
;
1321 /* Sanity-check length of proxy string */
1322 if ((BYTE
*)len
- buf
+ *len
<= size
)
1325 proxy
= GlobalAlloc( 0, (*len
+ 1) * sizeof(WCHAR
) );
1327 copy_char_to_wchar_sz( (BYTE
*)(len
+ 1), *len
, proxy
);
1328 len
= (DWORD
*)((BYTE
*)(len
+ 1) + *len
);
1332 /* Sanity-check length of proxy bypass string */
1333 if ((BYTE
*)len
- buf
+ *len
<= size
)
1335 proxy_bypass
= GlobalAlloc( 0, (*len
+ 1) * sizeof(WCHAR
) );
1337 copy_char_to_wchar_sz( (BYTE
*)(len
+ 1), *len
, proxy_bypass
);
1342 GlobalFree( proxy
);
1346 info
->lpszProxy
= proxy
;
1347 info
->lpszProxyBypass
= proxy_bypass
;
1350 got_from_reg
= TRUE
;
1352 info
->dwAccessType
=
1353 WINHTTP_ACCESS_TYPE_NAMED_PROXY
;
1354 TRACE("http proxy (from registry) = %s, bypass = %s\n",
1355 debugstr_w(info
->lpszProxy
),
1356 debugstr_w(info
->lpszProxyBypass
));
1365 if (!got_from_reg
&& (envproxy
= getenv( "http_proxy" )))
1367 char *colon
, *http_proxy
;
1369 if ((colon
= strchr( envproxy
, ':' )))
1371 if (*(colon
+ 1) == '/' && *(colon
+ 2) == '/')
1373 static const char http
[] = "http://";
1375 /* It's a scheme, check that it's http */
1376 if (!strncmp( envproxy
, http
, strlen( http
) ))
1377 http_proxy
= envproxy
+ strlen( http
);
1380 WARN("unsupported scheme in $http_proxy: %s\n", envproxy
);
1385 http_proxy
= envproxy
;
1388 http_proxy
= envproxy
;
1394 len
= MultiByteToWideChar( CP_UNIXCP
, 0, http_proxy
, -1, NULL
, 0 );
1395 if ((http_proxyW
= GlobalAlloc( 0, len
* sizeof(WCHAR
))))
1397 MultiByteToWideChar( CP_UNIXCP
, 0, http_proxy
, -1, http_proxyW
, len
);
1399 info
->dwAccessType
= WINHTTP_ACCESS_TYPE_NAMED_PROXY
;
1400 info
->lpszProxy
= http_proxyW
;
1401 info
->lpszProxyBypass
= NULL
;
1402 TRACE("http proxy (from environment) = %s\n",
1403 debugstr_w(info
->lpszProxy
));
1409 info
->dwAccessType
= WINHTTP_ACCESS_TYPE_NO_PROXY
;
1410 info
->lpszProxy
= NULL
;
1411 info
->lpszProxyBypass
= NULL
;
1416 /***********************************************************************
1417 * WinHttpGetIEProxyConfigForCurrentUser (winhttp.@)
1419 BOOL WINAPI
WinHttpGetIEProxyConfigForCurrentUser( WINHTTP_CURRENT_USER_IE_PROXY_CONFIG
*config
)
1421 static const WCHAR settingsW
[] =
1422 {'D','e','f','a','u','l','t','C','o','n','n','e','c','t','i','o','n','S','e','t','t','i','n','g','s',0};
1424 struct connection_settings_header
*hdr
= NULL
;
1425 DWORD type
, offset
, len
, size
= 0;
1428 TRACE("%p\n", config
);
1432 set_last_error( ERROR_INVALID_PARAMETER
);
1435 memset( config
, 0, sizeof(*config
) );
1436 config
->fAutoDetect
= TRUE
;
1438 if (RegOpenKeyExW( HKEY_CURRENT_USER
, Connections
, 0, KEY_READ
, &hkey
) ||
1439 RegQueryValueExW( hkey
, settingsW
, NULL
, &type
, NULL
, &size
) ||
1440 type
!= REG_BINARY
|| size
< sizeof(struct connection_settings_header
))
1445 if (!(hdr
= heap_alloc( size
))) goto done
;
1446 if (RegQueryValueExW( hkey
, settingsW
, NULL
, &type
, (BYTE
*)hdr
, &size
) ||
1447 hdr
->magic
!= WININET_SETTINGS_MAGIC
)
1453 config
->fAutoDetect
= (hdr
->flags
& PROXY_AUTODETECT_SETTINGS
) != 0;
1454 offset
= sizeof(*hdr
);
1455 if (offset
+ sizeof(DWORD
) > size
) goto done
;
1456 len
= *(DWORD
*)((char *)hdr
+ offset
);
1457 offset
+= sizeof(DWORD
);
1458 if (len
&& hdr
->flags
& PROXY_TYPE_PROXY
)
1460 if (!(config
->lpszProxy
= GlobalAlloc( 0, (len
+ 1) * sizeof(WCHAR
) ))) goto done
;
1461 copy_char_to_wchar_sz( (const BYTE
*)hdr
+ offset
, len
, config
->lpszProxy
);
1464 if (offset
+ sizeof(DWORD
) > size
) goto done
;
1465 len
= *(DWORD
*)((char *)hdr
+ offset
);
1466 offset
+= sizeof(DWORD
);
1467 if (len
&& (hdr
->flags
& PROXY_TYPE_PROXY
))
1469 if (!(config
->lpszProxyBypass
= GlobalAlloc( 0, (len
+ 1) * sizeof(WCHAR
) ))) goto done
;
1470 copy_char_to_wchar_sz( (const BYTE
*)hdr
+ offset
, len
, config
->lpszProxyBypass
);
1473 if (offset
+ sizeof(DWORD
) > size
) goto done
;
1474 len
= *(DWORD
*)((char *)hdr
+ offset
);
1475 offset
+= sizeof(DWORD
);
1476 if (len
&& (hdr
->flags
& PROXY_USE_PAC_SCRIPT
))
1478 if (!(config
->lpszAutoConfigUrl
= GlobalAlloc( 0, (len
+ 1) * sizeof(WCHAR
) ))) goto done
;
1479 copy_char_to_wchar_sz( (const BYTE
*)hdr
+ offset
, len
, config
->lpszAutoConfigUrl
);
1484 RegCloseKey( hkey
);
1488 heap_free( config
->lpszAutoConfigUrl
);
1489 config
->lpszAutoConfigUrl
= NULL
;
1490 heap_free( config
->lpszProxy
);
1491 config
->lpszProxy
= NULL
;
1492 heap_free( config
->lpszProxyBypass
);
1493 config
->lpszProxyBypass
= NULL
;
1498 static HRESULT WINAPI
dispex_QueryInterface(
1499 IDispatchEx
*iface
, REFIID riid
, void **ppv
)
1503 if (IsEqualGUID( riid
, &IID_IUnknown
) ||
1504 IsEqualGUID( riid
, &IID_IDispatch
) ||
1505 IsEqualGUID( riid
, &IID_IDispatchEx
))
1508 return E_NOINTERFACE
;
1513 static ULONG WINAPI
dispex_AddRef(
1514 IDispatchEx
*iface
)
1519 static ULONG WINAPI
dispex_Release(
1520 IDispatchEx
*iface
)
1525 static HRESULT WINAPI
dispex_GetTypeInfoCount(
1526 IDispatchEx
*iface
, UINT
*info
)
1531 static HRESULT WINAPI
dispex_GetTypeInfo(
1532 IDispatchEx
*iface
, UINT info
, LCID lcid
, ITypeInfo
**type_info
)
1537 static HRESULT WINAPI
dispex_GetIDsOfNames(
1538 IDispatchEx
*iface
, REFIID riid
, LPOLESTR
*names
, UINT count
, LCID lcid
, DISPID
*id
)
1543 static HRESULT WINAPI
dispex_Invoke(
1544 IDispatchEx
*iface
, DISPID member
, REFIID riid
, LCID lcid
, WORD flags
,
1545 DISPPARAMS
*params
, VARIANT
*result
, EXCEPINFO
*excep
, UINT
*err
)
1550 static HRESULT WINAPI
dispex_DeleteMemberByName(
1551 IDispatchEx
*iface
, BSTR name
, DWORD flags
)
1556 static HRESULT WINAPI
dispex_DeleteMemberByDispID(
1557 IDispatchEx
*iface
, DISPID id
)
1562 static HRESULT WINAPI
dispex_GetMemberProperties(
1563 IDispatchEx
*iface
, DISPID id
, DWORD flags_fetch
, DWORD
*flags
)
1568 static HRESULT WINAPI
dispex_GetMemberName(
1569 IDispatchEx
*iface
, DISPID id
, BSTR
*name
)
1574 static HRESULT WINAPI
dispex_GetNextDispID(
1575 IDispatchEx
*iface
, DWORD flags
, DISPID id
, DISPID
*next
)
1580 static HRESULT WINAPI
dispex_GetNameSpaceParent(
1581 IDispatchEx
*iface
, IUnknown
**unk
)
1586 #define DISPID_GLOBAL_DNSRESOLVE 0x1000
1588 static HRESULT WINAPI
dispex_GetDispID(
1589 IDispatchEx
*iface
, BSTR name
, DWORD flags
, DISPID
*id
)
1591 if (!strcmpW( name
, dns_resolveW
))
1593 *id
= DISPID_GLOBAL_DNSRESOLVE
;
1596 return DISP_E_UNKNOWNNAME
;
1599 static HRESULT
dns_resolve( const WCHAR
*hostname
, VARIANT
*result
)
1601 #ifdef HAVE_GETADDRINFO
1602 static const WCHAR fmtW
[] = {'%','u','.','%','u','.','%','u','.','%','u',0};
1604 struct addrinfo
*ai
, *elem
;
1609 hostnameA
= strdupWA( hostname
);
1611 hostnameA
= get_computer_name( ComputerNamePhysicalDnsFullyQualified
);
1613 if (!hostnameA
) return E_OUTOFMEMORY
;
1614 res
= getaddrinfo( hostnameA
, NULL
, NULL
, &ai
);
1615 heap_free( hostnameA
);
1616 if (res
) return S_FALSE
;
1619 while (elem
&& elem
->ai_family
!= AF_INET
) elem
= elem
->ai_next
;
1625 printf_addr( fmtW
, addr
, (struct sockaddr_in
*)elem
->ai_addr
);
1627 V_VT( result
) = VT_BSTR
;
1628 V_BSTR( result
) = SysAllocString( addr
);
1631 FIXME("getaddrinfo not found at build time\n");
1636 static HRESULT WINAPI
dispex_InvokeEx(
1637 IDispatchEx
*iface
, DISPID id
, LCID lcid
, WORD flags
, DISPPARAMS
*params
,
1638 VARIANT
*result
, EXCEPINFO
*exep
, IServiceProvider
*caller
)
1640 if (id
== DISPID_GLOBAL_DNSRESOLVE
)
1642 if (params
->cArgs
!= 1) return DISP_E_BADPARAMCOUNT
;
1643 if (V_VT(¶ms
->rgvarg
[0]) != VT_BSTR
) return DISP_E_BADVARTYPE
;
1644 return dns_resolve( V_BSTR(¶ms
->rgvarg
[0]), result
);
1646 return DISP_E_MEMBERNOTFOUND
;
1649 static const IDispatchExVtbl dispex_vtbl
=
1651 dispex_QueryInterface
,
1654 dispex_GetTypeInfoCount
,
1656 dispex_GetIDsOfNames
,
1660 dispex_DeleteMemberByName
,
1661 dispex_DeleteMemberByDispID
,
1662 dispex_GetMemberProperties
,
1663 dispex_GetMemberName
,
1664 dispex_GetNextDispID
,
1665 dispex_GetNameSpaceParent
1668 static IDispatchEx global_dispex
= { &dispex_vtbl
};
1670 static HRESULT WINAPI
site_QueryInterface(
1671 IActiveScriptSite
*iface
, REFIID riid
, void **ppv
)
1675 if (IsEqualGUID( &IID_IUnknown
, riid
))
1677 else if (IsEqualGUID( &IID_IActiveScriptSite
, riid
))
1680 return E_NOINTERFACE
;
1682 IUnknown_AddRef( (IUnknown
*)*ppv
);
1686 static ULONG WINAPI
site_AddRef(
1687 IActiveScriptSite
*iface
)
1692 static ULONG WINAPI
site_Release(
1693 IActiveScriptSite
*iface
)
1698 static HRESULT WINAPI
site_GetLCID(
1699 IActiveScriptSite
*iface
, LCID
*lcid
)
1704 static HRESULT WINAPI
site_GetItemInfo(
1705 IActiveScriptSite
*iface
, LPCOLESTR name
, DWORD mask
,
1706 IUnknown
**item
, ITypeInfo
**type_info
)
1708 if (!strcmpW( name
, global_funcsW
) && mask
== SCRIPTINFO_IUNKNOWN
)
1710 *item
= (IUnknown
*)&global_dispex
;
1716 static HRESULT WINAPI
site_GetDocVersionString(
1717 IActiveScriptSite
*iface
, BSTR
*version
)
1722 static HRESULT WINAPI
site_OnScriptTerminate(
1723 IActiveScriptSite
*iface
, const VARIANT
*result
, const EXCEPINFO
*info
)
1728 static HRESULT WINAPI
site_OnStateChange(
1729 IActiveScriptSite
*iface
, SCRIPTSTATE state
)
1734 static HRESULT WINAPI
site_OnScriptError(
1735 IActiveScriptSite
*iface
, IActiveScriptError
*error
)
1740 static HRESULT WINAPI
site_OnEnterScript(
1741 IActiveScriptSite
*iface
)
1746 static HRESULT WINAPI
site_OnLeaveScript(
1747 IActiveScriptSite
*iface
)
1752 static const IActiveScriptSiteVtbl site_vtbl
=
1754 site_QueryInterface
,
1759 site_GetDocVersionString
,
1760 site_OnScriptTerminate
,
1767 static IActiveScriptSite script_site
= { &site_vtbl
};
1769 static BOOL
parse_script_result( VARIANT result
, WINHTTP_PROXY_INFO
*info
)
1771 static const WCHAR proxyW
[] = {'P','R','O','X','Y'};
1776 info
->dwAccessType
= WINHTTP_ACCESS_TYPE_NO_PROXY
;
1777 info
->lpszProxy
= NULL
;
1778 info
->lpszProxyBypass
= NULL
;
1780 if (V_VT( &result
) != VT_BSTR
) return TRUE
;
1781 TRACE("%s\n", debugstr_w( V_BSTR( &result
) ));
1783 p
= V_BSTR( &result
);
1784 while (*p
== ' ') p
++;
1786 if (len
>= 5 && !memicmpW( p
, proxyW
, sizeof(proxyW
)/sizeof(WCHAR
) ))
1789 while (*p
== ' ') p
++;
1790 if (!*p
|| *p
== ';') return TRUE
;
1791 if (!(info
->lpszProxy
= q
= strdupW( p
))) return FALSE
;
1792 info
->dwAccessType
= WINHTTP_ACCESS_TYPE_NAMED_PROXY
;
1795 if (*q
== ' ' || *q
== ';')
1805 static BSTR
include_pac_utils( BSTR script
)
1807 static const WCHAR pacjsW
[] = {'p','a','c','.','j','s',0};
1808 HMODULE hmod
= GetModuleHandleA( "winhttp.dll" );
1815 if (!(rsrc
= FindResourceW( hmod
, pacjsW
, (LPCWSTR
)40 ))) return NULL
;
1816 size
= SizeofResource( hmod
, rsrc
);
1817 data
= LoadResource( hmod
, rsrc
);
1819 len
= MultiByteToWideChar( CP_ACP
, 0, data
, size
, NULL
, 0 );
1820 if (!(ret
= SysAllocStringLen( NULL
, len
+ SysStringLen( script
) + 1 ))) return NULL
;
1821 MultiByteToWideChar( CP_ACP
, 0, data
, size
, ret
, len
);
1823 strcatW( ret
, script
);
1827 static BOOL
run_script( const BSTR script
, const WCHAR
*url
, WINHTTP_PROXY_INFO
*info
)
1829 static const WCHAR jscriptW
[] = {'J','S','c','r','i','p','t',0};
1830 static const WCHAR findproxyW
[] = {'F','i','n','d','P','r','o','x','y','F','o','r','U','R','L',0};
1831 IActiveScriptParse
*parser
= NULL
;
1832 IActiveScript
*engine
= NULL
;
1833 IDispatch
*dispatch
= NULL
;
1837 BSTR func
= NULL
, hostname
= NULL
, full_script
= NULL
;
1839 VARIANT args
[2], result
;
1843 memset( &uc
, 0, sizeof(uc
) );
1844 uc
.dwStructSize
= sizeof(uc
);
1845 if (!WinHttpCrackUrl( url
, 0, 0, &uc
)) return FALSE
;
1846 if (!(hostname
= SysAllocStringLen( NULL
, uc
.dwHostNameLength
+ 1 ))) return FALSE
;
1847 memcpy( hostname
, uc
.lpszHostName
, uc
.dwHostNameLength
* sizeof(WCHAR
) );
1848 hostname
[uc
.dwHostNameLength
] = 0;
1850 init
= CoInitialize( NULL
);
1851 hr
= CLSIDFromProgID( jscriptW
, &clsid
);
1852 if (hr
!= S_OK
) goto done
;
1854 hr
= CoCreateInstance( &clsid
, NULL
, CLSCTX_INPROC_SERVER
|CLSCTX_INPROC_HANDLER
,
1855 &IID_IActiveScript
, (void **)&engine
);
1856 if (hr
!= S_OK
) goto done
;
1858 hr
= IActiveScript_QueryInterface( engine
, &IID_IActiveScriptParse
, (void **)&parser
);
1859 if (hr
!= S_OK
) goto done
;
1861 hr
= IActiveScriptParse64_InitNew( parser
);
1862 if (hr
!= S_OK
) goto done
;
1864 hr
= IActiveScript_SetScriptSite( engine
, &script_site
);
1865 if (hr
!= S_OK
) goto done
;
1867 hr
= IActiveScript_AddNamedItem( engine
, global_funcsW
, SCRIPTITEM_GLOBALMEMBERS
);
1868 if (hr
!= S_OK
) goto done
;
1870 if (!(full_script
= include_pac_utils( script
))) goto done
;
1872 hr
= IActiveScriptParse64_ParseScriptText( parser
, full_script
, NULL
, NULL
, NULL
, 0, 0, 0, NULL
, NULL
);
1873 if (hr
!= S_OK
) goto done
;
1875 hr
= IActiveScript_SetScriptState( engine
, SCRIPTSTATE_STARTED
);
1876 if (hr
!= S_OK
) goto done
;
1878 hr
= IActiveScript_GetScriptDispatch( engine
, NULL
, &dispatch
);
1879 if (hr
!= S_OK
) goto done
;
1881 if (!(func
= SysAllocString( findproxyW
))) goto done
;
1882 hr
= IDispatch_GetIDsOfNames( dispatch
, &IID_NULL
, &func
, 1, LOCALE_SYSTEM_DEFAULT
, &dispid
);
1883 if (hr
!= S_OK
) goto done
;
1885 V_VT( &args
[0] ) = VT_BSTR
;
1886 V_BSTR( &args
[0] ) = hostname
;
1887 V_VT( &args
[1] ) = VT_BSTR
;
1888 V_BSTR( &args
[1] ) = SysAllocString( url
);
1890 params
.rgvarg
= args
;
1891 params
.rgdispidNamedArgs
= NULL
;
1893 params
.cNamedArgs
= 0;
1894 hr
= IDispatch_Invoke( dispatch
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
, DISPATCH_METHOD
,
1895 ¶ms
, &result
, NULL
, NULL
);
1896 VariantClear( &args
[1] );
1899 WARN("script failed 0x%08x\n", hr
);
1902 ret
= parse_script_result( result
, info
);
1905 SysFreeString( full_script
);
1906 SysFreeString( hostname
);
1907 SysFreeString( func
);
1908 if (dispatch
) IDispatch_Release( dispatch
);
1909 if (parser
) IUnknown_Release( parser
);
1910 if (engine
) IActiveScript_Release( engine
);
1911 if (SUCCEEDED( init
)) CoUninitialize();
1912 if (!ret
) set_last_error( ERROR_WINHTTP_BAD_AUTO_PROXY_SCRIPT
);
1916 static BSTR
download_script( const WCHAR
*url
)
1918 static const WCHAR typeW
[] = {'*','/','*',0};
1919 static const WCHAR
*acceptW
[] = {typeW
, NULL
};
1920 HINTERNET ses
, con
= NULL
, req
= NULL
;
1923 DWORD size
= 4096, offset
, to_read
, bytes_read
, flags
= 0;
1924 char *tmp
, *buffer
= NULL
;
1928 memset( &uc
, 0, sizeof(uc
) );
1929 uc
.dwStructSize
= sizeof(uc
);
1930 if (!WinHttpCrackUrl( url
, 0, 0, &uc
)) return NULL
;
1931 if (!(hostname
= heap_alloc( (uc
.dwHostNameLength
+ 1) * sizeof(WCHAR
) ))) return NULL
;
1932 memcpy( hostname
, uc
.lpszHostName
, uc
.dwHostNameLength
* sizeof(WCHAR
) );
1933 hostname
[uc
.dwHostNameLength
] = 0;
1935 if (!(ses
= WinHttpOpen( NULL
, WINHTTP_ACCESS_TYPE_NO_PROXY
, NULL
, NULL
, 0 ))) goto done
;
1936 if (!(con
= WinHttpConnect( ses
, hostname
, uc
.nPort
, 0 ))) goto done
;
1937 if (uc
.nScheme
== INTERNET_SCHEME_HTTPS
) flags
|= WINHTTP_FLAG_SECURE
;
1938 if (!(req
= WinHttpOpenRequest( con
, NULL
, uc
.lpszUrlPath
, NULL
, NULL
, acceptW
, flags
))) goto done
;
1939 if (!WinHttpSendRequest( req
, NULL
, 0, NULL
, 0, 0, 0 )) goto done
;
1940 if (!(WinHttpReceiveResponse( req
, 0 ))) goto done
;
1942 if (!(buffer
= heap_alloc( size
))) goto done
;
1947 if (!WinHttpReadData( req
, buffer
+ offset
, to_read
, &bytes_read
)) goto done
;
1948 if (!bytes_read
) break;
1949 to_read
-= bytes_read
;
1950 offset
+= bytes_read
;
1955 if (!(tmp
= heap_realloc( buffer
, size
))) goto done
;
1959 len
= MultiByteToWideChar( CP_ACP
, 0, buffer
, offset
, NULL
, 0 );
1960 if (!(script
= SysAllocStringLen( NULL
, len
))) goto done
;
1961 MultiByteToWideChar( CP_ACP
, 0, buffer
, offset
, script
, len
);
1965 WinHttpCloseHandle( req
);
1966 WinHttpCloseHandle( con
);
1967 WinHttpCloseHandle( ses
);
1968 heap_free( buffer
);
1969 heap_free( hostname
);
1970 if (!script
) set_last_error( ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT
);
1974 /***********************************************************************
1975 * WinHttpGetProxyForUrl (winhttp.@)
1977 BOOL WINAPI
WinHttpGetProxyForUrl( HINTERNET hsession
, LPCWSTR url
, WINHTTP_AUTOPROXY_OPTIONS
*options
,
1978 WINHTTP_PROXY_INFO
*info
)
1980 WCHAR
*detected_pac_url
= NULL
;
1981 const WCHAR
*pac_url
;
1986 TRACE("%p, %s, %p, %p\n", hsession
, debugstr_w(url
), options
, info
);
1988 if (!(session
= (session_t
*)grab_object( hsession
)))
1990 set_last_error( ERROR_INVALID_HANDLE
);
1993 if (session
->hdr
.type
!= WINHTTP_HANDLE_TYPE_SESSION
)
1995 release_object( &session
->hdr
);
1996 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE
);
1999 if (!url
|| !options
|| !info
||
2000 !(options
->dwFlags
& (WINHTTP_AUTOPROXY_AUTO_DETECT
|WINHTTP_AUTOPROXY_CONFIG_URL
)) ||
2001 ((options
->dwFlags
& WINHTTP_AUTOPROXY_AUTO_DETECT
) && !options
->dwAutoDetectFlags
) ||
2002 ((options
->dwFlags
& WINHTTP_AUTOPROXY_AUTO_DETECT
) &&
2003 (options
->dwFlags
& WINHTTP_AUTOPROXY_CONFIG_URL
)))
2005 release_object( &session
->hdr
);
2006 set_last_error( ERROR_INVALID_PARAMETER
);
2009 if (options
->dwFlags
& WINHTTP_AUTOPROXY_AUTO_DETECT
&&
2010 !WinHttpDetectAutoProxyConfigUrl( options
->dwAutoDetectFlags
, &detected_pac_url
))
2012 set_last_error( ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR
);
2015 if (options
->dwFlags
& WINHTTP_AUTOPROXY_CONFIG_URL
) pac_url
= options
->lpszAutoConfigUrl
;
2016 else pac_url
= detected_pac_url
;
2018 if (!(script
= download_script( pac_url
))) goto done
;
2019 ret
= run_script( script
, url
, info
);
2020 SysFreeString( script
);
2023 GlobalFree( detected_pac_url
);
2024 release_object( &session
->hdr
);
2028 /***********************************************************************
2029 * WinHttpSetDefaultProxyConfiguration (winhttp.@)
2031 BOOL WINAPI
WinHttpSetDefaultProxyConfiguration( WINHTTP_PROXY_INFO
*info
)
2038 TRACE("%p\n", info
);
2042 set_last_error( ERROR_INVALID_PARAMETER
);
2045 switch (info
->dwAccessType
)
2047 case WINHTTP_ACCESS_TYPE_NO_PROXY
:
2049 case WINHTTP_ACCESS_TYPE_NAMED_PROXY
:
2050 if (!info
->lpszProxy
)
2052 set_last_error( ERROR_INVALID_PARAMETER
);
2055 /* Only ASCII characters are allowed */
2056 for (src
= info
->lpszProxy
; *src
; src
++)
2059 set_last_error( ERROR_INVALID_PARAMETER
);
2062 if (info
->lpszProxyBypass
)
2064 for (src
= info
->lpszProxyBypass
; *src
; src
++)
2067 set_last_error( ERROR_INVALID_PARAMETER
);
2073 set_last_error( ERROR_INVALID_PARAMETER
);
2077 l
= RegCreateKeyExW( HKEY_LOCAL_MACHINE
, Connections
, 0, NULL
, 0,
2078 KEY_WRITE
, NULL
, &key
, NULL
);
2081 DWORD size
= sizeof(struct connection_settings_header
) + 2 * sizeof(DWORD
);
2084 if (info
->dwAccessType
== WINHTTP_ACCESS_TYPE_NAMED_PROXY
)
2086 size
+= strlenW( info
->lpszProxy
);
2087 if (info
->lpszProxyBypass
)
2088 size
+= strlenW( info
->lpszProxyBypass
);
2090 buf
= heap_alloc( size
);
2093 struct connection_settings_header
*hdr
=
2094 (struct connection_settings_header
*)buf
;
2095 DWORD
*len
= (DWORD
*)(hdr
+ 1);
2097 hdr
->magic
= WINHTTP_SETTINGS_MAGIC
;
2099 if (info
->dwAccessType
== WINHTTP_ACCESS_TYPE_NAMED_PROXY
)
2103 hdr
->flags
= PROXY_TYPE_PROXY
;
2104 *len
++ = strlenW( info
->lpszProxy
);
2105 for (dst
= (BYTE
*)len
, src
= info
->lpszProxy
; *src
;
2109 if (info
->lpszProxyBypass
)
2111 *len
++ = strlenW( info
->lpszProxyBypass
);
2112 for (dst
= (BYTE
*)len
, src
= info
->lpszProxyBypass
; *src
;
2121 hdr
->flags
= PROXY_TYPE_DIRECT
;
2125 l
= RegSetValueExW( key
, WinHttpSettings
, 0, REG_BINARY
, buf
, size
);
2135 /***********************************************************************
2136 * WinHttpSetStatusCallback (winhttp.@)
2138 WINHTTP_STATUS_CALLBACK WINAPI
WinHttpSetStatusCallback( HINTERNET handle
, WINHTTP_STATUS_CALLBACK callback
,
2139 DWORD flags
, DWORD_PTR reserved
)
2141 object_header_t
*hdr
;
2142 WINHTTP_STATUS_CALLBACK ret
;
2144 TRACE("%p, %p, 0x%08x, 0x%lx\n", handle
, callback
, flags
, reserved
);
2146 if (!(hdr
= grab_object( handle
)))
2148 set_last_error( ERROR_INVALID_HANDLE
);
2149 return WINHTTP_INVALID_STATUS_CALLBACK
;
2151 ret
= hdr
->callback
;
2152 hdr
->callback
= callback
;
2153 hdr
->notify_mask
= flags
;
2155 release_object( hdr
);
2159 /***********************************************************************
2160 * WinHttpSetTimeouts (winhttp.@)
2162 BOOL WINAPI
WinHttpSetTimeouts( HINTERNET handle
, int resolve
, int connect
, int send
, int receive
)
2165 object_header_t
*hdr
;
2169 TRACE("%p, %d, %d, %d, %d\n", handle
, resolve
, connect
, send
, receive
);
2171 if (resolve
< -1 || connect
< -1 || send
< -1 || receive
< -1)
2173 set_last_error( ERROR_INVALID_PARAMETER
);
2177 if (!(hdr
= grab_object( handle
)))
2179 set_last_error( ERROR_INVALID_HANDLE
);
2185 case WINHTTP_HANDLE_TYPE_REQUEST
:
2186 request
= (request_t
*)hdr
;
2187 request
->connect_timeout
= connect
;
2189 if (resolve
< 0) resolve
= 0;
2190 request
->resolve_timeout
= resolve
;
2192 if (send
< 0) send
= 0;
2193 request
->send_timeout
= send
;
2195 if (receive
< 0) receive
= 0;
2196 request
->recv_timeout
= receive
;
2198 if (netconn_connected( &request
->netconn
))
2200 if (netconn_set_timeout( &request
->netconn
, TRUE
, send
)) ret
= FALSE
;
2201 if (netconn_set_timeout( &request
->netconn
, FALSE
, receive
)) ret
= FALSE
;
2204 release_object( &request
->hdr
);
2207 case WINHTTP_HANDLE_TYPE_SESSION
:
2208 session
= (session_t
*)hdr
;
2209 session
->connect_timeout
= connect
;
2211 if (resolve
< 0) resolve
= 0;
2212 session
->resolve_timeout
= resolve
;
2214 if (send
< 0) send
= 0;
2215 session
->send_timeout
= send
;
2217 if (receive
< 0) receive
= 0;
2218 session
->recv_timeout
= receive
;
2222 release_object( hdr
);
2223 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE
);
2229 static const WCHAR wkday
[7][4] =
2230 {{'S','u','n', 0}, {'M','o','n', 0}, {'T','u','e', 0}, {'W','e','d', 0},
2231 {'T','h','u', 0}, {'F','r','i', 0}, {'S','a','t', 0}};
2232 static const WCHAR month
[12][4] =
2233 {{'J','a','n', 0}, {'F','e','b', 0}, {'M','a','r', 0}, {'A','p','r', 0},
2234 {'M','a','y', 0}, {'J','u','n', 0}, {'J','u','l', 0}, {'A','u','g', 0},
2235 {'S','e','p', 0}, {'O','c','t', 0}, {'N','o','v', 0}, {'D','e','c', 0}};
2237 /***********************************************************************
2238 * WinHttpTimeFromSystemTime (WININET.@)
2240 BOOL WINAPI
WinHttpTimeFromSystemTime( const SYSTEMTIME
*time
, LPWSTR string
)
2242 static const WCHAR format
[] =
2243 {'%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
2244 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0};
2246 TRACE("%p, %p\n", time
, string
);
2248 if (!time
|| !string
) return FALSE
;
2250 sprintfW( string
, format
,
2251 wkday
[time
->wDayOfWeek
],
2253 month
[time
->wMonth
- 1],
2262 /***********************************************************************
2263 * WinHttpTimeToSystemTime (WININET.@)
2265 BOOL WINAPI
WinHttpTimeToSystemTime( LPCWSTR string
, SYSTEMTIME
*time
)
2268 const WCHAR
*s
= string
;
2271 TRACE("%s, %p\n", debugstr_w(string
), time
);
2273 if (!string
|| !time
) return FALSE
;
2275 /* Windows does this too */
2276 GetSystemTime( time
);
2278 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
2279 * a SYSTEMTIME structure.
2282 while (*s
&& !isalphaW( *s
)) s
++;
2283 if (s
[0] == '\0' || s
[1] == '\0' || s
[2] == '\0') return TRUE
;
2284 time
->wDayOfWeek
= 7;
2286 for (i
= 0; i
< 7; i
++)
2288 if (toupperW( wkday
[i
][0] ) == toupperW( s
[0] ) &&
2289 toupperW( wkday
[i
][1] ) == toupperW( s
[1] ) &&
2290 toupperW( wkday
[i
][2] ) == toupperW( s
[2] ) )
2292 time
->wDayOfWeek
= i
;
2297 if (time
->wDayOfWeek
> 6) return TRUE
;
2298 while (*s
&& !isdigitW( *s
)) s
++;
2299 time
->wDay
= strtolW( s
, &end
, 10 );
2302 while (*s
&& !isalphaW( *s
)) s
++;
2303 if (s
[0] == '\0' || s
[1] == '\0' || s
[2] == '\0') return TRUE
;
2306 for (i
= 0; i
< 12; i
++)
2308 if (toupperW( month
[i
][0]) == toupperW( s
[0] ) &&
2309 toupperW( month
[i
][1]) == toupperW( s
[1] ) &&
2310 toupperW( month
[i
][2]) == toupperW( s
[2] ) )
2312 time
->wMonth
= i
+ 1;
2316 if (time
->wMonth
== 0) return TRUE
;
2318 while (*s
&& !isdigitW( *s
)) s
++;
2319 if (*s
== '\0') return TRUE
;
2320 time
->wYear
= strtolW( s
, &end
, 10 );
2323 while (*s
&& !isdigitW( *s
)) s
++;
2324 if (*s
== '\0') return TRUE
;
2325 time
->wHour
= strtolW( s
, &end
, 10 );
2328 while (*s
&& !isdigitW( *s
)) s
++;
2329 if (*s
== '\0') return TRUE
;
2330 time
->wMinute
= strtolW( s
, &end
, 10 );
2333 while (*s
&& !isdigitW( *s
)) s
++;
2334 if (*s
== '\0') return TRUE
;
2335 time
->wSecond
= strtolW( s
, &end
, 10 );
2337 time
->wMilliseconds
= 0;