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
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/port.h"
32 #include <sys/types.h>
33 #ifdef HAVE_SYS_SOCKET_H
34 # include <sys/socket.h>
36 #ifdef HAVE_ARPA_INET_H
37 # include <arpa/inet.h>
52 #define NO_SHLWAPI_STREAM
53 #define NO_SHLWAPI_REG
54 #define NO_SHLWAPI_STRFCNS
55 #define NO_SHLWAPI_GDI
61 #include "wine/debug.h"
62 #include "wine/unicode.h"
64 WINE_DEFAULT_DEBUG_CHANNEL(wininet
);
66 static const WCHAR g_szHttp1_0
[] = {'H','T','T','P','/','1','.','0',0};
67 static const WCHAR g_szHttp1_1
[] = {'H','T','T','P','/','1','.','1',0};
68 static const WCHAR g_szReferer
[] = {'R','e','f','e','r','e','r',0};
69 static const WCHAR g_szAccept
[] = {'A','c','c','e','p','t',0};
70 static const WCHAR g_szUserAgent
[] = {'U','s','e','r','-','A','g','e','n','t',0};
71 static const WCHAR szHost
[] = { 'H','o','s','t',0 };
72 static const WCHAR szAuthorization
[] = { 'A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
73 static const WCHAR szProxy_Authorization
[] = { 'P','r','o','x','y','-','A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
74 static const WCHAR szStatus
[] = { 'S','t','a','t','u','s',0 };
75 static const WCHAR szKeepAlive
[] = {'K','e','e','p','-','A','l','i','v','e',0};
76 static const WCHAR szGET
[] = { 'G','E','T', 0 };
77 static const WCHAR szCrLf
[] = {'\r','\n', 0};
79 #define MAXHOSTNAME 100
80 #define MAX_FIELD_VALUE_LEN 256
81 #define MAX_FIELD_LEN 256
83 #define HTTP_REFERER g_szReferer
84 #define HTTP_ACCEPT g_szAccept
85 #define HTTP_USERAGENT g_szUserAgent
87 #define HTTP_ADDHDR_FLAG_ADD 0x20000000
88 #define HTTP_ADDHDR_FLAG_ADD_IF_NEW 0x10000000
89 #define HTTP_ADDHDR_FLAG_COALESCE 0x40000000
90 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA 0x40000000
91 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON 0x01000000
92 #define HTTP_ADDHDR_FLAG_REPLACE 0x80000000
93 #define HTTP_ADDHDR_FLAG_REQ 0x02000000
95 #define ARRAYSIZE(array) (sizeof(array)/sizeof((array)[0]))
106 unsigned int auth_data_len
;
107 BOOL finished
; /* finished authenticating */
110 static BOOL
HTTP_OpenConnection(LPWININETHTTPREQW lpwhr
);
111 static BOOL
HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr
, BOOL clear
);
112 static BOOL
HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr
, LPCWSTR field
, LPCWSTR value
, DWORD dwModifier
);
113 static LPWSTR
* HTTP_InterpretHttpHeader(LPCWSTR buffer
);
114 static BOOL
HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr
, LPHTTPHEADERW lpHdr
);
115 static INT
HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszField
, INT index
, BOOL Request
);
116 static BOOL
HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr
, DWORD index
);
117 static LPWSTR
HTTP_build_req( LPCWSTR
*list
, int len
);
118 static BOOL WINAPI
HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr
, DWORD
119 dwInfoLevel
, LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD
121 static BOOL
HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszUrl
);
122 static UINT
HTTP_DecodeBase64(LPCWSTR base64
, LPSTR bin
);
123 static BOOL
HTTP_VerifyValidHeader(LPWININETHTTPREQW lpwhr
, LPCWSTR field
);
124 static void HTTP_DrainContent(WININETHTTPREQW
*req
);
126 LPHTTPHEADERW
HTTP_GetHeader(LPWININETHTTPREQW req
, LPCWSTR head
)
129 HeaderIndex
= HTTP_GetCustomHeaderIndex(req
, head
, 0, TRUE
);
130 if (HeaderIndex
== -1)
133 return &req
->pCustHeaders
[HeaderIndex
];
136 /***********************************************************************
137 * HTTP_Tokenize (internal)
139 * Tokenize a string, allocating memory for the tokens.
141 static LPWSTR
* HTTP_Tokenize(LPCWSTR string
, LPCWSTR token_string
)
143 LPWSTR
* token_array
;
148 /* empty string has no tokens */
152 for (i
= 0; string
[i
]; i
++)
153 if (!strncmpW(string
+i
, token_string
, strlenW(token_string
)))
157 /* we want to skip over separators, but not the null terminator */
158 for (j
= 0; j
< strlenW(token_string
) - 1; j
++)
164 /* add 1 for terminating NULL */
165 token_array
= HeapAlloc(GetProcessHeap(), 0, (tokens
+1) * sizeof(*token_array
));
166 token_array
[tokens
] = NULL
;
169 for (i
= 0; i
< tokens
; i
++)
172 next_token
= strstrW(string
, token_string
);
173 if (!next_token
) next_token
= string
+strlenW(string
);
174 len
= next_token
- string
;
175 token_array
[i
] = HeapAlloc(GetProcessHeap(), 0, (len
+1)*sizeof(WCHAR
));
176 memcpy(token_array
[i
], string
, len
*sizeof(WCHAR
));
177 token_array
[i
][len
] = '\0';
178 string
= next_token
+strlenW(token_string
);
183 /***********************************************************************
184 * HTTP_FreeTokens (internal)
186 * Frees memory returned from HTTP_Tokenize.
188 static void HTTP_FreeTokens(LPWSTR
* token_array
)
191 for (i
= 0; token_array
[i
]; i
++)
192 HeapFree(GetProcessHeap(), 0, token_array
[i
]);
193 HeapFree(GetProcessHeap(), 0, token_array
);
196 /* **********************************************************************
198 * Helper functions for the HttpSendRequest(Ex) functions
201 static void AsyncHttpSendRequestProc(WORKREQUEST
*workRequest
)
203 struct WORKREQ_HTTPSENDREQUESTW
const *req
= &workRequest
->u
.HttpSendRequestW
;
204 LPWININETHTTPREQW lpwhr
= (LPWININETHTTPREQW
) workRequest
->hdr
;
206 TRACE("%p\n", lpwhr
);
208 HTTP_HttpSendRequestW(lpwhr
, req
->lpszHeader
,
209 req
->dwHeaderLength
, req
->lpOptional
, req
->dwOptionalLength
,
210 req
->dwContentLength
, req
->bEndRequest
);
212 HeapFree(GetProcessHeap(), 0, req
->lpszHeader
);
215 static void HTTP_FixURL( LPWININETHTTPREQW lpwhr
)
217 static const WCHAR szSlash
[] = { '/',0 };
218 static const WCHAR szHttp
[] = { 'h','t','t','p',':','/','/', 0 };
220 /* If we don't have a path we set it to root */
221 if (NULL
== lpwhr
->lpszPath
)
222 lpwhr
->lpszPath
= WININET_strdupW(szSlash
);
223 else /* remove \r and \n*/
225 int nLen
= strlenW(lpwhr
->lpszPath
);
226 while ((nLen
>0 ) && ((lpwhr
->lpszPath
[nLen
-1] == '\r')||(lpwhr
->lpszPath
[nLen
-1] == '\n')))
229 lpwhr
->lpszPath
[nLen
]='\0';
231 /* Replace '\' with '/' */
234 if (lpwhr
->lpszPath
[nLen
] == '\\') lpwhr
->lpszPath
[nLen
]='/';
238 if(CSTR_EQUAL
!= CompareStringW( LOCALE_SYSTEM_DEFAULT
, NORM_IGNORECASE
,
239 lpwhr
->lpszPath
, strlenW(lpwhr
->lpszPath
), szHttp
, strlenW(szHttp
) )
240 && lpwhr
->lpszPath
[0] != '/') /* not an absolute path ?? --> fix it !! */
242 WCHAR
*fixurl
= HeapAlloc(GetProcessHeap(), 0,
243 (strlenW(lpwhr
->lpszPath
) + 2)*sizeof(WCHAR
));
245 strcpyW(fixurl
+ 1, lpwhr
->lpszPath
);
246 HeapFree( GetProcessHeap(), 0, lpwhr
->lpszPath
);
247 lpwhr
->lpszPath
= fixurl
;
251 static LPWSTR
HTTP_BuildHeaderRequestString( LPWININETHTTPREQW lpwhr
, LPCWSTR verb
, LPCWSTR path
, LPCWSTR version
)
253 LPWSTR requestString
;
259 static const WCHAR szSpace
[] = { ' ',0 };
260 static const WCHAR szColon
[] = { ':',' ',0 };
261 static const WCHAR sztwocrlf
[] = {'\r','\n','\r','\n', 0};
263 /* allocate space for an array of all the string pointers to be added */
264 len
= (lpwhr
->nCustHeaders
)*4 + 10;
265 req
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(LPCWSTR
) );
267 /* add the verb, path and HTTP version string */
275 /* Append custom request headers */
276 for (i
= 0; i
< lpwhr
->nCustHeaders
; i
++)
278 if (lpwhr
->pCustHeaders
[i
].wFlags
& HDR_ISREQUEST
)
281 req
[n
++] = lpwhr
->pCustHeaders
[i
].lpszField
;
283 req
[n
++] = lpwhr
->pCustHeaders
[i
].lpszValue
;
285 TRACE("Adding custom header %s (%s)\n",
286 debugstr_w(lpwhr
->pCustHeaders
[i
].lpszField
),
287 debugstr_w(lpwhr
->pCustHeaders
[i
].lpszValue
));
292 ERR("oops. buffer overrun\n");
295 requestString
= HTTP_build_req( req
, 4 );
296 HeapFree( GetProcessHeap(), 0, req
);
299 * Set (header) termination string for request
300 * Make sure there's exactly two new lines at the end of the request
302 p
= &requestString
[strlenW(requestString
)-1];
303 while ( (*p
== '\n') || (*p
== '\r') )
305 strcpyW( p
+1, sztwocrlf
);
307 return requestString
;
310 static void HTTP_ProcessCookies( LPWININETHTTPREQW lpwhr
)
312 static const WCHAR szSet_Cookie
[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
314 LPHTTPHEADERW setCookieHeader
;
316 HeaderIndex
= HTTP_GetCustomHeaderIndex(lpwhr
, szSet_Cookie
, 0, FALSE
);
317 if (HeaderIndex
== -1)
319 setCookieHeader
= &lpwhr
->pCustHeaders
[HeaderIndex
];
321 if (!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_COOKIES
) && setCookieHeader
->lpszValue
)
323 int nPosStart
= 0, nPosEnd
= 0, len
;
324 static const WCHAR szFmt
[] = { 'h','t','t','p',':','/','/','%','s','/',0};
326 while (setCookieHeader
->lpszValue
[nPosEnd
] != '\0')
328 LPWSTR buf_cookie
, cookie_name
, cookie_data
;
330 LPWSTR domain
= NULL
;
334 while (setCookieHeader
->lpszValue
[nPosEnd
] != ';' && setCookieHeader
->lpszValue
[nPosEnd
] != ',' &&
335 setCookieHeader
->lpszValue
[nPosEnd
] != '\0')
339 if (setCookieHeader
->lpszValue
[nPosEnd
] == ';')
341 /* fixme: not case sensitive, strcasestr is gnu only */
342 int nDomainPosEnd
= 0;
343 int nDomainPosStart
= 0, nDomainLength
= 0;
344 static const WCHAR szDomain
[] = {'d','o','m','a','i','n','=',0};
345 LPWSTR lpszDomain
= strstrW(&setCookieHeader
->lpszValue
[nPosEnd
], szDomain
);
347 { /* they have specified their own domain, lets use it */
348 while (lpszDomain
[nDomainPosEnd
] != ';' && lpszDomain
[nDomainPosEnd
] != ',' &&
349 lpszDomain
[nDomainPosEnd
] != '\0')
353 nDomainPosStart
= strlenW(szDomain
);
354 nDomainLength
= (nDomainPosEnd
- nDomainPosStart
) + 1;
355 domain
= HeapAlloc(GetProcessHeap(), 0, (nDomainLength
+ 1)*sizeof(WCHAR
));
356 lstrcpynW(domain
, &lpszDomain
[nDomainPosStart
], nDomainLength
+ 1);
359 if (setCookieHeader
->lpszValue
[nPosEnd
] == '\0') break;
360 buf_cookie
= HeapAlloc(GetProcessHeap(), 0, ((nPosEnd
- nPosStart
) + 1)*sizeof(WCHAR
));
361 lstrcpynW(buf_cookie
, &setCookieHeader
->lpszValue
[nPosStart
], (nPosEnd
- nPosStart
) + 1);
362 TRACE("%s\n", debugstr_w(buf_cookie
));
363 while (buf_cookie
[nEqualPos
] != '=' && buf_cookie
[nEqualPos
] != '\0')
367 if (buf_cookie
[nEqualPos
] == '\0' || buf_cookie
[nEqualPos
+ 1] == '\0')
369 HeapFree(GetProcessHeap(), 0, buf_cookie
);
373 cookie_name
= HeapAlloc(GetProcessHeap(), 0, (nEqualPos
+ 1)*sizeof(WCHAR
));
374 lstrcpynW(cookie_name
, buf_cookie
, nEqualPos
+ 1);
375 cookie_data
= &buf_cookie
[nEqualPos
+ 1];
377 Host
= HTTP_GetHeader(lpwhr
,szHost
);
378 len
= lstrlenW((domain
? domain
: (Host
?Host
->lpszValue
:NULL
))) +
379 strlenW(lpwhr
->lpszPath
) + 9;
380 buf_url
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
381 sprintfW(buf_url
, szFmt
, (domain
? domain
: (Host
?Host
->lpszValue
:NULL
))); /* FIXME PATH!!! */
382 InternetSetCookieW(buf_url
, cookie_name
, cookie_data
);
384 HeapFree(GetProcessHeap(), 0, buf_url
);
385 HeapFree(GetProcessHeap(), 0, buf_cookie
);
386 HeapFree(GetProcessHeap(), 0, cookie_name
);
387 HeapFree(GetProcessHeap(), 0, domain
);
393 static inline BOOL
is_basic_auth_value( LPCWSTR pszAuthValue
)
395 static const WCHAR szBasic
[] = {'B','a','s','i','c'}; /* Note: not nul-terminated */
396 return !strncmpiW(pszAuthValue
, szBasic
, ARRAYSIZE(szBasic
)) &&
397 ((pszAuthValue
[ARRAYSIZE(szBasic
)] == ' ') || !pszAuthValue
[ARRAYSIZE(szBasic
)]);
400 static BOOL
HTTP_DoAuthorization( LPWININETHTTPREQW lpwhr
, LPCWSTR pszAuthValue
,
401 struct HttpAuthInfo
**ppAuthInfo
,
402 LPWSTR domain_and_username
, LPWSTR password
)
404 SECURITY_STATUS sec_status
;
405 struct HttpAuthInfo
*pAuthInfo
= *ppAuthInfo
;
408 TRACE("%s\n", debugstr_w(pszAuthValue
));
415 pAuthInfo
= HeapAlloc(GetProcessHeap(), 0, sizeof(*pAuthInfo
));
419 SecInvalidateHandle(&pAuthInfo
->cred
);
420 SecInvalidateHandle(&pAuthInfo
->ctx
);
421 memset(&pAuthInfo
->exp
, 0, sizeof(pAuthInfo
->exp
));
423 pAuthInfo
->auth_data
= NULL
;
424 pAuthInfo
->auth_data_len
= 0;
425 pAuthInfo
->finished
= FALSE
;
427 if (is_basic_auth_value(pszAuthValue
))
429 static const WCHAR szBasic
[] = {'B','a','s','i','c',0};
430 pAuthInfo
->scheme
= WININET_strdupW(szBasic
);
431 if (!pAuthInfo
->scheme
)
433 HeapFree(GetProcessHeap(), 0, pAuthInfo
);
440 SEC_WINNT_AUTH_IDENTITY_W nt_auth_identity
;
442 pAuthInfo
->scheme
= WININET_strdupW(pszAuthValue
);
443 if (!pAuthInfo
->scheme
)
445 HeapFree(GetProcessHeap(), 0, pAuthInfo
);
449 if (domain_and_username
)
451 WCHAR
*user
= strchrW(domain_and_username
, '\\');
452 WCHAR
*domain
= domain_and_username
;
454 /* FIXME: make sure scheme accepts SEC_WINNT_AUTH_IDENTITY before calling AcquireCredentialsHandle */
456 pAuthData
= &nt_auth_identity
;
461 user
= domain_and_username
;
465 nt_auth_identity
.Flags
= SEC_WINNT_AUTH_IDENTITY_UNICODE
;
466 nt_auth_identity
.User
= user
;
467 nt_auth_identity
.UserLength
= strlenW(nt_auth_identity
.User
);
468 nt_auth_identity
.Domain
= domain
;
469 nt_auth_identity
.DomainLength
= domain
? user
- domain
- 1 : 0;
470 nt_auth_identity
.Password
= password
;
471 nt_auth_identity
.PasswordLength
= strlenW(nt_auth_identity
.Password
);
474 /* use default credentials */
477 sec_status
= AcquireCredentialsHandleW(NULL
, pAuthInfo
->scheme
,
478 SECPKG_CRED_OUTBOUND
, NULL
,
480 NULL
, &pAuthInfo
->cred
,
482 if (sec_status
== SEC_E_OK
)
484 PSecPkgInfoW sec_pkg_info
;
485 sec_status
= QuerySecurityPackageInfoW(pAuthInfo
->scheme
, &sec_pkg_info
);
486 if (sec_status
== SEC_E_OK
)
488 pAuthInfo
->max_token
= sec_pkg_info
->cbMaxToken
;
489 FreeContextBuffer(sec_pkg_info
);
492 if (sec_status
!= SEC_E_OK
)
494 WARN("AcquireCredentialsHandleW for scheme %s failed with error 0x%08x\n",
495 debugstr_w(pAuthInfo
->scheme
), sec_status
);
496 HeapFree(GetProcessHeap(), 0, pAuthInfo
->scheme
);
497 HeapFree(GetProcessHeap(), 0, pAuthInfo
);
501 *ppAuthInfo
= pAuthInfo
;
503 else if (pAuthInfo
->finished
)
506 if ((strlenW(pszAuthValue
) < strlenW(pAuthInfo
->scheme
)) ||
507 strncmpiW(pszAuthValue
, pAuthInfo
->scheme
, strlenW(pAuthInfo
->scheme
)))
509 ERR("authentication scheme changed from %s to %s\n",
510 debugstr_w(pAuthInfo
->scheme
), debugstr_w(pszAuthValue
));
514 if (is_basic_auth_value(pszAuthValue
))
520 TRACE("basic authentication\n");
522 /* we don't cache credentials for basic authentication, so we can't
523 * retrieve them if the application didn't pass us any credentials */
524 if (!domain_and_username
) return FALSE
;
526 userlen
= WideCharToMultiByte(CP_UTF8
, 0, domain_and_username
, lstrlenW(domain_and_username
), NULL
, 0, NULL
, NULL
);
527 passlen
= WideCharToMultiByte(CP_UTF8
, 0, password
, lstrlenW(password
), NULL
, 0, NULL
, NULL
);
529 /* length includes a nul terminator, which will be re-used for the ':' */
530 auth_data
= HeapAlloc(GetProcessHeap(), 0, userlen
+ 1 + passlen
);
534 WideCharToMultiByte(CP_UTF8
, 0, domain_and_username
, -1, auth_data
, userlen
, NULL
, NULL
);
535 auth_data
[userlen
] = ':';
536 WideCharToMultiByte(CP_UTF8
, 0, password
, -1, &auth_data
[userlen
+1], passlen
, NULL
, NULL
);
538 pAuthInfo
->auth_data
= auth_data
;
539 pAuthInfo
->auth_data_len
= userlen
+ 1 + passlen
;
540 pAuthInfo
->finished
= TRUE
;
547 SecBufferDesc out_desc
, in_desc
;
549 unsigned char *buffer
;
550 ULONG context_req
= ISC_REQ_CONNECTION
| ISC_REQ_USE_DCE_STYLE
|
551 ISC_REQ_MUTUAL_AUTH
| ISC_REQ_DELEGATE
;
553 in
.BufferType
= SECBUFFER_TOKEN
;
557 in_desc
.ulVersion
= 0;
558 in_desc
.cBuffers
= 1;
559 in_desc
.pBuffers
= &in
;
561 pszAuthData
= pszAuthValue
+ strlenW(pAuthInfo
->scheme
);
562 if (*pszAuthData
== ' ')
565 in
.cbBuffer
= HTTP_DecodeBase64(pszAuthData
, NULL
);
566 in
.pvBuffer
= HeapAlloc(GetProcessHeap(), 0, in
.cbBuffer
);
567 HTTP_DecodeBase64(pszAuthData
, in
.pvBuffer
);
570 buffer
= HeapAlloc(GetProcessHeap(), 0, pAuthInfo
->max_token
);
572 out
.BufferType
= SECBUFFER_TOKEN
;
573 out
.cbBuffer
= pAuthInfo
->max_token
;
574 out
.pvBuffer
= buffer
;
576 out_desc
.ulVersion
= 0;
577 out_desc
.cBuffers
= 1;
578 out_desc
.pBuffers
= &out
;
580 sec_status
= InitializeSecurityContextW(first
? &pAuthInfo
->cred
: NULL
,
581 first
? NULL
: &pAuthInfo
->ctx
,
582 first
? lpwhr
->lpHttpSession
->lpszServerName
: NULL
,
583 context_req
, 0, SECURITY_NETWORK_DREP
,
584 in
.pvBuffer
? &in_desc
: NULL
,
585 0, &pAuthInfo
->ctx
, &out_desc
,
586 &pAuthInfo
->attr
, &pAuthInfo
->exp
);
587 if (sec_status
== SEC_E_OK
)
589 pAuthInfo
->finished
= TRUE
;
590 pAuthInfo
->auth_data
= out
.pvBuffer
;
591 pAuthInfo
->auth_data_len
= out
.cbBuffer
;
592 TRACE("sending last auth packet\n");
594 else if (sec_status
== SEC_I_CONTINUE_NEEDED
)
596 pAuthInfo
->auth_data
= out
.pvBuffer
;
597 pAuthInfo
->auth_data_len
= out
.cbBuffer
;
598 TRACE("sending next auth packet\n");
602 ERR("InitializeSecurityContextW returned error 0x%08x\n", sec_status
);
603 pAuthInfo
->finished
= TRUE
;
604 HeapFree(GetProcessHeap(), 0, out
.pvBuffer
);
612 /***********************************************************************
613 * HTTP_HttpAddRequestHeadersW (internal)
615 static BOOL WINAPI
HTTP_HttpAddRequestHeadersW(LPWININETHTTPREQW lpwhr
,
616 LPCWSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
621 BOOL bSuccess
= FALSE
;
624 TRACE("copying header: %s\n", debugstr_wn(lpszHeader
, dwHeaderLength
));
626 if( dwHeaderLength
== ~0U )
627 len
= strlenW(lpszHeader
);
629 len
= dwHeaderLength
;
630 buffer
= HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR
)*(len
+1) );
631 lstrcpynW( buffer
, lpszHeader
, len
+ 1);
637 LPWSTR
* pFieldAndValue
;
641 while (*lpszEnd
!= '\0')
643 if (*lpszEnd
== '\r' && *(lpszEnd
+ 1) == '\n')
648 if (*lpszStart
== '\0')
651 if (*lpszEnd
== '\r')
654 lpszEnd
+= 2; /* Jump over \r\n */
656 TRACE("interpreting header %s\n", debugstr_w(lpszStart
));
657 pFieldAndValue
= HTTP_InterpretHttpHeader(lpszStart
);
660 bSuccess
= HTTP_VerifyValidHeader(lpwhr
, pFieldAndValue
[0]);
662 bSuccess
= HTTP_ProcessHeader(lpwhr
, pFieldAndValue
[0],
663 pFieldAndValue
[1], dwModifier
| HTTP_ADDHDR_FLAG_REQ
);
664 HTTP_FreeTokens(pFieldAndValue
);
670 HeapFree(GetProcessHeap(), 0, buffer
);
675 /***********************************************************************
676 * HttpAddRequestHeadersW (WININET.@)
678 * Adds one or more HTTP header to the request handler
681 * On Windows if dwHeaderLength includes the trailing '\0', then
682 * HttpAddRequestHeadersW() adds it too. However this results in an
683 * invalid Http header which is rejected by some servers so we probably
684 * don't need to match Windows on that point.
691 BOOL WINAPI
HttpAddRequestHeadersW(HINTERNET hHttpRequest
,
692 LPCWSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
694 BOOL bSuccess
= FALSE
;
695 LPWININETHTTPREQW lpwhr
;
697 TRACE("%p, %s, %i, %i\n", hHttpRequest
, debugstr_wn(lpszHeader
, dwHeaderLength
), dwHeaderLength
, dwModifier
);
702 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
703 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
705 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
708 bSuccess
= HTTP_HttpAddRequestHeadersW( lpwhr
, lpszHeader
, dwHeaderLength
, dwModifier
);
711 WININET_Release( &lpwhr
->hdr
);
716 /***********************************************************************
717 * HttpAddRequestHeadersA (WININET.@)
719 * Adds one or more HTTP header to the request handler
726 BOOL WINAPI
HttpAddRequestHeadersA(HINTERNET hHttpRequest
,
727 LPCSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
733 TRACE("%p, %s, %i, %i\n", hHttpRequest
, debugstr_an(lpszHeader
, dwHeaderLength
), dwHeaderLength
, dwModifier
);
735 len
= MultiByteToWideChar( CP_ACP
, 0, lpszHeader
, dwHeaderLength
, NULL
, 0 );
736 hdr
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
737 MultiByteToWideChar( CP_ACP
, 0, lpszHeader
, dwHeaderLength
, hdr
, len
);
738 if( dwHeaderLength
!= ~0U )
739 dwHeaderLength
= len
;
741 r
= HttpAddRequestHeadersW( hHttpRequest
, hdr
, dwHeaderLength
, dwModifier
);
743 HeapFree( GetProcessHeap(), 0, hdr
);
748 /***********************************************************************
749 * HttpEndRequestA (WININET.@)
751 * Ends an HTTP request that was started by HttpSendRequestEx
758 BOOL WINAPI
HttpEndRequestA(HINTERNET hRequest
,
759 LPINTERNET_BUFFERSA lpBuffersOut
, DWORD dwFlags
, DWORD_PTR dwContext
)
761 LPINTERNET_BUFFERSA ptr
;
762 LPINTERNET_BUFFERSW lpBuffersOutW
,ptrW
;
765 TRACE("(%p, %p, %08x, %08lx): stub\n", hRequest
, lpBuffersOut
, dwFlags
,
770 lpBuffersOutW
= (LPINTERNET_BUFFERSW
)HeapAlloc(GetProcessHeap(),
771 HEAP_ZERO_MEMORY
, sizeof(INTERNET_BUFFERSW
));
773 lpBuffersOutW
= NULL
;
775 ptrW
= lpBuffersOutW
;
778 if (ptr
->lpvBuffer
&& ptr
->dwBufferLength
)
779 ptrW
->lpvBuffer
= HeapAlloc(GetProcessHeap(),0,ptr
->dwBufferLength
);
780 ptrW
->dwBufferLength
= ptr
->dwBufferLength
;
781 ptrW
->dwBufferTotal
= ptr
->dwBufferTotal
;
784 ptrW
->Next
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,
785 sizeof(INTERNET_BUFFERSW
));
791 rc
= HttpEndRequestW(hRequest
, lpBuffersOutW
, dwFlags
, dwContext
);
795 ptrW
= lpBuffersOutW
;
798 LPINTERNET_BUFFERSW ptrW2
;
800 FIXME("Do we need to translate info out of these buffer?\n");
802 HeapFree(GetProcessHeap(),0,ptrW
->lpvBuffer
);
804 HeapFree(GetProcessHeap(),0,ptrW
);
812 /***********************************************************************
813 * HttpEndRequestW (WININET.@)
815 * Ends an HTTP request that was started by HttpSendRequestEx
822 BOOL WINAPI
HttpEndRequestW(HINTERNET hRequest
,
823 LPINTERNET_BUFFERSW lpBuffersOut
, DWORD dwFlags
, DWORD_PTR dwContext
)
826 LPWININETHTTPREQW lpwhr
;
831 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hRequest
);
833 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
835 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
837 WININET_Release( &lpwhr
->hdr
);
841 lpwhr
->hdr
.dwFlags
|= dwFlags
;
842 lpwhr
->hdr
.dwContext
= dwContext
;
844 /* We appear to do nothing with lpBuffersOut.. is that correct? */
846 SendAsyncCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
847 INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
849 responseLen
= HTTP_GetResponseHeaders(lpwhr
, TRUE
);
853 SendAsyncCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
854 INTERNET_STATUS_RESPONSE_RECEIVED
, &responseLen
, sizeof(DWORD
));
856 /* process cookies here. Is this right? */
857 HTTP_ProcessCookies(lpwhr
);
859 dwBufferSize
= sizeof(lpwhr
->dwContentLength
);
860 if (!HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_FLAG_NUMBER
|HTTP_QUERY_CONTENT_LENGTH
,
861 &lpwhr
->dwContentLength
,&dwBufferSize
,NULL
))
862 lpwhr
->dwContentLength
= -1;
864 if (lpwhr
->dwContentLength
== 0)
865 HTTP_FinishedReading(lpwhr
);
867 if(!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_AUTO_REDIRECT
))
869 DWORD dwCode
,dwCodeLength
=sizeof(DWORD
);
870 if(HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_FLAG_NUMBER
|HTTP_QUERY_STATUS_CODE
,&dwCode
,&dwCodeLength
,NULL
) &&
871 (dwCode
==302 || dwCode
==301))
873 WCHAR szNewLocation
[INTERNET_MAX_URL_LENGTH
];
874 dwBufferSize
=sizeof(szNewLocation
);
875 if(HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_LOCATION
,szNewLocation
,&dwBufferSize
,NULL
))
877 /* redirects are always GETs */
878 HeapFree(GetProcessHeap(),0,lpwhr
->lpszVerb
);
879 lpwhr
->lpszVerb
= WININET_strdupW(szGET
);
880 HTTP_DrainContent(lpwhr
);
881 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
882 INTERNET_STATUS_REDIRECT
, szNewLocation
,
884 rc
= HTTP_HandleRedirect(lpwhr
, szNewLocation
);
886 rc
= HTTP_HttpSendRequestW(lpwhr
, NULL
, 0, NULL
, 0, 0, TRUE
);
891 WININET_Release( &lpwhr
->hdr
);
892 TRACE("%i <--\n",rc
);
896 /***********************************************************************
897 * HttpOpenRequestW (WININET.@)
899 * Open a HTTP request handle
902 * HINTERNET a HTTP request handle on success
906 HINTERNET WINAPI
HttpOpenRequestW(HINTERNET hHttpSession
,
907 LPCWSTR lpszVerb
, LPCWSTR lpszObjectName
, LPCWSTR lpszVersion
,
908 LPCWSTR lpszReferrer
, LPCWSTR
*lpszAcceptTypes
,
909 DWORD dwFlags
, DWORD_PTR dwContext
)
911 LPWININETHTTPSESSIONW lpwhs
;
912 HINTERNET handle
= NULL
;
914 TRACE("(%p, %s, %s, %s, %s, %p, %08x, %08lx)\n", hHttpSession
,
915 debugstr_w(lpszVerb
), debugstr_w(lpszObjectName
),
916 debugstr_w(lpszVersion
), debugstr_w(lpszReferrer
), lpszAcceptTypes
,
918 if(lpszAcceptTypes
!=NULL
)
921 for(i
=0;lpszAcceptTypes
[i
]!=NULL
;i
++)
922 TRACE("\taccept type: %s\n",debugstr_w(lpszAcceptTypes
[i
]));
925 lpwhs
= (LPWININETHTTPSESSIONW
) WININET_GetObject( hHttpSession
);
926 if (NULL
== lpwhs
|| lpwhs
->hdr
.htype
!= WH_HHTTPSESSION
)
928 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
933 * My tests seem to show that the windows version does not
934 * become asynchronous until after this point. And anyhow
935 * if this call was asynchronous then how would you get the
936 * necessary HINTERNET pointer returned by this function.
939 handle
= HTTP_HttpOpenRequestW(lpwhs
, lpszVerb
, lpszObjectName
,
940 lpszVersion
, lpszReferrer
, lpszAcceptTypes
,
944 WININET_Release( &lpwhs
->hdr
);
945 TRACE("returning %p\n", handle
);
950 /***********************************************************************
951 * HttpOpenRequestA (WININET.@)
953 * Open a HTTP request handle
956 * HINTERNET a HTTP request handle on success
960 HINTERNET WINAPI
HttpOpenRequestA(HINTERNET hHttpSession
,
961 LPCSTR lpszVerb
, LPCSTR lpszObjectName
, LPCSTR lpszVersion
,
962 LPCSTR lpszReferrer
, LPCSTR
*lpszAcceptTypes
,
963 DWORD dwFlags
, DWORD_PTR dwContext
)
965 LPWSTR szVerb
= NULL
, szObjectName
= NULL
;
966 LPWSTR szVersion
= NULL
, szReferrer
= NULL
, *szAcceptTypes
= NULL
;
967 INT len
, acceptTypesCount
;
968 HINTERNET rc
= FALSE
;
971 TRACE("(%p, %s, %s, %s, %s, %p, %08x, %08lx)\n", hHttpSession
,
972 debugstr_a(lpszVerb
), debugstr_a(lpszObjectName
),
973 debugstr_a(lpszVersion
), debugstr_a(lpszReferrer
), lpszAcceptTypes
,
978 len
= MultiByteToWideChar(CP_ACP
, 0, lpszVerb
, -1, NULL
, 0 );
979 szVerb
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
982 MultiByteToWideChar(CP_ACP
, 0, lpszVerb
, -1, szVerb
, len
);
987 len
= MultiByteToWideChar(CP_ACP
, 0, lpszObjectName
, -1, NULL
, 0 );
988 szObjectName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
991 MultiByteToWideChar(CP_ACP
, 0, lpszObjectName
, -1, szObjectName
, len
);
996 len
= MultiByteToWideChar(CP_ACP
, 0, lpszVersion
, -1, NULL
, 0 );
997 szVersion
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1000 MultiByteToWideChar(CP_ACP
, 0, lpszVersion
, -1, szVersion
, len
);
1005 len
= MultiByteToWideChar(CP_ACP
, 0, lpszReferrer
, -1, NULL
, 0 );
1006 szReferrer
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1009 MultiByteToWideChar(CP_ACP
, 0, lpszReferrer
, -1, szReferrer
, len
);
1012 if (lpszAcceptTypes
)
1014 acceptTypesCount
= 0;
1015 types
= lpszAcceptTypes
;
1018 /* find out how many there are */
1019 if (((ULONG_PTR
)*types
>> 16) && **types
)
1021 TRACE("accept type: %s\n", debugstr_a(*types
));
1026 szAcceptTypes
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
*) * (acceptTypesCount
+1));
1027 if (!szAcceptTypes
) goto end
;
1029 acceptTypesCount
= 0;
1030 types
= lpszAcceptTypes
;
1033 if (((ULONG_PTR
)*types
>> 16) && **types
)
1035 len
= MultiByteToWideChar(CP_ACP
, 0, *types
, -1, NULL
, 0 );
1036 szAcceptTypes
[acceptTypesCount
] = HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1037 if (!szAcceptTypes
[acceptTypesCount
]) goto end
;
1039 MultiByteToWideChar(CP_ACP
, 0, *types
, -1, szAcceptTypes
[acceptTypesCount
], len
);
1044 szAcceptTypes
[acceptTypesCount
] = NULL
;
1046 else szAcceptTypes
= 0;
1048 rc
= HttpOpenRequestW(hHttpSession
, szVerb
, szObjectName
,
1049 szVersion
, szReferrer
,
1050 (LPCWSTR
*)szAcceptTypes
, dwFlags
, dwContext
);
1055 acceptTypesCount
= 0;
1056 while (szAcceptTypes
[acceptTypesCount
])
1058 HeapFree(GetProcessHeap(), 0, szAcceptTypes
[acceptTypesCount
]);
1061 HeapFree(GetProcessHeap(), 0, szAcceptTypes
);
1063 HeapFree(GetProcessHeap(), 0, szReferrer
);
1064 HeapFree(GetProcessHeap(), 0, szVersion
);
1065 HeapFree(GetProcessHeap(), 0, szObjectName
);
1066 HeapFree(GetProcessHeap(), 0, szVerb
);
1071 /***********************************************************************
1074 static UINT
HTTP_EncodeBase64( LPCSTR bin
, unsigned int len
, LPWSTR base64
)
1077 static const CHAR HTTP_Base64Enc
[] =
1078 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
1082 /* first 6 bits, all from bin[0] */
1083 base64
[n
++] = HTTP_Base64Enc
[(bin
[0] & 0xfc) >> 2];
1084 x
= (bin
[0] & 3) << 4;
1086 /* next 6 bits, 2 from bin[0] and 4 from bin[1] */
1089 base64
[n
++] = HTTP_Base64Enc
[x
];
1094 base64
[n
++] = HTTP_Base64Enc
[ x
| ( (bin
[1]&0xf0) >> 4 ) ];
1095 x
= ( bin
[1] & 0x0f ) << 2;
1097 /* next 6 bits 4 from bin[1] and 2 from bin[2] */
1100 base64
[n
++] = HTTP_Base64Enc
[x
];
1104 base64
[n
++] = HTTP_Base64Enc
[ x
| ( (bin
[2]&0xc0 ) >> 6 ) ];
1106 /* last 6 bits, all from bin [2] */
1107 base64
[n
++] = HTTP_Base64Enc
[ bin
[2] & 0x3f ];
1115 #define CH(x) (((x) >= 'A' && (x) <= 'Z') ? (x) - 'A' : \
1116 ((x) >= 'a' && (x) <= 'z') ? (x) - 'a' + 26 : \
1117 ((x) >= '0' && (x) <= '9') ? (x) - '0' + 52 : \
1118 ((x) == '+') ? 62 : ((x) == '/') ? 63 : -1)
1119 static const signed char HTTP_Base64Dec
[256] =
1121 CH( 0),CH( 1),CH( 2),CH( 3),CH( 4),CH( 5),CH( 6),CH( 7),CH( 8),CH( 9),
1122 CH(10),CH(11),CH(12),CH(13),CH(14),CH(15),CH(16),CH(17),CH(18),CH(19),
1123 CH(20),CH(21),CH(22),CH(23),CH(24),CH(25),CH(26),CH(27),CH(28),CH(29),
1124 CH(30),CH(31),CH(32),CH(33),CH(34),CH(35),CH(36),CH(37),CH(38),CH(39),
1125 CH(40),CH(41),CH(42),CH(43),CH(44),CH(45),CH(46),CH(47),CH(48),CH(49),
1126 CH(50),CH(51),CH(52),CH(53),CH(54),CH(55),CH(56),CH(57),CH(58),CH(59),
1127 CH(60),CH(61),CH(62),CH(63),CH(64),CH(65),CH(66),CH(67),CH(68),CH(69),
1128 CH(70),CH(71),CH(72),CH(73),CH(74),CH(75),CH(76),CH(77),CH(78),CH(79),
1129 CH(80),CH(81),CH(82),CH(83),CH(84),CH(85),CH(86),CH(87),CH(88),CH(89),
1130 CH(90),CH(91),CH(92),CH(93),CH(94),CH(95),CH(96),CH(97),CH(98),CH(99),
1131 CH(100),CH(101),CH(102),CH(103),CH(104),CH(105),CH(106),CH(107),CH(108),CH(109),
1132 CH(110),CH(111),CH(112),CH(113),CH(114),CH(115),CH(116),CH(117),CH(118),CH(119),
1133 CH(120),CH(121),CH(122),CH(123),CH(124),CH(125),CH(126),CH(127),CH(128),CH(129),
1134 CH(130),CH(131),CH(132),CH(133),CH(134),CH(135),CH(136),CH(137),CH(138),CH(139),
1135 CH(140),CH(141),CH(142),CH(143),CH(144),CH(145),CH(146),CH(147),CH(148),CH(149),
1136 CH(150),CH(151),CH(152),CH(153),CH(154),CH(155),CH(156),CH(157),CH(158),CH(159),
1137 CH(160),CH(161),CH(162),CH(163),CH(164),CH(165),CH(166),CH(167),CH(168),CH(169),
1138 CH(170),CH(171),CH(172),CH(173),CH(174),CH(175),CH(176),CH(177),CH(178),CH(179),
1139 CH(180),CH(181),CH(182),CH(183),CH(184),CH(185),CH(186),CH(187),CH(188),CH(189),
1140 CH(190),CH(191),CH(192),CH(193),CH(194),CH(195),CH(196),CH(197),CH(198),CH(199),
1141 CH(200),CH(201),CH(202),CH(203),CH(204),CH(205),CH(206),CH(207),CH(208),CH(209),
1142 CH(210),CH(211),CH(212),CH(213),CH(214),CH(215),CH(216),CH(217),CH(218),CH(219),
1143 CH(220),CH(221),CH(222),CH(223),CH(224),CH(225),CH(226),CH(227),CH(228),CH(229),
1144 CH(230),CH(231),CH(232),CH(233),CH(234),CH(235),CH(236),CH(237),CH(238),CH(239),
1145 CH(240),CH(241),CH(242),CH(243),CH(244),CH(245),CH(246),CH(247),CH(248), CH(249),
1146 CH(250),CH(251),CH(252),CH(253),CH(254),CH(255),
1150 /***********************************************************************
1153 static UINT
HTTP_DecodeBase64( LPCWSTR base64
, LPSTR bin
)
1161 if (base64
[0] >= ARRAYSIZE(HTTP_Base64Dec
) ||
1162 ((in
[0] = HTTP_Base64Dec
[base64
[0]]) == -1) ||
1163 base64
[1] >= ARRAYSIZE(HTTP_Base64Dec
) ||
1164 ((in
[1] = HTTP_Base64Dec
[base64
[1]]) == -1))
1166 WARN("invalid base64: %s\n", debugstr_w(base64
));
1170 bin
[n
] = (unsigned char) (in
[0] << 2 | in
[1] >> 4);
1173 if ((base64
[2] == '=') && (base64
[3] == '='))
1175 if (base64
[2] > ARRAYSIZE(HTTP_Base64Dec
) ||
1176 ((in
[2] = HTTP_Base64Dec
[base64
[2]]) == -1))
1178 WARN("invalid base64: %s\n", debugstr_w(&base64
[2]));
1182 bin
[n
] = (unsigned char) (in
[1] << 4 | in
[2] >> 2);
1185 if (base64
[3] == '=')
1187 if (base64
[3] > ARRAYSIZE(HTTP_Base64Dec
) ||
1188 ((in
[3] = HTTP_Base64Dec
[base64
[3]]) == -1))
1190 WARN("invalid base64: %s\n", debugstr_w(&base64
[3]));
1194 bin
[n
] = (unsigned char) (((in
[2] << 6) & 0xc0) | in
[3]);
1203 /***********************************************************************
1204 * HTTP_InsertAuthorization
1206 * Insert or delete the authorization field in the request header.
1208 static BOOL
HTTP_InsertAuthorization( LPWININETHTTPREQW lpwhr
, struct HttpAuthInfo
*pAuthInfo
, LPCWSTR header
)
1212 static const WCHAR wszSpace
[] = {' ',0};
1213 static const WCHAR wszBasic
[] = {'B','a','s','i','c',0};
1215 WCHAR
*authorization
= NULL
;
1217 if (pAuthInfo
->auth_data_len
)
1219 /* scheme + space + base64 encoded data (3/2/1 bytes data -> 4 bytes of characters) */
1220 len
= strlenW(pAuthInfo
->scheme
)+1+((pAuthInfo
->auth_data_len
+2)*4)/3;
1221 authorization
= HeapAlloc(GetProcessHeap(), 0, (len
+1)*sizeof(WCHAR
));
1225 strcpyW(authorization
, pAuthInfo
->scheme
);
1226 strcatW(authorization
, wszSpace
);
1227 HTTP_EncodeBase64(pAuthInfo
->auth_data
,
1228 pAuthInfo
->auth_data_len
,
1229 authorization
+strlenW(authorization
));
1231 /* clear the data as it isn't valid now that it has been sent to the
1232 * server, unless it's Basic authentication which doesn't do
1233 * connection tracking */
1234 if (strcmpiW(pAuthInfo
->scheme
, wszBasic
))
1236 HeapFree(GetProcessHeap(), 0, pAuthInfo
->auth_data
);
1237 pAuthInfo
->auth_data
= NULL
;
1238 pAuthInfo
->auth_data_len
= 0;
1242 TRACE("Inserting authorization: %s\n", debugstr_w(authorization
));
1244 HTTP_ProcessHeader(lpwhr
, header
, authorization
, HTTP_ADDHDR_FLAG_REQ
| HTTP_ADDHDR_FLAG_REPLACE
);
1246 HeapFree(GetProcessHeap(), 0, authorization
);
1251 static WCHAR
*HTTP_BuildProxyRequestUrl(WININETHTTPREQW
*req
)
1253 WCHAR new_location
[INTERNET_MAX_URL_LENGTH
], *url
;
1256 size
= sizeof(new_location
);
1257 if (HTTP_HttpQueryInfoW(req
, HTTP_QUERY_LOCATION
, new_location
, &size
, NULL
))
1259 if (!(url
= HeapAlloc( GetProcessHeap(), 0, size
+ sizeof(WCHAR
) ))) return NULL
;
1260 strcpyW( url
, new_location
);
1264 static const WCHAR slash
[] = { '/',0 };
1265 static const WCHAR format
[] = { 'h','t','t','p',':','/','/','%','s',':','%','d',0 };
1266 static const WCHAR formatSSL
[] = { 'h','t','t','p','s',':','/','/','%','s',':','%','d',0 };
1267 WININETHTTPSESSIONW
*session
= req
->lpHttpSession
;
1269 size
= 16; /* "https://" + sizeof(port#) + ":/\0" */
1270 size
+= strlenW( session
->lpszHostName
) + strlenW( req
->lpszPath
);
1272 if (!(url
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(WCHAR
) ))) return NULL
;
1274 if (req
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
)
1275 sprintfW( url
, formatSSL
, session
->lpszHostName
, session
->nHostPort
);
1277 sprintfW( url
, format
, session
->lpszHostName
, session
->nHostPort
);
1278 if (req
->lpszPath
[0] != '/') strcatW( url
, slash
);
1279 strcatW( url
, req
->lpszPath
);
1281 TRACE("url=%s\n", debugstr_w(url
));
1285 /***********************************************************************
1286 * HTTP_DealWithProxy
1288 static BOOL
HTTP_DealWithProxy( LPWININETAPPINFOW hIC
,
1289 LPWININETHTTPSESSIONW lpwhs
, LPWININETHTTPREQW lpwhr
)
1291 WCHAR buf
[MAXHOSTNAME
];
1292 WCHAR proxy
[MAXHOSTNAME
+ 15]; /* 15 == "http://" + sizeof(port#) + ":/\0" */
1293 static WCHAR szNul
[] = { 0 };
1294 URL_COMPONENTSW UrlComponents
;
1295 static const WCHAR szHttp
[] = { 'h','t','t','p',':','/','/',0 };
1296 static const WCHAR szFormat
[] = { 'h','t','t','p',':','/','/','%','s',0 };
1298 memset( &UrlComponents
, 0, sizeof UrlComponents
);
1299 UrlComponents
.dwStructSize
= sizeof UrlComponents
;
1300 UrlComponents
.lpszHostName
= buf
;
1301 UrlComponents
.dwHostNameLength
= MAXHOSTNAME
;
1303 if( CSTR_EQUAL
!= CompareStringW(LOCALE_SYSTEM_DEFAULT
, NORM_IGNORECASE
,
1304 hIC
->lpszProxy
,strlenW(szHttp
),szHttp
,strlenW(szHttp
)) )
1305 sprintfW(proxy
, szFormat
, hIC
->lpszProxy
);
1307 strcpyW(proxy
, hIC
->lpszProxy
);
1308 if( !InternetCrackUrlW(proxy
, 0, 0, &UrlComponents
) )
1310 if( UrlComponents
.dwHostNameLength
== 0 )
1313 if( !lpwhr
->lpszPath
)
1314 lpwhr
->lpszPath
= szNul
;
1316 if(UrlComponents
.nPort
== INTERNET_INVALID_PORT_NUMBER
)
1317 UrlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
1319 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszServerName
);
1320 lpwhs
->lpszServerName
= WININET_strdupW(UrlComponents
.lpszHostName
);
1321 lpwhs
->nServerPort
= UrlComponents
.nPort
;
1323 TRACE("proxy server=%s port=%d\n", debugstr_w(lpwhs
->lpszServerName
), lpwhs
->nServerPort
);
1327 static BOOL
HTTP_ResolveName(LPWININETHTTPREQW lpwhr
)
1330 LPWININETHTTPSESSIONW lpwhs
= lpwhr
->lpHttpSession
;
1332 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1333 INTERNET_STATUS_RESOLVING_NAME
,
1334 lpwhs
->lpszServerName
,
1335 strlenW(lpwhs
->lpszServerName
)+1);
1337 if (!GetAddress(lpwhs
->lpszServerName
, lpwhs
->nServerPort
,
1338 &lpwhs
->socketAddress
))
1340 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED
);
1344 inet_ntop(lpwhs
->socketAddress
.sin_family
, &lpwhs
->socketAddress
.sin_addr
,
1345 szaddr
, sizeof(szaddr
));
1346 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1347 INTERNET_STATUS_NAME_RESOLVED
,
1348 szaddr
, strlen(szaddr
)+1);
1350 TRACE("resolved %s to %s\n", debugstr_w(lpwhs
->lpszServerName
), szaddr
);
1355 /***********************************************************************
1356 * HTTPREQ_Destroy (internal)
1358 * Deallocate request handle
1361 static void HTTPREQ_Destroy(WININETHANDLEHEADER
*hdr
)
1363 LPWININETHTTPREQW lpwhr
= (LPWININETHTTPREQW
) hdr
;
1368 if(lpwhr
->hCacheFile
)
1369 CloseHandle(lpwhr
->hCacheFile
);
1371 if(lpwhr
->lpszCacheFile
) {
1372 DeleteFileW(lpwhr
->lpszCacheFile
); /* FIXME */
1373 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszCacheFile
);
1376 WININET_Release(&lpwhr
->lpHttpSession
->hdr
);
1378 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszPath
);
1379 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszVerb
);
1380 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszRawHeaders
);
1381 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszVersion
);
1382 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszStatusText
);
1384 for (i
= 0; i
< lpwhr
->nCustHeaders
; i
++)
1386 HeapFree(GetProcessHeap(), 0, lpwhr
->pCustHeaders
[i
].lpszField
);
1387 HeapFree(GetProcessHeap(), 0, lpwhr
->pCustHeaders
[i
].lpszValue
);
1390 HeapFree(GetProcessHeap(), 0, lpwhr
->pCustHeaders
);
1391 HeapFree(GetProcessHeap(), 0, lpwhr
);
1394 static void HTTPREQ_CloseConnection(WININETHANDLEHEADER
*hdr
)
1396 LPWININETHTTPREQW lpwhr
= (LPWININETHTTPREQW
) hdr
;
1398 TRACE("%p\n",lpwhr
);
1400 if (!NETCON_connected(&lpwhr
->netConnection
))
1403 if (lpwhr
->pAuthInfo
)
1405 if (SecIsValidHandle(&lpwhr
->pAuthInfo
->ctx
))
1406 DeleteSecurityContext(&lpwhr
->pAuthInfo
->ctx
);
1407 if (SecIsValidHandle(&lpwhr
->pAuthInfo
->cred
))
1408 FreeCredentialsHandle(&lpwhr
->pAuthInfo
->cred
);
1410 HeapFree(GetProcessHeap(), 0, lpwhr
->pAuthInfo
->auth_data
);
1411 HeapFree(GetProcessHeap(), 0, lpwhr
->pAuthInfo
->scheme
);
1412 HeapFree(GetProcessHeap(), 0, lpwhr
->pAuthInfo
);
1413 lpwhr
->pAuthInfo
= NULL
;
1415 if (lpwhr
->pProxyAuthInfo
)
1417 if (SecIsValidHandle(&lpwhr
->pProxyAuthInfo
->ctx
))
1418 DeleteSecurityContext(&lpwhr
->pProxyAuthInfo
->ctx
);
1419 if (SecIsValidHandle(&lpwhr
->pProxyAuthInfo
->cred
))
1420 FreeCredentialsHandle(&lpwhr
->pProxyAuthInfo
->cred
);
1422 HeapFree(GetProcessHeap(), 0, lpwhr
->pProxyAuthInfo
->auth_data
);
1423 HeapFree(GetProcessHeap(), 0, lpwhr
->pProxyAuthInfo
->scheme
);
1424 HeapFree(GetProcessHeap(), 0, lpwhr
->pProxyAuthInfo
);
1425 lpwhr
->pProxyAuthInfo
= NULL
;
1428 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1429 INTERNET_STATUS_CLOSING_CONNECTION
, 0, 0);
1431 NETCON_close(&lpwhr
->netConnection
);
1433 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1434 INTERNET_STATUS_CONNECTION_CLOSED
, 0, 0);
1437 static DWORD
HTTPREQ_QueryOption(WININETHANDLEHEADER
*hdr
, DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
1439 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1442 case INTERNET_OPTION_HANDLE_TYPE
:
1443 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
1445 if (*size
< sizeof(ULONG
))
1446 return ERROR_INSUFFICIENT_BUFFER
;
1448 *size
= sizeof(DWORD
);
1449 *(DWORD
*)buffer
= INTERNET_HANDLE_TYPE_HTTP_REQUEST
;
1450 return ERROR_SUCCESS
;
1452 case INTERNET_OPTION_URL
: {
1453 WCHAR url
[INTERNET_MAX_URL_LENGTH
];
1458 static const WCHAR httpW
[] = {'h','t','t','p',':','/','/',0};
1459 static const WCHAR hostW
[] = {'H','o','s','t',0};
1461 TRACE("INTERNET_OPTION_URL\n");
1463 host
= HTTP_GetHeader(req
, hostW
);
1464 strcpyW(url
, httpW
);
1465 strcatW(url
, host
->lpszValue
);
1466 if (NULL
!= (pch
= strchrW(url
+ strlenW(httpW
), ':')))
1468 strcatW(url
, req
->lpszPath
);
1470 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url
));
1473 len
= (strlenW(url
)+1) * sizeof(WCHAR
);
1475 return ERROR_INSUFFICIENT_BUFFER
;
1478 strcpyW(buffer
, url
);
1479 return ERROR_SUCCESS
;
1481 len
= WideCharToMultiByte(CP_ACP
, 0, url
, -1, buffer
, *size
, NULL
, NULL
);
1483 return ERROR_INSUFFICIENT_BUFFER
;
1486 return ERROR_SUCCESS
;
1490 case INTERNET_OPTION_DATAFILE_NAME
: {
1493 TRACE("INTERNET_OPTION_DATAFILE_NAME\n");
1495 if(!req
->lpszCacheFile
) {
1497 return ERROR_INTERNET_ITEM_NOT_FOUND
;
1501 req_size
= (lstrlenW(req
->lpszCacheFile
)+1) * sizeof(WCHAR
);
1502 if(*size
< req_size
)
1503 return ERROR_INSUFFICIENT_BUFFER
;
1506 memcpy(buffer
, req
->lpszCacheFile
, *size
);
1507 return ERROR_SUCCESS
;
1509 req_size
= WideCharToMultiByte(CP_ACP
, 0, req
->lpszCacheFile
, -1, NULL
, 0, NULL
, NULL
);
1510 if (req_size
> *size
)
1511 return ERROR_INSUFFICIENT_BUFFER
;
1513 *size
= WideCharToMultiByte(CP_ACP
, 0, req
->lpszCacheFile
,
1514 -1, buffer
, *size
, NULL
, NULL
);
1515 return ERROR_SUCCESS
;
1519 case INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT
: {
1520 PCCERT_CONTEXT context
;
1522 if(*size
< sizeof(INTERNET_CERTIFICATE_INFOW
)) {
1523 *size
= sizeof(INTERNET_CERTIFICATE_INFOW
);
1524 return ERROR_INSUFFICIENT_BUFFER
;
1527 context
= (PCCERT_CONTEXT
)NETCON_GetCert(&(req
->netConnection
));
1529 INTERNET_CERTIFICATE_INFOW
*info
= (INTERNET_CERTIFICATE_INFOW
*)buffer
;
1532 memset(info
, 0, sizeof(INTERNET_CERTIFICATE_INFOW
));
1533 info
->ftExpiry
= context
->pCertInfo
->NotAfter
;
1534 info
->ftStart
= context
->pCertInfo
->NotBefore
;
1536 len
= CertNameToStrW(context
->dwCertEncodingType
,
1537 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
, NULL
, 0);
1538 info
->lpszSubjectInfo
= LocalAlloc(0, len
*sizeof(WCHAR
));
1539 if(info
->lpszSubjectInfo
)
1540 CertNameToStrW(context
->dwCertEncodingType
,
1541 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
,
1542 info
->lpszSubjectInfo
, len
);
1543 len
= CertNameToStrW(context
->dwCertEncodingType
,
1544 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
, NULL
, 0);
1545 info
->lpszIssuerInfo
= LocalAlloc(0, len
*sizeof(WCHAR
));
1546 if (info
->lpszIssuerInfo
)
1547 CertNameToStrW(context
->dwCertEncodingType
,
1548 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
,
1549 info
->lpszIssuerInfo
, len
);
1551 INTERNET_CERTIFICATE_INFOA
*infoA
= (INTERNET_CERTIFICATE_INFOA
*)info
;
1553 len
= CertNameToStrA(context
->dwCertEncodingType
,
1554 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
, NULL
, 0);
1555 infoA
->lpszSubjectInfo
= LocalAlloc(0, len
);
1556 if(infoA
->lpszSubjectInfo
)
1557 CertNameToStrA(context
->dwCertEncodingType
,
1558 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
,
1559 infoA
->lpszSubjectInfo
, len
);
1560 len
= CertNameToStrA(context
->dwCertEncodingType
,
1561 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
, NULL
, 0);
1562 infoA
->lpszIssuerInfo
= LocalAlloc(0, len
);
1563 if(infoA
->lpszIssuerInfo
)
1564 CertNameToStrA(context
->dwCertEncodingType
,
1565 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
,
1566 infoA
->lpszIssuerInfo
, len
);
1570 * Contrary to MSDN, these do not appear to be set.
1572 * lpszSignatureAlgName
1573 * lpszEncryptionAlgName
1576 CertFreeCertificateContext(context
);
1577 return ERROR_SUCCESS
;
1582 return INET_QueryOption(option
, buffer
, size
, unicode
);
1585 static DWORD
HTTPREQ_SetOption(WININETHANDLEHEADER
*hdr
, DWORD option
, void *buffer
, DWORD size
)
1587 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1590 case INTERNET_OPTION_SEND_TIMEOUT
:
1591 case INTERNET_OPTION_RECEIVE_TIMEOUT
:
1592 TRACE("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT\n");
1594 if (size
!= sizeof(DWORD
))
1595 return ERROR_INVALID_PARAMETER
;
1597 return NETCON_set_timeout(&req
->netConnection
, option
== INTERNET_OPTION_SEND_TIMEOUT
,
1601 return ERROR_INTERNET_INVALID_OPTION
;
1604 static DWORD
HTTP_Read(WININETHTTPREQW
*req
, void *buffer
, DWORD size
, DWORD
*read
, BOOL sync
)
1608 if(!NETCON_recv(&req
->netConnection
, buffer
, min(size
, req
->dwContentLength
- req
->dwContentRead
),
1609 sync
? MSG_WAITALL
: 0, &bytes_read
)) {
1610 if(req
->dwContentLength
!= -1 && req
->dwContentRead
!= req
->dwContentLength
)
1611 ERR("not all data received %d/%d\n", req
->dwContentRead
, req
->dwContentLength
);
1613 /* always return success, even if the network layer returns an error */
1615 HTTP_FinishedReading(req
);
1616 return ERROR_SUCCESS
;
1619 req
->dwContentRead
+= bytes_read
;
1622 if(req
->lpszCacheFile
) {
1624 DWORD dwBytesWritten
;
1626 res
= WriteFile(req
->hCacheFile
, buffer
, bytes_read
, &dwBytesWritten
, NULL
);
1628 WARN("WriteFile failed: %u\n", GetLastError());
1631 if(!bytes_read
&& (req
->dwContentRead
== req
->dwContentLength
))
1632 HTTP_FinishedReading(req
);
1634 return ERROR_SUCCESS
;
1637 static DWORD
get_chunk_size(const char *buffer
)
1642 for (p
= buffer
; *p
; p
++)
1644 if (*p
>= '0' && *p
<= '9') size
= size
* 16 + *p
- '0';
1645 else if (*p
>= 'a' && *p
<= 'f') size
= size
* 16 + *p
- 'a' + 10;
1646 else if (*p
>= 'A' && *p
<= 'F') size
= size
* 16 + *p
- 'A' + 10;
1647 else if (*p
== ';') break;
1652 static DWORD
HTTP_ReadChunked(WININETHTTPREQW
*req
, void *buffer
, DWORD size
, DWORD
*read
, BOOL sync
)
1654 char reply
[MAX_REPLY_LEN
], *p
= buffer
;
1655 DWORD buflen
, to_read
, to_write
= size
;
1661 if (*read
== size
) break;
1663 if (req
->dwContentLength
== ~0UL) /* new chunk */
1665 buflen
= sizeof(reply
);
1666 if (!NETCON_getNextLine(&req
->netConnection
, reply
, &buflen
)) break;
1668 if (!(req
->dwContentLength
= get_chunk_size(reply
)))
1670 /* zero sized chunk marks end of transfer; read any trailing headers and return */
1671 HTTP_GetResponseHeaders(req
, FALSE
);
1675 to_read
= min(to_write
, req
->dwContentLength
- req
->dwContentRead
);
1677 if (!NETCON_recv(&req
->netConnection
, p
, to_read
, sync
? MSG_WAITALL
: 0, &bytes_read
))
1679 if (bytes_read
!= to_read
)
1680 ERR("Not all data received %d/%d\n", bytes_read
, to_read
);
1682 /* always return success, even if the network layer returns an error */
1686 if (!bytes_read
) break;
1688 req
->dwContentRead
+= bytes_read
;
1689 to_write
-= bytes_read
;
1690 *read
+= bytes_read
;
1692 if (req
->lpszCacheFile
)
1694 DWORD dwBytesWritten
;
1696 if (!WriteFile(req
->hCacheFile
, p
, bytes_read
, &dwBytesWritten
, NULL
))
1697 WARN("WriteFile failed: %u\n", GetLastError());
1701 if (req
->dwContentRead
== req
->dwContentLength
) /* chunk complete */
1703 req
->dwContentRead
= 0;
1704 req
->dwContentLength
= ~0UL;
1706 buflen
= sizeof(reply
);
1707 if (!NETCON_getNextLine(&req
->netConnection
, reply
, &buflen
))
1709 ERR("Malformed chunk\n");
1715 if (!*read
) HTTP_FinishedReading(req
);
1716 return ERROR_SUCCESS
;
1719 static DWORD
HTTPREQ_Read(WININETHTTPREQW
*req
, void *buffer
, DWORD size
, DWORD
*read
, BOOL sync
)
1722 DWORD buflen
= sizeof(encoding
);
1723 static const WCHAR szChunked
[] = {'c','h','u','n','k','e','d',0};
1725 if (HTTP_HttpQueryInfoW(req
, HTTP_QUERY_TRANSFER_ENCODING
, encoding
, &buflen
, NULL
) &&
1726 !strcmpiW(encoding
, szChunked
))
1728 return HTTP_ReadChunked(req
, buffer
, size
, read
, sync
);
1731 return HTTP_Read(req
, buffer
, size
, read
, sync
);
1734 static DWORD
HTTPREQ_ReadFile(WININETHANDLEHEADER
*hdr
, void *buffer
, DWORD size
, DWORD
*read
)
1736 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1737 return HTTPREQ_Read(req
, buffer
, size
, read
, TRUE
);
1740 static void HTTPREQ_AsyncReadFileExProc(WORKREQUEST
*workRequest
)
1742 struct WORKREQ_INTERNETREADFILEEXA
const *data
= &workRequest
->u
.InternetReadFileExA
;
1743 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)workRequest
->hdr
;
1744 INTERNET_ASYNC_RESULT iar
;
1747 TRACE("INTERNETREADFILEEXA %p\n", workRequest
->hdr
);
1749 res
= HTTPREQ_Read(req
, data
->lpBuffersOut
->lpvBuffer
,
1750 data
->lpBuffersOut
->dwBufferLength
, &data
->lpBuffersOut
->dwBufferLength
, TRUE
);
1752 iar
.dwResult
= res
== ERROR_SUCCESS
;
1755 INTERNET_SendCallback(&req
->hdr
, req
->hdr
.dwContext
,
1756 INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
1757 sizeof(INTERNET_ASYNC_RESULT
));
1760 static DWORD
HTTPREQ_ReadFileExA(WININETHANDLEHEADER
*hdr
, INTERNET_BUFFERSA
*buffers
,
1761 DWORD flags
, DWORD_PTR context
)
1764 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1767 if (flags
& ~(IRF_ASYNC
|IRF_NO_WAIT
))
1768 FIXME("these dwFlags aren't implemented: 0x%x\n", flags
& ~(IRF_ASYNC
|IRF_NO_WAIT
));
1770 if (buffers
->dwStructSize
!= sizeof(*buffers
))
1771 return ERROR_INVALID_PARAMETER
;
1773 INTERNET_SendCallback(&req
->hdr
, req
->hdr
.dwContext
, INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
1775 if (hdr
->dwFlags
& INTERNET_FLAG_ASYNC
) {
1776 DWORD available
= 0;
1778 NETCON_query_data_available(&req
->netConnection
, &available
);
1781 WORKREQUEST workRequest
;
1783 workRequest
.asyncproc
= HTTPREQ_AsyncReadFileExProc
;
1784 workRequest
.hdr
= WININET_AddRef(&req
->hdr
);
1785 workRequest
.u
.InternetReadFileExA
.lpBuffersOut
= buffers
;
1787 INTERNET_AsyncCall(&workRequest
);
1789 return ERROR_IO_PENDING
;
1793 res
= HTTPREQ_Read(req
, buffers
->lpvBuffer
, buffers
->dwBufferLength
, &buffers
->dwBufferLength
,
1794 !(flags
& IRF_NO_WAIT
));
1796 if (res
== ERROR_SUCCESS
) {
1797 DWORD size
= buffers
->dwBufferLength
;
1798 INTERNET_SendCallback(&req
->hdr
, req
->hdr
.dwContext
, INTERNET_STATUS_RESPONSE_RECEIVED
,
1799 &size
, sizeof(size
));
1805 static BOOL
HTTPREQ_WriteFile(WININETHANDLEHEADER
*hdr
, const void *buffer
, DWORD size
, DWORD
*written
)
1807 LPWININETHTTPREQW lpwhr
= (LPWININETHTTPREQW
)hdr
;
1809 return NETCON_send(&lpwhr
->netConnection
, buffer
, size
, 0, (LPINT
)written
);
1812 static void HTTPREQ_AsyncQueryDataAvailableProc(WORKREQUEST
*workRequest
)
1814 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)workRequest
->hdr
;
1815 INTERNET_ASYNC_RESULT iar
;
1818 TRACE("%p\n", workRequest
->hdr
);
1820 iar
.dwResult
= NETCON_recv(&req
->netConnection
, buffer
,
1821 min(sizeof(buffer
), req
->dwContentLength
- req
->dwContentRead
),
1822 MSG_PEEK
, (int *)&iar
.dwError
);
1824 INTERNET_SendCallback(&req
->hdr
, req
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
1825 sizeof(INTERNET_ASYNC_RESULT
));
1828 static DWORD
HTTPREQ_QueryDataAvailable(WININETHANDLEHEADER
*hdr
, DWORD
*available
, DWORD flags
, DWORD_PTR ctx
)
1830 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1834 TRACE("(%p %p %x %lx)\n", req
, available
, flags
, ctx
);
1836 if(!NETCON_query_data_available(&req
->netConnection
, available
) || *available
)
1837 return ERROR_SUCCESS
;
1839 /* Even if we are in async mode, we need to determine whether
1840 * there is actually more data available. We do this by trying
1841 * to peek only a single byte in async mode. */
1842 async
= (req
->lpHttpSession
->lpAppInfo
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
) != 0;
1844 if (NETCON_recv(&req
->netConnection
, buffer
,
1845 min(async
? 1 : sizeof(buffer
), req
->dwContentLength
- req
->dwContentRead
),
1846 MSG_PEEK
, (int *)available
) && async
&& *available
)
1848 WORKREQUEST workRequest
;
1851 workRequest
.asyncproc
= HTTPREQ_AsyncQueryDataAvailableProc
;
1852 workRequest
.hdr
= WININET_AddRef( &req
->hdr
);
1854 INTERNET_AsyncCall(&workRequest
);
1856 return ERROR_IO_PENDING
;
1859 return ERROR_SUCCESS
;
1862 static const HANDLEHEADERVtbl HTTPREQVtbl
= {
1864 HTTPREQ_CloseConnection
,
1865 HTTPREQ_QueryOption
,
1868 HTTPREQ_ReadFileExA
,
1870 HTTPREQ_QueryDataAvailable
,
1874 /***********************************************************************
1875 * HTTP_HttpOpenRequestW (internal)
1877 * Open a HTTP request handle
1880 * HINTERNET a HTTP request handle on success
1884 HINTERNET WINAPI
HTTP_HttpOpenRequestW(LPWININETHTTPSESSIONW lpwhs
,
1885 LPCWSTR lpszVerb
, LPCWSTR lpszObjectName
, LPCWSTR lpszVersion
,
1886 LPCWSTR lpszReferrer
, LPCWSTR
*lpszAcceptTypes
,
1887 DWORD dwFlags
, DWORD_PTR dwContext
)
1889 LPWININETAPPINFOW hIC
= NULL
;
1890 LPWININETHTTPREQW lpwhr
;
1891 LPWSTR lpszHostName
= NULL
;
1892 HINTERNET handle
= NULL
;
1893 static const WCHAR szHostForm
[] = {'%','s',':','%','u',0};
1898 assert( lpwhs
->hdr
.htype
== WH_HHTTPSESSION
);
1899 hIC
= lpwhs
->lpAppInfo
;
1901 lpwhr
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WININETHTTPREQW
));
1904 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1907 lpwhr
->hdr
.htype
= WH_HHTTPREQ
;
1908 lpwhr
->hdr
.vtbl
= &HTTPREQVtbl
;
1909 lpwhr
->hdr
.dwFlags
= dwFlags
;
1910 lpwhr
->hdr
.dwContext
= dwContext
;
1911 lpwhr
->hdr
.refs
= 1;
1912 lpwhr
->hdr
.lpfnStatusCB
= lpwhs
->hdr
.lpfnStatusCB
;
1913 lpwhr
->hdr
.dwInternalFlags
= lpwhs
->hdr
.dwInternalFlags
& INET_CALLBACKW
;
1915 WININET_AddRef( &lpwhs
->hdr
);
1916 lpwhr
->lpHttpSession
= lpwhs
;
1917 list_add_head( &lpwhs
->hdr
.children
, &lpwhr
->hdr
.entry
);
1919 lpszHostName
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
) *
1920 (strlenW(lpwhs
->lpszHostName
) + 7 /* length of ":65535" + 1 */));
1921 if (NULL
== lpszHostName
)
1923 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1927 handle
= WININET_AllocHandle( &lpwhr
->hdr
);
1930 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1934 if (!NETCON_init(&lpwhr
->netConnection
, dwFlags
& INTERNET_FLAG_SECURE
))
1936 InternetCloseHandle( handle
);
1941 if (lpszObjectName
&& *lpszObjectName
) {
1945 rc
= UrlEscapeW(lpszObjectName
, NULL
, &len
, URL_ESCAPE_SPACES_ONLY
);
1946 if (rc
!= E_POINTER
)
1947 len
= strlenW(lpszObjectName
)+1;
1948 lpwhr
->lpszPath
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
1949 rc
= UrlEscapeW(lpszObjectName
, lpwhr
->lpszPath
, &len
,
1950 URL_ESCAPE_SPACES_ONLY
);
1953 ERR("Unable to escape string!(%s) (%d)\n",debugstr_w(lpszObjectName
),rc
);
1954 strcpyW(lpwhr
->lpszPath
,lpszObjectName
);
1958 if (lpszReferrer
&& *lpszReferrer
)
1959 HTTP_ProcessHeader(lpwhr
, HTTP_REFERER
, lpszReferrer
, HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDHDR_FLAG_REQ
);
1961 if (lpszAcceptTypes
)
1964 for (i
= 0; lpszAcceptTypes
[i
]; i
++)
1966 if (!*lpszAcceptTypes
[i
]) continue;
1967 HTTP_ProcessHeader(lpwhr
, HTTP_ACCEPT
, lpszAcceptTypes
[i
],
1968 HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA
|
1969 HTTP_ADDHDR_FLAG_REQ
|
1970 (i
== 0 ? HTTP_ADDHDR_FLAG_REPLACE
: 0));
1974 lpwhr
->lpszVerb
= WININET_strdupW(lpszVerb
&& *lpszVerb
? lpszVerb
: szGET
);
1977 lpwhr
->lpszVersion
= WININET_strdupW(lpszVersion
);
1979 lpwhr
->lpszVersion
= WININET_strdupW(g_szHttp1_1
);
1981 if (lpwhs
->nHostPort
!= INTERNET_INVALID_PORT_NUMBER
&&
1982 lpwhs
->nHostPort
!= INTERNET_DEFAULT_HTTP_PORT
&&
1983 lpwhs
->nHostPort
!= INTERNET_DEFAULT_HTTPS_PORT
)
1985 sprintfW(lpszHostName
, szHostForm
, lpwhs
->lpszHostName
, lpwhs
->nHostPort
);
1986 HTTP_ProcessHeader(lpwhr
, szHost
, lpszHostName
,
1987 HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDHDR_FLAG_REQ
);
1990 HTTP_ProcessHeader(lpwhr
, szHost
, lpwhs
->lpszHostName
,
1991 HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDHDR_FLAG_REQ
);
1993 if (lpwhs
->nServerPort
== INTERNET_INVALID_PORT_NUMBER
)
1994 lpwhs
->nServerPort
= (dwFlags
& INTERNET_FLAG_SECURE
?
1995 INTERNET_DEFAULT_HTTPS_PORT
:
1996 INTERNET_DEFAULT_HTTP_PORT
);
1998 if (lpwhs
->nHostPort
== INTERNET_INVALID_PORT_NUMBER
)
1999 lpwhs
->nHostPort
= (dwFlags
& INTERNET_FLAG_SECURE
?
2000 INTERNET_DEFAULT_HTTPS_PORT
:
2001 INTERNET_DEFAULT_HTTP_PORT
);
2003 if (NULL
!= hIC
->lpszProxy
&& hIC
->lpszProxy
[0] != 0)
2004 HTTP_DealWithProxy( hIC
, lpwhs
, lpwhr
);
2006 INTERNET_SendCallback(&lpwhs
->hdr
, dwContext
,
2007 INTERNET_STATUS_HANDLE_CREATED
, &handle
,
2011 HeapFree(GetProcessHeap(), 0, lpszHostName
);
2013 WININET_Release( &lpwhr
->hdr
);
2015 TRACE("<-- %p (%p)\n", handle
, lpwhr
);
2019 /* read any content returned by the server so that the connection can be
2021 static void HTTP_DrainContent(WININETHTTPREQW
*req
)
2025 if (!NETCON_connected(&req
->netConnection
)) return;
2027 if (req
->dwContentLength
== -1)
2028 NETCON_close(&req
->netConnection
);
2033 if (HTTP_Read(req
, buffer
, sizeof(buffer
), &bytes_read
, TRUE
) != ERROR_SUCCESS
)
2035 } while (bytes_read
);
2038 static const WCHAR szAccept
[] = { 'A','c','c','e','p','t',0 };
2039 static const WCHAR szAccept_Charset
[] = { 'A','c','c','e','p','t','-','C','h','a','r','s','e','t', 0 };
2040 static const WCHAR szAccept_Encoding
[] = { 'A','c','c','e','p','t','-','E','n','c','o','d','i','n','g',0 };
2041 static const WCHAR szAccept_Language
[] = { 'A','c','c','e','p','t','-','L','a','n','g','u','a','g','e',0 };
2042 static const WCHAR szAccept_Ranges
[] = { 'A','c','c','e','p','t','-','R','a','n','g','e','s',0 };
2043 static const WCHAR szAge
[] = { 'A','g','e',0 };
2044 static const WCHAR szAllow
[] = { 'A','l','l','o','w',0 };
2045 static const WCHAR szCache_Control
[] = { 'C','a','c','h','e','-','C','o','n','t','r','o','l',0 };
2046 static const WCHAR szConnection
[] = { 'C','o','n','n','e','c','t','i','o','n',0 };
2047 static const WCHAR szContent_Base
[] = { 'C','o','n','t','e','n','t','-','B','a','s','e',0 };
2048 static const WCHAR szContent_Encoding
[] = { 'C','o','n','t','e','n','t','-','E','n','c','o','d','i','n','g',0 };
2049 static const WCHAR szContent_ID
[] = { 'C','o','n','t','e','n','t','-','I','D',0 };
2050 static const WCHAR szContent_Language
[] = { 'C','o','n','t','e','n','t','-','L','a','n','g','u','a','g','e',0 };
2051 static const WCHAR szContent_Length
[] = { 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',0 };
2052 static const WCHAR szContent_Location
[] = { 'C','o','n','t','e','n','t','-','L','o','c','a','t','i','o','n',0 };
2053 static const WCHAR szContent_MD5
[] = { 'C','o','n','t','e','n','t','-','M','D','5',0 };
2054 static const WCHAR szContent_Range
[] = { 'C','o','n','t','e','n','t','-','R','a','n','g','e',0 };
2055 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 };
2056 static const WCHAR szContent_Type
[] = { 'C','o','n','t','e','n','t','-','T','y','p','e',0 };
2057 static const WCHAR szCookie
[] = { 'C','o','o','k','i','e',0 };
2058 static const WCHAR szDate
[] = { 'D','a','t','e',0 };
2059 static const WCHAR szFrom
[] = { 'F','r','o','m',0 };
2060 static const WCHAR szETag
[] = { 'E','T','a','g',0 };
2061 static const WCHAR szExpect
[] = { 'E','x','p','e','c','t',0 };
2062 static const WCHAR szExpires
[] = { 'E','x','p','i','r','e','s',0 };
2063 static const WCHAR szIf_Match
[] = { 'I','f','-','M','a','t','c','h',0 };
2064 static const WCHAR szIf_Modified_Since
[] = { 'I','f','-','M','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
2065 static const WCHAR szIf_None_Match
[] = { 'I','f','-','N','o','n','e','-','M','a','t','c','h',0 };
2066 static const WCHAR szIf_Range
[] = { 'I','f','-','R','a','n','g','e',0 };
2067 static const WCHAR szIf_Unmodified_Since
[] = { 'I','f','-','U','n','m','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
2068 static const WCHAR szLast_Modified
[] = { 'L','a','s','t','-','M','o','d','i','f','i','e','d',0 };
2069 static const WCHAR szLocation
[] = { 'L','o','c','a','t','i','o','n',0 };
2070 static const WCHAR szMax_Forwards
[] = { 'M','a','x','-','F','o','r','w','a','r','d','s',0 };
2071 static const WCHAR szMime_Version
[] = { 'M','i','m','e','-','V','e','r','s','i','o','n',0 };
2072 static const WCHAR szPragma
[] = { 'P','r','a','g','m','a',0 };
2073 static const WCHAR szProxy_Authenticate
[] = { 'P','r','o','x','y','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
2074 static const WCHAR szProxy_Connection
[] = { 'P','r','o','x','y','-','C','o','n','n','e','c','t','i','o','n',0 };
2075 static const WCHAR szPublic
[] = { 'P','u','b','l','i','c',0 };
2076 static const WCHAR szRange
[] = { 'R','a','n','g','e',0 };
2077 static const WCHAR szReferer
[] = { 'R','e','f','e','r','e','r',0 };
2078 static const WCHAR szRetry_After
[] = { 'R','e','t','r','y','-','A','f','t','e','r',0 };
2079 static const WCHAR szServer
[] = { 'S','e','r','v','e','r',0 };
2080 static const WCHAR szSet_Cookie
[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
2081 static const WCHAR szTransfer_Encoding
[] = { 'T','r','a','n','s','f','e','r','-','E','n','c','o','d','i','n','g',0 };
2082 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 };
2083 static const WCHAR szUpgrade
[] = { 'U','p','g','r','a','d','e',0 };
2084 static const WCHAR szURI
[] = { 'U','R','I',0 };
2085 static const WCHAR szUser_Agent
[] = { 'U','s','e','r','-','A','g','e','n','t',0 };
2086 static const WCHAR szVary
[] = { 'V','a','r','y',0 };
2087 static const WCHAR szVia
[] = { 'V','i','a',0 };
2088 static const WCHAR szWarning
[] = { 'W','a','r','n','i','n','g',0 };
2089 static const WCHAR szWWW_Authenticate
[] = { 'W','W','W','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
2091 static const LPCWSTR header_lookup
[] = {
2092 szMime_Version
, /* HTTP_QUERY_MIME_VERSION = 0 */
2093 szContent_Type
, /* HTTP_QUERY_CONTENT_TYPE = 1 */
2094 szContent_Transfer_Encoding
,/* HTTP_QUERY_CONTENT_TRANSFER_ENCODING = 2 */
2095 szContent_ID
, /* HTTP_QUERY_CONTENT_ID = 3 */
2096 NULL
, /* HTTP_QUERY_CONTENT_DESCRIPTION = 4 */
2097 szContent_Length
, /* HTTP_QUERY_CONTENT_LENGTH = 5 */
2098 szContent_Language
, /* HTTP_QUERY_CONTENT_LANGUAGE = 6 */
2099 szAllow
, /* HTTP_QUERY_ALLOW = 7 */
2100 szPublic
, /* HTTP_QUERY_PUBLIC = 8 */
2101 szDate
, /* HTTP_QUERY_DATE = 9 */
2102 szExpires
, /* HTTP_QUERY_EXPIRES = 10 */
2103 szLast_Modified
, /* HTTP_QUERY_LAST_MODIFIED = 11 */
2104 NULL
, /* HTTP_QUERY_MESSAGE_ID = 12 */
2105 szURI
, /* HTTP_QUERY_URI = 13 */
2106 szFrom
, /* HTTP_QUERY_DERIVED_FROM = 14 */
2107 NULL
, /* HTTP_QUERY_COST = 15 */
2108 NULL
, /* HTTP_QUERY_LINK = 16 */
2109 szPragma
, /* HTTP_QUERY_PRAGMA = 17 */
2110 NULL
, /* HTTP_QUERY_VERSION = 18 */
2111 szStatus
, /* HTTP_QUERY_STATUS_CODE = 19 */
2112 NULL
, /* HTTP_QUERY_STATUS_TEXT = 20 */
2113 NULL
, /* HTTP_QUERY_RAW_HEADERS = 21 */
2114 NULL
, /* HTTP_QUERY_RAW_HEADERS_CRLF = 22 */
2115 szConnection
, /* HTTP_QUERY_CONNECTION = 23 */
2116 szAccept
, /* HTTP_QUERY_ACCEPT = 24 */
2117 szAccept_Charset
, /* HTTP_QUERY_ACCEPT_CHARSET = 25 */
2118 szAccept_Encoding
, /* HTTP_QUERY_ACCEPT_ENCODING = 26 */
2119 szAccept_Language
, /* HTTP_QUERY_ACCEPT_LANGUAGE = 27 */
2120 szAuthorization
, /* HTTP_QUERY_AUTHORIZATION = 28 */
2121 szContent_Encoding
, /* HTTP_QUERY_CONTENT_ENCODING = 29 */
2122 NULL
, /* HTTP_QUERY_FORWARDED = 30 */
2123 NULL
, /* HTTP_QUERY_FROM = 31 */
2124 szIf_Modified_Since
, /* HTTP_QUERY_IF_MODIFIED_SINCE = 32 */
2125 szLocation
, /* HTTP_QUERY_LOCATION = 33 */
2126 NULL
, /* HTTP_QUERY_ORIG_URI = 34 */
2127 szReferer
, /* HTTP_QUERY_REFERER = 35 */
2128 szRetry_After
, /* HTTP_QUERY_RETRY_AFTER = 36 */
2129 szServer
, /* HTTP_QUERY_SERVER = 37 */
2130 NULL
, /* HTTP_TITLE = 38 */
2131 szUser_Agent
, /* HTTP_QUERY_USER_AGENT = 39 */
2132 szWWW_Authenticate
, /* HTTP_QUERY_WWW_AUTHENTICATE = 40 */
2133 szProxy_Authenticate
, /* HTTP_QUERY_PROXY_AUTHENTICATE = 41 */
2134 szAccept_Ranges
, /* HTTP_QUERY_ACCEPT_RANGES = 42 */
2135 szSet_Cookie
, /* HTTP_QUERY_SET_COOKIE = 43 */
2136 szCookie
, /* HTTP_QUERY_COOKIE = 44 */
2137 NULL
, /* HTTP_QUERY_REQUEST_METHOD = 45 */
2138 NULL
, /* HTTP_QUERY_REFRESH = 46 */
2139 NULL
, /* HTTP_QUERY_CONTENT_DISPOSITION = 47 */
2140 szAge
, /* HTTP_QUERY_AGE = 48 */
2141 szCache_Control
, /* HTTP_QUERY_CACHE_CONTROL = 49 */
2142 szContent_Base
, /* HTTP_QUERY_CONTENT_BASE = 50 */
2143 szContent_Location
, /* HTTP_QUERY_CONTENT_LOCATION = 51 */
2144 szContent_MD5
, /* HTTP_QUERY_CONTENT_MD5 = 52 */
2145 szContent_Range
, /* HTTP_QUERY_CONTENT_RANGE = 53 */
2146 szETag
, /* HTTP_QUERY_ETAG = 54 */
2147 szHost
, /* HTTP_QUERY_HOST = 55 */
2148 szIf_Match
, /* HTTP_QUERY_IF_MATCH = 56 */
2149 szIf_None_Match
, /* HTTP_QUERY_IF_NONE_MATCH = 57 */
2150 szIf_Range
, /* HTTP_QUERY_IF_RANGE = 58 */
2151 szIf_Unmodified_Since
, /* HTTP_QUERY_IF_UNMODIFIED_SINCE = 59 */
2152 szMax_Forwards
, /* HTTP_QUERY_MAX_FORWARDS = 60 */
2153 szProxy_Authorization
, /* HTTP_QUERY_PROXY_AUTHORIZATION = 61 */
2154 szRange
, /* HTTP_QUERY_RANGE = 62 */
2155 szTransfer_Encoding
, /* HTTP_QUERY_TRANSFER_ENCODING = 63 */
2156 szUpgrade
, /* HTTP_QUERY_UPGRADE = 64 */
2157 szVary
, /* HTTP_QUERY_VARY = 65 */
2158 szVia
, /* HTTP_QUERY_VIA = 66 */
2159 szWarning
, /* HTTP_QUERY_WARNING = 67 */
2160 szExpect
, /* HTTP_QUERY_EXPECT = 68 */
2161 szProxy_Connection
, /* HTTP_QUERY_PROXY_CONNECTION = 69 */
2162 szUnless_Modified_Since
, /* HTTP_QUERY_UNLESS_MODIFIED_SINCE = 70 */
2165 #define LAST_TABLE_HEADER (sizeof(header_lookup)/sizeof(header_lookup[0]))
2167 /***********************************************************************
2168 * HTTP_HttpQueryInfoW (internal)
2170 static BOOL WINAPI
HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr
, DWORD dwInfoLevel
,
2171 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
2173 LPHTTPHEADERW lphttpHdr
= NULL
;
2174 BOOL bSuccess
= FALSE
;
2175 BOOL request_only
= dwInfoLevel
& HTTP_QUERY_FLAG_REQUEST_HEADERS
;
2176 INT requested_index
= lpdwIndex
? *lpdwIndex
: 0;
2177 INT level
= (dwInfoLevel
& ~HTTP_QUERY_MODIFIER_FLAGS_MASK
);
2180 /* Find requested header structure */
2183 case HTTP_QUERY_CUSTOM
:
2184 index
= HTTP_GetCustomHeaderIndex(lpwhr
, lpBuffer
, requested_index
, request_only
);
2187 case HTTP_QUERY_RAW_HEADERS_CRLF
:
2194 headers
= HTTP_BuildHeaderRequestString(lpwhr
, lpwhr
->lpszVerb
, lpwhr
->lpszPath
, lpwhr
->lpszVersion
);
2196 headers
= lpwhr
->lpszRawHeaders
;
2199 len
= strlenW(headers
) * sizeof(WCHAR
);
2201 if (len
+ sizeof(WCHAR
) > *lpdwBufferLength
)
2203 len
+= sizeof(WCHAR
);
2204 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2210 memcpy(lpBuffer
, headers
, len
+ sizeof(WCHAR
));
2213 len
= strlenW(szCrLf
) * sizeof(WCHAR
);
2214 memcpy(lpBuffer
, szCrLf
, sizeof(szCrLf
));
2216 TRACE("returning data: %s\n", debugstr_wn(lpBuffer
, len
/ sizeof(WCHAR
)));
2219 *lpdwBufferLength
= len
;
2222 HeapFree(GetProcessHeap(), 0, headers
);
2225 case HTTP_QUERY_RAW_HEADERS
:
2227 LPWSTR
* ppszRawHeaderLines
= HTTP_Tokenize(lpwhr
->lpszRawHeaders
, szCrLf
);
2229 LPWSTR pszString
= (WCHAR
*)lpBuffer
;
2231 for (i
= 0; ppszRawHeaderLines
[i
]; i
++)
2232 size
+= strlenW(ppszRawHeaderLines
[i
]) + 1;
2234 if (size
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
2236 HTTP_FreeTokens(ppszRawHeaderLines
);
2237 *lpdwBufferLength
= (size
+ 1) * sizeof(WCHAR
);
2238 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2242 for (i
= 0; ppszRawHeaderLines
[i
]; i
++)
2244 DWORD len
= strlenW(ppszRawHeaderLines
[i
]);
2245 memcpy(pszString
, ppszRawHeaderLines
[i
], (len
+1)*sizeof(WCHAR
));
2250 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, size
));
2252 *lpdwBufferLength
= size
* sizeof(WCHAR
);
2253 HTTP_FreeTokens(ppszRawHeaderLines
);
2257 case HTTP_QUERY_STATUS_TEXT
:
2258 if (lpwhr
->lpszStatusText
)
2260 DWORD len
= strlenW(lpwhr
->lpszStatusText
);
2261 if (len
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
2263 *lpdwBufferLength
= (len
+ 1) * sizeof(WCHAR
);
2264 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2267 memcpy(lpBuffer
, lpwhr
->lpszStatusText
, (len
+1)*sizeof(WCHAR
));
2268 *lpdwBufferLength
= len
* sizeof(WCHAR
);
2270 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, len
));
2275 case HTTP_QUERY_VERSION
:
2276 if (lpwhr
->lpszVersion
)
2278 DWORD len
= strlenW(lpwhr
->lpszVersion
);
2279 if (len
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
2281 *lpdwBufferLength
= (len
+ 1) * sizeof(WCHAR
);
2282 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2285 memcpy(lpBuffer
, lpwhr
->lpszVersion
, (len
+1)*sizeof(WCHAR
));
2286 *lpdwBufferLength
= len
* sizeof(WCHAR
);
2288 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, len
));
2294 assert (LAST_TABLE_HEADER
== (HTTP_QUERY_UNLESS_MODIFIED_SINCE
+ 1));
2296 if (level
>= 0 && level
< LAST_TABLE_HEADER
&& header_lookup
[level
])
2297 index
= HTTP_GetCustomHeaderIndex(lpwhr
, header_lookup
[level
],
2298 requested_index
,request_only
);
2302 lphttpHdr
= &lpwhr
->pCustHeaders
[index
];
2304 /* Ensure header satisfies requested attributes */
2306 ((dwInfoLevel
& HTTP_QUERY_FLAG_REQUEST_HEADERS
) &&
2307 (~lphttpHdr
->wFlags
& HDR_ISREQUEST
)))
2309 INTERNET_SetLastError(ERROR_HTTP_HEADER_NOT_FOUND
);
2316 /* coalesce value to requested type */
2317 if (dwInfoLevel
& HTTP_QUERY_FLAG_NUMBER
)
2319 *(int *)lpBuffer
= atoiW(lphttpHdr
->lpszValue
);
2322 TRACE(" returning number : %d\n", *(int *)lpBuffer
);
2324 else if (dwInfoLevel
& HTTP_QUERY_FLAG_SYSTEMTIME
)
2330 tmpTime
= ConvertTimeString(lphttpHdr
->lpszValue
);
2332 tmpTM
= *gmtime(&tmpTime
);
2333 STHook
= (SYSTEMTIME
*) lpBuffer
;
2337 STHook
->wDay
= tmpTM
.tm_mday
;
2338 STHook
->wHour
= tmpTM
.tm_hour
;
2339 STHook
->wMilliseconds
= 0;
2340 STHook
->wMinute
= tmpTM
.tm_min
;
2341 STHook
->wDayOfWeek
= tmpTM
.tm_wday
;
2342 STHook
->wMonth
= tmpTM
.tm_mon
+ 1;
2343 STHook
->wSecond
= tmpTM
.tm_sec
;
2344 STHook
->wYear
= tmpTM
.tm_year
;
2348 TRACE(" returning time : %04d/%02d/%02d - %d - %02d:%02d:%02d.%02d\n",
2349 STHook
->wYear
, STHook
->wMonth
, STHook
->wDay
, STHook
->wDayOfWeek
,
2350 STHook
->wHour
, STHook
->wMinute
, STHook
->wSecond
, STHook
->wMilliseconds
);
2352 else if (lphttpHdr
->lpszValue
)
2354 DWORD len
= (strlenW(lphttpHdr
->lpszValue
) + 1) * sizeof(WCHAR
);
2356 if (len
> *lpdwBufferLength
)
2358 *lpdwBufferLength
= len
;
2359 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2363 memcpy(lpBuffer
, lphttpHdr
->lpszValue
, len
);
2364 *lpdwBufferLength
= len
- sizeof(WCHAR
);
2367 TRACE(" returning string : %s\n", debugstr_w(lpBuffer
));
2372 /***********************************************************************
2373 * HttpQueryInfoW (WININET.@)
2375 * Queries for information about an HTTP request
2382 BOOL WINAPI
HttpQueryInfoW(HINTERNET hHttpRequest
, DWORD dwInfoLevel
,
2383 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
2385 BOOL bSuccess
= FALSE
;
2386 LPWININETHTTPREQW lpwhr
;
2388 if (TRACE_ON(wininet
)) {
2389 #define FE(x) { x, #x }
2390 static const wininet_flag_info query_flags
[] = {
2391 FE(HTTP_QUERY_MIME_VERSION
),
2392 FE(HTTP_QUERY_CONTENT_TYPE
),
2393 FE(HTTP_QUERY_CONTENT_TRANSFER_ENCODING
),
2394 FE(HTTP_QUERY_CONTENT_ID
),
2395 FE(HTTP_QUERY_CONTENT_DESCRIPTION
),
2396 FE(HTTP_QUERY_CONTENT_LENGTH
),
2397 FE(HTTP_QUERY_CONTENT_LANGUAGE
),
2398 FE(HTTP_QUERY_ALLOW
),
2399 FE(HTTP_QUERY_PUBLIC
),
2400 FE(HTTP_QUERY_DATE
),
2401 FE(HTTP_QUERY_EXPIRES
),
2402 FE(HTTP_QUERY_LAST_MODIFIED
),
2403 FE(HTTP_QUERY_MESSAGE_ID
),
2405 FE(HTTP_QUERY_DERIVED_FROM
),
2406 FE(HTTP_QUERY_COST
),
2407 FE(HTTP_QUERY_LINK
),
2408 FE(HTTP_QUERY_PRAGMA
),
2409 FE(HTTP_QUERY_VERSION
),
2410 FE(HTTP_QUERY_STATUS_CODE
),
2411 FE(HTTP_QUERY_STATUS_TEXT
),
2412 FE(HTTP_QUERY_RAW_HEADERS
),
2413 FE(HTTP_QUERY_RAW_HEADERS_CRLF
),
2414 FE(HTTP_QUERY_CONNECTION
),
2415 FE(HTTP_QUERY_ACCEPT
),
2416 FE(HTTP_QUERY_ACCEPT_CHARSET
),
2417 FE(HTTP_QUERY_ACCEPT_ENCODING
),
2418 FE(HTTP_QUERY_ACCEPT_LANGUAGE
),
2419 FE(HTTP_QUERY_AUTHORIZATION
),
2420 FE(HTTP_QUERY_CONTENT_ENCODING
),
2421 FE(HTTP_QUERY_FORWARDED
),
2422 FE(HTTP_QUERY_FROM
),
2423 FE(HTTP_QUERY_IF_MODIFIED_SINCE
),
2424 FE(HTTP_QUERY_LOCATION
),
2425 FE(HTTP_QUERY_ORIG_URI
),
2426 FE(HTTP_QUERY_REFERER
),
2427 FE(HTTP_QUERY_RETRY_AFTER
),
2428 FE(HTTP_QUERY_SERVER
),
2429 FE(HTTP_QUERY_TITLE
),
2430 FE(HTTP_QUERY_USER_AGENT
),
2431 FE(HTTP_QUERY_WWW_AUTHENTICATE
),
2432 FE(HTTP_QUERY_PROXY_AUTHENTICATE
),
2433 FE(HTTP_QUERY_ACCEPT_RANGES
),
2434 FE(HTTP_QUERY_SET_COOKIE
),
2435 FE(HTTP_QUERY_COOKIE
),
2436 FE(HTTP_QUERY_REQUEST_METHOD
),
2437 FE(HTTP_QUERY_REFRESH
),
2438 FE(HTTP_QUERY_CONTENT_DISPOSITION
),
2440 FE(HTTP_QUERY_CACHE_CONTROL
),
2441 FE(HTTP_QUERY_CONTENT_BASE
),
2442 FE(HTTP_QUERY_CONTENT_LOCATION
),
2443 FE(HTTP_QUERY_CONTENT_MD5
),
2444 FE(HTTP_QUERY_CONTENT_RANGE
),
2445 FE(HTTP_QUERY_ETAG
),
2446 FE(HTTP_QUERY_HOST
),
2447 FE(HTTP_QUERY_IF_MATCH
),
2448 FE(HTTP_QUERY_IF_NONE_MATCH
),
2449 FE(HTTP_QUERY_IF_RANGE
),
2450 FE(HTTP_QUERY_IF_UNMODIFIED_SINCE
),
2451 FE(HTTP_QUERY_MAX_FORWARDS
),
2452 FE(HTTP_QUERY_PROXY_AUTHORIZATION
),
2453 FE(HTTP_QUERY_RANGE
),
2454 FE(HTTP_QUERY_TRANSFER_ENCODING
),
2455 FE(HTTP_QUERY_UPGRADE
),
2456 FE(HTTP_QUERY_VARY
),
2458 FE(HTTP_QUERY_WARNING
),
2459 FE(HTTP_QUERY_CUSTOM
)
2461 static const wininet_flag_info modifier_flags
[] = {
2462 FE(HTTP_QUERY_FLAG_REQUEST_HEADERS
),
2463 FE(HTTP_QUERY_FLAG_SYSTEMTIME
),
2464 FE(HTTP_QUERY_FLAG_NUMBER
),
2465 FE(HTTP_QUERY_FLAG_COALESCE
)
2468 DWORD info_mod
= dwInfoLevel
& HTTP_QUERY_MODIFIER_FLAGS_MASK
;
2469 DWORD info
= dwInfoLevel
& HTTP_QUERY_HEADER_MASK
;
2472 TRACE("(%p, 0x%08x)--> %d\n", hHttpRequest
, dwInfoLevel
, dwInfoLevel
);
2473 TRACE(" Attribute:");
2474 for (i
= 0; i
< (sizeof(query_flags
) / sizeof(query_flags
[0])); i
++) {
2475 if (query_flags
[i
].val
== info
) {
2476 TRACE(" %s", query_flags
[i
].name
);
2480 if (i
== (sizeof(query_flags
) / sizeof(query_flags
[0]))) {
2481 TRACE(" Unknown (%08x)", info
);
2484 TRACE(" Modifier:");
2485 for (i
= 0; i
< (sizeof(modifier_flags
) / sizeof(modifier_flags
[0])); i
++) {
2486 if (modifier_flags
[i
].val
& info_mod
) {
2487 TRACE(" %s", modifier_flags
[i
].name
);
2488 info_mod
&= ~ modifier_flags
[i
].val
;
2493 TRACE(" Unknown (%08x)", info_mod
);
2498 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
2499 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
2501 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2505 if (lpBuffer
== NULL
)
2506 *lpdwBufferLength
= 0;
2507 bSuccess
= HTTP_HttpQueryInfoW( lpwhr
, dwInfoLevel
,
2508 lpBuffer
, lpdwBufferLength
, lpdwIndex
);
2512 WININET_Release( &lpwhr
->hdr
);
2514 TRACE("%d <--\n", bSuccess
);
2518 /***********************************************************************
2519 * HttpQueryInfoA (WININET.@)
2521 * Queries for information about an HTTP request
2528 BOOL WINAPI
HttpQueryInfoA(HINTERNET hHttpRequest
, DWORD dwInfoLevel
,
2529 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
2535 if((dwInfoLevel
& HTTP_QUERY_FLAG_NUMBER
) ||
2536 (dwInfoLevel
& HTTP_QUERY_FLAG_SYSTEMTIME
))
2538 return HttpQueryInfoW( hHttpRequest
, dwInfoLevel
, lpBuffer
,
2539 lpdwBufferLength
, lpdwIndex
);
2545 len
= (*lpdwBufferLength
)*sizeof(WCHAR
);
2546 if ((dwInfoLevel
& HTTP_QUERY_HEADER_MASK
) == HTTP_QUERY_CUSTOM
)
2548 alloclen
= MultiByteToWideChar( CP_ACP
, 0, lpBuffer
, -1, NULL
, 0 ) * sizeof(WCHAR
);
2554 bufferW
= HeapAlloc( GetProcessHeap(), 0, alloclen
);
2555 /* buffer is in/out because of HTTP_QUERY_CUSTOM */
2556 if ((dwInfoLevel
& HTTP_QUERY_HEADER_MASK
) == HTTP_QUERY_CUSTOM
)
2557 MultiByteToWideChar( CP_ACP
, 0, lpBuffer
, -1, bufferW
, alloclen
/ sizeof(WCHAR
) );
2564 result
= HttpQueryInfoW( hHttpRequest
, dwInfoLevel
, bufferW
,
2568 len
= WideCharToMultiByte( CP_ACP
,0, bufferW
, len
/ sizeof(WCHAR
) + 1,
2569 lpBuffer
, *lpdwBufferLength
, NULL
, NULL
);
2570 *lpdwBufferLength
= len
- 1;
2572 TRACE("lpBuffer: %s\n", debugstr_a(lpBuffer
));
2575 /* since the strings being returned from HttpQueryInfoW should be
2576 * only ASCII characters, it is reasonable to assume that all of
2577 * the Unicode characters can be reduced to a single byte */
2578 *lpdwBufferLength
= len
/ sizeof(WCHAR
);
2580 HeapFree(GetProcessHeap(), 0, bufferW
);
2585 /***********************************************************************
2586 * HttpSendRequestExA (WININET.@)
2588 * Sends the specified request to the HTTP server and allows chunked
2593 * Failure: FALSE, call GetLastError() for more information.
2595 BOOL WINAPI
HttpSendRequestExA(HINTERNET hRequest
,
2596 LPINTERNET_BUFFERSA lpBuffersIn
,
2597 LPINTERNET_BUFFERSA lpBuffersOut
,
2598 DWORD dwFlags
, DWORD_PTR dwContext
)
2600 INTERNET_BUFFERSW BuffersInW
;
2603 LPWSTR header
= NULL
;
2605 TRACE("(%p, %p, %p, %08x, %08lx)\n", hRequest
, lpBuffersIn
,
2606 lpBuffersOut
, dwFlags
, dwContext
);
2610 BuffersInW
.dwStructSize
= sizeof(LPINTERNET_BUFFERSW
);
2611 if (lpBuffersIn
->lpcszHeader
)
2613 headerlen
= MultiByteToWideChar(CP_ACP
,0,lpBuffersIn
->lpcszHeader
,
2614 lpBuffersIn
->dwHeadersLength
,0,0);
2615 header
= HeapAlloc(GetProcessHeap(),0,headerlen
*sizeof(WCHAR
));
2616 if (!(BuffersInW
.lpcszHeader
= header
))
2618 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2621 BuffersInW
.dwHeadersLength
= MultiByteToWideChar(CP_ACP
, 0,
2622 lpBuffersIn
->lpcszHeader
, lpBuffersIn
->dwHeadersLength
,
2626 BuffersInW
.lpcszHeader
= NULL
;
2627 BuffersInW
.dwHeadersTotal
= lpBuffersIn
->dwHeadersTotal
;
2628 BuffersInW
.lpvBuffer
= lpBuffersIn
->lpvBuffer
;
2629 BuffersInW
.dwBufferLength
= lpBuffersIn
->dwBufferLength
;
2630 BuffersInW
.dwBufferTotal
= lpBuffersIn
->dwBufferTotal
;
2631 BuffersInW
.Next
= NULL
;
2634 rc
= HttpSendRequestExW(hRequest
, lpBuffersIn
? &BuffersInW
: NULL
, NULL
, dwFlags
, dwContext
);
2636 HeapFree(GetProcessHeap(),0,header
);
2641 /***********************************************************************
2642 * HttpSendRequestExW (WININET.@)
2644 * Sends the specified request to the HTTP server and allows chunked
2649 * Failure: FALSE, call GetLastError() for more information.
2651 BOOL WINAPI
HttpSendRequestExW(HINTERNET hRequest
,
2652 LPINTERNET_BUFFERSW lpBuffersIn
,
2653 LPINTERNET_BUFFERSW lpBuffersOut
,
2654 DWORD dwFlags
, DWORD_PTR dwContext
)
2657 LPWININETHTTPREQW lpwhr
;
2658 LPWININETHTTPSESSIONW lpwhs
;
2659 LPWININETAPPINFOW hIC
;
2661 TRACE("(%p, %p, %p, %08x, %08lx)\n", hRequest
, lpBuffersIn
,
2662 lpBuffersOut
, dwFlags
, dwContext
);
2664 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hRequest
);
2666 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
2668 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2672 lpwhs
= lpwhr
->lpHttpSession
;
2673 assert(lpwhs
->hdr
.htype
== WH_HHTTPSESSION
);
2674 hIC
= lpwhs
->lpAppInfo
;
2675 assert(hIC
->hdr
.htype
== WH_HINIT
);
2677 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
2679 WORKREQUEST workRequest
;
2680 struct WORKREQ_HTTPSENDREQUESTW
*req
;
2682 workRequest
.asyncproc
= AsyncHttpSendRequestProc
;
2683 workRequest
.hdr
= WININET_AddRef( &lpwhr
->hdr
);
2684 req
= &workRequest
.u
.HttpSendRequestW
;
2687 if (lpBuffersIn
->lpcszHeader
)
2688 /* FIXME: this should use dwHeadersLength or may not be necessary at all */
2689 req
->lpszHeader
= WININET_strdupW(lpBuffersIn
->lpcszHeader
);
2691 req
->lpszHeader
= NULL
;
2692 req
->dwHeaderLength
= lpBuffersIn
->dwHeadersLength
;
2693 req
->lpOptional
= lpBuffersIn
->lpvBuffer
;
2694 req
->dwOptionalLength
= lpBuffersIn
->dwBufferLength
;
2695 req
->dwContentLength
= lpBuffersIn
->dwBufferTotal
;
2699 req
->lpszHeader
= NULL
;
2700 req
->dwHeaderLength
= 0;
2701 req
->lpOptional
= NULL
;
2702 req
->dwOptionalLength
= 0;
2703 req
->dwContentLength
= 0;
2706 req
->bEndRequest
= FALSE
;
2708 INTERNET_AsyncCall(&workRequest
);
2710 * This is from windows.
2712 INTERNET_SetLastError(ERROR_IO_PENDING
);
2717 ret
= HTTP_HttpSendRequestW(lpwhr
, lpBuffersIn
->lpcszHeader
, lpBuffersIn
->dwHeadersLength
,
2718 lpBuffersIn
->lpvBuffer
, lpBuffersIn
->dwBufferLength
,
2719 lpBuffersIn
->dwBufferTotal
, FALSE
);
2721 ret
= HTTP_HttpSendRequestW(lpwhr
, NULL
, 0, NULL
, 0, 0, FALSE
);
2726 WININET_Release( &lpwhr
->hdr
);
2732 /***********************************************************************
2733 * HttpSendRequestW (WININET.@)
2735 * Sends the specified request to the HTTP server
2742 BOOL WINAPI
HttpSendRequestW(HINTERNET hHttpRequest
, LPCWSTR lpszHeaders
,
2743 DWORD dwHeaderLength
, LPVOID lpOptional
,DWORD dwOptionalLength
)
2745 LPWININETHTTPREQW lpwhr
;
2746 LPWININETHTTPSESSIONW lpwhs
= NULL
;
2747 LPWININETAPPINFOW hIC
= NULL
;
2750 TRACE("%p, %s, %i, %p, %i)\n", hHttpRequest
,
2751 debugstr_wn(lpszHeaders
, dwHeaderLength
), dwHeaderLength
, lpOptional
, dwOptionalLength
);
2753 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
2754 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
2756 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2761 lpwhs
= lpwhr
->lpHttpSession
;
2762 if (NULL
== lpwhs
|| lpwhs
->hdr
.htype
!= WH_HHTTPSESSION
)
2764 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2769 hIC
= lpwhs
->lpAppInfo
;
2770 if (NULL
== hIC
|| hIC
->hdr
.htype
!= WH_HINIT
)
2772 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2777 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
2779 WORKREQUEST workRequest
;
2780 struct WORKREQ_HTTPSENDREQUESTW
*req
;
2782 workRequest
.asyncproc
= AsyncHttpSendRequestProc
;
2783 workRequest
.hdr
= WININET_AddRef( &lpwhr
->hdr
);
2784 req
= &workRequest
.u
.HttpSendRequestW
;
2787 req
->lpszHeader
= HeapAlloc(GetProcessHeap(), 0, dwHeaderLength
* sizeof(WCHAR
));
2788 memcpy(req
->lpszHeader
, lpszHeaders
, dwHeaderLength
* sizeof(WCHAR
));
2791 req
->lpszHeader
= 0;
2792 req
->dwHeaderLength
= dwHeaderLength
;
2793 req
->lpOptional
= lpOptional
;
2794 req
->dwOptionalLength
= dwOptionalLength
;
2795 req
->dwContentLength
= dwOptionalLength
;
2796 req
->bEndRequest
= TRUE
;
2798 INTERNET_AsyncCall(&workRequest
);
2800 * This is from windows.
2802 INTERNET_SetLastError(ERROR_IO_PENDING
);
2807 r
= HTTP_HttpSendRequestW(lpwhr
, lpszHeaders
,
2808 dwHeaderLength
, lpOptional
, dwOptionalLength
,
2809 dwOptionalLength
, TRUE
);
2813 WININET_Release( &lpwhr
->hdr
);
2817 /***********************************************************************
2818 * HttpSendRequestA (WININET.@)
2820 * Sends the specified request to the HTTP server
2827 BOOL WINAPI
HttpSendRequestA(HINTERNET hHttpRequest
, LPCSTR lpszHeaders
,
2828 DWORD dwHeaderLength
, LPVOID lpOptional
,DWORD dwOptionalLength
)
2831 LPWSTR szHeaders
=NULL
;
2832 DWORD nLen
=dwHeaderLength
;
2833 if(lpszHeaders
!=NULL
)
2835 nLen
=MultiByteToWideChar(CP_ACP
,0,lpszHeaders
,dwHeaderLength
,NULL
,0);
2836 szHeaders
=HeapAlloc(GetProcessHeap(),0,nLen
*sizeof(WCHAR
));
2837 MultiByteToWideChar(CP_ACP
,0,lpszHeaders
,dwHeaderLength
,szHeaders
,nLen
);
2839 result
=HttpSendRequestW(hHttpRequest
, szHeaders
, nLen
, lpOptional
, dwOptionalLength
);
2840 HeapFree(GetProcessHeap(),0,szHeaders
);
2844 static BOOL
HTTP_GetRequestURL(WININETHTTPREQW
*req
, LPWSTR buf
)
2846 LPHTTPHEADERW host_header
;
2848 static const WCHAR formatW
[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
2850 host_header
= HTTP_GetHeader(req
, szHost
);
2854 sprintfW(buf
, formatW
, host_header
->lpszValue
, req
->lpszPath
); /* FIXME */
2858 /***********************************************************************
2859 * HTTP_HandleRedirect (internal)
2861 static BOOL
HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszUrl
)
2863 static const WCHAR szContentType
[] = {'C','o','n','t','e','n','t','-','T','y','p','e',0};
2864 static const WCHAR szContentLength
[] = {'C','o','n','t','e','n','t','-','L','e','n','g','t','h',0};
2865 LPWININETHTTPSESSIONW lpwhs
= lpwhr
->lpHttpSession
;
2866 LPWININETAPPINFOW hIC
= lpwhs
->lpAppInfo
;
2867 BOOL using_proxy
= hIC
->lpszProxy
&& hIC
->lpszProxy
[0];
2868 WCHAR path
[INTERNET_MAX_URL_LENGTH
];
2873 /* if it's an absolute path, keep the same session info */
2874 lstrcpynW(path
, lpszUrl
, INTERNET_MAX_URL_LENGTH
);
2878 URL_COMPONENTSW urlComponents
;
2879 WCHAR protocol
[32], hostName
[MAXHOSTNAME
], userName
[1024];
2880 static WCHAR szHttp
[] = {'h','t','t','p',0};
2881 static WCHAR szHttps
[] = {'h','t','t','p','s',0};
2882 DWORD url_length
= 0;
2884 LPWSTR combined_url
;
2886 urlComponents
.dwStructSize
= sizeof(URL_COMPONENTSW
);
2887 urlComponents
.lpszScheme
= (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
) ? szHttps
: szHttp
;
2888 urlComponents
.dwSchemeLength
= 0;
2889 urlComponents
.lpszHostName
= lpwhs
->lpszHostName
;
2890 urlComponents
.dwHostNameLength
= 0;
2891 urlComponents
.nPort
= lpwhs
->nHostPort
;
2892 urlComponents
.lpszUserName
= lpwhs
->lpszUserName
;
2893 urlComponents
.dwUserNameLength
= 0;
2894 urlComponents
.lpszPassword
= NULL
;
2895 urlComponents
.dwPasswordLength
= 0;
2896 urlComponents
.lpszUrlPath
= lpwhr
->lpszPath
;
2897 urlComponents
.dwUrlPathLength
= 0;
2898 urlComponents
.lpszExtraInfo
= NULL
;
2899 urlComponents
.dwExtraInfoLength
= 0;
2901 if (!InternetCreateUrlW(&urlComponents
, 0, NULL
, &url_length
) &&
2902 (GetLastError() != ERROR_INSUFFICIENT_BUFFER
))
2905 orig_url
= HeapAlloc(GetProcessHeap(), 0, url_length
);
2907 /* convert from bytes to characters */
2908 url_length
= url_length
/ sizeof(WCHAR
) - 1;
2909 if (!InternetCreateUrlW(&urlComponents
, 0, orig_url
, &url_length
))
2911 HeapFree(GetProcessHeap(), 0, orig_url
);
2916 if (!InternetCombineUrlW(orig_url
, lpszUrl
, NULL
, &url_length
, ICU_ENCODE_SPACES_ONLY
) &&
2917 (GetLastError() != ERROR_INSUFFICIENT_BUFFER
))
2919 HeapFree(GetProcessHeap(), 0, orig_url
);
2922 combined_url
= HeapAlloc(GetProcessHeap(), 0, url_length
* sizeof(WCHAR
));
2924 if (!InternetCombineUrlW(orig_url
, lpszUrl
, combined_url
, &url_length
, ICU_ENCODE_SPACES_ONLY
))
2926 HeapFree(GetProcessHeap(), 0, orig_url
);
2927 HeapFree(GetProcessHeap(), 0, combined_url
);
2930 HeapFree(GetProcessHeap(), 0, orig_url
);
2936 urlComponents
.dwStructSize
= sizeof(URL_COMPONENTSW
);
2937 urlComponents
.lpszScheme
= protocol
;
2938 urlComponents
.dwSchemeLength
= 32;
2939 urlComponents
.lpszHostName
= hostName
;
2940 urlComponents
.dwHostNameLength
= MAXHOSTNAME
;
2941 urlComponents
.lpszUserName
= userName
;
2942 urlComponents
.dwUserNameLength
= 1024;
2943 urlComponents
.lpszPassword
= NULL
;
2944 urlComponents
.dwPasswordLength
= 0;
2945 urlComponents
.lpszUrlPath
= path
;
2946 urlComponents
.dwUrlPathLength
= 2048;
2947 urlComponents
.lpszExtraInfo
= NULL
;
2948 urlComponents
.dwExtraInfoLength
= 0;
2949 if(!InternetCrackUrlW(combined_url
, strlenW(combined_url
), 0, &urlComponents
))
2951 HeapFree(GetProcessHeap(), 0, combined_url
);
2955 HeapFree(GetProcessHeap(), 0, combined_url
);
2957 if (!strncmpW(szHttp
, urlComponents
.lpszScheme
, strlenW(szHttp
)) &&
2958 (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
))
2960 TRACE("redirect from secure page to non-secure page\n");
2961 /* FIXME: warn about from secure redirect to non-secure page */
2962 lpwhr
->hdr
.dwFlags
&= ~INTERNET_FLAG_SECURE
;
2964 if (!strncmpW(szHttps
, urlComponents
.lpszScheme
, strlenW(szHttps
)) &&
2965 !(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
))
2967 TRACE("redirect from non-secure page to secure page\n");
2968 /* FIXME: notify about redirect to secure page */
2969 lpwhr
->hdr
.dwFlags
|= INTERNET_FLAG_SECURE
;
2972 if (urlComponents
.nPort
== INTERNET_INVALID_PORT_NUMBER
)
2974 if (lstrlenW(protocol
)>4) /*https*/
2975 urlComponents
.nPort
= INTERNET_DEFAULT_HTTPS_PORT
;
2977 urlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
2982 * This upsets redirects to binary files on sourceforge.net
2983 * and gives an html page instead of the target file
2984 * Examination of the HTTP request sent by native wininet.dll
2985 * reveals that it doesn't send a referrer in that case.
2986 * Maybe there's a flag that enables this, or maybe a referrer
2987 * shouldn't be added in case of a redirect.
2990 /* consider the current host as the referrer */
2991 if (lpwhs
->lpszServerName
&& *lpwhs
->lpszServerName
)
2992 HTTP_ProcessHeader(lpwhr
, HTTP_REFERER
, lpwhs
->lpszServerName
,
2993 HTTP_ADDHDR_FLAG_REQ
|HTTP_ADDREQ_FLAG_REPLACE
|
2994 HTTP_ADDHDR_FLAG_ADD_IF_NEW
);
2997 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszHostName
);
2998 if (urlComponents
.nPort
!= INTERNET_DEFAULT_HTTP_PORT
&&
2999 urlComponents
.nPort
!= INTERNET_DEFAULT_HTTPS_PORT
)
3002 static const WCHAR fmt
[] = {'%','s',':','%','i',0};
3003 len
= lstrlenW(hostName
);
3004 len
+= 7; /* 5 for strlen("65535") + 1 for ":" + 1 for '\0' */
3005 lpwhs
->lpszHostName
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
3006 sprintfW(lpwhs
->lpszHostName
, fmt
, hostName
, urlComponents
.nPort
);
3009 lpwhs
->lpszHostName
= WININET_strdupW(hostName
);
3011 HTTP_ProcessHeader(lpwhr
, szHost
, lpwhs
->lpszHostName
, HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDREQ_FLAG_REPLACE
| HTTP_ADDHDR_FLAG_REQ
);
3013 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszUserName
);
3014 lpwhs
->lpszUserName
= NULL
;
3016 lpwhs
->lpszUserName
= WININET_strdupW(userName
);
3020 if (strcmpiW(lpwhs
->lpszServerName
, hostName
) || lpwhs
->nServerPort
!= urlComponents
.nPort
)
3022 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszServerName
);
3023 lpwhs
->lpszServerName
= WININET_strdupW(hostName
);
3024 lpwhs
->nServerPort
= urlComponents
.nPort
;
3026 NETCON_close(&lpwhr
->netConnection
);
3027 if (!HTTP_ResolveName(lpwhr
)) return FALSE
;
3028 if (!NETCON_init(&lpwhr
->netConnection
, lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
)) return FALSE
;
3032 TRACE("Redirect through proxy\n");
3035 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszPath
);
3036 lpwhr
->lpszPath
=NULL
;
3042 rc
= UrlEscapeW(path
, NULL
, &needed
, URL_ESCAPE_SPACES_ONLY
);
3043 if (rc
!= E_POINTER
)
3044 needed
= strlenW(path
)+1;
3045 lpwhr
->lpszPath
= HeapAlloc(GetProcessHeap(), 0, needed
*sizeof(WCHAR
));
3046 rc
= UrlEscapeW(path
, lpwhr
->lpszPath
, &needed
,
3047 URL_ESCAPE_SPACES_ONLY
);
3050 ERR("Unable to escape string!(%s) (%d)\n",debugstr_w(path
),rc
);
3051 strcpyW(lpwhr
->lpszPath
,path
);
3055 /* Remove custom content-type/length headers on redirects. */
3056 index
= HTTP_GetCustomHeaderIndex(lpwhr
, szContentType
, 0, TRUE
);
3058 HTTP_DeleteCustomHeader(lpwhr
, index
);
3059 index
= HTTP_GetCustomHeaderIndex(lpwhr
, szContentLength
, 0, TRUE
);
3061 HTTP_DeleteCustomHeader(lpwhr
, index
);
3066 /***********************************************************************
3067 * HTTP_build_req (internal)
3069 * concatenate all the strings in the request together
3071 static LPWSTR
HTTP_build_req( LPCWSTR
*list
, int len
)
3076 for( t
= list
; *t
; t
++ )
3077 len
+= strlenW( *t
);
3080 str
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
3083 for( t
= list
; *t
; t
++ )
3089 static BOOL
HTTP_SecureProxyConnect(LPWININETHTTPREQW lpwhr
)
3092 LPWSTR requestString
;
3098 static const WCHAR szConnect
[] = {'C','O','N','N','E','C','T',0};
3099 static const WCHAR szFormat
[] = {'%','s',':','%','d',0};
3100 LPWININETHTTPSESSIONW lpwhs
= lpwhr
->lpHttpSession
;
3104 lpszPath
= HeapAlloc( GetProcessHeap(), 0, (lstrlenW( lpwhs
->lpszHostName
) + 13)*sizeof(WCHAR
) );
3105 sprintfW( lpszPath
, szFormat
, lpwhs
->lpszHostName
, lpwhs
->nHostPort
);
3106 requestString
= HTTP_BuildHeaderRequestString( lpwhr
, szConnect
, lpszPath
, g_szHttp1_1
);
3107 HeapFree( GetProcessHeap(), 0, lpszPath
);
3109 len
= WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
3110 NULL
, 0, NULL
, NULL
);
3111 len
--; /* the nul terminator isn't needed */
3112 ascii_req
= HeapAlloc( GetProcessHeap(), 0, len
);
3113 WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
3114 ascii_req
, len
, NULL
, NULL
);
3115 HeapFree( GetProcessHeap(), 0, requestString
);
3117 TRACE("full request -> %s\n", debugstr_an( ascii_req
, len
) );
3119 ret
= NETCON_send( &lpwhr
->netConnection
, ascii_req
, len
, 0, &cnt
);
3120 HeapFree( GetProcessHeap(), 0, ascii_req
);
3121 if (!ret
|| cnt
< 0)
3124 responseLen
= HTTP_GetResponseHeaders( lpwhr
, TRUE
);
3131 static void HTTP_InsertCookies(LPWININETHTTPREQW lpwhr
)
3133 static const WCHAR szUrlForm
[] = {'h','t','t','p',':','/','/','%','s',0};
3134 LPWSTR lpszCookies
, lpszUrl
= NULL
;
3135 DWORD nCookieSize
, size
;
3136 LPHTTPHEADERW Host
= HTTP_GetHeader(lpwhr
,szHost
);
3138 size
= (strlenW(Host
->lpszValue
) + strlenW(szUrlForm
)) * sizeof(WCHAR
);
3139 if (!(lpszUrl
= HeapAlloc(GetProcessHeap(), 0, size
))) return;
3140 sprintfW( lpszUrl
, szUrlForm
, Host
->lpszValue
);
3142 if (InternetGetCookieW(lpszUrl
, NULL
, NULL
, &nCookieSize
))
3145 static const WCHAR szCookie
[] = {'C','o','o','k','i','e',':',' ',0};
3147 size
= sizeof(szCookie
) + nCookieSize
* sizeof(WCHAR
) + sizeof(szCrLf
);
3148 if ((lpszCookies
= HeapAlloc(GetProcessHeap(), 0, size
)))
3150 cnt
+= sprintfW(lpszCookies
, szCookie
);
3151 InternetGetCookieW(lpszUrl
, NULL
, lpszCookies
+ cnt
, &nCookieSize
);
3152 strcatW(lpszCookies
, szCrLf
);
3154 HTTP_HttpAddRequestHeadersW(lpwhr
, lpszCookies
, strlenW(lpszCookies
), HTTP_ADDREQ_FLAG_ADD
);
3155 HeapFree(GetProcessHeap(), 0, lpszCookies
);
3158 HeapFree(GetProcessHeap(), 0, lpszUrl
);
3161 /***********************************************************************
3162 * HTTP_HttpSendRequestW (internal)
3164 * Sends the specified request to the HTTP server
3171 BOOL WINAPI
HTTP_HttpSendRequestW(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszHeaders
,
3172 DWORD dwHeaderLength
, LPVOID lpOptional
, DWORD dwOptionalLength
,
3173 DWORD dwContentLength
, BOOL bEndRequest
)
3176 BOOL bSuccess
= FALSE
;
3177 LPWSTR requestString
= NULL
;
3180 INTERNET_ASYNC_RESULT iar
;
3181 static const WCHAR szPost
[] = { 'P','O','S','T',0 };
3182 static const WCHAR szContentLength
[] =
3183 { 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',':',' ','%','l','i','\r','\n',0 };
3184 WCHAR contentLengthStr
[sizeof szContentLength
/2 /* includes \r\n */ + 20 /* int */ ];
3186 TRACE("--> %p\n", lpwhr
);
3188 assert(lpwhr
->hdr
.htype
== WH_HHTTPREQ
);
3190 /* if the verb is NULL default to GET */
3191 if (!lpwhr
->lpszVerb
)
3192 lpwhr
->lpszVerb
= WININET_strdupW(szGET
);
3194 if (dwContentLength
|| !strcmpW(lpwhr
->lpszVerb
, szPost
))
3196 sprintfW(contentLengthStr
, szContentLength
, dwContentLength
);
3197 HTTP_HttpAddRequestHeadersW(lpwhr
, contentLengthStr
, -1L, HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
3199 if (lpwhr
->lpHttpSession
->lpAppInfo
->lpszAgent
)
3201 WCHAR
*agent_header
;
3202 static const WCHAR user_agent
[] = {'U','s','e','r','-','A','g','e','n','t',':',' ','%','s','\r','\n',0};
3205 len
= strlenW(lpwhr
->lpHttpSession
->lpAppInfo
->lpszAgent
) + strlenW(user_agent
);
3206 agent_header
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3207 sprintfW(agent_header
, user_agent
, lpwhr
->lpHttpSession
->lpAppInfo
->lpszAgent
);
3209 HTTP_HttpAddRequestHeadersW(lpwhr
, agent_header
, strlenW(agent_header
), HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
3210 HeapFree(GetProcessHeap(), 0, agent_header
);
3212 if (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_PRAGMA_NOCACHE
)
3214 static const WCHAR pragma_nocache
[] = {'P','r','a','g','m','a',':',' ','n','o','-','c','a','c','h','e','\r','\n',0};
3215 HTTP_HttpAddRequestHeadersW(lpwhr
, pragma_nocache
, strlenW(pragma_nocache
), HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
3217 if ((lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_CACHE_WRITE
) && !strcmpW(lpwhr
->lpszVerb
, szPost
))
3219 static const WCHAR cache_control
[] = {'C','a','c','h','e','-','C','o','n','t','r','o','l',':',
3220 ' ','n','o','-','c','a','c','h','e','\r','\n',0};
3221 HTTP_HttpAddRequestHeadersW(lpwhr
, cache_control
, strlenW(cache_control
), HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
3231 /* like native, just in case the caller forgot to call InternetReadFile
3232 * for all the data */
3233 HTTP_DrainContent(lpwhr
);
3234 lpwhr
->dwContentRead
= 0;
3236 if (TRACE_ON(wininet
))
3238 LPHTTPHEADERW Host
= HTTP_GetHeader(lpwhr
,szHost
);
3239 TRACE("Going to url %s %s\n", debugstr_w(Host
->lpszValue
), debugstr_w(lpwhr
->lpszPath
));
3243 if (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_KEEP_CONNECTION
)
3245 HTTP_ProcessHeader(lpwhr
, szConnection
, szKeepAlive
, HTTP_ADDHDR_FLAG_REQ
| HTTP_ADDHDR_FLAG_REPLACE
);
3247 HTTP_InsertAuthorization(lpwhr
, lpwhr
->pAuthInfo
, szAuthorization
);
3248 HTTP_InsertAuthorization(lpwhr
, lpwhr
->pProxyAuthInfo
, szProxy_Authorization
);
3250 if (!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_COOKIES
))
3251 HTTP_InsertCookies(lpwhr
);
3253 /* add the headers the caller supplied */
3254 if( lpszHeaders
&& dwHeaderLength
)
3256 HTTP_HttpAddRequestHeadersW(lpwhr
, lpszHeaders
, dwHeaderLength
,
3257 HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDHDR_FLAG_REPLACE
);
3260 if (lpwhr
->lpHttpSession
->lpAppInfo
->lpszProxy
&& lpwhr
->lpHttpSession
->lpAppInfo
->lpszProxy
[0])
3262 WCHAR
*url
= HTTP_BuildProxyRequestUrl(lpwhr
);
3263 requestString
= HTTP_BuildHeaderRequestString(lpwhr
, lpwhr
->lpszVerb
, url
, lpwhr
->lpszVersion
);
3264 HeapFree(GetProcessHeap(), 0, url
);
3267 requestString
= HTTP_BuildHeaderRequestString(lpwhr
, lpwhr
->lpszVerb
, lpwhr
->lpszPath
, lpwhr
->lpszVersion
);
3270 TRACE("Request header -> %s\n", debugstr_w(requestString
) );
3272 /* Send the request and store the results */
3273 if (!HTTP_OpenConnection(lpwhr
))
3276 /* send the request as ASCII, tack on the optional data */
3278 dwOptionalLength
= 0;
3279 len
= WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
3280 NULL
, 0, NULL
, NULL
);
3281 ascii_req
= HeapAlloc( GetProcessHeap(), 0, len
+ dwOptionalLength
);
3282 WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
3283 ascii_req
, len
, NULL
, NULL
);
3285 memcpy( &ascii_req
[len
-1], lpOptional
, dwOptionalLength
);
3286 len
= (len
+ dwOptionalLength
- 1);
3288 TRACE("full request -> %s\n", debugstr_a(ascii_req
) );
3290 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
3291 INTERNET_STATUS_SENDING_REQUEST
, NULL
, 0);
3293 NETCON_send(&lpwhr
->netConnection
, ascii_req
, len
, 0, &cnt
);
3294 HeapFree( GetProcessHeap(), 0, ascii_req
);
3296 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
3297 INTERNET_STATUS_REQUEST_SENT
,
3298 &len
, sizeof(DWORD
));
3305 static const WCHAR szChunked
[] = {'c','h','u','n','k','e','d',0};
3307 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
3308 INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
3313 responseLen
= HTTP_GetResponseHeaders(lpwhr
, TRUE
);
3317 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
3318 INTERNET_STATUS_RESPONSE_RECEIVED
, &responseLen
,
3321 HTTP_ProcessCookies(lpwhr
);
3323 dwBufferSize
= sizeof(lpwhr
->dwContentLength
);
3324 if (!HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_FLAG_NUMBER
|HTTP_QUERY_CONTENT_LENGTH
,
3325 &lpwhr
->dwContentLength
,&dwBufferSize
,NULL
))
3326 lpwhr
->dwContentLength
= -1;
3328 if (lpwhr
->dwContentLength
== 0)
3329 HTTP_FinishedReading(lpwhr
);
3331 /* Correct the case where both a Content-Length and Transfer-encoding = chunked are set */
3333 dwBufferSize
= sizeof(encoding
);
3334 if (HTTP_HttpQueryInfoW(lpwhr
, HTTP_QUERY_TRANSFER_ENCODING
, encoding
, &dwBufferSize
, NULL
) &&
3335 !strcmpiW(encoding
, szChunked
))
3337 lpwhr
->dwContentLength
= -1;
3340 dwBufferSize
= sizeof(dwStatusCode
);
3341 if (!HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_FLAG_NUMBER
|HTTP_QUERY_STATUS_CODE
,
3342 &dwStatusCode
,&dwBufferSize
,NULL
))
3345 if (!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_AUTO_REDIRECT
) && bSuccess
)
3347 WCHAR szNewLocation
[INTERNET_MAX_URL_LENGTH
];
3348 dwBufferSize
=sizeof(szNewLocation
);
3349 if ((dwStatusCode
==HTTP_STATUS_REDIRECT
|| dwStatusCode
==HTTP_STATUS_MOVED
) &&
3350 HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_LOCATION
,szNewLocation
,&dwBufferSize
,NULL
))
3352 HTTP_DrainContent(lpwhr
);
3353 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
3354 INTERNET_STATUS_REDIRECT
, szNewLocation
,
3356 bSuccess
= HTTP_HandleRedirect(lpwhr
, szNewLocation
);
3359 HeapFree(GetProcessHeap(), 0, requestString
);
3364 if (!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_AUTH
) && bSuccess
)
3366 WCHAR szAuthValue
[2048];
3368 if (dwStatusCode
== HTTP_STATUS_DENIED
)
3371 while (HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_WWW_AUTHENTICATE
,szAuthValue
,&dwBufferSize
,&dwIndex
))
3373 if (HTTP_DoAuthorization(lpwhr
, szAuthValue
,
3375 lpwhr
->lpHttpSession
->lpszUserName
,
3376 lpwhr
->lpHttpSession
->lpszPassword
))
3383 if (dwStatusCode
== HTTP_STATUS_PROXY_AUTH_REQ
)
3386 while (HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_PROXY_AUTHENTICATE
,szAuthValue
,&dwBufferSize
,&dwIndex
))
3388 if (HTTP_DoAuthorization(lpwhr
, szAuthValue
,
3389 &lpwhr
->pProxyAuthInfo
,
3390 lpwhr
->lpHttpSession
->lpAppInfo
->lpszProxyUsername
,
3391 lpwhr
->lpHttpSession
->lpAppInfo
->lpszProxyPassword
))
3405 /* FIXME: Better check, when we have to create the cache file */
3406 if(bSuccess
&& (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NEED_FILE
)) {
3407 WCHAR url
[INTERNET_MAX_URL_LENGTH
];
3408 WCHAR cacheFileName
[MAX_PATH
+1];
3411 b
= HTTP_GetRequestURL(lpwhr
, url
);
3413 WARN("Could not get URL\n");
3417 b
= CreateUrlCacheEntryW(url
, lpwhr
->dwContentLength
> 0 ? lpwhr
->dwContentLength
: 0, NULL
, cacheFileName
, 0);
3419 lpwhr
->lpszCacheFile
= WININET_strdupW(cacheFileName
);
3420 lpwhr
->hCacheFile
= CreateFileW(lpwhr
->lpszCacheFile
, GENERIC_WRITE
, FILE_SHARE_READ
|FILE_SHARE_WRITE
,
3421 NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
3422 if(lpwhr
->hCacheFile
== INVALID_HANDLE_VALUE
) {
3423 WARN("Could not create file: %u\n", GetLastError());
3424 lpwhr
->hCacheFile
= NULL
;
3427 WARN("Could not create cache entry: %08x\n", GetLastError());
3433 HeapFree(GetProcessHeap(), 0, requestString
);
3435 /* TODO: send notification for P3P header */
3437 iar
.dwResult
= (DWORD_PTR
)lpwhr
->hdr
.hInternet
;
3438 iar
.dwError
= bSuccess
? ERROR_SUCCESS
: INTERNET_GetLastError();
3440 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
3441 INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
3442 sizeof(INTERNET_ASYNC_RESULT
));
3445 if (bSuccess
) INTERNET_SetLastError(ERROR_SUCCESS
);
3449 /***********************************************************************
3450 * HTTPSESSION_Destroy (internal)
3452 * Deallocate session handle
3455 static void HTTPSESSION_Destroy(WININETHANDLEHEADER
*hdr
)
3457 LPWININETHTTPSESSIONW lpwhs
= (LPWININETHTTPSESSIONW
) hdr
;
3459 TRACE("%p\n", lpwhs
);
3461 WININET_Release(&lpwhs
->lpAppInfo
->hdr
);
3463 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszHostName
);
3464 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszServerName
);
3465 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszPassword
);
3466 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszUserName
);
3467 HeapFree(GetProcessHeap(), 0, lpwhs
);
3470 static DWORD
HTTPSESSION_QueryOption(WININETHANDLEHEADER
*hdr
, DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
3473 case INTERNET_OPTION_HANDLE_TYPE
:
3474 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
3476 if (*size
< sizeof(ULONG
))
3477 return ERROR_INSUFFICIENT_BUFFER
;
3479 *size
= sizeof(DWORD
);
3480 *(DWORD
*)buffer
= INTERNET_HANDLE_TYPE_CONNECT_HTTP
;
3481 return ERROR_SUCCESS
;
3484 return INET_QueryOption(option
, buffer
, size
, unicode
);
3487 static const HANDLEHEADERVtbl HTTPSESSIONVtbl
= {
3488 HTTPSESSION_Destroy
,
3490 HTTPSESSION_QueryOption
,
3500 /***********************************************************************
3501 * HTTP_Connect (internal)
3503 * Create http session handle
3506 * HINTERNET a session handle on success
3510 HINTERNET
HTTP_Connect(LPWININETAPPINFOW hIC
, LPCWSTR lpszServerName
,
3511 INTERNET_PORT nServerPort
, LPCWSTR lpszUserName
,
3512 LPCWSTR lpszPassword
, DWORD dwFlags
, DWORD_PTR dwContext
,
3513 DWORD dwInternalFlags
)
3515 LPWININETHTTPSESSIONW lpwhs
= NULL
;
3516 HINTERNET handle
= NULL
;
3520 if (!lpszServerName
|| !lpszServerName
[0])
3522 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
3526 assert( hIC
->hdr
.htype
== WH_HINIT
);
3528 lpwhs
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WININETHTTPSESSIONW
));
3531 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
3536 * According to my tests. The name is not resolved until a request is sent
3539 lpwhs
->hdr
.htype
= WH_HHTTPSESSION
;
3540 lpwhs
->hdr
.vtbl
= &HTTPSESSIONVtbl
;
3541 lpwhs
->hdr
.dwFlags
= dwFlags
;
3542 lpwhs
->hdr
.dwContext
= dwContext
;
3543 lpwhs
->hdr
.dwInternalFlags
= dwInternalFlags
| (hIC
->hdr
.dwInternalFlags
& INET_CALLBACKW
);
3544 lpwhs
->hdr
.refs
= 1;
3545 lpwhs
->hdr
.lpfnStatusCB
= hIC
->hdr
.lpfnStatusCB
;
3547 WININET_AddRef( &hIC
->hdr
);
3548 lpwhs
->lpAppInfo
= hIC
;
3549 list_add_head( &hIC
->hdr
.children
, &lpwhs
->hdr
.entry
);
3551 handle
= WININET_AllocHandle( &lpwhs
->hdr
);
3554 ERR("Failed to alloc handle\n");
3555 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
3559 if(hIC
->lpszProxy
&& hIC
->dwAccessType
== INTERNET_OPEN_TYPE_PROXY
) {
3560 if(strchrW(hIC
->lpszProxy
, ' '))
3561 FIXME("Several proxies not implemented.\n");
3562 if(hIC
->lpszProxyBypass
)
3563 FIXME("Proxy bypass is ignored.\n");
3565 if (lpszServerName
&& lpszServerName
[0])
3567 lpwhs
->lpszServerName
= WININET_strdupW(lpszServerName
);
3568 lpwhs
->lpszHostName
= WININET_strdupW(lpszServerName
);
3570 if (lpszUserName
&& lpszUserName
[0])
3571 lpwhs
->lpszUserName
= WININET_strdupW(lpszUserName
);
3572 if (lpszPassword
&& lpszPassword
[0])
3573 lpwhs
->lpszPassword
= WININET_strdupW(lpszPassword
);
3574 lpwhs
->nServerPort
= nServerPort
;
3575 lpwhs
->nHostPort
= nServerPort
;
3577 /* Don't send a handle created callback if this handle was created with InternetOpenUrl */
3578 if (!(lpwhs
->hdr
.dwInternalFlags
& INET_OPENURL
))
3580 INTERNET_SendCallback(&hIC
->hdr
, dwContext
,
3581 INTERNET_STATUS_HANDLE_CREATED
, &handle
,
3587 WININET_Release( &lpwhs
->hdr
);
3590 * an INTERNET_STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on
3594 TRACE("%p --> %p (%p)\n", hIC
, handle
, lpwhs
);
3599 /***********************************************************************
3600 * HTTP_OpenConnection (internal)
3602 * Connect to a web server
3609 static BOOL
HTTP_OpenConnection(LPWININETHTTPREQW lpwhr
)
3611 BOOL bSuccess
= FALSE
;
3612 LPWININETHTTPSESSIONW lpwhs
;
3613 LPWININETAPPINFOW hIC
= NULL
;
3619 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
3621 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
3625 if (NETCON_connected(&lpwhr
->netConnection
))
3630 if (!HTTP_ResolveName(lpwhr
)) goto lend
;
3632 lpwhs
= lpwhr
->lpHttpSession
;
3634 hIC
= lpwhs
->lpAppInfo
;
3635 inet_ntop(lpwhs
->socketAddress
.sin_family
, &lpwhs
->socketAddress
.sin_addr
,
3636 szaddr
, sizeof(szaddr
));
3637 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
3638 INTERNET_STATUS_CONNECTING_TO_SERVER
,
3642 if (!NETCON_create(&lpwhr
->netConnection
, lpwhs
->socketAddress
.sin_family
,
3645 WARN("Socket creation failed: %u\n", INTERNET_GetLastError());
3649 if (!NETCON_connect(&lpwhr
->netConnection
, (struct sockaddr
*)&lpwhs
->socketAddress
,
3650 sizeof(lpwhs
->socketAddress
)))
3653 if (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
)
3655 /* Note: we differ from Microsoft's WinINet here. they seem to have
3656 * a bug that causes no status callbacks to be sent when starting
3657 * a tunnel to a proxy server using the CONNECT verb. i believe our
3658 * behaviour to be more correct and to not cause any incompatibilities
3659 * because using a secure connection through a proxy server is a rare
3660 * case that would be hard for anyone to depend on */
3661 if (hIC
->lpszProxy
&& !HTTP_SecureProxyConnect(lpwhr
))
3664 if (!NETCON_secure_connect(&lpwhr
->netConnection
, lpwhs
->lpszHostName
))
3666 WARN("Couldn't connect securely to host\n");
3671 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
3672 INTERNET_STATUS_CONNECTED_TO_SERVER
,
3673 szaddr
, strlen(szaddr
)+1);
3678 TRACE("%d <--\n", bSuccess
);
3683 /***********************************************************************
3684 * HTTP_clear_response_headers (internal)
3686 * clear out any old response headers
3688 static void HTTP_clear_response_headers( LPWININETHTTPREQW lpwhr
)
3692 for( i
=0; i
<lpwhr
->nCustHeaders
; i
++)
3694 if( !lpwhr
->pCustHeaders
[i
].lpszField
)
3696 if( !lpwhr
->pCustHeaders
[i
].lpszValue
)
3698 if ( lpwhr
->pCustHeaders
[i
].wFlags
& HDR_ISREQUEST
)
3700 HTTP_DeleteCustomHeader( lpwhr
, i
);
3705 /***********************************************************************
3706 * HTTP_GetResponseHeaders (internal)
3708 * Read server response
3715 static INT
HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr
, BOOL clear
)
3718 WCHAR buffer
[MAX_REPLY_LEN
];
3719 DWORD buflen
= MAX_REPLY_LEN
;
3720 BOOL bSuccess
= FALSE
;
3722 static const WCHAR szHundred
[] = {'1','0','0',0};
3723 char bufferA
[MAX_REPLY_LEN
];
3724 LPWSTR status_code
, status_text
;
3725 DWORD cchMaxRawHeaders
= 1024;
3726 LPWSTR lpszRawHeaders
= HeapAlloc(GetProcessHeap(), 0, (cchMaxRawHeaders
+1)*sizeof(WCHAR
));
3727 DWORD cchRawHeaders
= 0;
3731 /* clear old response headers (eg. from a redirect response) */
3732 if (clear
) HTTP_clear_response_headers( lpwhr
);
3734 if (!NETCON_connected(&lpwhr
->netConnection
))
3739 * HACK peek at the buffer
3741 buflen
= MAX_REPLY_LEN
;
3742 NETCON_recv(&lpwhr
->netConnection
, buffer
, buflen
, MSG_PEEK
, &rc
);
3745 * We should first receive 'HTTP/1.x nnn OK' where nnn is the status code.
3747 memset(buffer
, 0, MAX_REPLY_LEN
);
3748 if (!NETCON_getNextLine(&lpwhr
->netConnection
, bufferA
, &buflen
))
3750 MultiByteToWideChar( CP_ACP
, 0, bufferA
, buflen
, buffer
, MAX_REPLY_LEN
);
3752 /* split the version from the status code */
3753 status_code
= strchrW( buffer
, ' ' );
3758 /* split the status code from the status text */
3759 status_text
= strchrW( status_code
, ' ' );
3764 TRACE("version [%s] status code [%s] status text [%s]\n",
3765 debugstr_w(buffer
), debugstr_w(status_code
), debugstr_w(status_text
) );
3767 } while (!strcmpW(status_code
, szHundred
)); /* ignore "100 Continue" responses */
3769 /* Add status code */
3770 HTTP_ProcessHeader(lpwhr
, szStatus
, status_code
,
3771 HTTP_ADDHDR_FLAG_REPLACE
);
3773 HeapFree(GetProcessHeap(),0,lpwhr
->lpszVersion
);
3774 HeapFree(GetProcessHeap(),0,lpwhr
->lpszStatusText
);
3776 lpwhr
->lpszVersion
= WININET_strdupW(buffer
);
3777 lpwhr
->lpszStatusText
= WININET_strdupW(status_text
);
3779 /* Restore the spaces */
3780 *(status_code
-1) = ' ';
3781 *(status_text
-1) = ' ';
3783 /* regenerate raw headers */
3784 while (cchRawHeaders
+ buflen
+ strlenW(szCrLf
) > cchMaxRawHeaders
)
3786 cchMaxRawHeaders
*= 2;
3787 lpszRawHeaders
= HeapReAlloc(GetProcessHeap(), 0, lpszRawHeaders
, (cchMaxRawHeaders
+1)*sizeof(WCHAR
));
3789 memcpy(lpszRawHeaders
+cchRawHeaders
, buffer
, (buflen
-1)*sizeof(WCHAR
));
3790 cchRawHeaders
+= (buflen
-1);
3791 memcpy(lpszRawHeaders
+cchRawHeaders
, szCrLf
, sizeof(szCrLf
));
3792 cchRawHeaders
+= sizeof(szCrLf
)/sizeof(szCrLf
[0])-1;
3793 lpszRawHeaders
[cchRawHeaders
] = '\0';
3795 /* Parse each response line */
3798 buflen
= MAX_REPLY_LEN
;
3799 if (NETCON_getNextLine(&lpwhr
->netConnection
, bufferA
, &buflen
))
3801 LPWSTR
* pFieldAndValue
;
3803 TRACE("got line %s, now interpreting\n", debugstr_a(bufferA
));
3804 MultiByteToWideChar( CP_ACP
, 0, bufferA
, buflen
, buffer
, MAX_REPLY_LEN
);
3806 while (cchRawHeaders
+ buflen
+ strlenW(szCrLf
) > cchMaxRawHeaders
)
3808 cchMaxRawHeaders
*= 2;
3809 lpszRawHeaders
= HeapReAlloc(GetProcessHeap(), 0, lpszRawHeaders
, (cchMaxRawHeaders
+1)*sizeof(WCHAR
));
3811 memcpy(lpszRawHeaders
+cchRawHeaders
, buffer
, (buflen
-1)*sizeof(WCHAR
));
3812 cchRawHeaders
+= (buflen
-1);
3813 memcpy(lpszRawHeaders
+cchRawHeaders
, szCrLf
, sizeof(szCrLf
));
3814 cchRawHeaders
+= sizeof(szCrLf
)/sizeof(szCrLf
[0])-1;
3815 lpszRawHeaders
[cchRawHeaders
] = '\0';
3817 pFieldAndValue
= HTTP_InterpretHttpHeader(buffer
);
3818 if (!pFieldAndValue
)
3821 HTTP_ProcessHeader(lpwhr
, pFieldAndValue
[0], pFieldAndValue
[1],
3822 HTTP_ADDREQ_FLAG_ADD
);
3824 HTTP_FreeTokens(pFieldAndValue
);
3834 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszRawHeaders
);
3835 lpwhr
->lpszRawHeaders
= lpszRawHeaders
;
3836 TRACE("raw headers: %s\n", debugstr_w(lpszRawHeaders
));
3846 HeapFree(GetProcessHeap(), 0, lpszRawHeaders
);
3852 static void strip_spaces(LPWSTR start
)
3857 while (*str
== ' ' && *str
!= '\0')
3861 memmove(start
, str
, sizeof(WCHAR
) * (strlenW(str
) + 1));
3863 end
= start
+ strlenW(start
) - 1;
3864 while (end
>= start
&& *end
== ' ')
3872 /***********************************************************************
3873 * HTTP_InterpretHttpHeader (internal)
3875 * Parse server response
3879 * Pointer to array of field, value, NULL on success.
3882 static LPWSTR
* HTTP_InterpretHttpHeader(LPCWSTR buffer
)
3884 LPWSTR
* pTokenPair
;
3888 pTokenPair
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*pTokenPair
)*3);
3890 pszColon
= strchrW(buffer
, ':');
3891 /* must have two tokens */
3894 HTTP_FreeTokens(pTokenPair
);
3896 TRACE("No ':' in line: %s\n", debugstr_w(buffer
));
3900 pTokenPair
[0] = HeapAlloc(GetProcessHeap(), 0, (pszColon
- buffer
+ 1) * sizeof(WCHAR
));
3903 HTTP_FreeTokens(pTokenPair
);
3906 memcpy(pTokenPair
[0], buffer
, (pszColon
- buffer
) * sizeof(WCHAR
));
3907 pTokenPair
[0][pszColon
- buffer
] = '\0';
3911 len
= strlenW(pszColon
);
3912 pTokenPair
[1] = HeapAlloc(GetProcessHeap(), 0, (len
+ 1) * sizeof(WCHAR
));
3915 HTTP_FreeTokens(pTokenPair
);
3918 memcpy(pTokenPair
[1], pszColon
, (len
+ 1) * sizeof(WCHAR
));
3920 strip_spaces(pTokenPair
[0]);
3921 strip_spaces(pTokenPair
[1]);
3923 TRACE("field(%s) Value(%s)\n", debugstr_w(pTokenPair
[0]), debugstr_w(pTokenPair
[1]));
3927 /***********************************************************************
3928 * HTTP_ProcessHeader (internal)
3930 * Stuff header into header tables according to <dwModifier>
3934 #define COALESCEFLAGS (HTTP_ADDHDR_FLAG_COALESCE|HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA|HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON)
3936 static BOOL
HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr
, LPCWSTR field
, LPCWSTR value
, DWORD dwModifier
)
3938 LPHTTPHEADERW lphttpHdr
= NULL
;
3939 BOOL bSuccess
= FALSE
;
3941 BOOL request_only
= dwModifier
& HTTP_ADDHDR_FLAG_REQ
;
3943 TRACE("--> %s: %s - 0x%08x\n", debugstr_w(field
), debugstr_w(value
), dwModifier
);
3945 /* REPLACE wins out over ADD */
3946 if (dwModifier
& HTTP_ADDHDR_FLAG_REPLACE
)
3947 dwModifier
&= ~HTTP_ADDHDR_FLAG_ADD
;
3949 if (dwModifier
& HTTP_ADDHDR_FLAG_ADD
)
3952 index
= HTTP_GetCustomHeaderIndex(lpwhr
, field
, 0, request_only
);
3956 if (dwModifier
& HTTP_ADDHDR_FLAG_ADD_IF_NEW
)
3960 lphttpHdr
= &lpwhr
->pCustHeaders
[index
];
3966 hdr
.lpszField
= (LPWSTR
)field
;
3967 hdr
.lpszValue
= (LPWSTR
)value
;
3968 hdr
.wFlags
= hdr
.wCount
= 0;
3970 if (dwModifier
& HTTP_ADDHDR_FLAG_REQ
)
3971 hdr
.wFlags
|= HDR_ISREQUEST
;
3973 return HTTP_InsertCustomHeader(lpwhr
, &hdr
);
3975 /* no value to delete */
3978 if (dwModifier
& HTTP_ADDHDR_FLAG_REQ
)
3979 lphttpHdr
->wFlags
|= HDR_ISREQUEST
;
3981 lphttpHdr
->wFlags
&= ~HDR_ISREQUEST
;
3983 if (dwModifier
& HTTP_ADDHDR_FLAG_REPLACE
)
3985 HTTP_DeleteCustomHeader( lpwhr
, index
);
3991 hdr
.lpszField
= (LPWSTR
)field
;
3992 hdr
.lpszValue
= (LPWSTR
)value
;
3993 hdr
.wFlags
= hdr
.wCount
= 0;
3995 if (dwModifier
& HTTP_ADDHDR_FLAG_REQ
)
3996 hdr
.wFlags
|= HDR_ISREQUEST
;
3998 return HTTP_InsertCustomHeader(lpwhr
, &hdr
);
4003 else if (dwModifier
& COALESCEFLAGS
)
4008 INT origlen
= strlenW(lphttpHdr
->lpszValue
);
4009 INT valuelen
= strlenW(value
);
4011 if (dwModifier
& HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA
)
4014 lphttpHdr
->wFlags
|= HDR_COMMADELIMITED
;
4016 else if (dwModifier
& HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON
)
4019 lphttpHdr
->wFlags
|= HDR_COMMADELIMITED
;
4022 len
= origlen
+ valuelen
+ ((ch
> 0) ? 2 : 0);
4024 lpsztmp
= HeapReAlloc(GetProcessHeap(), 0, lphttpHdr
->lpszValue
, (len
+1)*sizeof(WCHAR
));
4027 lphttpHdr
->lpszValue
= lpsztmp
;
4028 /* FIXME: Increment lphttpHdr->wCount. Perhaps lpszValue should be an array */
4031 lphttpHdr
->lpszValue
[origlen
] = ch
;
4033 lphttpHdr
->lpszValue
[origlen
] = ' ';
4037 memcpy(&lphttpHdr
->lpszValue
[origlen
], value
, valuelen
*sizeof(WCHAR
));
4038 lphttpHdr
->lpszValue
[len
] = '\0';
4043 WARN("HeapReAlloc (%d bytes) failed\n",len
+1);
4044 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
4047 TRACE("<-- %d\n",bSuccess
);
4052 /***********************************************************************
4053 * HTTP_FinishedReading (internal)
4055 * Called when all content from server has been read by client.
4058 BOOL
HTTP_FinishedReading(LPWININETHTTPREQW lpwhr
)
4060 WCHAR szVersion
[10];
4061 WCHAR szConnectionResponse
[20];
4062 DWORD dwBufferSize
= sizeof(szVersion
);
4063 BOOL keepalive
= FALSE
;
4067 /* as per RFC 2068, S8.1.2.1, if the client is HTTP/1.1 then assume that
4068 * the connection is keep-alive by default */
4069 if (HTTP_HttpQueryInfoW(lpwhr
, HTTP_QUERY_VERSION
, szVersion
,
4070 &dwBufferSize
, NULL
) &&
4071 !strcmpiW(szVersion
, g_szHttp1_1
))
4076 dwBufferSize
= sizeof(szConnectionResponse
);
4077 if (HTTP_HttpQueryInfoW(lpwhr
, HTTP_QUERY_PROXY_CONNECTION
, szConnectionResponse
, &dwBufferSize
, NULL
) ||
4078 HTTP_HttpQueryInfoW(lpwhr
, HTTP_QUERY_CONNECTION
, szConnectionResponse
, &dwBufferSize
, NULL
))
4080 keepalive
= !strcmpiW(szConnectionResponse
, szKeepAlive
);
4085 HTTPREQ_CloseConnection(&lpwhr
->hdr
);
4088 /* FIXME: store data in the URL cache here */
4094 /***********************************************************************
4095 * HTTP_GetCustomHeaderIndex (internal)
4097 * Return index of custom header from header array
4100 static INT
HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszField
,
4101 int requested_index
, BOOL request_only
)
4105 TRACE("%s\n", debugstr_w(lpszField
));
4107 for (index
= 0; index
< lpwhr
->nCustHeaders
; index
++)
4109 if (strcmpiW(lpwhr
->pCustHeaders
[index
].lpszField
, lpszField
))
4112 if (request_only
&& !(lpwhr
->pCustHeaders
[index
].wFlags
& HDR_ISREQUEST
))
4115 if (!request_only
&& (lpwhr
->pCustHeaders
[index
].wFlags
& HDR_ISREQUEST
))
4118 if (requested_index
== 0)
4123 if (index
>= lpwhr
->nCustHeaders
)
4126 TRACE("Return: %d\n", index
);
4131 /***********************************************************************
4132 * HTTP_InsertCustomHeader (internal)
4134 * Insert header into array
4137 static BOOL
HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr
, LPHTTPHEADERW lpHdr
)
4140 LPHTTPHEADERW lph
= NULL
;
4143 TRACE("--> %s: %s\n", debugstr_w(lpHdr
->lpszField
), debugstr_w(lpHdr
->lpszValue
));
4144 count
= lpwhr
->nCustHeaders
+ 1;
4146 lph
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, lpwhr
->pCustHeaders
, sizeof(HTTPHEADERW
) * count
);
4148 lph
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(HTTPHEADERW
) * count
);
4152 lpwhr
->pCustHeaders
= lph
;
4153 lpwhr
->pCustHeaders
[count
-1].lpszField
= WININET_strdupW(lpHdr
->lpszField
);
4154 lpwhr
->pCustHeaders
[count
-1].lpszValue
= WININET_strdupW(lpHdr
->lpszValue
);
4155 lpwhr
->pCustHeaders
[count
-1].wFlags
= lpHdr
->wFlags
;
4156 lpwhr
->pCustHeaders
[count
-1].wCount
= lpHdr
->wCount
;
4157 lpwhr
->nCustHeaders
++;
4162 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
4169 /***********************************************************************
4170 * HTTP_DeleteCustomHeader (internal)
4172 * Delete header from array
4173 * If this function is called, the indexs may change.
4175 static BOOL
HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr
, DWORD index
)
4177 if( lpwhr
->nCustHeaders
<= 0 )
4179 if( index
>= lpwhr
->nCustHeaders
)
4181 lpwhr
->nCustHeaders
--;
4183 HeapFree(GetProcessHeap(), 0, lpwhr
->pCustHeaders
[index
].lpszField
);
4184 HeapFree(GetProcessHeap(), 0, lpwhr
->pCustHeaders
[index
].lpszValue
);
4186 memmove( &lpwhr
->pCustHeaders
[index
], &lpwhr
->pCustHeaders
[index
+1],
4187 (lpwhr
->nCustHeaders
- index
)* sizeof(HTTPHEADERW
) );
4188 memset( &lpwhr
->pCustHeaders
[lpwhr
->nCustHeaders
], 0, sizeof(HTTPHEADERW
) );
4194 /***********************************************************************
4195 * HTTP_VerifyValidHeader (internal)
4197 * Verify the given header is not invalid for the given http request
4200 static BOOL
HTTP_VerifyValidHeader(LPWININETHTTPREQW lpwhr
, LPCWSTR field
)
4202 /* Accept-Encoding is stripped from HTTP/1.0 requests. It is invalid */
4203 if (!strcmpW(lpwhr
->lpszVersion
, g_szHttp1_0
) && !strcmpiW(field
, szAccept_Encoding
))
4209 /***********************************************************************
4210 * IsHostInProxyBypassList (@)
4215 BOOL WINAPI
IsHostInProxyBypassList(DWORD flags
, LPCSTR szHost
, DWORD length
)
4217 FIXME("STUB: flags=%d host=%s length=%d\n",flags
,szHost
,length
);