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
13 * This library is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU Lesser General Public
15 * License as published by the Free Software Foundation; either
16 * version 2.1 of the License, or (at your option) any later version.
18 * This library is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * Lesser General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public
24 * License along with this library; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "wine/port.h"
31 #include <sys/types.h>
32 #ifdef HAVE_SYS_SOCKET_H
33 # include <sys/socket.h>
35 #ifdef HAVE_ARPA_INET_H
36 # include <arpa/inet.h>
52 #define NO_SHLWAPI_STREAM
53 #define NO_SHLWAPI_REG
54 #define NO_SHLWAPI_STRFCNS
55 #define NO_SHLWAPI_GDI
59 #include "wine/debug.h"
60 #include "wine/unicode.h"
62 WINE_DEFAULT_DEBUG_CHANNEL(wininet
);
64 static const WCHAR g_szHttp1_0
[] = {' ','H','T','T','P','/','1','.','0',0 };
65 static const WCHAR g_szHttp1_1
[] = {' ','H','T','T','P','/','1','.','1',0 };
66 static const WCHAR g_szReferer
[] = {'R','e','f','e','r','e','r',0};
67 static const WCHAR g_szAccept
[] = {'A','c','c','e','p','t',0};
68 static const WCHAR g_szUserAgent
[] = {'U','s','e','r','-','A','g','e','n','t',0};
69 static const WCHAR szHost
[] = { 'H','o','s','t',0 };
70 static const WCHAR szProxy_Authorization
[] = { 'P','r','o','x','y','-','A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
71 static const WCHAR szStatus
[] = { 'S','t','a','t','u','s',0 };
73 #define MAXHOSTNAME 100
74 #define MAX_FIELD_VALUE_LEN 256
75 #define MAX_FIELD_LEN 256
77 #define HTTP_REFERER g_szReferer
78 #define HTTP_ACCEPT g_szAccept
79 #define HTTP_USERAGENT g_szUserAgent
81 #define HTTP_ADDHDR_FLAG_ADD 0x20000000
82 #define HTTP_ADDHDR_FLAG_ADD_IF_NEW 0x10000000
83 #define HTTP_ADDHDR_FLAG_COALESCE 0x40000000
84 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA 0x40000000
85 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON 0x01000000
86 #define HTTP_ADDHDR_FLAG_REPLACE 0x80000000
87 #define HTTP_ADDHDR_FLAG_REQ 0x02000000
90 static void HTTP_CloseHTTPRequestHandle(LPWININETHANDLEHEADER hdr
);
91 static void HTTP_CloseHTTPSessionHandle(LPWININETHANDLEHEADER hdr
);
92 static BOOL
HTTP_OpenConnection(LPWININETHTTPREQW lpwhr
);
93 static BOOL
HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr
);
94 static BOOL
HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr
, LPCWSTR field
, LPCWSTR value
, DWORD dwModifier
);
95 static LPWSTR
* HTTP_InterpretHttpHeader(LPCWSTR buffer
);
96 static BOOL
HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr
, LPHTTPHEADERW lpHdr
);
97 static INT
HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszField
, INT index
, BOOL Request
);
98 static BOOL
HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr
, DWORD index
);
99 static LPWSTR
HTTP_build_req( LPCWSTR
*list
, int len
);
100 static BOOL
HTTP_InsertProxyAuthorization( LPWININETHTTPREQW lpwhr
,
101 LPCWSTR username
, LPCWSTR password
);
102 static BOOL WINAPI
HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr
, DWORD
103 dwInfoLevel
, LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD
105 static BOOL
HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszUrl
,
106 LPCWSTR lpszHeaders
, DWORD dwHeaderLength
, LPVOID lpOptional
, DWORD
107 dwOptionalLength
, DWORD dwContentLength
);
110 LPHTTPHEADERW
HTTP_GetHeader(LPWININETHTTPREQW req
, LPCWSTR head
)
113 HeaderIndex
= HTTP_GetCustomHeaderIndex(req
, head
, 0, TRUE
);
114 if (HeaderIndex
== -1)
117 return &req
->pCustHeaders
[HeaderIndex
];
120 /***********************************************************************
121 * HTTP_Tokenize (internal)
123 * Tokenize a string, allocating memory for the tokens.
125 static LPWSTR
* HTTP_Tokenize(LPCWSTR string
, LPCWSTR token_string
)
127 LPWSTR
* token_array
;
132 /* empty string has no tokens */
136 for (i
= 0; string
[i
]; i
++)
137 if (!strncmpW(string
+i
, token_string
, strlenW(token_string
)))
141 /* we want to skip over separators, but not the null terminator */
142 for (j
= 0; j
< strlenW(token_string
) - 1; j
++)
148 /* add 1 for terminating NULL */
149 token_array
= HeapAlloc(GetProcessHeap(), 0, (tokens
+1) * sizeof(*token_array
));
150 token_array
[tokens
] = NULL
;
153 for (i
= 0; i
< tokens
; i
++)
156 next_token
= strstrW(string
, token_string
);
157 if (!next_token
) next_token
= string
+strlenW(string
);
158 len
= next_token
- string
;
159 token_array
[i
] = HeapAlloc(GetProcessHeap(), 0, (len
+1)*sizeof(WCHAR
));
160 memcpy(token_array
[i
], string
, len
*sizeof(WCHAR
));
161 token_array
[i
][len
] = '\0';
162 string
= next_token
+strlenW(token_string
);
167 /***********************************************************************
168 * HTTP_FreeTokens (internal)
170 * Frees memory returned from HTTP_Tokenize.
172 static void HTTP_FreeTokens(LPWSTR
* token_array
)
175 for (i
= 0; token_array
[i
]; i
++)
176 HeapFree(GetProcessHeap(), 0, token_array
[i
]);
177 HeapFree(GetProcessHeap(), 0, token_array
);
180 /* **********************************************************************
182 * Helper functions for the HttpSendRequest(Ex) functions
185 static void HTTP_FixVerb( LPWININETHTTPREQW lpwhr
)
187 /* if the verb is NULL default to GET */
188 if (NULL
== lpwhr
->lpszVerb
)
190 static const WCHAR szGET
[] = { 'G','E','T', 0 };
191 lpwhr
->lpszVerb
= WININET_strdupW(szGET
);
195 static void HTTP_FixURL( LPWININETHTTPREQW lpwhr
)
197 static const WCHAR szSlash
[] = { '/',0 };
198 static const WCHAR szHttp
[] = { 'h','t','t','p',':','/','/', 0 };
200 /* If we don't have a path we set it to root */
201 if (NULL
== lpwhr
->lpszPath
)
202 lpwhr
->lpszPath
= WININET_strdupW(szSlash
);
203 else /* remove \r and \n*/
205 int nLen
= strlenW(lpwhr
->lpszPath
);
206 while ((nLen
>0 ) && ((lpwhr
->lpszPath
[nLen
-1] == '\r')||(lpwhr
->lpszPath
[nLen
-1] == '\n')))
209 lpwhr
->lpszPath
[nLen
]='\0';
211 /* Replace '\' with '/' */
214 if (lpwhr
->lpszPath
[nLen
] == '\\') lpwhr
->lpszPath
[nLen
]='/';
218 if(CSTR_EQUAL
!= CompareStringW( LOCALE_SYSTEM_DEFAULT
, NORM_IGNORECASE
,
219 lpwhr
->lpszPath
, strlenW(szHttp
), szHttp
, strlenW(szHttp
) )
220 && lpwhr
->lpszPath
[0] != '/') /* not an absolute path ?? --> fix it !! */
222 WCHAR
*fixurl
= HeapAlloc(GetProcessHeap(), 0,
223 (strlenW(lpwhr
->lpszPath
) + 2)*sizeof(WCHAR
));
225 strcpyW(fixurl
+ 1, lpwhr
->lpszPath
);
226 HeapFree( GetProcessHeap(), 0, lpwhr
->lpszPath
);
227 lpwhr
->lpszPath
= fixurl
;
231 static LPWSTR
HTTP_BuildHeaderRequestString( LPWININETHTTPREQW lpwhr
, LPCWSTR verb
, LPCWSTR path
, BOOL http1_1
)
233 LPWSTR requestString
;
239 static const WCHAR szSpace
[] = { ' ',0 };
240 static const WCHAR szcrlf
[] = {'\r','\n', 0};
241 static const WCHAR szColon
[] = { ':',' ',0 };
242 static const WCHAR sztwocrlf
[] = {'\r','\n','\r','\n', 0};
244 /* allocate space for an array of all the string pointers to be added */
245 len
= (lpwhr
->nCustHeaders
)*4 + 9;
246 req
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(LPCWSTR
) );
248 /* add the verb, path and HTTP version string */
253 req
[n
++] = http1_1
? g_szHttp1_1
: g_szHttp1_0
;
255 /* Append custom request heades */
256 for (i
= 0; i
< lpwhr
->nCustHeaders
; i
++)
258 if (lpwhr
->pCustHeaders
[i
].wFlags
& HDR_ISREQUEST
)
261 req
[n
++] = lpwhr
->pCustHeaders
[i
].lpszField
;
263 req
[n
++] = lpwhr
->pCustHeaders
[i
].lpszValue
;
265 TRACE("Adding custom header %s (%s)\n",
266 debugstr_w(lpwhr
->pCustHeaders
[i
].lpszField
),
267 debugstr_w(lpwhr
->pCustHeaders
[i
].lpszValue
));
272 ERR("oops. buffer overrun\n");
275 requestString
= HTTP_build_req( req
, 4 );
276 HeapFree( GetProcessHeap(), 0, req
);
279 * Set (header) termination string for request
280 * Make sure there's exactly two new lines at the end of the request
282 p
= &requestString
[strlenW(requestString
)-1];
283 while ( (*p
== '\n') || (*p
== '\r') )
285 strcpyW( p
+1, sztwocrlf
);
287 return requestString
;
290 static void HTTP_ProcessHeaders( LPWININETHTTPREQW lpwhr
)
292 static const WCHAR szSet_Cookie
[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
294 LPHTTPHEADERW setCookieHeader
;
296 HeaderIndex
= HTTP_GetCustomHeaderIndex(lpwhr
, szSet_Cookie
, 0, FALSE
);
297 if (HeaderIndex
== -1)
299 setCookieHeader
= &lpwhr
->pCustHeaders
[HeaderIndex
];
301 if (!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_COOKIES
) && setCookieHeader
->lpszValue
)
303 int nPosStart
= 0, nPosEnd
= 0, len
;
304 static const WCHAR szFmt
[] = { 'h','t','t','p',':','/','/','%','s','/',0};
306 while (setCookieHeader
->lpszValue
[nPosEnd
] != '\0')
308 LPWSTR buf_cookie
, cookie_name
, cookie_data
;
310 LPWSTR domain
= NULL
;
314 while (setCookieHeader
->lpszValue
[nPosEnd
] != ';' && setCookieHeader
->lpszValue
[nPosEnd
] != ',' &&
315 setCookieHeader
->lpszValue
[nPosEnd
] != '\0')
319 if (setCookieHeader
->lpszValue
[nPosEnd
] == ';')
321 /* fixme: not case sensitive, strcasestr is gnu only */
322 int nDomainPosEnd
= 0;
323 int nDomainPosStart
= 0, nDomainLength
= 0;
324 static const WCHAR szDomain
[] = {'d','o','m','a','i','n','=',0};
325 LPWSTR lpszDomain
= strstrW(&setCookieHeader
->lpszValue
[nPosEnd
], szDomain
);
327 { /* they have specified their own domain, lets use it */
328 while (lpszDomain
[nDomainPosEnd
] != ';' && lpszDomain
[nDomainPosEnd
] != ',' &&
329 lpszDomain
[nDomainPosEnd
] != '\0')
333 nDomainPosStart
= strlenW(szDomain
);
334 nDomainLength
= (nDomainPosEnd
- nDomainPosStart
) + 1;
335 domain
= HeapAlloc(GetProcessHeap(), 0, (nDomainLength
+ 1)*sizeof(WCHAR
));
336 lstrcpynW(domain
, &lpszDomain
[nDomainPosStart
], nDomainLength
+ 1);
339 if (setCookieHeader
->lpszValue
[nPosEnd
] == '\0') break;
340 buf_cookie
= HeapAlloc(GetProcessHeap(), 0, ((nPosEnd
- nPosStart
) + 1)*sizeof(WCHAR
));
341 lstrcpynW(buf_cookie
, &setCookieHeader
->lpszValue
[nPosStart
], (nPosEnd
- nPosStart
) + 1);
342 TRACE("%s\n", debugstr_w(buf_cookie
));
343 while (buf_cookie
[nEqualPos
] != '=' && buf_cookie
[nEqualPos
] != '\0')
347 if (buf_cookie
[nEqualPos
] == '\0' || buf_cookie
[nEqualPos
+ 1] == '\0')
349 HeapFree(GetProcessHeap(), 0, buf_cookie
);
353 cookie_name
= HeapAlloc(GetProcessHeap(), 0, (nEqualPos
+ 1)*sizeof(WCHAR
));
354 lstrcpynW(cookie_name
, buf_cookie
, nEqualPos
+ 1);
355 cookie_data
= &buf_cookie
[nEqualPos
+ 1];
357 Host
= HTTP_GetHeader(lpwhr
,szHost
);
358 len
= lstrlenW((domain
? domain
: (Host
?Host
->lpszValue
:NULL
))) +
359 strlenW(lpwhr
->lpszPath
) + 9;
360 buf_url
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
361 sprintfW(buf_url
, szFmt
, (domain
? domain
: (Host
?Host
->lpszValue
:NULL
))); /* FIXME PATH!!! */
362 InternetSetCookieW(buf_url
, cookie_name
, cookie_data
);
364 HeapFree(GetProcessHeap(), 0, buf_url
);
365 HeapFree(GetProcessHeap(), 0, buf_cookie
);
366 HeapFree(GetProcessHeap(), 0, cookie_name
);
367 HeapFree(GetProcessHeap(), 0, domain
);
373 static void HTTP_AddProxyInfo( LPWININETHTTPREQW lpwhr
)
375 LPWININETHTTPSESSIONW lpwhs
= (LPWININETHTTPSESSIONW
)lpwhr
->hdr
.lpwhparent
;
376 LPWININETAPPINFOW hIC
= (LPWININETAPPINFOW
)lpwhs
->hdr
.lpwhparent
;
378 assert(lpwhs
->hdr
.htype
== WH_HHTTPSESSION
);
379 assert(hIC
->hdr
.htype
== WH_HINIT
);
381 if (hIC
&& (hIC
->lpszProxyUsername
|| hIC
->lpszProxyPassword
))
382 HTTP_InsertProxyAuthorization(lpwhr
, hIC
->lpszProxyUsername
,
383 hIC
->lpszProxyPassword
);
386 /***********************************************************************
387 * HTTP_HttpAddRequestHeadersW (internal)
389 static BOOL WINAPI
HTTP_HttpAddRequestHeadersW(LPWININETHTTPREQW lpwhr
,
390 LPCWSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
395 BOOL bSuccess
= FALSE
;
398 TRACE("copying header: %s\n", debugstr_w(lpszHeader
));
400 if( dwHeaderLength
== ~0U )
401 len
= strlenW(lpszHeader
);
403 len
= dwHeaderLength
;
404 buffer
= HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR
)*(len
+1) );
405 lstrcpynW( buffer
, lpszHeader
, len
+ 1);
411 LPWSTR
* pFieldAndValue
;
415 while (*lpszEnd
!= '\0')
417 if (*lpszEnd
== '\r' && *(lpszEnd
+ 1) == '\n')
422 if (*lpszStart
== '\0')
425 if (*lpszEnd
== '\r')
428 lpszEnd
+= 2; /* Jump over \r\n */
430 TRACE("interpreting header %s\n", debugstr_w(lpszStart
));
431 pFieldAndValue
= HTTP_InterpretHttpHeader(lpszStart
);
434 bSuccess
= HTTP_ProcessHeader(lpwhr
, pFieldAndValue
[0],
435 pFieldAndValue
[1], dwModifier
| HTTP_ADDHDR_FLAG_REQ
);
436 HTTP_FreeTokens(pFieldAndValue
);
442 HeapFree(GetProcessHeap(), 0, buffer
);
447 /***********************************************************************
448 * HttpAddRequestHeadersW (WININET.@)
450 * Adds one or more HTTP header to the request handler
457 BOOL WINAPI
HttpAddRequestHeadersW(HINTERNET hHttpRequest
,
458 LPCWSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
460 BOOL bSuccess
= FALSE
;
461 LPWININETHTTPREQW lpwhr
;
463 TRACE("%p, %s, %li, %li\n", hHttpRequest
, debugstr_w(lpszHeader
), dwHeaderLength
,
469 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
470 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
472 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
475 bSuccess
= HTTP_HttpAddRequestHeadersW( lpwhr
, lpszHeader
, dwHeaderLength
, dwModifier
);
478 WININET_Release( &lpwhr
->hdr
);
483 /***********************************************************************
484 * HttpAddRequestHeadersA (WININET.@)
486 * Adds one or more HTTP header to the request handler
493 BOOL WINAPI
HttpAddRequestHeadersA(HINTERNET hHttpRequest
,
494 LPCSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
500 TRACE("%p, %s, %li, %li\n", hHttpRequest
, debugstr_a(lpszHeader
), dwHeaderLength
,
503 len
= MultiByteToWideChar( CP_ACP
, 0, lpszHeader
, dwHeaderLength
, NULL
, 0 );
504 hdr
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
505 MultiByteToWideChar( CP_ACP
, 0, lpszHeader
, dwHeaderLength
, hdr
, len
);
506 if( dwHeaderLength
!= ~0U )
507 dwHeaderLength
= len
;
509 r
= HttpAddRequestHeadersW( hHttpRequest
, hdr
, dwHeaderLength
, dwModifier
);
511 HeapFree( GetProcessHeap(), 0, hdr
);
516 /***********************************************************************
517 * HttpEndRequestA (WININET.@)
519 * Ends an HTTP request that was started by HttpSendRequestEx
526 BOOL WINAPI
HttpEndRequestA(HINTERNET hRequest
,
527 LPINTERNET_BUFFERSA lpBuffersOut
, DWORD dwFlags
, DWORD dwContext
)
529 LPINTERNET_BUFFERSA ptr
;
530 LPINTERNET_BUFFERSW lpBuffersOutW
,ptrW
;
533 TRACE("(%p, %p, %08lx, %08lx): stub\n", hRequest
, lpBuffersOut
, dwFlags
,
538 lpBuffersOutW
= (LPINTERNET_BUFFERSW
)HeapAlloc(GetProcessHeap(),
539 HEAP_ZERO_MEMORY
, sizeof(INTERNET_BUFFERSW
));
541 lpBuffersOutW
= NULL
;
543 ptrW
= lpBuffersOutW
;
546 if (ptr
->lpvBuffer
&& ptr
->dwBufferLength
)
547 ptrW
->lpvBuffer
= HeapAlloc(GetProcessHeap(),0,ptr
->dwBufferLength
);
548 ptrW
->dwBufferLength
= ptr
->dwBufferLength
;
549 ptrW
->dwBufferTotal
= ptr
->dwBufferTotal
;
552 ptrW
->Next
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,
553 sizeof(INTERNET_BUFFERSW
));
559 rc
= HttpEndRequestW(hRequest
, lpBuffersOutW
, dwFlags
, dwContext
);
563 ptrW
= lpBuffersOutW
;
566 LPINTERNET_BUFFERSW ptrW2
;
568 FIXME("Do we need to translate info out of these buffer?\n");
570 HeapFree(GetProcessHeap(),0,(LPVOID
)ptrW
->lpvBuffer
);
572 HeapFree(GetProcessHeap(),0,ptrW
);
580 /***********************************************************************
581 * HttpEndRequestW (WININET.@)
583 * Ends an HTTP request that was started by HttpSendRequestEx
590 BOOL WINAPI
HttpEndRequestW(HINTERNET hRequest
,
591 LPINTERNET_BUFFERSW lpBuffersOut
, DWORD dwFlags
, DWORD dwContext
)
594 LPWININETHTTPREQW lpwhr
;
598 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hRequest
);
600 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
602 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
606 lpwhr
->hdr
.dwFlags
|= dwFlags
;
607 lpwhr
->hdr
.dwContext
= dwContext
;
609 SendAsyncCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
610 INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
612 responseLen
= HTTP_GetResponseHeaders(lpwhr
);
616 SendAsyncCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
617 INTERNET_STATUS_RESPONSE_RECEIVED
, &responseLen
, sizeof(DWORD
));
619 /* process headers here. Is this right? */
620 HTTP_ProcessHeaders(lpwhr
);
622 /* We appear to do nothing with the buffer.. is that correct? */
624 if(!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_AUTO_REDIRECT
))
626 DWORD dwCode
,dwCodeLength
=sizeof(DWORD
),dwIndex
=0;
627 if(HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_FLAG_NUMBER
|HTTP_QUERY_STATUS_CODE
,&dwCode
,&dwCodeLength
,&dwIndex
) &&
628 (dwCode
==302 || dwCode
==301))
630 WCHAR szNewLocation
[2048];
631 DWORD dwBufferSize
=2048;
633 if(HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_LOCATION
,szNewLocation
,&dwBufferSize
,&dwIndex
))
635 static const WCHAR szGET
[] = { 'G','E','T', 0 };
636 /* redirects are always GETs */
637 HeapFree(GetProcessHeap(),0,lpwhr
->lpszVerb
);
638 lpwhr
->lpszVerb
= WININET_strdupW(szGET
);
639 return HTTP_HandleRedirect(lpwhr
, szNewLocation
, NULL
, 0, NULL
, 0, 0);
644 TRACE("%i <--\n",rc
);
648 /***********************************************************************
649 * HttpOpenRequestW (WININET.@)
651 * Open a HTTP request handle
654 * HINTERNET a HTTP request handle on success
658 HINTERNET WINAPI
HttpOpenRequestW(HINTERNET hHttpSession
,
659 LPCWSTR lpszVerb
, LPCWSTR lpszObjectName
, LPCWSTR lpszVersion
,
660 LPCWSTR lpszReferrer
, LPCWSTR
*lpszAcceptTypes
,
661 DWORD dwFlags
, DWORD dwContext
)
663 LPWININETHTTPSESSIONW lpwhs
;
664 HINTERNET handle
= NULL
;
666 TRACE("(%p, %s, %s, %s, %s, %p, %08lx, %08lx)\n", hHttpSession
,
667 debugstr_w(lpszVerb
), debugstr_w(lpszObjectName
),
668 debugstr_w(lpszVersion
), debugstr_w(lpszReferrer
), lpszAcceptTypes
,
670 if(lpszAcceptTypes
!=NULL
)
673 for(i
=0;lpszAcceptTypes
[i
]!=NULL
;i
++)
674 TRACE("\taccept type: %s\n",debugstr_w(lpszAcceptTypes
[i
]));
677 lpwhs
= (LPWININETHTTPSESSIONW
) WININET_GetObject( hHttpSession
);
678 if (NULL
== lpwhs
|| lpwhs
->hdr
.htype
!= WH_HHTTPSESSION
)
680 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
685 * My tests seem to show that the windows version does not
686 * become asynchronous until after this point. And anyhow
687 * if this call was asynchronous then how would you get the
688 * necessary HINTERNET pointer returned by this function.
691 handle
= HTTP_HttpOpenRequestW(lpwhs
, lpszVerb
, lpszObjectName
,
692 lpszVersion
, lpszReferrer
, lpszAcceptTypes
,
696 WININET_Release( &lpwhs
->hdr
);
697 TRACE("returning %p\n", handle
);
702 /***********************************************************************
703 * HttpOpenRequestA (WININET.@)
705 * Open a HTTP request handle
708 * HINTERNET a HTTP request handle on success
712 HINTERNET WINAPI
HttpOpenRequestA(HINTERNET hHttpSession
,
713 LPCSTR lpszVerb
, LPCSTR lpszObjectName
, LPCSTR lpszVersion
,
714 LPCSTR lpszReferrer
, LPCSTR
*lpszAcceptTypes
,
715 DWORD dwFlags
, DWORD dwContext
)
717 LPWSTR szVerb
= NULL
, szObjectName
= NULL
;
718 LPWSTR szVersion
= NULL
, szReferrer
= NULL
, *szAcceptTypes
= NULL
;
720 INT acceptTypesCount
;
721 HINTERNET rc
= FALSE
;
722 TRACE("(%p, %s, %s, %s, %s, %p, %08lx, %08lx)\n", hHttpSession
,
723 debugstr_a(lpszVerb
), debugstr_a(lpszObjectName
),
724 debugstr_a(lpszVersion
), debugstr_a(lpszReferrer
), lpszAcceptTypes
,
729 len
= MultiByteToWideChar(CP_ACP
, 0, lpszVerb
, -1, NULL
, 0 );
730 szVerb
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
733 MultiByteToWideChar(CP_ACP
, 0, lpszVerb
, -1, szVerb
, len
);
738 len
= MultiByteToWideChar(CP_ACP
, 0, lpszObjectName
, -1, NULL
, 0 );
739 szObjectName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
742 MultiByteToWideChar(CP_ACP
, 0, lpszObjectName
, -1, szObjectName
, len
);
747 len
= MultiByteToWideChar(CP_ACP
, 0, lpszVersion
, -1, NULL
, 0 );
748 szVersion
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
751 MultiByteToWideChar(CP_ACP
, 0, lpszVersion
, -1, szVersion
, len
);
756 len
= MultiByteToWideChar(CP_ACP
, 0, lpszReferrer
, -1, NULL
, 0 );
757 szReferrer
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
760 MultiByteToWideChar(CP_ACP
, 0, lpszReferrer
, -1, szReferrer
, len
);
763 acceptTypesCount
= 0;
766 /* find out how many there are */
767 while (lpszAcceptTypes
[acceptTypesCount
])
769 szAcceptTypes
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
*) * (acceptTypesCount
+1));
770 acceptTypesCount
= 0;
771 while (lpszAcceptTypes
[acceptTypesCount
])
773 len
= MultiByteToWideChar(CP_ACP
, 0, lpszAcceptTypes
[acceptTypesCount
],
775 szAcceptTypes
[acceptTypesCount
] = HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
776 if (!szAcceptTypes
[acceptTypesCount
] )
778 MultiByteToWideChar(CP_ACP
, 0, lpszAcceptTypes
[acceptTypesCount
],
779 -1, szAcceptTypes
[acceptTypesCount
], len
);
782 szAcceptTypes
[acceptTypesCount
] = NULL
;
784 else szAcceptTypes
= 0;
786 rc
= HttpOpenRequestW(hHttpSession
, szVerb
, szObjectName
,
787 szVersion
, szReferrer
,
788 (LPCWSTR
*)szAcceptTypes
, dwFlags
, dwContext
);
793 acceptTypesCount
= 0;
794 while (szAcceptTypes
[acceptTypesCount
])
796 HeapFree(GetProcessHeap(), 0, szAcceptTypes
[acceptTypesCount
]);
799 HeapFree(GetProcessHeap(), 0, szAcceptTypes
);
801 HeapFree(GetProcessHeap(), 0, szReferrer
);
802 HeapFree(GetProcessHeap(), 0, szVersion
);
803 HeapFree(GetProcessHeap(), 0, szObjectName
);
804 HeapFree(GetProcessHeap(), 0, szVerb
);
809 /***********************************************************************
812 static UINT
HTTP_Base64( LPCWSTR bin
, LPWSTR base64
)
815 static LPCSTR HTTP_Base64Enc
=
816 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
820 /* first 6 bits, all from bin[0] */
821 base64
[n
++] = HTTP_Base64Enc
[(bin
[0] & 0xfc) >> 2];
822 x
= (bin
[0] & 3) << 4;
824 /* next 6 bits, 2 from bin[0] and 4 from bin[1] */
827 base64
[n
++] = HTTP_Base64Enc
[x
];
832 base64
[n
++] = HTTP_Base64Enc
[ x
| ( (bin
[1]&0xf0) >> 4 ) ];
833 x
= ( bin
[1] & 0x0f ) << 2;
835 /* next 6 bits 4 from bin[1] and 2 from bin[2] */
838 base64
[n
++] = HTTP_Base64Enc
[x
];
842 base64
[n
++] = HTTP_Base64Enc
[ x
| ( (bin
[2]&0xc0 ) >> 6 ) ];
844 /* last 6 bits, all from bin [2] */
845 base64
[n
++] = HTTP_Base64Enc
[ bin
[2] & 0x3f ];
852 /***********************************************************************
853 * HTTP_EncodeBasicAuth
855 * Encode the basic authentication string for HTTP 1.1
857 static LPWSTR
HTTP_EncodeBasicAuth( LPCWSTR username
, LPCWSTR password
)
861 static const WCHAR szBasic
[] = {'B','a','s','i','c',' ',0};
862 static const WCHAR szColon
[] = {':',0};
864 len
= lstrlenW( username
) + 1 + lstrlenW ( password
) + 1;
865 in
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
869 len
= lstrlenW(szBasic
) +
870 (lstrlenW( username
) + 1 + lstrlenW ( password
))*2 + 1 + 1;
871 out
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
874 lstrcpyW( in
, username
);
875 lstrcatW( in
, szColon
);
876 lstrcatW( in
, password
);
877 lstrcpyW( out
, szBasic
);
878 HTTP_Base64( in
, &out
[strlenW(out
)] );
880 HeapFree( GetProcessHeap(), 0, in
);
885 /***********************************************************************
886 * HTTP_InsertProxyAuthorization
888 * Insert the basic authorization field in the request header
890 static BOOL
HTTP_InsertProxyAuthorization( LPWININETHTTPREQW lpwhr
,
891 LPCWSTR username
, LPCWSTR password
)
893 WCHAR
*authorization
= HTTP_EncodeBasicAuth( username
, password
);
899 TRACE( "Inserting authorization: %s\n", debugstr_w( authorization
) );
901 HTTP_ProcessHeader(lpwhr
, szProxy_Authorization
, authorization
,
902 HTTP_ADDHDR_FLAG_REPLACE
);
904 HeapFree( GetProcessHeap(), 0, authorization
);
909 /***********************************************************************
912 static BOOL
HTTP_DealWithProxy( LPWININETAPPINFOW hIC
,
913 LPWININETHTTPSESSIONW lpwhs
, LPWININETHTTPREQW lpwhr
)
915 WCHAR buf
[MAXHOSTNAME
];
916 WCHAR proxy
[MAXHOSTNAME
+ 15]; /* 15 == "http://" + sizeof(port#) + ":/\0" */
918 static const WCHAR szNul
[] = { 0 };
919 URL_COMPONENTSW UrlComponents
;
920 static const WCHAR szHttp
[] = { 'h','t','t','p',':','/','/',0 }, szSlash
[] = { '/',0 } ;
921 static const WCHAR szFormat1
[] = { 'h','t','t','p',':','/','/','%','s',0 };
922 static const WCHAR szFormat2
[] = { 'h','t','t','p',':','/','/','%','s',':','%','d',0 };
925 memset( &UrlComponents
, 0, sizeof UrlComponents
);
926 UrlComponents
.dwStructSize
= sizeof UrlComponents
;
927 UrlComponents
.lpszHostName
= buf
;
928 UrlComponents
.dwHostNameLength
= MAXHOSTNAME
;
930 if( CSTR_EQUAL
!= CompareStringW(LOCALE_SYSTEM_DEFAULT
, NORM_IGNORECASE
,
931 hIC
->lpszProxy
,strlenW(szHttp
),szHttp
,strlenW(szHttp
)) )
932 sprintfW(proxy
, szFormat1
, hIC
->lpszProxy
);
934 strcpyW(proxy
, hIC
->lpszProxy
);
935 if( !InternetCrackUrlW(proxy
, 0, 0, &UrlComponents
) )
937 if( UrlComponents
.dwHostNameLength
== 0 )
940 if( !lpwhr
->lpszPath
)
941 lpwhr
->lpszPath
= (LPWSTR
)szNul
;
942 TRACE("server='%s' path='%s'\n",
943 debugstr_w(lpwhs
->lpszHostName
), debugstr_w(lpwhr
->lpszPath
));
944 /* for constant 15 see above */
945 len
= strlenW(lpwhs
->lpszHostName
) + strlenW(lpwhr
->lpszPath
) + 15;
946 url
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
948 if(UrlComponents
.nPort
== INTERNET_INVALID_PORT_NUMBER
)
949 UrlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
951 sprintfW(url
, szFormat2
, lpwhs
->lpszHostName
, lpwhs
->nHostPort
);
953 if( lpwhr
->lpszPath
[0] != '/' )
954 strcatW( url
, szSlash
);
955 strcatW(url
, lpwhr
->lpszPath
);
956 if(lpwhr
->lpszPath
!= szNul
)
957 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszPath
);
958 lpwhr
->lpszPath
= url
;
960 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszServerName
);
961 lpwhs
->lpszServerName
= WININET_strdupW(UrlComponents
.lpszHostName
);
962 lpwhs
->nServerPort
= UrlComponents
.nPort
;
967 /***********************************************************************
968 * HTTP_HttpOpenRequestW (internal)
970 * Open a HTTP request handle
973 * HINTERNET a HTTP request handle on success
977 HINTERNET WINAPI
HTTP_HttpOpenRequestW(LPWININETHTTPSESSIONW lpwhs
,
978 LPCWSTR lpszVerb
, LPCWSTR lpszObjectName
, LPCWSTR lpszVersion
,
979 LPCWSTR lpszReferrer
, LPCWSTR
*lpszAcceptTypes
,
980 DWORD dwFlags
, DWORD dwContext
)
982 LPWININETAPPINFOW hIC
= NULL
;
983 LPWININETHTTPREQW lpwhr
;
985 LPWSTR lpszUrl
= NULL
;
987 HINTERNET handle
= NULL
;
988 static const WCHAR szUrlForm
[] = {'h','t','t','p',':','/','/','%','s',0};
995 assert( lpwhs
->hdr
.htype
== WH_HHTTPSESSION
);
996 hIC
= (LPWININETAPPINFOW
) lpwhs
->hdr
.lpwhparent
;
998 lpwhr
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WININETHTTPREQW
));
1001 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1004 lpwhr
->hdr
.htype
= WH_HHTTPREQ
;
1005 lpwhr
->hdr
.lpwhparent
= WININET_AddRef( &lpwhs
->hdr
);
1006 lpwhr
->hdr
.dwFlags
= dwFlags
;
1007 lpwhr
->hdr
.dwContext
= dwContext
;
1008 lpwhr
->hdr
.dwRefCount
= 1;
1009 lpwhr
->hdr
.destroy
= HTTP_CloseHTTPRequestHandle
;
1010 lpwhr
->hdr
.lpfnStatusCB
= lpwhs
->hdr
.lpfnStatusCB
;
1012 handle
= WININET_AllocHandle( &lpwhr
->hdr
);
1015 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1019 if (!NETCON_init(&lpwhr
->netConnection
, dwFlags
& INTERNET_FLAG_SECURE
))
1021 InternetCloseHandle( handle
);
1026 if (NULL
!= lpszObjectName
&& strlenW(lpszObjectName
)) {
1030 rc
= UrlEscapeW(lpszObjectName
, NULL
, &len
, URL_ESCAPE_SPACES_ONLY
);
1031 if (rc
!= E_POINTER
)
1032 len
= strlenW(lpszObjectName
)+1;
1033 lpwhr
->lpszPath
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
1034 rc
= UrlEscapeW(lpszObjectName
, lpwhr
->lpszPath
, &len
,
1035 URL_ESCAPE_SPACES_ONLY
);
1038 ERR("Unable to escape string!(%s) (%ld)\n",debugstr_w(lpszObjectName
),rc
);
1039 strcpyW(lpwhr
->lpszPath
,lpszObjectName
);
1043 if (NULL
!= lpszReferrer
&& strlenW(lpszReferrer
))
1044 HTTP_ProcessHeader(lpwhr
, HTTP_REFERER
, lpszReferrer
, HTTP_ADDHDR_FLAG_COALESCE
);
1046 if(lpszAcceptTypes
!=NULL
)
1049 for(i
=0;lpszAcceptTypes
[i
]!=NULL
;i
++)
1050 HTTP_ProcessHeader(lpwhr
, HTTP_ACCEPT
, lpszAcceptTypes
[i
], HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA
|HTTP_ADDHDR_FLAG_REQ
|HTTP_ADDHDR_FLAG_ADD_IF_NEW
);
1053 if (NULL
== lpszVerb
)
1055 static const WCHAR szGet
[] = {'G','E','T',0};
1056 lpwhr
->lpszVerb
= WININET_strdupW(szGet
);
1058 else if (strlenW(lpszVerb
))
1059 lpwhr
->lpszVerb
= WININET_strdupW(lpszVerb
);
1061 if (NULL
!= lpszReferrer
&& strlenW(lpszReferrer
))
1063 WCHAR buf
[MAXHOSTNAME
];
1064 URL_COMPONENTSW UrlComponents
;
1066 memset( &UrlComponents
, 0, sizeof UrlComponents
);
1067 UrlComponents
.dwStructSize
= sizeof UrlComponents
;
1068 UrlComponents
.lpszHostName
= buf
;
1069 UrlComponents
.dwHostNameLength
= MAXHOSTNAME
;
1071 InternetCrackUrlW(lpszReferrer
, 0, 0, &UrlComponents
);
1072 if (strlenW(UrlComponents
.lpszHostName
))
1073 HTTP_ProcessHeader(lpwhr
, szHost
, UrlComponents
.lpszHostName
, HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDREQ_FLAG_REPLACE
| HTTP_ADDHDR_FLAG_REQ
);
1076 HTTP_ProcessHeader(lpwhr
, szHost
, lpwhs
->lpszHostName
, HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDREQ_FLAG_REPLACE
| HTTP_ADDHDR_FLAG_REQ
);
1078 if (lpwhs
->nServerPort
== INTERNET_INVALID_PORT_NUMBER
)
1079 lpwhs
->nServerPort
= (dwFlags
& INTERNET_FLAG_SECURE
?
1080 INTERNET_DEFAULT_HTTPS_PORT
:
1081 INTERNET_DEFAULT_HTTP_PORT
);
1082 lpwhs
->nHostPort
= lpwhs
->nServerPort
;
1084 if (NULL
!= hIC
->lpszProxy
&& hIC
->lpszProxy
[0] != 0)
1085 HTTP_DealWithProxy( hIC
, lpwhs
, lpwhr
);
1089 WCHAR
*agent_header
;
1090 static const WCHAR user_agent
[] = {'U','s','e','r','-','A','g','e','n','t',':',' ','%','s','\r','\n',0 };
1092 len
= strlenW(hIC
->lpszAgent
) + strlenW(user_agent
);
1093 agent_header
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
1094 sprintfW(agent_header
, user_agent
, hIC
->lpszAgent
);
1096 HTTP_HttpAddRequestHeadersW(lpwhr
, agent_header
, strlenW(agent_header
),
1097 HTTP_ADDREQ_FLAG_ADD
);
1098 HeapFree(GetProcessHeap(), 0, agent_header
);
1101 Host
= HTTP_GetHeader(lpwhr
,szHost
);
1103 len
= lstrlenW(Host
->lpszValue
) + strlenW(szUrlForm
);
1104 lpszUrl
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
1105 sprintfW( lpszUrl
, szUrlForm
, Host
->lpszValue
);
1107 if (!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_COOKIES
) &&
1108 InternetGetCookieW(lpszUrl
, NULL
, NULL
, &nCookieSize
))
1111 static const WCHAR szCookie
[] = {'C','o','o','k','i','e',':',' ',0};
1112 static const WCHAR szcrlf
[] = {'\r','\n',0};
1114 lpszCookies
= HeapAlloc(GetProcessHeap(), 0, (nCookieSize
+ 1 + 8)*sizeof(WCHAR
));
1116 cnt
+= sprintfW(lpszCookies
, szCookie
);
1117 InternetGetCookieW(lpszUrl
, NULL
, lpszCookies
+ cnt
, &nCookieSize
);
1118 strcatW(lpszCookies
, szcrlf
);
1120 HTTP_HttpAddRequestHeadersW(lpwhr
, lpszCookies
, strlenW(lpszCookies
),
1121 HTTP_ADDREQ_FLAG_ADD
);
1122 HeapFree(GetProcessHeap(), 0, lpszCookies
);
1124 HeapFree(GetProcessHeap(), 0, lpszUrl
);
1127 INTERNET_SendCallback(&lpwhs
->hdr
, dwContext
,
1128 INTERNET_STATUS_HANDLE_CREATED
, &handle
,
1132 * A STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on windows
1136 * According to my tests. The name is not resolved until a request is Opened
1138 INTERNET_SendCallback(&lpwhr
->hdr
, dwContext
,
1139 INTERNET_STATUS_RESOLVING_NAME
,
1140 lpwhs
->lpszServerName
,
1141 strlenW(lpwhs
->lpszServerName
)+1);
1143 if (!GetAddress(lpwhs
->lpszServerName
, lpwhs
->nServerPort
,
1144 &lpwhs
->socketAddress
))
1146 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED
);
1147 InternetCloseHandle( handle
);
1152 inet_ntop(lpwhs
->socketAddress
.sin_family
, &lpwhs
->socketAddress
.sin_addr
,
1153 szaddr
, sizeof(szaddr
));
1154 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1155 INTERNET_STATUS_NAME_RESOLVED
,
1156 szaddr
, strlen(szaddr
)+1);
1160 WININET_Release( &lpwhr
->hdr
);
1162 TRACE("<-- %p (%p)\n", handle
, lpwhr
);
1166 static const WCHAR szAccept
[] = { 'A','c','c','e','p','t',0 };
1167 static const WCHAR szAccept_Charset
[] = { 'A','c','c','e','p','t','-','C','h','a','r','s','e','t', 0 };
1168 static const WCHAR szAccept_Encoding
[] = { 'A','c','c','e','p','t','-','E','n','c','o','d','i','n','g',0 };
1169 static const WCHAR szAccept_Language
[] = { 'A','c','c','e','p','t','-','L','a','n','g','u','a','g','e',0 };
1170 static const WCHAR szAccept_Ranges
[] = { 'A','c','c','e','p','t','-','R','a','n','g','e','s',0 };
1171 static const WCHAR szAge
[] = { 'A','g','e',0 };
1172 static const WCHAR szAllow
[] = { 'A','l','l','o','w',0 };
1173 static const WCHAR szAuthorization
[] = { 'A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
1174 static const WCHAR szCache_Control
[] = { 'C','a','c','h','e','-','C','o','n','t','r','o','l',0 };
1175 static const WCHAR szConnection
[] = { 'C','o','n','n','e','c','t','i','o','n',0 };
1176 static const WCHAR szContent_Base
[] = { 'C','o','n','t','e','n','t','-','B','a','s','e',0 };
1177 static const WCHAR szContent_Encoding
[] = { 'C','o','n','t','e','n','t','-','E','n','c','o','d','i','n','g',0 };
1178 static const WCHAR szContent_ID
[] = { 'C','o','n','t','e','n','t','-','I','D',0 };
1179 static const WCHAR szContent_Language
[] = { 'C','o','n','t','e','n','t','-','L','a','n','g','u','a','g','e',0 };
1180 static const WCHAR szContent_Length
[] = { 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',0 };
1181 static const WCHAR szContent_Location
[] = { 'C','o','n','t','e','n','t','-','L','o','c','a','t','i','o','n',0 };
1182 static const WCHAR szContent_MD5
[] = { 'C','o','n','t','e','n','t','-','M','D','5',0 };
1183 static const WCHAR szContent_Range
[] = { 'C','o','n','t','e','n','t','-','R','a','n','g','e',0 };
1184 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 };
1185 static const WCHAR szContent_Type
[] = { 'C','o','n','t','e','n','t','-','T','y','p','e',0 };
1186 static const WCHAR szCookie
[] = { 'C','o','o','k','i','e',0 };
1187 static const WCHAR szDate
[] = { 'D','a','t','e',0 };
1188 static const WCHAR szFrom
[] = { 'F','r','o','m',0 };
1189 static const WCHAR szETag
[] = { 'E','T','a','g',0 };
1190 static const WCHAR szExpect
[] = { 'E','x','p','e','c','t',0 };
1191 static const WCHAR szExpires
[] = { 'E','x','p','i','r','e','s',0 };
1192 static const WCHAR szIf_Match
[] = { 'I','f','-','M','a','t','c','h',0 };
1193 static const WCHAR szIf_Modified_Since
[] = { 'I','f','-','M','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
1194 static const WCHAR szIf_None_Match
[] = { 'I','f','-','N','o','n','e','-','M','a','t','c','h',0 };
1195 static const WCHAR szIf_Range
[] = { 'I','f','-','R','a','n','g','e',0 };
1196 static const WCHAR szIf_Unmodified_Since
[] = { 'I','f','-','U','n','m','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
1197 static const WCHAR szLast_Modified
[] = { 'L','a','s','t','-','M','o','d','i','f','i','e','d',0 };
1198 static const WCHAR szLocation
[] = { 'L','o','c','a','t','i','o','n',0 };
1199 static const WCHAR szMax_Forwards
[] = { 'M','a','x','-','F','o','r','w','a','r','d','s',0 };
1200 static const WCHAR szMime_Version
[] = { 'M','i','m','e','-','V','e','r','s','i','o','n',0 };
1201 static const WCHAR szPragma
[] = { 'P','r','a','g','m','a',0 };
1202 static const WCHAR szProxy_Authenticate
[] = { 'P','r','o','x','y','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
1203 static const WCHAR szProxy_Connection
[] = { 'P','r','o','x','y','-','C','o','n','n','e','c','t','i','o','n',0 };
1204 static const WCHAR szPublic
[] = { 'P','u','b','l','i','c',0 };
1205 static const WCHAR szRange
[] = { 'R','a','n','g','e',0 };
1206 static const WCHAR szReferer
[] = { 'R','e','f','e','r','e','r',0 };
1207 static const WCHAR szRetry_After
[] = { 'R','e','t','r','y','-','A','f','t','e','r',0 };
1208 static const WCHAR szServer
[] = { 'S','e','r','v','e','r',0 };
1209 static const WCHAR szSet_Cookie
[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
1210 static const WCHAR szTransfer_Encoding
[] = { 'T','r','a','n','s','f','e','r','-','E','n','c','o','d','i','n','g',0 };
1211 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 };
1212 static const WCHAR szUpgrade
[] = { 'U','p','g','r','a','d','e',0 };
1213 static const WCHAR szURI
[] = { 'U','R','I',0 };
1214 static const WCHAR szUser_Agent
[] = { 'U','s','e','r','-','A','g','e','n','t',0 };
1215 static const WCHAR szVary
[] = { 'V','a','r','y',0 };
1216 static const WCHAR szVia
[] = { 'V','i','a',0 };
1217 static const WCHAR szWarning
[] = { 'W','a','r','n','i','n','g',0 };
1218 static const WCHAR szWWW_Authenticate
[] = { 'W','W','W','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
1220 static const LPCWSTR header_lookup
[] = {
1221 szMime_Version
, /* HTTP_QUERY_MIME_VERSION = 0 */
1222 szContent_Type
, /* HTTP_QUERY_CONTENT_TYPE = 1 */
1223 szContent_Transfer_Encoding
,/* HTTP_QUERY_CONTENT_TRANSFER_ENCODING = 2 */
1224 szContent_ID
, /* HTTP_QUERY_CONTENT_ID = 3 */
1225 NULL
, /* HTTP_QUERY_CONTENT_DESCRIPTION = 4 */
1226 szContent_Length
, /* HTTP_QUERY_CONTENT_LENGTH = 5 */
1227 szContent_Language
, /* HTTP_QUERY_CONTENT_LANGUAGE = 6 */
1228 szAllow
, /* HTTP_QUERY_ALLOW = 7 */
1229 szPublic
, /* HTTP_QUERY_PUBLIC = 8 */
1230 szDate
, /* HTTP_QUERY_DATE = 9 */
1231 szExpires
, /* HTTP_QUERY_EXPIRES = 10 */
1232 szLast_Modified
, /* HTTP_QUERY_LAST_MODIFIED = 11 */
1233 NULL
, /* HTTP_QUERY_MESSAGE_ID = 12 */
1234 szURI
, /* HTTP_QUERY_URI = 13 */
1235 szFrom
, /* HTTP_QUERY_DERIVED_FROM = 14 */
1236 NULL
, /* HTTP_QUERY_COST = 15 */
1237 NULL
, /* HTTP_QUERY_LINK = 16 */
1238 szPragma
, /* HTTP_QUERY_PRAGMA = 17 */
1239 NULL
, /* HTTP_QUERY_VERSION = 18 */
1240 szStatus
, /* HTTP_QUERY_STATUS_CODE = 19 */
1241 NULL
, /* HTTP_QUERY_STATUS_TEXT = 20 */
1242 NULL
, /* HTTP_QUERY_RAW_HEADERS = 21 */
1243 NULL
, /* HTTP_QUERY_RAW_HEADERS_CRLF = 22 */
1244 szConnection
, /* HTTP_QUERY_CONNECTION = 23 */
1245 szAccept
, /* HTTP_QUERY_ACCEPT = 24 */
1246 szAccept_Charset
, /* HTTP_QUERY_ACCEPT_CHARSET = 25 */
1247 szAccept_Encoding
, /* HTTP_QUERY_ACCEPT_ENCODING = 26 */
1248 szAccept_Language
, /* HTTP_QUERY_ACCEPT_LANGUAGE = 27 */
1249 szAuthorization
, /* HTTP_QUERY_AUTHORIZATION = 28 */
1250 szContent_Encoding
, /* HTTP_QUERY_CONTENT_ENCODING = 29 */
1251 NULL
, /* HTTP_QUERY_FORWARDED = 30 */
1252 NULL
, /* HTTP_QUERY_FROM = 31 */
1253 szIf_Modified_Since
, /* HTTP_QUERY_IF_MODIFIED_SINCE = 32 */
1254 szLocation
, /* HTTP_QUERY_LOCATION = 33 */
1255 NULL
, /* HTTP_QUERY_ORIG_URI = 34 */
1256 szReferer
, /* HTTP_QUERY_REFERER = 35 */
1257 szRetry_After
, /* HTTP_QUERY_RETRY_AFTER = 36 */
1258 szServer
, /* HTTP_QUERY_SERVER = 37 */
1259 NULL
, /* HTTP_TITLE = 38 */
1260 szUser_Agent
, /* HTTP_QUERY_USER_AGENT = 39 */
1261 szWWW_Authenticate
, /* HTTP_QUERY_WWW_AUTHENTICATE = 40 */
1262 szProxy_Authenticate
, /* HTTP_QUERY_PROXY_AUTHENTICATE = 41 */
1263 szAccept_Ranges
, /* HTTP_QUERY_ACCEPT_RANGES = 42 */
1264 szSet_Cookie
, /* HTTP_QUERY_SET_COOKIE = 43 */
1265 szCookie
, /* HTTP_QUERY_COOKIE = 44 */
1266 NULL
, /* HTTP_QUERY_REQUEST_METHOD = 45 */
1267 NULL
, /* HTTP_QUERY_REFRESH = 46 */
1268 NULL
, /* HTTP_QUERY_CONTENT_DISPOSITION = 47 */
1269 szAge
, /* HTTP_QUERY_AGE = 48 */
1270 szCache_Control
, /* HTTP_QUERY_CACHE_CONTROL = 49 */
1271 szContent_Base
, /* HTTP_QUERY_CONTENT_BASE = 50 */
1272 szContent_Location
, /* HTTP_QUERY_CONTENT_LOCATION = 51 */
1273 szContent_MD5
, /* HTTP_QUERY_CONTENT_MD5 = 52 */
1274 szContent_Range
, /* HTTP_QUERY_CONTENT_RANGE = 53 */
1275 szETag
, /* HTTP_QUERY_ETAG = 54 */
1276 szHost
, /* HTTP_QUERY_HOST = 55 */
1277 szIf_Match
, /* HTTP_QUERY_IF_MATCH = 56 */
1278 szIf_None_Match
, /* HTTP_QUERY_IF_NONE_MATCH = 57 */
1279 szIf_Range
, /* HTTP_QUERY_IF_RANGE = 58 */
1280 szIf_Unmodified_Since
, /* HTTP_QUERY_IF_UNMODIFIED_SINCE = 59 */
1281 szMax_Forwards
, /* HTTP_QUERY_MAX_FORWARDS = 60 */
1282 szProxy_Authorization
, /* HTTP_QUERY_PROXY_AUTHORIZATION = 61 */
1283 szRange
, /* HTTP_QUERY_RANGE = 62 */
1284 szTransfer_Encoding
, /* HTTP_QUERY_TRANSFER_ENCODING = 63 */
1285 szUpgrade
, /* HTTP_QUERY_UPGRADE = 64 */
1286 szVary
, /* HTTP_QUERY_VARY = 65 */
1287 szVia
, /* HTTP_QUERY_VIA = 66 */
1288 szWarning
, /* HTTP_QUERY_WARNING = 67 */
1289 szExpect
, /* HTTP_QUERY_EXPECT = 68 */
1290 szProxy_Connection
, /* HTTP_QUERY_PROXY_CONNECTION = 69 */
1291 szUnless_Modified_Since
, /* HTTP_QUERY_UNLESS_MODIFIED_SINCE = 70 */
1294 #define LAST_TABLE_HEADER (sizeof(header_lookup)/sizeof(header_lookup[0]))
1296 /***********************************************************************
1297 * HTTP_HttpQueryInfoW (internal)
1299 static BOOL WINAPI
HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr
, DWORD dwInfoLevel
,
1300 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
1302 LPHTTPHEADERW lphttpHdr
= NULL
;
1303 BOOL bSuccess
= FALSE
;
1304 BOOL request_only
= dwInfoLevel
& HTTP_QUERY_FLAG_REQUEST_HEADERS
;
1305 INT requested_index
= lpdwIndex
? *lpdwIndex
: 0;
1306 INT level
= (dwInfoLevel
& ~HTTP_QUERY_MODIFIER_FLAGS_MASK
);
1309 /* Find requested header structure */
1312 case HTTP_QUERY_CUSTOM
:
1313 index
= HTTP_GetCustomHeaderIndex(lpwhr
, lpBuffer
, requested_index
, request_only
);
1316 case HTTP_QUERY_RAW_HEADERS_CRLF
:
1318 DWORD len
= strlenW(lpwhr
->lpszRawHeaders
);
1319 if (len
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
1321 *lpdwBufferLength
= (len
+ 1) * sizeof(WCHAR
);
1322 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1325 memcpy(lpBuffer
, lpwhr
->lpszRawHeaders
, (len
+1)*sizeof(WCHAR
));
1326 *lpdwBufferLength
= len
* sizeof(WCHAR
);
1328 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, len
));
1332 case HTTP_QUERY_RAW_HEADERS
:
1334 static const WCHAR szCrLf
[] = {'\r','\n',0};
1335 LPWSTR
* ppszRawHeaderLines
= HTTP_Tokenize(lpwhr
->lpszRawHeaders
, szCrLf
);
1337 LPWSTR pszString
= (WCHAR
*)lpBuffer
;
1339 for (i
= 0; ppszRawHeaderLines
[i
]; i
++)
1340 size
+= strlenW(ppszRawHeaderLines
[i
]) + 1;
1342 if (size
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
1344 HTTP_FreeTokens(ppszRawHeaderLines
);
1345 *lpdwBufferLength
= (size
+ 1) * sizeof(WCHAR
);
1346 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1350 for (i
= 0; ppszRawHeaderLines
[i
]; i
++)
1352 DWORD len
= strlenW(ppszRawHeaderLines
[i
]);
1353 memcpy(pszString
, ppszRawHeaderLines
[i
], (len
+1)*sizeof(WCHAR
));
1358 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, size
));
1360 *lpdwBufferLength
= size
* sizeof(WCHAR
);
1361 HTTP_FreeTokens(ppszRawHeaderLines
);
1365 case HTTP_QUERY_STATUS_TEXT
:
1366 if (lpwhr
->lpszStatusText
)
1368 DWORD len
= strlenW(lpwhr
->lpszStatusText
);
1369 if (len
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
1371 *lpdwBufferLength
= (len
+ 1) * sizeof(WCHAR
);
1372 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1375 memcpy(lpBuffer
, lpwhr
->lpszStatusText
, (len
+1)*sizeof(WCHAR
));
1376 *lpdwBufferLength
= len
* sizeof(WCHAR
);
1378 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, len
));
1383 case HTTP_QUERY_VERSION
:
1384 if (lpwhr
->lpszVersion
)
1386 DWORD len
= strlenW(lpwhr
->lpszVersion
);
1387 if (len
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
1389 *lpdwBufferLength
= (len
+ 1) * sizeof(WCHAR
);
1390 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1393 memcpy(lpBuffer
, lpwhr
->lpszVersion
, (len
+1)*sizeof(WCHAR
));
1394 *lpdwBufferLength
= len
* sizeof(WCHAR
);
1396 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, len
));
1402 assert (LAST_TABLE_HEADER
== (HTTP_QUERY_UNLESS_MODIFIED_SINCE
+ 1));
1404 if (level
>= 0 && level
< LAST_TABLE_HEADER
&& header_lookup
[level
])
1405 index
= HTTP_GetCustomHeaderIndex(lpwhr
, header_lookup
[level
],
1406 requested_index
,request_only
);
1410 lphttpHdr
= &lpwhr
->pCustHeaders
[index
];
1412 /* Ensure header satisifies requested attributes */
1414 ((dwInfoLevel
& HTTP_QUERY_FLAG_REQUEST_HEADERS
) &&
1415 (~lphttpHdr
->wFlags
& HDR_ISREQUEST
)))
1417 SetLastError(ERROR_HTTP_HEADER_NOT_FOUND
);
1424 /* coalesce value to reuqested type */
1425 if (dwInfoLevel
& HTTP_QUERY_FLAG_NUMBER
)
1427 *(int *)lpBuffer
= atoiW(lphttpHdr
->lpszValue
);
1430 TRACE(" returning number : %d\n", *(int *)lpBuffer
);
1432 else if (dwInfoLevel
& HTTP_QUERY_FLAG_SYSTEMTIME
)
1438 tmpTime
= ConvertTimeString(lphttpHdr
->lpszValue
);
1440 tmpTM
= *gmtime(&tmpTime
);
1441 STHook
= (SYSTEMTIME
*) lpBuffer
;
1445 STHook
->wDay
= tmpTM
.tm_mday
;
1446 STHook
->wHour
= tmpTM
.tm_hour
;
1447 STHook
->wMilliseconds
= 0;
1448 STHook
->wMinute
= tmpTM
.tm_min
;
1449 STHook
->wDayOfWeek
= tmpTM
.tm_wday
;
1450 STHook
->wMonth
= tmpTM
.tm_mon
+ 1;
1451 STHook
->wSecond
= tmpTM
.tm_sec
;
1452 STHook
->wYear
= tmpTM
.tm_year
;
1456 TRACE(" returning time : %04d/%02d/%02d - %d - %02d:%02d:%02d.%02d\n",
1457 STHook
->wYear
, STHook
->wMonth
, STHook
->wDay
, STHook
->wDayOfWeek
,
1458 STHook
->wHour
, STHook
->wMinute
, STHook
->wSecond
, STHook
->wMilliseconds
);
1460 else if (lphttpHdr
->lpszValue
)
1462 DWORD len
= (strlenW(lphttpHdr
->lpszValue
) + 1) * sizeof(WCHAR
);
1464 if (len
> *lpdwBufferLength
)
1466 *lpdwBufferLength
= len
;
1467 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1471 memcpy(lpBuffer
, lphttpHdr
->lpszValue
, len
);
1472 *lpdwBufferLength
= len
- sizeof(WCHAR
);
1475 TRACE(" returning string : '%s'\n", debugstr_w(lpBuffer
));
1480 /***********************************************************************
1481 * HttpQueryInfoW (WININET.@)
1483 * Queries for information about an HTTP request
1490 BOOL WINAPI
HttpQueryInfoW(HINTERNET hHttpRequest
, DWORD dwInfoLevel
,
1491 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
1493 BOOL bSuccess
= FALSE
;
1494 LPWININETHTTPREQW lpwhr
;
1496 if (TRACE_ON(wininet
)) {
1497 #define FE(x) { x, #x }
1498 static const wininet_flag_info query_flags
[] = {
1499 FE(HTTP_QUERY_MIME_VERSION
),
1500 FE(HTTP_QUERY_CONTENT_TYPE
),
1501 FE(HTTP_QUERY_CONTENT_TRANSFER_ENCODING
),
1502 FE(HTTP_QUERY_CONTENT_ID
),
1503 FE(HTTP_QUERY_CONTENT_DESCRIPTION
),
1504 FE(HTTP_QUERY_CONTENT_LENGTH
),
1505 FE(HTTP_QUERY_CONTENT_LANGUAGE
),
1506 FE(HTTP_QUERY_ALLOW
),
1507 FE(HTTP_QUERY_PUBLIC
),
1508 FE(HTTP_QUERY_DATE
),
1509 FE(HTTP_QUERY_EXPIRES
),
1510 FE(HTTP_QUERY_LAST_MODIFIED
),
1511 FE(HTTP_QUERY_MESSAGE_ID
),
1513 FE(HTTP_QUERY_DERIVED_FROM
),
1514 FE(HTTP_QUERY_COST
),
1515 FE(HTTP_QUERY_LINK
),
1516 FE(HTTP_QUERY_PRAGMA
),
1517 FE(HTTP_QUERY_VERSION
),
1518 FE(HTTP_QUERY_STATUS_CODE
),
1519 FE(HTTP_QUERY_STATUS_TEXT
),
1520 FE(HTTP_QUERY_RAW_HEADERS
),
1521 FE(HTTP_QUERY_RAW_HEADERS_CRLF
),
1522 FE(HTTP_QUERY_CONNECTION
),
1523 FE(HTTP_QUERY_ACCEPT
),
1524 FE(HTTP_QUERY_ACCEPT_CHARSET
),
1525 FE(HTTP_QUERY_ACCEPT_ENCODING
),
1526 FE(HTTP_QUERY_ACCEPT_LANGUAGE
),
1527 FE(HTTP_QUERY_AUTHORIZATION
),
1528 FE(HTTP_QUERY_CONTENT_ENCODING
),
1529 FE(HTTP_QUERY_FORWARDED
),
1530 FE(HTTP_QUERY_FROM
),
1531 FE(HTTP_QUERY_IF_MODIFIED_SINCE
),
1532 FE(HTTP_QUERY_LOCATION
),
1533 FE(HTTP_QUERY_ORIG_URI
),
1534 FE(HTTP_QUERY_REFERER
),
1535 FE(HTTP_QUERY_RETRY_AFTER
),
1536 FE(HTTP_QUERY_SERVER
),
1537 FE(HTTP_QUERY_TITLE
),
1538 FE(HTTP_QUERY_USER_AGENT
),
1539 FE(HTTP_QUERY_WWW_AUTHENTICATE
),
1540 FE(HTTP_QUERY_PROXY_AUTHENTICATE
),
1541 FE(HTTP_QUERY_ACCEPT_RANGES
),
1542 FE(HTTP_QUERY_SET_COOKIE
),
1543 FE(HTTP_QUERY_COOKIE
),
1544 FE(HTTP_QUERY_REQUEST_METHOD
),
1545 FE(HTTP_QUERY_REFRESH
),
1546 FE(HTTP_QUERY_CONTENT_DISPOSITION
),
1548 FE(HTTP_QUERY_CACHE_CONTROL
),
1549 FE(HTTP_QUERY_CONTENT_BASE
),
1550 FE(HTTP_QUERY_CONTENT_LOCATION
),
1551 FE(HTTP_QUERY_CONTENT_MD5
),
1552 FE(HTTP_QUERY_CONTENT_RANGE
),
1553 FE(HTTP_QUERY_ETAG
),
1554 FE(HTTP_QUERY_HOST
),
1555 FE(HTTP_QUERY_IF_MATCH
),
1556 FE(HTTP_QUERY_IF_NONE_MATCH
),
1557 FE(HTTP_QUERY_IF_RANGE
),
1558 FE(HTTP_QUERY_IF_UNMODIFIED_SINCE
),
1559 FE(HTTP_QUERY_MAX_FORWARDS
),
1560 FE(HTTP_QUERY_PROXY_AUTHORIZATION
),
1561 FE(HTTP_QUERY_RANGE
),
1562 FE(HTTP_QUERY_TRANSFER_ENCODING
),
1563 FE(HTTP_QUERY_UPGRADE
),
1564 FE(HTTP_QUERY_VARY
),
1566 FE(HTTP_QUERY_WARNING
),
1567 FE(HTTP_QUERY_CUSTOM
)
1569 static const wininet_flag_info modifier_flags
[] = {
1570 FE(HTTP_QUERY_FLAG_REQUEST_HEADERS
),
1571 FE(HTTP_QUERY_FLAG_SYSTEMTIME
),
1572 FE(HTTP_QUERY_FLAG_NUMBER
),
1573 FE(HTTP_QUERY_FLAG_COALESCE
)
1576 DWORD info_mod
= dwInfoLevel
& HTTP_QUERY_MODIFIER_FLAGS_MASK
;
1577 DWORD info
= dwInfoLevel
& HTTP_QUERY_HEADER_MASK
;
1580 TRACE("(%p, 0x%08lx)--> %ld\n", hHttpRequest
, dwInfoLevel
, dwInfoLevel
);
1581 TRACE(" Attribute:");
1582 for (i
= 0; i
< (sizeof(query_flags
) / sizeof(query_flags
[0])); i
++) {
1583 if (query_flags
[i
].val
== info
) {
1584 TRACE(" %s", query_flags
[i
].name
);
1588 if (i
== (sizeof(query_flags
) / sizeof(query_flags
[0]))) {
1589 TRACE(" Unknown (%08lx)", info
);
1592 TRACE(" Modifier:");
1593 for (i
= 0; i
< (sizeof(modifier_flags
) / sizeof(modifier_flags
[0])); i
++) {
1594 if (modifier_flags
[i
].val
& info_mod
) {
1595 TRACE(" %s", modifier_flags
[i
].name
);
1596 info_mod
&= ~ modifier_flags
[i
].val
;
1601 TRACE(" Unknown (%08lx)", info_mod
);
1606 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
1607 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
1609 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1613 bSuccess
= HTTP_HttpQueryInfoW( lpwhr
, dwInfoLevel
,
1614 lpBuffer
, lpdwBufferLength
, lpdwIndex
);
1618 WININET_Release( &lpwhr
->hdr
);
1620 TRACE("%d <--\n", bSuccess
);
1624 /***********************************************************************
1625 * HttpQueryInfoA (WININET.@)
1627 * Queries for information about an HTTP request
1634 BOOL WINAPI
HttpQueryInfoA(HINTERNET hHttpRequest
, DWORD dwInfoLevel
,
1635 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
1641 if((dwInfoLevel
& HTTP_QUERY_FLAG_NUMBER
) ||
1642 (dwInfoLevel
& HTTP_QUERY_FLAG_SYSTEMTIME
))
1644 return HttpQueryInfoW( hHttpRequest
, dwInfoLevel
, lpBuffer
,
1645 lpdwBufferLength
, lpdwIndex
);
1648 len
= (*lpdwBufferLength
)*sizeof(WCHAR
);
1649 bufferW
= HeapAlloc( GetProcessHeap(), 0, len
);
1650 /* buffer is in/out because of HTTP_QUERY_CUSTOM */
1651 if ((dwInfoLevel
& HTTP_QUERY_HEADER_MASK
) == HTTP_QUERY_CUSTOM
)
1652 MultiByteToWideChar(CP_ACP
,0,lpBuffer
,-1,bufferW
,len
);
1653 result
= HttpQueryInfoW( hHttpRequest
, dwInfoLevel
, bufferW
,
1657 len
= WideCharToMultiByte( CP_ACP
,0, bufferW
, len
/ sizeof(WCHAR
) + 1,
1658 lpBuffer
, *lpdwBufferLength
, NULL
, NULL
);
1659 *lpdwBufferLength
= len
- 1;
1661 TRACE("lpBuffer: %s\n", debugstr_a(lpBuffer
));
1664 /* since the strings being returned from HttpQueryInfoW should be
1665 * only ASCII characters, it is reasonable to assume that all of
1666 * the Unicode characters can be reduced to a single byte */
1667 *lpdwBufferLength
= len
/ sizeof(WCHAR
);
1669 HeapFree(GetProcessHeap(), 0, bufferW
);
1674 /***********************************************************************
1675 * HttpSendRequestExA (WININET.@)
1677 * Sends the specified request to the HTTP server and allows chunked
1682 * Failure: FALSE, call GetLastError() for more information.
1684 BOOL WINAPI
HttpSendRequestExA(HINTERNET hRequest
,
1685 LPINTERNET_BUFFERSA lpBuffersIn
,
1686 LPINTERNET_BUFFERSA lpBuffersOut
,
1687 DWORD dwFlags
, DWORD dwContext
)
1689 INTERNET_BUFFERSW BuffersInW
;
1693 TRACE("(%p, %p, %p, %08lx, %08lx): stub\n", hRequest
, lpBuffersIn
,
1694 lpBuffersOut
, dwFlags
, dwContext
);
1698 BuffersInW
.dwStructSize
= sizeof(LPINTERNET_BUFFERSW
);
1699 if (lpBuffersIn
->lpcszHeader
)
1701 headerlen
= MultiByteToWideChar(CP_ACP
,0,lpBuffersIn
->lpcszHeader
,
1702 lpBuffersIn
->dwHeadersLength
,0,0);
1703 BuffersInW
.lpcszHeader
= HeapAlloc(GetProcessHeap(),0,headerlen
*
1705 if (!BuffersInW
.lpcszHeader
)
1707 SetLastError(ERROR_OUTOFMEMORY
);
1710 BuffersInW
.dwHeadersLength
= MultiByteToWideChar(CP_ACP
, 0,
1711 lpBuffersIn
->lpcszHeader
, lpBuffersIn
->dwHeadersLength
,
1712 (LPWSTR
)BuffersInW
.lpcszHeader
, headerlen
);
1715 BuffersInW
.lpcszHeader
= NULL
;
1716 BuffersInW
.dwHeadersTotal
= lpBuffersIn
->dwHeadersTotal
;
1717 BuffersInW
.lpvBuffer
= lpBuffersIn
->lpvBuffer
;
1718 BuffersInW
.dwBufferLength
= lpBuffersIn
->dwBufferLength
;
1719 BuffersInW
.dwBufferTotal
= lpBuffersIn
->dwBufferTotal
;
1720 BuffersInW
.Next
= NULL
;
1723 rc
= HttpSendRequestExW(hRequest
, lpBuffersIn
? &BuffersInW
: NULL
, NULL
, dwFlags
, dwContext
);
1726 HeapFree(GetProcessHeap(),0,(LPVOID
)BuffersInW
.lpcszHeader
);
1731 /***********************************************************************
1732 * HttpSendRequestExW (WININET.@)
1734 * Sends the specified request to the HTTP server and allows chunked
1739 * Failure: FALSE, call GetLastError() for more information.
1741 BOOL WINAPI
HttpSendRequestExW(HINTERNET hRequest
,
1742 LPINTERNET_BUFFERSW lpBuffersIn
,
1743 LPINTERNET_BUFFERSW lpBuffersOut
,
1744 DWORD dwFlags
, DWORD dwContext
)
1747 LPWININETHTTPREQW lpwhr
;
1748 LPWININETHTTPSESSIONW lpwhs
;
1749 LPWININETAPPINFOW hIC
;
1751 TRACE("(%p, %p, %p, %08lx, %08lx)\n", hRequest
, lpBuffersIn
,
1752 lpBuffersOut
, dwFlags
, dwContext
);
1754 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hRequest
);
1756 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
1758 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1762 lpwhs
= (LPWININETHTTPSESSIONW
) lpwhr
->hdr
.lpwhparent
;
1763 assert(lpwhs
->hdr
.htype
== WH_HHTTPSESSION
);
1764 hIC
= (LPWININETAPPINFOW
) lpwhs
->hdr
.lpwhparent
;
1765 assert(hIC
->hdr
.htype
== WH_HINIT
);
1767 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1769 WORKREQUEST workRequest
;
1770 struct WORKREQ_HTTPSENDREQUESTW
*req
;
1772 workRequest
.asyncall
= HTTPSENDREQUESTW
;
1773 workRequest
.hdr
= WININET_AddRef( &lpwhr
->hdr
);
1774 req
= &workRequest
.u
.HttpSendRequestW
;
1777 if (lpBuffersIn
->lpcszHeader
)
1778 /* FIXME: this should use dwHeadersLength or may not be necessary at all */
1779 req
->lpszHeader
= WININET_strdupW(lpBuffersIn
->lpcszHeader
);
1781 req
->lpszHeader
= NULL
;
1782 req
->dwHeaderLength
= lpBuffersIn
->dwHeadersLength
;
1783 req
->lpOptional
= lpBuffersIn
->lpvBuffer
;
1784 req
->dwOptionalLength
= lpBuffersIn
->dwBufferLength
;
1785 req
->dwContentLength
= lpBuffersIn
->dwBufferTotal
;
1789 req
->lpszHeader
= NULL
;
1790 req
->dwHeaderLength
= 0;
1791 req
->lpOptional
= NULL
;
1792 req
->dwOptionalLength
= 0;
1793 req
->dwContentLength
= 0;
1796 req
->bEndRequest
= FALSE
;
1798 INTERNET_AsyncCall(&workRequest
);
1800 * This is from windows.
1802 SetLastError(ERROR_IO_PENDING
);
1807 ret
= HTTP_HttpSendRequestW(lpwhr
, lpBuffersIn
->lpcszHeader
, lpBuffersIn
->dwHeadersLength
,
1808 lpBuffersIn
->lpvBuffer
, lpBuffersIn
->dwBufferLength
,
1809 lpBuffersIn
->dwBufferTotal
, FALSE
);
1812 WININET_Release(&lpwhr
->hdr
);
1817 /***********************************************************************
1818 * HttpSendRequestW (WININET.@)
1820 * Sends the specified request to the HTTP server
1827 BOOL WINAPI
HttpSendRequestW(HINTERNET hHttpRequest
, LPCWSTR lpszHeaders
,
1828 DWORD dwHeaderLength
, LPVOID lpOptional
,DWORD dwOptionalLength
)
1830 LPWININETHTTPREQW lpwhr
;
1831 LPWININETHTTPSESSIONW lpwhs
= NULL
;
1832 LPWININETAPPINFOW hIC
= NULL
;
1835 TRACE("%p, %p (%s), %li, %p, %li)\n", hHttpRequest
,
1836 lpszHeaders
, debugstr_w(lpszHeaders
), dwHeaderLength
, lpOptional
, dwOptionalLength
);
1838 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
1839 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
1841 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1846 lpwhs
= (LPWININETHTTPSESSIONW
) lpwhr
->hdr
.lpwhparent
;
1847 if (NULL
== lpwhs
|| lpwhs
->hdr
.htype
!= WH_HHTTPSESSION
)
1849 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1854 hIC
= (LPWININETAPPINFOW
) lpwhs
->hdr
.lpwhparent
;
1855 if (NULL
== hIC
|| hIC
->hdr
.htype
!= WH_HINIT
)
1857 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
1862 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
1864 WORKREQUEST workRequest
;
1865 struct WORKREQ_HTTPSENDREQUESTW
*req
;
1867 workRequest
.asyncall
= HTTPSENDREQUESTW
;
1868 workRequest
.hdr
= WININET_AddRef( &lpwhr
->hdr
);
1869 req
= &workRequest
.u
.HttpSendRequestW
;
1871 req
->lpszHeader
= WININET_strdupW(lpszHeaders
);
1873 req
->lpszHeader
= 0;
1874 req
->dwHeaderLength
= dwHeaderLength
;
1875 req
->lpOptional
= lpOptional
;
1876 req
->dwOptionalLength
= dwOptionalLength
;
1877 req
->dwContentLength
= dwOptionalLength
;
1878 req
->bEndRequest
= TRUE
;
1880 INTERNET_AsyncCall(&workRequest
);
1882 * This is from windows.
1884 SetLastError(ERROR_IO_PENDING
);
1889 r
= HTTP_HttpSendRequestW(lpwhr
, lpszHeaders
,
1890 dwHeaderLength
, lpOptional
, dwOptionalLength
,
1891 dwOptionalLength
, TRUE
);
1895 WININET_Release( &lpwhr
->hdr
);
1899 /***********************************************************************
1900 * HttpSendRequestA (WININET.@)
1902 * Sends the specified request to the HTTP server
1909 BOOL WINAPI
HttpSendRequestA(HINTERNET hHttpRequest
, LPCSTR lpszHeaders
,
1910 DWORD dwHeaderLength
, LPVOID lpOptional
,DWORD dwOptionalLength
)
1913 LPWSTR szHeaders
=NULL
;
1914 DWORD nLen
=dwHeaderLength
;
1915 if(lpszHeaders
!=NULL
)
1917 nLen
=MultiByteToWideChar(CP_ACP
,0,lpszHeaders
,dwHeaderLength
,NULL
,0);
1918 szHeaders
=HeapAlloc(GetProcessHeap(),0,nLen
*sizeof(WCHAR
));
1919 MultiByteToWideChar(CP_ACP
,0,lpszHeaders
,dwHeaderLength
,szHeaders
,nLen
);
1921 result
=HttpSendRequestW(hHttpRequest
, szHeaders
, nLen
, lpOptional
, dwOptionalLength
);
1922 HeapFree(GetProcessHeap(),0,szHeaders
);
1926 /***********************************************************************
1927 * HTTP_HandleRedirect (internal)
1929 static BOOL
HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszUrl
, LPCWSTR lpszHeaders
,
1930 DWORD dwHeaderLength
, LPVOID lpOptional
, DWORD dwOptionalLength
,
1931 DWORD dwContentLength
)
1933 LPWININETHTTPSESSIONW lpwhs
= (LPWININETHTTPSESSIONW
) lpwhr
->hdr
.lpwhparent
;
1934 LPWININETAPPINFOW hIC
= (LPWININETAPPINFOW
) lpwhs
->hdr
.lpwhparent
;
1940 /* if it's an absolute path, keep the same session info */
1941 lstrcpynW(path
, lpszUrl
, 2048);
1943 else if (NULL
!= hIC
->lpszProxy
&& hIC
->lpszProxy
[0] != 0)
1945 TRACE("Redirect through proxy\n");
1946 lstrcpynW(path
, lpszUrl
, 2048);
1950 URL_COMPONENTSW urlComponents
;
1951 WCHAR protocol
[32], hostName
[MAXHOSTNAME
], userName
[1024];
1952 static const WCHAR szHttp
[] = {'h','t','t','p',0};
1953 static const WCHAR szHttps
[] = {'h','t','t','p','s',0};
1954 DWORD url_length
= 0;
1956 LPWSTR combined_url
;
1958 urlComponents
.dwStructSize
= sizeof(URL_COMPONENTSW
);
1959 urlComponents
.lpszScheme
= (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
) ? (LPWSTR
)szHttps
: (LPWSTR
)szHttp
;
1960 urlComponents
.dwSchemeLength
= 0;
1961 urlComponents
.lpszHostName
= lpwhs
->lpszHostName
;
1962 urlComponents
.dwHostNameLength
= 0;
1963 urlComponents
.nPort
= lpwhs
->nHostPort
;
1964 urlComponents
.lpszUserName
= lpwhs
->lpszUserName
;
1965 urlComponents
.dwUserNameLength
= 0;
1966 urlComponents
.lpszPassword
= NULL
;
1967 urlComponents
.dwPasswordLength
= 0;
1968 urlComponents
.lpszUrlPath
= lpwhr
->lpszPath
;
1969 urlComponents
.dwUrlPathLength
= 0;
1970 urlComponents
.lpszExtraInfo
= NULL
;
1971 urlComponents
.dwExtraInfoLength
= 0;
1973 if (!InternetCreateUrlW(&urlComponents
, 0, NULL
, &url_length
) &&
1974 (GetLastError() != ERROR_INSUFFICIENT_BUFFER
))
1977 orig_url
= HeapAlloc(GetProcessHeap(), 0, url_length
);
1979 /* convert from bytes to characters */
1980 url_length
= url_length
/ sizeof(WCHAR
) - 1;
1981 if (!InternetCreateUrlW(&urlComponents
, 0, orig_url
, &url_length
))
1983 HeapFree(GetProcessHeap(), 0, orig_url
);
1988 if (!InternetCombineUrlW(orig_url
, lpszUrl
, NULL
, &url_length
, ICU_ENCODE_SPACES_ONLY
) &&
1989 (GetLastError() != ERROR_INSUFFICIENT_BUFFER
))
1991 HeapFree(GetProcessHeap(), 0, orig_url
);
1994 combined_url
= HeapAlloc(GetProcessHeap(), 0, url_length
* sizeof(WCHAR
));
1996 if (!InternetCombineUrlW(orig_url
, lpszUrl
, combined_url
, &url_length
, ICU_ENCODE_SPACES_ONLY
))
1998 HeapFree(GetProcessHeap(), 0, orig_url
);
1999 HeapFree(GetProcessHeap(), 0, combined_url
);
2002 HeapFree(GetProcessHeap(), 0, orig_url
);
2008 urlComponents
.dwStructSize
= sizeof(URL_COMPONENTSW
);
2009 urlComponents
.lpszScheme
= protocol
;
2010 urlComponents
.dwSchemeLength
= 32;
2011 urlComponents
.lpszHostName
= hostName
;
2012 urlComponents
.dwHostNameLength
= MAXHOSTNAME
;
2013 urlComponents
.lpszUserName
= userName
;
2014 urlComponents
.dwUserNameLength
= 1024;
2015 urlComponents
.lpszPassword
= NULL
;
2016 urlComponents
.dwPasswordLength
= 0;
2017 urlComponents
.lpszUrlPath
= path
;
2018 urlComponents
.dwUrlPathLength
= 2048;
2019 urlComponents
.lpszExtraInfo
= NULL
;
2020 urlComponents
.dwExtraInfoLength
= 0;
2021 if(!InternetCrackUrlW(combined_url
, strlenW(combined_url
), 0, &urlComponents
))
2023 HeapFree(GetProcessHeap(), 0, combined_url
);
2026 HeapFree(GetProcessHeap(), 0, combined_url
);
2028 if (!strncmpW(szHttp
, urlComponents
.lpszScheme
, strlenW(szHttp
)) &&
2029 (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
))
2031 TRACE("redirect from secure page to non-secure page\n");
2032 /* FIXME: warn about from secure redirect to non-secure page */
2033 lpwhr
->hdr
.dwFlags
&= ~INTERNET_FLAG_SECURE
;
2035 if (!strncmpW(szHttps
, urlComponents
.lpszScheme
, strlenW(szHttps
)) &&
2036 !(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
))
2038 TRACE("redirect from non-secure page to secure page\n");
2039 /* FIXME: notify about redirect to secure page */
2040 lpwhr
->hdr
.dwFlags
|= INTERNET_FLAG_SECURE
;
2043 if (urlComponents
.nPort
== INTERNET_INVALID_PORT_NUMBER
)
2045 if (lstrlenW(protocol
)>4) /*https*/
2046 urlComponents
.nPort
= INTERNET_DEFAULT_HTTPS_PORT
;
2048 urlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
2053 * This upsets redirects to binary files on sourceforge.net
2054 * and gives an html page instead of the target file
2055 * Examination of the HTTP request sent by native wininet.dll
2056 * reveals that it doesn't send a referrer in that case.
2057 * Maybe there's a flag that enables this, or maybe a referrer
2058 * shouldn't be added in case of a redirect.
2061 /* consider the current host as the referrer */
2062 if (NULL
!= lpwhs
->lpszServerName
&& strlenW(lpwhs
->lpszServerName
))
2063 HTTP_ProcessHeader(lpwhr
, HTTP_REFERER
, lpwhs
->lpszServerName
,
2064 HTTP_ADDHDR_FLAG_REQ
|HTTP_ADDREQ_FLAG_REPLACE
|
2065 HTTP_ADDHDR_FLAG_ADD_IF_NEW
);
2068 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszServerName
);
2069 lpwhs
->lpszServerName
= WININET_strdupW(hostName
);
2070 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszHostName
);
2071 if (urlComponents
.nPort
!= INTERNET_DEFAULT_HTTP_PORT
&&
2072 urlComponents
.nPort
!= INTERNET_DEFAULT_HTTPS_PORT
)
2075 static const WCHAR fmt
[] = {'%','s',':','%','i',0};
2076 len
= lstrlenW(hostName
);
2077 len
+= 7; /* 5 for strlen("65535") + 1 for ":" + 1 for '\0' */
2078 lpwhs
->lpszHostName
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
2079 sprintfW(lpwhs
->lpszHostName
, fmt
, hostName
, urlComponents
.nPort
);
2082 lpwhs
->lpszHostName
= WININET_strdupW(hostName
);
2084 HTTP_ProcessHeader(lpwhr
, szHost
, lpwhs
->lpszHostName
, HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDREQ_FLAG_REPLACE
| HTTP_ADDHDR_FLAG_REQ
);
2087 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszUserName
);
2088 lpwhs
->lpszUserName
= NULL
;
2090 lpwhs
->lpszUserName
= WININET_strdupW(userName
);
2091 lpwhs
->nServerPort
= urlComponents
.nPort
;
2093 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2094 INTERNET_STATUS_RESOLVING_NAME
,
2095 lpwhs
->lpszServerName
,
2096 strlenW(lpwhs
->lpszServerName
)+1);
2098 if (!GetAddress(lpwhs
->lpszServerName
, lpwhs
->nServerPort
,
2099 &lpwhs
->socketAddress
))
2101 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED
);
2105 inet_ntop(lpwhs
->socketAddress
.sin_family
, &lpwhs
->socketAddress
.sin_addr
,
2106 szaddr
, sizeof(szaddr
));
2107 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2108 INTERNET_STATUS_NAME_RESOLVED
,
2109 szaddr
, strlen(szaddr
)+1);
2111 NETCON_close(&lpwhr
->netConnection
);
2113 if (!NETCON_init(&lpwhr
->netConnection
,lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
))
2117 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszPath
);
2118 lpwhr
->lpszPath
=NULL
;
2124 rc
= UrlEscapeW(path
, NULL
, &needed
, URL_ESCAPE_SPACES_ONLY
);
2125 if (rc
!= E_POINTER
)
2126 needed
= strlenW(path
)+1;
2127 lpwhr
->lpszPath
= HeapAlloc(GetProcessHeap(), 0, needed
*sizeof(WCHAR
));
2128 rc
= UrlEscapeW(path
, lpwhr
->lpszPath
, &needed
,
2129 URL_ESCAPE_SPACES_ONLY
);
2132 ERR("Unable to escape string!(%s) (%ld)\n",debugstr_w(path
),rc
);
2133 strcpyW(lpwhr
->lpszPath
,path
);
2137 return HTTP_HttpSendRequestW(lpwhr
, lpszHeaders
, dwHeaderLength
, lpOptional
,
2138 dwOptionalLength
, dwContentLength
, TRUE
);
2141 /***********************************************************************
2142 * HTTP_build_req (internal)
2144 * concatenate all the strings in the request together
2146 static LPWSTR
HTTP_build_req( LPCWSTR
*list
, int len
)
2151 for( t
= list
; *t
; t
++ )
2152 len
+= strlenW( *t
);
2155 str
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
2158 for( t
= list
; *t
; t
++ )
2164 static BOOL
HTTP_SecureProxyConnect(LPWININETHTTPREQW lpwhr
)
2167 LPWSTR requestString
;
2173 static const WCHAR szConnect
[] = {'C','O','N','N','E','C','T',0};
2174 static const WCHAR szFormat
[] = {'%','s',':','%','d',0};
2175 LPWININETHTTPSESSIONW lpwhs
= (LPWININETHTTPSESSIONW
)lpwhr
->hdr
.lpwhparent
;
2179 lpszPath
= HeapAlloc( GetProcessHeap(), 0, (lstrlenW( lpwhs
->lpszHostName
) + 13)*sizeof(WCHAR
) );
2180 sprintfW( lpszPath
, szFormat
, lpwhs
->lpszHostName
, lpwhs
->nHostPort
);
2181 requestString
= HTTP_BuildHeaderRequestString( lpwhr
, szConnect
, lpszPath
, FALSE
);
2182 HeapFree( GetProcessHeap(), 0, lpszPath
);
2184 len
= WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
2185 NULL
, 0, NULL
, NULL
);
2186 len
--; /* the nul terminator isn't needed */
2187 ascii_req
= HeapAlloc( GetProcessHeap(), 0, len
);
2188 WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
2189 ascii_req
, len
, NULL
, NULL
);
2190 HeapFree( GetProcessHeap(), 0, requestString
);
2192 TRACE("full request -> %s\n", debugstr_an( ascii_req
, len
) );
2194 ret
= NETCON_send( &lpwhr
->netConnection
, ascii_req
, len
, 0, &cnt
);
2195 HeapFree( GetProcessHeap(), 0, ascii_req
);
2196 if (!ret
|| cnt
< 0)
2199 responseLen
= HTTP_GetResponseHeaders( lpwhr
);
2206 /***********************************************************************
2207 * HTTP_HttpSendRequestW (internal)
2209 * Sends the specified request to the HTTP server
2216 BOOL WINAPI
HTTP_HttpSendRequestW(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszHeaders
,
2217 DWORD dwHeaderLength
, LPVOID lpOptional
, DWORD dwOptionalLength
,
2218 DWORD dwContentLength
, BOOL bEndRequest
)
2221 BOOL bSuccess
= FALSE
;
2222 LPWSTR requestString
= NULL
;
2224 BOOL loop_next
= FALSE
;
2225 INTERNET_ASYNC_RESULT iar
;
2228 TRACE("--> %p\n", lpwhr
);
2230 assert(lpwhr
->hdr
.htype
== WH_HHTTPREQ
);
2232 /* Clear any error information */
2233 INTERNET_SetLastError(0);
2235 HTTP_FixVerb(lpwhr
);
2237 /* if we are using optional stuff, we must add the fixed header of that option length */
2238 if (dwContentLength
> 0)
2240 static const WCHAR szContentLength
[] = {
2241 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',':',' ','%','l','i','\r','\n',0};
2242 WCHAR contentLengthStr
[sizeof szContentLength
/2 /* includes \n\r */ + 20 /* int */ ];
2243 sprintfW(contentLengthStr
, szContentLength
, dwContentLength
);
2244 HTTP_HttpAddRequestHeadersW(lpwhr
, contentLengthStr
, -1L, HTTP_ADDREQ_FLAG_ADD
);
2247 Host
= HTTP_GetHeader(lpwhr
,szHost
);
2253 TRACE("Going to url %s %s\n", debugstr_w(Host
->lpszValue
), debugstr_w(lpwhr
->lpszPath
));
2258 /* add the headers the caller supplied */
2259 if( lpszHeaders
&& dwHeaderLength
)
2261 HTTP_HttpAddRequestHeadersW(lpwhr
, lpszHeaders
, dwHeaderLength
,
2262 HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDHDR_FLAG_REPLACE
);
2265 /* if there's a proxy username and password, add it to the headers */
2266 HTTP_AddProxyInfo(lpwhr
);
2268 requestString
= HTTP_BuildHeaderRequestString(lpwhr
, lpwhr
->lpszVerb
, lpwhr
->lpszPath
, FALSE
);
2270 TRACE("Request header -> %s\n", debugstr_w(requestString
) );
2272 /* Send the request and store the results */
2273 if (!HTTP_OpenConnection(lpwhr
))
2276 /* send the request as ASCII, tack on the optional data */
2278 dwOptionalLength
= 0;
2279 len
= WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
2280 NULL
, 0, NULL
, NULL
);
2281 ascii_req
= HeapAlloc( GetProcessHeap(), 0, len
+ dwOptionalLength
);
2282 WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
2283 ascii_req
, len
, NULL
, NULL
);
2285 memcpy( &ascii_req
[len
-1], lpOptional
, dwOptionalLength
);
2286 len
= (len
+ dwOptionalLength
- 1);
2288 TRACE("full request -> %s\n", debugstr_a(ascii_req
) );
2290 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2291 INTERNET_STATUS_SENDING_REQUEST
, NULL
, 0);
2293 NETCON_send(&lpwhr
->netConnection
, ascii_req
, len
, 0, &cnt
);
2294 HeapFree( GetProcessHeap(), 0, ascii_req
);
2296 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2297 INTERNET_STATUS_REQUEST_SENT
,
2298 &len
, sizeof(DWORD
));
2302 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2303 INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
2308 responseLen
= HTTP_GetResponseHeaders(lpwhr
);
2312 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2313 INTERNET_STATUS_RESPONSE_RECEIVED
, &responseLen
,
2316 HTTP_ProcessHeaders(lpwhr
);
2325 HeapFree(GetProcessHeap(), 0, requestString
);
2327 /* TODO: send notification for P3P header */
2329 if(!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_AUTO_REDIRECT
) && bSuccess
&& bEndRequest
)
2331 DWORD dwCode
,dwCodeLength
=sizeof(DWORD
),dwIndex
=0;
2332 if(HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_FLAG_NUMBER
|HTTP_QUERY_STATUS_CODE
,&dwCode
,&dwCodeLength
,&dwIndex
) &&
2333 (dwCode
==302 || dwCode
==301))
2335 WCHAR szNewLocation
[2048];
2336 DWORD dwBufferSize
=2048;
2338 if(HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_LOCATION
,szNewLocation
,&dwBufferSize
,&dwIndex
))
2340 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2341 INTERNET_STATUS_REDIRECT
, szNewLocation
,
2343 return HTTP_HandleRedirect(lpwhr
, szNewLocation
, lpszHeaders
,
2344 dwHeaderLength
, lpOptional
, dwOptionalLength
,
2351 iar
.dwResult
= (DWORD
)bSuccess
;
2352 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
2354 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2355 INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
2356 sizeof(INTERNET_ASYNC_RESULT
));
2363 /***********************************************************************
2364 * HTTP_Connect (internal)
2366 * Create http session handle
2369 * HINTERNET a session handle on success
2373 HINTERNET
HTTP_Connect(LPWININETAPPINFOW hIC
, LPCWSTR lpszServerName
,
2374 INTERNET_PORT nServerPort
, LPCWSTR lpszUserName
,
2375 LPCWSTR lpszPassword
, DWORD dwFlags
, DWORD dwContext
,
2376 DWORD dwInternalFlags
)
2378 BOOL bSuccess
= FALSE
;
2379 LPWININETHTTPSESSIONW lpwhs
= NULL
;
2380 HINTERNET handle
= NULL
;
2384 assert( hIC
->hdr
.htype
== WH_HINIT
);
2386 hIC
->hdr
.dwContext
= dwContext
;
2388 lpwhs
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WININETHTTPSESSIONW
));
2391 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2396 * According to my tests. The name is not resolved until a request is sent
2399 lpwhs
->hdr
.htype
= WH_HHTTPSESSION
;
2400 lpwhs
->hdr
.lpwhparent
= WININET_AddRef( &hIC
->hdr
);
2401 lpwhs
->hdr
.dwFlags
= dwFlags
;
2402 lpwhs
->hdr
.dwContext
= dwContext
;
2403 lpwhs
->hdr
.dwInternalFlags
= dwInternalFlags
;
2404 lpwhs
->hdr
.dwRefCount
= 1;
2405 lpwhs
->hdr
.destroy
= HTTP_CloseHTTPSessionHandle
;
2406 lpwhs
->hdr
.lpfnStatusCB
= hIC
->hdr
.lpfnStatusCB
;
2408 handle
= WININET_AllocHandle( &lpwhs
->hdr
);
2411 ERR("Failed to alloc handle\n");
2412 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2416 if(hIC
->lpszProxy
&& hIC
->dwAccessType
== INTERNET_OPEN_TYPE_PROXY
) {
2417 if(strchrW(hIC
->lpszProxy
, ' '))
2418 FIXME("Several proxies not implemented.\n");
2419 if(hIC
->lpszProxyBypass
)
2420 FIXME("Proxy bypass is ignored.\n");
2422 if (lpszServerName
&& lpszServerName
[0])
2424 lpwhs
->lpszServerName
= WININET_strdupW(lpszServerName
);
2425 lpwhs
->lpszHostName
= WININET_strdupW(lpszServerName
);
2427 if (lpszUserName
&& lpszUserName
[0])
2428 lpwhs
->lpszUserName
= WININET_strdupW(lpszUserName
);
2429 lpwhs
->nServerPort
= nServerPort
;
2430 lpwhs
->nHostPort
= nServerPort
;
2432 /* Don't send a handle created callback if this handle was created with InternetOpenUrl */
2433 if (!(lpwhs
->hdr
.dwInternalFlags
& INET_OPENURL
))
2435 INTERNET_SendCallback(&hIC
->hdr
, dwContext
,
2436 INTERNET_STATUS_HANDLE_CREATED
, &handle
,
2444 WININET_Release( &lpwhs
->hdr
);
2447 * an INTERNET_STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on
2451 TRACE("%p --> %p (%p)\n", hIC
, handle
, lpwhs
);
2456 /***********************************************************************
2457 * HTTP_OpenConnection (internal)
2459 * Connect to a web server
2466 static BOOL
HTTP_OpenConnection(LPWININETHTTPREQW lpwhr
)
2468 BOOL bSuccess
= FALSE
;
2469 LPWININETHTTPSESSIONW lpwhs
;
2470 LPWININETAPPINFOW hIC
= NULL
;
2476 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
2478 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
2482 lpwhs
= (LPWININETHTTPSESSIONW
)lpwhr
->hdr
.lpwhparent
;
2484 hIC
= (LPWININETAPPINFOW
) lpwhs
->hdr
.lpwhparent
;
2485 inet_ntop(lpwhs
->socketAddress
.sin_family
, &lpwhs
->socketAddress
.sin_addr
,
2486 szaddr
, sizeof(szaddr
));
2487 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2488 INTERNET_STATUS_CONNECTING_TO_SERVER
,
2492 if (!NETCON_create(&lpwhr
->netConnection
, lpwhs
->socketAddress
.sin_family
,
2495 WARN("Socket creation failed\n");
2499 if (!NETCON_connect(&lpwhr
->netConnection
, (struct sockaddr
*)&lpwhs
->socketAddress
,
2500 sizeof(lpwhs
->socketAddress
)))
2503 if (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
)
2505 /* Note: we differ from Microsoft's WinINet here. they seem to have
2506 * a bug that causes no status callbacks to be sent when starting
2507 * a tunnel to a proxy server using the CONNECT verb. i believe our
2508 * behaviour to be more correct and to not cause any incompatibilities
2509 * because using a secure connection through a proxy server is a rare
2510 * case that would be hard for anyone to depend on */
2511 if (hIC
->lpszProxy
&& !HTTP_SecureProxyConnect(lpwhr
))
2514 if (!NETCON_secure_connect(&lpwhr
->netConnection
, lpwhs
->lpszHostName
))
2516 WARN("Couldn't connect securely to host\n");
2521 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2522 INTERNET_STATUS_CONNECTED_TO_SERVER
,
2523 szaddr
, strlen(szaddr
)+1);
2528 TRACE("%d <--\n", bSuccess
);
2533 /***********************************************************************
2534 * HTTP_clear_response_headers (internal)
2536 * clear out any old response headers
2538 static void HTTP_clear_response_headers( LPWININETHTTPREQW lpwhr
)
2542 for( i
=0; i
<lpwhr
->nCustHeaders
; i
++)
2544 if( !lpwhr
->pCustHeaders
[i
].lpszField
)
2546 if( !lpwhr
->pCustHeaders
[i
].lpszValue
)
2548 if ( lpwhr
->pCustHeaders
[i
].wFlags
& HDR_ISREQUEST
)
2550 HTTP_DeleteCustomHeader( lpwhr
, i
);
2555 /***********************************************************************
2556 * HTTP_GetResponseHeaders (internal)
2558 * Read server response
2565 static INT
HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr
)
2568 WCHAR buffer
[MAX_REPLY_LEN
];
2569 DWORD buflen
= MAX_REPLY_LEN
;
2570 BOOL bSuccess
= FALSE
;
2572 static const WCHAR szCrLf
[] = {'\r','\n',0};
2573 char bufferA
[MAX_REPLY_LEN
];
2574 LPWSTR status_code
, status_text
;
2575 DWORD cchMaxRawHeaders
= 1024;
2576 LPWSTR lpszRawHeaders
= HeapAlloc(GetProcessHeap(), 0, (cchMaxRawHeaders
+1)*sizeof(WCHAR
));
2577 DWORD cchRawHeaders
= 0;
2581 /* clear old response headers (eg. from a redirect response) */
2582 HTTP_clear_response_headers( lpwhr
);
2584 if (!NETCON_connected(&lpwhr
->netConnection
))
2588 * HACK peek at the buffer
2590 NETCON_recv(&lpwhr
->netConnection
, buffer
, buflen
, MSG_PEEK
, &rc
);
2593 * We should first receive 'HTTP/1.x nnn OK' where nnn is the status code.
2595 buflen
= MAX_REPLY_LEN
;
2596 memset(buffer
, 0, MAX_REPLY_LEN
);
2597 if (!NETCON_getNextLine(&lpwhr
->netConnection
, bufferA
, &buflen
))
2599 MultiByteToWideChar( CP_ACP
, 0, bufferA
, buflen
, buffer
, MAX_REPLY_LEN
);
2601 /* regenerate raw headers */
2602 while (cchRawHeaders
+ buflen
+ strlenW(szCrLf
) > cchMaxRawHeaders
)
2604 cchMaxRawHeaders
*= 2;
2605 lpszRawHeaders
= HeapReAlloc(GetProcessHeap(), 0, lpszRawHeaders
, (cchMaxRawHeaders
+1)*sizeof(WCHAR
));
2607 memcpy(lpszRawHeaders
+cchRawHeaders
, buffer
, (buflen
-1)*sizeof(WCHAR
));
2608 cchRawHeaders
+= (buflen
-1);
2609 memcpy(lpszRawHeaders
+cchRawHeaders
, szCrLf
, sizeof(szCrLf
));
2610 cchRawHeaders
+= sizeof(szCrLf
)/sizeof(szCrLf
[0])-1;
2611 lpszRawHeaders
[cchRawHeaders
] = '\0';
2613 /* split the version from the status code */
2614 status_code
= strchrW( buffer
, ' ' );
2619 /* split the status code from the status text */
2620 status_text
= strchrW( status_code
, ' ' );
2625 TRACE("version [%s] status code [%s] status text [%s]\n",
2626 debugstr_w(buffer
), debugstr_w(status_code
), debugstr_w(status_text
) );
2628 HTTP_ProcessHeader(lpwhr
, szStatus
, status_code
,
2629 HTTP_ADDHDR_FLAG_REPLACE
);
2631 HeapFree(GetProcessHeap(),0,lpwhr
->lpszVersion
);
2632 HeapFree(GetProcessHeap(),0,lpwhr
->lpszStatusText
);
2634 lpwhr
->lpszVersion
= WININET_strdupW(buffer
);
2635 lpwhr
->lpszStatusText
= WININET_strdupW(status_text
);
2637 /* Parse each response line */
2640 buflen
= MAX_REPLY_LEN
;
2641 if (NETCON_getNextLine(&lpwhr
->netConnection
, bufferA
, &buflen
))
2643 LPWSTR
* pFieldAndValue
;
2645 TRACE("got line %s, now interpreting\n", debugstr_a(bufferA
));
2646 MultiByteToWideChar( CP_ACP
, 0, bufferA
, buflen
, buffer
, MAX_REPLY_LEN
);
2648 while (cchRawHeaders
+ buflen
+ strlenW(szCrLf
) > cchMaxRawHeaders
)
2650 cchMaxRawHeaders
*= 2;
2651 lpszRawHeaders
= HeapReAlloc(GetProcessHeap(), 0, lpszRawHeaders
, (cchMaxRawHeaders
+1)*sizeof(WCHAR
));
2653 memcpy(lpszRawHeaders
+cchRawHeaders
, buffer
, (buflen
-1)*sizeof(WCHAR
));
2654 cchRawHeaders
+= (buflen
-1);
2655 memcpy(lpszRawHeaders
+cchRawHeaders
, szCrLf
, sizeof(szCrLf
));
2656 cchRawHeaders
+= sizeof(szCrLf
)/sizeof(szCrLf
[0])-1;
2657 lpszRawHeaders
[cchRawHeaders
] = '\0';
2659 pFieldAndValue
= HTTP_InterpretHttpHeader(buffer
);
2660 if (!pFieldAndValue
)
2663 HTTP_ProcessHeader(lpwhr
, pFieldAndValue
[0], pFieldAndValue
[1],
2664 HTTP_ADDREQ_FLAG_ADD
);
2666 HTTP_FreeTokens(pFieldAndValue
);
2676 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszRawHeaders
);
2677 lpwhr
->lpszRawHeaders
= lpszRawHeaders
;
2678 TRACE("raw headers: %s\n", debugstr_w(lpszRawHeaders
));
2691 static void strip_spaces(LPWSTR start
)
2696 while (*str
== ' ' && *str
!= '\0')
2700 memmove(start
, str
, sizeof(WCHAR
) * (strlenW(str
) + 1));
2702 end
= start
+ strlenW(start
) - 1;
2703 while (end
>= start
&& *end
== ' ')
2711 /***********************************************************************
2712 * HTTP_InterpretHttpHeader (internal)
2714 * Parse server response
2718 * Pointer to array of field, value, NULL on success.
2721 static LPWSTR
* HTTP_InterpretHttpHeader(LPCWSTR buffer
)
2723 LPWSTR
* pTokenPair
;
2727 pTokenPair
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*pTokenPair
)*3);
2729 pszColon
= strchrW(buffer
, ':');
2730 /* must have two tokens */
2733 HTTP_FreeTokens(pTokenPair
);
2735 TRACE("No ':' in line: %s\n", debugstr_w(buffer
));
2739 pTokenPair
[0] = HeapAlloc(GetProcessHeap(), 0, (pszColon
- buffer
+ 1) * sizeof(WCHAR
));
2742 HTTP_FreeTokens(pTokenPair
);
2745 memcpy(pTokenPair
[0], buffer
, (pszColon
- buffer
) * sizeof(WCHAR
));
2746 pTokenPair
[0][pszColon
- buffer
] = '\0';
2750 len
= strlenW(pszColon
);
2751 pTokenPair
[1] = HeapAlloc(GetProcessHeap(), 0, (len
+ 1) * sizeof(WCHAR
));
2754 HTTP_FreeTokens(pTokenPair
);
2757 memcpy(pTokenPair
[1], pszColon
, (len
+ 1) * sizeof(WCHAR
));
2759 strip_spaces(pTokenPair
[0]);
2760 strip_spaces(pTokenPair
[1]);
2762 TRACE("field(%s) Value(%s)\n", debugstr_w(pTokenPair
[0]), debugstr_w(pTokenPair
[1]));
2766 /***********************************************************************
2767 * HTTP_ProcessHeader (internal)
2769 * Stuff header into header tables according to <dwModifier>
2773 #define COALESCEFLASG (HTTP_ADDHDR_FLAG_COALESCE|HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA|HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON)
2775 static BOOL
HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr
, LPCWSTR field
, LPCWSTR value
, DWORD dwModifier
)
2777 LPHTTPHEADERW lphttpHdr
= NULL
;
2778 BOOL bSuccess
= FALSE
;
2780 static const WCHAR szConnection
[] = { 'C','o','n','n','e','c','t','i','o','n',0 };
2781 BOOL request_only
= dwModifier
& HTTP_ADDHDR_FLAG_REQ
;
2783 TRACE("--> %s: %s - 0x%08lx\n", debugstr_w(field
), debugstr_w(value
), dwModifier
);
2785 /* Don't let applications add Connection header to request */
2786 if (strcmpW(szConnection
,field
)==0 && (dwModifier
& HTTP_ADDHDR_FLAG_REQ
))
2791 /* REPLACE wins out over ADD */
2792 if (dwModifier
& HTTP_ADDHDR_FLAG_REPLACE
)
2793 dwModifier
&= ~HTTP_ADDHDR_FLAG_ADD
;
2795 if (dwModifier
& HTTP_ADDHDR_FLAG_ADD
)
2798 index
= HTTP_GetCustomHeaderIndex(lpwhr
, field
, 0, request_only
);
2802 if (dwModifier
& HTTP_ADDHDR_FLAG_ADD_IF_NEW
)
2806 lphttpHdr
= &lpwhr
->pCustHeaders
[index
];
2812 hdr
.lpszField
= (LPWSTR
)field
;
2813 hdr
.lpszValue
= (LPWSTR
)value
;
2814 hdr
.wFlags
= hdr
.wCount
= 0;
2816 if (dwModifier
& HTTP_ADDHDR_FLAG_REQ
)
2817 hdr
.wFlags
|= HDR_ISREQUEST
;
2819 return HTTP_InsertCustomHeader(lpwhr
, &hdr
);
2822 if (dwModifier
& HTTP_ADDHDR_FLAG_REQ
)
2823 lphttpHdr
->wFlags
|= HDR_ISREQUEST
;
2825 lphttpHdr
->wFlags
&= ~HDR_ISREQUEST
;
2827 if (dwModifier
& HTTP_ADDHDR_FLAG_REPLACE
)
2829 HTTP_DeleteCustomHeader( lpwhr
, index
);
2835 hdr
.lpszField
= (LPWSTR
)field
;
2836 hdr
.lpszValue
= (LPWSTR
)value
;
2837 hdr
.wFlags
= hdr
.wCount
= 0;
2839 if (dwModifier
& HTTP_ADDHDR_FLAG_REQ
)
2840 hdr
.wFlags
|= HDR_ISREQUEST
;
2842 return HTTP_InsertCustomHeader(lpwhr
, &hdr
);
2847 else if (dwModifier
& COALESCEFLASG
)
2852 INT origlen
= strlenW(lphttpHdr
->lpszValue
);
2853 INT valuelen
= strlenW(value
);
2855 if (dwModifier
& HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA
)
2858 lphttpHdr
->wFlags
|= HDR_COMMADELIMITED
;
2860 else if (dwModifier
& HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON
)
2863 lphttpHdr
->wFlags
|= HDR_COMMADELIMITED
;
2866 len
= origlen
+ valuelen
+ ((ch
> 0) ? 2 : 0);
2868 lpsztmp
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, lphttpHdr
->lpszValue
, (len
+1)*sizeof(WCHAR
));
2871 lphttpHdr
->lpszValue
= lpsztmp
;
2872 /* FIXME: Increment lphttpHdr->wCount. Perhaps lpszValue should be an array */
2875 lphttpHdr
->lpszValue
[origlen
] = ch
;
2877 lphttpHdr
->lpszValue
[origlen
] = ' ';
2881 memcpy(&lphttpHdr
->lpszValue
[origlen
], value
, valuelen
*sizeof(WCHAR
));
2882 lphttpHdr
->lpszValue
[len
] = '\0';
2887 WARN("HeapReAlloc (%d bytes) failed\n",len
+1);
2888 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2891 TRACE("<-- %d\n",bSuccess
);
2896 /***********************************************************************
2897 * HTTP_CloseConnection (internal)
2899 * Close socket connection
2902 static VOID
HTTP_CloseConnection(LPWININETHTTPREQW lpwhr
)
2904 LPWININETHTTPSESSIONW lpwhs
= NULL
;
2905 LPWININETAPPINFOW hIC
= NULL
;
2907 TRACE("%p\n",lpwhr
);
2909 lpwhs
= (LPWININETHTTPSESSIONW
) lpwhr
->hdr
.lpwhparent
;
2910 hIC
= (LPWININETAPPINFOW
) lpwhs
->hdr
.lpwhparent
;
2912 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2913 INTERNET_STATUS_CLOSING_CONNECTION
, 0, 0);
2915 if (NETCON_connected(&lpwhr
->netConnection
))
2917 NETCON_close(&lpwhr
->netConnection
);
2920 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
2921 INTERNET_STATUS_CONNECTION_CLOSED
, 0, 0);
2925 /***********************************************************************
2926 * HTTP_CloseHTTPRequestHandle (internal)
2928 * Deallocate request handle
2931 static void HTTP_CloseHTTPRequestHandle(LPWININETHANDLEHEADER hdr
)
2934 LPWININETHTTPREQW lpwhr
= (LPWININETHTTPREQW
) hdr
;
2938 if (NETCON_connected(&lpwhr
->netConnection
))
2939 HTTP_CloseConnection(lpwhr
);
2941 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszPath
);
2942 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszVerb
);
2943 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszRawHeaders
);
2944 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszVersion
);
2945 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszStatusText
);
2947 for (i
= 0; i
< lpwhr
->nCustHeaders
; i
++)
2949 HeapFree(GetProcessHeap(), 0, lpwhr
->pCustHeaders
[i
].lpszField
);
2950 HeapFree(GetProcessHeap(), 0, lpwhr
->pCustHeaders
[i
].lpszValue
);
2953 HeapFree(GetProcessHeap(), 0, lpwhr
->pCustHeaders
);
2954 HeapFree(GetProcessHeap(), 0, lpwhr
);
2958 /***********************************************************************
2959 * HTTP_CloseHTTPSessionHandle (internal)
2961 * Deallocate session handle
2964 static void HTTP_CloseHTTPSessionHandle(LPWININETHANDLEHEADER hdr
)
2966 LPWININETHTTPSESSIONW lpwhs
= (LPWININETHTTPSESSIONW
) hdr
;
2968 TRACE("%p\n", lpwhs
);
2970 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszHostName
);
2971 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszServerName
);
2972 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszUserName
);
2973 HeapFree(GetProcessHeap(), 0, lpwhs
);
2977 /***********************************************************************
2978 * HTTP_GetCustomHeaderIndex (internal)
2980 * Return index of custom header from header array
2983 static INT
HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszField
,
2984 int requested_index
, BOOL request_only
)
2988 TRACE("%s\n", debugstr_w(lpszField
));
2990 for (index
= 0; index
< lpwhr
->nCustHeaders
; index
++)
2992 if (strcmpiW(lpwhr
->pCustHeaders
[index
].lpszField
, lpszField
))
2995 if (request_only
&& !(lpwhr
->pCustHeaders
[index
].wFlags
& HDR_ISREQUEST
))
2998 if (!request_only
&& (lpwhr
->pCustHeaders
[index
].wFlags
& HDR_ISREQUEST
))
3001 if (requested_index
== 0)
3006 if (index
>= lpwhr
->nCustHeaders
)
3009 TRACE("Return: %ld\n", index
);
3014 /***********************************************************************
3015 * HTTP_InsertCustomHeader (internal)
3017 * Insert header into array
3020 static BOOL
HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr
, LPHTTPHEADERW lpHdr
)
3023 LPHTTPHEADERW lph
= NULL
;
3026 TRACE("--> %s: %s\n", debugstr_w(lpHdr
->lpszField
), debugstr_w(lpHdr
->lpszValue
));
3027 count
= lpwhr
->nCustHeaders
+ 1;
3029 lph
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, lpwhr
->pCustHeaders
, sizeof(HTTPHEADERW
) * count
);
3031 lph
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(HTTPHEADERW
) * count
);
3035 lpwhr
->pCustHeaders
= lph
;
3036 lpwhr
->pCustHeaders
[count
-1].lpszField
= WININET_strdupW(lpHdr
->lpszField
);
3037 lpwhr
->pCustHeaders
[count
-1].lpszValue
= WININET_strdupW(lpHdr
->lpszValue
);
3038 lpwhr
->pCustHeaders
[count
-1].wFlags
= lpHdr
->wFlags
;
3039 lpwhr
->pCustHeaders
[count
-1].wCount
= lpHdr
->wCount
;
3040 lpwhr
->nCustHeaders
++;
3045 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
3052 /***********************************************************************
3053 * HTTP_DeleteCustomHeader (internal)
3055 * Delete header from array
3056 * If this function is called, the indexs may change.
3058 static BOOL
HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr
, DWORD index
)
3060 if( lpwhr
->nCustHeaders
<= 0 )
3062 if( index
>= lpwhr
->nCustHeaders
)
3064 lpwhr
->nCustHeaders
--;
3066 memmove( &lpwhr
->pCustHeaders
[index
], &lpwhr
->pCustHeaders
[index
+1],
3067 (lpwhr
->nCustHeaders
- index
)* sizeof(HTTPHEADERW
) );
3068 memset( &lpwhr
->pCustHeaders
[lpwhr
->nCustHeaders
], 0, sizeof(HTTPHEADERW
) );
3073 /***********************************************************************
3074 * IsHostInProxyBypassList (@)
3079 BOOL WINAPI
IsHostInProxyBypassList(DWORD flags
, LPCSTR szHost
, DWORD length
)
3081 FIXME("STUB: flags=%ld host=%s length=%ld\n",flags
,szHost
,length
);