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 #include "inet_ntop.c"
66 WINE_DEFAULT_DEBUG_CHANNEL(wininet
);
68 static const WCHAR g_szHttp1_0
[] = {'H','T','T','P','/','1','.','0',0};
69 static const WCHAR g_szHttp1_1
[] = {'H','T','T','P','/','1','.','1',0};
70 static const WCHAR g_szReferer
[] = {'R','e','f','e','r','e','r',0};
71 static const WCHAR g_szAccept
[] = {'A','c','c','e','p','t',0};
72 static const WCHAR g_szUserAgent
[] = {'U','s','e','r','-','A','g','e','n','t',0};
73 static const WCHAR szHost
[] = { 'H','o','s','t',0 };
74 static const WCHAR szAuthorization
[] = { 'A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
75 static const WCHAR szProxy_Authorization
[] = { 'P','r','o','x','y','-','A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
76 static const WCHAR szStatus
[] = { 'S','t','a','t','u','s',0 };
77 static const WCHAR szKeepAlive
[] = {'K','e','e','p','-','A','l','i','v','e',0};
78 static const WCHAR szGET
[] = { 'G','E','T', 0 };
80 #define MAXHOSTNAME 100
81 #define MAX_FIELD_VALUE_LEN 256
82 #define MAX_FIELD_LEN 256
84 #define HTTP_REFERER g_szReferer
85 #define HTTP_ACCEPT g_szAccept
86 #define HTTP_USERAGENT g_szUserAgent
88 #define HTTP_ADDHDR_FLAG_ADD 0x20000000
89 #define HTTP_ADDHDR_FLAG_ADD_IF_NEW 0x10000000
90 #define HTTP_ADDHDR_FLAG_COALESCE 0x40000000
91 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA 0x40000000
92 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON 0x01000000
93 #define HTTP_ADDHDR_FLAG_REPLACE 0x80000000
94 #define HTTP_ADDHDR_FLAG_REQ 0x02000000
96 #define ARRAYSIZE(array) (sizeof(array)/sizeof((array)[0]))
107 unsigned int auth_data_len
;
108 BOOL finished
; /* finished authenticating */
111 static BOOL
HTTP_OpenConnection(LPWININETHTTPREQW lpwhr
);
112 static BOOL
HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr
, BOOL clear
);
113 static BOOL
HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr
, LPCWSTR field
, LPCWSTR value
, DWORD dwModifier
);
114 static LPWSTR
* HTTP_InterpretHttpHeader(LPCWSTR buffer
);
115 static BOOL
HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr
, LPHTTPHEADERW lpHdr
);
116 static INT
HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszField
, INT index
, BOOL Request
);
117 static BOOL
HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr
, DWORD index
);
118 static LPWSTR
HTTP_build_req( LPCWSTR
*list
, int len
);
119 static BOOL WINAPI
HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr
, DWORD
120 dwInfoLevel
, LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD
122 static BOOL
HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszUrl
);
123 static UINT
HTTP_DecodeBase64(LPCWSTR base64
, LPSTR bin
);
124 static BOOL
HTTP_VerifyValidHeader(LPWININETHTTPREQW lpwhr
, LPCWSTR field
);
125 static void HTTP_DrainContent(WININETHTTPREQW
*req
);
127 LPHTTPHEADERW
HTTP_GetHeader(LPWININETHTTPREQW req
, LPCWSTR head
)
130 HeaderIndex
= HTTP_GetCustomHeaderIndex(req
, head
, 0, TRUE
);
131 if (HeaderIndex
== -1)
134 return &req
->pCustHeaders
[HeaderIndex
];
137 /***********************************************************************
138 * HTTP_Tokenize (internal)
140 * Tokenize a string, allocating memory for the tokens.
142 static LPWSTR
* HTTP_Tokenize(LPCWSTR string
, LPCWSTR token_string
)
144 LPWSTR
* token_array
;
149 /* empty string has no tokens */
153 for (i
= 0; string
[i
]; i
++)
154 if (!strncmpW(string
+i
, token_string
, strlenW(token_string
)))
158 /* we want to skip over separators, but not the null terminator */
159 for (j
= 0; j
< strlenW(token_string
) - 1; j
++)
165 /* add 1 for terminating NULL */
166 token_array
= HeapAlloc(GetProcessHeap(), 0, (tokens
+1) * sizeof(*token_array
));
167 token_array
[tokens
] = NULL
;
170 for (i
= 0; i
< tokens
; i
++)
173 next_token
= strstrW(string
, token_string
);
174 if (!next_token
) next_token
= string
+strlenW(string
);
175 len
= next_token
- string
;
176 token_array
[i
] = HeapAlloc(GetProcessHeap(), 0, (len
+1)*sizeof(WCHAR
));
177 memcpy(token_array
[i
], string
, len
*sizeof(WCHAR
));
178 token_array
[i
][len
] = '\0';
179 string
= next_token
+strlenW(token_string
);
184 /***********************************************************************
185 * HTTP_FreeTokens (internal)
187 * Frees memory returned from HTTP_Tokenize.
189 static void HTTP_FreeTokens(LPWSTR
* token_array
)
192 for (i
= 0; token_array
[i
]; i
++)
193 HeapFree(GetProcessHeap(), 0, token_array
[i
]);
194 HeapFree(GetProcessHeap(), 0, token_array
);
197 /* **********************************************************************
199 * Helper functions for the HttpSendRequest(Ex) functions
202 static void AsyncHttpSendRequestProc(WORKREQUEST
*workRequest
)
204 struct WORKREQ_HTTPSENDREQUESTW
const *req
= &workRequest
->u
.HttpSendRequestW
;
205 LPWININETHTTPREQW lpwhr
= (LPWININETHTTPREQW
) workRequest
->hdr
;
207 TRACE("%p\n", lpwhr
);
209 HTTP_HttpSendRequestW(lpwhr
, req
->lpszHeader
,
210 req
->dwHeaderLength
, req
->lpOptional
, req
->dwOptionalLength
,
211 req
->dwContentLength
, req
->bEndRequest
);
213 HeapFree(GetProcessHeap(), 0, req
->lpszHeader
);
216 static void HTTP_FixURL( LPWININETHTTPREQW lpwhr
)
218 static const WCHAR szSlash
[] = { '/',0 };
219 static const WCHAR szHttp
[] = { 'h','t','t','p',':','/','/', 0 };
221 /* If we don't have a path we set it to root */
222 if (NULL
== lpwhr
->lpszPath
)
223 lpwhr
->lpszPath
= WININET_strdupW(szSlash
);
224 else /* remove \r and \n*/
226 int nLen
= strlenW(lpwhr
->lpszPath
);
227 while ((nLen
>0 ) && ((lpwhr
->lpszPath
[nLen
-1] == '\r')||(lpwhr
->lpszPath
[nLen
-1] == '\n')))
230 lpwhr
->lpszPath
[nLen
]='\0';
232 /* Replace '\' with '/' */
235 if (lpwhr
->lpszPath
[nLen
] == '\\') lpwhr
->lpszPath
[nLen
]='/';
239 if(CSTR_EQUAL
!= CompareStringW( LOCALE_SYSTEM_DEFAULT
, NORM_IGNORECASE
,
240 lpwhr
->lpszPath
, strlenW(lpwhr
->lpszPath
), szHttp
, strlenW(szHttp
) )
241 && lpwhr
->lpszPath
[0] != '/') /* not an absolute path ?? --> fix it !! */
243 WCHAR
*fixurl
= HeapAlloc(GetProcessHeap(), 0,
244 (strlenW(lpwhr
->lpszPath
) + 2)*sizeof(WCHAR
));
246 strcpyW(fixurl
+ 1, lpwhr
->lpszPath
);
247 HeapFree( GetProcessHeap(), 0, lpwhr
->lpszPath
);
248 lpwhr
->lpszPath
= fixurl
;
252 static LPWSTR
HTTP_BuildHeaderRequestString( LPWININETHTTPREQW lpwhr
, LPCWSTR verb
, LPCWSTR path
, LPCWSTR version
)
254 LPWSTR requestString
;
260 static const WCHAR szSpace
[] = { ' ',0 };
261 static const WCHAR szcrlf
[] = {'\r','\n', 0};
262 static const WCHAR szColon
[] = { ':',' ',0 };
263 static const WCHAR sztwocrlf
[] = {'\r','\n','\r','\n', 0};
265 /* allocate space for an array of all the string pointers to be added */
266 len
= (lpwhr
->nCustHeaders
)*4 + 10;
267 req
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(LPCWSTR
) );
269 /* add the verb, path and HTTP version string */
277 /* Append custom request headers */
278 for (i
= 0; i
< lpwhr
->nCustHeaders
; i
++)
280 if (lpwhr
->pCustHeaders
[i
].wFlags
& HDR_ISREQUEST
)
283 req
[n
++] = lpwhr
->pCustHeaders
[i
].lpszField
;
285 req
[n
++] = lpwhr
->pCustHeaders
[i
].lpszValue
;
287 TRACE("Adding custom header %s (%s)\n",
288 debugstr_w(lpwhr
->pCustHeaders
[i
].lpszField
),
289 debugstr_w(lpwhr
->pCustHeaders
[i
].lpszValue
));
294 ERR("oops. buffer overrun\n");
297 requestString
= HTTP_build_req( req
, 4 );
298 HeapFree( GetProcessHeap(), 0, req
);
301 * Set (header) termination string for request
302 * Make sure there's exactly two new lines at the end of the request
304 p
= &requestString
[strlenW(requestString
)-1];
305 while ( (*p
== '\n') || (*p
== '\r') )
307 strcpyW( p
+1, sztwocrlf
);
309 return requestString
;
312 static void HTTP_ProcessCookies( LPWININETHTTPREQW lpwhr
)
314 static const WCHAR szSet_Cookie
[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
316 LPHTTPHEADERW setCookieHeader
;
318 HeaderIndex
= HTTP_GetCustomHeaderIndex(lpwhr
, szSet_Cookie
, 0, FALSE
);
319 if (HeaderIndex
== -1)
321 setCookieHeader
= &lpwhr
->pCustHeaders
[HeaderIndex
];
323 if (!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_COOKIES
) && setCookieHeader
->lpszValue
)
325 int nPosStart
= 0, nPosEnd
= 0, len
;
326 static const WCHAR szFmt
[] = { 'h','t','t','p',':','/','/','%','s','/',0};
328 while (setCookieHeader
->lpszValue
[nPosEnd
] != '\0')
330 LPWSTR buf_cookie
, cookie_name
, cookie_data
;
332 LPWSTR domain
= NULL
;
336 while (setCookieHeader
->lpszValue
[nPosEnd
] != ';' && setCookieHeader
->lpszValue
[nPosEnd
] != ',' &&
337 setCookieHeader
->lpszValue
[nPosEnd
] != '\0')
341 if (setCookieHeader
->lpszValue
[nPosEnd
] == ';')
343 /* fixme: not case sensitive, strcasestr is gnu only */
344 int nDomainPosEnd
= 0;
345 int nDomainPosStart
= 0, nDomainLength
= 0;
346 static const WCHAR szDomain
[] = {'d','o','m','a','i','n','=',0};
347 LPWSTR lpszDomain
= strstrW(&setCookieHeader
->lpszValue
[nPosEnd
], szDomain
);
349 { /* they have specified their own domain, lets use it */
350 while (lpszDomain
[nDomainPosEnd
] != ';' && lpszDomain
[nDomainPosEnd
] != ',' &&
351 lpszDomain
[nDomainPosEnd
] != '\0')
355 nDomainPosStart
= strlenW(szDomain
);
356 nDomainLength
= (nDomainPosEnd
- nDomainPosStart
) + 1;
357 domain
= HeapAlloc(GetProcessHeap(), 0, (nDomainLength
+ 1)*sizeof(WCHAR
));
358 lstrcpynW(domain
, &lpszDomain
[nDomainPosStart
], nDomainLength
+ 1);
361 if (setCookieHeader
->lpszValue
[nPosEnd
] == '\0') break;
362 buf_cookie
= HeapAlloc(GetProcessHeap(), 0, ((nPosEnd
- nPosStart
) + 1)*sizeof(WCHAR
));
363 lstrcpynW(buf_cookie
, &setCookieHeader
->lpszValue
[nPosStart
], (nPosEnd
- nPosStart
) + 1);
364 TRACE("%s\n", debugstr_w(buf_cookie
));
365 while (buf_cookie
[nEqualPos
] != '=' && buf_cookie
[nEqualPos
] != '\0')
369 if (buf_cookie
[nEqualPos
] == '\0' || buf_cookie
[nEqualPos
+ 1] == '\0')
371 HeapFree(GetProcessHeap(), 0, buf_cookie
);
375 cookie_name
= HeapAlloc(GetProcessHeap(), 0, (nEqualPos
+ 1)*sizeof(WCHAR
));
376 lstrcpynW(cookie_name
, buf_cookie
, nEqualPos
+ 1);
377 cookie_data
= &buf_cookie
[nEqualPos
+ 1];
379 Host
= HTTP_GetHeader(lpwhr
,szHost
);
380 len
= lstrlenW((domain
? domain
: (Host
?Host
->lpszValue
:NULL
))) +
381 strlenW(lpwhr
->lpszPath
) + 9;
382 buf_url
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
383 sprintfW(buf_url
, szFmt
, (domain
? domain
: (Host
?Host
->lpszValue
:NULL
))); /* FIXME PATH!!! */
384 InternetSetCookieW(buf_url
, cookie_name
, cookie_data
);
386 HeapFree(GetProcessHeap(), 0, buf_url
);
387 HeapFree(GetProcessHeap(), 0, buf_cookie
);
388 HeapFree(GetProcessHeap(), 0, cookie_name
);
389 HeapFree(GetProcessHeap(), 0, domain
);
395 static inline BOOL
is_basic_auth_value( LPCWSTR pszAuthValue
)
397 static const WCHAR szBasic
[] = {'B','a','s','i','c'}; /* Note: not nul-terminated */
398 return !strncmpiW(pszAuthValue
, szBasic
, ARRAYSIZE(szBasic
)) &&
399 ((pszAuthValue
[ARRAYSIZE(szBasic
)] == ' ') || !pszAuthValue
[ARRAYSIZE(szBasic
)]);
402 static BOOL
HTTP_DoAuthorization( LPWININETHTTPREQW lpwhr
, LPCWSTR pszAuthValue
,
403 struct HttpAuthInfo
**ppAuthInfo
,
404 LPWSTR domain_and_username
, LPWSTR password
)
406 SECURITY_STATUS sec_status
;
407 struct HttpAuthInfo
*pAuthInfo
= *ppAuthInfo
;
410 TRACE("%s\n", debugstr_w(pszAuthValue
));
417 pAuthInfo
= HeapAlloc(GetProcessHeap(), 0, sizeof(*pAuthInfo
));
421 SecInvalidateHandle(&pAuthInfo
->cred
);
422 SecInvalidateHandle(&pAuthInfo
->ctx
);
423 memset(&pAuthInfo
->exp
, 0, sizeof(pAuthInfo
->exp
));
425 pAuthInfo
->auth_data
= NULL
;
426 pAuthInfo
->auth_data_len
= 0;
427 pAuthInfo
->finished
= FALSE
;
429 if (is_basic_auth_value(pszAuthValue
))
431 static const WCHAR szBasic
[] = {'B','a','s','i','c',0};
432 pAuthInfo
->scheme
= WININET_strdupW(szBasic
);
433 if (!pAuthInfo
->scheme
)
435 HeapFree(GetProcessHeap(), 0, pAuthInfo
);
442 SEC_WINNT_AUTH_IDENTITY_W nt_auth_identity
;
444 pAuthInfo
->scheme
= WININET_strdupW(pszAuthValue
);
445 if (!pAuthInfo
->scheme
)
447 HeapFree(GetProcessHeap(), 0, pAuthInfo
);
451 if (domain_and_username
)
453 WCHAR
*user
= strchrW(domain_and_username
, '\\');
454 WCHAR
*domain
= domain_and_username
;
456 /* FIXME: make sure scheme accepts SEC_WINNT_AUTH_IDENTITY before calling AcquireCredentialsHandle */
458 pAuthData
= &nt_auth_identity
;
463 user
= domain_and_username
;
467 nt_auth_identity
.Flags
= SEC_WINNT_AUTH_IDENTITY_UNICODE
;
468 nt_auth_identity
.User
= user
;
469 nt_auth_identity
.UserLength
= strlenW(nt_auth_identity
.User
);
470 nt_auth_identity
.Domain
= domain
;
471 nt_auth_identity
.DomainLength
= domain
? user
- domain
- 1 : 0;
472 nt_auth_identity
.Password
= password
;
473 nt_auth_identity
.PasswordLength
= strlenW(nt_auth_identity
.Password
);
476 /* use default credentials */
479 sec_status
= AcquireCredentialsHandleW(NULL
, pAuthInfo
->scheme
,
480 SECPKG_CRED_OUTBOUND
, NULL
,
482 NULL
, &pAuthInfo
->cred
,
484 if (sec_status
== SEC_E_OK
)
486 PSecPkgInfoW sec_pkg_info
;
487 sec_status
= QuerySecurityPackageInfoW(pAuthInfo
->scheme
, &sec_pkg_info
);
488 if (sec_status
== SEC_E_OK
)
490 pAuthInfo
->max_token
= sec_pkg_info
->cbMaxToken
;
491 FreeContextBuffer(sec_pkg_info
);
494 if (sec_status
!= SEC_E_OK
)
496 WARN("AcquireCredentialsHandleW for scheme %s failed with error 0x%08x\n",
497 debugstr_w(pAuthInfo
->scheme
), sec_status
);
498 HeapFree(GetProcessHeap(), 0, pAuthInfo
->scheme
);
499 HeapFree(GetProcessHeap(), 0, pAuthInfo
);
503 *ppAuthInfo
= pAuthInfo
;
505 else if (pAuthInfo
->finished
)
508 if ((strlenW(pszAuthValue
) < strlenW(pAuthInfo
->scheme
)) ||
509 strncmpiW(pszAuthValue
, pAuthInfo
->scheme
, strlenW(pAuthInfo
->scheme
)))
511 ERR("authentication scheme changed from %s to %s\n",
512 debugstr_w(pAuthInfo
->scheme
), debugstr_w(pszAuthValue
));
516 if (is_basic_auth_value(pszAuthValue
))
522 TRACE("basic authentication\n");
524 /* we don't cache credentials for basic authentication, so we can't
525 * retrieve them if the application didn't pass us any credentials */
526 if (!domain_and_username
) return FALSE
;
528 userlen
= WideCharToMultiByte(CP_UTF8
, 0, domain_and_username
, lstrlenW(domain_and_username
), NULL
, 0, NULL
, NULL
);
529 passlen
= WideCharToMultiByte(CP_UTF8
, 0, password
, lstrlenW(password
), NULL
, 0, NULL
, NULL
);
531 /* length includes a nul terminator, which will be re-used for the ':' */
532 auth_data
= HeapAlloc(GetProcessHeap(), 0, userlen
+ 1 + passlen
);
536 WideCharToMultiByte(CP_UTF8
, 0, domain_and_username
, -1, auth_data
, userlen
, NULL
, NULL
);
537 auth_data
[userlen
] = ':';
538 WideCharToMultiByte(CP_UTF8
, 0, password
, -1, &auth_data
[userlen
+1], passlen
, NULL
, NULL
);
540 pAuthInfo
->auth_data
= auth_data
;
541 pAuthInfo
->auth_data_len
= userlen
+ 1 + passlen
;
542 pAuthInfo
->finished
= TRUE
;
549 SecBufferDesc out_desc
, in_desc
;
551 unsigned char *buffer
;
552 ULONG context_req
= ISC_REQ_CONNECTION
| ISC_REQ_USE_DCE_STYLE
|
553 ISC_REQ_MUTUAL_AUTH
| ISC_REQ_DELEGATE
;
555 in
.BufferType
= SECBUFFER_TOKEN
;
559 in_desc
.ulVersion
= 0;
560 in_desc
.cBuffers
= 1;
561 in_desc
.pBuffers
= &in
;
563 pszAuthData
= pszAuthValue
+ strlenW(pAuthInfo
->scheme
);
564 if (*pszAuthData
== ' ')
567 in
.cbBuffer
= HTTP_DecodeBase64(pszAuthData
, NULL
);
568 in
.pvBuffer
= HeapAlloc(GetProcessHeap(), 0, in
.cbBuffer
);
569 HTTP_DecodeBase64(pszAuthData
, in
.pvBuffer
);
572 buffer
= HeapAlloc(GetProcessHeap(), 0, pAuthInfo
->max_token
);
574 out
.BufferType
= SECBUFFER_TOKEN
;
575 out
.cbBuffer
= pAuthInfo
->max_token
;
576 out
.pvBuffer
= buffer
;
578 out_desc
.ulVersion
= 0;
579 out_desc
.cBuffers
= 1;
580 out_desc
.pBuffers
= &out
;
582 sec_status
= InitializeSecurityContextW(first
? &pAuthInfo
->cred
: NULL
,
583 first
? NULL
: &pAuthInfo
->ctx
,
584 first
? lpwhr
->lpHttpSession
->lpszServerName
: NULL
,
585 context_req
, 0, SECURITY_NETWORK_DREP
,
586 in
.pvBuffer
? &in_desc
: NULL
,
587 0, &pAuthInfo
->ctx
, &out_desc
,
588 &pAuthInfo
->attr
, &pAuthInfo
->exp
);
589 if (sec_status
== SEC_E_OK
)
591 pAuthInfo
->finished
= TRUE
;
592 pAuthInfo
->auth_data
= out
.pvBuffer
;
593 pAuthInfo
->auth_data_len
= out
.cbBuffer
;
594 TRACE("sending last auth packet\n");
596 else if (sec_status
== SEC_I_CONTINUE_NEEDED
)
598 pAuthInfo
->auth_data
= out
.pvBuffer
;
599 pAuthInfo
->auth_data_len
= out
.cbBuffer
;
600 TRACE("sending next auth packet\n");
604 ERR("InitializeSecurityContextW returned error 0x%08x\n", sec_status
);
605 pAuthInfo
->finished
= TRUE
;
606 HeapFree(GetProcessHeap(), 0, out
.pvBuffer
);
614 /***********************************************************************
615 * HTTP_HttpAddRequestHeadersW (internal)
617 static BOOL WINAPI
HTTP_HttpAddRequestHeadersW(LPWININETHTTPREQW lpwhr
,
618 LPCWSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
623 BOOL bSuccess
= FALSE
;
626 TRACE("copying header: %s\n", debugstr_wn(lpszHeader
, dwHeaderLength
));
628 if( dwHeaderLength
== ~0U )
629 len
= strlenW(lpszHeader
);
631 len
= dwHeaderLength
;
632 buffer
= HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR
)*(len
+1) );
633 lstrcpynW( buffer
, lpszHeader
, len
+ 1);
639 LPWSTR
* pFieldAndValue
;
643 while (*lpszEnd
!= '\0')
645 if (*lpszEnd
== '\r' && *(lpszEnd
+ 1) == '\n')
650 if (*lpszStart
== '\0')
653 if (*lpszEnd
== '\r')
656 lpszEnd
+= 2; /* Jump over \r\n */
658 TRACE("interpreting header %s\n", debugstr_w(lpszStart
));
659 pFieldAndValue
= HTTP_InterpretHttpHeader(lpszStart
);
662 bSuccess
= HTTP_VerifyValidHeader(lpwhr
, pFieldAndValue
[0]);
664 bSuccess
= HTTP_ProcessHeader(lpwhr
, pFieldAndValue
[0],
665 pFieldAndValue
[1], dwModifier
| HTTP_ADDHDR_FLAG_REQ
);
666 HTTP_FreeTokens(pFieldAndValue
);
672 HeapFree(GetProcessHeap(), 0, buffer
);
677 /***********************************************************************
678 * HttpAddRequestHeadersW (WININET.@)
680 * Adds one or more HTTP header to the request handler
683 * On Windows if dwHeaderLength includes the trailing '\0', then
684 * HttpAddRequestHeadersW() adds it too. However this results in an
685 * invalid Http header which is rejected by some servers so we probably
686 * don't need to match Windows on that point.
693 BOOL WINAPI
HttpAddRequestHeadersW(HINTERNET hHttpRequest
,
694 LPCWSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
696 BOOL bSuccess
= FALSE
;
697 LPWININETHTTPREQW lpwhr
;
699 TRACE("%p, %s, %i, %i\n", hHttpRequest
, debugstr_wn(lpszHeader
, dwHeaderLength
), dwHeaderLength
, dwModifier
);
704 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
705 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
707 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
710 bSuccess
= HTTP_HttpAddRequestHeadersW( lpwhr
, lpszHeader
, dwHeaderLength
, dwModifier
);
713 WININET_Release( &lpwhr
->hdr
);
718 /***********************************************************************
719 * HttpAddRequestHeadersA (WININET.@)
721 * Adds one or more HTTP header to the request handler
728 BOOL WINAPI
HttpAddRequestHeadersA(HINTERNET hHttpRequest
,
729 LPCSTR lpszHeader
, DWORD dwHeaderLength
, DWORD dwModifier
)
735 TRACE("%p, %s, %i, %i\n", hHttpRequest
, debugstr_an(lpszHeader
, dwHeaderLength
), dwHeaderLength
, dwModifier
);
737 len
= MultiByteToWideChar( CP_ACP
, 0, lpszHeader
, dwHeaderLength
, NULL
, 0 );
738 hdr
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
739 MultiByteToWideChar( CP_ACP
, 0, lpszHeader
, dwHeaderLength
, hdr
, len
);
740 if( dwHeaderLength
!= ~0U )
741 dwHeaderLength
= len
;
743 r
= HttpAddRequestHeadersW( hHttpRequest
, hdr
, dwHeaderLength
, dwModifier
);
745 HeapFree( GetProcessHeap(), 0, hdr
);
750 /***********************************************************************
751 * HttpEndRequestA (WININET.@)
753 * Ends an HTTP request that was started by HttpSendRequestEx
760 BOOL WINAPI
HttpEndRequestA(HINTERNET hRequest
,
761 LPINTERNET_BUFFERSA lpBuffersOut
, DWORD dwFlags
, DWORD_PTR dwContext
)
763 LPINTERNET_BUFFERSA ptr
;
764 LPINTERNET_BUFFERSW lpBuffersOutW
,ptrW
;
767 TRACE("(%p, %p, %08x, %08lx): stub\n", hRequest
, lpBuffersOut
, dwFlags
,
772 lpBuffersOutW
= (LPINTERNET_BUFFERSW
)HeapAlloc(GetProcessHeap(),
773 HEAP_ZERO_MEMORY
, sizeof(INTERNET_BUFFERSW
));
775 lpBuffersOutW
= NULL
;
777 ptrW
= lpBuffersOutW
;
780 if (ptr
->lpvBuffer
&& ptr
->dwBufferLength
)
781 ptrW
->lpvBuffer
= HeapAlloc(GetProcessHeap(),0,ptr
->dwBufferLength
);
782 ptrW
->dwBufferLength
= ptr
->dwBufferLength
;
783 ptrW
->dwBufferTotal
= ptr
->dwBufferTotal
;
786 ptrW
->Next
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,
787 sizeof(INTERNET_BUFFERSW
));
793 rc
= HttpEndRequestW(hRequest
, lpBuffersOutW
, dwFlags
, dwContext
);
797 ptrW
= lpBuffersOutW
;
800 LPINTERNET_BUFFERSW ptrW2
;
802 FIXME("Do we need to translate info out of these buffer?\n");
804 HeapFree(GetProcessHeap(),0,ptrW
->lpvBuffer
);
806 HeapFree(GetProcessHeap(),0,ptrW
);
814 /***********************************************************************
815 * HttpEndRequestW (WININET.@)
817 * Ends an HTTP request that was started by HttpSendRequestEx
824 BOOL WINAPI
HttpEndRequestW(HINTERNET hRequest
,
825 LPINTERNET_BUFFERSW lpBuffersOut
, DWORD dwFlags
, DWORD_PTR dwContext
)
828 LPWININETHTTPREQW lpwhr
;
833 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hRequest
);
835 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
837 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
839 WININET_Release( &lpwhr
->hdr
);
843 lpwhr
->hdr
.dwFlags
|= dwFlags
;
844 lpwhr
->hdr
.dwContext
= dwContext
;
846 /* We appear to do nothing with lpBuffersOut.. is that correct? */
848 SendAsyncCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
849 INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
851 responseLen
= HTTP_GetResponseHeaders(lpwhr
, TRUE
);
855 SendAsyncCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
856 INTERNET_STATUS_RESPONSE_RECEIVED
, &responseLen
, sizeof(DWORD
));
858 /* process cookies here. Is this right? */
859 HTTP_ProcessCookies(lpwhr
);
861 dwBufferSize
= sizeof(lpwhr
->dwContentLength
);
862 if (!HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_FLAG_NUMBER
|HTTP_QUERY_CONTENT_LENGTH
,
863 &lpwhr
->dwContentLength
,&dwBufferSize
,NULL
))
864 lpwhr
->dwContentLength
= -1;
866 if (lpwhr
->dwContentLength
== 0)
867 HTTP_FinishedReading(lpwhr
);
869 if(!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_AUTO_REDIRECT
))
871 DWORD dwCode
,dwCodeLength
=sizeof(DWORD
);
872 if(HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_FLAG_NUMBER
|HTTP_QUERY_STATUS_CODE
,&dwCode
,&dwCodeLength
,NULL
) &&
873 (dwCode
==302 || dwCode
==301))
875 WCHAR szNewLocation
[INTERNET_MAX_URL_LENGTH
];
876 dwBufferSize
=sizeof(szNewLocation
);
877 if(HTTP_HttpQueryInfoW(lpwhr
,HTTP_QUERY_LOCATION
,szNewLocation
,&dwBufferSize
,NULL
))
879 /* redirects are always GETs */
880 HeapFree(GetProcessHeap(),0,lpwhr
->lpszVerb
);
881 lpwhr
->lpszVerb
= WININET_strdupW(szGET
);
882 HTTP_DrainContent(lpwhr
);
883 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
884 INTERNET_STATUS_REDIRECT
, szNewLocation
,
886 rc
= HTTP_HandleRedirect(lpwhr
, szNewLocation
);
888 rc
= HTTP_HttpSendRequestW(lpwhr
, NULL
, 0, NULL
, 0, 0, TRUE
);
893 WININET_Release( &lpwhr
->hdr
);
894 TRACE("%i <--\n",rc
);
898 /***********************************************************************
899 * HttpOpenRequestW (WININET.@)
901 * Open a HTTP request handle
904 * HINTERNET a HTTP request handle on success
908 HINTERNET WINAPI
HttpOpenRequestW(HINTERNET hHttpSession
,
909 LPCWSTR lpszVerb
, LPCWSTR lpszObjectName
, LPCWSTR lpszVersion
,
910 LPCWSTR lpszReferrer
, LPCWSTR
*lpszAcceptTypes
,
911 DWORD dwFlags
, DWORD_PTR dwContext
)
913 LPWININETHTTPSESSIONW lpwhs
;
914 HINTERNET handle
= NULL
;
916 TRACE("(%p, %s, %s, %s, %s, %p, %08x, %08lx)\n", hHttpSession
,
917 debugstr_w(lpszVerb
), debugstr_w(lpszObjectName
),
918 debugstr_w(lpszVersion
), debugstr_w(lpszReferrer
), lpszAcceptTypes
,
920 if(lpszAcceptTypes
!=NULL
)
923 for(i
=0;lpszAcceptTypes
[i
]!=NULL
;i
++)
924 TRACE("\taccept type: %s\n",debugstr_w(lpszAcceptTypes
[i
]));
927 lpwhs
= (LPWININETHTTPSESSIONW
) WININET_GetObject( hHttpSession
);
928 if (NULL
== lpwhs
|| lpwhs
->hdr
.htype
!= WH_HHTTPSESSION
)
930 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
935 * My tests seem to show that the windows version does not
936 * become asynchronous until after this point. And anyhow
937 * if this call was asynchronous then how would you get the
938 * necessary HINTERNET pointer returned by this function.
941 handle
= HTTP_HttpOpenRequestW(lpwhs
, lpszVerb
, lpszObjectName
,
942 lpszVersion
, lpszReferrer
, lpszAcceptTypes
,
946 WININET_Release( &lpwhs
->hdr
);
947 TRACE("returning %p\n", handle
);
952 /***********************************************************************
953 * HttpOpenRequestA (WININET.@)
955 * Open a HTTP request handle
958 * HINTERNET a HTTP request handle on success
962 HINTERNET WINAPI
HttpOpenRequestA(HINTERNET hHttpSession
,
963 LPCSTR lpszVerb
, LPCSTR lpszObjectName
, LPCSTR lpszVersion
,
964 LPCSTR lpszReferrer
, LPCSTR
*lpszAcceptTypes
,
965 DWORD dwFlags
, DWORD_PTR dwContext
)
967 LPWSTR szVerb
= NULL
, szObjectName
= NULL
;
968 LPWSTR szVersion
= NULL
, szReferrer
= NULL
, *szAcceptTypes
= NULL
;
969 INT len
, acceptTypesCount
;
970 HINTERNET rc
= FALSE
;
973 TRACE("(%p, %s, %s, %s, %s, %p, %08x, %08lx)\n", hHttpSession
,
974 debugstr_a(lpszVerb
), debugstr_a(lpszObjectName
),
975 debugstr_a(lpszVersion
), debugstr_a(lpszReferrer
), lpszAcceptTypes
,
980 len
= MultiByteToWideChar(CP_ACP
, 0, lpszVerb
, -1, NULL
, 0 );
981 szVerb
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
984 MultiByteToWideChar(CP_ACP
, 0, lpszVerb
, -1, szVerb
, len
);
989 len
= MultiByteToWideChar(CP_ACP
, 0, lpszObjectName
, -1, NULL
, 0 );
990 szObjectName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
993 MultiByteToWideChar(CP_ACP
, 0, lpszObjectName
, -1, szObjectName
, len
);
998 len
= MultiByteToWideChar(CP_ACP
, 0, lpszVersion
, -1, NULL
, 0 );
999 szVersion
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1002 MultiByteToWideChar(CP_ACP
, 0, lpszVersion
, -1, szVersion
, len
);
1007 len
= MultiByteToWideChar(CP_ACP
, 0, lpszReferrer
, -1, NULL
, 0 );
1008 szReferrer
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1011 MultiByteToWideChar(CP_ACP
, 0, lpszReferrer
, -1, szReferrer
, len
);
1014 if (lpszAcceptTypes
)
1016 acceptTypesCount
= 0;
1017 types
= lpszAcceptTypes
;
1020 /* find out how many there are */
1021 if (((ULONG_PTR
)*types
>> 16) && **types
)
1023 TRACE("accept type: %s\n", debugstr_a(*types
));
1028 szAcceptTypes
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
*) * (acceptTypesCount
+1));
1029 if (!szAcceptTypes
) goto end
;
1031 acceptTypesCount
= 0;
1032 types
= lpszAcceptTypes
;
1035 if (((ULONG_PTR
)*types
>> 16) && **types
)
1037 len
= MultiByteToWideChar(CP_ACP
, 0, *types
, -1, NULL
, 0 );
1038 szAcceptTypes
[acceptTypesCount
] = HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1039 if (!szAcceptTypes
[acceptTypesCount
]) goto end
;
1041 MultiByteToWideChar(CP_ACP
, 0, *types
, -1, szAcceptTypes
[acceptTypesCount
], len
);
1046 szAcceptTypes
[acceptTypesCount
] = NULL
;
1048 else szAcceptTypes
= 0;
1050 rc
= HttpOpenRequestW(hHttpSession
, szVerb
, szObjectName
,
1051 szVersion
, szReferrer
,
1052 (LPCWSTR
*)szAcceptTypes
, dwFlags
, dwContext
);
1057 acceptTypesCount
= 0;
1058 while (szAcceptTypes
[acceptTypesCount
])
1060 HeapFree(GetProcessHeap(), 0, szAcceptTypes
[acceptTypesCount
]);
1063 HeapFree(GetProcessHeap(), 0, szAcceptTypes
);
1065 HeapFree(GetProcessHeap(), 0, szReferrer
);
1066 HeapFree(GetProcessHeap(), 0, szVersion
);
1067 HeapFree(GetProcessHeap(), 0, szObjectName
);
1068 HeapFree(GetProcessHeap(), 0, szVerb
);
1073 /***********************************************************************
1076 static UINT
HTTP_EncodeBase64( LPCSTR bin
, unsigned int len
, LPWSTR base64
)
1079 static const CHAR HTTP_Base64Enc
[] =
1080 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
1084 /* first 6 bits, all from bin[0] */
1085 base64
[n
++] = HTTP_Base64Enc
[(bin
[0] & 0xfc) >> 2];
1086 x
= (bin
[0] & 3) << 4;
1088 /* next 6 bits, 2 from bin[0] and 4 from bin[1] */
1091 base64
[n
++] = HTTP_Base64Enc
[x
];
1096 base64
[n
++] = HTTP_Base64Enc
[ x
| ( (bin
[1]&0xf0) >> 4 ) ];
1097 x
= ( bin
[1] & 0x0f ) << 2;
1099 /* next 6 bits 4 from bin[1] and 2 from bin[2] */
1102 base64
[n
++] = HTTP_Base64Enc
[x
];
1106 base64
[n
++] = HTTP_Base64Enc
[ x
| ( (bin
[2]&0xc0 ) >> 6 ) ];
1108 /* last 6 bits, all from bin [2] */
1109 base64
[n
++] = HTTP_Base64Enc
[ bin
[2] & 0x3f ];
1117 #define CH(x) (((x) >= 'A' && (x) <= 'Z') ? (x) - 'A' : \
1118 ((x) >= 'a' && (x) <= 'z') ? (x) - 'a' + 26 : \
1119 ((x) >= '0' && (x) <= '9') ? (x) - '0' + 52 : \
1120 ((x) == '+') ? 62 : ((x) == '/') ? 63 : -1)
1121 static const signed char HTTP_Base64Dec
[256] =
1123 CH( 0),CH( 1),CH( 2),CH( 3),CH( 4),CH( 5),CH( 6),CH( 7),CH( 8),CH( 9),
1124 CH(10),CH(11),CH(12),CH(13),CH(14),CH(15),CH(16),CH(17),CH(18),CH(19),
1125 CH(20),CH(21),CH(22),CH(23),CH(24),CH(25),CH(26),CH(27),CH(28),CH(29),
1126 CH(30),CH(31),CH(32),CH(33),CH(34),CH(35),CH(36),CH(37),CH(38),CH(39),
1127 CH(40),CH(41),CH(42),CH(43),CH(44),CH(45),CH(46),CH(47),CH(48),CH(49),
1128 CH(50),CH(51),CH(52),CH(53),CH(54),CH(55),CH(56),CH(57),CH(58),CH(59),
1129 CH(60),CH(61),CH(62),CH(63),CH(64),CH(65),CH(66),CH(67),CH(68),CH(69),
1130 CH(70),CH(71),CH(72),CH(73),CH(74),CH(75),CH(76),CH(77),CH(78),CH(79),
1131 CH(80),CH(81),CH(82),CH(83),CH(84),CH(85),CH(86),CH(87),CH(88),CH(89),
1132 CH(90),CH(91),CH(92),CH(93),CH(94),CH(95),CH(96),CH(97),CH(98),CH(99),
1133 CH(100),CH(101),CH(102),CH(103),CH(104),CH(105),CH(106),CH(107),CH(108),CH(109),
1134 CH(110),CH(111),CH(112),CH(113),CH(114),CH(115),CH(116),CH(117),CH(118),CH(119),
1135 CH(120),CH(121),CH(122),CH(123),CH(124),CH(125),CH(126),CH(127),CH(128),CH(129),
1136 CH(130),CH(131),CH(132),CH(133),CH(134),CH(135),CH(136),CH(137),CH(138),CH(139),
1137 CH(140),CH(141),CH(142),CH(143),CH(144),CH(145),CH(146),CH(147),CH(148),CH(149),
1138 CH(150),CH(151),CH(152),CH(153),CH(154),CH(155),CH(156),CH(157),CH(158),CH(159),
1139 CH(160),CH(161),CH(162),CH(163),CH(164),CH(165),CH(166),CH(167),CH(168),CH(169),
1140 CH(170),CH(171),CH(172),CH(173),CH(174),CH(175),CH(176),CH(177),CH(178),CH(179),
1141 CH(180),CH(181),CH(182),CH(183),CH(184),CH(185),CH(186),CH(187),CH(188),CH(189),
1142 CH(190),CH(191),CH(192),CH(193),CH(194),CH(195),CH(196),CH(197),CH(198),CH(199),
1143 CH(200),CH(201),CH(202),CH(203),CH(204),CH(205),CH(206),CH(207),CH(208),CH(209),
1144 CH(210),CH(211),CH(212),CH(213),CH(214),CH(215),CH(216),CH(217),CH(218),CH(219),
1145 CH(220),CH(221),CH(222),CH(223),CH(224),CH(225),CH(226),CH(227),CH(228),CH(229),
1146 CH(230),CH(231),CH(232),CH(233),CH(234),CH(235),CH(236),CH(237),CH(238),CH(239),
1147 CH(240),CH(241),CH(242),CH(243),CH(244),CH(245),CH(246),CH(247),CH(248), CH(249),
1148 CH(250),CH(251),CH(252),CH(253),CH(254),CH(255),
1152 /***********************************************************************
1155 static UINT
HTTP_DecodeBase64( LPCWSTR base64
, LPSTR bin
)
1163 if (base64
[0] >= ARRAYSIZE(HTTP_Base64Dec
) ||
1164 ((in
[0] = HTTP_Base64Dec
[base64
[0]]) == -1) ||
1165 base64
[1] >= ARRAYSIZE(HTTP_Base64Dec
) ||
1166 ((in
[1] = HTTP_Base64Dec
[base64
[1]]) == -1))
1168 WARN("invalid base64: %s\n", debugstr_w(base64
));
1172 bin
[n
] = (unsigned char) (in
[0] << 2 | in
[1] >> 4);
1175 if ((base64
[2] == '=') && (base64
[3] == '='))
1177 if (base64
[2] > ARRAYSIZE(HTTP_Base64Dec
) ||
1178 ((in
[2] = HTTP_Base64Dec
[base64
[2]]) == -1))
1180 WARN("invalid base64: %s\n", debugstr_w(&base64
[2]));
1184 bin
[n
] = (unsigned char) (in
[1] << 4 | in
[2] >> 2);
1187 if (base64
[3] == '=')
1189 if (base64
[3] > ARRAYSIZE(HTTP_Base64Dec
) ||
1190 ((in
[3] = HTTP_Base64Dec
[base64
[3]]) == -1))
1192 WARN("invalid base64: %s\n", debugstr_w(&base64
[3]));
1196 bin
[n
] = (unsigned char) (((in
[2] << 6) & 0xc0) | in
[3]);
1205 /***********************************************************************
1206 * HTTP_InsertAuthorization
1208 * Insert or delete the authorization field in the request header.
1210 static BOOL
HTTP_InsertAuthorization( LPWININETHTTPREQW lpwhr
, struct HttpAuthInfo
*pAuthInfo
, LPCWSTR header
)
1214 static const WCHAR wszSpace
[] = {' ',0};
1215 static const WCHAR wszBasic
[] = {'B','a','s','i','c',0};
1217 WCHAR
*authorization
= NULL
;
1219 if (pAuthInfo
->auth_data_len
)
1221 /* scheme + space + base64 encoded data (3/2/1 bytes data -> 4 bytes of characters) */
1222 len
= strlenW(pAuthInfo
->scheme
)+1+((pAuthInfo
->auth_data_len
+2)*4)/3;
1223 authorization
= HeapAlloc(GetProcessHeap(), 0, (len
+1)*sizeof(WCHAR
));
1227 strcpyW(authorization
, pAuthInfo
->scheme
);
1228 strcatW(authorization
, wszSpace
);
1229 HTTP_EncodeBase64(pAuthInfo
->auth_data
,
1230 pAuthInfo
->auth_data_len
,
1231 authorization
+strlenW(authorization
));
1233 /* clear the data as it isn't valid now that it has been sent to the
1234 * server, unless it's Basic authentication which doesn't do
1235 * connection tracking */
1236 if (strcmpiW(pAuthInfo
->scheme
, wszBasic
))
1238 HeapFree(GetProcessHeap(), 0, pAuthInfo
->auth_data
);
1239 pAuthInfo
->auth_data
= NULL
;
1240 pAuthInfo
->auth_data_len
= 0;
1244 TRACE("Inserting authorization: %s\n", debugstr_w(authorization
));
1246 HTTP_ProcessHeader(lpwhr
, header
, authorization
, HTTP_ADDHDR_FLAG_REQ
| HTTP_ADDHDR_FLAG_REPLACE
);
1248 HeapFree(GetProcessHeap(), 0, authorization
);
1253 static WCHAR
*HTTP_BuildProxyRequestUrl(WININETHTTPREQW
*req
)
1255 WCHAR new_location
[INTERNET_MAX_URL_LENGTH
], *url
;
1258 size
= sizeof(new_location
);
1259 if (HTTP_HttpQueryInfoW(req
, HTTP_QUERY_LOCATION
, new_location
, &size
, NULL
))
1261 if (!(url
= HeapAlloc( GetProcessHeap(), 0, size
+ sizeof(WCHAR
) ))) return NULL
;
1262 strcpyW( url
, new_location
);
1266 static const WCHAR slash
[] = { '/',0 };
1267 static const WCHAR format
[] = { 'h','t','t','p',':','/','/','%','s',':','%','d',0 };
1268 static const WCHAR formatSSL
[] = { 'h','t','t','p','s',':','/','/','%','s',':','%','d',0 };
1269 WININETHTTPSESSIONW
*session
= req
->lpHttpSession
;
1271 size
= 16; /* "https://" + sizeof(port#) + ":/\0" */
1272 size
+= strlenW( session
->lpszHostName
) + strlenW( req
->lpszPath
);
1274 if (!(url
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(WCHAR
) ))) return NULL
;
1276 if (req
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
)
1277 sprintfW( url
, formatSSL
, session
->lpszHostName
, session
->nHostPort
);
1279 sprintfW( url
, format
, session
->lpszHostName
, session
->nHostPort
);
1280 if (req
->lpszPath
[0] != '/') strcatW( url
, slash
);
1281 strcatW( url
, req
->lpszPath
);
1283 TRACE("url=%s\n", debugstr_w(url
));
1287 /***********************************************************************
1288 * HTTP_DealWithProxy
1290 static BOOL
HTTP_DealWithProxy( LPWININETAPPINFOW hIC
,
1291 LPWININETHTTPSESSIONW lpwhs
, LPWININETHTTPREQW lpwhr
)
1293 WCHAR buf
[MAXHOSTNAME
];
1294 WCHAR proxy
[MAXHOSTNAME
+ 15]; /* 15 == "http://" + sizeof(port#) + ":/\0" */
1295 static WCHAR szNul
[] = { 0 };
1296 URL_COMPONENTSW UrlComponents
;
1297 static const WCHAR szHttp
[] = { 'h','t','t','p',':','/','/',0 };
1298 static const WCHAR szFormat
[] = { 'h','t','t','p',':','/','/','%','s',0 };
1300 memset( &UrlComponents
, 0, sizeof UrlComponents
);
1301 UrlComponents
.dwStructSize
= sizeof UrlComponents
;
1302 UrlComponents
.lpszHostName
= buf
;
1303 UrlComponents
.dwHostNameLength
= MAXHOSTNAME
;
1305 if( CSTR_EQUAL
!= CompareStringW(LOCALE_SYSTEM_DEFAULT
, NORM_IGNORECASE
,
1306 hIC
->lpszProxy
,strlenW(szHttp
),szHttp
,strlenW(szHttp
)) )
1307 sprintfW(proxy
, szFormat
, hIC
->lpszProxy
);
1309 strcpyW(proxy
, hIC
->lpszProxy
);
1310 if( !InternetCrackUrlW(proxy
, 0, 0, &UrlComponents
) )
1312 if( UrlComponents
.dwHostNameLength
== 0 )
1315 if( !lpwhr
->lpszPath
)
1316 lpwhr
->lpszPath
= szNul
;
1318 if(UrlComponents
.nPort
== INTERNET_INVALID_PORT_NUMBER
)
1319 UrlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
1321 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszServerName
);
1322 lpwhs
->lpszServerName
= WININET_strdupW(UrlComponents
.lpszHostName
);
1323 lpwhs
->nServerPort
= UrlComponents
.nPort
;
1325 TRACE("proxy server=%s port=%d\n", debugstr_w(lpwhs
->lpszServerName
), lpwhs
->nServerPort
);
1329 static BOOL
HTTP_ResolveName(LPWININETHTTPREQW lpwhr
)
1332 LPWININETHTTPSESSIONW lpwhs
= lpwhr
->lpHttpSession
;
1334 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1335 INTERNET_STATUS_RESOLVING_NAME
,
1336 lpwhs
->lpszServerName
,
1337 strlenW(lpwhs
->lpszServerName
)+1);
1339 if (!GetAddress(lpwhs
->lpszServerName
, lpwhs
->nServerPort
,
1340 &lpwhs
->socketAddress
))
1342 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED
);
1346 inet_ntop(lpwhs
->socketAddress
.sin_family
, &lpwhs
->socketAddress
.sin_addr
,
1347 szaddr
, sizeof(szaddr
));
1348 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1349 INTERNET_STATUS_NAME_RESOLVED
,
1350 szaddr
, strlen(szaddr
)+1);
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
;
1397 LPWININETHTTPSESSIONW lpwhs
= NULL
;
1399 TRACE("%p\n",lpwhr
);
1401 if (!NETCON_connected(&lpwhr
->netConnection
))
1404 if (lpwhr
->pAuthInfo
)
1406 if (SecIsValidHandle(&lpwhr
->pAuthInfo
->ctx
))
1407 DeleteSecurityContext(&lpwhr
->pAuthInfo
->ctx
);
1408 if (SecIsValidHandle(&lpwhr
->pAuthInfo
->cred
))
1409 FreeCredentialsHandle(&lpwhr
->pAuthInfo
->cred
);
1411 HeapFree(GetProcessHeap(), 0, lpwhr
->pAuthInfo
->auth_data
);
1412 HeapFree(GetProcessHeap(), 0, lpwhr
->pAuthInfo
->scheme
);
1413 HeapFree(GetProcessHeap(), 0, lpwhr
->pAuthInfo
);
1414 lpwhr
->pAuthInfo
= NULL
;
1416 if (lpwhr
->pProxyAuthInfo
)
1418 if (SecIsValidHandle(&lpwhr
->pProxyAuthInfo
->ctx
))
1419 DeleteSecurityContext(&lpwhr
->pProxyAuthInfo
->ctx
);
1420 if (SecIsValidHandle(&lpwhr
->pProxyAuthInfo
->cred
))
1421 FreeCredentialsHandle(&lpwhr
->pProxyAuthInfo
->cred
);
1423 HeapFree(GetProcessHeap(), 0, lpwhr
->pProxyAuthInfo
->auth_data
);
1424 HeapFree(GetProcessHeap(), 0, lpwhr
->pProxyAuthInfo
->scheme
);
1425 HeapFree(GetProcessHeap(), 0, lpwhr
->pProxyAuthInfo
);
1426 lpwhr
->pProxyAuthInfo
= NULL
;
1429 lpwhs
= lpwhr
->lpHttpSession
;
1431 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1432 INTERNET_STATUS_CLOSING_CONNECTION
, 0, 0);
1434 NETCON_close(&lpwhr
->netConnection
);
1436 INTERNET_SendCallback(&lpwhr
->hdr
, lpwhr
->hdr
.dwContext
,
1437 INTERNET_STATUS_CONNECTION_CLOSED
, 0, 0);
1440 static DWORD
HTTPREQ_QueryOption(WININETHANDLEHEADER
*hdr
, DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
1442 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1445 case INTERNET_OPTION_HANDLE_TYPE
:
1446 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
1448 if (*size
< sizeof(ULONG
))
1449 return ERROR_INSUFFICIENT_BUFFER
;
1451 *size
= sizeof(DWORD
);
1452 *(DWORD
*)buffer
= INTERNET_HANDLE_TYPE_HTTP_REQUEST
;
1453 return ERROR_SUCCESS
;
1455 case INTERNET_OPTION_URL
: {
1456 WCHAR url
[INTERNET_MAX_URL_LENGTH
];
1460 static const WCHAR formatW
[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
1461 static const WCHAR hostW
[] = {'H','o','s','t',0};
1463 TRACE("INTERNET_OPTION_URL\n");
1465 host
= HTTP_GetHeader(req
, hostW
);
1466 sprintfW(url
, formatW
, host
->lpszValue
, req
->lpszPath
);
1467 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url
));
1470 len
= (strlenW(url
)+1) * sizeof(WCHAR
);
1472 return ERROR_INSUFFICIENT_BUFFER
;
1475 strcpyW(buffer
, url
);
1476 return ERROR_SUCCESS
;
1478 len
= WideCharToMultiByte(CP_ACP
, 0, url
, -1, buffer
, *size
, NULL
, NULL
);
1480 return ERROR_INSUFFICIENT_BUFFER
;
1483 return ERROR_SUCCESS
;
1487 case INTERNET_OPTION_DATAFILE_NAME
: {
1490 TRACE("INTERNET_OPTION_DATAFILE_NAME\n");
1492 if(!req
->lpszCacheFile
) {
1494 return ERROR_INTERNET_ITEM_NOT_FOUND
;
1498 req_size
= (lstrlenW(req
->lpszCacheFile
)+1) * sizeof(WCHAR
);
1499 if(*size
< req_size
)
1500 return ERROR_INSUFFICIENT_BUFFER
;
1503 memcpy(buffer
, req
->lpszCacheFile
, *size
);
1504 return ERROR_SUCCESS
;
1506 req_size
= WideCharToMultiByte(CP_ACP
, 0, req
->lpszCacheFile
, -1, NULL
, 0, NULL
, NULL
);
1507 if (req_size
> *size
)
1508 return ERROR_INSUFFICIENT_BUFFER
;
1510 *size
= WideCharToMultiByte(CP_ACP
, 0, req
->lpszCacheFile
,
1511 -1, buffer
, *size
, NULL
, NULL
);
1512 return ERROR_SUCCESS
;
1516 case INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT
: {
1517 PCCERT_CONTEXT context
;
1519 if(*size
< sizeof(INTERNET_CERTIFICATE_INFOW
)) {
1520 *size
= sizeof(INTERNET_CERTIFICATE_INFOW
);
1521 return ERROR_INSUFFICIENT_BUFFER
;
1524 context
= (PCCERT_CONTEXT
)NETCON_GetCert(&(req
->netConnection
));
1526 INTERNET_CERTIFICATE_INFOW
*info
= (INTERNET_CERTIFICATE_INFOW
*)buffer
;
1529 memset(info
, 0, sizeof(INTERNET_CERTIFICATE_INFOW
));
1530 info
->ftExpiry
= context
->pCertInfo
->NotAfter
;
1531 info
->ftStart
= context
->pCertInfo
->NotBefore
;
1533 len
= CertNameToStrW(context
->dwCertEncodingType
,
1534 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
, NULL
, 0);
1535 info
->lpszSubjectInfo
= LocalAlloc(0, len
*sizeof(WCHAR
));
1536 if(info
->lpszSubjectInfo
)
1537 CertNameToStrW(context
->dwCertEncodingType
,
1538 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
,
1539 info
->lpszSubjectInfo
, len
);
1540 len
= CertNameToStrW(context
->dwCertEncodingType
,
1541 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
, NULL
, 0);
1542 info
->lpszIssuerInfo
= LocalAlloc(0, len
*sizeof(WCHAR
));
1543 if (info
->lpszIssuerInfo
)
1544 CertNameToStrW(context
->dwCertEncodingType
,
1545 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
,
1546 info
->lpszIssuerInfo
, len
);
1548 INTERNET_CERTIFICATE_INFOA
*infoA
= (INTERNET_CERTIFICATE_INFOA
*)info
;
1550 len
= CertNameToStrA(context
->dwCertEncodingType
,
1551 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
, NULL
, 0);
1552 infoA
->lpszSubjectInfo
= LocalAlloc(0, len
);
1553 if(infoA
->lpszSubjectInfo
)
1554 CertNameToStrA(context
->dwCertEncodingType
,
1555 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
,
1556 infoA
->lpszSubjectInfo
, len
);
1557 len
= CertNameToStrA(context
->dwCertEncodingType
,
1558 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
, NULL
, 0);
1559 infoA
->lpszIssuerInfo
= LocalAlloc(0, len
);
1560 if(infoA
->lpszIssuerInfo
)
1561 CertNameToStrA(context
->dwCertEncodingType
,
1562 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
,
1563 infoA
->lpszIssuerInfo
, len
);
1567 * Contrary to MSDN, these do not appear to be set.
1569 * lpszSignatureAlgName
1570 * lpszEncryptionAlgName
1573 CertFreeCertificateContext(context
);
1574 return ERROR_SUCCESS
;
1579 FIXME("Not implemented option %d\n", option
);
1580 return ERROR_INTERNET_INVALID_OPTION
;
1583 static DWORD
HTTPREQ_SetOption(WININETHANDLEHEADER
*hdr
, DWORD option
, void *buffer
, DWORD size
)
1585 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1588 case INTERNET_OPTION_SEND_TIMEOUT
:
1589 case INTERNET_OPTION_RECEIVE_TIMEOUT
:
1590 TRACE("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT\n");
1592 if (size
!= sizeof(DWORD
))
1593 return ERROR_INVALID_PARAMETER
;
1595 return NETCON_set_timeout(&req
->netConnection
, option
== INTERNET_OPTION_SEND_TIMEOUT
,
1599 return ERROR_INTERNET_INVALID_OPTION
;
1602 static DWORD
HTTP_Read(WININETHTTPREQW
*req
, void *buffer
, DWORD size
, DWORD
*read
, BOOL sync
)
1606 if(!NETCON_recv(&req
->netConnection
, buffer
, min(size
, req
->dwContentLength
- req
->dwContentRead
),
1607 sync
? MSG_WAITALL
: 0, &bytes_read
)) {
1608 if(req
->dwContentLength
!= -1 && req
->dwContentRead
!= req
->dwContentLength
)
1609 ERR("not all data received %d/%d\n", req
->dwContentRead
, req
->dwContentLength
);
1611 /* always return success, even if the network layer returns an error */
1613 HTTP_FinishedReading(req
);
1614 return ERROR_SUCCESS
;
1617 req
->dwContentRead
+= bytes_read
;
1620 if(req
->lpszCacheFile
) {
1622 DWORD dwBytesWritten
;
1624 res
= WriteFile(req
->hCacheFile
, buffer
, bytes_read
, &dwBytesWritten
, NULL
);
1626 WARN("WriteFile failed: %u\n", GetLastError());
1629 if(!bytes_read
&& (req
->dwContentRead
== req
->dwContentLength
))
1630 HTTP_FinishedReading(req
);
1632 return ERROR_SUCCESS
;
1635 static DWORD
get_chunk_size(const char *buffer
)
1640 for (p
= buffer
; *p
; p
++)
1642 if (*p
>= '0' && *p
<= '9') size
= size
* 16 + *p
- '0';
1643 else if (*p
>= 'a' && *p
<= 'f') size
= size
* 16 + *p
- 'a' + 10;
1644 else if (*p
>= 'A' && *p
<= 'F') size
= size
* 16 + *p
- 'A' + 10;
1645 else if (*p
== ';') break;
1650 static DWORD
HTTP_ReadChunked(WININETHTTPREQW
*req
, void *buffer
, DWORD size
, DWORD
*read
, BOOL sync
)
1652 char reply
[MAX_REPLY_LEN
], *p
= buffer
;
1653 DWORD buflen
, to_read
, to_write
= size
;
1659 if (*read
== size
) break;
1661 if (req
->dwContentLength
== ~0UL) /* new chunk */
1663 buflen
= sizeof(reply
);
1664 if (!NETCON_getNextLine(&req
->netConnection
, reply
, &buflen
)) break;
1666 if (!(req
->dwContentLength
= get_chunk_size(reply
)))
1668 /* zero sized chunk marks end of transfer; read any trailing headers and return */
1669 HTTP_GetResponseHeaders(req
, FALSE
);
1673 to_read
= min(to_write
, req
->dwContentLength
- req
->dwContentRead
);
1675 if (!NETCON_recv(&req
->netConnection
, p
, to_read
, sync
? MSG_WAITALL
: 0, &bytes_read
))
1677 if (bytes_read
!= to_read
)
1678 ERR("Not all data received %d/%d\n", bytes_read
, to_read
);
1680 /* always return success, even if the network layer returns an error */
1684 if (!bytes_read
) break;
1686 req
->dwContentRead
+= bytes_read
;
1687 to_write
-= bytes_read
;
1688 *read
+= bytes_read
;
1690 if (req
->lpszCacheFile
)
1692 DWORD dwBytesWritten
;
1694 if (!WriteFile(req
->hCacheFile
, p
, bytes_read
, &dwBytesWritten
, NULL
))
1695 WARN("WriteFile failed: %u\n", GetLastError());
1699 if (req
->dwContentRead
== req
->dwContentLength
) /* chunk complete */
1701 req
->dwContentRead
= 0;
1702 req
->dwContentLength
= ~0UL;
1704 buflen
= sizeof(reply
);
1705 if (!NETCON_getNextLine(&req
->netConnection
, reply
, &buflen
))
1707 ERR("Malformed chunk\n");
1713 if (!*read
) HTTP_FinishedReading(req
);
1714 return ERROR_SUCCESS
;
1717 static DWORD
HTTPREQ_Read(WININETHTTPREQW
*req
, void *buffer
, DWORD size
, DWORD
*read
, BOOL sync
)
1720 DWORD buflen
= sizeof(encoding
);
1721 static const WCHAR szChunked
[] = {'c','h','u','n','k','e','d',0};
1723 if (HTTP_HttpQueryInfoW(req
, HTTP_QUERY_TRANSFER_ENCODING
, encoding
, &buflen
, NULL
) &&
1724 !strcmpiW(encoding
, szChunked
))
1726 return HTTP_ReadChunked(req
, buffer
, size
, read
, sync
);
1729 return HTTP_Read(req
, buffer
, size
, read
, sync
);
1732 static DWORD
HTTPREQ_ReadFile(WININETHANDLEHEADER
*hdr
, void *buffer
, DWORD size
, DWORD
*read
)
1734 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1735 return HTTPREQ_Read(req
, buffer
, size
, read
, TRUE
);
1738 static void HTTPREQ_AsyncReadFileExProc(WORKREQUEST
*workRequest
)
1740 struct WORKREQ_INTERNETREADFILEEXA
const *data
= &workRequest
->u
.InternetReadFileExA
;
1741 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)workRequest
->hdr
;
1742 INTERNET_ASYNC_RESULT iar
;
1745 TRACE("INTERNETREADFILEEXA %p\n", workRequest
->hdr
);
1747 res
= HTTPREQ_Read(req
, data
->lpBuffersOut
->lpvBuffer
,
1748 data
->lpBuffersOut
->dwBufferLength
, &data
->lpBuffersOut
->dwBufferLength
, TRUE
);
1750 iar
.dwResult
= res
== ERROR_SUCCESS
;
1753 INTERNET_SendCallback(&req
->hdr
, req
->hdr
.dwContext
,
1754 INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
1755 sizeof(INTERNET_ASYNC_RESULT
));
1758 static DWORD
HTTPREQ_ReadFileExA(WININETHANDLEHEADER
*hdr
, INTERNET_BUFFERSA
*buffers
,
1759 DWORD flags
, DWORD_PTR context
)
1762 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1765 if (flags
& ~(IRF_ASYNC
|IRF_NO_WAIT
))
1766 FIXME("these dwFlags aren't implemented: 0x%x\n", flags
& ~(IRF_ASYNC
|IRF_NO_WAIT
));
1768 if (buffers
->dwStructSize
!= sizeof(*buffers
))
1769 return ERROR_INVALID_PARAMETER
;
1771 INTERNET_SendCallback(&req
->hdr
, req
->hdr
.dwContext
, INTERNET_STATUS_RECEIVING_RESPONSE
, NULL
, 0);
1773 if (hdr
->dwFlags
& INTERNET_FLAG_ASYNC
) {
1774 DWORD available
= 0;
1776 NETCON_query_data_available(&req
->netConnection
, &available
);
1779 WORKREQUEST workRequest
;
1781 workRequest
.asyncproc
= HTTPREQ_AsyncReadFileExProc
;
1782 workRequest
.hdr
= WININET_AddRef(&req
->hdr
);
1783 workRequest
.u
.InternetReadFileExA
.lpBuffersOut
= buffers
;
1785 INTERNET_AsyncCall(&workRequest
);
1787 return ERROR_IO_PENDING
;
1791 res
= HTTPREQ_Read(req
, buffers
->lpvBuffer
, buffers
->dwBufferLength
, &buffers
->dwBufferLength
,
1792 !(flags
& IRF_NO_WAIT
));
1794 if (res
== ERROR_SUCCESS
) {
1795 DWORD size
= buffers
->dwBufferLength
;
1796 INTERNET_SendCallback(&req
->hdr
, req
->hdr
.dwContext
, INTERNET_STATUS_RESPONSE_RECEIVED
,
1797 &size
, sizeof(size
));
1803 static BOOL
HTTPREQ_WriteFile(WININETHANDLEHEADER
*hdr
, const void *buffer
, DWORD size
, DWORD
*written
)
1805 LPWININETHTTPREQW lpwhr
= (LPWININETHTTPREQW
)hdr
;
1807 return NETCON_send(&lpwhr
->netConnection
, buffer
, size
, 0, (LPINT
)written
);
1810 static void HTTPREQ_AsyncQueryDataAvailableProc(WORKREQUEST
*workRequest
)
1812 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)workRequest
->hdr
;
1813 INTERNET_ASYNC_RESULT iar
;
1816 TRACE("%p\n", workRequest
->hdr
);
1818 iar
.dwResult
= NETCON_recv(&req
->netConnection
, buffer
,
1819 min(sizeof(buffer
), req
->dwContentLength
- req
->dwContentRead
),
1820 MSG_PEEK
, (int *)&iar
.dwError
);
1822 INTERNET_SendCallback(&req
->hdr
, req
->hdr
.dwContext
, INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
1823 sizeof(INTERNET_ASYNC_RESULT
));
1826 static DWORD
HTTPREQ_QueryDataAvailable(WININETHANDLEHEADER
*hdr
, DWORD
*available
, DWORD flags
, DWORD_PTR ctx
)
1828 WININETHTTPREQW
*req
= (WININETHTTPREQW
*)hdr
;
1832 TRACE("(%p %p %x %lx)\n", req
, available
, flags
, ctx
);
1834 if(!NETCON_query_data_available(&req
->netConnection
, available
) || *available
)
1835 return ERROR_SUCCESS
;
1837 /* Even if we are in async mode, we need to determine whether
1838 * there is actually more data available. We do this by trying
1839 * to peek only a single byte in async mode. */
1840 async
= (req
->lpHttpSession
->lpAppInfo
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
) != 0;
1842 if (NETCON_recv(&req
->netConnection
, buffer
,
1843 min(async
? 1 : sizeof(buffer
), req
->dwContentLength
- req
->dwContentRead
),
1844 MSG_PEEK
, (int *)available
) && async
&& *available
)
1846 WORKREQUEST workRequest
;
1849 workRequest
.asyncproc
= HTTPREQ_AsyncQueryDataAvailableProc
;
1850 workRequest
.hdr
= WININET_AddRef( &req
->hdr
);
1852 INTERNET_AsyncCall(&workRequest
);
1854 return ERROR_IO_PENDING
;
1857 return ERROR_SUCCESS
;
1860 static const HANDLEHEADERVtbl HTTPREQVtbl
= {
1862 HTTPREQ_CloseConnection
,
1863 HTTPREQ_QueryOption
,
1866 HTTPREQ_ReadFileExA
,
1868 HTTPREQ_QueryDataAvailable
,
1872 /***********************************************************************
1873 * HTTP_HttpOpenRequestW (internal)
1875 * Open a HTTP request handle
1878 * HINTERNET a HTTP request handle on success
1882 HINTERNET WINAPI
HTTP_HttpOpenRequestW(LPWININETHTTPSESSIONW lpwhs
,
1883 LPCWSTR lpszVerb
, LPCWSTR lpszObjectName
, LPCWSTR lpszVersion
,
1884 LPCWSTR lpszReferrer
, LPCWSTR
*lpszAcceptTypes
,
1885 DWORD dwFlags
, DWORD_PTR dwContext
)
1887 LPWININETAPPINFOW hIC
= NULL
;
1888 LPWININETHTTPREQW lpwhr
;
1890 LPWSTR lpszUrl
= NULL
;
1892 HINTERNET handle
= NULL
;
1893 static const WCHAR szUrlForm
[] = {'h','t','t','p',':','/','/','%','s',0};
1899 assert( lpwhs
->hdr
.htype
== WH_HHTTPSESSION
);
1900 hIC
= lpwhs
->lpAppInfo
;
1902 lpwhr
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WININETHTTPREQW
));
1905 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1908 lpwhr
->hdr
.htype
= WH_HHTTPREQ
;
1909 lpwhr
->hdr
.vtbl
= &HTTPREQVtbl
;
1910 lpwhr
->hdr
.dwFlags
= dwFlags
;
1911 lpwhr
->hdr
.dwContext
= dwContext
;
1912 lpwhr
->hdr
.refs
= 1;
1913 lpwhr
->hdr
.lpfnStatusCB
= lpwhs
->hdr
.lpfnStatusCB
;
1914 lpwhr
->hdr
.dwInternalFlags
= lpwhs
->hdr
.dwInternalFlags
& INET_CALLBACKW
;
1916 WININET_AddRef( &lpwhs
->hdr
);
1917 lpwhr
->lpHttpSession
= lpwhs
;
1918 list_add_head( &lpwhs
->hdr
.children
, &lpwhr
->hdr
.entry
);
1920 handle
= WININET_AllocHandle( &lpwhr
->hdr
);
1923 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1927 if (!NETCON_init(&lpwhr
->netConnection
, dwFlags
& INTERNET_FLAG_SECURE
))
1929 InternetCloseHandle( handle
);
1934 if (lpszObjectName
&& *lpszObjectName
) {
1938 rc
= UrlEscapeW(lpszObjectName
, NULL
, &len
, URL_ESCAPE_SPACES_ONLY
);
1939 if (rc
!= E_POINTER
)
1940 len
= strlenW(lpszObjectName
)+1;
1941 lpwhr
->lpszPath
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
1942 rc
= UrlEscapeW(lpszObjectName
, lpwhr
->lpszPath
, &len
,
1943 URL_ESCAPE_SPACES_ONLY
);
1946 ERR("Unable to escape string!(%s) (%d)\n",debugstr_w(lpszObjectName
),rc
);
1947 strcpyW(lpwhr
->lpszPath
,lpszObjectName
);
1951 if (lpszReferrer
&& *lpszReferrer
)
1952 HTTP_ProcessHeader(lpwhr
, HTTP_REFERER
, lpszReferrer
, HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDHDR_FLAG_REQ
);
1954 if (lpszAcceptTypes
)
1957 for (i
= 0; lpszAcceptTypes
[i
]; i
++)
1959 if (!*lpszAcceptTypes
[i
]) continue;
1960 HTTP_ProcessHeader(lpwhr
, HTTP_ACCEPT
, lpszAcceptTypes
[i
],
1961 HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA
|
1962 HTTP_ADDHDR_FLAG_REQ
|
1963 (i
== 0 ? HTTP_ADDHDR_FLAG_REPLACE
: 0));
1967 lpwhr
->lpszVerb
= WININET_strdupW(lpszVerb
&& *lpszVerb
? lpszVerb
: szGET
);
1970 lpwhr
->lpszVersion
= WININET_strdupW(lpszVersion
);
1972 lpwhr
->lpszVersion
= WININET_strdupW(g_szHttp1_1
);
1974 HTTP_ProcessHeader(lpwhr
, szHost
, lpwhs
->lpszHostName
, HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDHDR_FLAG_REQ
);
1976 if (lpwhs
->nServerPort
== INTERNET_INVALID_PORT_NUMBER
)
1977 lpwhs
->nServerPort
= (dwFlags
& INTERNET_FLAG_SECURE
?
1978 INTERNET_DEFAULT_HTTPS_PORT
:
1979 INTERNET_DEFAULT_HTTP_PORT
);
1981 if (lpwhs
->nHostPort
== INTERNET_INVALID_PORT_NUMBER
)
1982 lpwhs
->nHostPort
= (dwFlags
& INTERNET_FLAG_SECURE
?
1983 INTERNET_DEFAULT_HTTPS_PORT
:
1984 INTERNET_DEFAULT_HTTP_PORT
);
1986 if (NULL
!= hIC
->lpszProxy
&& hIC
->lpszProxy
[0] != 0)
1987 HTTP_DealWithProxy( hIC
, lpwhs
, lpwhr
);
1989 Host
= HTTP_GetHeader(lpwhr
,szHost
);
1991 len
= lstrlenW(Host
->lpszValue
) + strlenW(szUrlForm
);
1992 lpszUrl
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
1993 sprintfW( lpszUrl
, szUrlForm
, Host
->lpszValue
);
1995 if (!(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_NO_COOKIES
) &&
1996 InternetGetCookieW(lpszUrl
, NULL
, NULL
, &nCookieSize
))
1999 static const WCHAR szCookie
[] = {'C','o','o','k','i','e',':',' ',0};
2000 static const WCHAR szcrlf
[] = {'\r','\n',0};
2002 lpszCookies
= HeapAlloc(GetProcessHeap(), 0, (nCookieSize
+ 1 + 8)*sizeof(WCHAR
));
2004 cnt
+= sprintfW(lpszCookies
, szCookie
);
2005 InternetGetCookieW(lpszUrl
, NULL
, lpszCookies
+ cnt
, &nCookieSize
);
2006 strcatW(lpszCookies
, szcrlf
);
2008 HTTP_HttpAddRequestHeadersW(lpwhr
, lpszCookies
, strlenW(lpszCookies
),
2009 HTTP_ADDREQ_FLAG_ADD
);
2010 HeapFree(GetProcessHeap(), 0, lpszCookies
);
2012 HeapFree(GetProcessHeap(), 0, lpszUrl
);
2015 INTERNET_SendCallback(&lpwhs
->hdr
, dwContext
,
2016 INTERNET_STATUS_HANDLE_CREATED
, &handle
,
2020 * A STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on windows
2023 if (!HTTP_ResolveName(lpwhr
))
2025 InternetCloseHandle( handle
);
2031 WININET_Release( &lpwhr
->hdr
);
2033 TRACE("<-- %p (%p)\n", handle
, lpwhr
);
2037 /* read any content returned by the server so that the connection can be
2039 static void HTTP_DrainContent(WININETHTTPREQW
*req
)
2043 if (!NETCON_connected(&req
->netConnection
)) return;
2045 if (req
->dwContentLength
== -1)
2046 NETCON_close(&req
->netConnection
);
2051 if (HTTP_Read(req
, buffer
, sizeof(buffer
), &bytes_read
, TRUE
) != ERROR_SUCCESS
)
2053 } while (bytes_read
);
2056 static const WCHAR szAccept
[] = { 'A','c','c','e','p','t',0 };
2057 static const WCHAR szAccept_Charset
[] = { 'A','c','c','e','p','t','-','C','h','a','r','s','e','t', 0 };
2058 static const WCHAR szAccept_Encoding
[] = { 'A','c','c','e','p','t','-','E','n','c','o','d','i','n','g',0 };
2059 static const WCHAR szAccept_Language
[] = { 'A','c','c','e','p','t','-','L','a','n','g','u','a','g','e',0 };
2060 static const WCHAR szAccept_Ranges
[] = { 'A','c','c','e','p','t','-','R','a','n','g','e','s',0 };
2061 static const WCHAR szAge
[] = { 'A','g','e',0 };
2062 static const WCHAR szAllow
[] = { 'A','l','l','o','w',0 };
2063 static const WCHAR szCache_Control
[] = { 'C','a','c','h','e','-','C','o','n','t','r','o','l',0 };
2064 static const WCHAR szConnection
[] = { 'C','o','n','n','e','c','t','i','o','n',0 };
2065 static const WCHAR szContent_Base
[] = { 'C','o','n','t','e','n','t','-','B','a','s','e',0 };
2066 static const WCHAR szContent_Encoding
[] = { 'C','o','n','t','e','n','t','-','E','n','c','o','d','i','n','g',0 };
2067 static const WCHAR szContent_ID
[] = { 'C','o','n','t','e','n','t','-','I','D',0 };
2068 static const WCHAR szContent_Language
[] = { 'C','o','n','t','e','n','t','-','L','a','n','g','u','a','g','e',0 };
2069 static const WCHAR szContent_Length
[] = { 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',0 };
2070 static const WCHAR szContent_Location
[] = { 'C','o','n','t','e','n','t','-','L','o','c','a','t','i','o','n',0 };
2071 static const WCHAR szContent_MD5
[] = { 'C','o','n','t','e','n','t','-','M','D','5',0 };
2072 static const WCHAR szContent_Range
[] = { 'C','o','n','t','e','n','t','-','R','a','n','g','e',0 };
2073 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 };
2074 static const WCHAR szContent_Type
[] = { 'C','o','n','t','e','n','t','-','T','y','p','e',0 };
2075 static const WCHAR szCookie
[] = { 'C','o','o','k','i','e',0 };
2076 static const WCHAR szDate
[] = { 'D','a','t','e',0 };
2077 static const WCHAR szFrom
[] = { 'F','r','o','m',0 };
2078 static const WCHAR szETag
[] = { 'E','T','a','g',0 };
2079 static const WCHAR szExpect
[] = { 'E','x','p','e','c','t',0 };
2080 static const WCHAR szExpires
[] = { 'E','x','p','i','r','e','s',0 };
2081 static const WCHAR szIf_Match
[] = { 'I','f','-','M','a','t','c','h',0 };
2082 static const WCHAR szIf_Modified_Since
[] = { 'I','f','-','M','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
2083 static const WCHAR szIf_None_Match
[] = { 'I','f','-','N','o','n','e','-','M','a','t','c','h',0 };
2084 static const WCHAR szIf_Range
[] = { 'I','f','-','R','a','n','g','e',0 };
2085 static const WCHAR szIf_Unmodified_Since
[] = { 'I','f','-','U','n','m','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
2086 static const WCHAR szLast_Modified
[] = { 'L','a','s','t','-','M','o','d','i','f','i','e','d',0 };
2087 static const WCHAR szLocation
[] = { 'L','o','c','a','t','i','o','n',0 };
2088 static const WCHAR szMax_Forwards
[] = { 'M','a','x','-','F','o','r','w','a','r','d','s',0 };
2089 static const WCHAR szMime_Version
[] = { 'M','i','m','e','-','V','e','r','s','i','o','n',0 };
2090 static const WCHAR szPragma
[] = { 'P','r','a','g','m','a',0 };
2091 static const WCHAR szProxy_Authenticate
[] = { 'P','r','o','x','y','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
2092 static const WCHAR szProxy_Connection
[] = { 'P','r','o','x','y','-','C','o','n','n','e','c','t','i','o','n',0 };
2093 static const WCHAR szPublic
[] = { 'P','u','b','l','i','c',0 };
2094 static const WCHAR szRange
[] = { 'R','a','n','g','e',0 };
2095 static const WCHAR szReferer
[] = { 'R','e','f','e','r','e','r',0 };
2096 static const WCHAR szRetry_After
[] = { 'R','e','t','r','y','-','A','f','t','e','r',0 };
2097 static const WCHAR szServer
[] = { 'S','e','r','v','e','r',0 };
2098 static const WCHAR szSet_Cookie
[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
2099 static const WCHAR szTransfer_Encoding
[] = { 'T','r','a','n','s','f','e','r','-','E','n','c','o','d','i','n','g',0 };
2100 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 };
2101 static const WCHAR szUpgrade
[] = { 'U','p','g','r','a','d','e',0 };
2102 static const WCHAR szURI
[] = { 'U','R','I',0 };
2103 static const WCHAR szUser_Agent
[] = { 'U','s','e','r','-','A','g','e','n','t',0 };
2104 static const WCHAR szVary
[] = { 'V','a','r','y',0 };
2105 static const WCHAR szVia
[] = { 'V','i','a',0 };
2106 static const WCHAR szWarning
[] = { 'W','a','r','n','i','n','g',0 };
2107 static const WCHAR szWWW_Authenticate
[] = { 'W','W','W','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
2109 static const LPCWSTR header_lookup
[] = {
2110 szMime_Version
, /* HTTP_QUERY_MIME_VERSION = 0 */
2111 szContent_Type
, /* HTTP_QUERY_CONTENT_TYPE = 1 */
2112 szContent_Transfer_Encoding
,/* HTTP_QUERY_CONTENT_TRANSFER_ENCODING = 2 */
2113 szContent_ID
, /* HTTP_QUERY_CONTENT_ID = 3 */
2114 NULL
, /* HTTP_QUERY_CONTENT_DESCRIPTION = 4 */
2115 szContent_Length
, /* HTTP_QUERY_CONTENT_LENGTH = 5 */
2116 szContent_Language
, /* HTTP_QUERY_CONTENT_LANGUAGE = 6 */
2117 szAllow
, /* HTTP_QUERY_ALLOW = 7 */
2118 szPublic
, /* HTTP_QUERY_PUBLIC = 8 */
2119 szDate
, /* HTTP_QUERY_DATE = 9 */
2120 szExpires
, /* HTTP_QUERY_EXPIRES = 10 */
2121 szLast_Modified
, /* HTTP_QUERY_LAST_MODIFIED = 11 */
2122 NULL
, /* HTTP_QUERY_MESSAGE_ID = 12 */
2123 szURI
, /* HTTP_QUERY_URI = 13 */
2124 szFrom
, /* HTTP_QUERY_DERIVED_FROM = 14 */
2125 NULL
, /* HTTP_QUERY_COST = 15 */
2126 NULL
, /* HTTP_QUERY_LINK = 16 */
2127 szPragma
, /* HTTP_QUERY_PRAGMA = 17 */
2128 NULL
, /* HTTP_QUERY_VERSION = 18 */
2129 szStatus
, /* HTTP_QUERY_STATUS_CODE = 19 */
2130 NULL
, /* HTTP_QUERY_STATUS_TEXT = 20 */
2131 NULL
, /* HTTP_QUERY_RAW_HEADERS = 21 */
2132 NULL
, /* HTTP_QUERY_RAW_HEADERS_CRLF = 22 */
2133 szConnection
, /* HTTP_QUERY_CONNECTION = 23 */
2134 szAccept
, /* HTTP_QUERY_ACCEPT = 24 */
2135 szAccept_Charset
, /* HTTP_QUERY_ACCEPT_CHARSET = 25 */
2136 szAccept_Encoding
, /* HTTP_QUERY_ACCEPT_ENCODING = 26 */
2137 szAccept_Language
, /* HTTP_QUERY_ACCEPT_LANGUAGE = 27 */
2138 szAuthorization
, /* HTTP_QUERY_AUTHORIZATION = 28 */
2139 szContent_Encoding
, /* HTTP_QUERY_CONTENT_ENCODING = 29 */
2140 NULL
, /* HTTP_QUERY_FORWARDED = 30 */
2141 NULL
, /* HTTP_QUERY_FROM = 31 */
2142 szIf_Modified_Since
, /* HTTP_QUERY_IF_MODIFIED_SINCE = 32 */
2143 szLocation
, /* HTTP_QUERY_LOCATION = 33 */
2144 NULL
, /* HTTP_QUERY_ORIG_URI = 34 */
2145 szReferer
, /* HTTP_QUERY_REFERER = 35 */
2146 szRetry_After
, /* HTTP_QUERY_RETRY_AFTER = 36 */
2147 szServer
, /* HTTP_QUERY_SERVER = 37 */
2148 NULL
, /* HTTP_TITLE = 38 */
2149 szUser_Agent
, /* HTTP_QUERY_USER_AGENT = 39 */
2150 szWWW_Authenticate
, /* HTTP_QUERY_WWW_AUTHENTICATE = 40 */
2151 szProxy_Authenticate
, /* HTTP_QUERY_PROXY_AUTHENTICATE = 41 */
2152 szAccept_Ranges
, /* HTTP_QUERY_ACCEPT_RANGES = 42 */
2153 szSet_Cookie
, /* HTTP_QUERY_SET_COOKIE = 43 */
2154 szCookie
, /* HTTP_QUERY_COOKIE = 44 */
2155 NULL
, /* HTTP_QUERY_REQUEST_METHOD = 45 */
2156 NULL
, /* HTTP_QUERY_REFRESH = 46 */
2157 NULL
, /* HTTP_QUERY_CONTENT_DISPOSITION = 47 */
2158 szAge
, /* HTTP_QUERY_AGE = 48 */
2159 szCache_Control
, /* HTTP_QUERY_CACHE_CONTROL = 49 */
2160 szContent_Base
, /* HTTP_QUERY_CONTENT_BASE = 50 */
2161 szContent_Location
, /* HTTP_QUERY_CONTENT_LOCATION = 51 */
2162 szContent_MD5
, /* HTTP_QUERY_CONTENT_MD5 = 52 */
2163 szContent_Range
, /* HTTP_QUERY_CONTENT_RANGE = 53 */
2164 szETag
, /* HTTP_QUERY_ETAG = 54 */
2165 szHost
, /* HTTP_QUERY_HOST = 55 */
2166 szIf_Match
, /* HTTP_QUERY_IF_MATCH = 56 */
2167 szIf_None_Match
, /* HTTP_QUERY_IF_NONE_MATCH = 57 */
2168 szIf_Range
, /* HTTP_QUERY_IF_RANGE = 58 */
2169 szIf_Unmodified_Since
, /* HTTP_QUERY_IF_UNMODIFIED_SINCE = 59 */
2170 szMax_Forwards
, /* HTTP_QUERY_MAX_FORWARDS = 60 */
2171 szProxy_Authorization
, /* HTTP_QUERY_PROXY_AUTHORIZATION = 61 */
2172 szRange
, /* HTTP_QUERY_RANGE = 62 */
2173 szTransfer_Encoding
, /* HTTP_QUERY_TRANSFER_ENCODING = 63 */
2174 szUpgrade
, /* HTTP_QUERY_UPGRADE = 64 */
2175 szVary
, /* HTTP_QUERY_VARY = 65 */
2176 szVia
, /* HTTP_QUERY_VIA = 66 */
2177 szWarning
, /* HTTP_QUERY_WARNING = 67 */
2178 szExpect
, /* HTTP_QUERY_EXPECT = 68 */
2179 szProxy_Connection
, /* HTTP_QUERY_PROXY_CONNECTION = 69 */
2180 szUnless_Modified_Since
, /* HTTP_QUERY_UNLESS_MODIFIED_SINCE = 70 */
2183 #define LAST_TABLE_HEADER (sizeof(header_lookup)/sizeof(header_lookup[0]))
2185 /***********************************************************************
2186 * HTTP_HttpQueryInfoW (internal)
2188 static BOOL WINAPI
HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr
, DWORD dwInfoLevel
,
2189 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
2191 LPHTTPHEADERW lphttpHdr
= NULL
;
2192 BOOL bSuccess
= FALSE
;
2193 BOOL request_only
= dwInfoLevel
& HTTP_QUERY_FLAG_REQUEST_HEADERS
;
2194 INT requested_index
= lpdwIndex
? *lpdwIndex
: 0;
2195 INT level
= (dwInfoLevel
& ~HTTP_QUERY_MODIFIER_FLAGS_MASK
);
2198 /* Find requested header structure */
2201 case HTTP_QUERY_CUSTOM
:
2202 index
= HTTP_GetCustomHeaderIndex(lpwhr
, lpBuffer
, requested_index
, request_only
);
2205 case HTTP_QUERY_RAW_HEADERS_CRLF
:
2212 headers
= HTTP_BuildHeaderRequestString(lpwhr
, lpwhr
->lpszVerb
, lpwhr
->lpszPath
, lpwhr
->lpszVersion
);
2214 headers
= lpwhr
->lpszRawHeaders
;
2216 len
= (strlenW(headers
) + 1) * sizeof(WCHAR
);
2217 if (len
> *lpdwBufferLength
)
2219 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2224 memcpy(lpBuffer
, headers
, len
);
2225 TRACE("returning data: %s\n", debugstr_wn(lpBuffer
, len
/ sizeof(WCHAR
)));
2228 *lpdwBufferLength
= len
;
2231 HeapFree(GetProcessHeap(), 0, headers
);
2234 case HTTP_QUERY_RAW_HEADERS
:
2236 static const WCHAR szCrLf
[] = {'\r','\n',0};
2237 LPWSTR
* ppszRawHeaderLines
= HTTP_Tokenize(lpwhr
->lpszRawHeaders
, szCrLf
);
2239 LPWSTR pszString
= (WCHAR
*)lpBuffer
;
2241 for (i
= 0; ppszRawHeaderLines
[i
]; i
++)
2242 size
+= strlenW(ppszRawHeaderLines
[i
]) + 1;
2244 if (size
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
2246 HTTP_FreeTokens(ppszRawHeaderLines
);
2247 *lpdwBufferLength
= (size
+ 1) * sizeof(WCHAR
);
2248 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2252 for (i
= 0; ppszRawHeaderLines
[i
]; i
++)
2254 DWORD len
= strlenW(ppszRawHeaderLines
[i
]);
2255 memcpy(pszString
, ppszRawHeaderLines
[i
], (len
+1)*sizeof(WCHAR
));
2260 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, size
));
2262 *lpdwBufferLength
= size
* sizeof(WCHAR
);
2263 HTTP_FreeTokens(ppszRawHeaderLines
);
2267 case HTTP_QUERY_STATUS_TEXT
:
2268 if (lpwhr
->lpszStatusText
)
2270 DWORD len
= strlenW(lpwhr
->lpszStatusText
);
2271 if (len
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
2273 *lpdwBufferLength
= (len
+ 1) * sizeof(WCHAR
);
2274 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2277 memcpy(lpBuffer
, lpwhr
->lpszStatusText
, (len
+1)*sizeof(WCHAR
));
2278 *lpdwBufferLength
= len
* sizeof(WCHAR
);
2280 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, len
));
2285 case HTTP_QUERY_VERSION
:
2286 if (lpwhr
->lpszVersion
)
2288 DWORD len
= strlenW(lpwhr
->lpszVersion
);
2289 if (len
+ 1 > *lpdwBufferLength
/sizeof(WCHAR
))
2291 *lpdwBufferLength
= (len
+ 1) * sizeof(WCHAR
);
2292 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2295 memcpy(lpBuffer
, lpwhr
->lpszVersion
, (len
+1)*sizeof(WCHAR
));
2296 *lpdwBufferLength
= len
* sizeof(WCHAR
);
2298 TRACE("returning data: %s\n", debugstr_wn((WCHAR
*)lpBuffer
, len
));
2304 assert (LAST_TABLE_HEADER
== (HTTP_QUERY_UNLESS_MODIFIED_SINCE
+ 1));
2306 if (level
>= 0 && level
< LAST_TABLE_HEADER
&& header_lookup
[level
])
2307 index
= HTTP_GetCustomHeaderIndex(lpwhr
, header_lookup
[level
],
2308 requested_index
,request_only
);
2312 lphttpHdr
= &lpwhr
->pCustHeaders
[index
];
2314 /* Ensure header satisfies requested attributes */
2316 ((dwInfoLevel
& HTTP_QUERY_FLAG_REQUEST_HEADERS
) &&
2317 (~lphttpHdr
->wFlags
& HDR_ISREQUEST
)))
2319 INTERNET_SetLastError(ERROR_HTTP_HEADER_NOT_FOUND
);
2326 /* coalesce value to requested type */
2327 if (dwInfoLevel
& HTTP_QUERY_FLAG_NUMBER
)
2329 *(int *)lpBuffer
= atoiW(lphttpHdr
->lpszValue
);
2332 TRACE(" returning number : %d\n", *(int *)lpBuffer
);
2334 else if (dwInfoLevel
& HTTP_QUERY_FLAG_SYSTEMTIME
)
2340 tmpTime
= ConvertTimeString(lphttpHdr
->lpszValue
);
2342 tmpTM
= *gmtime(&tmpTime
);
2343 STHook
= (SYSTEMTIME
*) lpBuffer
;
2347 STHook
->wDay
= tmpTM
.tm_mday
;
2348 STHook
->wHour
= tmpTM
.tm_hour
;
2349 STHook
->wMilliseconds
= 0;
2350 STHook
->wMinute
= tmpTM
.tm_min
;
2351 STHook
->wDayOfWeek
= tmpTM
.tm_wday
;
2352 STHook
->wMonth
= tmpTM
.tm_mon
+ 1;
2353 STHook
->wSecond
= tmpTM
.tm_sec
;
2354 STHook
->wYear
= tmpTM
.tm_year
;
2358 TRACE(" returning time : %04d/%02d/%02d - %d - %02d:%02d:%02d.%02d\n",
2359 STHook
->wYear
, STHook
->wMonth
, STHook
->wDay
, STHook
->wDayOfWeek
,
2360 STHook
->wHour
, STHook
->wMinute
, STHook
->wSecond
, STHook
->wMilliseconds
);
2362 else if (lphttpHdr
->lpszValue
)
2364 DWORD len
= (strlenW(lphttpHdr
->lpszValue
) + 1) * sizeof(WCHAR
);
2366 if (len
> *lpdwBufferLength
)
2368 *lpdwBufferLength
= len
;
2369 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2373 memcpy(lpBuffer
, lphttpHdr
->lpszValue
, len
);
2374 *lpdwBufferLength
= len
- sizeof(WCHAR
);
2377 TRACE(" returning string : %s\n", debugstr_w(lpBuffer
));
2382 /***********************************************************************
2383 * HttpQueryInfoW (WININET.@)
2385 * Queries for information about an HTTP request
2392 BOOL WINAPI
HttpQueryInfoW(HINTERNET hHttpRequest
, DWORD dwInfoLevel
,
2393 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
2395 BOOL bSuccess
= FALSE
;
2396 LPWININETHTTPREQW lpwhr
;
2398 if (TRACE_ON(wininet
)) {
2399 #define FE(x) { x, #x }
2400 static const wininet_flag_info query_flags
[] = {
2401 FE(HTTP_QUERY_MIME_VERSION
),
2402 FE(HTTP_QUERY_CONTENT_TYPE
),
2403 FE(HTTP_QUERY_CONTENT_TRANSFER_ENCODING
),
2404 FE(HTTP_QUERY_CONTENT_ID
),
2405 FE(HTTP_QUERY_CONTENT_DESCRIPTION
),
2406 FE(HTTP_QUERY_CONTENT_LENGTH
),
2407 FE(HTTP_QUERY_CONTENT_LANGUAGE
),
2408 FE(HTTP_QUERY_ALLOW
),
2409 FE(HTTP_QUERY_PUBLIC
),
2410 FE(HTTP_QUERY_DATE
),
2411 FE(HTTP_QUERY_EXPIRES
),
2412 FE(HTTP_QUERY_LAST_MODIFIED
),
2413 FE(HTTP_QUERY_MESSAGE_ID
),
2415 FE(HTTP_QUERY_DERIVED_FROM
),
2416 FE(HTTP_QUERY_COST
),
2417 FE(HTTP_QUERY_LINK
),
2418 FE(HTTP_QUERY_PRAGMA
),
2419 FE(HTTP_QUERY_VERSION
),
2420 FE(HTTP_QUERY_STATUS_CODE
),
2421 FE(HTTP_QUERY_STATUS_TEXT
),
2422 FE(HTTP_QUERY_RAW_HEADERS
),
2423 FE(HTTP_QUERY_RAW_HEADERS_CRLF
),
2424 FE(HTTP_QUERY_CONNECTION
),
2425 FE(HTTP_QUERY_ACCEPT
),
2426 FE(HTTP_QUERY_ACCEPT_CHARSET
),
2427 FE(HTTP_QUERY_ACCEPT_ENCODING
),
2428 FE(HTTP_QUERY_ACCEPT_LANGUAGE
),
2429 FE(HTTP_QUERY_AUTHORIZATION
),
2430 FE(HTTP_QUERY_CONTENT_ENCODING
),
2431 FE(HTTP_QUERY_FORWARDED
),
2432 FE(HTTP_QUERY_FROM
),
2433 FE(HTTP_QUERY_IF_MODIFIED_SINCE
),
2434 FE(HTTP_QUERY_LOCATION
),
2435 FE(HTTP_QUERY_ORIG_URI
),
2436 FE(HTTP_QUERY_REFERER
),
2437 FE(HTTP_QUERY_RETRY_AFTER
),
2438 FE(HTTP_QUERY_SERVER
),
2439 FE(HTTP_QUERY_TITLE
),
2440 FE(HTTP_QUERY_USER_AGENT
),
2441 FE(HTTP_QUERY_WWW_AUTHENTICATE
),
2442 FE(HTTP_QUERY_PROXY_AUTHENTICATE
),
2443 FE(HTTP_QUERY_ACCEPT_RANGES
),
2444 FE(HTTP_QUERY_SET_COOKIE
),
2445 FE(HTTP_QUERY_COOKIE
),
2446 FE(HTTP_QUERY_REQUEST_METHOD
),
2447 FE(HTTP_QUERY_REFRESH
),
2448 FE(HTTP_QUERY_CONTENT_DISPOSITION
),
2450 FE(HTTP_QUERY_CACHE_CONTROL
),
2451 FE(HTTP_QUERY_CONTENT_BASE
),
2452 FE(HTTP_QUERY_CONTENT_LOCATION
),
2453 FE(HTTP_QUERY_CONTENT_MD5
),
2454 FE(HTTP_QUERY_CONTENT_RANGE
),
2455 FE(HTTP_QUERY_ETAG
),
2456 FE(HTTP_QUERY_HOST
),
2457 FE(HTTP_QUERY_IF_MATCH
),
2458 FE(HTTP_QUERY_IF_NONE_MATCH
),
2459 FE(HTTP_QUERY_IF_RANGE
),
2460 FE(HTTP_QUERY_IF_UNMODIFIED_SINCE
),
2461 FE(HTTP_QUERY_MAX_FORWARDS
),
2462 FE(HTTP_QUERY_PROXY_AUTHORIZATION
),
2463 FE(HTTP_QUERY_RANGE
),
2464 FE(HTTP_QUERY_TRANSFER_ENCODING
),
2465 FE(HTTP_QUERY_UPGRADE
),
2466 FE(HTTP_QUERY_VARY
),
2468 FE(HTTP_QUERY_WARNING
),
2469 FE(HTTP_QUERY_CUSTOM
)
2471 static const wininet_flag_info modifier_flags
[] = {
2472 FE(HTTP_QUERY_FLAG_REQUEST_HEADERS
),
2473 FE(HTTP_QUERY_FLAG_SYSTEMTIME
),
2474 FE(HTTP_QUERY_FLAG_NUMBER
),
2475 FE(HTTP_QUERY_FLAG_COALESCE
)
2478 DWORD info_mod
= dwInfoLevel
& HTTP_QUERY_MODIFIER_FLAGS_MASK
;
2479 DWORD info
= dwInfoLevel
& HTTP_QUERY_HEADER_MASK
;
2482 TRACE("(%p, 0x%08x)--> %d\n", hHttpRequest
, dwInfoLevel
, dwInfoLevel
);
2483 TRACE(" Attribute:");
2484 for (i
= 0; i
< (sizeof(query_flags
) / sizeof(query_flags
[0])); i
++) {
2485 if (query_flags
[i
].val
== info
) {
2486 TRACE(" %s", query_flags
[i
].name
);
2490 if (i
== (sizeof(query_flags
) / sizeof(query_flags
[0]))) {
2491 TRACE(" Unknown (%08x)", info
);
2494 TRACE(" Modifier:");
2495 for (i
= 0; i
< (sizeof(modifier_flags
) / sizeof(modifier_flags
[0])); i
++) {
2496 if (modifier_flags
[i
].val
& info_mod
) {
2497 TRACE(" %s", modifier_flags
[i
].name
);
2498 info_mod
&= ~ modifier_flags
[i
].val
;
2503 TRACE(" Unknown (%08x)", info_mod
);
2508 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
2509 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
2511 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2515 if (lpBuffer
== NULL
)
2516 *lpdwBufferLength
= 0;
2517 bSuccess
= HTTP_HttpQueryInfoW( lpwhr
, dwInfoLevel
,
2518 lpBuffer
, lpdwBufferLength
, lpdwIndex
);
2522 WININET_Release( &lpwhr
->hdr
);
2524 TRACE("%d <--\n", bSuccess
);
2528 /***********************************************************************
2529 * HttpQueryInfoA (WININET.@)
2531 * Queries for information about an HTTP request
2538 BOOL WINAPI
HttpQueryInfoA(HINTERNET hHttpRequest
, DWORD dwInfoLevel
,
2539 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
, LPDWORD lpdwIndex
)
2545 if((dwInfoLevel
& HTTP_QUERY_FLAG_NUMBER
) ||
2546 (dwInfoLevel
& HTTP_QUERY_FLAG_SYSTEMTIME
))
2548 return HttpQueryInfoW( hHttpRequest
, dwInfoLevel
, lpBuffer
,
2549 lpdwBufferLength
, lpdwIndex
);
2555 len
= (*lpdwBufferLength
)*sizeof(WCHAR
);
2556 if ((dwInfoLevel
& HTTP_QUERY_HEADER_MASK
) == HTTP_QUERY_CUSTOM
)
2558 alloclen
= MultiByteToWideChar( CP_ACP
, 0, lpBuffer
, -1, NULL
, 0 ) * sizeof(WCHAR
);
2564 bufferW
= HeapAlloc( GetProcessHeap(), 0, alloclen
);
2565 /* buffer is in/out because of HTTP_QUERY_CUSTOM */
2566 if ((dwInfoLevel
& HTTP_QUERY_HEADER_MASK
) == HTTP_QUERY_CUSTOM
)
2567 MultiByteToWideChar( CP_ACP
, 0, lpBuffer
, -1, bufferW
, alloclen
/ sizeof(WCHAR
) );
2574 result
= HttpQueryInfoW( hHttpRequest
, dwInfoLevel
, bufferW
,
2578 len
= WideCharToMultiByte( CP_ACP
,0, bufferW
, len
/ sizeof(WCHAR
) + 1,
2579 lpBuffer
, *lpdwBufferLength
, NULL
, NULL
);
2580 *lpdwBufferLength
= len
- 1;
2582 TRACE("lpBuffer: %s\n", debugstr_a(lpBuffer
));
2585 /* since the strings being returned from HttpQueryInfoW should be
2586 * only ASCII characters, it is reasonable to assume that all of
2587 * the Unicode characters can be reduced to a single byte */
2588 *lpdwBufferLength
= len
/ sizeof(WCHAR
);
2590 HeapFree(GetProcessHeap(), 0, bufferW
);
2595 /***********************************************************************
2596 * HttpSendRequestExA (WININET.@)
2598 * Sends the specified request to the HTTP server and allows chunked
2603 * Failure: FALSE, call GetLastError() for more information.
2605 BOOL WINAPI
HttpSendRequestExA(HINTERNET hRequest
,
2606 LPINTERNET_BUFFERSA lpBuffersIn
,
2607 LPINTERNET_BUFFERSA lpBuffersOut
,
2608 DWORD dwFlags
, DWORD_PTR dwContext
)
2610 INTERNET_BUFFERSW BuffersInW
;
2613 LPWSTR header
= NULL
;
2615 TRACE("(%p, %p, %p, %08x, %08lx)\n", hRequest
, lpBuffersIn
,
2616 lpBuffersOut
, dwFlags
, dwContext
);
2620 BuffersInW
.dwStructSize
= sizeof(LPINTERNET_BUFFERSW
);
2621 if (lpBuffersIn
->lpcszHeader
)
2623 headerlen
= MultiByteToWideChar(CP_ACP
,0,lpBuffersIn
->lpcszHeader
,
2624 lpBuffersIn
->dwHeadersLength
,0,0);
2625 header
= HeapAlloc(GetProcessHeap(),0,headerlen
*sizeof(WCHAR
));
2626 if (!(BuffersInW
.lpcszHeader
= header
))
2628 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
2631 BuffersInW
.dwHeadersLength
= MultiByteToWideChar(CP_ACP
, 0,
2632 lpBuffersIn
->lpcszHeader
, lpBuffersIn
->dwHeadersLength
,
2636 BuffersInW
.lpcszHeader
= NULL
;
2637 BuffersInW
.dwHeadersTotal
= lpBuffersIn
->dwHeadersTotal
;
2638 BuffersInW
.lpvBuffer
= lpBuffersIn
->lpvBuffer
;
2639 BuffersInW
.dwBufferLength
= lpBuffersIn
->dwBufferLength
;
2640 BuffersInW
.dwBufferTotal
= lpBuffersIn
->dwBufferTotal
;
2641 BuffersInW
.Next
= NULL
;
2644 rc
= HttpSendRequestExW(hRequest
, lpBuffersIn
? &BuffersInW
: NULL
, NULL
, dwFlags
, dwContext
);
2646 HeapFree(GetProcessHeap(),0,header
);
2651 /***********************************************************************
2652 * HttpSendRequestExW (WININET.@)
2654 * Sends the specified request to the HTTP server and allows chunked
2659 * Failure: FALSE, call GetLastError() for more information.
2661 BOOL WINAPI
HttpSendRequestExW(HINTERNET hRequest
,
2662 LPINTERNET_BUFFERSW lpBuffersIn
,
2663 LPINTERNET_BUFFERSW lpBuffersOut
,
2664 DWORD dwFlags
, DWORD_PTR dwContext
)
2667 LPWININETHTTPREQW lpwhr
;
2668 LPWININETHTTPSESSIONW lpwhs
;
2669 LPWININETAPPINFOW hIC
;
2671 TRACE("(%p, %p, %p, %08x, %08lx)\n", hRequest
, lpBuffersIn
,
2672 lpBuffersOut
, dwFlags
, dwContext
);
2674 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hRequest
);
2676 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
2678 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2682 lpwhs
= lpwhr
->lpHttpSession
;
2683 assert(lpwhs
->hdr
.htype
== WH_HHTTPSESSION
);
2684 hIC
= lpwhs
->lpAppInfo
;
2685 assert(hIC
->hdr
.htype
== WH_HINIT
);
2687 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
2689 WORKREQUEST workRequest
;
2690 struct WORKREQ_HTTPSENDREQUESTW
*req
;
2692 workRequest
.asyncproc
= AsyncHttpSendRequestProc
;
2693 workRequest
.hdr
= WININET_AddRef( &lpwhr
->hdr
);
2694 req
= &workRequest
.u
.HttpSendRequestW
;
2697 if (lpBuffersIn
->lpcszHeader
)
2698 /* FIXME: this should use dwHeadersLength or may not be necessary at all */
2699 req
->lpszHeader
= WININET_strdupW(lpBuffersIn
->lpcszHeader
);
2701 req
->lpszHeader
= NULL
;
2702 req
->dwHeaderLength
= lpBuffersIn
->dwHeadersLength
;
2703 req
->lpOptional
= lpBuffersIn
->lpvBuffer
;
2704 req
->dwOptionalLength
= lpBuffersIn
->dwBufferLength
;
2705 req
->dwContentLength
= lpBuffersIn
->dwBufferTotal
;
2709 req
->lpszHeader
= NULL
;
2710 req
->dwHeaderLength
= 0;
2711 req
->lpOptional
= NULL
;
2712 req
->dwOptionalLength
= 0;
2713 req
->dwContentLength
= 0;
2716 req
->bEndRequest
= FALSE
;
2718 INTERNET_AsyncCall(&workRequest
);
2720 * This is from windows.
2722 INTERNET_SetLastError(ERROR_IO_PENDING
);
2727 ret
= HTTP_HttpSendRequestW(lpwhr
, lpBuffersIn
->lpcszHeader
, lpBuffersIn
->dwHeadersLength
,
2728 lpBuffersIn
->lpvBuffer
, lpBuffersIn
->dwBufferLength
,
2729 lpBuffersIn
->dwBufferTotal
, FALSE
);
2731 ret
= HTTP_HttpSendRequestW(lpwhr
, NULL
, 0, NULL
, 0, 0, FALSE
);
2736 WININET_Release( &lpwhr
->hdr
);
2742 /***********************************************************************
2743 * HttpSendRequestW (WININET.@)
2745 * Sends the specified request to the HTTP server
2752 BOOL WINAPI
HttpSendRequestW(HINTERNET hHttpRequest
, LPCWSTR lpszHeaders
,
2753 DWORD dwHeaderLength
, LPVOID lpOptional
,DWORD dwOptionalLength
)
2755 LPWININETHTTPREQW lpwhr
;
2756 LPWININETHTTPSESSIONW lpwhs
= NULL
;
2757 LPWININETAPPINFOW hIC
= NULL
;
2760 TRACE("%p, %s, %i, %p, %i)\n", hHttpRequest
,
2761 debugstr_wn(lpszHeaders
, dwHeaderLength
), dwHeaderLength
, lpOptional
, dwOptionalLength
);
2763 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hHttpRequest
);
2764 if (NULL
== lpwhr
|| lpwhr
->hdr
.htype
!= WH_HHTTPREQ
)
2766 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2771 lpwhs
= lpwhr
->lpHttpSession
;
2772 if (NULL
== lpwhs
|| lpwhs
->hdr
.htype
!= WH_HHTTPSESSION
)
2774 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2779 hIC
= lpwhs
->lpAppInfo
;
2780 if (NULL
== hIC
|| hIC
->hdr
.htype
!= WH_HINIT
)
2782 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2787 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
2789 WORKREQUEST workRequest
;
2790 struct WORKREQ_HTTPSENDREQUESTW
*req
;
2792 workRequest
.asyncproc
= AsyncHttpSendRequestProc
;
2793 workRequest
.hdr
= WININET_AddRef( &lpwhr
->hdr
);
2794 req
= &workRequest
.u
.HttpSendRequestW
;
2797 req
->lpszHeader
= HeapAlloc(GetProcessHeap(), 0, dwHeaderLength
* sizeof(WCHAR
));
2798 memcpy(req
->lpszHeader
, lpszHeaders
, dwHeaderLength
* sizeof(WCHAR
));
2801 req
->lpszHeader
= 0;
2802 req
->dwHeaderLength
= dwHeaderLength
;
2803 req
->lpOptional
= lpOptional
;
2804 req
->dwOptionalLength
= dwOptionalLength
;
2805 req
->dwContentLength
= dwOptionalLength
;
2806 req
->bEndRequest
= TRUE
;
2808 INTERNET_AsyncCall(&workRequest
);
2810 * This is from windows.
2812 INTERNET_SetLastError(ERROR_IO_PENDING
);
2817 r
= HTTP_HttpSendRequestW(lpwhr
, lpszHeaders
,
2818 dwHeaderLength
, lpOptional
, dwOptionalLength
,
2819 dwOptionalLength
, TRUE
);
2823 WININET_Release( &lpwhr
->hdr
);
2827 /***********************************************************************
2828 * HttpSendRequestA (WININET.@)
2830 * Sends the specified request to the HTTP server
2837 BOOL WINAPI
HttpSendRequestA(HINTERNET hHttpRequest
, LPCSTR lpszHeaders
,
2838 DWORD dwHeaderLength
, LPVOID lpOptional
,DWORD dwOptionalLength
)
2841 LPWSTR szHeaders
=NULL
;
2842 DWORD nLen
=dwHeaderLength
;
2843 if(lpszHeaders
!=NULL
)
2845 nLen
=MultiByteToWideChar(CP_ACP
,0,lpszHeaders
,dwHeaderLength
,NULL
,0);
2846 szHeaders
=HeapAlloc(GetProcessHeap(),0,nLen
*sizeof(WCHAR
));
2847 MultiByteToWideChar(CP_ACP
,0,lpszHeaders
,dwHeaderLength
,szHeaders
,nLen
);
2849 result
=HttpSendRequestW(hHttpRequest
, szHeaders
, nLen
, lpOptional
, dwOptionalLength
);
2850 HeapFree(GetProcessHeap(),0,szHeaders
);
2854 static BOOL
HTTP_GetRequestURL(WININETHTTPREQW
*req
, LPWSTR buf
)
2856 LPHTTPHEADERW host_header
;
2858 static const WCHAR formatW
[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
2860 host_header
= HTTP_GetHeader(req
, szHost
);
2864 sprintfW(buf
, formatW
, host_header
->lpszValue
, req
->lpszPath
); /* FIXME */
2868 /***********************************************************************
2869 * HTTP_HandleRedirect (internal)
2871 static BOOL
HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszUrl
)
2873 static const WCHAR szContentType
[] = {'C','o','n','t','e','n','t','-','T','y','p','e',0};
2874 static const WCHAR szContentLength
[] = {'C','o','n','t','e','n','t','-','L','e','n','g','t','h',0};
2875 LPWININETHTTPSESSIONW lpwhs
= lpwhr
->lpHttpSession
;
2876 LPWININETAPPINFOW hIC
= lpwhs
->lpAppInfo
;
2877 BOOL using_proxy
= hIC
->lpszProxy
&& hIC
->lpszProxy
[0];
2878 WCHAR path
[INTERNET_MAX_URL_LENGTH
];
2883 /* if it's an absolute path, keep the same session info */
2884 lstrcpynW(path
, lpszUrl
, INTERNET_MAX_URL_LENGTH
);
2888 URL_COMPONENTSW urlComponents
;
2889 WCHAR protocol
[32], hostName
[MAXHOSTNAME
], userName
[1024];
2890 static WCHAR szHttp
[] = {'h','t','t','p',0};
2891 static WCHAR szHttps
[] = {'h','t','t','p','s',0};
2892 DWORD url_length
= 0;
2894 LPWSTR combined_url
;
2896 urlComponents
.dwStructSize
= sizeof(URL_COMPONENTSW
);
2897 urlComponents
.lpszScheme
= (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
) ? szHttps
: szHttp
;
2898 urlComponents
.dwSchemeLength
= 0;
2899 urlComponents
.lpszHostName
= lpwhs
->lpszHostName
;
2900 urlComponents
.dwHostNameLength
= 0;
2901 urlComponents
.nPort
= lpwhs
->nHostPort
;
2902 urlComponents
.lpszUserName
= lpwhs
->lpszUserName
;
2903 urlComponents
.dwUserNameLength
= 0;
2904 urlComponents
.lpszPassword
= NULL
;
2905 urlComponents
.dwPasswordLength
= 0;
2906 urlComponents
.lpszUrlPath
= lpwhr
->lpszPath
;
2907 urlComponents
.dwUrlPathLength
= 0;
2908 urlComponents
.lpszExtraInfo
= NULL
;
2909 urlComponents
.dwExtraInfoLength
= 0;
2911 if (!InternetCreateUrlW(&urlComponents
, 0, NULL
, &url_length
) &&
2912 (GetLastError() != ERROR_INSUFFICIENT_BUFFER
))
2915 orig_url
= HeapAlloc(GetProcessHeap(), 0, url_length
);
2917 /* convert from bytes to characters */
2918 url_length
= url_length
/ sizeof(WCHAR
) - 1;
2919 if (!InternetCreateUrlW(&urlComponents
, 0, orig_url
, &url_length
))
2921 HeapFree(GetProcessHeap(), 0, orig_url
);
2926 if (!InternetCombineUrlW(orig_url
, lpszUrl
, NULL
, &url_length
, ICU_ENCODE_SPACES_ONLY
) &&
2927 (GetLastError() != ERROR_INSUFFICIENT_BUFFER
))
2929 HeapFree(GetProcessHeap(), 0, orig_url
);
2932 combined_url
= HeapAlloc(GetProcessHeap(), 0, url_length
* sizeof(WCHAR
));
2934 if (!InternetCombineUrlW(orig_url
, lpszUrl
, combined_url
, &url_length
, ICU_ENCODE_SPACES_ONLY
))
2936 HeapFree(GetProcessHeap(), 0, orig_url
);
2937 HeapFree(GetProcessHeap(), 0, combined_url
);
2940 HeapFree(GetProcessHeap(), 0, orig_url
);
2946 urlComponents
.dwStructSize
= sizeof(URL_COMPONENTSW
);
2947 urlComponents
.lpszScheme
= protocol
;
2948 urlComponents
.dwSchemeLength
= 32;
2949 urlComponents
.lpszHostName
= hostName
;
2950 urlComponents
.dwHostNameLength
= MAXHOSTNAME
;
2951 urlComponents
.lpszUserName
= userName
;
2952 urlComponents
.dwUserNameLength
= 1024;
2953 urlComponents
.lpszPassword
= NULL
;
2954 urlComponents
.dwPasswordLength
= 0;
2955 urlComponents
.lpszUrlPath
= path
;
2956 urlComponents
.dwUrlPathLength
= 2048;
2957 urlComponents
.lpszExtraInfo
= NULL
;
2958 urlComponents
.dwExtraInfoLength
= 0;
2959 if(!InternetCrackUrlW(combined_url
, strlenW(combined_url
), 0, &urlComponents
))
2961 HeapFree(GetProcessHeap(), 0, combined_url
);
2965 HeapFree(GetProcessHeap(), 0, combined_url
);
2967 if (!strncmpW(szHttp
, urlComponents
.lpszScheme
, strlenW(szHttp
)) &&
2968 (lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
))
2970 TRACE("redirect from secure page to non-secure page\n");
2971 /* FIXME: warn about from secure redirect to non-secure page */
2972 lpwhr
->hdr
.dwFlags
&= ~INTERNET_FLAG_SECURE
;
2974 if (!strncmpW(szHttps
, urlComponents
.lpszScheme
, strlenW(szHttps
)) &&
2975 !(lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
))
2977 TRACE("redirect from non-secure page to secure page\n");
2978 /* FIXME: notify about redirect to secure page */
2979 lpwhr
->hdr
.dwFlags
|= INTERNET_FLAG_SECURE
;
2982 if (urlComponents
.nPort
== INTERNET_INVALID_PORT_NUMBER
)
2984 if (lstrlenW(protocol
)>4) /*https*/
2985 urlComponents
.nPort
= INTERNET_DEFAULT_HTTPS_PORT
;
2987 urlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
2992 * This upsets redirects to binary files on sourceforge.net
2993 * and gives an html page instead of the target file
2994 * Examination of the HTTP request sent by native wininet.dll
2995 * reveals that it doesn't send a referrer in that case.
2996 * Maybe there's a flag that enables this, or maybe a referrer
2997 * shouldn't be added in case of a redirect.
3000 /* consider the current host as the referrer */
3001 if (lpwhs
->lpszServerName
&& *lpwhs
->lpszServerName
)
3002 HTTP_ProcessHeader(lpwhr
, HTTP_REFERER
, lpwhs
->lpszServerName
,
3003 HTTP_ADDHDR_FLAG_REQ
|HTTP_ADDREQ_FLAG_REPLACE
|
3004 HTTP_ADDHDR_FLAG_ADD_IF_NEW
);
3007 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszHostName
);
3008 if (urlComponents
.nPort
!= INTERNET_DEFAULT_HTTP_PORT
&&
3009 urlComponents
.nPort
!= INTERNET_DEFAULT_HTTPS_PORT
)
3012 static const WCHAR fmt
[] = {'%','s',':','%','i',0};
3013 len
= lstrlenW(hostName
);
3014 len
+= 7; /* 5 for strlen("65535") + 1 for ":" + 1 for '\0' */
3015 lpwhs
->lpszHostName
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
3016 sprintfW(lpwhs
->lpszHostName
, fmt
, hostName
, urlComponents
.nPort
);
3019 lpwhs
->lpszHostName
= WININET_strdupW(hostName
);
3021 HTTP_ProcessHeader(lpwhr
, szHost
, lpwhs
->lpszHostName
, HTTP_ADDREQ_FLAG_ADD
| HTTP_ADDREQ_FLAG_REPLACE
| HTTP_ADDHDR_FLAG_REQ
);
3023 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszUserName
);
3024 lpwhs
->lpszUserName
= NULL
;
3026 lpwhs
->lpszUserName
= WININET_strdupW(userName
);
3030 HeapFree(GetProcessHeap(), 0, lpwhs
->lpszServerName
);
3031 lpwhs
->lpszServerName
= WININET_strdupW(hostName
);
3032 lpwhs
->nServerPort
= urlComponents
.nPort
;
3034 if (!HTTP_ResolveName(lpwhr
))
3037 NETCON_close(&lpwhr
->netConnection
);
3039 if (!NETCON_init(&lpwhr
->netConnection
,lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_SECURE
))
3043 TRACE("Redirect through proxy\n");
3046 HeapFree(GetProcessHeap(), 0, lpwhr
->lpszPath
);
3047 lpwhr
->lpszPath
=NULL
;
3053 rc
= UrlEscapeW(path
, NULL
, &needed
, URL_ESCAPE_SPACES_ONLY
);
3054 if (rc
!= E_POINTER
)
3055 needed
= strlenW(path
)+1;
3056 lpwhr
->lpszPath
= HeapAlloc(GetProcessHeap(), 0, needed
*sizeof(WCHAR
));
3057 rc
= UrlEscapeW(path
, lpwhr
->lpszPath
, &needed
,
3058 URL_ESCAPE_SPACES_ONLY
);
3061 ERR("Unable to escape string!(%s) (%d)\n",debugstr_w(path
),rc
);
3062 strcpyW(lpwhr
->lpszPath
,path
);
3066 /* Remove custom content-type/length headers on redirects. */
3067 index
= HTTP_GetCustomHeaderIndex(lpwhr
, szContentType
, 0, TRUE
);
3069 HTTP_DeleteCustomHeader(lpwhr
, index
);
3070 index
= HTTP_GetCustomHeaderIndex(lpwhr
, szContentLength
, 0, TRUE
);
3072 HTTP_DeleteCustomHeader(lpwhr
, index
);
3077 /***********************************************************************
3078 * HTTP_build_req (internal)
3080 * concatenate all the strings in the request together
3082 static LPWSTR
HTTP_build_req( LPCWSTR
*list
, int len
)
3087 for( t
= list
; *t
; t
++ )
3088 len
+= strlenW( *t
);
3091 str
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
3094 for( t
= list
; *t
; t
++ )
3100 static BOOL
HTTP_SecureProxyConnect(LPWININETHTTPREQW lpwhr
)
3103 LPWSTR requestString
;
3109 static const WCHAR szConnect
[] = {'C','O','N','N','E','C','T',0};
3110 static const WCHAR szFormat
[] = {'%','s',':','%','d',0};
3111 LPWININETHTTPSESSIONW lpwhs
= lpwhr
->lpHttpSession
;
3115 lpszPath
= HeapAlloc( GetProcessHeap(), 0, (lstrlenW( lpwhs
->lpszHostName
) + 13)*sizeof(WCHAR
) );
3116 sprintfW( lpszPath
, szFormat
, lpwhs
->lpszHostName
, lpwhs
->nHostPort
);
3117 requestString
= HTTP_BuildHeaderRequestString( lpwhr
, szConnect
, lpszPath
, g_szHttp1_1
);
3118 HeapFree( GetProcessHeap(), 0, lpszPath
);
3120 len
= WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
3121 NULL
, 0, NULL
, NULL
);
3122 len
--; /* the nul terminator isn't needed */
3123 ascii_req
= HeapAlloc( GetProcessHeap(), 0, len
);
3124 WideCharToMultiByte( CP_ACP
, 0, requestString
, -1,
3125 ascii_req
, len
, NULL
, NULL
);
3126 HeapFree( GetProcessHeap(), 0, requestString
);
3128 TRACE("full request -> %s\n", debugstr_an( ascii_req
, len
) );
3130 ret
= NETCON_send( &lpwhr
->netConnection
, ascii_req
, len
, 0, &cnt
);
3131 HeapFree( GetProcessHeap(), 0, ascii_req
);
3132 if (!ret
|| cnt
< 0)
3135 responseLen
= HTTP_GetResponseHeaders( lpwhr
, TRUE
);
3142 /***********************************************************************
3143 * HTTP_HttpSendRequestW (internal)
3145 * Sends the specified request to the HTTP server
3152 BOOL WINAPI
HTTP_HttpSendRequestW(LPWININETHTTPREQW lpwhr
, LPCWSTR lpszHeaders
,
3153 DWORD dwHeaderLength
, LPVOID lpOptional
, DWORD dwOptionalLength
,
3154 DWORD dwContentLength
, BOOL bEndRequest
)
3157 BOOL bSuccess
= FALSE
;
3158 LPWSTR requestString
= NULL
;
3161 INTERNET_ASYNC_RESULT iar
;
3162 static const WCHAR szClose
[] = { 'C','l','o','s','e',0 };
3163 static const WCHAR szPost
[] = { 'P','O','S','T',0 };
3164 static const WCHAR szContentLength
[] =
3165 { 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',':',' ','%','l','i','\r','\n',0 };
3166 WCHAR contentLengthStr
[sizeof szContentLength
/2 /* includes \r\n */ + 20 /* int */ ];
3168 TRACE("--> %p\n", lpwhr
);
3170 assert(lpwhr
->hdr
.htype
== WH_HHTTPREQ
);
3172 /* Clear any error information */
3173 INTERNET_SetLastError(0);
3175 /* if the verb is NULL default to GET */
3176 if (!lpwhr
->lpszVerb
)
3177 lpwhr
->lpszVerb
= WININET_strdupW(szGET
);
3179 if (dwContentLength
|| !strcmpW(lpwhr
->lpszVerb
, szPost
))
3181 sprintfW(contentLengthStr
, szContentLength
, dwContentLength
);
3182 HTTP_HttpAddRequestHeadersW(lpwhr
, contentLengthStr
, -1L, HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
3184 if (lpwhr
->lpHttpSession
->lpAppInfo
->lpszAgent
)
3186 WCHAR
*agent_header
;
3187 static const WCHAR user_agent
[] = {'U','s','e','r','-','A','g','e','n','t',':',' ','%','s','\r','\n',0};
3190 len
= strlenW(lpwhr
->lpHttpSession
->lpAppInfo
->lpszAgent
) + strlenW(user_agent
);
3191 agent_header
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3192 sprintfW(agent_header
, user_agent
, lpwhr
->lpHttpSession
->lpAppInfo
->lpszAgent
);
3194 HTTP_HttpAddRequestHeadersW(lpwhr
, agent_header
, strlenW(agent_header
), HTTP_ADDREQ_FLAG_ADD_IF_NEW
);
3195 HeapFree(GetProcessHeap(), 0, agent_header
);
3205 /* like native, just in case the caller forgot to call InternetReadFile
3206 * for all the data */
3207 HTTP_DrainContent(lpwhr
);
3208 lpwhr
->dwContentRead
= 0;
3210 if (TRACE_ON(wininet
))
3212 LPHTTPHEADERW Host
= HTTP_GetHeader(lpwhr
,szHost
);
3213 TRACE("Going to url %s %s\n", debugstr_w(Host
->lpszValue
), debugstr_w(lpwhr
->lpszPath
));
3217 HTTP_ProcessHeader(lpwhr
, szConnection
,
3218 lpwhr
->hdr
.dwFlags
& INTERNET_FLAG_KEEP_CONNECTION
? szKeepAlive
: szClose
,
3219 HTTP_ADDHDR_FLAG_REQ
| HTTP_ADDHDR_FLAG_REPLACE
);
3221 HTTP_InsertAuthorization(lpwhr
, lpwhr
->pAuthInfo
, szAuthorization
);
3222 HTTP_InsertAuthorization(lpwhr
, lpwhr
->pProxyAuthInfo
, szProxy_Authorization
);
3224 /* add the headers the caller supplied */
3225 if( lpszHeaders
&& dwHeaderLength
)
3227 HTTP_HttpAddRequestHeadersW(lpwhr