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"
32 #include "winhttp_private.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(winhttp);
36 #define DEFAULT_RESOLVE_TIMEOUT 0
37 #define DEFAULT_CONNECT_TIMEOUT 20000
38 #define DEFAULT_SEND_TIMEOUT 30000
39 #define DEFAULT_RECEIVE_TIMEOUT 30000
41 void set_last_error( DWORD error )
44 SetLastError( error );
47 DWORD get_last_error( void )
50 return GetLastError();
53 void send_callback( object_header_t *hdr, DWORD status, LPVOID info, DWORD buflen )
55 TRACE("%p, 0x%08x, %p, %u\n", hdr, status, info, buflen);
57 if (hdr->callback && (hdr->notify_mask & status)) hdr->callback( hdr->handle, hdr->context, status, info, buflen );
60 /***********************************************************************
61 * WinHttpCheckPlatform (winhttp.@)
63 BOOL WINAPI WinHttpCheckPlatform( void )
69 /***********************************************************************
70 * session_destroy (internal)
72 static void session_destroy( object_header_t *hdr )
74 session_t *session = (session_t *)hdr;
75 struct list *item, *next;
78 TRACE("%p\n", session);
80 LIST_FOR_EACH_SAFE( item, next, &session->cookie_cache )
82 domain = LIST_ENTRY( item, domain_t, entry );
83 delete_domain( domain );
85 heap_free( session->agent );
86 heap_free( session->proxy_server );
87 heap_free( session->proxy_bypass );
88 heap_free( session->proxy_username );
89 heap_free( session->proxy_password );
93 static BOOL session_query_option( object_header_t *hdr, DWORD option, LPVOID buffer, LPDWORD buflen )
95 session_t *session = (session_t *)hdr;
99 case WINHTTP_OPTION_REDIRECT_POLICY:
101 if (!buffer || *buflen < sizeof(DWORD))
103 *buflen = sizeof(DWORD);
104 set_last_error( ERROR_INSUFFICIENT_BUFFER );
108 *(DWORD *)buffer = hdr->redirect_policy;
109 *buflen = sizeof(DWORD);
112 case WINHTTP_OPTION_RESOLVE_TIMEOUT:
113 *(DWORD *)buffer = session->resolve_timeout;
114 *buflen = sizeof(DWORD);
116 case WINHTTP_OPTION_CONNECT_TIMEOUT:
117 *(DWORD *)buffer = session->connect_timeout;
118 *buflen = sizeof(DWORD);
120 case WINHTTP_OPTION_SEND_TIMEOUT:
121 *(DWORD *)buffer = session->send_timeout;
122 *buflen = sizeof(DWORD);
124 case WINHTTP_OPTION_RECEIVE_TIMEOUT:
125 *(DWORD *)buffer = session->recv_timeout;
126 *buflen = sizeof(DWORD);
129 FIXME("unimplemented option %u\n", option);
130 set_last_error( ERROR_INVALID_PARAMETER );
135 static BOOL session_set_option( object_header_t *hdr, DWORD option, LPVOID buffer, DWORD buflen )
137 session_t *session = (session_t *)hdr;
141 case WINHTTP_OPTION_PROXY:
143 WINHTTP_PROXY_INFO *pi = buffer;
145 FIXME("%u %s %s\n", pi->dwAccessType, debugstr_w(pi->lpszProxy), debugstr_w(pi->lpszProxyBypass));
148 case WINHTTP_OPTION_REDIRECT_POLICY:
152 if (buflen != sizeof(policy))
154 set_last_error( ERROR_INSUFFICIENT_BUFFER );
158 policy = *(DWORD *)buffer;
159 TRACE("0x%x\n", policy);
160 hdr->redirect_policy = policy;
163 case WINHTTP_OPTION_DISABLE_FEATURE:
164 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE );
166 case WINHTTP_OPTION_RESOLVE_TIMEOUT:
167 session->resolve_timeout = *(DWORD *)buffer;
169 case WINHTTP_OPTION_CONNECT_TIMEOUT:
170 session->connect_timeout = *(DWORD *)buffer;
172 case WINHTTP_OPTION_SEND_TIMEOUT:
173 session->send_timeout = *(DWORD *)buffer;
175 case WINHTTP_OPTION_RECEIVE_TIMEOUT:
176 session->recv_timeout = *(DWORD *)buffer;
179 FIXME("unimplemented option %u\n", option);
180 set_last_error( ERROR_INVALID_PARAMETER );
185 static const object_vtbl_t session_vtbl =
188 session_query_option,
192 /***********************************************************************
193 * WinHttpOpen (winhttp.@)
195 HINTERNET WINAPI WinHttpOpen( LPCWSTR agent, DWORD access, LPCWSTR proxy, LPCWSTR bypass, DWORD flags )
198 HINTERNET handle = NULL;
200 TRACE("%s, %u, %s, %s, 0x%08x\n", debugstr_w(agent), access, debugstr_w(proxy), debugstr_w(bypass), flags);
202 if (!(session = heap_alloc_zero( sizeof(session_t) ))) return NULL;
204 session->hdr.type = WINHTTP_HANDLE_TYPE_SESSION;
205 session->hdr.vtbl = &session_vtbl;
206 session->hdr.flags = flags;
207 session->hdr.refs = 1;
208 session->hdr.redirect_policy = WINHTTP_OPTION_REDIRECT_POLICY_DISALLOW_HTTPS_TO_HTTP;
209 session->resolve_timeout = DEFAULT_RESOLVE_TIMEOUT;
210 session->connect_timeout = DEFAULT_CONNECT_TIMEOUT;
211 session->send_timeout = DEFAULT_SEND_TIMEOUT;
212 session->recv_timeout = DEFAULT_RECEIVE_TIMEOUT;
213 list_init( &session->cookie_cache );
215 if (agent && !(session->agent = strdupW( agent ))) goto end;
216 if (access == WINHTTP_ACCESS_TYPE_DEFAULT_PROXY)
218 WINHTTP_PROXY_INFO info;
220 WinHttpGetDefaultProxyConfiguration( &info );
221 session->access = info.dwAccessType;
222 if (info.lpszProxy && !(session->proxy_server = strdupW( info.lpszProxy )))
224 GlobalFree( (LPWSTR)info.lpszProxy );
225 GlobalFree( (LPWSTR)info.lpszProxyBypass );
228 if (info.lpszProxyBypass && !(session->proxy_bypass = strdupW( info.lpszProxyBypass )))
230 GlobalFree( (LPWSTR)info.lpszProxy );
231 GlobalFree( (LPWSTR)info.lpszProxyBypass );
235 else if (access == WINHTTP_ACCESS_TYPE_NAMED_PROXY)
237 session->access = access;
238 if (proxy && !(session->proxy_server = strdupW( proxy ))) goto end;
239 if (bypass && !(session->proxy_bypass = strdupW( bypass ))) goto end;
242 if (!(handle = alloc_handle( &session->hdr ))) goto end;
243 session->hdr.handle = handle;
246 release_object( &session->hdr );
247 TRACE("returning %p\n", handle);
251 /***********************************************************************
252 * connect_destroy (internal)
254 static void connect_destroy( object_header_t *hdr )
256 connect_t *connect = (connect_t *)hdr;
258 TRACE("%p\n", connect);
260 release_object( &connect->session->hdr );
262 heap_free( connect->hostname );
263 heap_free( connect->servername );
264 heap_free( connect->username );
265 heap_free( connect->password );
266 heap_free( connect );
269 static BOOL connect_query_option( object_header_t *hdr, DWORD option, LPVOID buffer, LPDWORD buflen )
271 connect_t *connect = (connect_t *)hdr;
275 case WINHTTP_OPTION_PARENT_HANDLE:
277 if (!buffer || *buflen < sizeof(HINTERNET))
279 *buflen = sizeof(HINTERNET);
280 set_last_error( ERROR_INSUFFICIENT_BUFFER );
284 *(HINTERNET *)buffer = ((object_header_t *)connect->session)->handle;
285 *buflen = sizeof(HINTERNET);
288 case WINHTTP_OPTION_RESOLVE_TIMEOUT:
289 *(DWORD *)buffer = connect->session->resolve_timeout;
290 *buflen = sizeof(DWORD);
292 case WINHTTP_OPTION_CONNECT_TIMEOUT:
293 *(DWORD *)buffer = connect->session->connect_timeout;
294 *buflen = sizeof(DWORD);
296 case WINHTTP_OPTION_SEND_TIMEOUT:
297 *(DWORD *)buffer = connect->session->send_timeout;
298 *buflen = sizeof(DWORD);
300 case WINHTTP_OPTION_RECEIVE_TIMEOUT:
301 *(DWORD *)buffer = connect->session->recv_timeout;
302 *buflen = sizeof(DWORD);
305 FIXME("unimplemented option %u\n", option);
306 set_last_error( ERROR_INVALID_PARAMETER );
311 static const object_vtbl_t connect_vtbl =
314 connect_query_option,
318 static BOOL domain_matches(LPCWSTR server, LPCWSTR domain)
320 static const WCHAR localW[] = { '<','l','o','c','a','l','>',0 };
323 if (!strcmpiW( domain, localW ) && !strchrW( server, '.' ))
325 else if (*domain == '*')
327 if (domain[1] == '.')
331 /* For a hostname to match a wildcard, the last domain must match
332 * the wildcard exactly. E.g. if the wildcard is *.a.b, and the
333 * hostname is www.foo.a.b, it matches, but a.b does not.
335 dot = strchrW( server, '.' );
338 int len = strlenW( dot + 1 );
340 if (len > strlenW( domain + 2 ))
344 /* The server's domain is longer than the wildcard, so it
345 * could be a subdomain. Compare the last portion of the
348 ptr = dot + len + 1 - strlenW( domain + 2 );
349 if (!strcmpiW( ptr, domain + 2 ))
351 /* This is only a match if the preceding character is
352 * a '.', i.e. that it is a matching domain. E.g.
353 * if domain is '*.b.c' and server is 'www.ab.c' they
356 ret = *(ptr - 1) == '.';
360 ret = !strcmpiW( dot + 1, domain + 2 );
365 ret = !strcmpiW( server, domain );
369 /* Matches INTERNET_MAX_HOST_NAME_LENGTH in wininet.h, also RFC 1035 */
370 #define MAX_HOST_NAME_LENGTH 256
372 static BOOL should_bypass_proxy(session_t *session, LPCWSTR server)
377 if (!session->proxy_bypass) return FALSE;
378 ptr = session->proxy_bypass;
382 ptr = strchrW( ptr, ';' );
384 ptr = strchrW( tmp, ' ' );
387 if (ptr - tmp < MAX_HOST_NAME_LENGTH)
389 WCHAR domain[MAX_HOST_NAME_LENGTH];
391 memcpy( domain, tmp, (ptr - tmp) * sizeof(WCHAR) );
392 domain[ptr - tmp] = 0;
393 ret = domain_matches( server, domain );
398 ret = domain_matches( server, tmp );
399 } while (ptr && !ret);
403 BOOL set_server_for_hostname( connect_t *connect, LPCWSTR server, INTERNET_PORT port )
405 session_t *session = connect->session;
408 if (session->proxy_server && !should_bypass_proxy(session, server))
412 if ((colon = strchrW( session->proxy_server, ':' )))
414 if (!connect->servername || strncmpiW( connect->servername,
415 session->proxy_server, colon - session->proxy_server - 1 ))
417 heap_free( connect->servername );
418 if (!(connect->servername = heap_alloc(
419 (colon - session->proxy_server + 1) * sizeof(WCHAR) )))
424 memcpy( connect->servername, session->proxy_server,
425 (colon - session->proxy_server) * sizeof(WCHAR) );
426 connect->servername[colon - session->proxy_server] = 0;
428 connect->serverport = atoiW( colon + 1 );
430 connect->serverport = INTERNET_DEFAULT_PORT;
435 if (!connect->servername || strcmpiW( connect->servername,
436 session->proxy_server ))
438 heap_free( connect->servername );
439 if (!(connect->servername = strdupW( session->proxy_server )))
444 connect->serverport = INTERNET_DEFAULT_PORT;
450 heap_free( connect->servername );
451 if (!(connect->servername = strdupW( server )))
456 connect->serverport = port;
462 /***********************************************************************
463 * WinHttpConnect (winhttp.@)
465 HINTERNET WINAPI WinHttpConnect( HINTERNET hsession, LPCWSTR server, INTERNET_PORT port, DWORD reserved )
469 HINTERNET hconnect = NULL;
471 TRACE("%p, %s, %u, %x\n", hsession, debugstr_w(server), port, reserved);
475 set_last_error( ERROR_INVALID_PARAMETER );
478 if (!(session = (session_t *)grab_object( hsession )))
480 set_last_error( ERROR_INVALID_HANDLE );
483 if (session->hdr.type != WINHTTP_HANDLE_TYPE_SESSION)
485 release_object( &session->hdr );
486 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE );
489 if (!(connect = heap_alloc_zero( sizeof(connect_t) )))
491 release_object( &session->hdr );
494 connect->hdr.type = WINHTTP_HANDLE_TYPE_CONNECT;
495 connect->hdr.vtbl = &connect_vtbl;
496 connect->hdr.refs = 1;
497 connect->hdr.flags = session->hdr.flags;
498 connect->hdr.callback = session->hdr.callback;
499 connect->hdr.notify_mask = session->hdr.notify_mask;
500 connect->hdr.context = session->hdr.context;
502 addref_object( &session->hdr );
503 connect->session = session;
504 list_add_head( &session->hdr.children, &connect->hdr.entry );
506 if (!(connect->hostname = strdupW( server ))) goto end;
507 connect->hostport = port;
509 if (!set_server_for_hostname( connect, server, port ))
512 if (!(hconnect = alloc_handle( &connect->hdr ))) goto end;
513 connect->hdr.handle = hconnect;
515 send_callback( &session->hdr, WINHTTP_CALLBACK_STATUS_HANDLE_CREATED, &hconnect, sizeof(hconnect) );
518 release_object( &connect->hdr );
520 TRACE("returning %p\n", hconnect);
524 /***********************************************************************
525 * request_destroy (internal)
527 static void request_destroy( object_header_t *hdr )
529 request_t *request = (request_t *)hdr;
532 TRACE("%p\n", request);
534 release_object( &request->connect->hdr );
536 heap_free( request->verb );
537 heap_free( request->path );
538 heap_free( request->version );
539 heap_free( request->raw_headers );
540 heap_free( request->status_text );
541 for (i = 0; i < request->num_headers; i++)
543 heap_free( request->headers[i].field );
544 heap_free( request->headers[i].value );
546 heap_free( request->headers );
547 for (i = 0; i < request->num_accept_types; i++) heap_free( request->accept_types[i] );
548 heap_free( request->accept_types );
549 heap_free( request );
552 static void str_to_buffer( WCHAR *buffer, const WCHAR *str, LPDWORD buflen )
555 if (str) len = strlenW( str );
556 if (buffer && *buflen > len)
558 memcpy( buffer, str, len * sizeof(WCHAR) );
561 *buflen = len * sizeof(WCHAR);
564 static WCHAR *blob_to_str( DWORD encoding, CERT_NAME_BLOB *blob )
567 DWORD size, format = CERT_SIMPLE_NAME_STR | CERT_NAME_STR_CRLF_FLAG;
569 size = CertNameToStrW( encoding, blob, format, NULL, 0 );
570 if ((ret = LocalAlloc( 0, size * sizeof(WCHAR) )))
571 CertNameToStrW( encoding, blob, format, ret, size );
576 static BOOL request_query_option( object_header_t *hdr, DWORD option, LPVOID buffer, LPDWORD buflen )
578 request_t *request = (request_t *)hdr;
582 case WINHTTP_OPTION_SECURITY_FLAGS:
587 if (!buffer || *buflen < sizeof(flags))
589 *buflen = sizeof(flags);
590 set_last_error( ERROR_INSUFFICIENT_BUFFER );
595 if (hdr->flags & WINHTTP_FLAG_SECURE) flags |= SECURITY_FLAG_SECURE;
596 flags |= request->netconn.security_flags;
597 bits = netconn_get_cipher_strength( &request->netconn );
599 flags |= SECURITY_FLAG_STRENGTH_STRONG;
601 flags |= SECURITY_FLAG_STRENGTH_MEDIUM;
603 flags |= SECURITY_FLAG_STRENGTH_WEAK;
604 *(DWORD *)buffer = flags;
605 *buflen = sizeof(flags);
608 case WINHTTP_OPTION_SERVER_CERT_CONTEXT:
610 const CERT_CONTEXT *cert;
612 if (!buffer || *buflen < sizeof(cert))
614 *buflen = sizeof(cert);
615 set_last_error( ERROR_INSUFFICIENT_BUFFER );
619 if (!(cert = netconn_get_certificate( &request->netconn ))) return FALSE;
620 *(CERT_CONTEXT **)buffer = (CERT_CONTEXT *)cert;
621 *buflen = sizeof(cert);
624 case WINHTTP_OPTION_SECURITY_CERTIFICATE_STRUCT:
626 const CERT_CONTEXT *cert;
627 const CRYPT_OID_INFO *oidInfo;
628 WINHTTP_CERTIFICATE_INFO *ci = buffer;
630 FIXME("partial stub\n");
632 if (!buffer || *buflen < sizeof(*ci))
634 *buflen = sizeof(*ci);
635 set_last_error( ERROR_INSUFFICIENT_BUFFER );
638 if (!(cert = netconn_get_certificate( &request->netconn ))) return FALSE;
640 ci->ftExpiry = cert->pCertInfo->NotAfter;
641 ci->ftStart = cert->pCertInfo->NotBefore;
642 ci->lpszSubjectInfo = blob_to_str( cert->dwCertEncodingType, &cert->pCertInfo->Subject );
643 ci->lpszIssuerInfo = blob_to_str( cert->dwCertEncodingType, &cert->pCertInfo->Issuer );
644 ci->lpszProtocolName = NULL;
645 oidInfo = CryptFindOIDInfo( CRYPT_OID_INFO_OID_KEY,
646 cert->pCertInfo->SignatureAlgorithm.pszObjId,
649 ci->lpszSignatureAlgName = (LPWSTR)oidInfo->pwszName;
651 ci->lpszSignatureAlgName = NULL;
652 ci->lpszEncryptionAlgName = NULL;
653 ci->dwKeySize = netconn_get_cipher_strength( &request->netconn );
655 CertFreeCertificateContext( cert );
656 *buflen = sizeof(*ci);
659 case WINHTTP_OPTION_SECURITY_KEY_BITNESS:
661 if (!buffer || *buflen < sizeof(DWORD))
663 *buflen = sizeof(DWORD);
664 set_last_error( ERROR_INSUFFICIENT_BUFFER );
668 *(DWORD *)buffer = netconn_get_cipher_strength( &request->netconn );
669 *buflen = sizeof(DWORD);
672 case WINHTTP_OPTION_RESOLVE_TIMEOUT:
673 *(DWORD *)buffer = request->resolve_timeout;
674 *buflen = sizeof(DWORD);
676 case WINHTTP_OPTION_CONNECT_TIMEOUT:
677 *(DWORD *)buffer = request->connect_timeout;
678 *buflen = sizeof(DWORD);
680 case WINHTTP_OPTION_SEND_TIMEOUT:
681 *(DWORD *)buffer = request->send_timeout;
682 *buflen = sizeof(DWORD);
684 case WINHTTP_OPTION_RECEIVE_TIMEOUT:
685 *(DWORD *)buffer = request->recv_timeout;
686 *buflen = sizeof(DWORD);
689 case WINHTTP_OPTION_USERNAME:
690 str_to_buffer( buffer, request->connect->username, buflen );
693 case WINHTTP_OPTION_PASSWORD:
694 str_to_buffer( buffer, request->connect->password, buflen );
697 case WINHTTP_OPTION_PROXY_USERNAME:
698 str_to_buffer( buffer, request->connect->session->proxy_username, buflen );
701 case WINHTTP_OPTION_PROXY_PASSWORD:
702 str_to_buffer( buffer, request->connect->session->proxy_password, buflen );
706 FIXME("unimplemented option %u\n", option);
707 set_last_error( ERROR_INVALID_PARAMETER );
712 static WCHAR *buffer_to_str( WCHAR *buffer, DWORD buflen )
715 if ((ret = heap_alloc( (buflen + 1) * sizeof(WCHAR))))
717 memcpy( ret, buffer, buflen * sizeof(WCHAR) );
721 set_last_error( ERROR_OUTOFMEMORY );
725 static BOOL request_set_option( object_header_t *hdr, DWORD option, LPVOID buffer, DWORD buflen )
727 request_t *request = (request_t *)hdr;
731 case WINHTTP_OPTION_PROXY:
733 WINHTTP_PROXY_INFO *pi = buffer;
735 FIXME("%u %s %s\n", pi->dwAccessType, debugstr_w(pi->lpszProxy), debugstr_w(pi->lpszProxyBypass));
738 case WINHTTP_OPTION_DISABLE_FEATURE:
742 if (buflen != sizeof(DWORD))
744 set_last_error( ERROR_INSUFFICIENT_BUFFER );
748 disable = *(DWORD *)buffer;
749 TRACE("0x%x\n", disable);
750 hdr->disable_flags |= disable;
753 case WINHTTP_OPTION_AUTOLOGON_POLICY:
757 if (buflen != sizeof(DWORD))
759 set_last_error( ERROR_INSUFFICIENT_BUFFER );
763 policy = *(DWORD *)buffer;
764 TRACE("0x%x\n", policy);
765 hdr->logon_policy = policy;
768 case WINHTTP_OPTION_REDIRECT_POLICY:
772 if (buflen != sizeof(DWORD))
774 set_last_error( ERROR_INSUFFICIENT_BUFFER );
778 policy = *(DWORD *)buffer;
779 TRACE("0x%x\n", policy);
780 hdr->redirect_policy = policy;
783 case WINHTTP_OPTION_SECURITY_FLAGS:
787 if (buflen < sizeof(DWORD))
789 set_last_error( ERROR_INSUFFICIENT_BUFFER );
792 flags = *(DWORD *)buffer;
793 TRACE("0x%x\n", flags);
794 if (!(flags & (SECURITY_FLAG_IGNORE_CERT_CN_INVALID |
795 SECURITY_FLAG_IGNORE_CERT_DATE_INVALID |
796 SECURITY_FLAG_IGNORE_UNKNOWN_CA |
797 SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE)))
799 set_last_error( ERROR_INVALID_PARAMETER );
802 request->netconn.security_flags = flags;
805 case WINHTTP_OPTION_RESOLVE_TIMEOUT:
806 request->resolve_timeout = *(DWORD *)buffer;
808 case WINHTTP_OPTION_CONNECT_TIMEOUT:
809 request->connect_timeout = *(DWORD *)buffer;
811 case WINHTTP_OPTION_SEND_TIMEOUT:
812 request->send_timeout = *(DWORD *)buffer;
814 case WINHTTP_OPTION_RECEIVE_TIMEOUT:
815 request->recv_timeout = *(DWORD *)buffer;
818 case WINHTTP_OPTION_USERNAME:
820 connect_t *connect = request->connect;
822 heap_free( connect->username );
823 if (!(connect->username = buffer_to_str( buffer, buflen ))) return FALSE;
826 case WINHTTP_OPTION_PASSWORD:
828 connect_t *connect = request->connect;
830 heap_free( connect->password );
831 if (!(connect->password = buffer_to_str( buffer, buflen ))) return FALSE;
834 case WINHTTP_OPTION_PROXY_USERNAME:
836 session_t *session = request->connect->session;
838 heap_free( session->proxy_username );
839 if (!(session->proxy_username = buffer_to_str( buffer, buflen ))) return FALSE;
842 case WINHTTP_OPTION_PROXY_PASSWORD:
844 session_t *session = request->connect->session;
846 heap_free( session->proxy_password );
847 if (!(session->proxy_password = buffer_to_str( buffer, buflen ))) return FALSE;
851 FIXME("unimplemented option %u\n", option);
852 set_last_error( ERROR_INVALID_PARAMETER );
857 static const object_vtbl_t request_vtbl =
860 request_query_option,
864 static BOOL store_accept_types( request_t *request, const WCHAR **accept_types )
866 const WCHAR **types = accept_types;
869 if (!types) return TRUE;
872 request->num_accept_types++;
875 if (!request->num_accept_types) return TRUE;
876 if (!(request->accept_types = heap_alloc( request->num_accept_types * sizeof(WCHAR *))))
878 request->num_accept_types = 0;
881 types = accept_types;
882 for (i = 0; i < request->num_accept_types; i++)
884 if (!(request->accept_types[i] = strdupW( *types )))
886 for (; i >= 0; i--) heap_free( request->accept_types[i] );
887 heap_free( request->accept_types );
888 request->accept_types = NULL;
889 request->num_accept_types = 0;
897 /***********************************************************************
898 * WinHttpOpenRequest (winhttp.@)
900 HINTERNET WINAPI WinHttpOpenRequest( HINTERNET hconnect, LPCWSTR verb, LPCWSTR object, LPCWSTR version,
901 LPCWSTR referrer, LPCWSTR *types, DWORD flags )
905 HINTERNET hrequest = NULL;
907 TRACE("%p, %s, %s, %s, %s, %p, 0x%08x\n", hconnect, debugstr_w(verb), debugstr_w(object),
908 debugstr_w(version), debugstr_w(referrer), types, flags);
910 if (!(connect = (connect_t *)grab_object( hconnect )))
912 set_last_error( ERROR_INVALID_HANDLE );
915 if (connect->hdr.type != WINHTTP_HANDLE_TYPE_CONNECT)
917 release_object( &connect->hdr );
918 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE );
921 if (!(request = heap_alloc_zero( sizeof(request_t) )))
923 release_object( &connect->hdr );
926 request->hdr.type = WINHTTP_HANDLE_TYPE_REQUEST;
927 request->hdr.vtbl = &request_vtbl;
928 request->hdr.refs = 1;
929 request->hdr.flags = flags;
930 request->hdr.callback = connect->hdr.callback;
931 request->hdr.notify_mask = connect->hdr.notify_mask;
932 request->hdr.context = connect->hdr.context;
934 addref_object( &connect->hdr );
935 request->connect = connect;
936 list_add_head( &connect->hdr.children, &request->hdr.entry );
938 if (!netconn_init( &request->netconn, request->hdr.flags & WINHTTP_FLAG_SECURE )) goto end;
939 request->resolve_timeout = connect->session->resolve_timeout;
940 request->connect_timeout = connect->session->connect_timeout;
941 request->send_timeout = connect->session->send_timeout;
942 request->recv_timeout = connect->session->recv_timeout;
944 if (!verb || !verb[0]) verb = getW;
945 if (!(request->verb = strdupW( verb ))) goto end;
952 len = strlenW( object ) + 1;
953 if (object[0] != '/') len++;
954 if (!(p = path = heap_alloc( len * sizeof(WCHAR) ))) goto end;
956 if (object[0] != '/') *p++ = '/';
957 strcpyW( p, object );
958 request->path = path;
960 else if (!(request->path = strdupW( slashW ))) goto end;
962 if (!version || !version[0]) version = http1_1;
963 if (!(request->version = strdupW( version ))) goto end;
964 if (!(store_accept_types( request, types ))) goto end;
966 if (!(hrequest = alloc_handle( &request->hdr ))) goto end;
967 request->hdr.handle = hrequest;
969 send_callback( &request->hdr, WINHTTP_CALLBACK_STATUS_HANDLE_CREATED, &hrequest, sizeof(hrequest) );
972 release_object( &request->hdr );
974 TRACE("returning %p\n", hrequest);
978 /***********************************************************************
979 * WinHttpCloseHandle (winhttp.@)
981 BOOL WINAPI WinHttpCloseHandle( HINTERNET handle )
983 object_header_t *hdr;
985 TRACE("%p\n", handle);
987 if (!(hdr = grab_object( handle )))
989 set_last_error( ERROR_INVALID_HANDLE );
992 release_object( hdr );
993 free_handle( handle );
997 static BOOL query_option( object_header_t *hdr, DWORD option, LPVOID buffer, LPDWORD buflen )
1003 set_last_error( ERROR_INVALID_PARAMETER );
1009 case WINHTTP_OPTION_CONTEXT_VALUE:
1011 if (!buffer || *buflen < sizeof(DWORD_PTR))
1013 *buflen = sizeof(DWORD_PTR);
1014 set_last_error( ERROR_INSUFFICIENT_BUFFER );
1018 *(DWORD_PTR *)buffer = hdr->context;
1019 *buflen = sizeof(DWORD_PTR);
1023 if (hdr->vtbl->query_option) ret = hdr->vtbl->query_option( hdr, option, buffer, buflen );
1026 FIXME("unimplemented option %u\n", option);
1027 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE );
1035 /***********************************************************************
1036 * WinHttpQueryOption (winhttp.@)
1038 BOOL WINAPI WinHttpQueryOption( HINTERNET handle, DWORD option, LPVOID buffer, LPDWORD buflen )
1041 object_header_t *hdr;
1043 TRACE("%p, %u, %p, %p\n", handle, option, buffer, buflen);
1045 if (!(hdr = grab_object( handle )))
1047 set_last_error( ERROR_INVALID_HANDLE );
1051 ret = query_option( hdr, option, buffer, buflen );
1053 release_object( hdr );
1057 static BOOL set_option( object_header_t *hdr, DWORD option, LPVOID buffer, DWORD buflen )
1063 set_last_error( ERROR_INVALID_PARAMETER );
1069 case WINHTTP_OPTION_CONTEXT_VALUE:
1071 if (buflen != sizeof(DWORD_PTR))
1073 set_last_error( ERROR_INSUFFICIENT_BUFFER );
1077 hdr->context = *(DWORD_PTR *)buffer;
1081 if (hdr->vtbl->set_option) ret = hdr->vtbl->set_option( hdr, option, buffer, buflen );
1084 FIXME("unimplemented option %u\n", option);
1085 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE );
1093 /***********************************************************************
1094 * WinHttpSetOption (winhttp.@)
1096 BOOL WINAPI WinHttpSetOption( HINTERNET handle, DWORD option, LPVOID buffer, DWORD buflen )
1099 object_header_t *hdr;
1101 TRACE("%p, %u, %p, %u\n", handle, option, buffer, buflen);
1103 if (!(hdr = grab_object( handle )))
1105 set_last_error( ERROR_INVALID_HANDLE );
1109 ret = set_option( hdr, option, buffer, buflen );
1111 release_object( hdr );
1115 /***********************************************************************
1116 * WinHttpDetectAutoProxyConfigUrl (winhttp.@)
1118 BOOL WINAPI WinHttpDetectAutoProxyConfigUrl( DWORD flags, LPWSTR *url )
1120 FIXME("0x%08x, %p\n", flags, url);
1122 set_last_error( ERROR_WINHTTP_AUTODETECTION_FAILED );
1126 static const WCHAR Connections[] = {
1127 'S','o','f','t','w','a','r','e','\\',
1128 'M','i','c','r','o','s','o','f','t','\\',
1129 'W','i','n','d','o','w','s','\\',
1130 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
1131 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
1132 'C','o','n','n','e','c','t','i','o','n','s',0 };
1133 static const WCHAR WinHttpSettings[] = {
1134 'W','i','n','H','t','t','p','S','e','t','t','i','n','g','s',0 };
1135 static const DWORD WINHTTPSETTINGS_MAGIC = 0x18;
1136 static const DWORD WINHTTP_PROXY_TYPE_DIRECT = 1;
1137 static const DWORD WINHTTP_PROXY_TYPE_PROXY = 2;
1139 struct winhttp_settings_header
1142 DWORD unknown; /* always zero? */
1143 DWORD flags; /* one of WINHTTP_PROXY_TYPE_* */
1146 static inline void copy_char_to_wchar_sz(const BYTE *src, DWORD len, WCHAR *dst)
1150 for (begin = src; src - begin < len; src++, dst++)
1155 /***********************************************************************
1156 * WinHttpGetDefaultProxyConfiguration (winhttp.@)
1158 BOOL WINAPI WinHttpGetDefaultProxyConfiguration( WINHTTP_PROXY_INFO *info )
1162 BOOL got_from_reg = FALSE, direct = TRUE;
1165 TRACE("%p\n", info);
1167 l = RegOpenKeyExW( HKEY_LOCAL_MACHINE, Connections, 0, KEY_READ, &key );
1170 DWORD type, size = 0;
1172 l = RegQueryValueExW( key, WinHttpSettings, NULL, &type, NULL, &size );
1173 if (!l && type == REG_BINARY &&
1174 size >= sizeof(struct winhttp_settings_header) + 2 * sizeof(DWORD))
1176 BYTE *buf = heap_alloc( size );
1180 struct winhttp_settings_header *hdr =
1181 (struct winhttp_settings_header *)buf;
1182 DWORD *len = (DWORD *)(hdr + 1);
1184 l = RegQueryValueExW( key, WinHttpSettings, NULL, NULL, buf,
1186 if (!l && hdr->magic == WINHTTPSETTINGS_MAGIC &&
1189 if (hdr->flags & WINHTTP_PROXY_TYPE_PROXY)
1192 LPWSTR proxy = NULL;
1193 LPWSTR proxy_bypass = NULL;
1195 /* Sanity-check length of proxy string */
1196 if ((BYTE *)len - buf + *len <= size)
1199 proxy = GlobalAlloc( 0, (*len + 1) * sizeof(WCHAR) );
1201 copy_char_to_wchar_sz( (BYTE *)(len + 1), *len, proxy );
1202 len = (DWORD *)((BYTE *)(len + 1) + *len);
1206 /* Sanity-check length of proxy bypass string */
1207 if ((BYTE *)len - buf + *len <= size)
1209 proxy_bypass = GlobalAlloc( 0, (*len + 1) * sizeof(WCHAR) );
1211 copy_char_to_wchar_sz( (BYTE *)(len + 1), *len, proxy_bypass );
1216 GlobalFree( proxy );
1220 info->lpszProxy = proxy;
1221 info->lpszProxyBypass = proxy_bypass;
1224 got_from_reg = TRUE;
1226 info->dwAccessType =
1227 WINHTTP_ACCESS_TYPE_NAMED_PROXY;
1228 TRACE("http proxy (from registry) = %s, bypass = %s\n",
1229 debugstr_w(info->lpszProxy),
1230 debugstr_w(info->lpszProxyBypass));
1239 if (!got_from_reg && (envproxy = getenv( "http_proxy" )))
1241 char *colon, *http_proxy;
1243 if ((colon = strchr( envproxy, ':' )))
1245 if (*(colon + 1) == '/' && *(colon + 2) == '/')
1247 static const char http[] = "http://";
1249 /* It's a scheme, check that it's http */
1250 if (!strncmp( envproxy, http, strlen( http ) ))
1251 http_proxy = envproxy + strlen( http );
1254 WARN("unsupported scheme in $http_proxy: %s\n", envproxy);
1259 http_proxy = envproxy;
1262 http_proxy = envproxy;
1268 len = MultiByteToWideChar( CP_UNIXCP, 0, http_proxy, -1, NULL, 0 );
1269 if ((http_proxyW = GlobalAlloc( 0, len * sizeof(WCHAR))))
1271 MultiByteToWideChar( CP_UNIXCP, 0, http_proxy, -1, http_proxyW, len );
1273 info->dwAccessType = WINHTTP_ACCESS_TYPE_NAMED_PROXY;
1274 info->lpszProxy = http_proxyW;
1275 info->lpszProxyBypass = NULL;
1276 TRACE("http proxy (from environment) = %s\n",
1277 debugstr_w(info->lpszProxy));
1283 info->dwAccessType = WINHTTP_ACCESS_TYPE_NO_PROXY;
1284 info->lpszProxy = NULL;
1285 info->lpszProxyBypass = NULL;
1290 /***********************************************************************
1291 * WinHttpGetIEProxyConfigForCurrentUser (winhttp.@)
1293 BOOL WINAPI WinHttpGetIEProxyConfigForCurrentUser( WINHTTP_CURRENT_USER_IE_PROXY_CONFIG *config )
1295 TRACE("%p\n", config);
1299 set_last_error( ERROR_INVALID_PARAMETER );
1303 /* FIXME: read from HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings */
1305 FIXME("returning no proxy used\n");
1306 config->fAutoDetect = FALSE;
1307 config->lpszAutoConfigUrl = NULL;
1308 config->lpszProxy = NULL;
1309 config->lpszProxyBypass = NULL;
1314 /***********************************************************************
1315 * WinHttpGetProxyForUrl (winhttp.@)
1317 BOOL WINAPI WinHttpGetProxyForUrl( HINTERNET hsession, LPCWSTR url, WINHTTP_AUTOPROXY_OPTIONS *options,
1318 WINHTTP_PROXY_INFO *info )
1320 FIXME("%p, %s, %p, %p\n", hsession, debugstr_w(url), options, info);
1322 set_last_error( ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR );
1326 /***********************************************************************
1327 * WinHttpSetDefaultProxyConfiguration (winhttp.@)
1329 BOOL WINAPI WinHttpSetDefaultProxyConfiguration( WINHTTP_PROXY_INFO *info )
1336 TRACE("%p\n", info);
1340 set_last_error( ERROR_INVALID_PARAMETER );
1343 switch (info->dwAccessType)
1345 case WINHTTP_ACCESS_TYPE_NO_PROXY:
1347 case WINHTTP_ACCESS_TYPE_NAMED_PROXY:
1348 if (!info->lpszProxy)
1350 set_last_error( ERROR_INVALID_PARAMETER );
1353 /* Only ASCII characters are allowed */
1354 for (src = info->lpszProxy; *src; src++)
1357 set_last_error( ERROR_INVALID_PARAMETER );
1360 if (info->lpszProxyBypass)
1362 for (src = info->lpszProxyBypass; *src; src++)
1365 set_last_error( ERROR_INVALID_PARAMETER );
1371 set_last_error( ERROR_INVALID_PARAMETER );
1375 l = RegCreateKeyExW( HKEY_LOCAL_MACHINE, Connections, 0, NULL, 0,
1376 KEY_WRITE, NULL, &key, NULL );
1379 DWORD size = sizeof(struct winhttp_settings_header) + 2 * sizeof(DWORD);
1382 if (info->dwAccessType == WINHTTP_ACCESS_TYPE_NAMED_PROXY)
1384 size += strlenW( info->lpszProxy );
1385 if (info->lpszProxyBypass)
1386 size += strlenW( info->lpszProxyBypass );
1388 buf = heap_alloc( size );
1391 struct winhttp_settings_header *hdr =
1392 (struct winhttp_settings_header *)buf;
1393 DWORD *len = (DWORD *)(hdr + 1);
1395 hdr->magic = WINHTTPSETTINGS_MAGIC;
1397 if (info->dwAccessType == WINHTTP_ACCESS_TYPE_NAMED_PROXY)
1401 hdr->flags = WINHTTP_PROXY_TYPE_PROXY;
1402 *len++ = strlenW( info->lpszProxy );
1403 for (dst = (BYTE *)len, src = info->lpszProxy; *src;
1407 if (info->lpszProxyBypass)
1409 *len++ = strlenW( info->lpszProxyBypass );
1410 for (dst = (BYTE *)len, src = info->lpszProxyBypass; *src;
1419 hdr->flags = WINHTTP_PROXY_TYPE_DIRECT;
1423 l = RegSetValueExW( key, WinHttpSettings, 0, REG_BINARY, buf, size );
1433 /***********************************************************************
1434 * WinHttpSetStatusCallback (winhttp.@)
1436 WINHTTP_STATUS_CALLBACK WINAPI WinHttpSetStatusCallback( HINTERNET handle, WINHTTP_STATUS_CALLBACK callback,
1437 DWORD flags, DWORD_PTR reserved )
1439 object_header_t *hdr;
1440 WINHTTP_STATUS_CALLBACK ret;
1442 TRACE("%p, %p, 0x%08x, 0x%lx\n", handle, callback, flags, reserved);
1444 if (!(hdr = grab_object( handle )))
1446 set_last_error( ERROR_INVALID_HANDLE );
1447 return WINHTTP_INVALID_STATUS_CALLBACK;
1449 ret = hdr->callback;
1450 hdr->callback = callback;
1451 hdr->notify_mask = flags;
1453 release_object( hdr );
1457 /***********************************************************************
1458 * WinHttpSetTimeouts (winhttp.@)
1460 BOOL WINAPI WinHttpSetTimeouts( HINTERNET handle, int resolve, int connect, int send, int receive )
1463 object_header_t *hdr;
1467 TRACE("%p, %d, %d, %d, %d\n", handle, resolve, connect, send, receive);
1469 if (resolve < -1 || connect < -1 || send < -1 || receive < -1)
1471 set_last_error( ERROR_INVALID_PARAMETER );
1475 if (!(hdr = grab_object( handle )))
1477 set_last_error( ERROR_INVALID_HANDLE );
1483 case WINHTTP_HANDLE_TYPE_REQUEST:
1484 request = (request_t *)hdr;
1485 request->connect_timeout = connect;
1487 if (resolve < 0) resolve = 0;
1488 request->resolve_timeout = resolve;
1490 if (send < 0) send = 0;
1491 request->send_timeout = send;
1493 if (receive < 0) receive = 0;
1494 request->recv_timeout = receive;
1496 if (netconn_connected( &request->netconn ))
1498 if (netconn_set_timeout( &request->netconn, TRUE, send )) ret = FALSE;
1499 if (netconn_set_timeout( &request->netconn, FALSE, receive )) ret = FALSE;
1502 release_object( &request->hdr );
1505 case WINHTTP_HANDLE_TYPE_SESSION:
1506 session = (session_t *)hdr;
1507 session->connect_timeout = connect;
1509 if (resolve < 0) resolve = 0;
1510 session->resolve_timeout = resolve;
1512 if (send < 0) send = 0;
1513 session->send_timeout = send;
1515 if (receive < 0) receive = 0;
1516 session->recv_timeout = receive;
1520 release_object( hdr );
1521 set_last_error( ERROR_WINHTTP_INCORRECT_HANDLE_TYPE );
1527 static const WCHAR wkday[7][4] =
1528 {{'S','u','n', 0}, {'M','o','n', 0}, {'T','u','e', 0}, {'W','e','d', 0},
1529 {'T','h','u', 0}, {'F','r','i', 0}, {'S','a','t', 0}};
1530 static const WCHAR month[12][4] =
1531 {{'J','a','n', 0}, {'F','e','b', 0}, {'M','a','r', 0}, {'A','p','r', 0},
1532 {'M','a','y', 0}, {'J','u','n', 0}, {'J','u','l', 0}, {'A','u','g', 0},
1533 {'S','e','p', 0}, {'O','c','t', 0}, {'N','o','v', 0}, {'D','e','c', 0}};
1535 /***********************************************************************
1536 * WinHttpTimeFromSystemTime (WININET.@)
1538 BOOL WINAPI WinHttpTimeFromSystemTime( const SYSTEMTIME *time, LPWSTR string )
1540 static const WCHAR format[] =
1541 {'%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
1542 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0};
1544 TRACE("%p, %p\n", time, string);
1546 if (!time || !string) return FALSE;
1548 sprintfW( string, format,
1549 wkday[time->wDayOfWeek],
1551 month[time->wMonth - 1],
1560 /***********************************************************************
1561 * WinHttpTimeToSystemTime (WININET.@)
1563 BOOL WINAPI WinHttpTimeToSystemTime( LPCWSTR string, SYSTEMTIME *time )
1566 const WCHAR *s = string;
1569 TRACE("%s, %p\n", debugstr_w(string), time);
1571 if (!string || !time) return FALSE;
1573 /* Windows does this too */
1574 GetSystemTime( time );
1576 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
1577 * a SYSTEMTIME structure.
1580 while (*s && !isalphaW( *s )) s++;
1581 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
1582 time->wDayOfWeek = 7;
1584 for (i = 0; i < 7; i++)
1586 if (toupperW( wkday[i][0] ) == toupperW( s[0] ) &&
1587 toupperW( wkday[i][1] ) == toupperW( s[1] ) &&
1588 toupperW( wkday[i][2] ) == toupperW( s[2] ) )
1590 time->wDayOfWeek = i;
1595 if (time->wDayOfWeek > 6) return TRUE;
1596 while (*s && !isdigitW( *s )) s++;
1597 time->wDay = strtolW( s, &end, 10 );
1600 while (*s && !isalphaW( *s )) s++;
1601 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
1604 for (i = 0; i < 12; i++)
1606 if (toupperW( month[i][0]) == toupperW( s[0] ) &&
1607 toupperW( month[i][1]) == toupperW( s[1] ) &&
1608 toupperW( month[i][2]) == toupperW( s[2] ) )
1610 time->wMonth = i + 1;
1614 if (time->wMonth == 0) return TRUE;
1616 while (*s && !isdigitW( *s )) s++;
1617 if (*s == '\0') return TRUE;
1618 time->wYear = strtolW( s, &end, 10 );
1621 while (*s && !isdigitW( *s )) s++;
1622 if (*s == '\0') return TRUE;
1623 time->wHour = strtolW( s, &end, 10 );
1626 while (*s && !isdigitW( *s )) s++;
1627 if (*s == '\0') return TRUE;
1628 time->wMinute = strtolW( s, &end, 10 );
1631 while (*s && !isdigitW( *s )) s++;
1632 if (*s == '\0') return TRUE;
1633 time->wSecond = strtolW( s, &end, 10 );
1635 time->wMilliseconds = 0;