Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1 | /* |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2 | * Wininet - Http Implementation |
| 3 | * |
| 4 | * Copyright 1999 Corel Corporation |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 5 | * Copyright 2002 CodeWeavers Inc. |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 6 | * Copyright 2002 TransGaming Technologies Inc. |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 7 | * |
| 8 | * Ulrich Czekalla |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 9 | * Aric Stewart |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 10 | * David Hammerton |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 11 | * |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 12 | * This library is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU Lesser General Public |
| 14 | * License as published by the Free Software Foundation; either |
| 15 | * version 2.1 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This library is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 20 | * Lesser General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU Lesser General Public |
| 23 | * License along with this library; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 25 | */ |
| 26 | |
Patrik Stridvall | 4710be2 | 2000-06-23 15:47:14 +0000 | [diff] [blame] | 27 | #include "config.h" |
| 28 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 29 | #include <sys/types.h> |
Patrik Stridvall | 4710be2 | 2000-06-23 15:47:14 +0000 | [diff] [blame] | 30 | #ifdef HAVE_SYS_SOCKET_H |
| 31 | # include <sys/socket.h> |
| 32 | #endif |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 33 | #include <stdio.h> |
| 34 | #include <stdlib.h> |
Patrik Stridvall | d016f81 | 2002-08-17 00:43:16 +0000 | [diff] [blame] | 35 | #ifdef HAVE_UNISTD_H |
| 36 | # include <unistd.h> |
| 37 | #endif |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 38 | #include <errno.h> |
Jon Griffiths | 4ab1558 | 2001-01-22 02:17:29 +0000 | [diff] [blame] | 39 | #include <string.h> |
Chris Morgan | b9807b4 | 2001-02-15 21:24:07 +0000 | [diff] [blame] | 40 | #include <time.h> |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 41 | |
Guy Albertelli | aafec98 | 2001-11-06 22:31:19 +0000 | [diff] [blame] | 42 | #include "windef.h" |
| 43 | #include "winbase.h" |
| 44 | #include "wininet.h" |
| 45 | #include "winreg.h" |
| 46 | #include "winerror.h" |
Jon Griffiths | 603f20f | 2001-12-11 00:30:17 +0000 | [diff] [blame] | 47 | #define NO_SHLWAPI_STREAM |
Guy Albertelli | aafec98 | 2001-11-06 22:31:19 +0000 | [diff] [blame] | 48 | #include "shlwapi.h" |
| 49 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 50 | #include "internet.h" |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 51 | #include "wine/debug.h" |
Alberto Massari | d476a5a | 2002-11-12 02:13:04 +0000 | [diff] [blame] | 52 | #include "wine/unicode.h" |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 53 | |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 54 | WINE_DEFAULT_DEBUG_CHANNEL(wininet); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 55 | |
| 56 | #define HTTPHEADER " HTTP/1.0" |
| 57 | #define HTTPHOSTHEADER "\r\nHost: " |
| 58 | #define MAXHOSTNAME 100 |
| 59 | #define MAX_FIELD_VALUE_LEN 256 |
| 60 | #define MAX_FIELD_LEN 256 |
| 61 | |
| 62 | |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 63 | #define HTTP_REFERER "Referer" |
| 64 | #define HTTP_ACCEPT "Accept" |
| 65 | #define HTTP_USERAGENT "User-Agent" |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 66 | |
| 67 | #define HTTP_ADDHDR_FLAG_ADD 0x20000000 |
| 68 | #define HTTP_ADDHDR_FLAG_ADD_IF_NEW 0x10000000 |
| 69 | #define HTTP_ADDHDR_FLAG_COALESCE 0x40000000 |
| 70 | #define HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA 0x40000000 |
| 71 | #define HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON 0x01000000 |
| 72 | #define HTTP_ADDHDR_FLAG_REPLACE 0x80000000 |
| 73 | #define HTTP_ADDHDR_FLAG_REQ 0x02000000 |
| 74 | |
| 75 | |
| 76 | BOOL HTTP_OpenConnection(LPWININETHTTPREQA lpwhr); |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 77 | int HTTP_WriteDataToStream(LPWININETHTTPREQA lpwhr, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 78 | void *Buffer, int BytesToWrite); |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 79 | int HTTP_ReadDataFromStream(LPWININETHTTPREQA lpwhr, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 80 | void *Buffer, int BytesToRead); |
| 81 | BOOL HTTP_GetResponseHeaders(LPWININETHTTPREQA lpwhr); |
| 82 | BOOL HTTP_ProcessHeader(LPWININETHTTPREQA lpwhr, LPCSTR field, LPCSTR value, DWORD dwModifier); |
| 83 | void HTTP_CloseConnection(LPWININETHTTPREQA lpwhr); |
| 84 | BOOL HTTP_InterpretHttpHeader(LPSTR buffer, LPSTR field, INT fieldlen, LPSTR value, INT valuelen); |
| 85 | INT HTTP_GetStdHeaderIndex(LPCSTR lpszField); |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 86 | BOOL HTTP_InsertCustomHeader(LPWININETHTTPREQA lpwhr, LPHTTPHEADERA lpHdr); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 87 | INT HTTP_GetCustomHeaderIndex(LPWININETHTTPREQA lpwhr, LPCSTR lpszField); |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 88 | BOOL HTTP_DeleteCustomHeader(LPWININETHTTPREQA lpwhr, INT index); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 89 | |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 90 | inline static LPSTR HTTP_strdup( LPCSTR str ) |
| 91 | { |
| 92 | LPSTR ret = HeapAlloc( GetProcessHeap(), 0, strlen(str) + 1 ); |
| 93 | if (ret) strcpy( ret, str ); |
| 94 | return ret; |
| 95 | } |
| 96 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 97 | /*********************************************************************** |
Patrik Stridvall | 8b216b3 | 2001-06-19 18:20:47 +0000 | [diff] [blame] | 98 | * HttpAddRequestHeadersA (WININET.@) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 99 | * |
| 100 | * Adds one or more HTTP header to the request handler |
| 101 | * |
| 102 | * RETURNS |
| 103 | * TRUE on success |
| 104 | * FALSE on failure |
| 105 | * |
| 106 | */ |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 107 | BOOL WINAPI HttpAddRequestHeadersA(HINTERNET hHttpRequest, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 108 | LPCSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier) |
| 109 | { |
| 110 | LPSTR lpszStart; |
| 111 | LPSTR lpszEnd; |
| 112 | LPSTR buffer; |
| 113 | CHAR value[MAX_FIELD_VALUE_LEN], field[MAX_FIELD_LEN]; |
| 114 | BOOL bSuccess = FALSE; |
| 115 | LPWININETHTTPREQA lpwhr = (LPWININETHTTPREQA) hHttpRequest; |
| 116 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 117 | TRACE("%p, %s, %li, %li\n", hHttpRequest, lpszHeader, dwHeaderLength, |
| 118 | dwModifier); |
| 119 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 120 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 121 | if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ) |
| 122 | { |
| 123 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 124 | return FALSE; |
| 125 | } |
| 126 | |
Uwe Bonnes | 1cd00da | 2003-02-25 03:57:59 +0000 | [diff] [blame] | 127 | if (!lpszHeader) |
| 128 | return TRUE; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 129 | |
| 130 | TRACE("copying header: %s\n", lpszHeader); |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 131 | buffer = HTTP_strdup(lpszHeader); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 132 | lpszStart = buffer; |
| 133 | |
| 134 | do |
| 135 | { |
| 136 | lpszEnd = lpszStart; |
| 137 | |
| 138 | while (*lpszEnd != '\0') |
| 139 | { |
| 140 | if (*lpszEnd == '\r' && *(lpszEnd + 1) == '\n') |
| 141 | break; |
| 142 | lpszEnd++; |
| 143 | } |
| 144 | |
| 145 | if (*lpszEnd == '\0') |
| 146 | break; |
| 147 | |
| 148 | *lpszEnd = '\0'; |
| 149 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 150 | TRACE("interpreting header %s\n", debugstr_a(lpszStart)); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 151 | if (HTTP_InterpretHttpHeader(lpszStart, field, MAX_FIELD_LEN, value, MAX_FIELD_VALUE_LEN)) |
| 152 | bSuccess = HTTP_ProcessHeader(lpwhr, field, value, dwModifier | HTTP_ADDHDR_FLAG_REQ); |
| 153 | |
| 154 | lpszStart = lpszEnd + 2; /* Jump over \0\n */ |
| 155 | |
| 156 | } while (bSuccess); |
| 157 | |
| 158 | HeapFree(GetProcessHeap(), 0, buffer); |
| 159 | return bSuccess; |
| 160 | } |
| 161 | |
Chris Morgan | a8b3216 | 2002-09-27 22:05:23 +0000 | [diff] [blame] | 162 | /*********************************************************************** |
| 163 | * HttpEndRequestA (WININET.@) |
| 164 | * |
| 165 | * Ends an HTTP request that was started by HttpSendRequestEx |
| 166 | * |
| 167 | * RETURNS |
| 168 | * TRUE if successful |
| 169 | * FALSE on failure |
| 170 | * |
| 171 | */ |
| 172 | BOOL WINAPI HttpEndRequestA(HINTERNET hRequest, LPINTERNET_BUFFERSA lpBuffersOut, |
| 173 | DWORD dwFlags, DWORD dwContext) |
| 174 | { |
| 175 | FIXME("stub\n"); |
| 176 | return FALSE; |
| 177 | } |
| 178 | |
| 179 | /*********************************************************************** |
| 180 | * HttpEndRequestW (WININET.@) |
| 181 | * |
| 182 | * Ends an HTTP request that was started by HttpSendRequestEx |
| 183 | * |
| 184 | * RETURNS |
| 185 | * TRUE if successful |
| 186 | * FALSE on failure |
| 187 | * |
| 188 | */ |
| 189 | BOOL WINAPI HttpEndRequestW(HINTERNET hRequest, LPINTERNET_BUFFERSW lpBuffersOut, |
| 190 | DWORD dwFlags, DWORD dwContext) |
| 191 | { |
| 192 | FIXME("stub\n"); |
| 193 | return FALSE; |
| 194 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 195 | |
| 196 | /*********************************************************************** |
Patrik Stridvall | 8b216b3 | 2001-06-19 18:20:47 +0000 | [diff] [blame] | 197 | * HttpOpenRequestA (WININET.@) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 198 | * |
| 199 | * Open a HTTP request handle |
| 200 | * |
| 201 | * RETURNS |
| 202 | * HINTERNET a HTTP request handle on success |
| 203 | * NULL on failure |
| 204 | * |
| 205 | */ |
Patrik Stridvall | 3c0211f | 2001-09-11 00:32:32 +0000 | [diff] [blame] | 206 | HINTERNET WINAPI HttpOpenRequestA(HINTERNET hHttpSession, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 207 | LPCSTR lpszVerb, LPCSTR lpszObjectName, LPCSTR lpszVersion, |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 208 | LPCSTR lpszReferrer , LPCSTR *lpszAcceptTypes, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 209 | DWORD dwFlags, DWORD dwContext) |
| 210 | { |
| 211 | LPWININETHTTPSESSIONA lpwhs = (LPWININETHTTPSESSIONA) hHttpSession; |
| 212 | LPWININETAPPINFOA hIC = NULL; |
| 213 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 214 | TRACE("(%p, %s, %s, %s, %s, %p, %08lx, %08lx)\n", hHttpSession, |
| 215 | debugstr_a(lpszVerb), lpszObjectName, |
| 216 | debugstr_a(lpszVersion), debugstr_a(lpszReferrer), lpszAcceptTypes, |
| 217 | dwFlags, dwContext); |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 218 | if(lpszAcceptTypes!=NULL) |
| 219 | { |
| 220 | int i; |
| 221 | for(i=0;lpszAcceptTypes[i]!=NULL;i++) |
| 222 | TRACE("\taccept type: %s\n",lpszAcceptTypes[i]); |
| 223 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 224 | |
| 225 | if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION) |
| 226 | { |
| 227 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 228 | return FALSE; |
| 229 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 230 | hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 231 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 232 | /* |
| 233 | * My tests seem to show that the windows version does not |
| 234 | * become asynchronous until after this point. And anyhow |
| 235 | * if this call was asynchronous then how would you get the |
| 236 | * necessary HINTERNET pointer returned by this function. |
| 237 | * |
| 238 | * I am leaving this here just in case I am wrong |
| 239 | * |
| 240 | * if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) |
| 241 | */ |
| 242 | if (0) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 243 | { |
| 244 | WORKREQUEST workRequest; |
| 245 | |
| 246 | workRequest.asyncall = HTTPOPENREQUESTA; |
| 247 | workRequest.HFTPSESSION = (DWORD)hHttpSession; |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 248 | workRequest.LPSZVERB = (DWORD)HTTP_strdup(lpszVerb); |
| 249 | workRequest.LPSZOBJECTNAME = (DWORD)HTTP_strdup(lpszObjectName); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 250 | if (lpszVersion) |
| 251 | workRequest.LPSZVERSION = (DWORD)HTTP_strdup(lpszVersion); |
| 252 | else |
| 253 | workRequest.LPSZVERSION = 0; |
| 254 | if (lpszReferrer) |
| 255 | workRequest.LPSZREFERRER = (DWORD)HTTP_strdup(lpszReferrer); |
| 256 | else |
| 257 | workRequest.LPSZREFERRER = 0; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 258 | workRequest.LPSZACCEPTTYPES = (DWORD)lpszAcceptTypes; |
| 259 | workRequest.DWFLAGS = dwFlags; |
| 260 | workRequest.DWCONTEXT = dwContext; |
| 261 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 262 | INTERNET_AsyncCall(&workRequest); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 263 | TRACE ("returning NULL\n"); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 264 | return NULL; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 265 | } |
| 266 | else |
| 267 | { |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 268 | HINTERNET rec = HTTP_HttpOpenRequestA(hHttpSession, lpszVerb, lpszObjectName, |
| 269 | lpszVersion, lpszReferrer, lpszAcceptTypes, |
| 270 | dwFlags, dwContext); |
| 271 | TRACE("returning %p\n", rec); |
| 272 | return rec; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 273 | } |
| 274 | } |
| 275 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 276 | |
Alberto Massari | d476a5a | 2002-11-12 02:13:04 +0000 | [diff] [blame] | 277 | /*********************************************************************** |
| 278 | * HttpOpenRequestW (WININET.@) |
| 279 | * |
| 280 | * Open a HTTP request handle |
| 281 | * |
| 282 | * RETURNS |
| 283 | * HINTERNET a HTTP request handle on success |
| 284 | * NULL on failure |
| 285 | * |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 286 | * FIXME: This should be the other way around (A should call W) |
Alberto Massari | d476a5a | 2002-11-12 02:13:04 +0000 | [diff] [blame] | 287 | */ |
| 288 | HINTERNET WINAPI HttpOpenRequestW(HINTERNET hHttpSession, |
| 289 | LPCWSTR lpszVerb, LPCWSTR lpszObjectName, LPCWSTR lpszVersion, |
| 290 | LPCWSTR lpszReferrer , LPCWSTR *lpszAcceptTypes, |
| 291 | DWORD dwFlags, DWORD dwContext) |
| 292 | { |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 293 | CHAR *szVerb = NULL, *szObjectName = NULL; |
| 294 | CHAR *szVersion = NULL, *szReferrer = NULL, **szAcceptTypes = NULL; |
| 295 | INT len; |
| 296 | INT acceptTypesCount; |
| 297 | HINTERNET rc = FALSE; |
| 298 | TRACE("(%p, %s, %s, %s, %s, %p, %08lx, %08lx)\n", hHttpSession, |
| 299 | debugstr_w(lpszVerb), debugstr_w(lpszObjectName), |
| 300 | debugstr_w(lpszVersion), debugstr_w(lpszReferrer), lpszAcceptTypes, |
| 301 | dwFlags, dwContext); |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 302 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 303 | if (lpszVerb) |
| 304 | { |
| 305 | len = lstrlenW(lpszVerb)+1; |
| 306 | if (!(szVerb = (CHAR *) HeapAlloc(GetProcessHeap(), 0, len * sizeof(CHAR)))) |
| 307 | goto end; |
| 308 | WideCharToMultiByte(CP_ACP, -1, lpszVerb, -1, szVerb, len, NULL, NULL); |
| 309 | } |
| 310 | |
| 311 | if (lpszObjectName) |
| 312 | { |
| 313 | len = lstrlenW(lpszObjectName)+1; |
| 314 | if (!(szObjectName = (CHAR *) HeapAlloc(GetProcessHeap(), 0, len * sizeof(CHAR)))) |
| 315 | goto end; |
| 316 | WideCharToMultiByte(CP_ACP, -1, lpszObjectName, -1, szObjectName, len, NULL, NULL); |
| 317 | } |
| 318 | |
| 319 | if (lpszVersion) |
| 320 | { |
| 321 | len = lstrlenW(lpszVersion)+1; |
| 322 | if (!(szVersion = (CHAR *) HeapAlloc(GetProcessHeap(), 0, len * sizeof(CHAR)))) |
| 323 | goto end; |
| 324 | WideCharToMultiByte(CP_ACP, -1, lpszVersion, -1, szVersion, len, NULL, NULL); |
| 325 | } |
| 326 | |
| 327 | if (lpszReferrer) |
| 328 | { |
| 329 | len = lstrlenW(lpszReferrer)+1; |
| 330 | if (!(szReferrer = (CHAR *) HeapAlloc(GetProcessHeap(), 0, len * sizeof(CHAR)))) |
| 331 | goto end; |
| 332 | WideCharToMultiByte(CP_ACP, -1, lpszReferrer, -1, szReferrer, len, NULL, NULL); |
| 333 | } |
| 334 | |
| 335 | acceptTypesCount = 0; |
| 336 | if (lpszAcceptTypes) |
| 337 | { |
| 338 | while (lpszAcceptTypes[acceptTypesCount]) { acceptTypesCount++; } /* find out how many there are */ |
| 339 | szAcceptTypes = HeapAlloc(GetProcessHeap(), 0, sizeof(CHAR *) * acceptTypesCount); |
| 340 | acceptTypesCount = 0; |
| 341 | while (lpszAcceptTypes[acceptTypesCount]) |
| 342 | { |
| 343 | len = lstrlenW(lpszAcceptTypes[acceptTypesCount])+1; |
| 344 | if (!(szAcceptTypes[acceptTypesCount] = (CHAR *) HeapAlloc(GetProcessHeap(), |
| 345 | 0, len * sizeof(CHAR)))) |
| 346 | goto end; |
| 347 | WideCharToMultiByte(CP_ACP, -1, lpszAcceptTypes[acceptTypesCount], |
| 348 | -1, szAcceptTypes[acceptTypesCount], len, NULL, NULL); |
| 349 | acceptTypesCount++; |
| 350 | } |
| 351 | } |
| 352 | else szAcceptTypes = 0; |
| 353 | |
| 354 | rc = HttpOpenRequestA(hHttpSession, (LPCSTR)szVerb, (LPCSTR)szObjectName, |
| 355 | (LPCSTR)szVersion, (LPCSTR)szReferrer, |
| 356 | (LPCSTR *)szAcceptTypes, dwFlags, dwContext); |
| 357 | |
| 358 | end: |
| 359 | if (szAcceptTypes) |
| 360 | { |
| 361 | acceptTypesCount = 0; |
| 362 | while (szAcceptTypes[acceptTypesCount]) |
| 363 | { |
| 364 | HeapFree(GetProcessHeap(), 0, szAcceptTypes[acceptTypesCount]); |
| 365 | acceptTypesCount++; |
| 366 | } |
| 367 | HeapFree(GetProcessHeap(), 0, szAcceptTypes); |
| 368 | } |
| 369 | if (szReferrer) HeapFree(GetProcessHeap(), 0, szReferrer); |
| 370 | if (szVersion) HeapFree(GetProcessHeap(), 0, szVersion); |
| 371 | if (szObjectName) HeapFree(GetProcessHeap(), 0, szObjectName); |
| 372 | if (szVerb) HeapFree(GetProcessHeap(), 0, szVerb); |
| 373 | |
| 374 | return rc; |
Alberto Massari | d476a5a | 2002-11-12 02:13:04 +0000 | [diff] [blame] | 375 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 376 | |
| 377 | /*********************************************************************** |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 378 | * HTTP_Base64 |
| 379 | */ |
| 380 | static UINT HTTP_Base64( LPCSTR bin, LPSTR base64 ) |
| 381 | { |
| 382 | UINT n = 0, x; |
| 383 | static LPSTR HTTP_Base64Enc = |
| 384 | "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; |
| 385 | |
| 386 | while( bin[0] ) |
| 387 | { |
| 388 | /* first 6 bits, all from bin[0] */ |
| 389 | base64[n++] = HTTP_Base64Enc[(bin[0] & 0xfc) >> 2]; |
| 390 | x = (bin[0] & 3) << 4; |
| 391 | |
| 392 | /* next 6 bits, 2 from bin[0] and 4 from bin[1] */ |
| 393 | if( !bin[1] ) |
| 394 | { |
| 395 | base64[n++] = HTTP_Base64Enc[x]; |
| 396 | base64[n++] = '='; |
| 397 | base64[n++] = '='; |
| 398 | break; |
| 399 | } |
| 400 | base64[n++] = HTTP_Base64Enc[ x | ( (bin[1]&0xf0) >> 4 ) ]; |
| 401 | x = ( bin[1] & 0x0f ) << 2; |
| 402 | |
| 403 | /* next 6 bits 4 from bin[1] and 2 from bin[2] */ |
| 404 | if( !bin[2] ) |
| 405 | { |
| 406 | base64[n++] = HTTP_Base64Enc[x]; |
| 407 | base64[n++] = '='; |
| 408 | break; |
| 409 | } |
| 410 | base64[n++] = HTTP_Base64Enc[ x | ( (bin[2]&0xc0 ) >> 6 ) ]; |
| 411 | |
| 412 | /* last 6 bits, all from bin [2] */ |
| 413 | base64[n++] = HTTP_Base64Enc[ bin[2] & 0x3f ]; |
| 414 | bin += 3; |
| 415 | } |
| 416 | base64[n] = 0; |
| 417 | return n; |
| 418 | } |
| 419 | |
| 420 | /*********************************************************************** |
| 421 | * HTTP_EncodeBasicAuth |
| 422 | * |
| 423 | * Encode the basic authentication string for HTTP 1.1 |
| 424 | */ |
| 425 | static LPSTR HTTP_EncodeBasicAuth( LPCSTR username, LPCSTR password) |
| 426 | { |
| 427 | UINT len; |
| 428 | LPSTR in, out, szBasic = "Basic "; |
| 429 | |
| 430 | len = strlen( username ) + 1 + strlen ( password ) + 1; |
| 431 | in = HeapAlloc( GetProcessHeap(), 0, len ); |
| 432 | if( !in ) |
| 433 | return NULL; |
| 434 | |
| 435 | len = strlen(szBasic) + |
| 436 | (strlen( username ) + 1 + strlen ( password ))*2 + 1 + 1; |
| 437 | out = HeapAlloc( GetProcessHeap(), 0, len ); |
| 438 | if( out ) |
| 439 | { |
| 440 | strcpy( in, username ); |
| 441 | strcat( in, ":" ); |
| 442 | strcat( in, password ); |
| 443 | strcpy( out, szBasic ); |
| 444 | HTTP_Base64( in, &out[strlen(out)] ); |
| 445 | } |
| 446 | HeapFree( GetProcessHeap(), 0, in ); |
| 447 | |
| 448 | return out; |
| 449 | } |
| 450 | |
| 451 | /*********************************************************************** |
| 452 | * HTTP_InsertProxyAuthorization |
| 453 | * |
| 454 | * Insert the basic authorization field in the request header |
| 455 | */ |
| 456 | BOOL HTTP_InsertProxyAuthorization( LPWININETHTTPREQA lpwhr, |
| 457 | LPCSTR username, LPCSTR password ) |
| 458 | { |
| 459 | HTTPHEADERA hdr; |
| 460 | INT index; |
| 461 | |
| 462 | hdr.lpszField = "Proxy-Authorization"; |
| 463 | hdr.lpszValue = HTTP_EncodeBasicAuth( username, password ); |
| 464 | hdr.wFlags = HDR_ISREQUEST; |
| 465 | hdr.wCount = 0; |
| 466 | if( !hdr.lpszValue ) |
| 467 | return FALSE; |
| 468 | |
| 469 | TRACE("Inserting %s = %s\n", |
| 470 | debugstr_a( hdr.lpszField ), debugstr_a( hdr.lpszValue ) ); |
| 471 | |
| 472 | /* remove the old proxy authorization header */ |
| 473 | index = HTTP_GetCustomHeaderIndex( lpwhr, hdr.lpszField ); |
| 474 | if( index >=0 ) |
| 475 | HTTP_DeleteCustomHeader( lpwhr, index ); |
| 476 | |
| 477 | HTTP_InsertCustomHeader(lpwhr, &hdr); |
| 478 | HeapFree( GetProcessHeap(), 0, hdr.lpszValue ); |
| 479 | |
| 480 | return TRUE; |
| 481 | } |
| 482 | |
| 483 | /*********************************************************************** |
| 484 | * HTTP_DealWithProxy |
| 485 | */ |
| 486 | static BOOL HTTP_DealWithProxy( LPWININETAPPINFOA hIC, |
| 487 | LPWININETHTTPSESSIONA lpwhs, LPWININETHTTPREQA lpwhr) |
| 488 | { |
| 489 | char buf[MAXHOSTNAME]; |
| 490 | char proxy[MAXHOSTNAME + 15]; /* 15 == "http://" + sizeof(port#) + ":/\0" */ |
| 491 | char* url, *szNul = ""; |
| 492 | URL_COMPONENTSA UrlComponents; |
| 493 | |
| 494 | memset( &UrlComponents, 0, sizeof UrlComponents ); |
| 495 | UrlComponents.dwStructSize = sizeof UrlComponents; |
| 496 | UrlComponents.lpszHostName = buf; |
| 497 | UrlComponents.dwHostNameLength = MAXHOSTNAME; |
| 498 | |
| 499 | sprintf(proxy, "http://%s/", hIC->lpszProxy); |
| 500 | if( !InternetCrackUrlA(proxy, 0, 0, &UrlComponents) ) |
| 501 | return FALSE; |
| 502 | if( UrlComponents.dwHostNameLength == 0 ) |
| 503 | return FALSE; |
| 504 | |
| 505 | if( !lpwhr->lpszPath ) |
| 506 | lpwhr->lpszPath = szNul; |
| 507 | TRACE("server='%s' path='%s'\n", |
| 508 | lpwhs->lpszServerName, lpwhr->lpszPath); |
| 509 | /* for constant 15 see above */ |
| 510 | url = HeapAlloc(GetProcessHeap(), 0, |
| 511 | strlen(lpwhs->lpszServerName) + strlen(lpwhr->lpszPath) + 15); |
| 512 | |
| 513 | if(UrlComponents.nPort == INTERNET_INVALID_PORT_NUMBER) |
| 514 | UrlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT; |
| 515 | |
| 516 | sprintf(url, "http://%s:%d", lpwhs->lpszServerName, |
| 517 | lpwhs->nServerPort); |
| 518 | if( lpwhr->lpszPath[0] != '/' ) |
| 519 | strcat( url, "/" ); |
| 520 | strcat(url, lpwhr->lpszPath); |
| 521 | if(lpwhr->lpszPath != szNul) |
| 522 | HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath); |
| 523 | lpwhr->lpszPath = url; |
| 524 | /* FIXME: Do I have to free lpwhs->lpszServerName here ? */ |
| 525 | lpwhs->lpszServerName = HTTP_strdup(UrlComponents.lpszHostName); |
| 526 | lpwhs->nServerPort = UrlComponents.nPort; |
| 527 | |
| 528 | return TRUE; |
| 529 | } |
| 530 | |
| 531 | /*********************************************************************** |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 532 | * HTTP_HttpOpenRequestA (internal) |
| 533 | * |
| 534 | * Open a HTTP request handle |
| 535 | * |
| 536 | * RETURNS |
| 537 | * HINTERNET a HTTP request handle on success |
| 538 | * NULL on failure |
| 539 | * |
| 540 | */ |
Patrik Stridvall | 3c0211f | 2001-09-11 00:32:32 +0000 | [diff] [blame] | 541 | HINTERNET WINAPI HTTP_HttpOpenRequestA(HINTERNET hHttpSession, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 542 | LPCSTR lpszVerb, LPCSTR lpszObjectName, LPCSTR lpszVersion, |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 543 | LPCSTR lpszReferrer , LPCSTR *lpszAcceptTypes, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 544 | DWORD dwFlags, DWORD dwContext) |
| 545 | { |
| 546 | LPWININETHTTPSESSIONA lpwhs = (LPWININETHTTPSESSIONA) hHttpSession; |
| 547 | LPWININETAPPINFOA hIC = NULL; |
| 548 | LPWININETHTTPREQA lpwhr; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 549 | LPSTR lpszCookies; |
| 550 | LPSTR lpszUrl = NULL; |
| 551 | DWORD nCookieSize; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 552 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 553 | TRACE("--> \n"); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 554 | |
| 555 | if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION) |
| 556 | { |
| 557 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 558 | return FALSE; |
| 559 | } |
| 560 | |
| 561 | hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 562 | |
| 563 | lpwhr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETHTTPREQA)); |
| 564 | if (NULL == lpwhr) |
| 565 | { |
| 566 | INTERNET_SetLastError(ERROR_OUTOFMEMORY); |
| 567 | return (HINTERNET) NULL; |
| 568 | } |
| 569 | |
| 570 | lpwhr->hdr.htype = WH_HHTTPREQ; |
| 571 | lpwhr->hdr.lpwhparent = hHttpSession; |
| 572 | lpwhr->hdr.dwFlags = dwFlags; |
| 573 | lpwhr->hdr.dwContext = dwContext; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 574 | NETCON_init(&lpwhr->netConnection, dwFlags & INTERNET_FLAG_SECURE); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 575 | |
Huw D M Davies | 0aebee9 | 2001-01-21 21:09:00 +0000 | [diff] [blame] | 576 | if (NULL != lpszObjectName && strlen(lpszObjectName)) { |
| 577 | DWORD needed = 0; |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 578 | HRESULT rc; |
| 579 | rc = UrlEscapeA(lpszObjectName, NULL, &needed, URL_ESCAPE_SPACES_ONLY); |
| 580 | if (rc != E_POINTER) |
| 581 | needed = strlen(lpszObjectName)+1; |
Huw D M Davies | 0aebee9 | 2001-01-21 21:09:00 +0000 | [diff] [blame] | 582 | lpwhr->lpszPath = HeapAlloc(GetProcessHeap(), 0, needed); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 583 | rc = UrlEscapeA(lpszObjectName, lpwhr->lpszPath, &needed, |
Huw D M Davies | 0aebee9 | 2001-01-21 21:09:00 +0000 | [diff] [blame] | 584 | URL_ESCAPE_SPACES_ONLY); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 585 | if (rc) |
| 586 | { |
| 587 | ERR("Unable to escape string!(%s) (%ld)\n",lpszObjectName,rc); |
| 588 | strcpy(lpwhr->lpszPath,lpszObjectName); |
| 589 | } |
Huw D M Davies | 0aebee9 | 2001-01-21 21:09:00 +0000 | [diff] [blame] | 590 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 591 | |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 592 | if (NULL != lpszReferrer && strlen(lpszReferrer)) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 593 | HTTP_ProcessHeader(lpwhr, HTTP_REFERER, lpszReferrer, HTTP_ADDHDR_FLAG_COALESCE); |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 594 | |
| 595 | if(lpszAcceptTypes!=NULL) |
| 596 | { |
| 597 | int i; |
| 598 | for(i=0;lpszAcceptTypes[i]!=NULL;i++) |
| 599 | HTTP_ProcessHeader(lpwhr, HTTP_ACCEPT, lpszAcceptTypes[i], HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA|HTTP_ADDHDR_FLAG_REQ|HTTP_ADDHDR_FLAG_ADD_IF_NEW); |
| 600 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 601 | |
| 602 | if (NULL == lpszVerb) |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 603 | lpwhr->lpszVerb = HTTP_strdup("GET"); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 604 | else if (strlen(lpszVerb)) |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 605 | lpwhr->lpszVerb = HTTP_strdup(lpszVerb); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 606 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 607 | if (NULL != lpszReferrer && strlen(lpszReferrer)) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 608 | { |
| 609 | char buf[MAXHOSTNAME]; |
| 610 | URL_COMPONENTSA UrlComponents; |
| 611 | |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 612 | memset( &UrlComponents, 0, sizeof UrlComponents ); |
| 613 | UrlComponents.dwStructSize = sizeof UrlComponents; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 614 | UrlComponents.lpszHostName = buf; |
| 615 | UrlComponents.dwHostNameLength = MAXHOSTNAME; |
| 616 | |
| 617 | InternetCrackUrlA(lpszReferrer, 0, 0, &UrlComponents); |
| 618 | if (strlen(UrlComponents.lpszHostName)) |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 619 | lpwhr->lpszHostName = HTTP_strdup(UrlComponents.lpszHostName); |
Andreas Mohr | 3496556 | 2000-08-26 20:31:48 +0000 | [diff] [blame] | 620 | } else { |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 621 | lpwhr->lpszHostName = HTTP_strdup(lpwhs->lpszServerName); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 622 | } |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 623 | if (NULL != hIC->lpszProxy && hIC->lpszProxy[0] != 0) |
| 624 | HTTP_DealWithProxy( hIC, lpwhs, lpwhr ); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 625 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 626 | if (hIC->lpszAgent) |
| 627 | { |
| 628 | char *agent_header = HeapAlloc(GetProcessHeap(), 0, strlen(hIC->lpszAgent) + 1 + 14); |
| 629 | sprintf(agent_header, "User-Agent: %s\r\n", hIC->lpszAgent); |
| 630 | HttpAddRequestHeadersA((HINTERNET)lpwhr, agent_header, strlen(agent_header), |
| 631 | HTTP_ADDREQ_FLAG_ADD); |
| 632 | HeapFree(GetProcessHeap(), 0, agent_header); |
| 633 | } |
| 634 | |
| 635 | lpszUrl = HeapAlloc(GetProcessHeap(), 0, strlen(lpwhr->lpszHostName) + 1 + 7); |
| 636 | sprintf(lpszUrl, "http://%s", lpwhr->lpszHostName); |
| 637 | if (InternetGetCookieA(lpszUrl, NULL, NULL, &nCookieSize)) |
| 638 | { |
| 639 | int cnt = 0; |
| 640 | |
| 641 | lpszCookies = HeapAlloc(GetProcessHeap(), 0, nCookieSize + 1 + 8); |
| 642 | |
| 643 | cnt += sprintf(lpszCookies, "Cookie: "); |
| 644 | InternetGetCookieA(lpszUrl, NULL, lpszCookies + cnt, &nCookieSize); |
| 645 | cnt += nCookieSize - 1; |
| 646 | sprintf(lpszCookies + cnt, "\r\n"); |
| 647 | |
| 648 | HttpAddRequestHeadersA((HINTERNET)lpwhr, lpszCookies, strlen(lpszCookies), |
| 649 | HTTP_ADDREQ_FLAG_ADD); |
| 650 | HeapFree(GetProcessHeap(), 0, lpszCookies); |
| 651 | } |
| 652 | HeapFree(GetProcessHeap(), 0, lpszUrl); |
| 653 | |
| 654 | |
| 655 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 656 | if (hIC->lpfnStatusCB) |
| 657 | { |
| 658 | INTERNET_ASYNC_RESULT iar; |
| 659 | |
| 660 | iar.dwResult = (DWORD)lpwhr; |
| 661 | iar.dwError = ERROR_SUCCESS; |
| 662 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 663 | SendAsyncCallback(hIC, hHttpSession, dwContext, |
| 664 | INTERNET_STATUS_HANDLE_CREATED, &iar, |
| 665 | sizeof(INTERNET_ASYNC_RESULT)); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 666 | } |
| 667 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 668 | /* |
| 669 | * A STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on windows |
| 670 | */ |
| 671 | |
| 672 | /* |
| 673 | * According to my tests. The name is not resolved until a request is Opened |
| 674 | */ |
| 675 | SendAsyncCallback(hIC, hHttpSession, dwContext, |
| 676 | INTERNET_STATUS_RESOLVING_NAME, |
| 677 | lpwhs->lpszServerName, |
| 678 | strlen(lpwhs->lpszServerName)+1); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 679 | if (!GetAddress(lpwhs->lpszServerName, lpwhs->nServerPort, |
| 680 | &lpwhs->phostent, &lpwhs->socketAddress)) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 681 | { |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 682 | INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED); |
| 683 | return FALSE; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 684 | } |
| 685 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 686 | SendAsyncCallback(hIC, hHttpSession, lpwhr->hdr.dwContext, |
| 687 | INTERNET_STATUS_NAME_RESOLVED, |
| 688 | &(lpwhs->socketAddress), |
| 689 | sizeof(struct sockaddr_in)); |
| 690 | |
| 691 | TRACE("<--\n"); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 692 | return (HINTERNET) lpwhr; |
| 693 | } |
| 694 | |
| 695 | |
| 696 | /*********************************************************************** |
Patrik Stridvall | 8b216b3 | 2001-06-19 18:20:47 +0000 | [diff] [blame] | 697 | * HttpQueryInfoA (WININET.@) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 698 | * |
| 699 | * Queries for information about an HTTP request |
| 700 | * |
| 701 | * RETURNS |
| 702 | * TRUE on success |
| 703 | * FALSE on failure |
| 704 | * |
| 705 | */ |
| 706 | BOOL WINAPI HttpQueryInfoA(HINTERNET hHttpRequest, DWORD dwInfoLevel, |
| 707 | LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex) |
| 708 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 709 | LPHTTPHEADERA lphttpHdr = NULL; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 710 | BOOL bSuccess = FALSE; |
| 711 | LPWININETHTTPREQA lpwhr = (LPWININETHTTPREQA) hHttpRequest; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 712 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 713 | TRACE("(0x%08lx)--> %ld\n", dwInfoLevel, dwInfoLevel); |
| 714 | |
| 715 | if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ) |
| 716 | { |
| 717 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 718 | return FALSE; |
| 719 | } |
| 720 | |
| 721 | /* Find requested header structure */ |
| 722 | if ((dwInfoLevel & ~HTTP_QUERY_MODIFIER_FLAGS_MASK) == HTTP_QUERY_CUSTOM) |
| 723 | { |
| 724 | INT index = HTTP_GetCustomHeaderIndex(lpwhr, (LPSTR)lpBuffer); |
| 725 | |
| 726 | if (index < 0) |
| 727 | goto lend; |
| 728 | |
| 729 | lphttpHdr = &lpwhr->pCustHeaders[index]; |
| 730 | } |
| 731 | else |
| 732 | { |
| 733 | INT index = dwInfoLevel & ~HTTP_QUERY_MODIFIER_FLAGS_MASK; |
| 734 | |
| 735 | if (index == HTTP_QUERY_RAW_HEADERS_CRLF || index == HTTP_QUERY_RAW_HEADERS) |
| 736 | { |
| 737 | INT i, delim, size = 0, cnt = 0; |
| 738 | |
| 739 | delim = index == HTTP_QUERY_RAW_HEADERS_CRLF ? 2 : 1; |
| 740 | |
| 741 | /* Calculate length of custom reuqest headers */ |
| 742 | for (i = 0; i < lpwhr->nCustHeaders; i++) |
| 743 | { |
| 744 | if ((~lpwhr->pCustHeaders[i].wFlags & HDR_ISREQUEST) && lpwhr->pCustHeaders[i].lpszField && |
| 745 | lpwhr->pCustHeaders[i].lpszValue) |
| 746 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 747 | size += strlen(lpwhr->pCustHeaders[i].lpszField) + |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 748 | strlen(lpwhr->pCustHeaders[i].lpszValue) + delim + 2; |
| 749 | } |
| 750 | } |
| 751 | |
| 752 | /* Calculate the length of stadard request headers */ |
| 753 | for (i = 0; i <= HTTP_QUERY_MAX; i++) |
| 754 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 755 | if ((~lpwhr->StdHeaders[i].wFlags & HDR_ISREQUEST) && lpwhr->StdHeaders[i].lpszField && |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 756 | lpwhr->StdHeaders[i].lpszValue) |
| 757 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 758 | size += strlen(lpwhr->StdHeaders[i].lpszField) + |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 759 | strlen(lpwhr->StdHeaders[i].lpszValue) + delim + 2; |
| 760 | } |
| 761 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 762 | size += delim; |
| 763 | |
| 764 | if (size + 1 > *lpdwBufferLength) |
| 765 | { |
| 766 | *lpdwBufferLength = size + 1; |
| 767 | INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER); |
| 768 | goto lend; |
| 769 | } |
| 770 | |
| 771 | /* Append standard request heades */ |
| 772 | for (i = 0; i <= HTTP_QUERY_MAX; i++) |
| 773 | { |
| 774 | if ((~lpwhr->StdHeaders[i].wFlags & HDR_ISREQUEST) && |
| 775 | lpwhr->StdHeaders[i].lpszField && |
| 776 | lpwhr->StdHeaders[i].lpszValue) |
| 777 | { |
Gregg Mattinson | 7c4cb51 | 2002-07-03 21:10:43 +0000 | [diff] [blame] | 778 | cnt += sprintf((char*)lpBuffer + cnt, "%s: %s%s", lpwhr->StdHeaders[i].lpszField, lpwhr->StdHeaders[i].lpszValue, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 779 | index == HTTP_QUERY_RAW_HEADERS_CRLF ? "\r\n" : "\0"); |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | /* Append custom request heades */ |
| 784 | for (i = 0; i < lpwhr->nCustHeaders; i++) |
| 785 | { |
| 786 | if ((~lpwhr->pCustHeaders[i].wFlags & HDR_ISREQUEST) && |
| 787 | lpwhr->pCustHeaders[i].lpszField && |
| 788 | lpwhr->pCustHeaders[i].lpszValue) |
| 789 | { |
Gregg Mattinson | 7c4cb51 | 2002-07-03 21:10:43 +0000 | [diff] [blame] | 790 | cnt += sprintf((char*)lpBuffer + cnt, "%s: %s%s", |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 791 | lpwhr->pCustHeaders[i].lpszField, lpwhr->pCustHeaders[i].lpszValue, |
| 792 | index == HTTP_QUERY_RAW_HEADERS_CRLF ? "\r\n" : "\0"); |
| 793 | } |
| 794 | } |
| 795 | |
Gregg Mattinson | 7c4cb51 | 2002-07-03 21:10:43 +0000 | [diff] [blame] | 796 | strcpy((char*)lpBuffer + cnt, index == HTTP_QUERY_RAW_HEADERS_CRLF ? "\r\n" : ""); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 797 | |
| 798 | *lpdwBufferLength = cnt + delim; |
| 799 | bSuccess = TRUE; |
| 800 | goto lend; |
| 801 | } |
| 802 | else if (index >= 0 && index <= HTTP_QUERY_MAX && lpwhr->StdHeaders[index].lpszValue) |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 803 | { |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 804 | lphttpHdr = &lpwhr->StdHeaders[index]; |
| 805 | } |
| 806 | else |
| 807 | goto lend; |
| 808 | } |
| 809 | |
| 810 | /* Ensure header satisifies requested attributes */ |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 811 | if ((dwInfoLevel & HTTP_QUERY_FLAG_REQUEST_HEADERS) && |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 812 | (~lphttpHdr->wFlags & HDR_ISREQUEST)) |
| 813 | goto lend; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 814 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 815 | /* coalesce value to reuqested type */ |
| 816 | if (dwInfoLevel & HTTP_QUERY_FLAG_NUMBER) |
| 817 | { |
| 818 | *(int *)lpBuffer = atoi(lphttpHdr->lpszValue); |
| 819 | bSuccess = TRUE; |
| 820 | } |
| 821 | else if (dwInfoLevel & HTTP_QUERY_FLAG_SYSTEMTIME) |
| 822 | { |
| 823 | time_t tmpTime; |
| 824 | struct tm tmpTM; |
| 825 | SYSTEMTIME *STHook; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 826 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 827 | tmpTime = ConvertTimeString(lphttpHdr->lpszValue); |
| 828 | |
| 829 | tmpTM = *gmtime(&tmpTime); |
| 830 | STHook = (SYSTEMTIME *) lpBuffer; |
| 831 | if(STHook==NULL) |
| 832 | goto lend; |
| 833 | |
| 834 | STHook->wDay = tmpTM.tm_mday; |
| 835 | STHook->wHour = tmpTM.tm_hour; |
| 836 | STHook->wMilliseconds = 0; |
| 837 | STHook->wMinute = tmpTM.tm_min; |
| 838 | STHook->wDayOfWeek = tmpTM.tm_wday; |
| 839 | STHook->wMonth = tmpTM.tm_mon + 1; |
| 840 | STHook->wSecond = tmpTM.tm_sec; |
| 841 | STHook->wYear = tmpTM.tm_year; |
| 842 | |
| 843 | bSuccess = TRUE; |
| 844 | } |
| 845 | else if (dwInfoLevel & HTTP_QUERY_FLAG_COALESCE) |
| 846 | { |
| 847 | if (*lpdwIndex >= lphttpHdr->wCount) |
| 848 | { |
| 849 | INTERNET_SetLastError(ERROR_HTTP_HEADER_NOT_FOUND); |
| 850 | } |
| 851 | else |
| 852 | { |
Patrik Stridvall | fc2be7e | 2002-04-29 18:48:56 +0000 | [diff] [blame] | 853 | /* Copy strncpy(lpBuffer, lphttpHdr[*lpdwIndex], len); */ |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 854 | (*lpdwIndex)++; |
| 855 | } |
| 856 | } |
| 857 | else |
| 858 | { |
| 859 | INT len = strlen(lphttpHdr->lpszValue); |
| 860 | |
| 861 | if (len + 1 > *lpdwBufferLength) |
| 862 | { |
| 863 | *lpdwBufferLength = len + 1; |
| 864 | INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER); |
| 865 | goto lend; |
| 866 | } |
| 867 | |
| 868 | strncpy(lpBuffer, lphttpHdr->lpszValue, len); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 869 | ((char*)lpBuffer)[len]=0; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 870 | *lpdwBufferLength = len; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 871 | bSuccess = TRUE; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 872 | } |
| 873 | |
| 874 | lend: |
| 875 | TRACE("%d <--\n", bSuccess); |
| 876 | return bSuccess; |
| 877 | } |
| 878 | |
Alberto Massari | d476a5a | 2002-11-12 02:13:04 +0000 | [diff] [blame] | 879 | /*********************************************************************** |
| 880 | * HttpQueryInfoW (WININET.@) |
| 881 | * |
| 882 | * Queries for information about an HTTP request |
| 883 | * |
| 884 | * RETURNS |
| 885 | * TRUE on success |
| 886 | * FALSE on failure |
| 887 | * |
| 888 | */ |
| 889 | BOOL WINAPI HttpQueryInfoW(HINTERNET hHttpRequest, DWORD dwInfoLevel, |
| 890 | LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex) |
| 891 | { |
| 892 | BOOL result; |
| 893 | DWORD charLen=*lpdwBufferLength; |
| 894 | char* tempBuffer=HeapAlloc(GetProcessHeap(), 0, charLen); |
| 895 | result=HttpQueryInfoA(hHttpRequest, dwInfoLevel, tempBuffer, &charLen, lpdwIndex); |
| 896 | if((dwInfoLevel & HTTP_QUERY_FLAG_NUMBER) || |
| 897 | (dwInfoLevel & HTTP_QUERY_FLAG_SYSTEMTIME)) |
| 898 | { |
| 899 | memcpy(lpBuffer,tempBuffer,charLen); |
| 900 | } |
| 901 | else |
| 902 | { |
| 903 | int nChars=MultiByteToWideChar(CP_ACP,0, tempBuffer,charLen,lpBuffer,*lpdwBufferLength); |
| 904 | *lpdwBufferLength=nChars; |
| 905 | } |
| 906 | HeapFree(GetProcessHeap(), 0, tempBuffer); |
| 907 | return result; |
| 908 | } |
Huw D M Davies | f9b6d7b | 2000-10-28 00:30:23 +0000 | [diff] [blame] | 909 | |
| 910 | /*********************************************************************** |
Patrik Stridvall | 3ca9823 | 2001-06-20 23:03:14 +0000 | [diff] [blame] | 911 | * HttpSendRequestExA (WININET.@) |
Huw D M Davies | f9b6d7b | 2000-10-28 00:30:23 +0000 | [diff] [blame] | 912 | * |
| 913 | * Sends the specified request to the HTTP server and allows chunked |
| 914 | * transfers |
| 915 | */ |
| 916 | BOOL WINAPI HttpSendRequestExA(HINTERNET hRequest, |
| 917 | LPINTERNET_BUFFERSA lpBuffersIn, |
| 918 | LPINTERNET_BUFFERSA lpBuffersOut, |
| 919 | DWORD dwFlags, DWORD dwContext) |
| 920 | { |
| 921 | FIXME("(%p, %p, %p, %08lx, %08lx): stub\n", hRequest, lpBuffersIn, |
| 922 | lpBuffersOut, dwFlags, dwContext); |
| 923 | return FALSE; |
| 924 | } |
| 925 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 926 | /*********************************************************************** |
Patrik Stridvall | 8b216b3 | 2001-06-19 18:20:47 +0000 | [diff] [blame] | 927 | * HttpSendRequestA (WININET.@) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 928 | * |
| 929 | * Sends the specified request to the HTTP server |
| 930 | * |
| 931 | * RETURNS |
| 932 | * TRUE on success |
| 933 | * FALSE on failure |
| 934 | * |
| 935 | */ |
| 936 | BOOL WINAPI HttpSendRequestA(HINTERNET hHttpRequest, LPCSTR lpszHeaders, |
| 937 | DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength) |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 938 | { |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 939 | LPWININETHTTPREQA lpwhr = (LPWININETHTTPREQA) hHttpRequest; |
| 940 | LPWININETHTTPSESSIONA lpwhs = NULL; |
| 941 | LPWININETAPPINFOA hIC = NULL; |
| 942 | |
David Hammerton | 6226f3f | 2003-08-05 18:31:02 +0000 | [diff] [blame] | 943 | TRACE("(0x%08lx, %p (%s), %li, %p, %li)\n", (unsigned long)hHttpRequest, |
| 944 | lpszHeaders, debugstr_a(lpszHeaders), dwHeaderLength, lpOptional, dwOptionalLength); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 945 | |
| 946 | if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ) |
| 947 | { |
| 948 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 949 | return FALSE; |
| 950 | } |
| 951 | |
| 952 | lpwhs = (LPWININETHTTPSESSIONA) lpwhr->hdr.lpwhparent; |
| 953 | if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION) |
| 954 | { |
| 955 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 956 | return FALSE; |
| 957 | } |
| 958 | |
| 959 | hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 960 | if (NULL == hIC || hIC->hdr.htype != WH_HINIT) |
| 961 | { |
| 962 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 963 | return FALSE; |
| 964 | } |
| 965 | |
| 966 | if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) |
| 967 | { |
| 968 | WORKREQUEST workRequest; |
| 969 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 970 | workRequest.asyncall = HTTPSENDREQUESTA; |
| 971 | workRequest.HFTPSESSION = (DWORD)hHttpRequest; |
| 972 | if (lpszHeaders) |
| 973 | workRequest.LPSZHEADER = (DWORD)HTTP_strdup(lpszHeaders); |
| 974 | else |
| 975 | workRequest.LPSZHEADER = 0; |
| 976 | workRequest.DWHEADERLENGTH = dwHeaderLength; |
| 977 | workRequest.LPOPTIONAL = (DWORD)lpOptional; |
| 978 | workRequest.DWOPTIONALLENGTH = dwOptionalLength; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 979 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 980 | INTERNET_AsyncCall(&workRequest); |
| 981 | /* |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 982 | * This is from windows. |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 983 | */ |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 984 | SetLastError(ERROR_IO_PENDING); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 985 | return 0; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 986 | } |
| 987 | else |
| 988 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 989 | return HTTP_HttpSendRequestA(hHttpRequest, lpszHeaders, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 990 | dwHeaderLength, lpOptional, dwOptionalLength); |
| 991 | } |
| 992 | } |
| 993 | |
Alberto Massari | d476a5a | 2002-11-12 02:13:04 +0000 | [diff] [blame] | 994 | /*********************************************************************** |
| 995 | * HttpSendRequestW (WININET.@) |
| 996 | * |
| 997 | * Sends the specified request to the HTTP server |
| 998 | * |
| 999 | * RETURNS |
| 1000 | * TRUE on success |
| 1001 | * FALSE on failure |
| 1002 | * |
| 1003 | */ |
| 1004 | BOOL WINAPI HttpSendRequestW(HINTERNET hHttpRequest, LPCWSTR lpszHeaders, |
| 1005 | DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength) |
| 1006 | { |
| 1007 | BOOL result; |
| 1008 | char* szHeaders=NULL; |
| 1009 | DWORD nLen=dwHeaderLength; |
| 1010 | if(lpszHeaders!=NULL) |
| 1011 | { |
| 1012 | if(nLen==-1) |
| 1013 | nLen=strlenW(lpszHeaders); |
| 1014 | szHeaders=(char*)malloc(nLen+1); |
| 1015 | WideCharToMultiByte(CP_ACP,0,lpszHeaders,nLen,szHeaders,nLen,NULL,NULL); |
| 1016 | } |
| 1017 | result=HttpSendRequestA(hHttpRequest, szHeaders, dwHeaderLength, lpOptional, dwOptionalLength); |
| 1018 | if(szHeaders!=NULL) |
| 1019 | free(szHeaders); |
| 1020 | return result; |
| 1021 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1022 | |
| 1023 | /*********************************************************************** |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1024 | * HTTP_HandleRedirect (internal) |
| 1025 | */ |
| 1026 | static BOOL HTTP_HandleRedirect(LPWININETHTTPREQA lpwhr, LPCSTR lpszUrl, LPCSTR lpszHeaders, |
| 1027 | DWORD dwHeaderLength, LPVOID lpOptional, DWORD dwOptionalLength) |
| 1028 | { |
| 1029 | LPWININETHTTPSESSIONA lpwhs = (LPWININETHTTPSESSIONA) lpwhr->hdr.lpwhparent; |
| 1030 | LPWININETAPPINFOA hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 1031 | char path[2048]; |
| 1032 | if(lpszUrl[0]=='/') |
| 1033 | { |
| 1034 | /* if it's an absolute path, keep the same session info */ |
| 1035 | strcpy(path,lpszUrl); |
| 1036 | } |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 1037 | else if (NULL != hIC->lpszProxy && hIC->lpszProxy[0] != 0) |
| 1038 | { |
| 1039 | TRACE("Redirect through proxy\n"); |
| 1040 | strcpy(path,lpszUrl); |
| 1041 | } |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1042 | else |
| 1043 | { |
| 1044 | URL_COMPONENTSA urlComponents; |
| 1045 | char protocol[32], hostName[MAXHOSTNAME], userName[1024]; |
| 1046 | char password[1024], extra[1024]; |
| 1047 | urlComponents.dwStructSize = sizeof(URL_COMPONENTSA); |
| 1048 | urlComponents.lpszScheme = protocol; |
| 1049 | urlComponents.dwSchemeLength = 32; |
| 1050 | urlComponents.lpszHostName = hostName; |
| 1051 | urlComponents.dwHostNameLength = MAXHOSTNAME; |
| 1052 | urlComponents.lpszUserName = userName; |
| 1053 | urlComponents.dwUserNameLength = 1024; |
| 1054 | urlComponents.lpszPassword = password; |
| 1055 | urlComponents.dwPasswordLength = 1024; |
| 1056 | urlComponents.lpszUrlPath = path; |
| 1057 | urlComponents.dwUrlPathLength = 2048; |
| 1058 | urlComponents.lpszExtraInfo = extra; |
| 1059 | urlComponents.dwExtraInfoLength = 1024; |
| 1060 | if(!InternetCrackUrlA(lpszUrl, strlen(lpszUrl), 0, &urlComponents)) |
| 1061 | return FALSE; |
| 1062 | |
| 1063 | if (urlComponents.nPort == INTERNET_INVALID_PORT_NUMBER) |
| 1064 | urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT; |
| 1065 | |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 1066 | #if 0 |
| 1067 | /* |
| 1068 | * This upsets redirects to binary files on sourceforge.net |
| 1069 | * and gives an html page instead of the target file |
| 1070 | * Examination of the HTTP request sent by native wininet.dll |
| 1071 | * reveals that it doesn't send a referrer in that case. |
| 1072 | * Maybe there's a flag that enables this, or maybe a referrer |
| 1073 | * shouldn't be added in case of a redirect. |
| 1074 | */ |
| 1075 | |
| 1076 | /* consider the current host as the referrer */ |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1077 | if (NULL != lpwhs->lpszServerName && strlen(lpwhs->lpszServerName)) |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 1078 | HTTP_ProcessHeader(lpwhr, HTTP_REFERER, lpwhs->lpszServerName, |
| 1079 | HTTP_ADDHDR_FLAG_REQ|HTTP_ADDREQ_FLAG_REPLACE| |
| 1080 | HTTP_ADDHDR_FLAG_ADD_IF_NEW); |
| 1081 | #endif |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1082 | |
| 1083 | if (NULL != lpwhs->lpszServerName) |
| 1084 | HeapFree(GetProcessHeap(), 0, lpwhs->lpszServerName); |
| 1085 | lpwhs->lpszServerName = HTTP_strdup(hostName); |
| 1086 | if (NULL != lpwhs->lpszUserName) |
| 1087 | HeapFree(GetProcessHeap(), 0, lpwhs->lpszUserName); |
| 1088 | lpwhs->lpszUserName = HTTP_strdup(userName); |
| 1089 | lpwhs->nServerPort = urlComponents.nPort; |
| 1090 | |
| 1091 | if (NULL != lpwhr->lpszHostName) |
| 1092 | HeapFree(GetProcessHeap(), 0, lpwhr->lpszHostName); |
| 1093 | lpwhr->lpszHostName=HTTP_strdup(hostName); |
| 1094 | |
| 1095 | SendAsyncCallback(hIC, lpwhs, lpwhr->hdr.dwContext, |
| 1096 | INTERNET_STATUS_RESOLVING_NAME, |
| 1097 | lpwhs->lpszServerName, |
| 1098 | strlen(lpwhs->lpszServerName)+1); |
| 1099 | |
| 1100 | if (!GetAddress(lpwhs->lpszServerName, lpwhs->nServerPort, |
| 1101 | &lpwhs->phostent, &lpwhs->socketAddress)) |
| 1102 | { |
| 1103 | INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED); |
| 1104 | return FALSE; |
| 1105 | } |
| 1106 | |
| 1107 | SendAsyncCallback(hIC, lpwhs, lpwhr->hdr.dwContext, |
| 1108 | INTERNET_STATUS_NAME_RESOLVED, |
| 1109 | &(lpwhs->socketAddress), |
| 1110 | sizeof(struct sockaddr_in)); |
| 1111 | |
| 1112 | } |
| 1113 | |
| 1114 | if(lpwhr->lpszPath) |
| 1115 | HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath); |
| 1116 | lpwhr->lpszPath=NULL; |
| 1117 | if (strlen(path)) |
| 1118 | { |
| 1119 | DWORD needed = 0; |
| 1120 | HRESULT rc; |
| 1121 | rc = UrlEscapeA(path, NULL, &needed, URL_ESCAPE_SPACES_ONLY); |
| 1122 | if (rc != E_POINTER) |
| 1123 | needed = strlen(path)+1; |
| 1124 | lpwhr->lpszPath = HeapAlloc(GetProcessHeap(), 0, needed); |
| 1125 | rc = UrlEscapeA(path, lpwhr->lpszPath, &needed, |
| 1126 | URL_ESCAPE_SPACES_ONLY); |
| 1127 | if (rc) |
| 1128 | { |
| 1129 | ERR("Unable to escape string!(%s) (%ld)\n",path,rc); |
| 1130 | strcpy(lpwhr->lpszPath,path); |
| 1131 | } |
| 1132 | } |
| 1133 | |
| 1134 | return HttpSendRequestA((HINTERNET)lpwhr, lpszHeaders, dwHeaderLength, lpOptional, dwOptionalLength); |
| 1135 | } |
| 1136 | |
| 1137 | /*********************************************************************** |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1138 | * HTTP_HttpSendRequestA (internal) |
| 1139 | * |
| 1140 | * Sends the specified request to the HTTP server |
| 1141 | * |
| 1142 | * RETURNS |
| 1143 | * TRUE on success |
| 1144 | * FALSE on failure |
| 1145 | * |
| 1146 | */ |
| 1147 | BOOL WINAPI HTTP_HttpSendRequestA(HINTERNET hHttpRequest, LPCSTR lpszHeaders, |
| 1148 | DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength) |
| 1149 | { |
| 1150 | INT cnt; |
| 1151 | INT i; |
| 1152 | BOOL bSuccess = FALSE; |
| 1153 | LPSTR requestString = NULL; |
| 1154 | INT requestStringLen; |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1155 | INT responseLen; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1156 | INT headerLength = 0; |
| 1157 | LPWININETHTTPREQA lpwhr = (LPWININETHTTPREQA) hHttpRequest; |
| 1158 | LPWININETHTTPSESSIONA lpwhs = NULL; |
| 1159 | LPWININETAPPINFOA hIC = NULL; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1160 | BOOL loop_next = FALSE; |
| 1161 | int CustHeaderIndex; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1162 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1163 | TRACE("--> 0x%08lx\n", (ULONG)hHttpRequest); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1164 | |
| 1165 | /* Verify our tree of internet handles */ |
| 1166 | if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ) |
| 1167 | { |
| 1168 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 1169 | return FALSE; |
| 1170 | } |
| 1171 | |
| 1172 | lpwhs = (LPWININETHTTPSESSIONA) lpwhr->hdr.lpwhparent; |
| 1173 | if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION) |
| 1174 | { |
| 1175 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 1176 | return FALSE; |
| 1177 | } |
| 1178 | |
| 1179 | hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 1180 | if (NULL == hIC || hIC->hdr.htype != WH_HINIT) |
| 1181 | { |
| 1182 | INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE); |
| 1183 | return FALSE; |
| 1184 | } |
| 1185 | |
| 1186 | /* Clear any error information */ |
| 1187 | INTERNET_SetLastError(0); |
| 1188 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1189 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1190 | /* We must have a verb */ |
| 1191 | if (NULL == lpwhr->lpszVerb) |
| 1192 | { |
| 1193 | goto lend; |
| 1194 | } |
| 1195 | |
David Hammerton | 6226f3f | 2003-08-05 18:31:02 +0000 | [diff] [blame] | 1196 | /* if we are using optional stuff, we must add the fixed header of that option length */ |
| 1197 | if (lpOptional && dwOptionalLength) |
| 1198 | { |
| 1199 | char contentLengthStr[sizeof("Content-Length: ") + 20 /* int */ + 2 /* \n\r */]; |
| 1200 | sprintf(contentLengthStr, "Content-Length: %li\r\n", dwOptionalLength); |
| 1201 | HttpAddRequestHeadersA(hHttpRequest, contentLengthStr, -1L, HTTP_ADDREQ_FLAG_ADD); |
| 1202 | } |
| 1203 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1204 | do |
Nikolas Zimmermann | 7659882 | 2001-10-04 18:12:41 +0000 | [diff] [blame] | 1205 | { |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1206 | TRACE("Going to url %s %s\n", debugstr_a(lpwhr->lpszHostName), debugstr_a(lpwhr->lpszPath)); |
| 1207 | loop_next = FALSE; |
Nikolas Zimmermann | 7659882 | 2001-10-04 18:12:41 +0000 | [diff] [blame] | 1208 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1209 | /* If we don't have a path we set it to root */ |
| 1210 | if (NULL == lpwhr->lpszPath) |
| 1211 | lpwhr->lpszPath = HTTP_strdup("/"); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1212 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1213 | if(strncmp(lpwhr->lpszPath, "http://", sizeof("http://") -1) != 0 |
| 1214 | && lpwhr->lpszPath[0] != '/') /* not an absolute path ?? --> fix it !! */ |
| 1215 | { |
| 1216 | char *fixurl = HeapAlloc(GetProcessHeap(), 0, strlen(lpwhr->lpszPath) + 2); |
| 1217 | *fixurl = '/'; |
| 1218 | strcpy(fixurl + 1, lpwhr->lpszPath); |
| 1219 | HeapFree( GetProcessHeap(), 0, lpwhr->lpszPath ); |
| 1220 | lpwhr->lpszPath = fixurl; |
| 1221 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1222 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1223 | /* Calculate length of request string */ |
| 1224 | requestStringLen = |
| 1225 | strlen(lpwhr->lpszVerb) + |
| 1226 | strlen(lpwhr->lpszPath) + |
| 1227 | strlen(HTTPHEADER) + |
| 1228 | 5; /* " \r\n\r\n" */ |
| 1229 | |
| 1230 | /* Add length of passed headers */ |
| 1231 | if (lpszHeaders) |
| 1232 | { |
| 1233 | headerLength = -1 == dwHeaderLength ? strlen(lpszHeaders) : dwHeaderLength; |
| 1234 | requestStringLen += headerLength + 2; /* \r\n */ |
| 1235 | } |
| 1236 | |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 1237 | |
| 1238 | /* if there isa proxy username and password, add it to the headers */ |
| 1239 | if( hIC && (hIC->lpszProxyUsername || hIC->lpszProxyPassword ) ) |
| 1240 | { |
| 1241 | HTTP_InsertProxyAuthorization( lpwhr, hIC->lpszProxyUsername, hIC->lpszProxyPassword ); |
| 1242 | } |
| 1243 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1244 | /* Calculate length of custom request headers */ |
| 1245 | for (i = 0; i < lpwhr->nCustHeaders; i++) |
| 1246 | { |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1247 | if (lpwhr->pCustHeaders[i].wFlags & HDR_ISREQUEST) |
| 1248 | { |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1249 | requestStringLen += strlen(lpwhr->pCustHeaders[i].lpszField) + |
| 1250 | strlen(lpwhr->pCustHeaders[i].lpszValue) + 4; /*: \r\n */ |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1251 | } |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1252 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1253 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1254 | /* Calculate the length of standard request headers */ |
| 1255 | for (i = 0; i <= HTTP_QUERY_MAX; i++) |
| 1256 | { |
| 1257 | if (lpwhr->StdHeaders[i].wFlags & HDR_ISREQUEST) |
| 1258 | { |
| 1259 | requestStringLen += strlen(lpwhr->StdHeaders[i].lpszField) + |
| 1260 | strlen(lpwhr->StdHeaders[i].lpszValue) + 4; /*: \r\n */ |
| 1261 | } |
| 1262 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1263 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1264 | if (lpwhr->lpszHostName) |
| 1265 | requestStringLen += (strlen(HTTPHOSTHEADER) + strlen(lpwhr->lpszHostName)); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1266 | |
David Hammerton | 6226f3f | 2003-08-05 18:31:02 +0000 | [diff] [blame] | 1267 | /* if there is optional data to send, add the length */ |
| 1268 | if (lpOptional) |
| 1269 | { |
| 1270 | requestStringLen += dwOptionalLength; |
| 1271 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1272 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1273 | /* Allocate string to hold entire request */ |
| 1274 | requestString = HeapAlloc(GetProcessHeap(), 0, requestStringLen + 1); |
| 1275 | if (NULL == requestString) |
| 1276 | { |
| 1277 | INTERNET_SetLastError(ERROR_OUTOFMEMORY); |
| 1278 | goto lend; |
| 1279 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1280 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1281 | /* Build request string */ |
| 1282 | cnt = sprintf(requestString, "%s %s%s", |
| 1283 | lpwhr->lpszVerb, |
| 1284 | lpwhr->lpszPath, |
| 1285 | HTTPHEADER); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1286 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1287 | /* Append standard request headers */ |
| 1288 | for (i = 0; i <= HTTP_QUERY_MAX; i++) |
| 1289 | { |
| 1290 | if (lpwhr->StdHeaders[i].wFlags & HDR_ISREQUEST) |
| 1291 | { |
| 1292 | cnt += sprintf(requestString + cnt, "\r\n%s: %s", |
| 1293 | lpwhr->StdHeaders[i].lpszField, lpwhr->StdHeaders[i].lpszValue); |
| 1294 | TRACE("Adding header %s (%s)\n",lpwhr->StdHeaders[i].lpszField,lpwhr->StdHeaders[i].lpszValue); |
| 1295 | } |
| 1296 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1297 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1298 | /* Append custom request heades */ |
| 1299 | for (i = 0; i < lpwhr->nCustHeaders; i++) |
| 1300 | { |
| 1301 | if (lpwhr->pCustHeaders[i].wFlags & HDR_ISREQUEST) |
| 1302 | { |
| 1303 | cnt += sprintf(requestString + cnt, "\r\n%s: %s", |
| 1304 | lpwhr->pCustHeaders[i].lpszField, lpwhr->pCustHeaders[i].lpszValue); |
| 1305 | TRACE("Adding custom header %s (%s)\n",lpwhr->pCustHeaders[i].lpszField,lpwhr->pCustHeaders[i].lpszValue); |
| 1306 | } |
| 1307 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1308 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1309 | if (lpwhr->lpszHostName) |
| 1310 | cnt += sprintf(requestString + cnt, "%s%s", HTTPHOSTHEADER, lpwhr->lpszHostName); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1311 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1312 | /* Append passed request headers */ |
| 1313 | if (lpszHeaders) |
| 1314 | { |
| 1315 | strcpy(requestString + cnt, "\r\n"); |
| 1316 | cnt += 2; |
| 1317 | strcpy(requestString + cnt, lpszHeaders); |
| 1318 | cnt += headerLength; |
| 1319 | } |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1320 | |
David Hammerton | 6226f3f | 2003-08-05 18:31:02 +0000 | [diff] [blame] | 1321 | /* Set (header) termination string for request */ |
| 1322 | if (memcmp((requestString + cnt) - 4, "\r\n\r\n", 4) != 0) |
| 1323 | { /* only add it if the request string doesn't already |
| 1324 | have the thing.. (could happen if the custom header |
| 1325 | added it */ |
| 1326 | strcpy(requestString + cnt, "\r\n"); |
| 1327 | cnt += 2; |
| 1328 | } |
| 1329 | else |
| 1330 | requestStringLen -= 2; |
| 1331 | |
| 1332 | /* if optional data, append it */ |
| 1333 | if (lpOptional) |
| 1334 | { |
| 1335 | memcpy(requestString + cnt, lpOptional, dwOptionalLength); |
| 1336 | cnt += dwOptionalLength; |
| 1337 | /* we also have to decrease the expected string length by two, |
| 1338 | * since we won't be adding on those following \r\n's */ |
| 1339 | requestStringLen -= 2; |
| 1340 | } |
| 1341 | else |
| 1342 | { /* if there is no optional data, add on another \r\n just to be safe */ |
| 1343 | /* termination for request */ |
| 1344 | strcpy(requestString + cnt, "\r\n"); |
| 1345 | cnt += 2; |
| 1346 | } |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1347 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1348 | TRACE("(%s) len(%d)\n", requestString, requestStringLen); |
| 1349 | /* Send the request and store the results */ |
| 1350 | if (!HTTP_OpenConnection(lpwhr)) |
| 1351 | goto lend; |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1352 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1353 | SendAsyncCallback(hIC, hHttpRequest, lpwhr->hdr.dwContext, |
| 1354 | INTERNET_STATUS_SENDING_REQUEST, NULL, 0); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1355 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1356 | NETCON_send(&lpwhr->netConnection, requestString, requestStringLen, |
| 1357 | 0, &cnt); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1358 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1359 | |
| 1360 | SendAsyncCallback(hIC, hHttpRequest, lpwhr->hdr.dwContext, |
| 1361 | INTERNET_STATUS_REQUEST_SENT, |
| 1362 | &requestStringLen,sizeof(DWORD)); |
| 1363 | |
| 1364 | SendAsyncCallback(hIC, hHttpRequest, lpwhr->hdr.dwContext, |
| 1365 | INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0); |
| 1366 | |
| 1367 | if (cnt < 0) |
| 1368 | goto lend; |
| 1369 | |
| 1370 | responseLen = HTTP_GetResponseHeaders(lpwhr); |
| 1371 | if (responseLen) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1372 | bSuccess = TRUE; |
| 1373 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1374 | SendAsyncCallback(hIC, hHttpRequest, lpwhr->hdr.dwContext, |
| 1375 | INTERNET_STATUS_RESPONSE_RECEIVED, &responseLen, |
| 1376 | sizeof(DWORD)); |
| 1377 | |
| 1378 | /* process headers here. Is this right? */ |
| 1379 | CustHeaderIndex = HTTP_GetCustomHeaderIndex(lpwhr, "Set-Cookie"); |
| 1380 | if (CustHeaderIndex >= 0) |
| 1381 | { |
| 1382 | LPHTTPHEADERA setCookieHeader; |
| 1383 | int nPosStart = 0, nPosEnd = 0; |
| 1384 | |
| 1385 | setCookieHeader = &lpwhr->pCustHeaders[CustHeaderIndex]; |
| 1386 | |
| 1387 | while (setCookieHeader->lpszValue[nPosEnd] != '\0') |
| 1388 | { |
| 1389 | LPSTR buf_cookie, cookie_name, cookie_data; |
| 1390 | LPSTR buf_url; |
| 1391 | LPSTR domain = NULL; |
| 1392 | int nEqualPos = 0; |
| 1393 | while (setCookieHeader->lpszValue[nPosEnd] != ';' && setCookieHeader->lpszValue[nPosEnd] != ',' && |
| 1394 | setCookieHeader->lpszValue[nPosEnd] != '\0') |
| 1395 | { |
| 1396 | nPosEnd++; |
| 1397 | } |
| 1398 | if (setCookieHeader->lpszValue[nPosEnd] == ';') |
| 1399 | { |
| 1400 | /* fixme: not case sensitive, strcasestr is gnu only */ |
| 1401 | int nDomainPosEnd = 0; |
| 1402 | int nDomainPosStart = 0, nDomainLength = 0; |
| 1403 | LPSTR lpszDomain = strstr(&setCookieHeader->lpszValue[nPosEnd], "domain="); |
| 1404 | if (lpszDomain) |
| 1405 | { /* they have specified their own domain, lets use it */ |
| 1406 | while (lpszDomain[nDomainPosEnd] != ';' && lpszDomain[nDomainPosEnd] != ',' && |
| 1407 | lpszDomain[nDomainPosEnd] != '\0') |
| 1408 | { |
| 1409 | nDomainPosEnd++; |
| 1410 | } |
| 1411 | nDomainPosStart = strlen("domain="); |
| 1412 | nDomainLength = (nDomainPosEnd - nDomainPosStart) + 1; |
| 1413 | domain = HeapAlloc(GetProcessHeap(), 0, nDomainLength + 1); |
| 1414 | strncpy(domain, &lpszDomain[nDomainPosStart], nDomainLength); |
| 1415 | domain[nDomainLength] = '\0'; |
| 1416 | } |
| 1417 | } |
| 1418 | if (setCookieHeader->lpszValue[nPosEnd] == '\0') break; |
| 1419 | buf_cookie = HeapAlloc(GetProcessHeap(), 0, (nPosEnd - nPosStart) + 1); |
| 1420 | strncpy(buf_cookie, &setCookieHeader->lpszValue[nPosStart], (nPosEnd - nPosStart)); |
| 1421 | buf_cookie[(nPosEnd - nPosStart)] = '\0'; |
| 1422 | TRACE("%s\n", buf_cookie); |
| 1423 | while (buf_cookie[nEqualPos] != '=' && buf_cookie[nEqualPos] != '\0') |
| 1424 | { |
| 1425 | nEqualPos++; |
| 1426 | } |
| 1427 | if (buf_cookie[nEqualPos] == '\0' || buf_cookie[nEqualPos + 1] == '\0') |
| 1428 | { |
| 1429 | HeapFree(GetProcessHeap(), 0, buf_cookie); |
| 1430 | break; |
| 1431 | } |
| 1432 | |
| 1433 | cookie_name = HeapAlloc(GetProcessHeap(), 0, nEqualPos + 1); |
| 1434 | strncpy(cookie_name, buf_cookie, nEqualPos); |
| 1435 | cookie_name[nEqualPos] = '\0'; |
| 1436 | cookie_data = &buf_cookie[nEqualPos + 1]; |
| 1437 | |
| 1438 | |
| 1439 | buf_url = HeapAlloc(GetProcessHeap(), 0, strlen((domain ? domain : lpwhr->lpszHostName)) + strlen(lpwhr->lpszPath) + 9); |
| 1440 | sprintf(buf_url, "http://%s/", (domain ? domain : lpwhr->lpszHostName)); /* FIXME PATH!!! */ |
| 1441 | InternetSetCookieA(buf_url, cookie_name, cookie_data); |
| 1442 | |
| 1443 | HeapFree(GetProcessHeap(), 0, buf_url); |
| 1444 | HeapFree(GetProcessHeap(), 0, buf_cookie); |
| 1445 | HeapFree(GetProcessHeap(), 0, cookie_name); |
| 1446 | if (domain) HeapFree(GetProcessHeap(), 0, domain); |
| 1447 | nPosStart = nPosEnd; |
| 1448 | } |
| 1449 | } |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1450 | } |
| 1451 | while (loop_next); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1452 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1453 | lend: |
| 1454 | |
| 1455 | if (requestString) |
| 1456 | HeapFree(GetProcessHeap(), 0, requestString); |
| 1457 | |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1458 | /* TODO: send notification for P3P header */ |
| 1459 | |
| 1460 | if(!(hIC->hdr.dwFlags & INTERNET_FLAG_NO_AUTO_REDIRECT) && bSuccess) |
| 1461 | { |
| 1462 | DWORD dwCode,dwCodeLength=sizeof(DWORD),dwIndex=0; |
| 1463 | if(HttpQueryInfoA(hHttpRequest,HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_STATUS_CODE,&dwCode,&dwCodeLength,&dwIndex) && |
| 1464 | (dwCode==302 || dwCode==301)) |
| 1465 | { |
| 1466 | char szNewLocation[2048]; |
| 1467 | DWORD dwBufferSize=2048; |
| 1468 | dwIndex=0; |
| 1469 | if(HttpQueryInfoA(hHttpRequest,HTTP_QUERY_LOCATION,szNewLocation,&dwBufferSize,&dwIndex)) |
| 1470 | { |
| 1471 | SendAsyncCallback(hIC, hHttpRequest, lpwhr->hdr.dwContext, |
| 1472 | INTERNET_STATUS_REDIRECT, szNewLocation, |
| 1473 | dwBufferSize); |
| 1474 | return HTTP_HandleRedirect(lpwhr, szNewLocation, lpszHeaders, |
| 1475 | dwHeaderLength, lpOptional, dwOptionalLength); |
| 1476 | } |
| 1477 | } |
| 1478 | } |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1479 | |
| 1480 | if (hIC->lpfnStatusCB) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1481 | { |
| 1482 | INTERNET_ASYNC_RESULT iar; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1483 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1484 | iar.dwResult = (DWORD)bSuccess; |
| 1485 | iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError(); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1486 | |
| 1487 | SendAsyncCallback(hIC, hHttpRequest, lpwhr->hdr.dwContext, |
| 1488 | INTERNET_STATUS_REQUEST_COMPLETE, &iar, |
| 1489 | sizeof(INTERNET_ASYNC_RESULT)); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1490 | } |
| 1491 | |
| 1492 | TRACE("<--\n"); |
| 1493 | return bSuccess; |
| 1494 | } |
| 1495 | |
| 1496 | |
| 1497 | /*********************************************************************** |
| 1498 | * HTTP_Connect (internal) |
| 1499 | * |
| 1500 | * Create http session handle |
| 1501 | * |
| 1502 | * RETURNS |
| 1503 | * HINTERNET a session handle on success |
| 1504 | * NULL on failure |
| 1505 | * |
| 1506 | */ |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1507 | HINTERNET HTTP_Connect(HINTERNET hInternet, LPCSTR lpszServerName, |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1508 | INTERNET_PORT nServerPort, LPCSTR lpszUserName, |
| 1509 | LPCSTR lpszPassword, DWORD dwFlags, DWORD dwContext) |
| 1510 | { |
| 1511 | BOOL bSuccess = FALSE; |
| 1512 | LPWININETAPPINFOA hIC = NULL; |
| 1513 | LPWININETHTTPSESSIONA lpwhs = NULL; |
| 1514 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1515 | TRACE("-->\n"); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1516 | |
| 1517 | if (((LPWININETHANDLEHEADER)hInternet)->htype != WH_HINIT) |
| 1518 | goto lerror; |
| 1519 | |
| 1520 | hIC = (LPWININETAPPINFOA) hInternet; |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1521 | hIC->hdr.dwContext = dwContext; |
Dominik Strasser | 94c02fe | 2003-04-14 21:32:36 +0000 | [diff] [blame] | 1522 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1523 | lpwhs = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETHTTPSESSIONA)); |
| 1524 | if (NULL == lpwhs) |
| 1525 | { |
| 1526 | INTERNET_SetLastError(ERROR_OUTOFMEMORY); |
| 1527 | goto lerror; |
| 1528 | } |
| 1529 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1530 | /* |
| 1531 | * According to my tests. The name is not resolved until a request is sent |
| 1532 | */ |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1533 | |
| 1534 | if (nServerPort == INTERNET_INVALID_PORT_NUMBER) |
| 1535 | nServerPort = INTERNET_DEFAULT_HTTP_PORT; |
| 1536 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1537 | lpwhs->hdr.htype = WH_HHTTPSESSION; |
| 1538 | lpwhs->hdr.lpwhparent = (LPWININETHANDLEHEADER)hInternet; |
| 1539 | lpwhs->hdr.dwFlags = dwFlags; |
| 1540 | lpwhs->hdr.dwContext = dwContext; |
Dominik Strasser | 94c02fe | 2003-04-14 21:32:36 +0000 | [diff] [blame] | 1541 | if(hIC->lpszProxy && hIC->dwAccessType == INTERNET_OPEN_TYPE_PROXY) { |
| 1542 | if(strchr(hIC->lpszProxy, ' ')) |
| 1543 | FIXME("Several proxies not implemented.\n"); |
| 1544 | if(hIC->lpszProxyBypass) |
| 1545 | FIXME("Proxy bypass is ignored.\n"); |
| 1546 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1547 | if (NULL != lpszServerName) |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 1548 | lpwhs->lpszServerName = HTTP_strdup(lpszServerName); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1549 | if (NULL != lpszUserName) |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 1550 | lpwhs->lpszUserName = HTTP_strdup(lpszUserName); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1551 | lpwhs->nServerPort = nServerPort; |
| 1552 | |
| 1553 | if (hIC->lpfnStatusCB) |
| 1554 | { |
| 1555 | INTERNET_ASYNC_RESULT iar; |
| 1556 | |
| 1557 | iar.dwResult = (DWORD)lpwhs; |
| 1558 | iar.dwError = ERROR_SUCCESS; |
| 1559 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1560 | SendAsyncCallback(hIC, hInternet, dwContext, |
| 1561 | INTERNET_STATUS_HANDLE_CREATED, &iar, |
| 1562 | sizeof(INTERNET_ASYNC_RESULT)); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1563 | } |
| 1564 | |
| 1565 | bSuccess = TRUE; |
| 1566 | |
| 1567 | lerror: |
| 1568 | if (!bSuccess && lpwhs) |
| 1569 | { |
| 1570 | HeapFree(GetProcessHeap(), 0, lpwhs); |
| 1571 | lpwhs = NULL; |
| 1572 | } |
| 1573 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1574 | /* |
| 1575 | * a INTERNET_STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on |
| 1576 | * windows |
| 1577 | */ |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1578 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1579 | TRACE("%p -->\n", hInternet); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1580 | return (HINTERNET)lpwhs; |
| 1581 | } |
| 1582 | |
| 1583 | |
| 1584 | /*********************************************************************** |
| 1585 | * HTTP_OpenConnection (internal) |
| 1586 | * |
| 1587 | * Connect to a web server |
| 1588 | * |
| 1589 | * RETURNS |
| 1590 | * |
| 1591 | * TRUE on success |
| 1592 | * FALSE on failure |
| 1593 | */ |
| 1594 | BOOL HTTP_OpenConnection(LPWININETHTTPREQA lpwhr) |
| 1595 | { |
| 1596 | BOOL bSuccess = FALSE; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1597 | LPWININETHTTPSESSIONA lpwhs; |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1598 | LPWININETAPPINFOA hIC = NULL; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1599 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1600 | TRACE("-->\n"); |
| 1601 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1602 | |
| 1603 | if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ) |
| 1604 | { |
| 1605 | INTERNET_SetLastError(ERROR_INVALID_PARAMETER); |
| 1606 | goto lend; |
| 1607 | } |
| 1608 | |
| 1609 | lpwhs = (LPWININETHTTPSESSIONA)lpwhr->hdr.lpwhparent; |
| 1610 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1611 | hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 1612 | SendAsyncCallback(hIC, lpwhr, lpwhr->hdr.dwContext, |
| 1613 | INTERNET_STATUS_CONNECTING_TO_SERVER, |
| 1614 | &(lpwhs->socketAddress), |
| 1615 | sizeof(struct sockaddr_in)); |
| 1616 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1617 | if (!NETCON_create(&lpwhr->netConnection, lpwhs->phostent->h_addrtype, |
| 1618 | SOCK_STREAM, 0)) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1619 | { |
| 1620 | WARN("Socket creation failed\n"); |
| 1621 | goto lend; |
| 1622 | } |
| 1623 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1624 | if (!NETCON_connect(&lpwhr->netConnection, (struct sockaddr *)&lpwhs->socketAddress, |
| 1625 | sizeof(lpwhs->socketAddress))) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1626 | { |
Andreas Mohr | 3496556 | 2000-08-26 20:31:48 +0000 | [diff] [blame] | 1627 | WARN("Unable to connect to host (%s)\n", strerror(errno)); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1628 | goto lend; |
| 1629 | } |
| 1630 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1631 | SendAsyncCallback(hIC, lpwhr, lpwhr->hdr.dwContext, |
| 1632 | INTERNET_STATUS_CONNECTED_TO_SERVER, |
| 1633 | &(lpwhs->socketAddress), |
| 1634 | sizeof(struct sockaddr_in)); |
| 1635 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1636 | bSuccess = TRUE; |
| 1637 | |
| 1638 | lend: |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1639 | TRACE("%d <--\n", bSuccess); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1640 | return bSuccess; |
| 1641 | } |
| 1642 | |
| 1643 | |
| 1644 | /*********************************************************************** |
| 1645 | * HTTP_GetResponseHeaders (internal) |
| 1646 | * |
| 1647 | * Read server response |
| 1648 | * |
| 1649 | * RETURNS |
| 1650 | * |
| 1651 | * TRUE on success |
| 1652 | * FALSE on error |
| 1653 | */ |
| 1654 | BOOL HTTP_GetResponseHeaders(LPWININETHTTPREQA lpwhr) |
| 1655 | { |
| 1656 | INT cbreaks = 0; |
| 1657 | CHAR buffer[MAX_REPLY_LEN]; |
| 1658 | DWORD buflen = MAX_REPLY_LEN; |
| 1659 | BOOL bSuccess = FALSE; |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1660 | INT rc = 0; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1661 | CHAR value[MAX_FIELD_VALUE_LEN], field[MAX_FIELD_LEN]; |
| 1662 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1663 | TRACE("-->\n"); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1664 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1665 | if (!NETCON_connected(&lpwhr->netConnection)) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1666 | goto lend; |
| 1667 | |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1668 | /* |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1669 | * HACK peek at the buffer |
| 1670 | */ |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1671 | NETCON_recv(&lpwhr->netConnection, buffer, buflen, MSG_PEEK, &rc); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1672 | |
| 1673 | /* |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1674 | * We should first receive 'HTTP/1.x nnn' where nnn is the status code. |
| 1675 | */ |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1676 | buflen = MAX_REPLY_LEN; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1677 | memset(buffer, 0, MAX_REPLY_LEN); |
| 1678 | if (!NETCON_getNextLine(&lpwhr->netConnection, buffer, &buflen)) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1679 | goto lend; |
| 1680 | |
| 1681 | if (strncmp(buffer, "HTTP", 4) != 0) |
| 1682 | goto lend; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1683 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1684 | buffer[12]='\0'; |
| 1685 | HTTP_ProcessHeader(lpwhr, "Status", buffer+9, (HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE)); |
| 1686 | |
| 1687 | /* Parse each response line */ |
| 1688 | do |
| 1689 | { |
| 1690 | buflen = MAX_REPLY_LEN; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1691 | if (NETCON_getNextLine(&lpwhr->netConnection, buffer, &buflen)) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1692 | { |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1693 | TRACE("got line %s, now interpretting\n", debugstr_a(buffer)); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1694 | if (!HTTP_InterpretHttpHeader(buffer, field, MAX_FIELD_LEN, value, MAX_FIELD_VALUE_LEN)) |
| 1695 | break; |
| 1696 | |
| 1697 | HTTP_ProcessHeader(lpwhr, field, value, (HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE)); |
| 1698 | } |
| 1699 | else |
| 1700 | { |
| 1701 | cbreaks++; |
| 1702 | if (cbreaks >= 2) |
| 1703 | break; |
| 1704 | } |
| 1705 | }while(1); |
| 1706 | |
| 1707 | bSuccess = TRUE; |
| 1708 | |
| 1709 | lend: |
| 1710 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1711 | TRACE("<--\n"); |
| 1712 | if (bSuccess) |
| 1713 | return rc; |
| 1714 | else |
| 1715 | return FALSE; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1716 | } |
| 1717 | |
| 1718 | |
| 1719 | /*********************************************************************** |
| 1720 | * HTTP_InterpretHttpHeader (internal) |
| 1721 | * |
| 1722 | * Parse server response |
| 1723 | * |
| 1724 | * RETURNS |
| 1725 | * |
| 1726 | * TRUE on success |
| 1727 | * FALSE on error |
| 1728 | */ |
| 1729 | INT stripSpaces(LPCSTR lpszSrc, LPSTR lpszStart, INT *len) |
| 1730 | { |
| 1731 | LPCSTR lpsztmp; |
| 1732 | INT srclen; |
| 1733 | |
| 1734 | srclen = 0; |
| 1735 | |
| 1736 | while (*lpszSrc == ' ' && *lpszSrc != '\0') |
| 1737 | lpszSrc++; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1738 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1739 | lpsztmp = lpszSrc; |
| 1740 | while(*lpsztmp != '\0') |
| 1741 | { |
| 1742 | if (*lpsztmp != ' ') |
| 1743 | srclen = lpsztmp - lpszSrc + 1; |
| 1744 | |
| 1745 | lpsztmp++; |
| 1746 | } |
| 1747 | |
| 1748 | *len = min(*len, srclen); |
| 1749 | strncpy(lpszStart, lpszSrc, *len); |
| 1750 | lpszStart[*len] = '\0'; |
| 1751 | |
| 1752 | return *len; |
| 1753 | } |
| 1754 | |
| 1755 | |
| 1756 | BOOL HTTP_InterpretHttpHeader(LPSTR buffer, LPSTR field, INT fieldlen, LPSTR value, INT valuelen) |
| 1757 | { |
| 1758 | CHAR *pd; |
| 1759 | BOOL bSuccess = FALSE; |
| 1760 | |
| 1761 | TRACE("\n"); |
| 1762 | |
| 1763 | *field = '\0'; |
| 1764 | *value = '\0'; |
| 1765 | |
| 1766 | pd = strchr(buffer, ':'); |
| 1767 | if (pd) |
| 1768 | { |
| 1769 | *pd = '\0'; |
| 1770 | if (stripSpaces(buffer, field, &fieldlen) > 0) |
| 1771 | { |
| 1772 | if (stripSpaces(pd+1, value, &valuelen) > 0) |
| 1773 | bSuccess = TRUE; |
| 1774 | } |
| 1775 | } |
| 1776 | |
| 1777 | TRACE("%d: field(%s) Value(%s)\n", bSuccess, field, value); |
| 1778 | return bSuccess; |
| 1779 | } |
| 1780 | |
| 1781 | |
| 1782 | /*********************************************************************** |
| 1783 | * HTTP_GetStdHeaderIndex (internal) |
| 1784 | * |
John R. Sheets | 646d2a2 | 2000-07-23 13:34:43 +0000 | [diff] [blame] | 1785 | * Lookup field index in standard http header array |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1786 | * |
| 1787 | * FIXME: This should be stuffed into a hash table |
| 1788 | */ |
| 1789 | INT HTTP_GetStdHeaderIndex(LPCSTR lpszField) |
| 1790 | { |
| 1791 | INT index = -1; |
| 1792 | |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1793 | if (!strcasecmp(lpszField, "Content-Length")) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1794 | index = HTTP_QUERY_CONTENT_LENGTH; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1795 | else if (!strcasecmp(lpszField,"Status")) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1796 | index = HTTP_QUERY_STATUS_CODE; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1797 | else if (!strcasecmp(lpszField,"Content-Type")) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1798 | index = HTTP_QUERY_CONTENT_TYPE; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1799 | else if (!strcasecmp(lpszField,"Last-Modified")) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1800 | index = HTTP_QUERY_LAST_MODIFIED; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1801 | else if (!strcasecmp(lpszField,"Location")) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1802 | index = HTTP_QUERY_LOCATION; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1803 | else if (!strcasecmp(lpszField,"Accept")) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1804 | index = HTTP_QUERY_ACCEPT; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1805 | else if (!strcasecmp(lpszField,"Referer")) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1806 | index = HTTP_QUERY_REFERER; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1807 | else if (!strcasecmp(lpszField,"Content-Transfer-Encoding")) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1808 | index = HTTP_QUERY_CONTENT_TRANSFER_ENCODING; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1809 | else if (!strcasecmp(lpszField,"Date")) |
John R. Sheets | 646d2a2 | 2000-07-23 13:34:43 +0000 | [diff] [blame] | 1810 | index = HTTP_QUERY_DATE; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1811 | else if (!strcasecmp(lpszField,"Server")) |
John R. Sheets | 646d2a2 | 2000-07-23 13:34:43 +0000 | [diff] [blame] | 1812 | index = HTTP_QUERY_SERVER; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1813 | else if (!strcasecmp(lpszField,"Connection")) |
John R. Sheets | 646d2a2 | 2000-07-23 13:34:43 +0000 | [diff] [blame] | 1814 | index = HTTP_QUERY_CONNECTION; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1815 | else if (!strcasecmp(lpszField,"ETag")) |
John R. Sheets | 646d2a2 | 2000-07-23 13:34:43 +0000 | [diff] [blame] | 1816 | index = HTTP_QUERY_ETAG; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1817 | else if (!strcasecmp(lpszField,"Accept-Ranges")) |
John R. Sheets | 646d2a2 | 2000-07-23 13:34:43 +0000 | [diff] [blame] | 1818 | index = HTTP_QUERY_ACCEPT_RANGES; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1819 | else if (!strcasecmp(lpszField,"Expires")) |
John R. Sheets | 646d2a2 | 2000-07-23 13:34:43 +0000 | [diff] [blame] | 1820 | index = HTTP_QUERY_EXPIRES; |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 1821 | else if (!strcasecmp(lpszField,"Mime-Version")) |
John R. Sheets | 66b4dd2 | 2000-08-03 22:16:39 +0000 | [diff] [blame] | 1822 | index = HTTP_QUERY_MIME_VERSION; |
Johan Dahlin | 664b9bb | 2001-12-17 20:50:53 +0000 | [diff] [blame] | 1823 | else if (!strcasecmp(lpszField,"Pragma")) |
| 1824 | index = HTTP_QUERY_PRAGMA; |
| 1825 | else if (!strcasecmp(lpszField,"Cache-Control")) |
| 1826 | index = HTTP_QUERY_CACHE_CONTROL; |
| 1827 | else if (!strcasecmp(lpszField,"Content-Length")) |
| 1828 | index = HTTP_QUERY_CONTENT_LENGTH; |
| 1829 | else if (!strcasecmp(lpszField,"User-Agent")) |
| 1830 | index = HTTP_QUERY_USER_AGENT; |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 1831 | else if (!strcasecmp(lpszField,"Proxy-Authenticate")) |
| 1832 | index = HTTP_QUERY_PROXY_AUTHENTICATE; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1833 | else |
| 1834 | { |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1835 | TRACE("Couldn't find %s in standard header table\n", lpszField); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1836 | } |
| 1837 | |
| 1838 | return index; |
| 1839 | } |
| 1840 | |
| 1841 | |
| 1842 | /*********************************************************************** |
| 1843 | * HTTP_ProcessHeader (internal) |
| 1844 | * |
| 1845 | * Stuff header into header tables according to <dwModifier> |
| 1846 | * |
| 1847 | */ |
| 1848 | |
| 1849 | #define COALESCEFLASG (HTTP_ADDHDR_FLAG_COALESCE|HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA|HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON) |
| 1850 | |
| 1851 | BOOL HTTP_ProcessHeader(LPWININETHTTPREQA lpwhr, LPCSTR field, LPCSTR value, DWORD dwModifier) |
| 1852 | { |
| 1853 | LPHTTPHEADERA lphttpHdr = NULL; |
| 1854 | BOOL bSuccess = FALSE; |
| 1855 | INT index; |
| 1856 | |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1857 | TRACE("--> %s: %s - 0x%08x\n", field, value, (unsigned int)dwModifier); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1858 | |
| 1859 | /* Adjust modifier flags */ |
| 1860 | if (dwModifier & COALESCEFLASG) |
| 1861 | dwModifier |= HTTP_ADDHDR_FLAG_ADD; |
| 1862 | |
| 1863 | /* Try to get index into standard header array */ |
| 1864 | index = HTTP_GetStdHeaderIndex(field); |
| 1865 | if (index >= 0) |
| 1866 | { |
| 1867 | lphttpHdr = &lpwhr->StdHeaders[index]; |
| 1868 | } |
| 1869 | else /* Find or create new custom header */ |
| 1870 | { |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1871 | index = HTTP_GetCustomHeaderIndex(lpwhr, field); |
| 1872 | if (index >= 0) |
| 1873 | { |
| 1874 | if (dwModifier & HTTP_ADDHDR_FLAG_ADD_IF_NEW) |
| 1875 | { |
| 1876 | return FALSE; |
| 1877 | } |
| 1878 | lphttpHdr = &lpwhr->pCustHeaders[index]; |
| 1879 | } |
| 1880 | else |
| 1881 | { |
| 1882 | HTTPHEADERA hdr; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1883 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1884 | hdr.lpszField = (LPSTR)field; |
| 1885 | hdr.lpszValue = (LPSTR)value; |
| 1886 | hdr.wFlags = hdr.wCount = 0; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1887 | |
| 1888 | if (dwModifier & HTTP_ADDHDR_FLAG_REQ) |
| 1889 | hdr.wFlags |= HDR_ISREQUEST; |
| 1890 | |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 1891 | return HTTP_InsertCustomHeader(lpwhr, &hdr); |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 1892 | } |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1893 | } |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1894 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1895 | if (dwModifier & HTTP_ADDHDR_FLAG_REQ) |
| 1896 | lphttpHdr->wFlags |= HDR_ISREQUEST; |
| 1897 | else |
| 1898 | lphttpHdr->wFlags &= ~HDR_ISREQUEST; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1899 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1900 | if (!lphttpHdr->lpszValue && (dwModifier & (HTTP_ADDHDR_FLAG_ADD|HTTP_ADDHDR_FLAG_ADD_IF_NEW))) |
| 1901 | { |
| 1902 | INT slen; |
| 1903 | |
| 1904 | if (!lpwhr->StdHeaders[index].lpszField) |
| 1905 | { |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 1906 | lphttpHdr->lpszField = HTTP_strdup(field); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1907 | |
| 1908 | if (dwModifier & HTTP_ADDHDR_FLAG_REQ) |
| 1909 | lphttpHdr->wFlags |= HDR_ISREQUEST; |
| 1910 | } |
| 1911 | |
| 1912 | slen = strlen(value) + 1; |
| 1913 | lphttpHdr->lpszValue = HeapAlloc(GetProcessHeap(), 0, slen); |
| 1914 | if (lphttpHdr->lpszValue) |
| 1915 | { |
| 1916 | memcpy(lphttpHdr->lpszValue, value, slen); |
| 1917 | bSuccess = TRUE; |
| 1918 | } |
| 1919 | else |
| 1920 | { |
| 1921 | INTERNET_SetLastError(ERROR_OUTOFMEMORY); |
| 1922 | } |
| 1923 | } |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1924 | else if (lphttpHdr->lpszValue) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1925 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1926 | if (dwModifier & HTTP_ADDHDR_FLAG_REPLACE) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1927 | { |
| 1928 | LPSTR lpsztmp; |
| 1929 | INT len; |
| 1930 | |
| 1931 | len = strlen(value); |
| 1932 | |
| 1933 | if (len <= 0) |
| 1934 | { |
Patrik Stridvall | fc2be7e | 2002-04-29 18:48:56 +0000 | [diff] [blame] | 1935 | /* if custom header delete from array */ |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1936 | HeapFree(GetProcessHeap(), 0, lphttpHdr->lpszValue); |
| 1937 | lphttpHdr->lpszValue = NULL; |
| 1938 | bSuccess = TRUE; |
| 1939 | } |
| 1940 | else |
| 1941 | { |
| 1942 | lpsztmp = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, lphttpHdr->lpszValue, len+1); |
| 1943 | if (lpsztmp) |
| 1944 | { |
| 1945 | lphttpHdr->lpszValue = lpsztmp; |
| 1946 | strcpy(lpsztmp, value); |
| 1947 | bSuccess = TRUE; |
| 1948 | } |
| 1949 | else |
| 1950 | { |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1951 | WARN("HeapReAlloc (%d bytes) failed\n",len+1); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1952 | INTERNET_SetLastError(ERROR_OUTOFMEMORY); |
| 1953 | } |
| 1954 | } |
| 1955 | } |
| 1956 | else if (dwModifier & COALESCEFLASG) |
| 1957 | { |
| 1958 | LPSTR lpsztmp; |
| 1959 | CHAR ch = 0; |
| 1960 | INT len = 0; |
| 1961 | INT origlen = strlen(lphttpHdr->lpszValue); |
| 1962 | INT valuelen = strlen(value); |
| 1963 | |
| 1964 | if (dwModifier & HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA) |
| 1965 | { |
| 1966 | ch = ','; |
| 1967 | lphttpHdr->wFlags |= HDR_COMMADELIMITED; |
| 1968 | } |
| 1969 | else if (dwModifier & HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON) |
| 1970 | { |
| 1971 | ch = ';'; |
| 1972 | lphttpHdr->wFlags |= HDR_COMMADELIMITED; |
| 1973 | } |
| 1974 | |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1975 | len = origlen + valuelen + ((ch > 0) ? 1 : 0); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1976 | |
| 1977 | lpsztmp = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, lphttpHdr->lpszValue, len+1); |
| 1978 | if (lpsztmp) |
| 1979 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1980 | /* FIXME: Increment lphttpHdr->wCount. Perhaps lpszValue should be an array */ |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1981 | if (ch > 0) |
| 1982 | { |
| 1983 | lphttpHdr->lpszValue[origlen] = ch; |
| 1984 | origlen++; |
| 1985 | } |
| 1986 | |
| 1987 | memcpy(&lphttpHdr->lpszValue[origlen], value, valuelen); |
| 1988 | lphttpHdr->lpszValue[len] = '\0'; |
| 1989 | bSuccess = TRUE; |
| 1990 | } |
| 1991 | else |
| 1992 | { |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1993 | WARN("HeapReAlloc (%d bytes) failed\n",len+1); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1994 | INTERNET_SetLastError(ERROR_OUTOFMEMORY); |
| 1995 | } |
| 1996 | } |
| 1997 | } |
Alberto Massari | bc8bd72 | 2002-12-06 23:20:31 +0000 | [diff] [blame] | 1998 | TRACE("<-- %d\n",bSuccess); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 1999 | return bSuccess; |
| 2000 | } |
| 2001 | |
| 2002 | |
| 2003 | /*********************************************************************** |
| 2004 | * HTTP_CloseConnection (internal) |
| 2005 | * |
| 2006 | * Close socket connection |
| 2007 | * |
| 2008 | */ |
| 2009 | VOID HTTP_CloseConnection(LPWININETHTTPREQA lpwhr) |
| 2010 | { |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 2011 | |
| 2012 | |
| 2013 | LPWININETHTTPSESSIONA lpwhs = NULL; |
| 2014 | LPWININETAPPINFOA hIC = NULL; |
| 2015 | |
| 2016 | TRACE("%p\n",lpwhr); |
| 2017 | |
| 2018 | lpwhs = (LPWININETHTTPSESSIONA) lpwhr->hdr.lpwhparent; |
| 2019 | hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 2020 | |
| 2021 | SendAsyncCallback(hIC, lpwhr, lpwhr->hdr.dwContext, |
| 2022 | INTERNET_STATUS_CLOSING_CONNECTION, 0, 0); |
| 2023 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 2024 | if (NETCON_connected(&lpwhr->netConnection)) |
| 2025 | { |
| 2026 | NETCON_close(&lpwhr->netConnection); |
| 2027 | } |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 2028 | |
| 2029 | SendAsyncCallback(hIC, lpwhr, lpwhr->hdr.dwContext, |
| 2030 | INTERNET_STATUS_CONNECTION_CLOSED, 0, 0); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2031 | } |
| 2032 | |
| 2033 | |
| 2034 | /*********************************************************************** |
| 2035 | * HTTP_CloseHTTPRequestHandle (internal) |
| 2036 | * |
| 2037 | * Deallocate request handle |
| 2038 | * |
| 2039 | */ |
| 2040 | void HTTP_CloseHTTPRequestHandle(LPWININETHTTPREQA lpwhr) |
| 2041 | { |
| 2042 | int i; |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 2043 | LPWININETHTTPSESSIONA lpwhs = NULL; |
| 2044 | LPWININETAPPINFOA hIC = NULL; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2045 | |
| 2046 | TRACE("\n"); |
| 2047 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 2048 | if (NETCON_connected(&lpwhr->netConnection)) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2049 | HTTP_CloseConnection(lpwhr); |
| 2050 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 2051 | lpwhs = (LPWININETHTTPSESSIONA) lpwhr->hdr.lpwhparent; |
| 2052 | hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 2053 | |
| 2054 | SendAsyncCallback(hIC, lpwhr, lpwhr->hdr.dwContext, |
| 2055 | INTERNET_STATUS_HANDLE_CLOSING, lpwhr, |
| 2056 | sizeof(HINTERNET)); |
| 2057 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2058 | if (lpwhr->lpszPath) |
| 2059 | HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath); |
| 2060 | if (lpwhr->lpszVerb) |
| 2061 | HeapFree(GetProcessHeap(), 0, lpwhr->lpszVerb); |
| 2062 | if (lpwhr->lpszHostName) |
| 2063 | HeapFree(GetProcessHeap(), 0, lpwhr->lpszHostName); |
| 2064 | |
| 2065 | for (i = 0; i <= HTTP_QUERY_MAX; i++) |
| 2066 | { |
| 2067 | if (lpwhr->StdHeaders[i].lpszField) |
| 2068 | HeapFree(GetProcessHeap(), 0, lpwhr->StdHeaders[i].lpszField); |
| 2069 | if (lpwhr->StdHeaders[i].lpszValue) |
| 2070 | HeapFree(GetProcessHeap(), 0, lpwhr->StdHeaders[i].lpszValue); |
| 2071 | } |
| 2072 | |
| 2073 | for (i = 0; i < lpwhr->nCustHeaders; i++) |
| 2074 | { |
| 2075 | if (lpwhr->pCustHeaders[i].lpszField) |
| 2076 | HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders[i].lpszField); |
| 2077 | if (lpwhr->pCustHeaders[i].lpszValue) |
| 2078 | HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders[i].lpszValue); |
| 2079 | } |
| 2080 | |
| 2081 | HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders); |
| 2082 | HeapFree(GetProcessHeap(), 0, lpwhr); |
| 2083 | } |
| 2084 | |
| 2085 | |
| 2086 | /*********************************************************************** |
| 2087 | * HTTP_CloseHTTPSessionHandle (internal) |
| 2088 | * |
| 2089 | * Deallocate session handle |
| 2090 | * |
| 2091 | */ |
| 2092 | void HTTP_CloseHTTPSessionHandle(LPWININETHTTPSESSIONA lpwhs) |
| 2093 | { |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 2094 | LPWININETAPPINFOA hIC = NULL; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 2095 | TRACE("%p\n", lpwhs); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2096 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 2097 | hIC = (LPWININETAPPINFOA) lpwhs->hdr.lpwhparent; |
| 2098 | |
| 2099 | SendAsyncCallback(hIC, lpwhs, lpwhs->hdr.dwContext, |
| 2100 | INTERNET_STATUS_HANDLE_CLOSING, lpwhs, |
| 2101 | sizeof(HINTERNET)); |
| 2102 | |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2103 | if (lpwhs->lpszServerName) |
| 2104 | HeapFree(GetProcessHeap(), 0, lpwhs->lpszServerName); |
| 2105 | if (lpwhs->lpszUserName) |
| 2106 | HeapFree(GetProcessHeap(), 0, lpwhs->lpszUserName); |
| 2107 | HeapFree(GetProcessHeap(), 0, lpwhs); |
| 2108 | } |
| 2109 | |
| 2110 | |
| 2111 | /*********************************************************************** |
| 2112 | * HTTP_GetCustomHeaderIndex (internal) |
| 2113 | * |
| 2114 | * Return index of custom header from header array |
| 2115 | * |
| 2116 | */ |
| 2117 | INT HTTP_GetCustomHeaderIndex(LPWININETHTTPREQA lpwhr, LPCSTR lpszField) |
| 2118 | { |
| 2119 | INT index; |
| 2120 | |
| 2121 | TRACE("%s\n", lpszField); |
| 2122 | |
| 2123 | for (index = 0; index < lpwhr->nCustHeaders; index++) |
| 2124 | { |
Alexandre Julliard | 5ab9d86 | 2000-08-09 22:35:05 +0000 | [diff] [blame] | 2125 | if (!strcasecmp(lpwhr->pCustHeaders[index].lpszField, lpszField)) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2126 | break; |
| 2127 | |
| 2128 | } |
| 2129 | |
| 2130 | if (index >= lpwhr->nCustHeaders) |
| 2131 | index = -1; |
| 2132 | |
| 2133 | TRACE("Return: %d\n", index); |
| 2134 | return index; |
| 2135 | } |
| 2136 | |
| 2137 | |
| 2138 | /*********************************************************************** |
| 2139 | * HTTP_InsertCustomHeader (internal) |
| 2140 | * |
| 2141 | * Insert header into array |
| 2142 | * |
| 2143 | */ |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 2144 | BOOL HTTP_InsertCustomHeader(LPWININETHTTPREQA lpwhr, LPHTTPHEADERA lpHdr) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2145 | { |
| 2146 | INT count; |
| 2147 | LPHTTPHEADERA lph = NULL; |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 2148 | BOOL r = FALSE; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2149 | |
Aric Stewart | ff9b9d4 | 2002-06-21 23:59:49 +0000 | [diff] [blame] | 2150 | TRACE("--> %s: %s\n", lpHdr->lpszField, lpHdr->lpszValue); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2151 | count = lpwhr->nCustHeaders + 1; |
| 2152 | if (count > 1) |
| 2153 | lph = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, lpwhr->pCustHeaders, sizeof(HTTPHEADERA) * count); |
| 2154 | else |
| 2155 | lph = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(HTTPHEADERA) * count); |
| 2156 | |
| 2157 | if (NULL != lph) |
| 2158 | { |
| 2159 | lpwhr->pCustHeaders = lph; |
Alexandre Julliard | 0e44f63 | 2000-11-16 00:28:52 +0000 | [diff] [blame] | 2160 | lpwhr->pCustHeaders[count-1].lpszField = HTTP_strdup(lpHdr->lpszField); |
| 2161 | lpwhr->pCustHeaders[count-1].lpszValue = HTTP_strdup(lpHdr->lpszValue); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2162 | lpwhr->pCustHeaders[count-1].wFlags = lpHdr->wFlags; |
| 2163 | lpwhr->pCustHeaders[count-1].wCount= lpHdr->wCount; |
| 2164 | lpwhr->nCustHeaders++; |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 2165 | r = TRUE; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2166 | } |
| 2167 | else |
| 2168 | { |
| 2169 | INTERNET_SetLastError(ERROR_OUTOFMEMORY); |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2170 | } |
| 2171 | |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 2172 | return r; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2173 | } |
| 2174 | |
| 2175 | |
| 2176 | /*********************************************************************** |
| 2177 | * HTTP_DeleteCustomHeader (internal) |
| 2178 | * |
| 2179 | * Delete header from array |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 2180 | * If this function is called, the indexs may change. |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2181 | */ |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 2182 | BOOL HTTP_DeleteCustomHeader(LPWININETHTTPREQA lpwhr, INT index) |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2183 | { |
Mike McCormack | a1c16d2 | 2003-07-22 03:17:52 +0000 | [diff] [blame] | 2184 | if( lpwhr->nCustHeaders <= 0 ) |
| 2185 | return FALSE; |
| 2186 | if( lpwhr->nCustHeaders >= index ) |
| 2187 | return FALSE; |
| 2188 | lpwhr->nCustHeaders--; |
| 2189 | |
| 2190 | memmove( &lpwhr->pCustHeaders[index], &lpwhr->pCustHeaders[index+1], |
| 2191 | (lpwhr->nCustHeaders - index)* sizeof(HTTPHEADERA) ); |
| 2192 | memset( &lpwhr->pCustHeaders[lpwhr->nCustHeaders], 0, sizeof(HTTPHEADERA) ); |
| 2193 | |
| 2194 | return TRUE; |
Ulrich Czekalla | c275724 | 2000-06-11 20:04:44 +0000 | [diff] [blame] | 2195 | } |
Alberto Massari | b09eef2 | 2002-11-13 04:08:26 +0000 | [diff] [blame] | 2196 | |
| 2197 | /*********************************************************************** |
| 2198 | * IsHostInProxyBypassList (@) |
| 2199 | * |
| 2200 | * Undocumented |
| 2201 | * |
| 2202 | */ |
| 2203 | BOOL WINAPI IsHostInProxyBypassList(DWORD flags, LPCSTR szHost, DWORD length) |
| 2204 | { |
| 2205 | FIXME("STUB: flags=%ld host=%s length=%ld\n",flags,szHost,length); |
| 2206 | return FALSE; |
| 2207 | } |