2 * Wininet - HTTP Implementation
4 * Copyright 1999 Corel Corporation
5 * Copyright 2002 CodeWeavers Inc.
6 * Copyright 2002 TransGaming Technologies Inc.
7 * Copyright 2004 Mike McCormack for CodeWeavers
8 * Copyright 2005 Aric Stewart for CodeWeavers
9 * Copyright 2006 Robert Shearman for CodeWeavers
10 * Copyright 2011 Jacek Caban for CodeWeavers
15 * This library is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU Lesser General Public
17 * License as published by the Free Software Foundation; either
18 * version 2.1 of the License, or (at your option) any later version.
20 * This library is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * Lesser General Public License for more details.
25 * You should have received a copy of the GNU Lesser General Public
26 * License along with this library; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/port.h"
33 #if defined(__MINGW32__) || defined (_MSC_VER)
37 #include <sys/types.h>
38 #ifdef HAVE_SYS_SOCKET_H
39 # include <sys/socket.h>
41 #ifdef HAVE_ARPA_INET_H
42 # include <arpa/inet.h>
61 #define NO_SHLWAPI_STREAM
62 #define NO_SHLWAPI_REG
63 #define NO_SHLWAPI_STRFCNS
64 #define NO_SHLWAPI_GDI
71 #include "wine/debug.h"
72 #include "wine/exception.h"
73 #include "wine/unicode.h"
75 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
77 static const WCHAR g_szHttp1_0[] = {'H','T','T','P','/','1','.','0',0};
78 static const WCHAR g_szHttp1_1[] = {'H','T','T','P','/','1','.','1',0};
79 static const WCHAR szOK[] = {'O','K',0};
80 static const WCHAR szDefaultHeader[] = {'H','T','T','P','/','1','.','0',' ','2','0','0',' ','O','K',0};
81 static const WCHAR hostW[] = { 'H','o','s','t',0 };
82 static const WCHAR szAuthorization[] = { 'A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
83 static const WCHAR szProxy_Authorization[] = { 'P','r','o','x','y','-','A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
84 static const WCHAR szStatus[] = { 'S','t','a','t','u','s',0 };
85 static const WCHAR szKeepAlive[] = {'K','e','e','p','-','A','l','i','v','e',0};
86 static const WCHAR szGET[] = { 'G','E','T', 0 };
87 static const WCHAR szHEAD[] = { 'H','E','A','D', 0 };
88 static const WCHAR szCrLf[] = {'\r','\n', 0};
90 static const WCHAR szAccept[] = { 'A','c','c','e','p','t',0 };
91 static const WCHAR szAccept_Charset[] = { 'A','c','c','e','p','t','-','C','h','a','r','s','e','t', 0 };
92 static const WCHAR szAccept_Encoding[] = { 'A','c','c','e','p','t','-','E','n','c','o','d','i','n','g',0 };
93 static const WCHAR szAccept_Language[] = { 'A','c','c','e','p','t','-','L','a','n','g','u','a','g','e',0 };
94 static const WCHAR szAccept_Ranges[] = { 'A','c','c','e','p','t','-','R','a','n','g','e','s',0 };
95 static const WCHAR szAge[] = { 'A','g','e',0 };
96 static const WCHAR szAllow[] = { 'A','l','l','o','w',0 };
97 static const WCHAR szCache_Control[] = { 'C','a','c','h','e','-','C','o','n','t','r','o','l',0 };
98 static const WCHAR szConnection[] = { 'C','o','n','n','e','c','t','i','o','n',0 };
99 static const WCHAR szContent_Base[] = { 'C','o','n','t','e','n','t','-','B','a','s','e',0 };
100 static const WCHAR szContent_Disposition[] = { 'C','o','n','t','e','n','t','-','D','i','s','p','o','s','i','t','i','o','n',0 };
101 static const WCHAR szContent_Encoding[] = { 'C','o','n','t','e','n','t','-','E','n','c','o','d','i','n','g',0 };
102 static const WCHAR szContent_ID[] = { 'C','o','n','t','e','n','t','-','I','D',0 };
103 static const WCHAR szContent_Language[] = { 'C','o','n','t','e','n','t','-','L','a','n','g','u','a','g','e',0 };
104 static const WCHAR szContent_Length[] = { 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',0 };
105 static const WCHAR szContent_Location[] = { 'C','o','n','t','e','n','t','-','L','o','c','a','t','i','o','n',0 };
106 static const WCHAR szContent_MD5[] = { 'C','o','n','t','e','n','t','-','M','D','5',0 };
107 static const WCHAR szContent_Range[] = { 'C','o','n','t','e','n','t','-','R','a','n','g','e',0 };
108 static const WCHAR szContent_Transfer_Encoding[] = { 'C','o','n','t','e','n','t','-','T','r','a','n','s','f','e','r','-','E','n','c','o','d','i','n','g',0 };
109 static const WCHAR szContent_Type[] = { 'C','o','n','t','e','n','t','-','T','y','p','e',0 };
110 static const WCHAR szCookie[] = { 'C','o','o','k','i','e',0 };
111 static const WCHAR szDate[] = { 'D','a','t','e',0 };
112 static const WCHAR szFrom[] = { 'F','r','o','m',0 };
113 static const WCHAR szETag[] = { 'E','T','a','g',0 };
114 static const WCHAR szExpect[] = { 'E','x','p','e','c','t',0 };
115 static const WCHAR szExpires[] = { 'E','x','p','i','r','e','s',0 };
116 static const WCHAR szIf_Match[] = { 'I','f','-','M','a','t','c','h',0 };
117 static const WCHAR szIf_Modified_Since[] = { 'I','f','-','M','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
118 static const WCHAR szIf_None_Match[] = { 'I','f','-','N','o','n','e','-','M','a','t','c','h',0 };
119 static const WCHAR szIf_Range[] = { 'I','f','-','R','a','n','g','e',0 };
120 static const WCHAR szIf_Unmodified_Since[] = { 'I','f','-','U','n','m','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
121 static const WCHAR szLast_Modified[] = { 'L','a','s','t','-','M','o','d','i','f','i','e','d',0 };
122 static const WCHAR szLocation[] = { 'L','o','c','a','t','i','o','n',0 };
123 static const WCHAR szMax_Forwards[] = { 'M','a','x','-','F','o','r','w','a','r','d','s',0 };
124 static const WCHAR szMime_Version[] = { 'M','i','m','e','-','V','e','r','s','i','o','n',0 };
125 static const WCHAR szPragma[] = { 'P','r','a','g','m','a',0 };
126 static const WCHAR szProxy_Authenticate[] = { 'P','r','o','x','y','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
127 static const WCHAR szProxy_Connection[] = { 'P','r','o','x','y','-','C','o','n','n','e','c','t','i','o','n',0 };
128 static const WCHAR szPublic[] = { 'P','u','b','l','i','c',0 };
129 static const WCHAR szRange[] = { 'R','a','n','g','e',0 };
130 static const WCHAR szReferer[] = { 'R','e','f','e','r','e','r',0 };
131 static const WCHAR szRetry_After[] = { 'R','e','t','r','y','-','A','f','t','e','r',0 };
132 static const WCHAR szServer[] = { 'S','e','r','v','e','r',0 };
133 static const WCHAR szSet_Cookie[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
134 static const WCHAR szTransfer_Encoding[] = { 'T','r','a','n','s','f','e','r','-','E','n','c','o','d','i','n','g',0 };
135 static const WCHAR szUnless_Modified_Since[] = { 'U','n','l','e','s','s','-','M','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
136 static const WCHAR szUpgrade[] = { 'U','p','g','r','a','d','e',0 };
137 static const WCHAR szURI[] = { 'U','R','I',0 };
138 static const WCHAR szUser_Agent[] = { 'U','s','e','r','-','A','g','e','n','t',0 };
139 static const WCHAR szVary[] = { 'V','a','r','y',0 };
140 static const WCHAR szVia[] = { 'V','i','a',0 };
141 static const WCHAR szWarning[] = { 'W','a','r','n','i','n','g',0 };
142 static const WCHAR szWWW_Authenticate[] = { 'W','W','W','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
144 #define HTTP_REFERER szReferer
145 #define HTTP_ACCEPT szAccept
146 #define HTTP_USERAGENT szUser_Agent
148 #define HTTP_ADDHDR_FLAG_ADD 0x20000000
149 #define HTTP_ADDHDR_FLAG_ADD_IF_NEW 0x10000000
150 #define HTTP_ADDHDR_FLAG_COALESCE 0x40000000
151 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA 0x40000000
152 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON 0x01000000
153 #define HTTP_ADDHDR_FLAG_REPLACE 0x80000000
154 #define HTTP_ADDHDR_FLAG_REQ 0x02000000
156 #define COLLECT_TIME 60000
158 #define ARRAYSIZE(array) (sizeof(array)/sizeof((array)[0]))
169 unsigned int auth_data_len;
170 BOOL finished; /* finished authenticating */
174 typedef struct _basicAuthorizationData
181 UINT authorizationLen;
182 } basicAuthorizationData;
184 typedef struct _authorizationData
198 static struct list basicAuthorizationCache = LIST_INIT(basicAuthorizationCache);
199 static struct list authorizationCache = LIST_INIT(authorizationCache);
201 static CRITICAL_SECTION authcache_cs;
202 static CRITICAL_SECTION_DEBUG critsect_debug =
205 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
206 0, 0, { (DWORD_PTR)(__FILE__ ": authcache_cs") }
208 static CRITICAL_SECTION authcache_cs = { &critsect_debug, -1, 0, 0, 0, 0 };
210 static BOOL HTTP_GetResponseHeaders(http_request_t *req, BOOL clear);
211 static DWORD HTTP_ProcessHeader(http_request_t *req, LPCWSTR field, LPCWSTR value, DWORD dwModifier);
212 static LPWSTR * HTTP_InterpretHttpHeader(LPCWSTR buffer);
213 static DWORD HTTP_InsertCustomHeader(http_request_t *req, LPHTTPHEADERW lpHdr);
214 static INT HTTP_GetCustomHeaderIndex(http_request_t *req, LPCWSTR lpszField, INT index, BOOL Request);
215 static BOOL HTTP_DeleteCustomHeader(http_request_t *req, DWORD index);
216 static LPWSTR HTTP_build_req( LPCWSTR *list, int len );
217 static DWORD HTTP_HttpQueryInfoW(http_request_t*, DWORD, LPVOID, LPDWORD, LPDWORD);
218 static LPWSTR HTTP_GetRedirectURL(http_request_t *req, LPCWSTR lpszUrl);
219 static UINT HTTP_DecodeBase64(LPCWSTR base64, LPSTR bin);
220 static BOOL HTTP_VerifyValidHeader(http_request_t *req, LPCWSTR field);
221 static BOOL drain_content(http_request_t*,BOOL);
223 static CRITICAL_SECTION connection_pool_cs;
224 static CRITICAL_SECTION_DEBUG connection_pool_debug =
226 0, 0, &connection_pool_cs,
227 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
228 0, 0, { (DWORD_PTR)(__FILE__ ": connection_pool_cs") }
230 static CRITICAL_SECTION connection_pool_cs = { &connection_pool_debug, -1, 0, 0, 0, 0 };
232 static struct list connection_pool = LIST_INIT(connection_pool);
233 static BOOL collector_running;
235 void server_addref(server_t *server)
237 InterlockedIncrement(&server->ref);
240 void server_release(server_t *server)
242 if(InterlockedDecrement(&server->ref))
245 list_remove(&server->entry);
247 if(server->cert_chain)
248 CertFreeCertificateChain(server->cert_chain);
249 heap_free(server->name);
250 heap_free(server->scheme_host_port);
254 static BOOL process_host_port(server_t *server)
260 static const WCHAR httpW[] = {'h','t','t','p',0};
261 static const WCHAR httpsW[] = {'h','t','t','p','s',0};
262 static const WCHAR formatW[] = {'%','s',':','/','/','%','s',':','%','u',0};
264 name_len = strlenW(server->name);
265 buf = heap_alloc((name_len + 10 /* strlen("://:<port>") */)*sizeof(WCHAR) + sizeof(httpsW));
269 sprintfW(buf, formatW, server->is_https ? httpsW : httpW, server->name, server->port);
270 server->scheme_host_port = buf;
272 server->host_port = server->scheme_host_port + 7 /* strlen("http://") */;
276 default_port = server->port == (server->is_https ? INTERNET_DEFAULT_HTTPS_PORT : INTERNET_DEFAULT_HTTP_PORT);
277 server->canon_host_port = default_port ? server->name : server->host_port;
281 server_t *get_server(const WCHAR *name, INTERNET_PORT port, BOOL is_https, BOOL do_create)
283 server_t *iter, *server = NULL;
285 if(port == INTERNET_INVALID_PORT_NUMBER)
286 port = INTERNET_DEFAULT_HTTP_PORT;
288 EnterCriticalSection(&connection_pool_cs);
290 LIST_FOR_EACH_ENTRY(iter, &connection_pool, server_t, entry) {
291 if(iter->port == port && !strcmpW(iter->name, name) && iter->is_https == is_https) {
293 server_addref(server);
298 if(!server && do_create) {
299 server = heap_alloc_zero(sizeof(*server));
301 server->ref = 2; /* list reference and return */
303 server->is_https = is_https;
304 list_init(&server->conn_pool);
305 server->name = heap_strdupW(name);
306 if(server->name && process_host_port(server)) {
307 list_add_head(&connection_pool, &server->entry);
315 LeaveCriticalSection(&connection_pool_cs);
320 BOOL collect_connections(collect_type_t collect_type)
322 netconn_t *netconn, *netconn_safe;
323 server_t *server, *server_safe;
324 BOOL remaining = FALSE;
327 now = GetTickCount64();
329 LIST_FOR_EACH_ENTRY_SAFE(server, server_safe, &connection_pool, server_t, entry) {
330 LIST_FOR_EACH_ENTRY_SAFE(netconn, netconn_safe, &server->conn_pool, netconn_t, pool_entry) {
331 if(collect_type > COLLECT_TIMEOUT || netconn->keep_until < now) {
332 TRACE("freeing %p\n", netconn);
333 list_remove(&netconn->pool_entry);
334 free_netconn(netconn);
340 if(collect_type == COLLECT_CLEANUP) {
341 list_remove(&server->entry);
342 list_init(&server->entry);
343 server_release(server);
350 static DWORD WINAPI collect_connections_proc(void *arg)
352 BOOL remaining_conns;
355 /* FIXME: Use more sophisticated method */
358 EnterCriticalSection(&connection_pool_cs);
360 remaining_conns = collect_connections(COLLECT_TIMEOUT);
362 collector_running = FALSE;
364 LeaveCriticalSection(&connection_pool_cs);
365 }while(remaining_conns);
367 FreeLibraryAndExitThread(WININET_hModule, 0);
370 static LPHTTPHEADERW HTTP_GetHeader(http_request_t *req, LPCWSTR head)
373 HeaderIndex = HTTP_GetCustomHeaderIndex(req, head, 0, TRUE);
374 if (HeaderIndex == -1)
377 return &req->custHeaders[HeaderIndex];
386 struct data_stream_vtbl_t {
387 DWORD (*get_avail_data)(data_stream_t*,http_request_t*);
388 BOOL (*end_of_data)(data_stream_t*,http_request_t*);
389 DWORD (*read)(data_stream_t*,http_request_t*,BYTE*,DWORD,DWORD*,read_mode_t);
390 BOOL (*drain_content)(data_stream_t*,http_request_t*);
391 void (*destroy)(data_stream_t*);
395 data_stream_t data_stream;
397 BYTE buf[READ_BUFFER_SIZE];
403 static inline void destroy_data_stream(data_stream_t *stream)
405 stream->vtbl->destroy(stream);
408 static void reset_data_stream(http_request_t *req)
410 destroy_data_stream(req->data_stream);
411 req->data_stream = &req->netconn_stream.data_stream;
412 req->read_pos = req->read_size = req->netconn_stream.content_read = 0;
413 req->read_chunked = req->read_gzip = FALSE;
419 data_stream_t stream;
420 data_stream_t *parent_stream;
422 BYTE buf[READ_BUFFER_SIZE];
428 static DWORD gzip_get_avail_data(data_stream_t *stream, http_request_t *req)
430 /* Allow reading only from read buffer */
434 static BOOL gzip_end_of_data(data_stream_t *stream, http_request_t *req)
436 gzip_stream_t *gzip_stream = (gzip_stream_t*)stream;
437 return gzip_stream->end_of_data;
440 static DWORD gzip_read(data_stream_t *stream, http_request_t *req, BYTE *buf, DWORD size,
441 DWORD *read, read_mode_t read_mode)
443 gzip_stream_t *gzip_stream = (gzip_stream_t*)stream;
444 z_stream *zstream = &gzip_stream->zstream;
445 DWORD current_read, ret_read = 0;
448 DWORD res = ERROR_SUCCESS;
450 while(size && !gzip_stream->end_of_data) {
451 end = gzip_stream->parent_stream->vtbl->end_of_data(gzip_stream->parent_stream, req);
453 if(gzip_stream->buf_size <= 64 && !end) {
454 if(gzip_stream->buf_pos) {
455 if(gzip_stream->buf_size)
456 memmove(gzip_stream->buf, gzip_stream->buf+gzip_stream->buf_pos, gzip_stream->buf_size);
457 gzip_stream->buf_pos = 0;
459 res = gzip_stream->parent_stream->vtbl->read(gzip_stream->parent_stream, req, gzip_stream->buf+gzip_stream->buf_size,
460 sizeof(gzip_stream->buf)-gzip_stream->buf_size, ¤t_read, read_mode);
461 gzip_stream->buf_size += current_read;
462 if(res != ERROR_SUCCESS)
464 end = gzip_stream->parent_stream->vtbl->end_of_data(gzip_stream->parent_stream, req);
465 if(!current_read && !end) {
466 if(read_mode != READMODE_NOBLOCK) {
467 WARN("unexpected end of data\n");
468 gzip_stream->end_of_data = TRUE;
472 if(gzip_stream->buf_size <= 64 && !end)
476 zstream->next_in = gzip_stream->buf+gzip_stream->buf_pos;
477 zstream->avail_in = gzip_stream->buf_size-(end ? 0 : 64);
478 zstream->next_out = buf+ret_read;
479 zstream->avail_out = size;
480 zres = inflate(&gzip_stream->zstream, 0);
481 current_read = size - zstream->avail_out;
482 size -= current_read;
483 ret_read += current_read;
484 gzip_stream->buf_size -= zstream->next_in - (gzip_stream->buf+gzip_stream->buf_pos);
485 gzip_stream->buf_pos = zstream->next_in-gzip_stream->buf;
486 if(zres == Z_STREAM_END) {
487 TRACE("end of data\n");
488 gzip_stream->end_of_data = TRUE;
490 }else if(zres != Z_OK) {
491 WARN("inflate failed %d: %s\n", zres, debugstr_a(zstream->msg));
493 res = ERROR_INTERNET_DECODING_FAILED;
497 if(ret_read && read_mode == READMODE_ASYNC)
498 read_mode = READMODE_NOBLOCK;
501 TRACE("read %u bytes\n", ret_read);
506 static BOOL gzip_drain_content(data_stream_t *stream, http_request_t *req)
508 gzip_stream_t *gzip_stream = (gzip_stream_t*)stream;
509 return gzip_stream->parent_stream->vtbl->drain_content(gzip_stream->parent_stream, req);
512 static void gzip_destroy(data_stream_t *stream)
514 gzip_stream_t *gzip_stream = (gzip_stream_t*)stream;
516 destroy_data_stream(gzip_stream->parent_stream);
518 if(!gzip_stream->end_of_data)
519 inflateEnd(&gzip_stream->zstream);
520 heap_free(gzip_stream);
523 static const data_stream_vtbl_t gzip_stream_vtbl = {
531 static voidpf wininet_zalloc(voidpf opaque, uInt items, uInt size)
533 return heap_alloc(items*size);
536 static void wininet_zfree(voidpf opaque, voidpf address)
541 static DWORD init_gzip_stream(http_request_t *req)
543 gzip_stream_t *gzip_stream;
546 gzip_stream = heap_alloc_zero(sizeof(gzip_stream_t));
548 return ERROR_OUTOFMEMORY;
550 gzip_stream->stream.vtbl = &gzip_stream_vtbl;
551 gzip_stream->zstream.zalloc = wininet_zalloc;
552 gzip_stream->zstream.zfree = wininet_zfree;
554 zres = inflateInit2(&gzip_stream->zstream, 0x1f);
556 ERR("inflateInit failed: %d\n", zres);
557 heap_free(gzip_stream);
558 return ERROR_OUTOFMEMORY;
561 index = HTTP_GetCustomHeaderIndex(req, szContent_Length, 0, FALSE);
563 HTTP_DeleteCustomHeader(req, index);
566 memcpy(gzip_stream->buf, req->read_buf+req->read_pos, req->read_size);
567 gzip_stream->buf_size = req->read_size;
568 req->read_pos = req->read_size = 0;
571 req->read_gzip = TRUE;
572 gzip_stream->parent_stream = req->data_stream;
573 req->data_stream = &gzip_stream->stream;
574 return ERROR_SUCCESS;
579 static DWORD init_gzip_stream(http_request_t *req)
581 ERR("gzip stream not supported, missing zlib.\n");
582 return ERROR_SUCCESS;
587 /***********************************************************************
588 * HTTP_Tokenize (internal)
590 * Tokenize a string, allocating memory for the tokens.
592 static LPWSTR * HTTP_Tokenize(LPCWSTR string, LPCWSTR token_string)
594 LPWSTR * token_array;
601 /* empty string has no tokens */
605 for (i = 0; string[i]; i++)
607 if (!strncmpW(string+i, token_string, strlenW(token_string)))
611 /* we want to skip over separators, but not the null terminator */
612 for (j = 0; j < strlenW(token_string) - 1; j++)
620 /* add 1 for terminating NULL */
621 token_array = heap_alloc((tokens+1) * sizeof(*token_array));
622 token_array[tokens] = NULL;
625 for (i = 0; i < tokens; i++)
628 next_token = strstrW(string, token_string);
629 if (!next_token) next_token = string+strlenW(string);
630 len = next_token - string;
631 token_array[i] = heap_alloc((len+1)*sizeof(WCHAR));
632 memcpy(token_array[i], string, len*sizeof(WCHAR));
633 token_array[i][len] = '\0';
634 string = next_token+strlenW(token_string);
639 /***********************************************************************
640 * HTTP_FreeTokens (internal)
642 * Frees memory returned from HTTP_Tokenize.
644 static void HTTP_FreeTokens(LPWSTR * token_array)
647 for (i = 0; token_array[i]; i++) heap_free(token_array[i]);
648 heap_free(token_array);
651 static void HTTP_FixURL(http_request_t *request)
653 static const WCHAR szSlash[] = { '/',0 };
654 static const WCHAR szHttp[] = { 'h','t','t','p',':','/','/', 0 };
656 /* If we don't have a path we set it to root */
657 if (NULL == request->path)
658 request->path = heap_strdupW(szSlash);
659 else /* remove \r and \n*/
661 int nLen = strlenW(request->path);
662 while ((nLen >0 ) && ((request->path[nLen-1] == '\r')||(request->path[nLen-1] == '\n')))
665 request->path[nLen]='\0';
667 /* Replace '\' with '/' */
670 if (request->path[nLen] == '\\') request->path[nLen]='/';
674 if(CSTR_EQUAL != CompareStringW( LOCALE_INVARIANT, NORM_IGNORECASE,
675 request->path, strlenW(request->path), szHttp, strlenW(szHttp) )
676 && request->path[0] != '/') /* not an absolute path ?? --> fix it !! */
678 WCHAR *fixurl = heap_alloc((strlenW(request->path) + 2)*sizeof(WCHAR));
680 strcpyW(fixurl + 1, request->path);
681 heap_free( request->path );
682 request->path = fixurl;
686 static LPWSTR HTTP_BuildHeaderRequestString( http_request_t *request, LPCWSTR verb, LPCWSTR path, LPCWSTR version )
688 LPWSTR requestString;
694 static const WCHAR szSpace[] = { ' ',0 };
695 static const WCHAR szColon[] = { ':',' ',0 };
696 static const WCHAR sztwocrlf[] = {'\r','\n','\r','\n', 0};
698 /* allocate space for an array of all the string pointers to be added */
699 len = (request->nCustHeaders)*4 + 10;
700 req = heap_alloc(len*sizeof(LPCWSTR));
702 /* add the verb, path and HTTP version string */
710 /* Append custom request headers */
711 for (i = 0; i < request->nCustHeaders; i++)
713 if (request->custHeaders[i].wFlags & HDR_ISREQUEST)
716 req[n++] = request->custHeaders[i].lpszField;
718 req[n++] = request->custHeaders[i].lpszValue;
720 TRACE("Adding custom header %s (%s)\n",
721 debugstr_w(request->custHeaders[i].lpszField),
722 debugstr_w(request->custHeaders[i].lpszValue));
727 ERR("oops. buffer overrun\n");
730 requestString = HTTP_build_req( req, 4 );
734 * Set (header) termination string for request
735 * Make sure there's exactly two new lines at the end of the request
737 p = &requestString[strlenW(requestString)-1];
738 while ( (*p == '\n') || (*p == '\r') )
740 strcpyW( p+1, sztwocrlf );
742 return requestString;
745 static void HTTP_ProcessCookies( http_request_t *request )
749 LPHTTPHEADERW setCookieHeader;
751 if(request->hdr.dwFlags & INTERNET_FLAG_NO_COOKIES)
754 while((HeaderIndex = HTTP_GetCustomHeaderIndex(request, szSet_Cookie, numCookies++, FALSE)) != -1)
760 setCookieHeader = &request->custHeaders[HeaderIndex];
762 if (!setCookieHeader->lpszValue)
765 host = HTTP_GetHeader(request, hostW);
769 data = strchrW(setCookieHeader->lpszValue, '=');
773 name = heap_strndupW(setCookieHeader->lpszValue, data-setCookieHeader->lpszValue);
778 set_cookie(host->lpszValue, request->path, name, data);
783 static void strip_spaces(LPWSTR start)
788 while (*str == ' ' && *str != '\0')
792 memmove(start, str, sizeof(WCHAR) * (strlenW(str) + 1));
794 end = start + strlenW(start) - 1;
795 while (end >= start && *end == ' ')
802 static inline BOOL is_basic_auth_value( LPCWSTR pszAuthValue, LPWSTR *pszRealm )
804 static const WCHAR szBasic[] = {'B','a','s','i','c'}; /* Note: not nul-terminated */
805 static const WCHAR szRealm[] = {'r','e','a','l','m'}; /* Note: not nul-terminated */
807 is_basic = !strncmpiW(pszAuthValue, szBasic, ARRAYSIZE(szBasic)) &&
808 ((pszAuthValue[ARRAYSIZE(szBasic)] == ' ') || !pszAuthValue[ARRAYSIZE(szBasic)]);
809 if (is_basic && pszRealm)
812 LPCWSTR ptr = &pszAuthValue[ARRAYSIZE(szBasic)];
816 token = strchrW(ptr,'=');
820 while (*realm == ' ' && *realm != '\0')
822 if(!strncmpiW(realm, szRealm, ARRAYSIZE(szRealm)) &&
823 (realm[ARRAYSIZE(szRealm)] == ' ' || realm[ARRAYSIZE(szRealm)] == '='))
826 while (*token == ' ' && *token != '\0')
830 *pszRealm = heap_strdupW(token);
831 strip_spaces(*pszRealm);
838 static void destroy_authinfo( struct HttpAuthInfo *authinfo )
840 if (!authinfo) return;
842 if (SecIsValidHandle(&authinfo->ctx))
843 DeleteSecurityContext(&authinfo->ctx);
844 if (SecIsValidHandle(&authinfo->cred))
845 FreeCredentialsHandle(&authinfo->cred);
847 heap_free(authinfo->auth_data);
848 heap_free(authinfo->scheme);
852 static UINT retrieve_cached_basic_authorization(LPWSTR host, LPWSTR realm, LPSTR *auth_data)
854 basicAuthorizationData *ad;
857 TRACE("Looking for authorization for %s:%s\n",debugstr_w(host),debugstr_w(realm));
859 EnterCriticalSection(&authcache_cs);
860 LIST_FOR_EACH_ENTRY(ad, &basicAuthorizationCache, basicAuthorizationData, entry)
862 if (!strcmpiW(host,ad->host) && !strcmpW(realm,ad->realm))
864 TRACE("Authorization found in cache\n");
865 *auth_data = heap_alloc(ad->authorizationLen);
866 memcpy(*auth_data,ad->authorization,ad->authorizationLen);
867 rc = ad->authorizationLen;
871 LeaveCriticalSection(&authcache_cs);
875 static void cache_basic_authorization(LPWSTR host, LPWSTR realm, LPSTR auth_data, UINT auth_data_len)
878 basicAuthorizationData* ad = NULL;
880 TRACE("caching authorization for %s:%s = %s\n",debugstr_w(host),debugstr_w(realm),debugstr_an(auth_data,auth_data_len));
882 EnterCriticalSection(&authcache_cs);
883 LIST_FOR_EACH(cursor, &basicAuthorizationCache)
885 basicAuthorizationData *check = LIST_ENTRY(cursor,basicAuthorizationData,entry);
886 if (!strcmpiW(host,check->host) && !strcmpW(realm,check->realm))
895 TRACE("Found match in cache, replacing\n");
896 heap_free(ad->authorization);
897 ad->authorization = heap_alloc(auth_data_len);
898 memcpy(ad->authorization, auth_data, auth_data_len);
899 ad->authorizationLen = auth_data_len;
903 ad = heap_alloc(sizeof(basicAuthorizationData));
904 ad->host = heap_strdupW(host);
905 ad->realm = heap_strdupW(realm);
906 ad->authorization = heap_alloc(auth_data_len);
907 memcpy(ad->authorization, auth_data, auth_data_len);
908 ad->authorizationLen = auth_data_len;
909 list_add_head(&basicAuthorizationCache,&ad->entry);
910 TRACE("authorization cached\n");
912 LeaveCriticalSection(&authcache_cs);
915 static BOOL retrieve_cached_authorization(LPWSTR host, LPWSTR scheme,
916 SEC_WINNT_AUTH_IDENTITY_W *nt_auth_identity)
918 authorizationData *ad;
920 TRACE("Looking for authorization for %s:%s\n", debugstr_w(host), debugstr_w(scheme));
922 EnterCriticalSection(&authcache_cs);
923 LIST_FOR_EACH_ENTRY(ad, &authorizationCache, authorizationData, entry) {
924 if(!strcmpiW(host, ad->host) && !strcmpiW(scheme, ad->scheme)) {
925 TRACE("Authorization found in cache\n");
927 nt_auth_identity->User = heap_strdupW(ad->user);
928 nt_auth_identity->Password = heap_strdupW(ad->password);
929 nt_auth_identity->Domain = heap_alloc(sizeof(WCHAR)*ad->domain_len);
930 if(!nt_auth_identity->User || !nt_auth_identity->Password ||
931 (!nt_auth_identity->Domain && ad->domain_len)) {
932 heap_free(nt_auth_identity->User);
933 heap_free(nt_auth_identity->Password);
934 heap_free(nt_auth_identity->Domain);
938 nt_auth_identity->Flags = SEC_WINNT_AUTH_IDENTITY_UNICODE;
939 nt_auth_identity->UserLength = ad->user_len;
940 nt_auth_identity->PasswordLength = ad->password_len;
941 memcpy(nt_auth_identity->Domain, ad->domain, sizeof(WCHAR)*ad->domain_len);
942 nt_auth_identity->DomainLength = ad->domain_len;
943 LeaveCriticalSection(&authcache_cs);
947 LeaveCriticalSection(&authcache_cs);
952 static void cache_authorization(LPWSTR host, LPWSTR scheme,
953 SEC_WINNT_AUTH_IDENTITY_W *nt_auth_identity)
955 authorizationData *ad;
958 TRACE("Caching authorization for %s:%s\n", debugstr_w(host), debugstr_w(scheme));
960 EnterCriticalSection(&authcache_cs);
961 LIST_FOR_EACH_ENTRY(ad, &authorizationCache, authorizationData, entry)
962 if(!strcmpiW(host, ad->host) && !strcmpiW(scheme, ad->scheme)) {
969 heap_free(ad->password);
970 heap_free(ad->domain);
972 ad = heap_alloc(sizeof(authorizationData));
974 LeaveCriticalSection(&authcache_cs);
978 ad->host = heap_strdupW(host);
979 ad->scheme = heap_strdupW(scheme);
980 list_add_head(&authorizationCache, &ad->entry);
983 ad->user = heap_strndupW(nt_auth_identity->User, nt_auth_identity->UserLength);
984 ad->password = heap_strndupW(nt_auth_identity->Password, nt_auth_identity->PasswordLength);
985 ad->domain = heap_strndupW(nt_auth_identity->Domain, nt_auth_identity->DomainLength);
986 ad->user_len = nt_auth_identity->UserLength;
987 ad->password_len = nt_auth_identity->PasswordLength;
988 ad->domain_len = nt_auth_identity->DomainLength;
990 if(!ad->host || !ad->scheme || !ad->user || !ad->password
991 || (nt_auth_identity->Domain && !ad->domain)) {
993 heap_free(ad->scheme);
995 heap_free(ad->password);
996 heap_free(ad->domain);
997 list_remove(&ad->entry);
1001 LeaveCriticalSection(&authcache_cs);
1004 static BOOL HTTP_DoAuthorization( http_request_t *request, LPCWSTR pszAuthValue,
1005 struct HttpAuthInfo **ppAuthInfo,
1006 LPWSTR domain_and_username, LPWSTR password,
1009 SECURITY_STATUS sec_status;
1010 struct HttpAuthInfo *pAuthInfo = *ppAuthInfo;
1012 LPWSTR szRealm = NULL;
1014 TRACE("%s\n", debugstr_w(pszAuthValue));
1021 pAuthInfo = heap_alloc(sizeof(*pAuthInfo));
1025 SecInvalidateHandle(&pAuthInfo->cred);
1026 SecInvalidateHandle(&pAuthInfo->ctx);
1027 memset(&pAuthInfo->exp, 0, sizeof(pAuthInfo->exp));
1028 pAuthInfo->attr = 0;
1029 pAuthInfo->auth_data = NULL;
1030 pAuthInfo->auth_data_len = 0;
1031 pAuthInfo->finished = FALSE;
1033 if (is_basic_auth_value(pszAuthValue,NULL))
1035 static const WCHAR szBasic[] = {'B','a','s','i','c',0};
1036 pAuthInfo->scheme = heap_strdupW(szBasic);
1037 if (!pAuthInfo->scheme)
1039 heap_free(pAuthInfo);
1046 SEC_WINNT_AUTH_IDENTITY_W nt_auth_identity;
1048 pAuthInfo->scheme = heap_strdupW(pszAuthValue);
1049 if (!pAuthInfo->scheme)
1051 heap_free(pAuthInfo);
1055 if (domain_and_username)
1057 WCHAR *user = strchrW(domain_and_username, '\\');
1058 WCHAR *domain = domain_and_username;
1060 /* FIXME: make sure scheme accepts SEC_WINNT_AUTH_IDENTITY before calling AcquireCredentialsHandle */
1062 pAuthData = &nt_auth_identity;
1067 user = domain_and_username;
1071 nt_auth_identity.Flags = SEC_WINNT_AUTH_IDENTITY_UNICODE;
1072 nt_auth_identity.User = user;
1073 nt_auth_identity.UserLength = strlenW(nt_auth_identity.User);
1074 nt_auth_identity.Domain = domain;
1075 nt_auth_identity.DomainLength = domain ? user - domain - 1 : 0;
1076 nt_auth_identity.Password = password;
1077 nt_auth_identity.PasswordLength = strlenW(nt_auth_identity.Password);
1079 cache_authorization(host, pAuthInfo->scheme, &nt_auth_identity);
1081 else if(retrieve_cached_authorization(host, pAuthInfo->scheme, &nt_auth_identity))
1082 pAuthData = &nt_auth_identity;
1084 /* use default credentials */
1087 sec_status = AcquireCredentialsHandleW(NULL, pAuthInfo->scheme,
1088 SECPKG_CRED_OUTBOUND, NULL,
1090 NULL, &pAuthInfo->cred,
1093 if(pAuthData && !domain_and_username) {
1094 heap_free(nt_auth_identity.User);
1095 heap_free(nt_auth_identity.Domain);
1096 heap_free(nt_auth_identity.Password);
1099 if (sec_status == SEC_E_OK)
1101 PSecPkgInfoW sec_pkg_info;
1102 sec_status = QuerySecurityPackageInfoW(pAuthInfo->scheme, &sec_pkg_info);
1103 if (sec_status == SEC_E_OK)
1105 pAuthInfo->max_token = sec_pkg_info->cbMaxToken;
1106 FreeContextBuffer(sec_pkg_info);
1109 if (sec_status != SEC_E_OK)
1111 WARN("AcquireCredentialsHandleW for scheme %s failed with error 0x%08x\n",
1112 debugstr_w(pAuthInfo->scheme), sec_status);
1113 heap_free(pAuthInfo->scheme);
1114 heap_free(pAuthInfo);
1118 *ppAuthInfo = pAuthInfo;
1120 else if (pAuthInfo->finished)
1123 if ((strlenW(pszAuthValue) < strlenW(pAuthInfo->scheme)) ||
1124 strncmpiW(pszAuthValue, pAuthInfo->scheme, strlenW(pAuthInfo->scheme)))
1126 ERR("authentication scheme changed from %s to %s\n",
1127 debugstr_w(pAuthInfo->scheme), debugstr_w(pszAuthValue));
1131 if (is_basic_auth_value(pszAuthValue,&szRealm))
1135 char *auth_data = NULL;
1136 UINT auth_data_len = 0;
1138 TRACE("basic authentication realm %s\n",debugstr_w(szRealm));
1140 if (!domain_and_username)
1142 if (host && szRealm)
1143 auth_data_len = retrieve_cached_basic_authorization(host, szRealm,&auth_data);
1144 if (auth_data_len == 0)
1152 userlen = WideCharToMultiByte(CP_UTF8, 0, domain_and_username, lstrlenW(domain_and_username), NULL, 0, NULL, NULL);
1153 passlen = WideCharToMultiByte(CP_UTF8, 0, password, lstrlenW(password), NULL, 0, NULL, NULL);
1155 /* length includes a nul terminator, which will be re-used for the ':' */
1156 auth_data = heap_alloc(userlen + 1 + passlen);
1163 WideCharToMultiByte(CP_UTF8, 0, domain_and_username, -1, auth_data, userlen, NULL, NULL);
1164 auth_data[userlen] = ':';
1165 WideCharToMultiByte(CP_UTF8, 0, password, -1, &auth_data[userlen+1], passlen, NULL, NULL);
1166 auth_data_len = userlen + 1 + passlen;
1167 if (host && szRealm)
1168 cache_basic_authorization(host, szRealm, auth_data, auth_data_len);
1171 pAuthInfo->auth_data = auth_data;
1172 pAuthInfo->auth_data_len = auth_data_len;
1173 pAuthInfo->finished = TRUE;
1179 LPCWSTR pszAuthData;
1180 SecBufferDesc out_desc, in_desc;
1182 unsigned char *buffer;
1183 ULONG context_req = ISC_REQ_CONNECTION | ISC_REQ_USE_DCE_STYLE |
1184 ISC_REQ_MUTUAL_AUTH | ISC_REQ_DELEGATE;
1186 in.BufferType = SECBUFFER_TOKEN;
1190 in_desc.ulVersion = 0;
1191 in_desc.cBuffers = 1;
1192 in_desc.pBuffers = ∈
1194 pszAuthData = pszAuthValue + strlenW(pAuthInfo->scheme);
1195 if (*pszAuthData == ' ')
1198 in.cbBuffer = HTTP_DecodeBase64(pszAuthData, NULL);
1199 in.pvBuffer = heap_alloc(in.cbBuffer);
1200 HTTP_DecodeBase64(pszAuthData, in.pvBuffer);
1203 buffer = heap_alloc(pAuthInfo->max_token);
1205 out.BufferType = SECBUFFER_TOKEN;
1206 out.cbBuffer = pAuthInfo->max_token;
1207 out.pvBuffer = buffer;
1209 out_desc.ulVersion = 0;
1210 out_desc.cBuffers = 1;
1211 out_desc.pBuffers = &out;
1213 sec_status = InitializeSecurityContextW(first ? &pAuthInfo->cred : NULL,
1214 first ? NULL : &pAuthInfo->ctx,
1215 first ? request->server->name : NULL,
1216 context_req, 0, SECURITY_NETWORK_DREP,
1217 in.pvBuffer ? &in_desc : NULL,
1218 0, &pAuthInfo->ctx, &out_desc,
1219 &pAuthInfo->attr, &pAuthInfo->exp);
1220 if (sec_status == SEC_E_OK)
1222 pAuthInfo->finished = TRUE;
1223 pAuthInfo->auth_data = out.pvBuffer;
1224 pAuthInfo->auth_data_len = out.cbBuffer;
1225 TRACE("sending last auth packet\n");
1227 else if (sec_status == SEC_I_CONTINUE_NEEDED)
1229 pAuthInfo->auth_data = out.pvBuffer;
1230 pAuthInfo->auth_data_len = out.cbBuffer;
1231 TRACE("sending next auth packet\n");
1235 ERR("InitializeSecurityContextW returned error 0x%08x\n", sec_status);
1236 heap_free(out.pvBuffer);
1237 destroy_authinfo(pAuthInfo);
1246 /***********************************************************************
1247 * HTTP_HttpAddRequestHeadersW (internal)
1249 static DWORD HTTP_HttpAddRequestHeadersW(http_request_t *request,
1250 LPCWSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
1255 DWORD len, res = ERROR_HTTP_INVALID_HEADER;
1257 TRACE("copying header: %s\n", debugstr_wn(lpszHeader, dwHeaderLength));
1259 if( dwHeaderLength == ~0U )
1260 len = strlenW(lpszHeader);
1262 len = dwHeaderLength;
1263 buffer = heap_alloc(sizeof(WCHAR)*(len+1));
1264 lstrcpynW( buffer, lpszHeader, len + 1);
1270 LPWSTR * pFieldAndValue;
1272 lpszEnd = lpszStart;
1274 while (*lpszEnd != '\0')
1276 if (*lpszEnd == '\r' || *lpszEnd == '\n')
1281 if (*lpszStart == '\0')
1284 if (*lpszEnd == '\r' || *lpszEnd == '\n')
1287 lpszEnd++; /* Jump over newline */
1289 TRACE("interpreting header %s\n", debugstr_w(lpszStart));
1290 if (*lpszStart == '\0')
1292 /* Skip 0-length headers */
1293 lpszStart = lpszEnd;
1294 res = ERROR_SUCCESS;
1297 pFieldAndValue = HTTP_InterpretHttpHeader(lpszStart);
1300 res = HTTP_VerifyValidHeader(request, pFieldAndValue[0]);
1301 if (res == ERROR_SUCCESS)
1302 res = HTTP_ProcessHeader(request, pFieldAndValue[0],
1303 pFieldAndValue[1], dwModifier | HTTP_ADDHDR_FLAG_REQ);
1304 HTTP_FreeTokens(pFieldAndValue);
1307 lpszStart = lpszEnd;
1308 } while (res == ERROR_SUCCESS);
1314 /***********************************************************************
1315 * HttpAddRequestHeadersW (WININET.@)
1317 * Adds one or more HTTP header to the request handler
1320 * On Windows if dwHeaderLength includes the trailing '\0', then
1321 * HttpAddRequestHeadersW() adds it too. However this results in an
1322 * invalid HTTP header which is rejected by some servers so we probably
1323 * don't need to match Windows on that point.
1330 BOOL WINAPI HttpAddRequestHeadersW(HINTERNET hHttpRequest,
1331 LPCWSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
1333 http_request_t *request;
1334 DWORD res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
1336 TRACE("%p, %s, %i, %i\n", hHttpRequest, debugstr_wn(lpszHeader, dwHeaderLength), dwHeaderLength, dwModifier);
1341 request = (http_request_t*) get_handle_object( hHttpRequest );
1342 if (request && request->hdr.htype == WH_HHTTPREQ)
1343 res = HTTP_HttpAddRequestHeadersW( request, lpszHeader, dwHeaderLength, dwModifier );
1345 WININET_Release( &request->hdr );
1347 if(res != ERROR_SUCCESS)
1349 return res == ERROR_SUCCESS;
1352 /***********************************************************************
1353 * HttpAddRequestHeadersA (WININET.@)
1355 * Adds one or more HTTP header to the request handler
1362 BOOL WINAPI HttpAddRequestHeadersA(HINTERNET hHttpRequest,
1363 LPCSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
1369 TRACE("%p, %s, %i, %i\n", hHttpRequest, debugstr_an(lpszHeader, dwHeaderLength), dwHeaderLength, dwModifier);
1371 len = MultiByteToWideChar( CP_ACP, 0, lpszHeader, dwHeaderLength, NULL, 0 );
1372 hdr = heap_alloc(len*sizeof(WCHAR));
1373 MultiByteToWideChar( CP_ACP, 0, lpszHeader, dwHeaderLength, hdr, len );
1374 if( dwHeaderLength != ~0U )
1375 dwHeaderLength = len;
1377 r = HttpAddRequestHeadersW( hHttpRequest, hdr, dwHeaderLength, dwModifier );
1383 static void free_accept_types( WCHAR **accept_types )
1385 WCHAR *ptr, **types = accept_types;
1388 while ((ptr = *types))
1393 heap_free( accept_types );
1396 static WCHAR **convert_accept_types( const char **accept_types )
1399 const char **types = accept_types;
1401 BOOL invalid_pointer = FALSE;
1403 if (!types) return NULL;
1409 /* find out how many there are */
1410 if (*types && **types)
1412 TRACE("accept type: %s\n", debugstr_a(*types));
1418 WARN("invalid accept type pointer\n");
1419 invalid_pointer = TRUE;
1424 if (invalid_pointer) return NULL;
1425 if (!(typesW = heap_alloc( sizeof(WCHAR *) * (count + 1) ))) return NULL;
1427 types = accept_types;
1430 if (*types && **types) typesW[count++] = heap_strdupAtoW( *types );
1433 typesW[count] = NULL;
1437 /***********************************************************************
1438 * HttpOpenRequestA (WININET.@)
1440 * Open a HTTP request handle
1443 * HINTERNET a HTTP request handle on success
1447 HINTERNET WINAPI HttpOpenRequestA(HINTERNET hHttpSession,
1448 LPCSTR lpszVerb, LPCSTR lpszObjectName, LPCSTR lpszVersion,
1449 LPCSTR lpszReferrer , LPCSTR *lpszAcceptTypes,
1450 DWORD dwFlags, DWORD_PTR dwContext)
1452 LPWSTR szVerb = NULL, szObjectName = NULL;
1453 LPWSTR szVersion = NULL, szReferrer = NULL, *szAcceptTypes = NULL;
1454 HINTERNET rc = FALSE;
1456 TRACE("(%p, %s, %s, %s, %s, %p, %08x, %08lx)\n", hHttpSession,
1457 debugstr_a(lpszVerb), debugstr_a(lpszObjectName),
1458 debugstr_a(lpszVersion), debugstr_a(lpszReferrer), lpszAcceptTypes,
1459 dwFlags, dwContext);
1463 szVerb = heap_strdupAtoW(lpszVerb);
1470 szObjectName = heap_strdupAtoW(lpszObjectName);
1471 if ( !szObjectName )
1477 szVersion = heap_strdupAtoW(lpszVersion);
1484 szReferrer = heap_strdupAtoW(lpszReferrer);
1489 szAcceptTypes = convert_accept_types( lpszAcceptTypes );
1490 rc = HttpOpenRequestW(hHttpSession, szVerb, szObjectName, szVersion, szReferrer,
1491 (const WCHAR **)szAcceptTypes, dwFlags, dwContext);
1494 free_accept_types(szAcceptTypes);
1495 heap_free(szReferrer);
1496 heap_free(szVersion);
1497 heap_free(szObjectName);
1502 /***********************************************************************
1505 static UINT HTTP_EncodeBase64( LPCSTR bin, unsigned int len, LPWSTR base64 )
1508 static const CHAR HTTP_Base64Enc[] =
1509 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
1513 /* first 6 bits, all from bin[0] */
1514 base64[n++] = HTTP_Base64Enc[(bin[0] & 0xfc) >> 2];
1515 x = (bin[0] & 3) << 4;
1517 /* next 6 bits, 2 from bin[0] and 4 from bin[1] */
1520 base64[n++] = HTTP_Base64Enc[x];
1525 base64[n++] = HTTP_Base64Enc[ x | ( (bin[1]&0xf0) >> 4 ) ];
1526 x = ( bin[1] & 0x0f ) << 2;
1528 /* next 6 bits 4 from bin[1] and 2 from bin[2] */
1531 base64[n++] = HTTP_Base64Enc[x];
1535 base64[n++] = HTTP_Base64Enc[ x | ( (bin[2]&0xc0 ) >> 6 ) ];
1537 /* last 6 bits, all from bin [2] */
1538 base64[n++] = HTTP_Base64Enc[ bin[2] & 0x3f ];
1546 #define CH(x) (((x) >= 'A' && (x) <= 'Z') ? (x) - 'A' : \
1547 ((x) >= 'a' && (x) <= 'z') ? (x) - 'a' + 26 : \
1548 ((x) >= '0' && (x) <= '9') ? (x) - '0' + 52 : \
1549 ((x) == '+') ? 62 : ((x) == '/') ? 63 : -1)
1550 static const signed char HTTP_Base64Dec[256] =
1552 CH( 0),CH( 1),CH( 2),CH( 3),CH( 4),CH( 5),CH( 6),CH( 7),CH( 8),CH( 9),
1553 CH(10),CH(11),CH(12),CH(13),CH(14),CH(15),CH(16),CH(17),CH(18),CH(19),
1554 CH(20),CH(21),CH(22),CH(23),CH(24),CH(25),CH(26),CH(27),CH(28),CH(29),
1555 CH(30),CH(31),CH(32),CH(33),CH(34),CH(35),CH(36),CH(37),CH(38),CH(39),
1556 CH(40),CH(41),CH(42),CH(43),CH(44),CH(45),CH(46),CH(47),CH(48),CH(49),
1557 CH(50),CH(51),CH(52),CH(53),CH(54),CH(55),CH(56),CH(57),CH(58),CH(59),
1558 CH(60),CH(61),CH(62),CH(63),CH(64),CH(65),CH(66),CH(67),CH(68),CH(69),
1559 CH(70),CH(71),CH(72),CH(73),CH(74),CH(75),CH(76),CH(77),CH(78),CH(79),
1560 CH(80),CH(81),CH(82),CH(83),CH(84),CH(85),CH(86),CH(87),CH(88),CH(89),
1561 CH(90),CH(91),CH(92),CH(93),CH(94),CH(95),CH(96),CH(97),CH(98),CH(99),
1562 CH(100),CH(101),CH(102),CH(103),CH(104),CH(105),CH(106),CH(107),CH(108),CH(109),
1563 CH(110),CH(111),CH(112),CH(113),CH(114),CH(115),CH(116),CH(117),CH(118),CH(119),
1564 CH(120),CH(121),CH(122),CH(123),CH(124),CH(125),CH(126),CH(127),CH(128),CH(129),
1565 CH(130),CH(131),CH(132),CH(133),CH(134),CH(135),CH(136),CH(137),CH(138),CH(139),
1566 CH(140),CH(141),CH(142),CH(143),CH(144),CH(145),CH(146),CH(147),CH(148),CH(149),
1567 CH(150),CH(151),CH(152),CH(153),CH(154),CH(155),CH(156),CH(157),CH(158),CH(159),
1568 CH(160),CH(161),CH(162),CH(163),CH(164),CH(165),CH(166),CH(167),CH(168),CH(169),
1569 CH(170),CH(171),CH(172),CH(173),CH(174),CH(175),CH(176),CH(177),CH(178),CH(179),
1570 CH(180),CH(181),CH(182),CH(183),CH(184),CH(185),CH(186),CH(187),CH(188),CH(189),
1571 CH(190),CH(191),CH(192),CH(193),CH(194),CH(195),CH(196),CH(197),CH(198),CH(199),
1572 CH(200),CH(201),CH(202),CH(203),CH(204),CH(205),CH(206),CH(207),CH(208),CH(209),
1573 CH(210),CH(211),CH(212),CH(213),CH(214),CH(215),CH(216),CH(217),CH(218),CH(219),
1574 CH(220),CH(221),CH(222),CH(223),CH(224),CH(225),CH(226),CH(227),CH(228),CH(229),
1575 CH(230),CH(231),CH(232),CH(233),CH(234),CH(235),CH(236),CH(237),CH(238),CH(239),
1576 CH(240),CH(241),CH(242),CH(243),CH(244),CH(245),CH(246),CH(247),CH(248), CH(249),
1577 CH(250),CH(251),CH(252),CH(253),CH(254),CH(255),
1581 /***********************************************************************
1584 static UINT HTTP_DecodeBase64( LPCWSTR base64, LPSTR bin )
1592 if (base64[0] >= ARRAYSIZE(HTTP_Base64Dec) ||
1593 ((in[0] = HTTP_Base64Dec[base64[0]]) == -1) ||
1594 base64[1] >= ARRAYSIZE(HTTP_Base64Dec) ||
1595 ((in[1] = HTTP_Base64Dec[base64[1]]) == -1))
1597 WARN("invalid base64: %s\n", debugstr_w(base64));
1601 bin[n] = (unsigned char) (in[0] << 2 | in[1] >> 4);
1604 if ((base64[2] == '=') && (base64[3] == '='))
1606 if (base64[2] > ARRAYSIZE(HTTP_Base64Dec) ||
1607 ((in[2] = HTTP_Base64Dec[base64[2]]) == -1))
1609 WARN("invalid base64: %s\n", debugstr_w(&base64[2]));
1613 bin[n] = (unsigned char) (in[1] << 4 | in[2] >> 2);
1616 if (base64[3] == '=')
1618 if (base64[3] > ARRAYSIZE(HTTP_Base64Dec) ||
1619 ((in[3] = HTTP_Base64Dec[base64[3]]) == -1))
1621 WARN("invalid base64: %s\n", debugstr_w(&base64[3]));
1625 bin[n] = (unsigned char) (((in[2] << 6) & 0xc0) | in[3]);
1634 /***********************************************************************
1635 * HTTP_InsertAuthorization
1637 * Insert or delete the authorization field in the request header.
1639 static BOOL HTTP_InsertAuthorization( http_request_t *request, struct HttpAuthInfo *pAuthInfo, LPCWSTR header )
1643 static const WCHAR wszSpace[] = {' ',0};
1644 static const WCHAR wszBasic[] = {'B','a','s','i','c',0};
1646 WCHAR *authorization = NULL;
1648 if (pAuthInfo->auth_data_len)
1650 /* scheme + space + base64 encoded data (3/2/1 bytes data -> 4 bytes of characters) */
1651 len = strlenW(pAuthInfo->scheme)+1+((pAuthInfo->auth_data_len+2)*4)/3;
1652 authorization = heap_alloc((len+1)*sizeof(WCHAR));
1656 strcpyW(authorization, pAuthInfo->scheme);
1657 strcatW(authorization, wszSpace);
1658 HTTP_EncodeBase64(pAuthInfo->auth_data,
1659 pAuthInfo->auth_data_len,
1660 authorization+strlenW(authorization));
1662 /* clear the data as it isn't valid now that it has been sent to the
1663 * server, unless it's Basic authentication which doesn't do
1664 * connection tracking */
1665 if (strcmpiW(pAuthInfo->scheme, wszBasic))
1667 heap_free(pAuthInfo->auth_data);
1668 pAuthInfo->auth_data = NULL;
1669 pAuthInfo->auth_data_len = 0;
1673 TRACE("Inserting authorization: %s\n", debugstr_w(authorization));
1675 HTTP_ProcessHeader(request, header, authorization, HTTP_ADDHDR_FLAG_REQ | HTTP_ADDHDR_FLAG_REPLACE);
1676 heap_free(authorization);
1681 static WCHAR *build_proxy_path_url(http_request_t *req)
1686 len = strlenW(req->server->scheme_host_port);
1687 size = len + strlenW(req->path) + 1;
1688 if(*req->path != '/')
1690 url = heap_alloc(size * sizeof(WCHAR));
1694 memcpy(url, req->server->scheme_host_port, len*sizeof(WCHAR));
1695 if(*req->path != '/')
1698 strcpyW(url+len, req->path);
1700 TRACE("url=%s\n", debugstr_w(url));
1704 /***********************************************************************
1705 * HTTP_DealWithProxy
1707 static BOOL HTTP_DealWithProxy(appinfo_t *hIC, http_session_t *session, http_request_t *request)
1709 static const WCHAR protoHttp[] = { 'h','t','t','p',0 };
1710 static const WCHAR szHttp[] = { 'h','t','t','p',':','/','/',0 };
1711 static const WCHAR szFormat[] = { 'h','t','t','p',':','/','/','%','s',0 };
1712 WCHAR buf[INTERNET_MAX_HOST_NAME_LENGTH];
1713 WCHAR protoProxy[INTERNET_MAX_URL_LENGTH];
1714 DWORD protoProxyLen = INTERNET_MAX_URL_LENGTH;
1715 WCHAR proxy[INTERNET_MAX_URL_LENGTH];
1716 static WCHAR szNul[] = { 0 };
1717 URL_COMPONENTSW UrlComponents;
1718 server_t *new_server;
1721 memset( &UrlComponents, 0, sizeof UrlComponents );
1722 UrlComponents.dwStructSize = sizeof UrlComponents;
1723 UrlComponents.lpszHostName = buf;
1724 UrlComponents.dwHostNameLength = INTERNET_MAX_HOST_NAME_LENGTH;
1726 if (!INTERNET_FindProxyForProtocol(hIC->proxy, protoHttp, protoProxy, &protoProxyLen))
1728 if( CSTR_EQUAL != CompareStringW(LOCALE_SYSTEM_DEFAULT, NORM_IGNORECASE,
1729 protoProxy,strlenW(szHttp),szHttp,strlenW(szHttp)) )
1730 sprintfW(proxy, szFormat, protoProxy);
1732 strcpyW(proxy, protoProxy);
1733 if( !InternetCrackUrlW(proxy, 0, 0, &UrlComponents) )
1735 if( UrlComponents.dwHostNameLength == 0 )
1738 if( !request->path )
1739 request->path = szNul;
1741 is_https = (UrlComponents.nScheme == INTERNET_SCHEME_HTTPS);
1742 if (is_https && UrlComponents.nPort == INTERNET_INVALID_PORT_NUMBER)
1743 UrlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
1745 new_server = get_server(UrlComponents.lpszHostName, UrlComponents.nPort, is_https, TRUE);
1749 request->proxy = new_server;
1751 TRACE("proxy server=%s port=%d\n", debugstr_w(new_server->name), new_server->port);
1755 static DWORD HTTP_ResolveName(http_request_t *request)
1757 server_t *server = request->proxy ? request->proxy : request->server;
1761 if(server->addr_len)
1762 return ERROR_SUCCESS;
1764 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
1765 INTERNET_STATUS_RESOLVING_NAME,
1767 (strlenW(server->name)+1) * sizeof(WCHAR));
1769 addr_len = sizeof(server->addr);
1770 if (!GetAddress(server->name, server->port, (struct sockaddr *)&server->addr, &addr_len))
1771 return ERROR_INTERNET_NAME_NOT_RESOLVED;
1773 switch(server->addr.ss_family) {
1775 addr = &((struct sockaddr_in *)&server->addr)->sin_addr;
1778 addr = &((struct sockaddr_in6 *)&server->addr)->sin6_addr;
1781 WARN("unsupported family %d\n", server->addr.ss_family);
1782 return ERROR_INTERNET_NAME_NOT_RESOLVED;
1785 server->addr_len = addr_len;
1786 inet_ntop(server->addr.ss_family, addr, server->addr_str, sizeof(server->addr_str));
1787 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
1788 INTERNET_STATUS_NAME_RESOLVED,
1789 server->addr_str, strlen(server->addr_str)+1);
1791 TRACE("resolved %s to %s\n", debugstr_w(server->name), server->addr_str);
1792 return ERROR_SUCCESS;
1795 static BOOL HTTP_GetRequestURL(http_request_t *req, LPWSTR buf)
1797 static const WCHAR http[] = { 'h','t','t','p',':','/','/',0 };
1798 static const WCHAR https[] = { 'h','t','t','p','s',':','/','/',0 };
1799 static const WCHAR slash[] = { '/',0 };
1800 LPHTTPHEADERW host_header;
1803 host_header = HTTP_GetHeader(req, hostW);
1807 if (req->hdr.dwFlags & INTERNET_FLAG_SECURE)
1811 strcpyW(buf, scheme);
1812 strcatW(buf, host_header->lpszValue);
1813 if (req->path[0] != '/')
1814 strcatW(buf, slash);
1815 strcatW(buf, req->path);
1820 /***********************************************************************
1821 * HTTPREQ_Destroy (internal)
1823 * Deallocate request handle
1826 static void HTTPREQ_Destroy(object_header_t *hdr)
1828 http_request_t *request = (http_request_t*) hdr;
1833 if(request->hCacheFile) {
1834 CloseHandle(request->hCacheFile);
1835 DeleteFileW(request->cacheFile);
1837 heap_free(request->cacheFile);
1839 request->read_section.DebugInfo->Spare[0] = 0;
1840 DeleteCriticalSection( &request->read_section );
1841 WININET_Release(&request->session->hdr);
1843 destroy_authinfo(request->authInfo);
1844 destroy_authinfo(request->proxyAuthInfo);
1847 server_release(request->server);
1849 server_release(request->proxy);
1851 heap_free(request->path);
1852 heap_free(request->verb);
1853 heap_free(request->rawHeaders);
1854 heap_free(request->version);
1855 heap_free(request->statusText);
1857 for (i = 0; i < request->nCustHeaders; i++)
1859 heap_free(request->custHeaders[i].lpszField);
1860 heap_free(request->custHeaders[i].lpszValue);
1862 destroy_data_stream(request->data_stream);
1863 heap_free(request->custHeaders);
1866 static void http_release_netconn(http_request_t *req, BOOL reuse)
1868 TRACE("%p %p\n",req, req->netconn);
1873 if(reuse && req->netconn->keep_alive) {
1876 EnterCriticalSection(&connection_pool_cs);
1878 list_add_head(&req->netconn->server->conn_pool, &req->netconn->pool_entry);
1879 req->netconn->keep_until = GetTickCount64() + COLLECT_TIME;
1880 req->netconn = NULL;
1882 run_collector = !collector_running;
1883 collector_running = TRUE;
1885 LeaveCriticalSection(&connection_pool_cs);
1888 HANDLE thread = NULL;
1891 GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, (const WCHAR*)WININET_hModule, &module);
1893 thread = CreateThread(NULL, 0, collect_connections_proc, NULL, 0, NULL);
1895 EnterCriticalSection(&connection_pool_cs);
1896 collector_running = FALSE;
1897 LeaveCriticalSection(&connection_pool_cs);
1900 FreeLibrary(module);
1903 CloseHandle(thread);
1908 INTERNET_SendCallback(&req->hdr, req->hdr.dwContext,
1909 INTERNET_STATUS_CLOSING_CONNECTION, 0, 0);
1911 free_netconn(req->netconn);
1912 req->netconn = NULL;
1914 INTERNET_SendCallback(&req->hdr, req->hdr.dwContext,
1915 INTERNET_STATUS_CONNECTION_CLOSED, 0, 0);
1918 static BOOL HTTP_KeepAlive(http_request_t *request)
1920 WCHAR szVersion[10];
1921 WCHAR szConnectionResponse[20];
1922 DWORD dwBufferSize = sizeof(szVersion);
1923 BOOL keepalive = FALSE;
1925 /* as per RFC 2068, S8.1.2.1, if the client is HTTP/1.1 then assume that
1926 * the connection is keep-alive by default */
1927 if (HTTP_HttpQueryInfoW(request, HTTP_QUERY_VERSION, szVersion, &dwBufferSize, NULL) == ERROR_SUCCESS
1928 && !strcmpiW(szVersion, g_szHttp1_1))
1933 dwBufferSize = sizeof(szConnectionResponse);
1934 if (HTTP_HttpQueryInfoW(request, HTTP_QUERY_PROXY_CONNECTION, szConnectionResponse, &dwBufferSize, NULL) == ERROR_SUCCESS
1935 || HTTP_HttpQueryInfoW(request, HTTP_QUERY_CONNECTION, szConnectionResponse, &dwBufferSize, NULL) == ERROR_SUCCESS)
1937 keepalive = !strcmpiW(szConnectionResponse, szKeepAlive);
1943 static void HTTPREQ_CloseConnection(object_header_t *hdr)
1945 http_request_t *req = (http_request_t*)hdr;
1947 http_release_netconn(req, drain_content(req, FALSE));
1950 static DWORD HTTPREQ_QueryOption(object_header_t *hdr, DWORD option, void *buffer, DWORD *size, BOOL unicode)
1952 http_request_t *req = (http_request_t*)hdr;
1955 case INTERNET_OPTION_DIAGNOSTIC_SOCKET_INFO:
1957 INTERNET_DIAGNOSTIC_SOCKET_INFO *info = buffer;
1959 FIXME("INTERNET_DIAGNOSTIC_SOCKET_INFO stub\n");
1961 if (*size < sizeof(INTERNET_DIAGNOSTIC_SOCKET_INFO))
1962 return ERROR_INSUFFICIENT_BUFFER;
1963 *size = sizeof(INTERNET_DIAGNOSTIC_SOCKET_INFO);
1964 /* FIXME: can't get a SOCKET from our connection since we don't use
1968 /* FIXME: get source port from req->netConnection */
1969 info->SourcePort = 0;
1970 info->DestPort = req->server->port;
1972 if (HTTP_KeepAlive(req))
1973 info->Flags |= IDSI_FLAG_KEEP_ALIVE;
1975 info->Flags |= IDSI_FLAG_PROXY;
1976 if (req->netconn->secure)
1977 info->Flags |= IDSI_FLAG_SECURE;
1979 return ERROR_SUCCESS;
1983 TRACE("Queried undocumented option 98, forwarding to INTERNET_OPTION_SECURITY_FLAGS\n");
1985 case INTERNET_OPTION_SECURITY_FLAGS:
1989 if (*size < sizeof(ULONG))
1990 return ERROR_INSUFFICIENT_BUFFER;
1992 *size = sizeof(DWORD);
1993 flags = req->netconn ? req->netconn->security_flags : req->security_flags | req->server->security_flags;
1994 *(DWORD *)buffer = flags;
1996 TRACE("INTERNET_OPTION_SECURITY_FLAGS %x\n", flags);
1997 return ERROR_SUCCESS;
2000 case INTERNET_OPTION_HANDLE_TYPE:
2001 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
2003 if (*size < sizeof(ULONG))
2004 return ERROR_INSUFFICIENT_BUFFER;
2006 *size = sizeof(DWORD);
2007 *(DWORD*)buffer = INTERNET_HANDLE_TYPE_HTTP_REQUEST;
2008 return ERROR_SUCCESS;
2010 case INTERNET_OPTION_URL: {
2011 WCHAR url[INTERNET_MAX_URL_LENGTH];
2016 static const WCHAR httpW[] = {'h','t','t','p',':','/','/',0};
2018 TRACE("INTERNET_OPTION_URL\n");
2020 host = HTTP_GetHeader(req, hostW);
2021 strcpyW(url, httpW);
2022 strcatW(url, host->lpszValue);
2023 if (NULL != (pch = strchrW(url + strlenW(httpW), ':')))
2025 strcatW(url, req->path);
2027 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url));
2030 len = (strlenW(url)+1) * sizeof(WCHAR);
2032 return ERROR_INSUFFICIENT_BUFFER;
2035 strcpyW(buffer, url);
2036 return ERROR_SUCCESS;
2038 len = WideCharToMultiByte(CP_ACP, 0, url, -1, buffer, *size, NULL, NULL);
2040 return ERROR_INSUFFICIENT_BUFFER;
2043 return ERROR_SUCCESS;
2047 case INTERNET_OPTION_CACHE_TIMESTAMPS: {
2048 INTERNET_CACHE_ENTRY_INFOW *info;
2049 INTERNET_CACHE_TIMESTAMPS *ts = buffer;
2050 WCHAR url[INTERNET_MAX_URL_LENGTH];
2051 DWORD nbytes, error;
2054 TRACE("INTERNET_OPTION_CACHE_TIMESTAMPS\n");
2056 if (*size < sizeof(*ts))
2058 *size = sizeof(*ts);
2059 return ERROR_INSUFFICIENT_BUFFER;
2062 HTTP_GetRequestURL(req, url);
2063 ret = GetUrlCacheEntryInfoW(url, NULL, &nbytes);
2064 error = GetLastError();
2065 if (!ret && error == ERROR_INSUFFICIENT_BUFFER)
2067 if (!(info = heap_alloc(nbytes)))
2068 return ERROR_OUTOFMEMORY;
2070 GetUrlCacheEntryInfoW(url, info, &nbytes);
2072 ts->ftExpires = info->ExpireTime;
2073 ts->ftLastModified = info->LastModifiedTime;
2076 *size = sizeof(*ts);
2077 return ERROR_SUCCESS;
2082 case INTERNET_OPTION_DATAFILE_NAME: {
2085 TRACE("INTERNET_OPTION_DATAFILE_NAME\n");
2087 if(!req->cacheFile) {
2089 return ERROR_INTERNET_ITEM_NOT_FOUND;
2093 req_size = (lstrlenW(req->cacheFile)+1) * sizeof(WCHAR);
2094 if(*size < req_size)
2095 return ERROR_INSUFFICIENT_BUFFER;
2098 memcpy(buffer, req->cacheFile, *size);
2099 return ERROR_SUCCESS;
2101 req_size = WideCharToMultiByte(CP_ACP, 0, req->cacheFile, -1, NULL, 0, NULL, NULL);
2102 if (req_size > *size)
2103 return ERROR_INSUFFICIENT_BUFFER;
2105 *size = WideCharToMultiByte(CP_ACP, 0, req->cacheFile,
2106 -1, buffer, *size, NULL, NULL);
2107 return ERROR_SUCCESS;
2111 case INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT: {
2112 PCCERT_CONTEXT context;
2114 if(*size < sizeof(INTERNET_CERTIFICATE_INFOA)) {
2115 *size = sizeof(INTERNET_CERTIFICATE_INFOA);
2116 return ERROR_INSUFFICIENT_BUFFER;
2119 context = (PCCERT_CONTEXT)NETCON_GetCert(req->netconn);
2121 INTERNET_CERTIFICATE_INFOA *info = (INTERNET_CERTIFICATE_INFOA*)buffer;
2124 memset(info, 0, sizeof(*info));
2125 info->ftExpiry = context->pCertInfo->NotAfter;
2126 info->ftStart = context->pCertInfo->NotBefore;
2127 len = CertNameToStrA(context->dwCertEncodingType,
2128 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR|CERT_NAME_STR_CRLF_FLAG, NULL, 0);
2129 info->lpszSubjectInfo = LocalAlloc(0, len);
2130 if(info->lpszSubjectInfo)
2131 CertNameToStrA(context->dwCertEncodingType,
2132 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR|CERT_NAME_STR_CRLF_FLAG,
2133 info->lpszSubjectInfo, len);
2134 len = CertNameToStrA(context->dwCertEncodingType,
2135 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR|CERT_NAME_STR_CRLF_FLAG, NULL, 0);
2136 info->lpszIssuerInfo = LocalAlloc(0, len);
2137 if(info->lpszIssuerInfo)
2138 CertNameToStrA(context->dwCertEncodingType,
2139 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR|CERT_NAME_STR_CRLF_FLAG,
2140 info->lpszIssuerInfo, len);
2141 info->dwKeySize = NETCON_GetCipherStrength(req->netconn);
2142 CertFreeCertificateContext(context);
2143 return ERROR_SUCCESS;
2145 return ERROR_NOT_SUPPORTED;
2147 case INTERNET_OPTION_CONNECT_TIMEOUT:
2148 if (*size < sizeof(DWORD))
2149 return ERROR_INSUFFICIENT_BUFFER;
2151 *size = sizeof(DWORD);
2152 *(DWORD *)buffer = req->connect_timeout;
2153 return ERROR_SUCCESS;
2154 case INTERNET_OPTION_REQUEST_FLAGS: {
2157 if (*size < sizeof(DWORD))
2158 return ERROR_INSUFFICIENT_BUFFER;
2160 /* FIXME: Add support for:
2161 * INTERNET_REQFLAG_FROM_CACHE
2162 * INTERNET_REQFLAG_CACHE_WRITE_DISABLED
2166 flags |= INTERNET_REQFLAG_VIA_PROXY;
2167 if(!req->rawHeaders)
2168 flags |= INTERNET_REQFLAG_NO_HEADERS;
2170 TRACE("INTERNET_OPTION_REQUEST_FLAGS returning %x\n", flags);
2172 *size = sizeof(DWORD);
2173 *(DWORD*)buffer = flags;
2174 return ERROR_SUCCESS;
2178 return INET_QueryOption(hdr, option, buffer, size, unicode);
2181 static DWORD HTTPREQ_SetOption(object_header_t *hdr, DWORD option, void *buffer, DWORD size)
2183 http_request_t *req = (http_request_t*)hdr;
2186 case 99: /* Undocumented, seems to be INTERNET_OPTION_SECURITY_FLAGS with argument validation */
2187 TRACE("Undocumented option 99\n");
2189 if (!buffer || size != sizeof(DWORD))
2190 return ERROR_INVALID_PARAMETER;
2191 if(*(DWORD*)buffer & ~SECURITY_SET_MASK)
2192 return ERROR_INTERNET_OPTION_NOT_SETTABLE;
2195 case INTERNET_OPTION_SECURITY_FLAGS:
2199 if (!buffer || size != sizeof(DWORD))
2200 return ERROR_INVALID_PARAMETER;
2201 flags = *(DWORD *)buffer;
2202 TRACE("INTERNET_OPTION_SECURITY_FLAGS %08x\n", flags);
2203 flags &= SECURITY_SET_MASK;
2204 req->security_flags |= flags;
2206 req->netconn->security_flags |= flags;
2207 return ERROR_SUCCESS;
2209 case INTERNET_OPTION_CONNECT_TIMEOUT:
2210 if (!buffer || size != sizeof(DWORD)) return ERROR_INVALID_PARAMETER;
2211 req->connect_timeout = *(DWORD *)buffer;
2212 return ERROR_SUCCESS;
2214 case INTERNET_OPTION_SEND_TIMEOUT:
2215 if (!buffer || size != sizeof(DWORD)) return ERROR_INVALID_PARAMETER;
2216 req->send_timeout = *(DWORD *)buffer;
2217 return ERROR_SUCCESS;
2219 case INTERNET_OPTION_RECEIVE_TIMEOUT:
2220 if (!buffer || size != sizeof(DWORD)) return ERROR_INVALID_PARAMETER;
2221 req->receive_timeout = *(DWORD *)buffer;
2222 return ERROR_SUCCESS;
2224 case INTERNET_OPTION_USERNAME:
2225 heap_free(req->session->userName);
2226 if (!(req->session->userName = heap_strdupW(buffer))) return ERROR_OUTOFMEMORY;
2227 return ERROR_SUCCESS;
2229 case INTERNET_OPTION_PASSWORD:
2230 heap_free(req->session->password);
2231 if (!(req->session->password = heap_strdupW(buffer))) return ERROR_OUTOFMEMORY;
2232 return ERROR_SUCCESS;
2233 case INTERNET_OPTION_HTTP_DECODING:
2234 if(size != sizeof(BOOL))
2235 return ERROR_INVALID_PARAMETER;
2236 req->decoding = *(BOOL*)buffer;
2237 return ERROR_SUCCESS;
2240 return INET_SetOption(hdr, option, buffer, size);
2243 static void commit_cache_entry(http_request_t *req)
2245 WCHAR url[INTERNET_MAX_URL_LENGTH];
2249 CloseHandle(req->hCacheFile);
2250 req->hCacheFile = NULL;
2252 if(HTTP_GetRequestURL(req, url)) {
2255 headersLen = req->rawHeaders ? strlenW(req->rawHeaders) : 0;
2256 CommitUrlCacheEntryW(url, req->cacheFile, req->expires,
2257 req->last_modified, NORMAL_CACHE_ENTRY,
2258 req->rawHeaders, headersLen, NULL, 0);
2262 static void create_cache_entry(http_request_t *req)
2264 static const WCHAR no_cacheW[] = {'n','o','-','c','a','c','h','e',0};
2265 static const WCHAR no_storeW[] = {'n','o','-','s','t','o','r','e',0};
2267 WCHAR url[INTERNET_MAX_URL_LENGTH];
2268 WCHAR file_name[MAX_PATH+1];
2271 /* FIXME: We should free previous cache file earlier */
2272 heap_free(req->cacheFile);
2273 CloseHandle(req->hCacheFile);
2274 req->hCacheFile = NULL;
2276 if(req->hdr.dwFlags & INTERNET_FLAG_NO_CACHE_WRITE)
2280 int header_idx = HTTP_GetCustomHeaderIndex(req, szCache_Control, 0, FALSE);
2281 if(header_idx!=-1 && (!strcmpiW(req->custHeaders[header_idx].lpszValue, no_cacheW)
2282 || !strcmpiW(req->custHeaders[header_idx].lpszValue, no_storeW)))
2287 if(!(req->hdr.dwFlags & INTERNET_FLAG_NEED_FILE))
2290 FIXME("INTERNET_FLAG_NEED_FILE is not supported correctly\n");
2293 b = HTTP_GetRequestURL(req, url);
2295 WARN("Could not get URL\n");
2299 b = CreateUrlCacheEntryW(url, req->contentLength == ~0u ? 0 : req->contentLength, NULL, file_name, 0);
2301 WARN("Could not create cache entry: %08x\n", GetLastError());
2305 req->cacheFile = heap_strdupW(file_name);
2306 req->hCacheFile = CreateFileW(req->cacheFile, GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE,
2307 NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
2308 if(req->hCacheFile == INVALID_HANDLE_VALUE) {
2309 WARN("Could not create file: %u\n", GetLastError());
2310 req->hCacheFile = NULL;
2314 if(req->read_size) {
2317 b = WriteFile(req->hCacheFile, req->read_buf+req->read_pos, req->read_size, &written, NULL);
2319 FIXME("WriteFile failed: %u\n", GetLastError());
2321 if(req->data_stream->vtbl->end_of_data(req->data_stream, req))
2322 commit_cache_entry(req);
2326 /* read some more data into the read buffer (the read section must be held) */
2327 static DWORD read_more_data( http_request_t *req, int maxlen )
2334 /* move existing data to the start of the buffer */
2336 memmove( req->read_buf, req->read_buf + req->read_pos, req->read_size );
2340 if (maxlen == -1) maxlen = sizeof(req->read_buf);
2342 res = NETCON_recv( req->netconn, req->read_buf + req->read_size,
2343 maxlen - req->read_size, 0, &len );
2344 if(res == ERROR_SUCCESS)
2345 req->read_size += len;
2350 /* remove some amount of data from the read buffer (the read section must be held) */
2351 static void remove_data( http_request_t *req, int count )
2353 if (!(req->read_size -= count)) req->read_pos = 0;
2354 else req->read_pos += count;
2357 static BOOL read_line( http_request_t *req, LPSTR buffer, DWORD *len )
2359 int count, bytes_read, pos = 0;
2362 EnterCriticalSection( &req->read_section );
2365 BYTE *eol = memchr( req->read_buf + req->read_pos, '\n', req->read_size );
2369 count = eol - (req->read_buf + req->read_pos);
2370 bytes_read = count + 1;
2372 else count = bytes_read = req->read_size;
2374 count = min( count, *len - pos );
2375 memcpy( buffer + pos, req->read_buf + req->read_pos, count );
2377 remove_data( req, bytes_read );
2380 if ((res = read_more_data( req, -1 )) != ERROR_SUCCESS || !req->read_size)
2383 TRACE( "returning empty string %u\n", res);
2384 LeaveCriticalSection( &req->read_section );
2385 INTERNET_SetLastError(res);
2389 LeaveCriticalSection( &req->read_section );
2393 if (pos && buffer[pos - 1] == '\r') pos--;
2396 buffer[*len - 1] = 0;
2397 TRACE( "returning %s\n", debugstr_a(buffer));
2401 /* check if we have reached the end of the data to read (the read section must be held) */
2402 static BOOL end_of_read_data( http_request_t *req )
2404 return !req->read_size && req->data_stream->vtbl->end_of_data(req->data_stream, req);
2407 static DWORD read_http_stream(http_request_t *req, BYTE *buf, DWORD size, DWORD *read, read_mode_t read_mode)
2411 res = req->data_stream->vtbl->read(req->data_stream, req, buf, size, read, read_mode);
2412 assert(*read <= size);
2414 if(req->hCacheFile) {
2419 bres = WriteFile(req->hCacheFile, buf, *read, &written, NULL);
2421 FIXME("WriteFile failed: %u\n", GetLastError());
2424 if(req->data_stream->vtbl->end_of_data(req->data_stream, req))
2425 commit_cache_entry(req);
2431 /* fetch some more data into the read buffer (the read section must be held) */
2432 static DWORD refill_read_buffer(http_request_t *req, read_mode_t read_mode, DWORD *read_bytes)
2436 if(req->read_size == sizeof(req->read_buf))
2437 return ERROR_SUCCESS;
2441 memmove(req->read_buf, req->read_buf+req->read_pos, req->read_size);
2445 res = read_http_stream(req, req->read_buf+req->read_size, sizeof(req->read_buf) - req->read_size,
2447 req->read_size += read;
2449 TRACE("read %u bytes, read_size %u\n", read, req->read_size);
2455 /* return the size of data available to be read immediately (the read section must be held) */
2456 static DWORD get_avail_data( http_request_t *req )
2458 return req->read_size + req->data_stream->vtbl->get_avail_data(req->data_stream, req);
2461 static DWORD netconn_get_avail_data(data_stream_t *stream, http_request_t *req)
2463 netconn_stream_t *netconn_stream = (netconn_stream_t*)stream;
2467 NETCON_query_data_available(req->netconn, &avail);
2468 return netconn_stream->content_length == ~0u
2470 : min(avail, netconn_stream->content_length-netconn_stream->content_read);
2473 static BOOL netconn_end_of_data(data_stream_t *stream, http_request_t *req)
2475 netconn_stream_t *netconn_stream = (netconn_stream_t*)stream;
2476 return netconn_stream->content_read == netconn_stream->content_length || !req->netconn;
2479 static DWORD netconn_read(data_stream_t *stream, http_request_t *req, BYTE *buf, DWORD size,
2480 DWORD *read, read_mode_t read_mode)
2482 netconn_stream_t *netconn_stream = (netconn_stream_t*)stream;
2485 size = min(size, netconn_stream->content_length-netconn_stream->content_read);
2487 if(read_mode == READMODE_NOBLOCK) {
2488 DWORD avail = netconn_get_avail_data(stream, req);
2493 if(size && req->netconn) {
2494 if(NETCON_recv(req->netconn, buf, size, read_mode == READMODE_SYNC ? MSG_WAITALL : 0, &len) != ERROR_SUCCESS)
2497 netconn_stream->content_length = netconn_stream->content_read;
2500 netconn_stream->content_read += *read = len;
2501 TRACE("read %u bytes\n", len);
2502 return ERROR_SUCCESS;
2505 static BOOL netconn_drain_content(data_stream_t *stream, http_request_t *req)
2507 netconn_stream_t *netconn_stream = (netconn_stream_t*)stream;
2512 if(netconn_end_of_data(stream, req))
2516 avail = netconn_get_avail_data(stream, req);
2520 if(NETCON_recv(req->netconn, buf, min(avail, sizeof(buf)), 0, &len) != ERROR_SUCCESS)
2523 netconn_stream->content_read += len;
2524 }while(netconn_stream->content_read < netconn_stream->content_length);
2529 static void netconn_destroy(data_stream_t *stream)
2533 static const data_stream_vtbl_t netconn_stream_vtbl = {
2534 netconn_get_avail_data,
2535 netconn_end_of_data,
2537 netconn_drain_content,
2541 /* read some more data into the read buffer (the read section must be held) */
2542 static DWORD read_more_chunked_data(chunked_stream_t *stream, http_request_t *req, int maxlen)
2547 if (stream->buf_pos)
2549 /* move existing data to the start of the buffer */
2550 if(stream->buf_size)
2551 memmove(stream->buf, stream->buf + stream->buf_pos, stream->buf_size);
2552 stream->buf_pos = 0;
2555 if (maxlen == -1) maxlen = sizeof(stream->buf);
2557 res = NETCON_recv( req->netconn, stream->buf + stream->buf_size,
2558 maxlen - stream->buf_size, 0, &len );
2559 if(res == ERROR_SUCCESS)
2560 stream->buf_size += len;
2565 /* remove some amount of data from the read buffer (the read section must be held) */
2566 static void remove_chunked_data(chunked_stream_t *stream, int count)
2568 if (!(stream->buf_size -= count)) stream->buf_pos = 0;
2569 else stream->buf_pos += count;
2572 /* discard data contents until we reach end of line (the read section must be held) */
2573 static DWORD discard_chunked_eol(chunked_stream_t *stream, http_request_t *req)
2579 BYTE *eol = memchr(stream->buf + stream->buf_pos, '\n', stream->buf_size);
2582 remove_chunked_data(stream, (eol + 1) - (stream->buf + stream->buf_pos));
2585 stream->buf_pos = stream->buf_size = 0; /* discard everything */
2586 if ((res = read_more_chunked_data(stream, req, -1)) != ERROR_SUCCESS) return res;
2587 } while (stream->buf_size);
2588 return ERROR_SUCCESS;
2591 /* read the size of the next chunk (the read section must be held) */
2592 static DWORD start_next_chunk(chunked_stream_t *stream, http_request_t *req)
2595 DWORD chunk_size = 0, res;
2597 if(stream->chunk_size != ~0u && (res = discard_chunked_eol(stream, req)) != ERROR_SUCCESS)
2602 while (stream->buf_size)
2604 char ch = stream->buf[stream->buf_pos];
2605 if (ch >= '0' && ch <= '9') chunk_size = chunk_size * 16 + ch - '0';
2606 else if (ch >= 'a' && ch <= 'f') chunk_size = chunk_size * 16 + ch - 'a' + 10;
2607 else if (ch >= 'A' && ch <= 'F') chunk_size = chunk_size * 16 + ch - 'A' + 10;
2608 else if (ch == ';' || ch == '\r' || ch == '\n')
2610 TRACE( "reading %u byte chunk\n", chunk_size );
2611 stream->chunk_size = chunk_size;
2612 req->contentLength += chunk_size;
2613 return discard_chunked_eol(stream, req);
2615 remove_chunked_data(stream, 1);
2617 if ((res = read_more_chunked_data(stream, req, -1)) != ERROR_SUCCESS) return res;
2618 if (!stream->buf_size)
2620 stream->chunk_size = 0;
2621 return ERROR_SUCCESS;
2626 static DWORD chunked_get_avail_data(data_stream_t *stream, http_request_t *req)
2628 /* Allow reading only from read buffer */
2632 static BOOL chunked_end_of_data(data_stream_t *stream, http_request_t *req)
2634 chunked_stream_t *chunked_stream = (chunked_stream_t*)stream;
2635 return !chunked_stream->chunk_size;
2638 static DWORD chunked_read(data_stream_t *stream, http_request_t *req, BYTE *buf, DWORD size,
2639 DWORD *read, read_mode_t read_mode)
2641 chunked_stream_t *chunked_stream = (chunked_stream_t*)stream;
2642 DWORD read_bytes = 0, ret_read = 0, res = ERROR_SUCCESS;
2644 if(chunked_stream->chunk_size == ~0u) {
2645 res = start_next_chunk(chunked_stream, req);
2646 if(res != ERROR_SUCCESS)
2650 while(size && chunked_stream->chunk_size) {
2651 if(chunked_stream->buf_size) {
2652 read_bytes = min(size, min(chunked_stream->buf_size, chunked_stream->chunk_size));
2654 /* this could block */
2655 if(read_mode == READMODE_NOBLOCK && read_bytes == chunked_stream->chunk_size)
2658 memcpy(buf+ret_read, chunked_stream->buf+chunked_stream->buf_pos, read_bytes);
2659 remove_chunked_data(chunked_stream, read_bytes);
2661 read_bytes = min(size, chunked_stream->chunk_size);
2663 if(read_mode == READMODE_NOBLOCK) {
2666 if(!req->netconn || !NETCON_query_data_available(req->netconn, &avail) || !avail)
2668 if(read_bytes > avail)
2671 /* this could block */
2672 if(read_bytes == chunked_stream->chunk_size)
2676 res = NETCON_recv(req->netconn, (char *)buf+ret_read, read_bytes, 0, (int*)&read_bytes);
2677 if(res != ERROR_SUCCESS)
2681 chunked_stream->chunk_size -= read_bytes;
2683 ret_read += read_bytes;
2684 if(!chunked_stream->chunk_size) {
2685 assert(read_mode != READMODE_NOBLOCK);
2686 res = start_next_chunk(chunked_stream, req);
2687 if(res != ERROR_SUCCESS)
2691 if(read_mode == READMODE_ASYNC)
2692 read_mode = READMODE_NOBLOCK;
2695 TRACE("read %u bytes\n", ret_read);
2700 static BOOL chunked_drain_content(data_stream_t *stream, http_request_t *req)
2702 chunked_stream_t *chunked_stream = (chunked_stream_t*)stream;
2704 /* FIXME: we can do better */
2705 return !chunked_stream->chunk_size;
2708 static void chunked_destroy(data_stream_t *stream)
2710 chunked_stream_t *chunked_stream = (chunked_stream_t*)stream;
2711 heap_free(chunked_stream);
2714 static const data_stream_vtbl_t chunked_stream_vtbl = {
2715 chunked_get_avail_data,
2716 chunked_end_of_data,
2718 chunked_drain_content,
2722 /* set the request content length based on the headers */
2723 static DWORD set_content_length(http_request_t *request)
2725 static const WCHAR szChunked[] = {'c','h','u','n','k','e','d',0};
2729 if(request->status_code == HTTP_STATUS_NO_CONTENT) {
2730 request->contentLength = request->netconn_stream.content_length = 0;
2731 return ERROR_SUCCESS;
2734 size = sizeof(request->contentLength);
2735 if (HTTP_HttpQueryInfoW(request, HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_CONTENT_LENGTH,
2736 &request->contentLength, &size, NULL) != ERROR_SUCCESS)
2737 request->contentLength = ~0u;
2738 request->netconn_stream.content_length = request->contentLength;
2739 request->netconn_stream.content_read = request->read_size;
2741 size = sizeof(encoding);
2742 if (HTTP_HttpQueryInfoW(request, HTTP_QUERY_TRANSFER_ENCODING, encoding, &size, NULL) == ERROR_SUCCESS &&
2743 !strcmpiW(encoding, szChunked))
2745 chunked_stream_t *chunked_stream;
2747 chunked_stream = heap_alloc(sizeof(*chunked_stream));
2749 return ERROR_OUTOFMEMORY;
2751 chunked_stream->data_stream.vtbl = &chunked_stream_vtbl;
2752 chunked_stream->buf_size = chunked_stream->buf_pos = 0;
2753 chunked_stream->chunk_size = ~0u;
2755 if(request->read_size) {
2756 memcpy(chunked_stream->buf, request->read_buf+request->read_pos, request->read_size);
2757 chunked_stream->buf_size = request->read_size;
2758 request->read_size = request->read_pos = 0;
2761 request->data_stream = &chunked_stream->data_stream;
2762 request->contentLength = ~0u;
2763 request->read_chunked = TRUE;
2766 if(request->decoding) {
2769 static const WCHAR gzipW[] = {'g','z','i','p',0};
2771 encoding_idx = HTTP_GetCustomHeaderIndex(request, szContent_Encoding, 0, FALSE);
2772 if(encoding_idx != -1 && !strcmpiW(request->custHeaders[encoding_idx].lpszValue, gzipW))
2773 return init_gzip_stream(request);
2776 return ERROR_SUCCESS;
2779 static void send_request_complete(http_request_t *req, DWORD_PTR result, DWORD error)
2781 INTERNET_ASYNC_RESULT iar;
2783 iar.dwResult = result;
2784 iar.dwError = error;
2786 INTERNET_SendCallback(&req->hdr, req->hdr.dwContext, INTERNET_STATUS_REQUEST_COMPLETE, &iar,
2787 sizeof(INTERNET_ASYNC_RESULT));
2790 static void HTTP_ReceiveRequestData(http_request_t *req, BOOL first_notif, DWORD *ret_size)
2792 DWORD res, read = 0, avail = 0;
2797 EnterCriticalSection( &req->read_section );
2799 mode = first_notif && req->read_size ? READMODE_NOBLOCK : READMODE_ASYNC;
2800 res = refill_read_buffer(req, mode, &read);
2801 if(res == ERROR_SUCCESS)
2802 avail = get_avail_data(req);
2804 LeaveCriticalSection( &req->read_section );
2806 if(res != ERROR_SUCCESS || (mode != READMODE_NOBLOCK && !read)) {
2807 WARN("res %u read %u, closing connection\n", res, read);
2808 http_release_netconn(req, FALSE);
2811 if(res != ERROR_SUCCESS) {
2812 send_request_complete(req, 0, res);
2821 send_request_complete(req, req->session->hdr.dwInternalFlags & INET_OPENURL ? (DWORD_PTR)req->hdr.hInternet : 1, avail);
2824 /* read data from the http connection (the read section must be held) */
2825 static DWORD HTTPREQ_Read(http_request_t *req, void *buffer, DWORD size, DWORD *read, BOOL sync)
2827 DWORD current_read = 0, ret_read = 0;
2828 read_mode_t read_mode;
2829 DWORD res = ERROR_SUCCESS;
2831 read_mode = req->session->appInfo->hdr.dwFlags & INTERNET_FLAG_ASYNC ? READMODE_ASYNC : READMODE_SYNC;
2833 EnterCriticalSection( &req->read_section );
2835 if(req->read_size) {
2836 ret_read = min(size, req->read_size);
2837 memcpy(buffer, req->read_buf+req->read_pos, ret_read);
2838 req->read_size -= ret_read;
2839 req->read_pos += ret_read;
2840 if(read_mode == READMODE_ASYNC)
2841 read_mode = READMODE_NOBLOCK;
2844 if(ret_read < size) {
2845 res = read_http_stream(req, (BYTE*)buffer+ret_read, size-ret_read, ¤t_read, read_mode);
2846 ret_read += current_read;
2849 LeaveCriticalSection( &req->read_section );
2852 TRACE( "retrieved %u bytes (%u)\n", ret_read, req->contentLength );
2854 if(size && !ret_read)
2855 http_release_netconn(req, res == ERROR_SUCCESS);
2860 static BOOL drain_content(http_request_t *req, BOOL blocking)
2864 if(!req->netconn || req->contentLength == -1)
2867 if(!strcmpW(req->verb, szHEAD))
2871 return req->data_stream->vtbl->drain_content(req->data_stream, req);
2873 EnterCriticalSection( &req->read_section );
2876 DWORD bytes_read, res;
2879 res = HTTPREQ_Read(req, buf, sizeof(buf), &bytes_read, TRUE);
2880 if(res != ERROR_SUCCESS) {
2890 LeaveCriticalSection( &req->read_section );
2894 static DWORD HTTPREQ_ReadFile(object_header_t *hdr, void *buffer, DWORD size, DWORD *read)
2896 http_request_t *req = (http_request_t*)hdr;
2899 EnterCriticalSection( &req->read_section );
2900 if(hdr->dwError == INTERNET_HANDLE_IN_USE)
2901 hdr->dwError = ERROR_INTERNET_INTERNAL_ERROR;
2903 res = HTTPREQ_Read(req, buffer, size, read, TRUE);
2904 if(res == ERROR_SUCCESS)
2906 LeaveCriticalSection( &req->read_section );
2916 } read_file_ex_task_t;
2918 static void AsyncReadFileExProc(task_header_t *hdr)
2920 read_file_ex_task_t *task = (read_file_ex_task_t*)hdr;
2921 http_request_t *req = (http_request_t*)task->hdr.hdr;
2924 TRACE("INTERNETREADFILEEXW %p\n", task->hdr.hdr);
2926 res = HTTPREQ_Read(req, task->buf, task->size, task->ret_read, TRUE);
2927 send_request_complete(req, res == ERROR_SUCCESS, res);
2930 static DWORD HTTPREQ_ReadFileEx(object_header_t *hdr, void *buf, DWORD size, DWORD *ret_read,
2931 DWORD flags, DWORD_PTR context)
2934 http_request_t *req = (http_request_t*)hdr;
2935 DWORD res, read, cread, error = ERROR_SUCCESS;
2937 if (flags & ~(IRF_ASYNC|IRF_NO_WAIT))
2938 FIXME("these dwFlags aren't implemented: 0x%x\n", flags & ~(IRF_ASYNC|IRF_NO_WAIT));
2940 INTERNET_SendCallback(&req->hdr, req->hdr.dwContext, INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
2942 if (hdr->dwFlags & INTERNET_FLAG_ASYNC)
2944 read_file_ex_task_t *task;
2946 if (TryEnterCriticalSection( &req->read_section ))
2948 if (get_avail_data(req))
2950 res = HTTPREQ_Read(req, buf, size, &read, FALSE);
2951 LeaveCriticalSection( &req->read_section );
2954 LeaveCriticalSection( &req->read_section );
2957 task = alloc_async_task(&req->hdr, AsyncReadFileExProc, sizeof(*task));
2960 task->ret_read = ret_read;
2962 INTERNET_AsyncCall(&task->hdr);
2964 return ERROR_IO_PENDING;
2969 EnterCriticalSection( &req->read_section );
2970 if(hdr->dwError == ERROR_SUCCESS)
2971 hdr->dwError = INTERNET_HANDLE_IN_USE;
2972 else if(hdr->dwError == INTERNET_HANDLE_IN_USE)
2973 hdr->dwError = ERROR_INTERNET_INTERNAL_ERROR;
2976 res = HTTPREQ_Read(req, (char*)buf+read, size-read, &cread, !(flags & IRF_NO_WAIT));
2977 if(res != ERROR_SUCCESS)
2981 if(read == size || end_of_read_data(req))
2984 LeaveCriticalSection( &req->read_section );
2986 INTERNET_SendCallback(&req->hdr, req->hdr.dwContext, INTERNET_STATUS_RESPONSE_RECEIVED,
2987 &cread, sizeof(cread));
2988 INTERNET_SendCallback(&req->hdr, req->hdr.dwContext,
2989 INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
2991 EnterCriticalSection( &req->read_section );
2994 if(hdr->dwError == INTERNET_HANDLE_IN_USE)
2995 hdr->dwError = ERROR_SUCCESS;
2997 error = hdr->dwError;
2999 LeaveCriticalSection( &req->read_section );
3003 if (res == ERROR_SUCCESS) {
3004 INTERNET_SendCallback(&req->hdr, req->hdr.dwContext, INTERNET_STATUS_RESPONSE_RECEIVED,
3005 &read, sizeof(read));
3008 return res==ERROR_SUCCESS ? error : res;
3011 static DWORD HTTPREQ_WriteFile(object_header_t *hdr, const void *buffer, DWORD size, DWORD *written)
3014 http_request_t *request = (http_request_t*)hdr;
3016 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext, INTERNET_STATUS_SENDING_REQUEST, NULL, 0);
3019 res = NETCON_send(request->netconn, buffer, size, 0, (LPINT)written);
3020 if (res == ERROR_SUCCESS)
3021 request->bytesWritten += *written;
3023 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext, INTERNET_STATUS_REQUEST_SENT, written, sizeof(DWORD));
3030 } http_data_available_task_t;
3032 static void AsyncQueryDataAvailableProc(task_header_t *hdr)
3034 http_data_available_task_t *task = (http_data_available_task_t*)hdr;
3036 HTTP_ReceiveRequestData((http_request_t*)task->hdr.hdr, FALSE, task->ret_size);
3039 static DWORD HTTPREQ_QueryDataAvailable(object_header_t *hdr, DWORD *available, DWORD flags, DWORD_PTR ctx)
3041 http_request_t *req = (http_request_t*)hdr;
3043 TRACE("(%p %p %x %lx)\n", req, available, flags, ctx);
3045 if (req->session->appInfo->hdr.dwFlags & INTERNET_FLAG_ASYNC)
3047 http_data_available_task_t *task;
3049 /* never wait, if we can't enter the section we queue an async request right away */
3050 if (TryEnterCriticalSection( &req->read_section ))
3052 refill_read_buffer(req, READMODE_NOBLOCK, NULL);
3053 if ((*available = get_avail_data( req ))) goto done;
3054 if (end_of_read_data( req )) goto done;
3055 LeaveCriticalSection( &req->read_section );
3058 task = alloc_async_task(&req->hdr, AsyncQueryDataAvailableProc, sizeof(*task));
3059 task->ret_size = available;
3060 INTERNET_AsyncCall(&task->hdr);
3061 return ERROR_IO_PENDING;
3064 EnterCriticalSection( &req->read_section );
3066 if (!(*available = get_avail_data( req )) && !end_of_read_data( req ))
3068 refill_read_buffer( req, READMODE_ASYNC, NULL );
3069 *available = get_avail_data( req );
3073 LeaveCriticalSection( &req->read_section );
3075 TRACE( "returning %u\n", *available );
3076 return ERROR_SUCCESS;
3079 static const object_vtbl_t HTTPREQVtbl = {
3081 HTTPREQ_CloseConnection,
3082 HTTPREQ_QueryOption,
3087 HTTPREQ_QueryDataAvailable,
3091 /***********************************************************************
3092 * HTTP_HttpOpenRequestW (internal)
3094 * Open a HTTP request handle
3097 * HINTERNET a HTTP request handle on success
3101 static DWORD HTTP_HttpOpenRequestW(http_session_t *session,
3102 LPCWSTR lpszVerb, LPCWSTR lpszObjectName, LPCWSTR lpszVersion,
3103 LPCWSTR lpszReferrer , LPCWSTR *lpszAcceptTypes,
3104 DWORD dwFlags, DWORD_PTR dwContext, HINTERNET *ret)
3106 appinfo_t *hIC = session->appInfo;
3107 http_request_t *request;
3108 DWORD len, res = ERROR_SUCCESS;
3112 request = alloc_object(&session->hdr, &HTTPREQVtbl, sizeof(http_request_t));
3114 return ERROR_OUTOFMEMORY;
3116 request->hdr.htype = WH_HHTTPREQ;
3117 request->hdr.dwFlags = dwFlags;
3118 request->hdr.dwContext = dwContext;
3119 request->contentLength = ~0u;
3121 request->netconn_stream.data_stream.vtbl = &netconn_stream_vtbl;
3122 request->data_stream = &request->netconn_stream.data_stream;
3123 request->connect_timeout = session->connect_timeout;
3124 request->send_timeout = session->send_timeout;
3125 request->receive_timeout = session->receive_timeout;
3127 InitializeCriticalSection( &request->read_section );
3128 request->read_section.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": http_request_t.read_section");
3130 WININET_AddRef( &session->hdr );
3131 request->session = session;
3132 list_add_head( &session->hdr.children, &request->hdr.entry );
3134 request->server = get_server(session->hostName, session->hostPort, (dwFlags & INTERNET_FLAG_SECURE) != 0, TRUE);
3135 if(!request->server) {
3136 WININET_Release(&request->hdr);
3137 return ERROR_OUTOFMEMORY;
3140 if (dwFlags & INTERNET_FLAG_IGNORE_CERT_CN_INVALID)
3141 request->security_flags |= SECURITY_FLAG_IGNORE_CERT_CN_INVALID;
3142 if (dwFlags & INTERNET_FLAG_IGNORE_CERT_DATE_INVALID)
3143 request->security_flags |= SECURITY_FLAG_IGNORE_CERT_DATE_INVALID;
3145 if (lpszObjectName && *lpszObjectName) {
3149 rc = UrlEscapeW(lpszObjectName, NULL, &len, URL_ESCAPE_SPACES_ONLY);
3150 if (rc != E_POINTER)
3151 len = strlenW(lpszObjectName)+1;
3152 request->path = heap_alloc(len*sizeof(WCHAR));
3153 rc = UrlEscapeW(lpszObjectName, request->path, &len,
3154 URL_ESCAPE_SPACES_ONLY);
3157 ERR("Unable to escape string!(%s) (%d)\n",debugstr_w(lpszObjectName),rc);
3158 strcpyW(request->path,lpszObjectName);
3161 static const WCHAR slashW[] = {'/',0};
3163 request->path = heap_strdupW(slashW);
3166 if (lpszReferrer && *lpszReferrer)
3167 HTTP_ProcessHeader(request, HTTP_REFERER, lpszReferrer, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDHDR_FLAG_REQ);
3169 if (lpszAcceptTypes)
3172 for (i = 0; lpszAcceptTypes[i]; i++)
3174 if (!*lpszAcceptTypes[i]) continue;
3175 HTTP_ProcessHeader(request, HTTP_ACCEPT, lpszAcceptTypes[i],
3176 HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA |
3177 HTTP_ADDHDR_FLAG_REQ |
3178 (i == 0 ? HTTP_ADDHDR_FLAG_REPLACE : 0));
3182 request->verb = heap_strdupW(lpszVerb && *lpszVerb ? lpszVerb : szGET);
3183 request->version = heap_strdupW(lpszVersion && *lpszVersion ? lpszVersion : g_szHttp1_1);
3185 HTTP_ProcessHeader(request, hostW, request->server->canon_host_port, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDHDR_FLAG_REQ);
3187 if (session->hostPort == INTERNET_INVALID_PORT_NUMBER)
3188 session->hostPort = INTERNET_DEFAULT_HTTP_PORT;
3190 if (hIC->proxy && hIC->proxy[0])
3191 HTTP_DealWithProxy( hIC, session, request );
3193 INTERNET_SendCallback(&session->hdr, dwContext,
3194 INTERNET_STATUS_HANDLE_CREATED, &request->hdr.hInternet,
3197 TRACE("<-- %u (%p)\n", res, request);
3199 if(res != ERROR_SUCCESS) {
3200 WININET_Release( &request->hdr );
3205 *ret = request->hdr.hInternet;
3206 return ERROR_SUCCESS;
3209 /***********************************************************************
3210 * HttpOpenRequestW (WININET.@)
3212 * Open a HTTP request handle
3215 * HINTERNET a HTTP request handle on success
3219 HINTERNET WINAPI HttpOpenRequestW(HINTERNET hHttpSession,
3220 LPCWSTR lpszVerb, LPCWSTR lpszObjectName, LPCWSTR lpszVersion,
3221 LPCWSTR lpszReferrer , LPCWSTR *lpszAcceptTypes,
3222 DWORD dwFlags, DWORD_PTR dwContext)
3224 http_session_t *session;
3225 HINTERNET handle = NULL;
3228 TRACE("(%p, %s, %s, %s, %s, %p, %08x, %08lx)\n", hHttpSession,
3229 debugstr_w(lpszVerb), debugstr_w(lpszObjectName),
3230 debugstr_w(lpszVersion), debugstr_w(lpszReferrer), lpszAcceptTypes,
3231 dwFlags, dwContext);
3232 if(lpszAcceptTypes!=NULL)
3235 for(i=0;lpszAcceptTypes[i]!=NULL;i++)
3236 TRACE("\taccept type: %s\n",debugstr_w(lpszAcceptTypes[i]));
3239 session = (http_session_t*) get_handle_object( hHttpSession );
3240 if (NULL == session || session->hdr.htype != WH_HHTTPSESSION)
3242 res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
3247 * My tests seem to show that the windows version does not
3248 * become asynchronous until after this point. And anyhow
3249 * if this call was asynchronous then how would you get the
3250 * necessary HINTERNET pointer returned by this function.
3253 res = HTTP_HttpOpenRequestW(session, lpszVerb, lpszObjectName,
3254 lpszVersion, lpszReferrer, lpszAcceptTypes,
3255 dwFlags, dwContext, &handle);
3258 WININET_Release( &session->hdr );
3259 TRACE("returning %p\n", handle);
3260 if(res != ERROR_SUCCESS)
3265 static const LPCWSTR header_lookup[] = {
3266 szMime_Version, /* HTTP_QUERY_MIME_VERSION = 0 */
3267 szContent_Type, /* HTTP_QUERY_CONTENT_TYPE = 1 */
3268 szContent_Transfer_Encoding,/* HTTP_QUERY_CONTENT_TRANSFER_ENCODING = 2 */
3269 szContent_ID, /* HTTP_QUERY_CONTENT_ID = 3 */
3270 NULL, /* HTTP_QUERY_CONTENT_DESCRIPTION = 4 */
3271 szContent_Length, /* HTTP_QUERY_CONTENT_LENGTH = 5 */
3272 szContent_Language, /* HTTP_QUERY_CONTENT_LANGUAGE = 6 */
3273 szAllow, /* HTTP_QUERY_ALLOW = 7 */
3274 szPublic, /* HTTP_QUERY_PUBLIC = 8 */
3275 szDate, /* HTTP_QUERY_DATE = 9 */
3276 szExpires, /* HTTP_QUERY_EXPIRES = 10 */
3277 szLast_Modified, /* HTTP_QUERY_LAST_MODIFIED = 11 */
3278 NULL, /* HTTP_QUERY_MESSAGE_ID = 12 */
3279 szURI, /* HTTP_QUERY_URI = 13 */
3280 szFrom, /* HTTP_QUERY_DERIVED_FROM = 14 */
3281 NULL, /* HTTP_QUERY_COST = 15 */
3282 NULL, /* HTTP_QUERY_LINK = 16 */
3283 szPragma, /* HTTP_QUERY_PRAGMA = 17 */
3284 NULL, /* HTTP_QUERY_VERSION = 18 */
3285 szStatus, /* HTTP_QUERY_STATUS_CODE = 19 */
3286 NULL, /* HTTP_QUERY_STATUS_TEXT = 20 */
3287 NULL, /* HTTP_QUERY_RAW_HEADERS = 21 */
3288 NULL, /* HTTP_QUERY_RAW_HEADERS_CRLF = 22 */
3289 szConnection, /* HTTP_QUERY_CONNECTION = 23 */
3290 szAccept, /* HTTP_QUERY_ACCEPT = 24 */
3291 szAccept_Charset, /* HTTP_QUERY_ACCEPT_CHARSET = 25 */
3292 szAccept_Encoding, /* HTTP_QUERY_ACCEPT_ENCODING = 26 */
3293 szAccept_Language, /* HTTP_QUERY_ACCEPT_LANGUAGE = 27 */
3294 szAuthorization, /* HTTP_QUERY_AUTHORIZATION = 28 */
3295 szContent_Encoding, /* HTTP_QUERY_CONTENT_ENCODING = 29 */
3296 NULL, /* HTTP_QUERY_FORWARDED = 30 */
3297 NULL, /* HTTP_QUERY_FROM = 31 */
3298 szIf_Modified_Since, /* HTTP_QUERY_IF_MODIFIED_SINCE = 32 */
3299 szLocation, /* HTTP_QUERY_LOCATION = 33 */
3300 NULL, /* HTTP_QUERY_ORIG_URI = 34 */
3301 szReferer, /* HTTP_QUERY_REFERER = 35 */
3302 szRetry_After, /* HTTP_QUERY_RETRY_AFTER = 36 */
3303 szServer, /* HTTP_QUERY_SERVER = 37 */
3304 NULL, /* HTTP_TITLE = 38 */
3305 szUser_Agent, /* HTTP_QUERY_USER_AGENT = 39 */
3306 szWWW_Authenticate, /* HTTP_QUERY_WWW_AUTHENTICATE = 40 */
3307 szProxy_Authenticate, /* HTTP_QUERY_PROXY_AUTHENTICATE = 41 */
3308 szAccept_Ranges, /* HTTP_QUERY_ACCEPT_RANGES = 42 */
3309 szSet_Cookie, /* HTTP_QUERY_SET_COOKIE = 43 */
3310 szCookie, /* HTTP_QUERY_COOKIE = 44 */
3311 NULL, /* HTTP_QUERY_REQUEST_METHOD = 45 */
3312 NULL, /* HTTP_QUERY_REFRESH = 46 */
3313 szContent_Disposition, /* HTTP_QUERY_CONTENT_DISPOSITION = 47 */
3314 szAge, /* HTTP_QUERY_AGE = 48 */
3315 szCache_Control, /* HTTP_QUERY_CACHE_CONTROL = 49 */
3316 szContent_Base, /* HTTP_QUERY_CONTENT_BASE = 50 */
3317 szContent_Location, /* HTTP_QUERY_CONTENT_LOCATION = 51 */
3318 szContent_MD5, /* HTTP_QUERY_CONTENT_MD5 = 52 */
3319 szContent_Range, /* HTTP_QUERY_CONTENT_RANGE = 53 */
3320 szETag, /* HTTP_QUERY_ETAG = 54 */
3321 hostW, /* HTTP_QUERY_HOST = 55 */
3322 szIf_Match, /* HTTP_QUERY_IF_MATCH = 56 */
3323 szIf_None_Match, /* HTTP_QUERY_IF_NONE_MATCH = 57 */
3324 szIf_Range, /* HTTP_QUERY_IF_RANGE = 58 */
3325 szIf_Unmodified_Since, /* HTTP_QUERY_IF_UNMODIFIED_SINCE = 59 */
3326 szMax_Forwards, /* HTTP_QUERY_MAX_FORWARDS = 60 */
3327 szProxy_Authorization, /* HTTP_QUERY_PROXY_AUTHORIZATION = 61 */
3328 szRange, /* HTTP_QUERY_RANGE = 62 */
3329 szTransfer_Encoding, /* HTTP_QUERY_TRANSFER_ENCODING = 63 */
3330 szUpgrade, /* HTTP_QUERY_UPGRADE = 64 */
3331 szVary, /* HTTP_QUERY_VARY = 65 */
3332 szVia, /* HTTP_QUERY_VIA = 66 */
3333 szWarning, /* HTTP_QUERY_WARNING = 67 */
3334 szExpect, /* HTTP_QUERY_EXPECT = 68 */
3335 szProxy_Connection, /* HTTP_QUERY_PROXY_CONNECTION = 69 */
3336 szUnless_Modified_Since, /* HTTP_QUERY_UNLESS_MODIFIED_SINCE = 70 */
3339 #define LAST_TABLE_HEADER (sizeof(header_lookup)/sizeof(header_lookup[0]))
3341 /***********************************************************************
3342 * HTTP_HttpQueryInfoW (internal)
3344 static DWORD HTTP_HttpQueryInfoW(http_request_t *request, DWORD dwInfoLevel,
3345 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
3347 LPHTTPHEADERW lphttpHdr = NULL;
3348 BOOL request_only = dwInfoLevel & HTTP_QUERY_FLAG_REQUEST_HEADERS;
3349 INT requested_index = lpdwIndex ? *lpdwIndex : 0;
3350 DWORD level = (dwInfoLevel & ~HTTP_QUERY_MODIFIER_FLAGS_MASK);
3353 /* Find requested header structure */
3356 case HTTP_QUERY_CUSTOM:
3357 if (!lpBuffer) return ERROR_INVALID_PARAMETER;
3358 index = HTTP_GetCustomHeaderIndex(request, lpBuffer, requested_index, request_only);
3360 case HTTP_QUERY_RAW_HEADERS_CRLF:
3364 DWORD res = ERROR_INVALID_PARAMETER;
3367 headers = HTTP_BuildHeaderRequestString(request, request->verb, request->path, request->version);
3369 headers = request->rawHeaders;
3372 len = strlenW(headers) * sizeof(WCHAR);
3374 if (len + sizeof(WCHAR) > *lpdwBufferLength)
3376 len += sizeof(WCHAR);
3377 res = ERROR_INSUFFICIENT_BUFFER;
3382 memcpy(lpBuffer, headers, len + sizeof(WCHAR));
3385 len = strlenW(szCrLf) * sizeof(WCHAR);
3386 memcpy(lpBuffer, szCrLf, sizeof(szCrLf));
3388 TRACE("returning data: %s\n", debugstr_wn(lpBuffer, len / sizeof(WCHAR)));
3389 res = ERROR_SUCCESS;
3391 *lpdwBufferLength = len;
3393 if (request_only) heap_free(headers);
3396 case HTTP_QUERY_RAW_HEADERS:
3398 LPWSTR * ppszRawHeaderLines = HTTP_Tokenize(request->rawHeaders, szCrLf);
3400 LPWSTR pszString = lpBuffer;
3402 for (i = 0; ppszRawHeaderLines[i]; i++)
3403 size += strlenW(ppszRawHeaderLines[i]) + 1;
3405 if (size + 1 > *lpdwBufferLength/sizeof(WCHAR))
3407 HTTP_FreeTokens(ppszRawHeaderLines);
3408 *lpdwBufferLength = (size + 1) * sizeof(WCHAR);
3409 return ERROR_INSUFFICIENT_BUFFER;
3413 for (i = 0; ppszRawHeaderLines[i]; i++)
3415 DWORD len = strlenW(ppszRawHeaderLines[i]);
3416 memcpy(pszString, ppszRawHeaderLines[i], (len+1)*sizeof(WCHAR));
3420 TRACE("returning data: %s\n", debugstr_wn(lpBuffer, size));
3422 *lpdwBufferLength = size * sizeof(WCHAR);
3423 HTTP_FreeTokens(ppszRawHeaderLines);
3425 return ERROR_SUCCESS;
3427 case HTTP_QUERY_STATUS_TEXT:
3428 if (request->statusText)
3430 DWORD len = strlenW(request->statusText);
3431 if (len + 1 > *lpdwBufferLength/sizeof(WCHAR))
3433 *lpdwBufferLength = (len + 1) * sizeof(WCHAR);
3434 return ERROR_INSUFFICIENT_BUFFER;
3438 memcpy(lpBuffer, request->statusText, (len + 1) * sizeof(WCHAR));
3439 TRACE("returning data: %s\n", debugstr_wn(lpBuffer, len));
3441 *lpdwBufferLength = len * sizeof(WCHAR);
3442 return ERROR_SUCCESS;
3445 case HTTP_QUERY_VERSION:
3446 if (request->version)
3448 DWORD len = strlenW(request->version);
3449 if (len + 1 > *lpdwBufferLength/sizeof(WCHAR))
3451 *lpdwBufferLength = (len + 1) * sizeof(WCHAR);
3452 return ERROR_INSUFFICIENT_BUFFER;
3456 memcpy(lpBuffer, request->version, (len + 1) * sizeof(WCHAR));
3457 TRACE("returning data: %s\n", debugstr_wn(lpBuffer, len));
3459 *lpdwBufferLength = len * sizeof(WCHAR);
3460 return ERROR_SUCCESS;
3463 case HTTP_QUERY_CONTENT_ENCODING:
3464 index = HTTP_GetCustomHeaderIndex(request, header_lookup[request->read_gzip ? HTTP_QUERY_CONTENT_TYPE : level],
3465 requested_index,request_only);
3467 case HTTP_QUERY_STATUS_CODE: {
3468 DWORD res = ERROR_SUCCESS;
3471 return ERROR_HTTP_INVALID_QUERY_REQUEST;
3476 if(dwInfoLevel & HTTP_QUERY_FLAG_NUMBER) {
3477 if(*lpdwBufferLength >= sizeof(DWORD))
3478 *(DWORD*)lpBuffer = request->status_code;
3480 res = ERROR_INSUFFICIENT_BUFFER;
3481 *lpdwBufferLength = sizeof(DWORD);
3485 static const WCHAR formatW[] = {'%','u',0};
3487 size = sprintfW(buf, formatW, request->status_code) * sizeof(WCHAR);
3489 if(size <= *lpdwBufferLength) {
3490 memcpy(lpBuffer, buf, size+sizeof(WCHAR));
3492 size += sizeof(WCHAR);
3493 res = ERROR_INSUFFICIENT_BUFFER;
3496 *lpdwBufferLength = size;
3501 assert (LAST_TABLE_HEADER == (HTTP_QUERY_UNLESS_MODIFIED_SINCE + 1));
3503 if (level < LAST_TABLE_HEADER && header_lookup[level])
3504 index = HTTP_GetCustomHeaderIndex(request, header_lookup[level],
3505 requested_index,request_only);
3509 lphttpHdr = &request->custHeaders[index];
3511 /* Ensure header satisfies requested attributes */
3513 ((dwInfoLevel & HTTP_QUERY_FLAG_REQUEST_HEADERS) &&
3514 (~lphttpHdr->wFlags & HDR_ISREQUEST)))
3516 return ERROR_HTTP_HEADER_NOT_FOUND;
3519 if (lpdwIndex) (*lpdwIndex)++;
3521 /* coalesce value to requested type */
3522 if (dwInfoLevel & HTTP_QUERY_FLAG_NUMBER && lpBuffer)
3524 *(int *)lpBuffer = atoiW(lphttpHdr->lpszValue);
3525 TRACE(" returning number: %d\n", *(int *)lpBuffer);
3527 else if (dwInfoLevel & HTTP_QUERY_FLAG_SYSTEMTIME && lpBuffer)
3533 tmpTime = ConvertTimeString(lphttpHdr->lpszValue);
3535 tmpTM = *gmtime(&tmpTime);
3536 STHook = (SYSTEMTIME *)lpBuffer;
3537 STHook->wDay = tmpTM.tm_mday;
3538 STHook->wHour = tmpTM.tm_hour;
3539 STHook->wMilliseconds = 0;
3540 STHook->wMinute = tmpTM.tm_min;
3541 STHook->wDayOfWeek = tmpTM.tm_wday;
3542 STHook->wMonth = tmpTM.tm_mon + 1;
3543 STHook->wSecond = tmpTM.tm_sec;
3544 STHook->wYear = tmpTM.tm_year;
3546 TRACE(" returning time: %04d/%02d/%02d - %d - %02d:%02d:%02d.%02d\n",
3547 STHook->wYear, STHook->wMonth, STHook->wDay, STHook->wDayOfWeek,
3548 STHook->wHour, STHook->wMinute, STHook->wSecond, STHook->wMilliseconds);
3550 else if (lphttpHdr->lpszValue)
3552 DWORD len = (strlenW(lphttpHdr->lpszValue) + 1) * sizeof(WCHAR);
3554 if (len > *lpdwBufferLength)
3556 *lpdwBufferLength = len;
3557 return ERROR_INSUFFICIENT_BUFFER;
3561 memcpy(lpBuffer, lphttpHdr->lpszValue, len);
3562 TRACE("! returning string: %s\n", debugstr_w(lpBuffer));
3564 *lpdwBufferLength = len - sizeof(WCHAR);
3566 return ERROR_SUCCESS;
3569 /***********************************************************************
3570 * HttpQueryInfoW (WININET.@)
3572 * Queries for information about an HTTP request
3579 BOOL WINAPI HttpQueryInfoW(HINTERNET hHttpRequest, DWORD dwInfoLevel,
3580 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
3582 http_request_t *request;
3585 if (TRACE_ON(wininet)) {
3586 #define FE(x) { x, #x }
3587 static const wininet_flag_info query_flags[] = {
3588 FE(HTTP_QUERY_MIME_VERSION),
3589 FE(HTTP_QUERY_CONTENT_TYPE),
3590 FE(HTTP_QUERY_CONTENT_TRANSFER_ENCODING),
3591 FE(HTTP_QUERY_CONTENT_ID),
3592 FE(HTTP_QUERY_CONTENT_DESCRIPTION),
3593 FE(HTTP_QUERY_CONTENT_LENGTH),
3594 FE(HTTP_QUERY_CONTENT_LANGUAGE),
3595 FE(HTTP_QUERY_ALLOW),
3596 FE(HTTP_QUERY_PUBLIC),
3597 FE(HTTP_QUERY_DATE),
3598 FE(HTTP_QUERY_EXPIRES),
3599 FE(HTTP_QUERY_LAST_MODIFIED),
3600 FE(HTTP_QUERY_MESSAGE_ID),
3602 FE(HTTP_QUERY_DERIVED_FROM),
3603 FE(HTTP_QUERY_COST),
3604 FE(HTTP_QUERY_LINK),
3605 FE(HTTP_QUERY_PRAGMA),
3606 FE(HTTP_QUERY_VERSION),
3607 FE(HTTP_QUERY_STATUS_CODE),
3608 FE(HTTP_QUERY_STATUS_TEXT),
3609 FE(HTTP_QUERY_RAW_HEADERS),
3610 FE(HTTP_QUERY_RAW_HEADERS_CRLF),
3611 FE(HTTP_QUERY_CONNECTION),
3612 FE(HTTP_QUERY_ACCEPT),
3613 FE(HTTP_QUERY_ACCEPT_CHARSET),
3614 FE(HTTP_QUERY_ACCEPT_ENCODING),
3615 FE(HTTP_QUERY_ACCEPT_LANGUAGE),
3616 FE(HTTP_QUERY_AUTHORIZATION),
3617 FE(HTTP_QUERY_CONTENT_ENCODING),
3618 FE(HTTP_QUERY_FORWARDED),
3619 FE(HTTP_QUERY_FROM),
3620 FE(HTTP_QUERY_IF_MODIFIED_SINCE),
3621 FE(HTTP_QUERY_LOCATION),
3622 FE(HTTP_QUERY_ORIG_URI),
3623 FE(HTTP_QUERY_REFERER),
3624 FE(HTTP_QUERY_RETRY_AFTER),
3625 FE(HTTP_QUERY_SERVER),
3626 FE(HTTP_QUERY_TITLE),
3627 FE(HTTP_QUERY_USER_AGENT),
3628 FE(HTTP_QUERY_WWW_AUTHENTICATE),
3629 FE(HTTP_QUERY_PROXY_AUTHENTICATE),
3630 FE(HTTP_QUERY_ACCEPT_RANGES),
3631 FE(HTTP_QUERY_SET_COOKIE),
3632 FE(HTTP_QUERY_COOKIE),
3633 FE(HTTP_QUERY_REQUEST_METHOD),
3634 FE(HTTP_QUERY_REFRESH),
3635 FE(HTTP_QUERY_CONTENT_DISPOSITION),
3637 FE(HTTP_QUERY_CACHE_CONTROL),
3638 FE(HTTP_QUERY_CONTENT_BASE),
3639 FE(HTTP_QUERY_CONTENT_LOCATION),
3640 FE(HTTP_QUERY_CONTENT_MD5),
3641 FE(HTTP_QUERY_CONTENT_RANGE),
3642 FE(HTTP_QUERY_ETAG),
3643 FE(HTTP_QUERY_HOST),
3644 FE(HTTP_QUERY_IF_MATCH),
3645 FE(HTTP_QUERY_IF_NONE_MATCH),
3646 FE(HTTP_QUERY_IF_RANGE),
3647 FE(HTTP_QUERY_IF_UNMODIFIED_SINCE),
3648 FE(HTTP_QUERY_MAX_FORWARDS),
3649 FE(HTTP_QUERY_PROXY_AUTHORIZATION),
3650 FE(HTTP_QUERY_RANGE),
3651 FE(HTTP_QUERY_TRANSFER_ENCODING),
3652 FE(HTTP_QUERY_UPGRADE),
3653 FE(HTTP_QUERY_VARY),
3655 FE(HTTP_QUERY_WARNING),
3656 FE(HTTP_QUERY_CUSTOM)
3658 static const wininet_flag_info modifier_flags[] = {
3659 FE(HTTP_QUERY_FLAG_REQUEST_HEADERS),
3660 FE(HTTP_QUERY_FLAG_SYSTEMTIME),
3661 FE(HTTP_QUERY_FLAG_NUMBER),
3662 FE(HTTP_QUERY_FLAG_COALESCE)
3665 DWORD info_mod = dwInfoLevel & HTTP_QUERY_MODIFIER_FLAGS_MASK;
3666 DWORD info = dwInfoLevel & HTTP_QUERY_HEADER_MASK;
3669 TRACE("(%p, 0x%08x)--> %d\n", hHttpRequest, dwInfoLevel, info);
3670 TRACE(" Attribute:");
3671 for (i = 0; i < (sizeof(query_flags) / sizeof(query_flags[0])); i++) {
3672 if (query_flags[i].val == info) {
3673 TRACE(" %s", query_flags[i].name);
3677 if (i == (sizeof(query_flags) / sizeof(query_flags[0]))) {
3678 TRACE(" Unknown (%08x)", info);
3681 TRACE(" Modifier:");
3682 for (i = 0; i < (sizeof(modifier_flags) / sizeof(modifier_flags[0])); i++) {
3683 if (modifier_flags[i].val & info_mod) {
3684 TRACE(" %s", modifier_flags[i].name);
3685 info_mod &= ~ modifier_flags[i].val;
3690 TRACE(" Unknown (%08x)", info_mod);
3695 request = (http_request_t*) get_handle_object( hHttpRequest );
3696 if (NULL == request || request->hdr.htype != WH_HHTTPREQ)
3698 res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
3702 if (lpBuffer == NULL)
3703 *lpdwBufferLength = 0;
3704 res = HTTP_HttpQueryInfoW( request, dwInfoLevel,
3705 lpBuffer, lpdwBufferLength, lpdwIndex);
3709 WININET_Release( &request->hdr );
3711 TRACE("%u <--\n", res);
3712 if(res != ERROR_SUCCESS)
3714 return res == ERROR_SUCCESS;
3717 /***********************************************************************
3718 * HttpQueryInfoA (WININET.@)
3720 * Queries for information about an HTTP request
3727 BOOL WINAPI HttpQueryInfoA(HINTERNET hHttpRequest, DWORD dwInfoLevel,
3728 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
3734 if((dwInfoLevel & HTTP_QUERY_FLAG_NUMBER) ||
3735 (dwInfoLevel & HTTP_QUERY_FLAG_SYSTEMTIME))
3737 return HttpQueryInfoW( hHttpRequest, dwInfoLevel, lpBuffer,
3738 lpdwBufferLength, lpdwIndex );
3744 len = (*lpdwBufferLength)*sizeof(WCHAR);
3745 if ((dwInfoLevel & HTTP_QUERY_HEADER_MASK) == HTTP_QUERY_CUSTOM)
3747 alloclen = MultiByteToWideChar( CP_ACP, 0, lpBuffer, -1, NULL, 0 ) * sizeof(WCHAR);
3753 bufferW = heap_alloc(alloclen);
3754 /* buffer is in/out because of HTTP_QUERY_CUSTOM */
3755 if ((dwInfoLevel & HTTP_QUERY_HEADER_MASK) == HTTP_QUERY_CUSTOM)
3756 MultiByteToWideChar( CP_ACP, 0, lpBuffer, -1, bufferW, alloclen / sizeof(WCHAR) );
3763 result = HttpQueryInfoW( hHttpRequest, dwInfoLevel, bufferW,
3767 len = WideCharToMultiByte( CP_ACP,0, bufferW, len / sizeof(WCHAR) + 1,
3768 lpBuffer, *lpdwBufferLength, NULL, NULL );
3769 *lpdwBufferLength = len - 1;
3771 TRACE("lpBuffer: %s\n", debugstr_a(lpBuffer));
3774 /* since the strings being returned from HttpQueryInfoW should be
3775 * only ASCII characters, it is reasonable to assume that all of
3776 * the Unicode characters can be reduced to a single byte */
3777 *lpdwBufferLength = len / sizeof(WCHAR);
3779 heap_free( bufferW );
3783 /***********************************************************************
3784 * HTTP_GetRedirectURL (internal)
3786 static LPWSTR HTTP_GetRedirectURL(http_request_t *request, LPCWSTR lpszUrl)
3788 static WCHAR szHttp[] = {'h','t','t','p',0};
3789 static WCHAR szHttps[] = {'h','t','t','p','s',0};
3790 http_session_t *session = request->session;
3791 URL_COMPONENTSW urlComponents;
3792 DWORD url_length = 0;
3794 LPWSTR combined_url;
3796 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
3797 urlComponents.lpszScheme = (request->hdr.dwFlags & INTERNET_FLAG_SECURE) ? szHttps : szHttp;
3798 urlComponents.dwSchemeLength = 0;
3799 urlComponents.lpszHostName = session->hostName;
3800 urlComponents.dwHostNameLength = 0;
3801 urlComponents.nPort = session->hostPort;
3802 urlComponents.lpszUserName = session->userName;
3803 urlComponents.dwUserNameLength = 0;
3804 urlComponents.lpszPassword = NULL;
3805 urlComponents.dwPasswordLength = 0;
3806 urlComponents.lpszUrlPath = request->path;
3807 urlComponents.dwUrlPathLength = 0;
3808 urlComponents.lpszExtraInfo = NULL;
3809 urlComponents.dwExtraInfoLength = 0;
3811 if (!InternetCreateUrlW(&urlComponents, 0, NULL, &url_length) &&
3812 (GetLastError() != ERROR_INSUFFICIENT_BUFFER))
3815 orig_url = heap_alloc(url_length);
3817 /* convert from bytes to characters */
3818 url_length = url_length / sizeof(WCHAR) - 1;
3819 if (!InternetCreateUrlW(&urlComponents, 0, orig_url, &url_length))
3821 heap_free(orig_url);
3826 if (!InternetCombineUrlW(orig_url, lpszUrl, NULL, &url_length, ICU_ENCODE_SPACES_ONLY) &&
3827 (GetLastError() != ERROR_INSUFFICIENT_BUFFER))
3829 heap_free(orig_url);
3832 combined_url = heap_alloc(url_length * sizeof(WCHAR));
3834 if (!InternetCombineUrlW(orig_url, lpszUrl, combined_url, &url_length, ICU_ENCODE_SPACES_ONLY))
3836 heap_free(orig_url);
3837 heap_free(combined_url);
3840 heap_free(orig_url);
3841 return combined_url;
3845 /***********************************************************************
3846 * HTTP_HandleRedirect (internal)
3848 static DWORD HTTP_HandleRedirect(http_request_t *request, LPCWSTR lpszUrl)
3850 http_session_t *session = request->session;
3851 WCHAR path[INTERNET_MAX_PATH_LENGTH];
3856 /* if it's an absolute path, keep the same session info */
3857 lstrcpynW(path, lpszUrl, INTERNET_MAX_URL_LENGTH);
3861 URL_COMPONENTSW urlComponents;
3862 WCHAR protocol[INTERNET_MAX_SCHEME_LENGTH];
3863 WCHAR hostName[INTERNET_MAX_HOST_NAME_LENGTH];
3864 WCHAR userName[INTERNET_MAX_USER_NAME_LENGTH];
3865 BOOL custom_port = FALSE;
3867 static WCHAR httpW[] = {'h','t','t','p',0};
3868 static WCHAR httpsW[] = {'h','t','t','p','s',0};
3874 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
3875 urlComponents.lpszScheme = protocol;
3876 urlComponents.dwSchemeLength = INTERNET_MAX_SCHEME_LENGTH;
3877 urlComponents.lpszHostName = hostName;
3878 urlComponents.dwHostNameLength = INTERNET_MAX_HOST_NAME_LENGTH;
3879 urlComponents.lpszUserName = userName;
3880 urlComponents.dwUserNameLength = INTERNET_MAX_USER_NAME_LENGTH;
3881 urlComponents.lpszPassword = NULL;
3882 urlComponents.dwPasswordLength = 0;
3883 urlComponents.lpszUrlPath = path;
3884 urlComponents.dwUrlPathLength = INTERNET_MAX_PATH_LENGTH;
3885 urlComponents.lpszExtraInfo = NULL;
3886 urlComponents.dwExtraInfoLength = 0;
3887 if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
3888 return INTERNET_GetLastError();
3890 if(!strcmpiW(protocol, httpW)) {
3891 if(request->hdr.dwFlags & INTERNET_FLAG_SECURE) {
3892 TRACE("redirect from secure page to non-secure page\n");
3893 /* FIXME: warn about from secure redirect to non-secure page */
3894 request->hdr.dwFlags &= ~INTERNET_FLAG_SECURE;
3897 if(urlComponents.nPort == INTERNET_INVALID_PORT_NUMBER)
3898 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
3899 else if(urlComponents.nPort != INTERNET_DEFAULT_HTTP_PORT)
3901 }else if(!strcmpiW(protocol, httpsW)) {
3902 if(!(request->hdr.dwFlags & INTERNET_FLAG_SECURE)) {
3903 TRACE("redirect from non-secure page to secure page\n");
3904 /* FIXME: notify about redirect to secure page */
3905 request->hdr.dwFlags |= INTERNET_FLAG_SECURE;
3908 if(urlComponents.nPort == INTERNET_INVALID_PORT_NUMBER)
3909 urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
3910 else if(urlComponents.nPort != INTERNET_DEFAULT_HTTPS_PORT)
3914 heap_free(session->hostName);
3918 static const WCHAR fmt[] = {'%','s',':','%','u',0};
3919 len = lstrlenW(hostName);
3920 len += 7; /* 5 for strlen("65535") + 1 for ":" + 1 for '\0' */
3921 session->hostName = heap_alloc(len*sizeof(WCHAR));
3922 sprintfW(session->hostName, fmt, hostName, urlComponents.nPort);
3925 session->hostName = heap_strdupW(hostName);
3927 HTTP_ProcessHeader(request, hostW, session->hostName, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE | HTTP_ADDHDR_FLAG_REQ);
3929 heap_free(session->userName);
3930 session->userName = NULL;
3932 session->userName = heap_strdupW(userName);
3934 reset_data_stream(request);
3936 if(strcmpiW(request->server->name, hostName) || request->server->port != urlComponents.nPort) {
3937 server_t *new_server;
3939 new_server = get_server(hostName, urlComponents.nPort, urlComponents.nScheme == INTERNET_SCHEME_HTTPS, TRUE);
3940 server_release(request->server);
3941 request->server = new_server;
3944 heap_free(request->path);
3951 rc = UrlEscapeW(path, NULL, &needed, URL_ESCAPE_SPACES_ONLY);
3952 if (rc != E_POINTER)
3953 needed = strlenW(path)+1;
3954 request->path = heap_alloc(needed*sizeof(WCHAR));
3955 rc = UrlEscapeW(path, request->path, &needed,
3956 URL_ESCAPE_SPACES_ONLY);
3959 ERR("Unable to escape string!(%s) (%d)\n",debugstr_w(path),rc);
3960 strcpyW(request->path,path);
3964 /* Remove custom content-type/length headers on redirects. */
3965 index = HTTP_GetCustomHeaderIndex(request, szContent_Type, 0, TRUE);
3967 HTTP_DeleteCustomHeader(request, index);
3968 index = HTTP_GetCustomHeaderIndex(request, szContent_Length, 0, TRUE);
3970 HTTP_DeleteCustomHeader(request, index);
3972 return ERROR_SUCCESS;
3975 /***********************************************************************
3976 * HTTP_build_req (internal)
3978 * concatenate all the strings in the request together
3980 static LPWSTR HTTP_build_req( LPCWSTR *list, int len )
3985 for( t = list; *t ; t++ )
3986 len += strlenW( *t );
3989 str = heap_alloc(len*sizeof(WCHAR));
3992 for( t = list; *t ; t++ )
3998 static DWORD HTTP_SecureProxyConnect(http_request_t *request)
4000 server_t *server = request->server;
4001 LPWSTR requestString;
4008 static const WCHAR connectW[] = {'C','O','N','N','E','C','T',0};
4012 requestString = HTTP_BuildHeaderRequestString( request, connectW, server->host_port, g_szHttp1_1 );
4014 len = WideCharToMultiByte( CP_ACP, 0, requestString, -1,
4015 NULL, 0, NULL, NULL );
4016 len--; /* the nul terminator isn't needed */
4017 ascii_req = heap_alloc(len);
4018 WideCharToMultiByte( CP_ACP, 0, requestString, -1, ascii_req, len, NULL, NULL );
4019 heap_free( requestString );
4021 TRACE("full request -> %s\n", debugstr_an( ascii_req, len ) );
4023 NETCON_set_timeout( request->netconn, TRUE, request->send_timeout );
4024 res = NETCON_send( request->netconn, ascii_req, len, 0, &cnt );
4025 heap_free( ascii_req );
4026 if (res != ERROR_SUCCESS)
4029 responseLen = HTTP_GetResponseHeaders( request, TRUE );
4031 return ERROR_HTTP_INVALID_HEADER;
4033 return ERROR_SUCCESS;
4036 static void HTTP_InsertCookies(http_request_t *request)
4038 DWORD cookie_size, size, cnt = 0;
4042 static const WCHAR cookieW[] = {'C','o','o','k','i','e',':',' ',0};
4044 host = HTTP_GetHeader(request, hostW);
4048 if(get_cookie(host->lpszValue, request->path, NULL, &cookie_size) != ERROR_SUCCESS)
4051 size = sizeof(cookieW) + cookie_size * sizeof(WCHAR) + sizeof(szCrLf);
4052 if(!(cookies = heap_alloc(size)))
4055 cnt += sprintfW(cookies, cookieW);
4056 get_cookie(host->lpszValue, request->path, cookies+cnt, &cookie_size);
4057 strcatW(cookies, szCrLf);
4059 HTTP_HttpAddRequestHeadersW(request, cookies, strlenW(cookies), HTTP_ADDREQ_FLAG_REPLACE);
4064 static WORD HTTP_ParseWkday(LPCWSTR day)
4066 static const WCHAR days[7][4] = {{ 's','u','n',0 },
4074 for (i = 0; i < sizeof(days)/sizeof(*days); i++)
4075 if (!strcmpiW(day, days[i]))
4082 static WORD HTTP_ParseMonth(LPCWSTR month)
4084 static const WCHAR jan[] = { 'j','a','n',0 };
4085 static const WCHAR feb[] = { 'f','e','b',0 };
4086 static const WCHAR mar[] = { 'm','a','r',0 };
4087 static const WCHAR apr[] = { 'a','p','r',0 };
4088 static const WCHAR may[] = { 'm','a','y',0 };
4089 static const WCHAR jun[] = { 'j','u','n',0 };
4090 static const WCHAR jul[] = { 'j','u','l',0 };
4091 static const WCHAR aug[] = { 'a','u','g',0 };
4092 static const WCHAR sep[] = { 's','e','p',0 };
4093 static const WCHAR oct[] = { 'o','c','t',0 };
4094 static const WCHAR nov[] = { 'n','o','v',0 };
4095 static const WCHAR dec[] = { 'd','e','c',0 };
4097 if (!strcmpiW(month, jan)) return 1;
4098 if (!strcmpiW(month, feb)) return 2;
4099 if (!strcmpiW(month, mar)) return 3;
4100 if (!strcmpiW(month, apr)) return 4;
4101 if (!strcmpiW(month, may)) return 5;
4102 if (!strcmpiW(month, jun)) return 6;
4103 if (!strcmpiW(month, jul)) return 7;
4104 if (!strcmpiW(month, aug)) return 8;
4105 if (!strcmpiW(month, sep)) return 9;
4106 if (!strcmpiW(month, oct)) return 10;
4107 if (!strcmpiW(month, nov)) return 11;
4108 if (!strcmpiW(month, dec)) return 12;
4113 /* Parses the string pointed to by *str, assumed to be a 24-hour time HH:MM:SS,
4114 * optionally preceded by whitespace.
4115 * Upon success, returns TRUE, sets the wHour, wMinute, and wSecond fields of
4116 * st, and sets *str to the first character after the time format.
4118 static BOOL HTTP_ParseTime(SYSTEMTIME *st, LPCWSTR *str)
4124 while (isspaceW(*ptr))
4127 num = strtoulW(ptr, &nextPtr, 10);
4128 if (!nextPtr || nextPtr <= ptr || *nextPtr != ':')
4130 ERR("unexpected time format %s\n", debugstr_w(ptr));
4135 ERR("unexpected hour in time format %s\n", debugstr_w(ptr));
4139 st->wHour = (WORD)num;
4140 num = strtoulW(ptr, &nextPtr, 10);
4141 if (!nextPtr || nextPtr <= ptr || *nextPtr != ':')
4143 ERR("unexpected time format %s\n", debugstr_w(ptr));
4148 ERR("unexpected minute in time format %s\n", debugstr_w(ptr));
4152 st->wMinute = (WORD)num;
4153 num = strtoulW(ptr, &nextPtr, 10);
4154 if (!nextPtr || nextPtr <= ptr)
4156 ERR("unexpected time format %s\n", debugstr_w(ptr));
4161 ERR("unexpected second in time format %s\n", debugstr_w(ptr));
4166 st->wSecond = (WORD)num;
4170 static BOOL HTTP_ParseDateAsAsctime(LPCWSTR value, FILETIME *ft)
4172 static const WCHAR gmt[]= { 'G','M','T',0 };
4173 WCHAR day[4], *dayPtr, month[4], *monthPtr, *nextPtr;
4175 SYSTEMTIME st = { 0 };
4178 for (ptr = value, dayPtr = day; *ptr && !isspaceW(*ptr) &&
4179 dayPtr - day < sizeof(day) / sizeof(day[0]) - 1; ptr++, dayPtr++)
4182 st.wDayOfWeek = HTTP_ParseWkday(day);
4183 if (st.wDayOfWeek >= 7)
4185 ERR("unexpected weekday %s\n", debugstr_w(day));
4189 while (isspaceW(*ptr))
4192 for (monthPtr = month; !isspace(*ptr) &&
4193 monthPtr - month < sizeof(month) / sizeof(month[0]) - 1;
4197 st.wMonth = HTTP_ParseMonth(month);
4198 if (!st.wMonth || st.wMonth > 12)
4200 ERR("unexpected month %s\n", debugstr_w(month));
4204 while (isspaceW(*ptr))
4207 num = strtoulW(ptr, &nextPtr, 10);
4208 if (!nextPtr || nextPtr <= ptr || !num || num > 31)
4210 ERR("unexpected day %s\n", debugstr_w(ptr));
4214 st.wDay = (WORD)num;
4216 while (isspaceW(*ptr))
4219 if (!HTTP_ParseTime(&st, &ptr))
4222 while (isspaceW(*ptr))
4225 num = strtoulW(ptr, &nextPtr, 10);
4226 if (!nextPtr || nextPtr <= ptr || num < 1601 || num > 30827)
4228 ERR("unexpected year %s\n", debugstr_w(ptr));
4232 st.wYear = (WORD)num;
4234 while (isspaceW(*ptr))
4237 /* asctime() doesn't report a timezone, but some web servers do, so accept
4238 * with or without GMT.
4240 if (*ptr && strcmpW(ptr, gmt))
4242 ERR("unexpected timezone %s\n", debugstr_w(ptr));
4245 return SystemTimeToFileTime(&st, ft);
4248 static BOOL HTTP_ParseRfc1123Date(LPCWSTR value, FILETIME *ft)
4250 static const WCHAR gmt[]= { 'G','M','T',0 };
4251 WCHAR *nextPtr, day[4], month[4], *monthPtr;
4254 SYSTEMTIME st = { 0 };
4256 ptr = strchrW(value, ',');
4259 if (ptr - value != 3)
4261 WARN("unexpected weekday %s\n", debugstr_wn(value, ptr - value));
4264 memcpy(day, value, (ptr - value) * sizeof(WCHAR));
4266 st.wDayOfWeek = HTTP_ParseWkday(day);
4267 if (st.wDayOfWeek > 6)
4269 WARN("unexpected weekday %s\n", debugstr_wn(value, ptr - value));
4274 while (isspaceW(*ptr))
4277 num = strtoulW(ptr, &nextPtr, 10);
4278 if (!nextPtr || nextPtr <= ptr || !num || num > 31)
4280 WARN("unexpected day %s\n", debugstr_w(value));
4284 st.wDay = (WORD)num;
4286 while (isspaceW(*ptr))
4289 for (monthPtr = month; !isspace(*ptr) &&
4290 monthPtr - month < sizeof(month) / sizeof(month[0]) - 1;
4294 st.wMonth = HTTP_ParseMonth(month);
4295 if (!st.wMonth || st.wMonth > 12)
4297 WARN("unexpected month %s\n", debugstr_w(month));
4301 while (isspaceW(*ptr))
4304 num = strtoulW(ptr, &nextPtr, 10);
4305 if (!nextPtr || nextPtr <= ptr || num < 1601 || num > 30827)
4307 ERR("unexpected year %s\n", debugstr_w(value));
4311 st.wYear = (WORD)num;
4313 if (!HTTP_ParseTime(&st, &ptr))
4316 while (isspaceW(*ptr))
4319 if (strcmpW(ptr, gmt))
4321 ERR("unexpected time zone %s\n", debugstr_w(ptr));
4324 return SystemTimeToFileTime(&st, ft);
4327 static WORD HTTP_ParseWeekday(LPCWSTR day)
4329 static const WCHAR days[7][10] = {{ 's','u','n','d','a','y',0 },
4330 { 'm','o','n','d','a','y',0 },
4331 { 't','u','e','s','d','a','y',0 },
4332 { 'w','e','d','n','e','s','d','a','y',0 },
4333 { 't','h','u','r','s','d','a','y',0 },
4334 { 'f','r','i','d','a','y',0 },
4335 { 's','a','t','u','r','d','a','y',0 }};
4337 for (i = 0; i < sizeof(days)/sizeof(*days); i++)
4338 if (!strcmpiW(day, days[i]))
4345 static BOOL HTTP_ParseRfc850Date(LPCWSTR value, FILETIME *ft)
4347 static const WCHAR gmt[]= { 'G','M','T',0 };
4348 WCHAR *nextPtr, day[10], month[4], *monthPtr;
4351 SYSTEMTIME st = { 0 };
4353 ptr = strchrW(value, ',');
4356 if (ptr - value == 3)
4358 memcpy(day, value, (ptr - value) * sizeof(WCHAR));
4360 st.wDayOfWeek = HTTP_ParseWkday(day);
4361 if (st.wDayOfWeek > 6)
4363 ERR("unexpected weekday %s\n", debugstr_wn(value, ptr - value));
4367 else if (ptr - value < sizeof(day) / sizeof(day[0]))
4369 memcpy(day, value, (ptr - value) * sizeof(WCHAR));
4370 day[ptr - value + 1] = 0;
4371 st.wDayOfWeek = HTTP_ParseWeekday(day);
4372 if (st.wDayOfWeek > 6)
4374 ERR("unexpected weekday %s\n", debugstr_wn(value, ptr - value));
4380 ERR("unexpected weekday %s\n", debugstr_wn(value, ptr - value));
4385 while (isspaceW(*ptr))
4388 num = strtoulW(ptr, &nextPtr, 10);
4389 if (!nextPtr || nextPtr <= ptr || !num || num > 31)
4391 ERR("unexpected day %s\n", debugstr_w(value));
4395 st.wDay = (WORD)num;
4399 ERR("unexpected month format %s\n", debugstr_w(ptr));
4404 for (monthPtr = month; *ptr != '-' &&
4405 monthPtr - month < sizeof(month) / sizeof(month[0]) - 1;
4409 st.wMonth = HTTP_ParseMonth(month);
4410 if (!st.wMonth || st.wMonth > 12)
4412 ERR("unexpected month %s\n", debugstr_w(month));
4418 ERR("unexpected year format %s\n", debugstr_w(ptr));
4423 num = strtoulW(ptr, &nextPtr, 10);
4424 if (!nextPtr || nextPtr <= ptr || num < 1601 || num > 30827)
4426 ERR("unexpected year %s\n", debugstr_w(value));
4430 st.wYear = (WORD)num;
4432 if (!HTTP_ParseTime(&st, &ptr))
4435 while (isspaceW(*ptr))
4438 if (strcmpW(ptr, gmt))
4440 ERR("unexpected time zone %s\n", debugstr_w(ptr));
4443 return SystemTimeToFileTime(&st, ft);
4446 static BOOL HTTP_ParseDate(LPCWSTR value, FILETIME *ft)
4448 static const WCHAR zero[] = { '0',0 };
4451 if (!strcmpW(value, zero))
4453 ft->dwLowDateTime = ft->dwHighDateTime = 0;
4456 else if (strchrW(value, ','))
4458 ret = HTTP_ParseRfc1123Date(value, ft);
4461 ret = HTTP_ParseRfc850Date(value, ft);
4463 ERR("unexpected date format %s\n", debugstr_w(value));
4468 ret = HTTP_ParseDateAsAsctime(value, ft);
4470 ERR("unexpected date format %s\n", debugstr_w(value));
4475 static void HTTP_ProcessExpires(http_request_t *request)
4477 BOOL expirationFound = FALSE;
4480 /* Look for a Cache-Control header with a max-age directive, as it takes
4481 * precedence over the Expires header.
4483 headerIndex = HTTP_GetCustomHeaderIndex(request, szCache_Control, 0, FALSE);
4484 if (headerIndex != -1)
4486 LPHTTPHEADERW ccHeader = &request->custHeaders[headerIndex];
4489 for (ptr = ccHeader->lpszValue; ptr && *ptr; )
4491 LPWSTR comma = strchrW(ptr, ','), end, equal;
4496 end = ptr + strlenW(ptr);
4497 for (equal = end - 1; equal > ptr && *equal != '='; equal--)
4501 static const WCHAR max_age[] = {
4502 'm','a','x','-','a','g','e',0 };
4504 if (!strncmpiW(ptr, max_age, equal - ptr - 1))
4509 age = strtoulW(equal + 1, &nextPtr, 10);
4510 if (nextPtr > equal + 1)
4514 NtQuerySystemTime( &ft );
4515 /* Age is in seconds, FILETIME resolution is in
4516 * 100 nanosecond intervals.
4518 ft.QuadPart += age * (ULONGLONG)1000000;
4519 request->expires.dwLowDateTime = ft.u.LowPart;
4520 request->expires.dwHighDateTime = ft.u.HighPart;
4521 expirationFound = TRUE;
4528 while (isspaceW(*ptr))
4535 if (!expirationFound)
4537 headerIndex = HTTP_GetCustomHeaderIndex(request, szExpires, 0, FALSE);
4538 if (headerIndex != -1)
4540 LPHTTPHEADERW expiresHeader = &request->custHeaders[headerIndex];
4543 if (HTTP_ParseDate(expiresHeader->lpszValue, &ft))
4545 expirationFound = TRUE;
4546 request->expires = ft;
4550 if (!expirationFound)
4554 /* With no known age, default to 10 minutes until expiration. */
4555 NtQuerySystemTime( &t );
4556 t.QuadPart += 10 * 60 * (ULONGLONG)10000000;
4557 request->expires.dwLowDateTime = t.u.LowPart;
4558 request->expires.dwHighDateTime = t.u.HighPart;
4562 static void HTTP_ProcessLastModified(http_request_t *request)
4566 headerIndex = HTTP_GetCustomHeaderIndex(request, szLast_Modified, 0, FALSE);
4567 if (headerIndex != -1)
4569 LPHTTPHEADERW expiresHeader = &request->custHeaders[headerIndex];
4572 if (HTTP_ParseDate(expiresHeader->lpszValue, &ft))
4573 request->last_modified = ft;
4577 static void http_process_keep_alive(http_request_t *req)
4581 index = HTTP_GetCustomHeaderIndex(req, szConnection, 0, FALSE);
4583 req->netconn->keep_alive = !strcmpiW(req->custHeaders[index].lpszValue, szKeepAlive);
4585 req->netconn->keep_alive = !strcmpiW(req->version, g_szHttp1_1);
4588 static DWORD open_http_connection(http_request_t *request, BOOL *reusing)
4590 const BOOL is_https = (request->hdr.dwFlags & INTERNET_FLAG_SECURE) != 0;
4591 netconn_t *netconn = NULL;
4594 assert(!request->netconn);
4595 reset_data_stream(request);
4597 res = HTTP_ResolveName(request);
4598 if(res != ERROR_SUCCESS)
4601 EnterCriticalSection(&connection_pool_cs);
4603 while(!list_empty(&request->server->conn_pool)) {
4604 netconn = LIST_ENTRY(list_head(&request->server->conn_pool), netconn_t, pool_entry);
4605 list_remove(&netconn->pool_entry);
4607 if(NETCON_is_alive(netconn))
4610 TRACE("connection %p closed during idle\n", netconn);
4611 free_netconn(netconn);
4615 LeaveCriticalSection(&connection_pool_cs);
4618 TRACE("<-- reusing %p netconn\n", netconn);
4619 request->netconn = netconn;
4621 return ERROR_SUCCESS;
4624 TRACE("connecting to %s, proxy %s\n", debugstr_w(request->server->name),
4625 request->proxy ? debugstr_w(request->proxy->name) : "(null)");
4627 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
4628 INTERNET_STATUS_CONNECTING_TO_SERVER,
4629 request->server->addr_str,
4630 strlen(request->server->addr_str)+1);
4632 res = create_netconn(is_https, request->proxy ? request->proxy : request->server, request->security_flags,
4633 (request->hdr.ErrorMask & INTERNET_ERROR_MASK_COMBINED_SEC_CERT) != 0,
4634 request->connect_timeout, &netconn);
4635 if(res != ERROR_SUCCESS) {
4636 ERR("create_netconn failed: %u\n", res);
4640 request->netconn = netconn;
4642 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
4643 INTERNET_STATUS_CONNECTED_TO_SERVER,
4644 request->server->addr_str, strlen(request->server->addr_str)+1);
4647 /* Note: we differ from Microsoft's WinINet here. they seem to have
4648 * a bug that causes no status callbacks to be sent when starting
4649 * a tunnel to a proxy server using the CONNECT verb. i believe our
4650 * behaviour to be more correct and to not cause any incompatibilities
4651 * because using a secure connection through a proxy server is a rare
4652 * case that would be hard for anyone to depend on */
4654 res = HTTP_SecureProxyConnect(request);
4655 if(res == ERROR_SUCCESS)
4656 res = NETCON_secure_connect(request->netconn, request->server);
4659 if(res != ERROR_SUCCESS) {
4660 http_release_netconn(request, FALSE);
4665 TRACE("Created connection to %s: %p\n", debugstr_w(request->server->name), netconn);
4666 return ERROR_SUCCESS;
4669 /***********************************************************************
4670 * HTTP_HttpSendRequestW (internal)
4672 * Sends the specified request to the HTTP server
4675 * ERROR_SUCCESS on success
4676 * win32 error code on failure
4679 static DWORD HTTP_HttpSendRequestW(http_request_t *request, LPCWSTR lpszHeaders,
4680 DWORD dwHeaderLength, LPVOID lpOptional, DWORD dwOptionalLength,
4681 DWORD dwContentLength, BOOL bEndRequest)
4684 BOOL redirected = FALSE;
4685 LPWSTR requestString = NULL;
4688 static const WCHAR szPost[] = { 'P','O','S','T',0 };
4689 static const WCHAR szContentLength[] =
4690 { 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',':',' ','%','l','i','\r','\n',0 };
4691 WCHAR contentLengthStr[sizeof szContentLength/2 /* includes \r\n */ + 20 /* int */ ];
4694 TRACE("--> %p\n", request);
4696 assert(request->hdr.htype == WH_HHTTPREQ);
4698 /* if the verb is NULL default to GET */
4700 request->verb = heap_strdupW(szGET);
4702 if (dwContentLength || strcmpW(request->verb, szGET))
4704 sprintfW(contentLengthStr, szContentLength, dwContentLength);
4705 HTTP_HttpAddRequestHeadersW(request, contentLengthStr, -1L, HTTP_ADDREQ_FLAG_REPLACE);
4706 request->bytesToWrite = dwContentLength;
4708 if (request->session->appInfo->agent)
4710 WCHAR *agent_header;
4711 static const WCHAR user_agent[] = {'U','s','e','r','-','A','g','e','n','t',':',' ','%','s','\r','\n',0};
4714 len = strlenW(request->session->appInfo->agent) + strlenW(user_agent);
4715 agent_header = heap_alloc(len * sizeof(WCHAR));
4716 sprintfW(agent_header, user_agent, request->session->appInfo->agent);
4718 HTTP_HttpAddRequestHeadersW(request, agent_header, strlenW(agent_header), HTTP_ADDREQ_FLAG_ADD_IF_NEW);
4719 heap_free(agent_header);
4721 if (request->hdr.dwFlags & INTERNET_FLAG_PRAGMA_NOCACHE)
4723 static const WCHAR pragma_nocache[] = {'P','r','a','g','m','a',':',' ','n','o','-','c','a','c','h','e','\r','\n',0};
4724 HTTP_HttpAddRequestHeadersW(request, pragma_nocache, strlenW(pragma_nocache), HTTP_ADDREQ_FLAG_ADD_IF_NEW);
4726 if ((request->hdr.dwFlags & INTERNET_FLAG_NO_CACHE_WRITE) && !strcmpW(request->verb, szPost))
4728 static const WCHAR cache_control[] = {'C','a','c','h','e','-','C','o','n','t','r','o','l',':',
4729 ' ','n','o','-','c','a','c','h','e','\r','\n',0};
4730 HTTP_HttpAddRequestHeadersW(request, cache_control, strlenW(cache_control), HTTP_ADDREQ_FLAG_ADD_IF_NEW);
4733 /* add the headers the caller supplied */
4734 if( lpszHeaders && dwHeaderLength )
4735 HTTP_HttpAddRequestHeadersW(request, lpszHeaders, dwHeaderLength, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDHDR_FLAG_REPLACE);
4740 BOOL reusing_connection;
4744 reusing_connection = request->netconn != NULL;
4747 request->contentLength = ~0u;
4748 request->bytesToWrite = 0;
4751 if (TRACE_ON(wininet))
4753 LPHTTPHEADERW Host = HTTP_GetHeader(request, hostW);
4754 TRACE("Going to url %s %s\n", debugstr_w(Host->lpszValue), debugstr_w(request->path));
4757 HTTP_FixURL(request);
4758 if (request->hdr.dwFlags & INTERNET_FLAG_KEEP_CONNECTION)
4760 HTTP_ProcessHeader(request, szConnection, szKeepAlive, HTTP_ADDHDR_FLAG_REQ | HTTP_ADDHDR_FLAG_REPLACE);
4762 HTTP_InsertAuthorization(request, request->authInfo, szAuthorization);
4763 HTTP_InsertAuthorization(request, request->proxyAuthInfo, szProxy_Authorization);
4765 if (!(request->hdr.dwFlags & INTERNET_FLAG_NO_COOKIES))
4766 HTTP_InsertCookies(request);
4770 WCHAR *url = build_proxy_path_url(request);
4771 requestString = HTTP_BuildHeaderRequestString(request, request->verb, url, request->version);
4775 requestString = HTTP_BuildHeaderRequestString(request, request->verb, request->path, request->version);
4778 TRACE("Request header -> %s\n", debugstr_w(requestString) );
4780 if (!reusing_connection && (res = open_http_connection(request, &reusing_connection)) != ERROR_SUCCESS)
4783 /* send the request as ASCII, tack on the optional data */
4784 if (!lpOptional || redirected)
4785 dwOptionalLength = 0;
4786 len = WideCharToMultiByte( CP_ACP, 0, requestString, -1,
4787 NULL, 0, NULL, NULL );
4788 ascii_req = heap_alloc(len + dwOptionalLength);
4789 WideCharToMultiByte( CP_ACP, 0, requestString, -1,
4790 ascii_req, len, NULL, NULL );
4792 memcpy( &ascii_req[len-1], lpOptional, dwOptionalLength );
4793 len = (len + dwOptionalLength - 1);
4795 TRACE("full request -> %s\n", debugstr_a(ascii_req) );
4797 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
4798 INTERNET_STATUS_SENDING_REQUEST, NULL, 0);
4800 NETCON_set_timeout( request->netconn, TRUE, request->send_timeout );
4801 res = NETCON_send(request->netconn, ascii_req, len, 0, &cnt);
4802 heap_free( ascii_req );
4803 if(res != ERROR_SUCCESS) {
4804 TRACE("send failed: %u\n", res);
4805 if(!reusing_connection)
4807 http_release_netconn(request, FALSE);
4812 request->bytesWritten = dwOptionalLength;
4814 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
4815 INTERNET_STATUS_REQUEST_SENT,
4816 &len, sizeof(DWORD));
4822 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
4823 INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
4825 responseLen = HTTP_GetResponseHeaders(request, TRUE);
4826 /* FIXME: We should know that connection is closed before sending
4827 * headers. Otherwise wrong callbacks are executed */
4828 if(!responseLen && reusing_connection) {
4829 TRACE("Connection closed by server, reconnecting\n");
4830 http_release_netconn(request, FALSE);
4835 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
4836 INTERNET_STATUS_RESPONSE_RECEIVED, &responseLen,
4839 http_process_keep_alive(request);
4840 HTTP_ProcessCookies(request);
4841 HTTP_ProcessExpires(request);
4842 HTTP_ProcessLastModified(request);
4844 res = set_content_length(request);
4845 if(res != ERROR_SUCCESS)
4847 if(!request->contentLength)
4848 http_release_netconn(request, TRUE);
4850 if (!(request->hdr.dwFlags & INTERNET_FLAG_NO_AUTO_REDIRECT) && responseLen)
4852 WCHAR *new_url, szNewLocation[INTERNET_MAX_URL_LENGTH];
4853 dwBufferSize=sizeof(szNewLocation);
4854 switch(request->status_code) {
4855 case HTTP_STATUS_REDIRECT:
4856 case HTTP_STATUS_MOVED:
4857 case HTTP_STATUS_REDIRECT_KEEP_VERB:
4858 case HTTP_STATUS_REDIRECT_METHOD:
4859 if(HTTP_HttpQueryInfoW(request,HTTP_QUERY_LOCATION,szNewLocation,&dwBufferSize,NULL) != ERROR_SUCCESS)
4862 if (strcmpW(request->verb, szGET) && strcmpW(request->verb, szHEAD) &&
4863 request->status_code != HTTP_STATUS_REDIRECT_KEEP_VERB)
4865 heap_free(request->verb);
4866 request->verb = heap_strdupW(szGET);
4868 http_release_netconn(request, drain_content(request, FALSE));
4869 if ((new_url = HTTP_GetRedirectURL( request, szNewLocation )))
4871 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext, INTERNET_STATUS_REDIRECT,
4872 new_url, (strlenW(new_url) + 1) * sizeof(WCHAR));
4873 res = HTTP_HandleRedirect(request, new_url);
4874 if (res == ERROR_SUCCESS)
4876 heap_free(requestString);
4879 heap_free( new_url );
4884 if (!(request->hdr.dwFlags & INTERNET_FLAG_NO_AUTH) && res == ERROR_SUCCESS)
4886 WCHAR szAuthValue[2048];
4888 if (request->status_code == HTTP_STATUS_DENIED)
4890 LPHTTPHEADERW Host = HTTP_GetHeader(request, hostW);
4892 while (HTTP_HttpQueryInfoW(request,HTTP_QUERY_WWW_AUTHENTICATE,szAuthValue,&dwBufferSize,&dwIndex) == ERROR_SUCCESS)
4894 if (HTTP_DoAuthorization(request, szAuthValue,
4896 request->session->userName,
4897 request->session->password,
4900 heap_free(requestString);
4901 if(!drain_content(request, TRUE)) {
4902 FIXME("Could not drain content\n");
4903 http_release_netconn(request, FALSE);
4911 TRACE("Cleaning wrong authorization data\n");
4912 destroy_authinfo(request->authInfo);
4913 request->authInfo = NULL;
4916 if (request->status_code == HTTP_STATUS_PROXY_AUTH_REQ)
4919 while (HTTP_HttpQueryInfoW(request,HTTP_QUERY_PROXY_AUTHENTICATE,szAuthValue,&dwBufferSize,&dwIndex) == ERROR_SUCCESS)
4921 if (HTTP_DoAuthorization(request, szAuthValue,
4922 &request->proxyAuthInfo,
4923 request->session->appInfo->proxyUsername,
4924 request->session->appInfo->proxyPassword,
4927 if(!drain_content(request, TRUE)) {
4928 FIXME("Could not drain content\n");
4929 http_release_netconn(request, FALSE);
4937 TRACE("Cleaning wrong proxy authorization data\n");
4938 destroy_authinfo(request->proxyAuthInfo);
4939 request->proxyAuthInfo = NULL;
4945 res = ERROR_SUCCESS;
4950 heap_free(requestString);
4952 /* TODO: send notification for P3P header */
4954 if(res == ERROR_SUCCESS)
4955 create_cache_entry(request);
4957 if (request->session->appInfo->hdr.dwFlags & INTERNET_FLAG_ASYNC)
4959 if (res == ERROR_SUCCESS) {
4960 if(bEndRequest && request->contentLength && request->bytesWritten == request->bytesToWrite)
4961 HTTP_ReceiveRequestData(request, TRUE, NULL);
4963 send_request_complete(request,
4964 request->session->hdr.dwInternalFlags & INET_OPENURL ? (DWORD_PTR)request->hdr.hInternet : 1, 0);
4966 send_request_complete(request, 0, res);
4982 } send_request_task_t;
4984 /***********************************************************************
4986 * Helper functions for the HttpSendRequest(Ex) functions
4989 static void AsyncHttpSendRequestProc(task_header_t *hdr)
4991 send_request_task_t *task = (send_request_task_t*)hdr;
4992 http_request_t *request = (http_request_t*)task->hdr.hdr;
4994 TRACE("%p\n", request);
4996 HTTP_HttpSendRequestW(request, task->headers, task->headers_len, task->optional,
4997 task->optional_len, task->content_len, task->end_request);
4999 heap_free(task->headers);
5003 static DWORD HTTP_HttpEndRequestW(http_request_t *request, DWORD dwFlags, DWORD_PTR dwContext)
5007 DWORD res = ERROR_SUCCESS;
5009 if(!request->netconn) {
5010 WARN("Not connected\n");
5011 send_request_complete(request, 0, ERROR_INTERNET_OPERATION_CANCELLED);
5012 return ERROR_INTERNET_OPERATION_CANCELLED;
5015 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
5016 INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
5018 responseLen = HTTP_GetResponseHeaders(request, TRUE);
5020 res = ERROR_HTTP_HEADER_NOT_FOUND;
5022 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext,
5023 INTERNET_STATUS_RESPONSE_RECEIVED, &responseLen, sizeof(DWORD));
5025 /* process cookies here. Is this right? */
5026 http_process_keep_alive(request);
5027 HTTP_ProcessCookies(request);
5028 HTTP_ProcessExpires(request);
5029 HTTP_ProcessLastModified(request);
5031 if ((res = set_content_length(request)) == ERROR_SUCCESS) {
5032 if(!request->contentLength)
5033 http_release_netconn(request, TRUE);
5036 if (res == ERROR_SUCCESS && !(request->hdr.dwFlags & INTERNET_FLAG_NO_AUTO_REDIRECT))
5038 switch(request->status_code) {
5039 case HTTP_STATUS_REDIRECT:
5040 case HTTP_STATUS_MOVED:
5041 case HTTP_STATUS_REDIRECT_METHOD:
5042 case HTTP_STATUS_REDIRECT_KEEP_VERB: {
5043 WCHAR *new_url, szNewLocation[INTERNET_MAX_URL_LENGTH];
5044 dwBufferSize=sizeof(szNewLocation);
5045 if (HTTP_HttpQueryInfoW(request, HTTP_QUERY_LOCATION, szNewLocation, &dwBufferSize, NULL) != ERROR_SUCCESS)
5048 if (strcmpW(request->verb, szGET) && strcmpW(request->verb, szHEAD) &&
5049 request->status_code != HTTP_STATUS_REDIRECT_KEEP_VERB)
5051 heap_free(request->verb);
5052 request->verb = heap_strdupW(szGET);
5054 http_release_netconn(request, drain_content(request, FALSE));
5055 if ((new_url = HTTP_GetRedirectURL( request, szNewLocation )))
5057 INTERNET_SendCallback(&request->hdr, request->hdr.dwContext, INTERNET_STATUS_REDIRECT,
5058 new_url, (strlenW(new_url) + 1) * sizeof(WCHAR));
5059 res = HTTP_HandleRedirect(request, new_url);
5060 if (res == ERROR_SUCCESS)
5061 res = HTTP_HttpSendRequestW(request, NULL, 0, NULL, 0, 0, TRUE);
5062 heap_free( new_url );
5068 if(res == ERROR_SUCCESS)
5069 create_cache_entry(request);
5071 if (res == ERROR_SUCCESS && request->contentLength)
5072 HTTP_ReceiveRequestData(request, TRUE, NULL);
5074 send_request_complete(request, res == ERROR_SUCCESS, res);
5079 /***********************************************************************
5080 * HttpEndRequestA (WININET.@)
5082 * Ends an HTTP request that was started by HttpSendRequestEx
5085 * TRUE if successful
5089 BOOL WINAPI HttpEndRequestA(HINTERNET hRequest,
5090 LPINTERNET_BUFFERSA lpBuffersOut, DWORD dwFlags, DWORD_PTR dwContext)
5092 TRACE("(%p, %p, %08x, %08lx)\n", hRequest, lpBuffersOut, dwFlags, dwContext);
5096 SetLastError(ERROR_INVALID_PARAMETER);
5100 return HttpEndRequestW(hRequest, NULL, dwFlags, dwContext);
5107 } end_request_task_t;
5109 static void AsyncHttpEndRequestProc(task_header_t *hdr)
5111 end_request_task_t *task = (end_request_task_t*)hdr;
5112 http_request_t *req = (http_request_t*)task->hdr.hdr;
5116 HTTP_HttpEndRequestW(req, task->flags, task->context);
5119 /***********************************************************************
5120 * HttpEndRequestW (WININET.@)
5122 * Ends an HTTP request that was started by HttpSendRequestEx
5125 * TRUE if successful
5129 BOOL WINAPI HttpEndRequestW(HINTERNET hRequest,
5130 LPINTERNET_BUFFERSW lpBuffersOut, DWORD dwFlags, DWORD_PTR dwContext)
5132 http_request_t *request;
5135 TRACE("%p %p %x %lx -->\n", hRequest, lpBuffersOut, dwFlags, dwContext);
5139 SetLastError(ERROR_INVALID_PARAMETER);
5143 request = (http_request_t*) get_handle_object( hRequest );
5145 if (NULL == request || request->hdr.htype != WH_HHTTPREQ)
5147 SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
5149 WININET_Release( &request->hdr );
5152 request->hdr.dwFlags |= dwFlags;
5154 if (request->session->appInfo->hdr.dwFlags & INTERNET_FLAG_ASYNC)
5156 end_request_task_t *task;
5158 task = alloc_async_task(&request->hdr, AsyncHttpEndRequestProc, sizeof(*task));
5159 task->flags = dwFlags;
5160 task->context = dwContext;
5162 INTERNET_AsyncCall(&task->hdr);
5163 res = ERROR_IO_PENDING;
5166 res = HTTP_HttpEndRequestW(request, dwFlags, dwContext);
5168 WININET_Release( &request->hdr );
5169 TRACE("%u <--\n", res);
5170 if(res != ERROR_SUCCESS)
5172 return res == ERROR_SUCCESS;
5175 /***********************************************************************
5176 * HttpSendRequestExA (WININET.@)
5178 * Sends the specified request to the HTTP server and allows chunked
5183 * Failure: FALSE, call GetLastError() for more information.
5185 BOOL WINAPI HttpSendRequestExA(HINTERNET hRequest,
5186 LPINTERNET_BUFFERSA lpBuffersIn,
5187 LPINTERNET_BUFFERSA lpBuffersOut,
5188 DWORD dwFlags, DWORD_PTR dwContext)
5190 INTERNET_BUFFERSW BuffersInW;
5193 LPWSTR header = NULL;
5195 TRACE("(%p, %p, %p, %08x, %08lx)\n", hRequest, lpBuffersIn,
5196 lpBuffersOut, dwFlags, dwContext);
5200 BuffersInW.dwStructSize = sizeof(LPINTERNET_BUFFERSW);
5201 if (lpBuffersIn->lpcszHeader)
5203 headerlen = MultiByteToWideChar(CP_ACP,0,lpBuffersIn->lpcszHeader,
5204 lpBuffersIn->dwHeadersLength,0,0);
5205 header = heap_alloc(headerlen*sizeof(WCHAR));
5206 if (!(BuffersInW.lpcszHeader = header))
5208 SetLastError(ERROR_OUTOFMEMORY);
5211 BuffersInW.dwHeadersLength = MultiByteToWideChar(CP_ACP, 0,
5212 lpBuffersIn->lpcszHeader, lpBuffersIn->dwHeadersLength,
5216 BuffersInW.lpcszHeader = NULL;
5217 BuffersInW.dwHeadersTotal = lpBuffersIn->dwHeadersTotal;
5218 BuffersInW.lpvBuffer = lpBuffersIn->lpvBuffer;
5219 BuffersInW.dwBufferLength = lpBuffersIn->dwBufferLength;
5220 BuffersInW.dwBufferTotal = lpBuffersIn->dwBufferTotal;
5221 BuffersInW.Next = NULL;
5224 rc = HttpSendRequestExW(hRequest, lpBuffersIn ? &BuffersInW : NULL, NULL, dwFlags, dwContext);
5230 /***********************************************************************
5231 * HttpSendRequestExW (WININET.@)
5233 * Sends the specified request to the HTTP server and allows chunked
5238 * Failure: FALSE, call GetLastError() for more information.
5240 BOOL WINAPI HttpSendRequestExW(HINTERNET hRequest,
5241 LPINTERNET_BUFFERSW lpBuffersIn,
5242 LPINTERNET_BUFFERSW lpBuffersOut,
5243 DWORD dwFlags, DWORD_PTR dwContext)
5245 http_request_t *request;
5246 http_session_t *session;
5250 TRACE("(%p, %p, %p, %08x, %08lx)\n", hRequest, lpBuffersIn,
5251 lpBuffersOut, dwFlags, dwContext);
5253 request = (http_request_t*) get_handle_object( hRequest );
5255 if (NULL == request || request->hdr.htype != WH_HHTTPREQ)
5257 res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
5261 session = request->session;
5262 assert(session->hdr.htype == WH_HHTTPSESSION);
5263 hIC = session->appInfo;
5264 assert(hIC->hdr.htype == WH_HINIT);
5266 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
5268 send_request_task_t *task;
5270 task = alloc_async_task(&request->hdr, AsyncHttpSendRequestProc, sizeof(*task));
5275 if (lpBuffersIn->lpcszHeader)
5277 if (lpBuffersIn->dwHeadersLength == ~0u)
5278 size = (strlenW( lpBuffersIn->lpcszHeader ) + 1) * sizeof(WCHAR);
5280 size = lpBuffersIn->dwHeadersLength * sizeof(WCHAR);
5282 task->headers = heap_alloc(size);
5283 memcpy(task->headers, lpBuffersIn->lpcszHeader, size);
5285 else task->headers = NULL;
5287 task->headers_len = size / sizeof(WCHAR);
5288 task->optional = lpBuffersIn->lpvBuffer;
5289 task->optional_len = lpBuffersIn->dwBufferLength;
5290 task->content_len = lpBuffersIn->dwBufferTotal;
5294 task->headers = NULL;
5295 task->headers_len = 0;
5296 task->optional = NULL;
5297 task->optional_len = 0;
5298 task->content_len = 0;
5301 task->end_request = FALSE;
5303 INTERNET_AsyncCall(&task->hdr);
5304 res = ERROR_IO_PENDING;
5309 res = HTTP_HttpSendRequestW(request, lpBuffersIn->lpcszHeader, lpBuffersIn->dwHeadersLength,
5310 lpBuffersIn->lpvBuffer, lpBuffersIn->dwBufferLength,
5311 lpBuffersIn->dwBufferTotal, FALSE);
5313 res = HTTP_HttpSendRequestW(request, NULL, 0, NULL, 0, 0, FALSE);
5318 WININET_Release( &request->hdr );
5322 return res == ERROR_SUCCESS;
5325 /***********************************************************************
5326 * HttpSendRequestW (WININET.@)
5328 * Sends the specified request to the HTTP server
5335 BOOL WINAPI HttpSendRequestW(HINTERNET hHttpRequest, LPCWSTR lpszHeaders,
5336 DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength)
5338 http_request_t *request;
5339 http_session_t *session = NULL;
5340 appinfo_t *hIC = NULL;
5341 DWORD res = ERROR_SUCCESS;
5343 TRACE("%p, %s, %i, %p, %i)\n", hHttpRequest,
5344 debugstr_wn(lpszHeaders, dwHeaderLength), dwHeaderLength, lpOptional, dwOptionalLength);
5346 request = (http_request_t*) get_handle_object( hHttpRequest );
5347 if (NULL == request || request->hdr.htype != WH_HHTTPREQ)
5349 res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
5353 session = request->session;
5354 if (NULL == session || session->hdr.htype != WH_HHTTPSESSION)
5356 res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
5360 hIC = session->appInfo;
5361 if (NULL == hIC || hIC->hdr.htype != WH_HINIT)
5363 res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
5367 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
5369 send_request_task_t *task;
5371 task = alloc_async_task(&request->hdr, AsyncHttpSendRequestProc, sizeof(*task));
5376 if (dwHeaderLength == ~0u) size = (strlenW(lpszHeaders) + 1) * sizeof(WCHAR);
5377 else size = dwHeaderLength * sizeof(WCHAR);
5379 task->headers = heap_alloc(size);
5380 memcpy(task->headers, lpszHeaders, size);
5383 task->headers = NULL;
5384 task->headers_len = dwHeaderLength;
5385 task->optional = lpOptional;
5386 task->optional_len = dwOptionalLength;
5387 task->content_len = dwOptionalLength;
5388 task->end_request = TRUE;
5390 INTERNET_AsyncCall(&task->hdr);
5391 res = ERROR_IO_PENDING;
5395 res = HTTP_HttpSendRequestW(request, lpszHeaders,
5396 dwHeaderLength, lpOptional, dwOptionalLength,
5397 dwOptionalLength, TRUE);
5401 WININET_Release( &request->hdr );
5404 return res == ERROR_SUCCESS;
5407 /***********************************************************************
5408 * HttpSendRequestA (WININET.@)
5410 * Sends the specified request to the HTTP server
5417 BOOL WINAPI HttpSendRequestA(HINTERNET hHttpRequest, LPCSTR lpszHeaders,
5418 DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength)
5421 LPWSTR szHeaders=NULL;
5422 DWORD nLen=dwHeaderLength;
5423 if(lpszHeaders!=NULL)
5425 nLen=MultiByteToWideChar(CP_ACP,0,lpszHeaders,dwHeaderLength,NULL,0);
5426 szHeaders = heap_alloc(nLen*sizeof(WCHAR));
5427 MultiByteToWideChar(CP_ACP,0,lpszHeaders,dwHeaderLength,szHeaders,nLen);
5429 result = HttpSendRequestW(hHttpRequest, szHeaders, nLen, lpOptional, dwOptionalLength);
5430 heap_free(szHeaders);
5434 /***********************************************************************
5435 * HTTPSESSION_Destroy (internal)
5437 * Deallocate session handle
5440 static void HTTPSESSION_Destroy(object_header_t *hdr)
5442 http_session_t *session = (http_session_t*) hdr;
5444 TRACE("%p\n", session);
5446 WININET_Release(&session->appInfo->hdr);
5448 heap_free(session->hostName);
5449 heap_free(session->password);
5450 heap_free(session->userName);
5453 static DWORD HTTPSESSION_QueryOption(object_header_t *hdr, DWORD option, void *buffer, DWORD *size, BOOL unicode)
5455 http_session_t *ses = (http_session_t *)hdr;
5458 case INTERNET_OPTION_HANDLE_TYPE:
5459 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
5461 if (*size < sizeof(ULONG))
5462 return ERROR_INSUFFICIENT_BUFFER;
5464 *size = sizeof(DWORD);
5465 *(DWORD*)buffer = INTERNET_HANDLE_TYPE_CONNECT_HTTP;
5466 return ERROR_SUCCESS;
5467 case INTERNET_OPTION_CONNECT_TIMEOUT:
5468 TRACE("INTERNET_OPTION_CONNECT_TIMEOUT\n");
5470 if (*size < sizeof(DWORD))
5471 return ERROR_INSUFFICIENT_BUFFER;
5473 *size = sizeof(DWORD);
5474 *(DWORD *)buffer = ses->connect_timeout;
5475 return ERROR_SUCCESS;
5477 case INTERNET_OPTION_SEND_TIMEOUT:
5478 TRACE("INTERNET_OPTION_SEND_TIMEOUT\n");
5480 if (*size < sizeof(DWORD))
5481 return ERROR_INSUFFICIENT_BUFFER;
5483 *size = sizeof(DWORD);
5484 *(DWORD *)buffer = ses->send_timeout;
5485 return ERROR_SUCCESS;
5487 case INTERNET_OPTION_RECEIVE_TIMEOUT:
5488 TRACE("INTERNET_OPTION_RECEIVE_TIMEOUT\n");
5490 if (*size < sizeof(DWORD))
5491 return ERROR_INSUFFICIENT_BUFFER;
5493 *size = sizeof(DWORD);
5494 *(DWORD *)buffer = ses->receive_timeout;
5495 return ERROR_SUCCESS;
5498 return INET_QueryOption(hdr, option, buffer, size, unicode);
5501 static DWORD HTTPSESSION_SetOption(object_header_t *hdr, DWORD option, void *buffer, DWORD size)
5503 http_session_t *ses = (http_session_t*)hdr;
5506 case INTERNET_OPTION_USERNAME:
5508 heap_free(ses->userName);
5509 if (!(ses->userName = heap_strdupW(buffer))) return ERROR_OUTOFMEMORY;
5510 return ERROR_SUCCESS;
5512 case INTERNET_OPTION_PASSWORD:
5514 heap_free(ses->password);
5515 if (!(ses->password = heap_strdupW(buffer))) return ERROR_OUTOFMEMORY;
5516 return ERROR_SUCCESS;
5518 case INTERNET_OPTION_CONNECT_TIMEOUT:
5520 if (!buffer || size != sizeof(DWORD)) return ERROR_INVALID_PARAMETER;
5521 ses->connect_timeout = *(DWORD *)buffer;
5522 return ERROR_SUCCESS;
5524 case INTERNET_OPTION_SEND_TIMEOUT:
5526 if (!buffer || size != sizeof(DWORD)) return ERROR_INVALID_PARAMETER;
5527 ses->send_timeout = *(DWORD *)buffer;
5528 return ERROR_SUCCESS;
5530 case INTERNET_OPTION_RECEIVE_TIMEOUT:
5532 if (!buffer || size != sizeof(DWORD)) return ERROR_INVALID_PARAMETER;
5533 ses->receive_timeout = *(DWORD *)buffer;
5534 return ERROR_SUCCESS;
5539 return INET_SetOption(hdr, option, buffer, size);
5542 static const object_vtbl_t HTTPSESSIONVtbl = {
5543 HTTPSESSION_Destroy,
5545 HTTPSESSION_QueryOption,
5546 HTTPSESSION_SetOption,
5555 /***********************************************************************
5556 * HTTP_Connect (internal)
5558 * Create http session handle
5561 * HINTERNET a session handle on success
5565 DWORD HTTP_Connect(appinfo_t *hIC, LPCWSTR lpszServerName,
5566 INTERNET_PORT serverPort, LPCWSTR lpszUserName,
5567 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
5568 DWORD dwInternalFlags, HINTERNET *ret)
5570 http_session_t *session = NULL;
5574 if (!lpszServerName || !lpszServerName[0])
5575 return ERROR_INVALID_PARAMETER;
5577 assert( hIC->hdr.htype == WH_HINIT );
5579 session = alloc_object(&hIC->hdr, &HTTPSESSIONVtbl, sizeof(http_session_t));
5581 return ERROR_OUTOFMEMORY;
5584 * According to my tests. The name is not resolved until a request is sent
5587 session->hdr.htype = WH_HHTTPSESSION;
5588 session->hdr.dwFlags = dwFlags;
5589 session->hdr.dwContext = dwContext;
5590 session->hdr.dwInternalFlags |= dwInternalFlags;
5592 WININET_AddRef( &hIC->hdr );
5593 session->appInfo = hIC;
5594 list_add_head( &hIC->hdr.children, &session->hdr.entry );
5596 if(hIC->proxy && hIC->accessType == INTERNET_OPEN_TYPE_PROXY) {
5597 if(hIC->proxyBypass)
5598 FIXME("Proxy bypass is ignored.\n");
5600 session->hostName = heap_strdupW(lpszServerName);
5601 if (lpszUserName && lpszUserName[0])
5602 session->userName = heap_strdupW(lpszUserName);
5603 if (lpszPassword && lpszPassword[0])
5604 session->password = heap_strdupW(lpszPassword);
5605 session->hostPort = serverPort;
5606 session->connect_timeout = hIC->connect_timeout;
5607 session->send_timeout = INFINITE;
5608 session->receive_timeout = INFINITE;
5610 /* Don't send a handle created callback if this handle was created with InternetOpenUrl */
5611 if (!(session->hdr.dwInternalFlags & INET_OPENURL))
5613 INTERNET_SendCallback(&hIC->hdr, dwContext,
5614 INTERNET_STATUS_HANDLE_CREATED, &session->hdr.hInternet,
5619 * an INTERNET_STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on
5623 TRACE("%p --> %p\n", hIC, session);
5625 *ret = session->hdr.hInternet;
5626 return ERROR_SUCCESS;
5629 /***********************************************************************
5630 * HTTP_clear_response_headers (internal)
5632 * clear out any old response headers
5634 static void HTTP_clear_response_headers( http_request_t *request )
5638 for( i=0; i<request->nCustHeaders; i++)
5640 if( !request->custHeaders[i].lpszField )
5642 if( !request->custHeaders[i].lpszValue )
5644 if ( request->custHeaders[i].wFlags & HDR_ISREQUEST )
5646 HTTP_DeleteCustomHeader( request, i );
5651 /***********************************************************************
5652 * HTTP_GetResponseHeaders (internal)
5654 * Read server response
5661 static INT HTTP_GetResponseHeaders(http_request_t *request, BOOL clear)
5664 WCHAR buffer[MAX_REPLY_LEN];
5665 DWORD buflen = MAX_REPLY_LEN;
5666 BOOL bSuccess = FALSE;
5668 char bufferA[MAX_REPLY_LEN];
5669 LPWSTR status_code = NULL, status_text = NULL;
5670 DWORD cchMaxRawHeaders = 1024;
5671 LPWSTR lpszRawHeaders = NULL;
5673 DWORD cchRawHeaders = 0;
5674 BOOL codeHundred = FALSE;
5678 if(!request->netconn)
5681 NETCON_set_timeout( request->netconn, FALSE, request->receive_timeout );
5684 * We should first receive 'HTTP/1.x nnn OK' where nnn is the status code.
5686 buflen = MAX_REPLY_LEN;
5687 if (!read_line(request, bufferA, &buflen))
5690 /* clear old response headers (eg. from a redirect response) */
5692 HTTP_clear_response_headers( request );
5697 MultiByteToWideChar( CP_ACP, 0, bufferA, buflen, buffer, MAX_REPLY_LEN );
5698 /* check is this a status code line? */
5699 if (!strncmpW(buffer, g_szHttp1_0, 4))
5701 /* split the version from the status code */
5702 status_code = strchrW( buffer, ' ' );
5707 /* split the status code from the status text */
5708 status_text = strchrW( status_code, ' ' );
5713 request->status_code = atoiW(status_code);
5715 TRACE("version [%s] status code [%s] status text [%s]\n",
5716 debugstr_w(buffer), debugstr_w(status_code), debugstr_w(status_text) );
5718 codeHundred = request->status_code == HTTP_STATUS_CONTINUE;
5720 else if (!codeHundred)
5722 WARN("No status line at head of response (%s)\n", debugstr_w(buffer));
5724 heap_free(request->version);
5725 heap_free(request->statusText);
5727 request->status_code = HTTP_STATUS_OK;
5728 request->version = heap_strdupW(g_szHttp1_0);
5729 request->statusText = heap_strdupW(szOK);
5731 heap_free(request->rawHeaders);
5732 request->rawHeaders = heap_strdupW(szDefaultHeader);
5737 } while (codeHundred);
5739 /* Add status code */
5740 HTTP_ProcessHeader(request, szStatus, status_code,
5741 HTTP_ADDHDR_FLAG_REPLACE);
5743 heap_free(request->version);
5744 heap_free(request->statusText);
5746 request->version = heap_strdupW(buffer);
5747 request->statusText = heap_strdupW(status_text);
5749 /* Restore the spaces */
5750 *(status_code-1) = ' ';
5751 *(status_text-1) = ' ';
5753 /* regenerate raw headers */
5754 lpszRawHeaders = heap_alloc((cchMaxRawHeaders + 1) * sizeof(WCHAR));
5755 if (!lpszRawHeaders) goto lend;
5757 while (cchRawHeaders + buflen + strlenW(szCrLf) > cchMaxRawHeaders)
5758 cchMaxRawHeaders *= 2;
5759 temp = heap_realloc(lpszRawHeaders, (cchMaxRawHeaders+1)*sizeof(WCHAR));
5760 if (temp == NULL) goto lend;
5761 lpszRawHeaders = temp;
5762 memcpy(lpszRawHeaders+cchRawHeaders, buffer, (buflen-1)*sizeof(WCHAR));
5763 cchRawHeaders += (buflen-1);
5764 memcpy(lpszRawHeaders+cchRawHeaders, szCrLf, sizeof(szCrLf));
5765 cchRawHeaders += sizeof(szCrLf)/sizeof(szCrLf[0])-1;
5766 lpszRawHeaders[cchRawHeaders] = '\0';
5768 /* Parse each response line */
5771 buflen = MAX_REPLY_LEN;
5772 if (read_line(request, bufferA, &buflen))
5774 LPWSTR * pFieldAndValue;
5776 TRACE("got line %s, now interpreting\n", debugstr_a(bufferA));
5778 if (!bufferA[0]) break;
5779 MultiByteToWideChar( CP_ACP, 0, bufferA, buflen, buffer, MAX_REPLY_LEN );
5781 pFieldAndValue = HTTP_InterpretHttpHeader(buffer);
5784 while (cchRawHeaders + buflen + strlenW(szCrLf) > cchMaxRawHeaders)
5785 cchMaxRawHeaders *= 2;
5786 temp = heap_realloc(lpszRawHeaders, (cchMaxRawHeaders+1)*sizeof(WCHAR));
5787 if (temp == NULL) goto lend;
5788 lpszRawHeaders = temp;
5789 memcpy(lpszRawHeaders+cchRawHeaders, buffer, (buflen-1)*sizeof(WCHAR));
5790 cchRawHeaders += (buflen-1);
5791 memcpy(lpszRawHeaders+cchRawHeaders, szCrLf, sizeof(szCrLf));
5792 cchRawHeaders += sizeof(szCrLf)/sizeof(szCrLf[0])-1;
5793 lpszRawHeaders[cchRawHeaders] = '\0';
5795 HTTP_ProcessHeader(request, pFieldAndValue[0], pFieldAndValue[1],
5796 HTTP_ADDREQ_FLAG_ADD );
5798 HTTP_FreeTokens(pFieldAndValue);
5809 /* make sure the response header is terminated with an empty line. Some apps really
5810 truly care about that empty line being there for some reason. Just add it to the
5812 if (cchRawHeaders + strlenW(szCrLf) > cchMaxRawHeaders)
5814 cchMaxRawHeaders = cchRawHeaders + strlenW(szCrLf);
5815 temp = heap_realloc(lpszRawHeaders, (cchMaxRawHeaders + 1) * sizeof(WCHAR));
5816 if (temp == NULL) goto lend;
5817 lpszRawHeaders = temp;
5820 memcpy(&lpszRawHeaders[cchRawHeaders], szCrLf, sizeof(szCrLf));
5822 heap_free(request->rawHeaders);
5823 request->rawHeaders = lpszRawHeaders;
5824 TRACE("raw headers: %s\n", debugstr_w(lpszRawHeaders));
5834 heap_free(lpszRawHeaders);
5839 /***********************************************************************
5840 * HTTP_InterpretHttpHeader (internal)
5842 * Parse server response
5846 * Pointer to array of field, value, NULL on success.
5849 static LPWSTR * HTTP_InterpretHttpHeader(LPCWSTR buffer)
5851 LPWSTR * pTokenPair;
5855 pTokenPair = heap_alloc_zero(sizeof(*pTokenPair)*3);
5857 pszColon = strchrW(buffer, ':');
5858 /* must have two tokens */
5861 HTTP_FreeTokens(pTokenPair);
5863 TRACE("No ':' in line: %s\n", debugstr_w(buffer));
5867 pTokenPair[0] = heap_alloc((pszColon - buffer + 1) * sizeof(WCHAR));
5870 HTTP_FreeTokens(pTokenPair);
5873 memcpy(pTokenPair[0], buffer, (pszColon - buffer) * sizeof(WCHAR));
5874 pTokenPair[0][pszColon - buffer] = '\0';
5878 len = strlenW(pszColon);
5879 pTokenPair[1] = heap_alloc((len + 1) * sizeof(WCHAR));
5882 HTTP_FreeTokens(pTokenPair);
5885 memcpy(pTokenPair[1], pszColon, (len + 1) * sizeof(WCHAR));
5887 strip_spaces(pTokenPair[0]);
5888 strip_spaces(pTokenPair[1]);
5890 TRACE("field(%s) Value(%s)\n", debugstr_w(pTokenPair[0]), debugstr_w(pTokenPair[1]));
5894 /***********************************************************************
5895 * HTTP_ProcessHeader (internal)
5897 * Stuff header into header tables according to <dwModifier>
5901 #define COALESCEFLAGS (HTTP_ADDHDR_FLAG_COALESCE|HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA|HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON)
5903 static DWORD HTTP_ProcessHeader(http_request_t *request, LPCWSTR field, LPCWSTR value, DWORD dwModifier)
5905 LPHTTPHEADERW lphttpHdr = NULL;
5907 BOOL request_only = dwModifier & HTTP_ADDHDR_FLAG_REQ;
5908 DWORD res = ERROR_HTTP_INVALID_HEADER;
5910 TRACE("--> %s: %s - 0x%08x\n", debugstr_w(field), debugstr_w(value), dwModifier);
5912 /* REPLACE wins out over ADD */
5913 if (dwModifier & HTTP_ADDHDR_FLAG_REPLACE)
5914 dwModifier &= ~HTTP_ADDHDR_FLAG_ADD;
5916 if (dwModifier & HTTP_ADDHDR_FLAG_ADD)
5919 index = HTTP_GetCustomHeaderIndex(request, field, 0, request_only);
5923 if (dwModifier & HTTP_ADDHDR_FLAG_ADD_IF_NEW)
5924 return ERROR_HTTP_INVALID_HEADER;
5925 lphttpHdr = &request->custHeaders[index];
5931 hdr.lpszField = (LPWSTR)field;
5932 hdr.lpszValue = (LPWSTR)value;
5933 hdr.wFlags = hdr.wCount = 0;
5935 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
5936 hdr.wFlags |= HDR_ISREQUEST;
5938 return HTTP_InsertCustomHeader(request, &hdr);
5940 /* no value to delete */
5941 else return ERROR_SUCCESS;
5943 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
5944 lphttpHdr->wFlags |= HDR_ISREQUEST;
5946 lphttpHdr->wFlags &= ~HDR_ISREQUEST;
5948 if (dwModifier & HTTP_ADDHDR_FLAG_REPLACE)
5950 HTTP_DeleteCustomHeader( request, index );
5956 hdr.lpszField = (LPWSTR)field;
5957 hdr.lpszValue = (LPWSTR)value;
5958 hdr.wFlags = hdr.wCount = 0;
5960 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
5961 hdr.wFlags |= HDR_ISREQUEST;
5963 return HTTP_InsertCustomHeader(request, &hdr);
5966 return ERROR_SUCCESS;
5968 else if (dwModifier & COALESCEFLAGS)
5973 INT origlen = strlenW(lphttpHdr->lpszValue);
5974 INT valuelen = strlenW(value);
5976 if (dwModifier & HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA)
5979 lphttpHdr->wFlags |= HDR_COMMADELIMITED;
5981 else if (dwModifier & HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON)
5984 lphttpHdr->wFlags |= HDR_COMMADELIMITED;
5987 len = origlen + valuelen + ((ch > 0) ? 2 : 0);
5989 lpsztmp = heap_realloc(lphttpHdr->lpszValue, (len+1)*sizeof(WCHAR));
5992 lphttpHdr->lpszValue = lpsztmp;
5993 /* FIXME: Increment lphttpHdr->wCount. Perhaps lpszValue should be an array */
5996 lphttpHdr->lpszValue[origlen] = ch;
5998 lphttpHdr->lpszValue[origlen] = ' ';
6002 memcpy(&lphttpHdr->lpszValue[origlen], value, valuelen*sizeof(WCHAR));
6003 lphttpHdr->lpszValue[len] = '\0';
6004 res = ERROR_SUCCESS;
6008 WARN("heap_realloc (%d bytes) failed\n",len+1);
6009 res = ERROR_OUTOFMEMORY;
6012 TRACE("<-- %d\n", res);
6016 /***********************************************************************
6017 * HTTP_GetCustomHeaderIndex (internal)
6019 * Return index of custom header from header array
6022 static INT HTTP_GetCustomHeaderIndex(http_request_t *request, LPCWSTR lpszField,
6023 int requested_index, BOOL request_only)
6027 TRACE("%s, %d, %d\n", debugstr_w(lpszField), requested_index, request_only);
6029 for (index = 0; index < request->nCustHeaders; index++)
6031 if (strcmpiW(request->custHeaders[index].lpszField, lpszField))
6034 if (request_only && !(request->custHeaders[index].wFlags & HDR_ISREQUEST))
6037 if (!request_only && (request->custHeaders[index].wFlags & HDR_ISREQUEST))
6040 if (requested_index == 0)
6045 if (index >= request->nCustHeaders)
6048 TRACE("Return: %d\n", index);
6053 /***********************************************************************
6054 * HTTP_InsertCustomHeader (internal)
6056 * Insert header into array
6059 static DWORD HTTP_InsertCustomHeader(http_request_t *request, LPHTTPHEADERW lpHdr)
6062 LPHTTPHEADERW lph = NULL;
6064 TRACE("--> %s: %s\n", debugstr_w(lpHdr->lpszField), debugstr_w(lpHdr->lpszValue));
6065 count = request->nCustHeaders + 1;
6067 lph = heap_realloc_zero(request->custHeaders, sizeof(HTTPHEADERW) * count);
6069 lph = heap_alloc_zero(sizeof(HTTPHEADERW) * count);
6072 return ERROR_OUTOFMEMORY;
6074 request->custHeaders = lph;
6075 request->custHeaders[count-1].lpszField = heap_strdupW(lpHdr->lpszField);
6076 request->custHeaders[count-1].lpszValue = heap_strdupW(lpHdr->lpszValue);
6077 request->custHeaders[count-1].wFlags = lpHdr->wFlags;
6078 request->custHeaders[count-1].wCount= lpHdr->wCount;
6079 request->nCustHeaders++;
6081 return ERROR_SUCCESS;
6085 /***********************************************************************
6086 * HTTP_DeleteCustomHeader (internal)
6088 * Delete header from array
6089 * If this function is called, the indexs may change.
6091 static BOOL HTTP_DeleteCustomHeader(http_request_t *request, DWORD index)
6093 if( request->nCustHeaders <= 0 )
6095 if( index >= request->nCustHeaders )
6097 request->nCustHeaders--;
6099 heap_free(request->custHeaders[index].lpszField);
6100 heap_free(request->custHeaders[index].lpszValue);
6102 memmove( &request->custHeaders[index], &request->custHeaders[index+1],
6103 (request->nCustHeaders - index)* sizeof(HTTPHEADERW) );
6104 memset( &request->custHeaders[request->nCustHeaders], 0, sizeof(HTTPHEADERW) );
6110 /***********************************************************************
6111 * HTTP_VerifyValidHeader (internal)
6113 * Verify the given header is not invalid for the given http request
6116 static BOOL HTTP_VerifyValidHeader(http_request_t *request, LPCWSTR field)
6118 /* Accept-Encoding is stripped from HTTP/1.0 requests. It is invalid */
6119 if (!strcmpW(request->version, g_szHttp1_0) && !strcmpiW(field, szAccept_Encoding))
6120 return ERROR_HTTP_INVALID_HEADER;
6122 return ERROR_SUCCESS;
6125 /***********************************************************************
6126 * IsHostInProxyBypassList (@)
6131 BOOL WINAPI IsHostInProxyBypassList(DWORD flags, LPCSTR szHost, DWORD length)
6133 FIXME("STUB: flags=%d host=%s length=%d\n",flags,szHost,length);