wininet: Use lpAppInfo instead of lpwhparent where possible.
[wine.git] / dlls / wininet / internet.c
blobd9385c8c6223985ac29e9b80ba3ea333cb070ead
1 /*
2 * Wininet
4 * Copyright 1999 Corel Corporation
5 * Copyright 2002 CodeWeavers Inc.
6 * Copyright 2002 Jaco Greeff
7 * Copyright 2002 TransGaming Technologies Inc.
8 * Copyright 2004 Mike McCormack for CodeWeavers
10 * Ulrich Czekalla
11 * Aric Stewart
12 * David Hammerton
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "config.h"
30 #include "wine/port.h"
32 #define MAXHOSTNAME 100 /* from http.c */
34 #include <string.h>
35 #include <stdarg.h>
36 #include <stdio.h>
37 #include <sys/types.h>
38 #ifdef HAVE_SYS_SOCKET_H
39 # include <sys/socket.h>
40 #endif
41 #ifdef HAVE_SYS_TIME_H
42 # include <sys/time.h>
43 #endif
44 #include <stdlib.h>
45 #include <ctype.h>
46 #ifdef HAVE_UNISTD_H
47 # include <unistd.h>
48 #endif
49 #include <assert.h>
51 #include "windef.h"
52 #include "winbase.h"
53 #include "winreg.h"
54 #include "winuser.h"
55 #include "wininet.h"
56 #include "winnls.h"
57 #include "wine/debug.h"
58 #include "winerror.h"
59 #define NO_SHLWAPI_STREAM
60 #include "shlwapi.h"
62 #include "wine/exception.h"
63 #include "excpt.h"
65 #include "internet.h"
66 #include "resource.h"
68 #include "wine/unicode.h"
69 #include "wincrypt.h"
71 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
73 #define MAX_IDLE_WORKER 1000*60*1
74 #define MAX_WORKER_THREADS 10
75 #define RESPONSE_TIMEOUT 30
77 #define GET_HWININET_FROM_LPWININETFINDNEXT(lpwh) \
78 (((LPWININETFTPSESSIONW)(lpwh->hdr.lpwhparent))->lpAppInfo)
81 typedef struct
83 DWORD dwError;
84 CHAR response[MAX_REPLY_LEN];
85 } WITHREADERROR, *LPWITHREADERROR;
87 static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr);
88 BOOL WINAPI INTERNET_FindNextFileW(LPWININETFINDNEXTW lpwh, LPVOID lpvFindData);
89 HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
90 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext);
91 static VOID INTERNET_ExecuteWork(void);
93 static DWORD g_dwTlsErrIndex = TLS_OUT_OF_INDEXES;
94 static LONG dwNumThreads;
95 static LONG dwNumIdleThreads;
96 static LONG dwNumJobs;
97 static HANDLE hEventArray[2];
98 #define hQuitEvent hEventArray[0]
99 #define hWorkEvent hEventArray[1]
100 static CRITICAL_SECTION csQueue;
101 static LPWORKREQUEST lpHeadWorkQueue;
102 static LPWORKREQUEST lpWorkQueueTail;
103 static HMODULE WININET_hModule;
105 #define HANDLE_CHUNK_SIZE 0x10
107 static CRITICAL_SECTION WININET_cs;
108 static CRITICAL_SECTION_DEBUG WININET_cs_debug =
110 0, 0, &WININET_cs,
111 { &WININET_cs_debug.ProcessLocksList, &WININET_cs_debug.ProcessLocksList },
112 0, 0, { (DWORD_PTR)(__FILE__ ": WININET_cs") }
114 static CRITICAL_SECTION WININET_cs = { &WININET_cs_debug, -1, 0, 0, 0, 0 };
116 static LPWININETHANDLEHEADER *WININET_Handles;
117 static UINT WININET_dwNextHandle;
118 static UINT WININET_dwMaxHandles;
120 HINTERNET WININET_AllocHandle( LPWININETHANDLEHEADER info )
122 LPWININETHANDLEHEADER *p;
123 UINT handle = 0, num;
125 EnterCriticalSection( &WININET_cs );
126 if( !WININET_dwMaxHandles )
128 num = HANDLE_CHUNK_SIZE;
129 p = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
130 sizeof (UINT)* num);
131 if( !p )
132 goto end;
133 WININET_Handles = p;
134 WININET_dwMaxHandles = num;
136 if( WININET_dwMaxHandles == WININET_dwNextHandle )
138 num = WININET_dwMaxHandles + HANDLE_CHUNK_SIZE;
139 p = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
140 WININET_Handles, sizeof (UINT)* num);
141 if( !p )
142 goto end;
143 WININET_Handles = p;
144 WININET_dwMaxHandles = num;
147 handle = WININET_dwNextHandle;
148 if( WININET_Handles[handle] )
149 ERR("handle isn't free but should be\n");
150 WININET_Handles[handle] = WININET_AddRef( info );
152 while( WININET_Handles[WININET_dwNextHandle] &&
153 (WININET_dwNextHandle < WININET_dwMaxHandles ) )
154 WININET_dwNextHandle++;
156 end:
157 LeaveCriticalSection( &WININET_cs );
159 return (HINTERNET) (handle+1);
162 HINTERNET WININET_FindHandle( LPWININETHANDLEHEADER info )
164 UINT i, handle = 0;
166 EnterCriticalSection( &WININET_cs );
167 for( i=0; i<WININET_dwMaxHandles; i++ )
169 if( info == WININET_Handles[i] )
171 WININET_AddRef( info );
172 handle = i+1;
173 break;
176 LeaveCriticalSection( &WININET_cs );
178 return (HINTERNET) handle;
181 LPWININETHANDLEHEADER WININET_AddRef( LPWININETHANDLEHEADER info )
183 info->dwRefCount++;
184 TRACE("%p -> refcount = %d\n", info, info->dwRefCount );
185 return info;
188 LPWININETHANDLEHEADER WININET_GetObject( HINTERNET hinternet )
190 LPWININETHANDLEHEADER info = NULL;
191 UINT handle = (UINT) hinternet;
193 EnterCriticalSection( &WININET_cs );
195 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) &&
196 WININET_Handles[handle-1] )
197 info = WININET_AddRef( WININET_Handles[handle-1] );
199 LeaveCriticalSection( &WININET_cs );
201 TRACE("handle %d -> %p\n", handle, info);
203 return info;
206 BOOL WININET_Release( LPWININETHANDLEHEADER info )
208 info->dwRefCount--;
209 TRACE( "object %p refcount = %d\n", info, info->dwRefCount );
210 if( !info->dwRefCount )
212 TRACE( "destroying object %p\n", info);
213 info->destroy( info );
215 return TRUE;
218 BOOL WININET_FreeHandle( HINTERNET hinternet )
220 BOOL ret = FALSE;
221 UINT handle = (UINT) hinternet;
222 LPWININETHANDLEHEADER info = NULL;
224 EnterCriticalSection( &WININET_cs );
226 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) )
228 handle--;
229 if( WININET_Handles[handle] )
231 info = WININET_Handles[handle];
232 TRACE( "destroying handle %d for object %p\n", handle+1, info);
233 WININET_Handles[handle] = NULL;
234 ret = TRUE;
235 if( WININET_dwNextHandle > handle )
236 WININET_dwNextHandle = handle;
240 LeaveCriticalSection( &WININET_cs );
242 if( info )
243 WININET_Release( info );
245 return ret;
248 /***********************************************************************
249 * DllMain [Internal] Initializes the internal 'WININET.DLL'.
251 * PARAMS
252 * hinstDLL [I] handle to the DLL's instance
253 * fdwReason [I]
254 * lpvReserved [I] reserved, must be NULL
256 * RETURNS
257 * Success: TRUE
258 * Failure: FALSE
261 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
263 TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
265 switch (fdwReason) {
266 case DLL_PROCESS_ATTACH:
268 g_dwTlsErrIndex = TlsAlloc();
270 if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
271 return FALSE;
273 hQuitEvent = CreateEventW(0, TRUE, FALSE, NULL);
274 hWorkEvent = CreateEventW(0, FALSE, FALSE, NULL);
275 InitializeCriticalSection(&csQueue);
277 URLCacheContainers_CreateDefaults();
279 dwNumThreads = 0;
280 dwNumIdleThreads = 0;
281 dwNumJobs = 0;
283 WININET_hModule = (HMODULE)hinstDLL;
285 case DLL_THREAD_ATTACH:
286 break;
288 case DLL_THREAD_DETACH:
289 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
291 LPVOID lpwite = TlsGetValue(g_dwTlsErrIndex);
292 HeapFree(GetProcessHeap(), 0, lpwite);
294 break;
296 case DLL_PROCESS_DETACH:
298 URLCacheContainers_DeleteAll();
300 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
302 HeapFree(GetProcessHeap(), 0, TlsGetValue(g_dwTlsErrIndex));
303 TlsFree(g_dwTlsErrIndex);
306 SetEvent(hQuitEvent);
308 CloseHandle(hQuitEvent);
309 CloseHandle(hWorkEvent);
310 DeleteCriticalSection(&csQueue);
311 break;
314 return TRUE;
318 /***********************************************************************
319 * InternetInitializeAutoProxyDll (WININET.@)
321 * Setup the internal proxy
323 * PARAMETERS
324 * dwReserved
326 * RETURNS
327 * FALSE on failure
330 BOOL WINAPI InternetInitializeAutoProxyDll(DWORD dwReserved)
332 FIXME("STUB\n");
333 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
334 return FALSE;
337 /***********************************************************************
338 * DetectAutoProxyUrl (WININET.@)
340 * Auto detect the proxy url
342 * RETURNS
343 * FALSE on failure
346 BOOL WINAPI DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl,
347 DWORD dwAutoProxyUrlLength, DWORD dwDetectFlags)
349 FIXME("STUB\n");
350 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
351 return FALSE;
355 /***********************************************************************
356 * INTERNET_ConfigureProxyFromReg
358 * FIXME:
359 * The proxy may be specified in the form 'http=proxy.my.org'
360 * Presumably that means there can be ftp=ftpproxy.my.org too.
362 static BOOL INTERNET_ConfigureProxyFromReg( LPWININETAPPINFOW lpwai )
364 HKEY key;
365 DWORD r, keytype, len, enabled;
366 LPCSTR lpszInternetSettings =
367 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
368 static const WCHAR szProxyServer[] = { 'P','r','o','x','y','S','e','r','v','e','r', 0 };
370 r = RegOpenKeyA(HKEY_CURRENT_USER, lpszInternetSettings, &key);
371 if ( r != ERROR_SUCCESS )
372 return FALSE;
374 len = sizeof enabled;
375 r = RegQueryValueExA( key, "ProxyEnable", NULL, &keytype,
376 (BYTE*)&enabled, &len);
377 if( (r == ERROR_SUCCESS) && enabled )
379 TRACE("Proxy is enabled.\n");
381 /* figure out how much memory the proxy setting takes */
382 r = RegQueryValueExW( key, szProxyServer, NULL, &keytype,
383 NULL, &len);
384 if( (r == ERROR_SUCCESS) && len && (keytype == REG_SZ) )
386 LPWSTR szProxy, p;
387 static const WCHAR szHttp[] = {'h','t','t','p','=',0};
389 szProxy=HeapAlloc( GetProcessHeap(), 0, len );
390 RegQueryValueExW( key, szProxyServer, NULL, &keytype,
391 (BYTE*)szProxy, &len);
393 /* find the http proxy, and strip away everything else */
394 p = strstrW( szProxy, szHttp );
395 if( p )
397 p += lstrlenW(szHttp);
398 lstrcpyW( szProxy, p );
400 p = strchrW( szProxy, ' ' );
401 if( p )
402 *p = 0;
404 lpwai->dwAccessType = INTERNET_OPEN_TYPE_PROXY;
405 lpwai->lpszProxy = szProxy;
407 TRACE("http proxy = %s\n", debugstr_w(lpwai->lpszProxy));
409 else
410 ERR("Couldn't read proxy server settings.\n");
412 else
413 TRACE("Proxy is not enabled.\n");
414 RegCloseKey(key);
416 return enabled;
419 /***********************************************************************
420 * dump_INTERNET_FLAGS
422 * Helper function to TRACE the internet flags.
424 * RETURNS
425 * None
428 static void dump_INTERNET_FLAGS(DWORD dwFlags)
430 #define FE(x) { x, #x }
431 static const wininet_flag_info flag[] = {
432 FE(INTERNET_FLAG_RELOAD),
433 FE(INTERNET_FLAG_RAW_DATA),
434 FE(INTERNET_FLAG_EXISTING_CONNECT),
435 FE(INTERNET_FLAG_ASYNC),
436 FE(INTERNET_FLAG_PASSIVE),
437 FE(INTERNET_FLAG_NO_CACHE_WRITE),
438 FE(INTERNET_FLAG_MAKE_PERSISTENT),
439 FE(INTERNET_FLAG_FROM_CACHE),
440 FE(INTERNET_FLAG_SECURE),
441 FE(INTERNET_FLAG_KEEP_CONNECTION),
442 FE(INTERNET_FLAG_NO_AUTO_REDIRECT),
443 FE(INTERNET_FLAG_READ_PREFETCH),
444 FE(INTERNET_FLAG_NO_COOKIES),
445 FE(INTERNET_FLAG_NO_AUTH),
446 FE(INTERNET_FLAG_CACHE_IF_NET_FAIL),
447 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP),
448 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS),
449 FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID),
450 FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID),
451 FE(INTERNET_FLAG_RESYNCHRONIZE),
452 FE(INTERNET_FLAG_HYPERLINK),
453 FE(INTERNET_FLAG_NO_UI),
454 FE(INTERNET_FLAG_PRAGMA_NOCACHE),
455 FE(INTERNET_FLAG_CACHE_ASYNC),
456 FE(INTERNET_FLAG_FORMS_SUBMIT),
457 FE(INTERNET_FLAG_NEED_FILE),
458 FE(INTERNET_FLAG_TRANSFER_ASCII),
459 FE(INTERNET_FLAG_TRANSFER_BINARY)
461 #undef FE
462 int i;
464 for (i = 0; i < (sizeof(flag) / sizeof(flag[0])); i++) {
465 if (flag[i].val & dwFlags) {
466 TRACE(" %s", flag[i].name);
467 dwFlags &= ~flag[i].val;
470 if (dwFlags)
471 TRACE(" Unknown flags (%08x)\n", dwFlags);
472 else
473 TRACE("\n");
476 /***********************************************************************
477 * InternetOpenW (WININET.@)
479 * Per-application initialization of wininet
481 * RETURNS
482 * HINTERNET on success
483 * NULL on failure
486 HINTERNET WINAPI InternetOpenW(LPCWSTR lpszAgent, DWORD dwAccessType,
487 LPCWSTR lpszProxy, LPCWSTR lpszProxyBypass, DWORD dwFlags)
489 LPWININETAPPINFOW lpwai = NULL;
490 HINTERNET handle = NULL;
492 if (TRACE_ON(wininet)) {
493 #define FE(x) { x, #x }
494 static const wininet_flag_info access_type[] = {
495 FE(INTERNET_OPEN_TYPE_PRECONFIG),
496 FE(INTERNET_OPEN_TYPE_DIRECT),
497 FE(INTERNET_OPEN_TYPE_PROXY),
498 FE(INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY)
500 #undef FE
501 DWORD i;
502 const char *access_type_str = "Unknown";
504 TRACE("(%s, %i, %s, %s, %i)\n", debugstr_w(lpszAgent), dwAccessType,
505 debugstr_w(lpszProxy), debugstr_w(lpszProxyBypass), dwFlags);
506 for (i = 0; i < (sizeof(access_type) / sizeof(access_type[0])); i++) {
507 if (access_type[i].val == dwAccessType) {
508 access_type_str = access_type[i].name;
509 break;
512 TRACE(" access type : %s\n", access_type_str);
513 TRACE(" flags :");
514 dump_INTERNET_FLAGS(dwFlags);
517 /* Clear any error information */
518 INTERNET_SetLastError(0);
520 lpwai = HeapAlloc(GetProcessHeap(), 0, sizeof(WININETAPPINFOW));
521 if (NULL == lpwai)
523 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
524 goto lend;
527 memset(lpwai, 0, sizeof(WININETAPPINFOW));
528 lpwai->hdr.htype = WH_HINIT;
529 lpwai->hdr.lpwhparent = NULL;
530 lpwai->hdr.dwFlags = dwFlags;
531 lpwai->hdr.dwRefCount = 1;
532 lpwai->hdr.destroy = INTERNET_CloseHandle;
533 lpwai->dwAccessType = dwAccessType;
534 lpwai->lpszProxyUsername = NULL;
535 lpwai->lpszProxyPassword = NULL;
537 handle = WININET_AllocHandle( &lpwai->hdr );
538 if( !handle )
540 HeapFree( GetProcessHeap(), 0, lpwai );
541 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
542 goto lend;
545 if (NULL != lpszAgent)
547 lpwai->lpszAgent = HeapAlloc( GetProcessHeap(),0,
548 (strlenW(lpszAgent)+1)*sizeof(WCHAR));
549 if (lpwai->lpszAgent)
550 lstrcpyW( lpwai->lpszAgent, lpszAgent );
552 if(dwAccessType == INTERNET_OPEN_TYPE_PRECONFIG)
553 INTERNET_ConfigureProxyFromReg( lpwai );
554 else if (NULL != lpszProxy)
556 lpwai->lpszProxy = HeapAlloc( GetProcessHeap(), 0,
557 (strlenW(lpszProxy)+1)*sizeof(WCHAR));
558 if (lpwai->lpszProxy)
559 lstrcpyW( lpwai->lpszProxy, lpszProxy );
562 if (NULL != lpszProxyBypass)
564 lpwai->lpszProxyBypass = HeapAlloc( GetProcessHeap(), 0,
565 (strlenW(lpszProxyBypass)+1)*sizeof(WCHAR));
566 if (lpwai->lpszProxyBypass)
567 lstrcpyW( lpwai->lpszProxyBypass, lpszProxyBypass );
570 lend:
571 if( lpwai )
572 WININET_Release( &lpwai->hdr );
574 TRACE("returning %p\n", lpwai);
576 return handle;
580 /***********************************************************************
581 * InternetOpenA (WININET.@)
583 * Per-application initialization of wininet
585 * RETURNS
586 * HINTERNET on success
587 * NULL on failure
590 HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent, DWORD dwAccessType,
591 LPCSTR lpszProxy, LPCSTR lpszProxyBypass, DWORD dwFlags)
593 HINTERNET rc = (HINTERNET)NULL;
594 INT len;
595 WCHAR *szAgent = NULL, *szProxy = NULL, *szBypass = NULL;
597 TRACE("(%s, 0x%08x, %s, %s, 0x%08x)\n", debugstr_a(lpszAgent),
598 dwAccessType, debugstr_a(lpszProxy), debugstr_a(lpszProxyBypass), dwFlags);
600 if( lpszAgent )
602 len = MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, NULL, 0);
603 szAgent = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
604 MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, szAgent, len);
607 if( lpszProxy )
609 len = MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, NULL, 0);
610 szProxy = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
611 MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, szProxy, len);
614 if( lpszProxyBypass )
616 len = MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, NULL, 0);
617 szBypass = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
618 MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, szBypass, len);
621 rc = InternetOpenW(szAgent, dwAccessType, szProxy, szBypass, dwFlags);
623 HeapFree(GetProcessHeap(), 0, szAgent);
624 HeapFree(GetProcessHeap(), 0, szProxy);
625 HeapFree(GetProcessHeap(), 0, szBypass);
627 return rc;
630 /***********************************************************************
631 * InternetGetLastResponseInfoA (WININET.@)
633 * Return last wininet error description on the calling thread
635 * RETURNS
636 * TRUE on success of writing to buffer
637 * FALSE on failure
640 BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
641 LPSTR lpszBuffer, LPDWORD lpdwBufferLength)
643 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
645 TRACE("\n");
647 if (lpwite)
649 *lpdwError = lpwite->dwError;
650 if (lpwite->dwError)
652 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
653 *lpdwBufferLength = strlen(lpszBuffer);
655 else
656 *lpdwBufferLength = 0;
658 else
660 *lpdwError = 0;
661 *lpdwBufferLength = 0;
664 return TRUE;
667 /***********************************************************************
668 * InternetGetLastResponseInfoW (WININET.@)
670 * Return last wininet error description on the calling thread
672 * RETURNS
673 * TRUE on success of writing to buffer
674 * FALSE on failure
677 BOOL WINAPI InternetGetLastResponseInfoW(LPDWORD lpdwError,
678 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength)
680 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
682 TRACE("\n");
684 if (lpwite)
686 *lpdwError = lpwite->dwError;
687 if (lpwite->dwError)
689 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
690 *lpdwBufferLength = lstrlenW(lpszBuffer);
692 else
693 *lpdwBufferLength = 0;
695 else
697 *lpdwError = 0;
698 *lpdwBufferLength = 0;
701 return TRUE;
704 /***********************************************************************
705 * InternetGetConnectedState (WININET.@)
707 * Return connected state
709 * RETURNS
710 * TRUE if connected
711 * if lpdwStatus is not null, return the status (off line,
712 * modem, lan...) in it.
713 * FALSE if not connected
715 BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
717 TRACE("(%p, 0x%08x)\n", lpdwStatus, dwReserved);
719 if (lpdwStatus) {
720 FIXME("always returning LAN connection.\n");
721 *lpdwStatus = INTERNET_CONNECTION_LAN;
723 return TRUE;
727 /***********************************************************************
728 * InternetGetConnectedStateExW (WININET.@)
730 * Return connected state
732 * PARAMS
734 * lpdwStatus [O] Flags specifying the status of the internet connection.
735 * lpszConnectionName [O] Pointer to buffer to receive the friendly name of the internet connection.
736 * dwNameLen [I] Size of the buffer, in characters.
737 * dwReserved [I] Reserved. Must be set to 0.
739 * RETURNS
740 * TRUE if connected
741 * if lpdwStatus is not null, return the status (off line,
742 * modem, lan...) in it.
743 * FALSE if not connected
745 * NOTES
746 * If the system has no available network connections, an empty string is
747 * stored in lpszConnectionName. If there is a LAN connection, a localized
748 * "LAN Connection" string is stored. Presumably, if only a dial-up
749 * connection is available then the name of the dial-up connection is
750 * returned. Why any application, other than the "Internet Settings" CPL,
751 * would want to use this function instead of the simpler InternetGetConnectedStateW
752 * function is beyond me.
754 BOOL WINAPI InternetGetConnectedStateExW(LPDWORD lpdwStatus, LPWSTR lpszConnectionName,
755 DWORD dwNameLen, DWORD dwReserved)
757 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
759 /* Must be zero */
760 if(dwReserved)
761 return FALSE;
763 if (lpdwStatus) {
764 FIXME("always returning LAN connection.\n");
765 *lpdwStatus = INTERNET_CONNECTION_LAN;
767 return LoadStringW(WININET_hModule, IDS_LANCONNECTION, lpszConnectionName, dwNameLen);
771 /***********************************************************************
772 * InternetGetConnectedStateExA (WININET.@)
774 BOOL WINAPI InternetGetConnectedStateExA(LPDWORD lpdwStatus, LPSTR lpszConnectionName,
775 DWORD dwNameLen, DWORD dwReserved)
777 LPWSTR lpwszConnectionName = NULL;
778 BOOL rc;
780 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
782 if (lpszConnectionName && dwNameLen > 0)
783 lpwszConnectionName= HeapAlloc(GetProcessHeap(), 0, dwNameLen * sizeof(WCHAR));
785 rc = InternetGetConnectedStateExW(lpdwStatus,lpwszConnectionName, dwNameLen,
786 dwReserved);
787 if (rc && lpwszConnectionName)
789 WideCharToMultiByte(CP_ACP,0,lpwszConnectionName,-1,lpszConnectionName,
790 dwNameLen, NULL, NULL);
792 HeapFree(GetProcessHeap(),0,lpwszConnectionName);
795 return rc;
799 /***********************************************************************
800 * InternetConnectW (WININET.@)
802 * Open a ftp, gopher or http session
804 * RETURNS
805 * HINTERNET a session handle on success
806 * NULL on failure
809 HINTERNET WINAPI InternetConnectW(HINTERNET hInternet,
810 LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
811 LPCWSTR lpszUserName, LPCWSTR lpszPassword,
812 DWORD dwService, DWORD dwFlags, DWORD dwContext)
814 LPWININETAPPINFOW hIC;
815 HINTERNET rc = NULL;
817 TRACE("(%p, %s, %i, %s, %s, %i, %i, %i)\n", hInternet, debugstr_w(lpszServerName),
818 nServerPort, debugstr_w(lpszUserName), debugstr_w(lpszPassword),
819 dwService, dwFlags, dwContext);
821 if (!lpszServerName)
823 SetLastError(ERROR_INVALID_PARAMETER);
824 return NULL;
827 /* Clear any error information */
828 INTERNET_SetLastError(0);
829 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
830 if ( (hIC == NULL) || (hIC->hdr.htype != WH_HINIT) )
832 SetLastError(ERROR_INVALID_HANDLE);
833 goto lend;
836 switch (dwService)
838 case INTERNET_SERVICE_FTP:
839 rc = FTP_Connect(hIC, lpszServerName, nServerPort,
840 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
841 break;
843 case INTERNET_SERVICE_HTTP:
844 rc = HTTP_Connect(hIC, lpszServerName, nServerPort,
845 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
846 break;
848 case INTERNET_SERVICE_GOPHER:
849 default:
850 break;
852 lend:
853 if( hIC )
854 WININET_Release( &hIC->hdr );
856 TRACE("returning %p\n", rc);
857 return rc;
861 /***********************************************************************
862 * InternetConnectA (WININET.@)
864 * Open a ftp, gopher or http session
866 * RETURNS
867 * HINTERNET a session handle on success
868 * NULL on failure
871 HINTERNET WINAPI InternetConnectA(HINTERNET hInternet,
872 LPCSTR lpszServerName, INTERNET_PORT nServerPort,
873 LPCSTR lpszUserName, LPCSTR lpszPassword,
874 DWORD dwService, DWORD dwFlags, DWORD dwContext)
876 HINTERNET rc = (HINTERNET)NULL;
877 INT len = 0;
878 LPWSTR szServerName = NULL;
879 LPWSTR szUserName = NULL;
880 LPWSTR szPassword = NULL;
882 if (lpszServerName)
884 len = MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, NULL, 0);
885 szServerName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
886 MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, szServerName, len);
888 if (lpszUserName)
890 len = MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, NULL, 0);
891 szUserName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
892 MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, szUserName, len);
894 if (lpszPassword)
896 len = MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, NULL, 0);
897 szPassword = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
898 MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, szPassword, len);
902 rc = InternetConnectW(hInternet, szServerName, nServerPort,
903 szUserName, szPassword, dwService, dwFlags, dwContext);
905 HeapFree(GetProcessHeap(), 0, szServerName);
906 HeapFree(GetProcessHeap(), 0, szUserName);
907 HeapFree(GetProcessHeap(), 0, szPassword);
908 return rc;
912 /***********************************************************************
913 * InternetFindNextFileA (WININET.@)
915 * Continues a file search from a previous call to FindFirstFile
917 * RETURNS
918 * TRUE on success
919 * FALSE on failure
922 BOOL WINAPI InternetFindNextFileA(HINTERNET hFind, LPVOID lpvFindData)
924 BOOL ret;
925 WIN32_FIND_DATAW fd;
927 ret = InternetFindNextFileW(hFind, lpvFindData?&fd:NULL);
928 if(lpvFindData)
929 WININET_find_data_WtoA(&fd, (LPWIN32_FIND_DATAA)lpvFindData);
930 return ret;
933 /***********************************************************************
934 * InternetFindNextFileW (WININET.@)
936 * Continues a file search from a previous call to FindFirstFile
938 * RETURNS
939 * TRUE on success
940 * FALSE on failure
943 BOOL WINAPI InternetFindNextFileW(HINTERNET hFind, LPVOID lpvFindData)
945 LPWININETAPPINFOW hIC = NULL;
946 LPWININETFINDNEXTW lpwh;
947 BOOL bSuccess = FALSE;
949 TRACE("\n");
951 lpwh = (LPWININETFINDNEXTW) WININET_GetObject( hFind );
952 if (NULL == lpwh || lpwh->hdr.htype != WH_HFINDNEXT)
954 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
955 goto lend;
958 hIC = GET_HWININET_FROM_LPWININETFINDNEXT(lpwh);
959 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
961 WORKREQUEST workRequest;
962 struct WORKREQ_INTERNETFINDNEXTW *req;
964 workRequest.asyncall = INTERNETFINDNEXTW;
965 workRequest.hdr = WININET_AddRef( &lpwh->hdr );
966 req = &workRequest.u.InternetFindNextW;
967 req->lpFindFileData = lpvFindData;
969 bSuccess = INTERNET_AsyncCall(&workRequest);
971 else
973 bSuccess = INTERNET_FindNextFileW(lpwh, lpvFindData);
975 lend:
976 if( lpwh )
977 WININET_Release( &lpwh->hdr );
978 return bSuccess;
981 /***********************************************************************
982 * INTERNET_FindNextFileW (Internal)
984 * Continues a file search from a previous call to FindFirstFile
986 * RETURNS
987 * TRUE on success
988 * FALSE on failure
991 BOOL WINAPI INTERNET_FindNextFileW(LPWININETFINDNEXTW lpwh, LPVOID lpvFindData)
993 BOOL bSuccess = TRUE;
994 LPWIN32_FIND_DATAW lpFindFileData;
996 TRACE("\n");
998 assert (lpwh->hdr.htype == WH_HFINDNEXT);
1000 /* Clear any error information */
1001 INTERNET_SetLastError(0);
1003 if (lpwh->hdr.lpwhparent->htype != WH_HFTPSESSION)
1005 FIXME("Only FTP find next supported\n");
1006 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1007 return FALSE;
1010 TRACE("index(%d) size(%d)\n", lpwh->index, lpwh->size);
1012 lpFindFileData = (LPWIN32_FIND_DATAW) lpvFindData;
1013 ZeroMemory(lpFindFileData, sizeof(WIN32_FIND_DATAA));
1015 if (lpwh->index >= lpwh->size)
1017 INTERNET_SetLastError(ERROR_NO_MORE_FILES);
1018 bSuccess = FALSE;
1019 goto lend;
1022 FTP_ConvertFileProp(&lpwh->lpafp[lpwh->index], lpFindFileData);
1023 lpwh->index++;
1025 TRACE("\nName: %s\nSize: %d\n", debugstr_w(lpFindFileData->cFileName), lpFindFileData->nFileSizeLow);
1027 lend:
1029 if (lpwh->hdr.dwFlags & INTERNET_FLAG_ASYNC)
1031 INTERNET_ASYNC_RESULT iar;
1033 iar.dwResult = (DWORD)bSuccess;
1034 iar.dwError = iar.dwError = bSuccess ? ERROR_SUCCESS :
1035 INTERNET_GetLastError();
1037 INTERNET_SendCallback(&lpwh->hdr, lpwh->hdr.dwContext,
1038 INTERNET_STATUS_REQUEST_COMPLETE, &iar,
1039 sizeof(INTERNET_ASYNC_RESULT));
1042 return bSuccess;
1046 /***********************************************************************
1047 * INTERNET_CloseHandle (internal)
1049 * Close internet handle
1051 * RETURNS
1052 * Void
1055 static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr)
1057 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW) hdr;
1059 TRACE("%p\n",lpwai);
1061 HeapFree(GetProcessHeap(), 0, lpwai->lpszAgent);
1062 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxy);
1063 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyBypass);
1064 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyUsername);
1065 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyPassword);
1066 HeapFree(GetProcessHeap(), 0, lpwai);
1070 /***********************************************************************
1071 * InternetCloseHandle (WININET.@)
1073 * Generic close handle function
1075 * RETURNS
1076 * TRUE on success
1077 * FALSE on failure
1080 BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
1082 LPWININETHANDLEHEADER lpwh;
1084 TRACE("%p\n",hInternet);
1086 lpwh = WININET_GetObject( hInternet );
1087 if (NULL == lpwh)
1089 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1090 return FALSE;
1093 /* FIXME: native appears to send this from the equivalent of
1094 * WININET_Release */
1095 INTERNET_SendCallback(lpwh, lpwh->dwContext,
1096 INTERNET_STATUS_HANDLE_CLOSING, &hInternet,
1097 sizeof(HINTERNET));
1099 if( lpwh->lpwhparent )
1100 WININET_Release( lpwh->lpwhparent );
1101 WININET_FreeHandle( hInternet );
1102 WININET_Release( lpwh );
1104 return TRUE;
1108 /***********************************************************************
1109 * ConvertUrlComponentValue (Internal)
1111 * Helper function for InternetCrackUrlW
1114 static void ConvertUrlComponentValue(LPSTR* lppszComponent, LPDWORD dwComponentLen,
1115 LPWSTR lpwszComponent, DWORD dwwComponentLen,
1116 LPCSTR lpszStart, LPCWSTR lpwszStart)
1118 TRACE("%p %d %p %d %p %p\n", lppszComponent, *dwComponentLen, lpwszComponent, dwwComponentLen, lpszStart, lpwszStart);
1119 if (*dwComponentLen != 0)
1121 DWORD nASCIILength=WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,NULL,0,NULL,NULL);
1122 if (*lppszComponent == NULL)
1124 int nASCIIOffset=WideCharToMultiByte(CP_ACP,0,lpwszStart,lpwszComponent-lpwszStart,NULL,0,NULL,NULL);
1125 if (lpwszComponent)
1126 *lppszComponent = (LPSTR)lpszStart+nASCIIOffset;
1127 else
1128 *lppszComponent = NULL;
1129 *dwComponentLen = nASCIILength;
1131 else
1133 DWORD ncpylen = min((*dwComponentLen)-1, nASCIILength);
1134 WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,*lppszComponent,ncpylen+1,NULL,NULL);
1135 (*lppszComponent)[ncpylen]=0;
1136 *dwComponentLen = ncpylen;
1142 /***********************************************************************
1143 * InternetCrackUrlA (WININET.@)
1145 * See InternetCrackUrlW.
1147 BOOL WINAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
1148 LPURL_COMPONENTSA lpUrlComponents)
1150 DWORD nLength;
1151 URL_COMPONENTSW UCW;
1152 WCHAR* lpwszUrl;
1154 TRACE("(%s %u %x %p)\n", debugstr_a(lpszUrl), dwUrlLength, dwFlags, lpUrlComponents);
1155 if(dwUrlLength<=0)
1156 dwUrlLength=-1;
1157 nLength=MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,NULL,0);
1159 /* if dwUrlLength=-1 then nLength includes null but length to
1160 InternetCrackUrlW should not include it */
1161 if (dwUrlLength == -1) nLength--;
1163 lpwszUrl=HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WCHAR)*nLength);
1164 MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,lpwszUrl,nLength);
1166 memset(&UCW,0,sizeof(UCW));
1167 if(lpUrlComponents->dwHostNameLength!=0)
1168 UCW.dwHostNameLength= lpUrlComponents->dwHostNameLength;
1169 if(lpUrlComponents->dwUserNameLength!=0)
1170 UCW.dwUserNameLength=lpUrlComponents->dwUserNameLength;
1171 if(lpUrlComponents->dwPasswordLength!=0)
1172 UCW.dwPasswordLength=lpUrlComponents->dwPasswordLength;
1173 if(lpUrlComponents->dwUrlPathLength!=0)
1174 UCW.dwUrlPathLength=lpUrlComponents->dwUrlPathLength;
1175 if(lpUrlComponents->dwSchemeLength!=0)
1176 UCW.dwSchemeLength=lpUrlComponents->dwSchemeLength;
1177 if(lpUrlComponents->dwExtraInfoLength!=0)
1178 UCW.dwExtraInfoLength=lpUrlComponents->dwExtraInfoLength;
1179 if(!InternetCrackUrlW(lpwszUrl,nLength,dwFlags,&UCW))
1181 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1182 return FALSE;
1185 ConvertUrlComponentValue(&lpUrlComponents->lpszHostName, &lpUrlComponents->dwHostNameLength,
1186 UCW.lpszHostName, UCW.dwHostNameLength,
1187 lpszUrl, lpwszUrl);
1188 ConvertUrlComponentValue(&lpUrlComponents->lpszUserName, &lpUrlComponents->dwUserNameLength,
1189 UCW.lpszUserName, UCW.dwUserNameLength,
1190 lpszUrl, lpwszUrl);
1191 ConvertUrlComponentValue(&lpUrlComponents->lpszPassword, &lpUrlComponents->dwPasswordLength,
1192 UCW.lpszPassword, UCW.dwPasswordLength,
1193 lpszUrl, lpwszUrl);
1194 ConvertUrlComponentValue(&lpUrlComponents->lpszUrlPath, &lpUrlComponents->dwUrlPathLength,
1195 UCW.lpszUrlPath, UCW.dwUrlPathLength,
1196 lpszUrl, lpwszUrl);
1197 ConvertUrlComponentValue(&lpUrlComponents->lpszScheme, &lpUrlComponents->dwSchemeLength,
1198 UCW.lpszScheme, UCW.dwSchemeLength,
1199 lpszUrl, lpwszUrl);
1200 ConvertUrlComponentValue(&lpUrlComponents->lpszExtraInfo, &lpUrlComponents->dwExtraInfoLength,
1201 UCW.lpszExtraInfo, UCW.dwExtraInfoLength,
1202 lpszUrl, lpwszUrl);
1203 lpUrlComponents->nScheme=UCW.nScheme;
1204 lpUrlComponents->nPort=UCW.nPort;
1205 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1207 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", lpszUrl,
1208 debugstr_an(lpUrlComponents->lpszScheme,lpUrlComponents->dwSchemeLength),
1209 debugstr_an(lpUrlComponents->lpszHostName,lpUrlComponents->dwHostNameLength),
1210 debugstr_an(lpUrlComponents->lpszUrlPath,lpUrlComponents->dwUrlPathLength),
1211 debugstr_an(lpUrlComponents->lpszExtraInfo,lpUrlComponents->dwExtraInfoLength));
1213 return TRUE;
1216 static const WCHAR url_schemes[][7] =
1218 {'f','t','p',0},
1219 {'g','o','p','h','e','r',0},
1220 {'h','t','t','p',0},
1221 {'h','t','t','p','s',0},
1222 {'f','i','l','e',0},
1223 {'n','e','w','s',0},
1224 {'m','a','i','l','t','o',0},
1225 {'r','e','s',0},
1228 /***********************************************************************
1229 * GetInternetSchemeW (internal)
1231 * Get scheme of url
1233 * RETURNS
1234 * scheme on success
1235 * INTERNET_SCHEME_UNKNOWN on failure
1238 static INTERNET_SCHEME GetInternetSchemeW(LPCWSTR lpszScheme, DWORD nMaxCmp)
1240 int i;
1242 TRACE("%s %d\n",debugstr_wn(lpszScheme, nMaxCmp), nMaxCmp);
1244 if(lpszScheme==NULL)
1245 return INTERNET_SCHEME_UNKNOWN;
1247 for (i = 0; i < sizeof(url_schemes)/sizeof(url_schemes[0]); i++)
1248 if (!strncmpW(lpszScheme, url_schemes[i], nMaxCmp))
1249 return INTERNET_SCHEME_FIRST + i;
1251 return INTERNET_SCHEME_UNKNOWN;
1254 /***********************************************************************
1255 * SetUrlComponentValueW (Internal)
1257 * Helper function for InternetCrackUrlW
1259 * PARAMS
1260 * lppszComponent [O] Holds the returned string
1261 * dwComponentLen [I] Holds the size of lppszComponent
1262 * [O] Holds the length of the string in lppszComponent without '\0'
1263 * lpszStart [I] Holds the string to copy from
1264 * len [I] Holds the length of lpszStart without '\0'
1266 * RETURNS
1267 * TRUE on success
1268 * FALSE on failure
1271 static BOOL SetUrlComponentValueW(LPWSTR* lppszComponent, LPDWORD dwComponentLen, LPCWSTR lpszStart, DWORD len)
1273 TRACE("%s (%d)\n", debugstr_wn(lpszStart,len), len);
1275 if ( (*dwComponentLen == 0) && (*lppszComponent == NULL) )
1276 return FALSE;
1278 if (*dwComponentLen != 0 || *lppszComponent == NULL)
1280 if (*lppszComponent == NULL)
1282 *lppszComponent = (LPWSTR)lpszStart;
1283 *dwComponentLen = len;
1285 else
1287 DWORD ncpylen = min((*dwComponentLen)-1, len);
1288 memcpy(*lppszComponent, lpszStart, ncpylen*sizeof(WCHAR));
1289 (*lppszComponent)[ncpylen] = '\0';
1290 *dwComponentLen = ncpylen;
1294 return TRUE;
1297 /***********************************************************************
1298 * InternetCrackUrlW (WININET.@)
1300 * Break up URL into its components
1302 * RETURNS
1303 * TRUE on success
1304 * FALSE on failure
1306 BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl_orig, DWORD dwUrlLength_orig, DWORD dwFlags,
1307 LPURL_COMPONENTSW lpUC)
1310 * RFC 1808
1311 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1314 LPCWSTR lpszParam = NULL;
1315 BOOL bIsAbsolute = FALSE;
1316 LPCWSTR lpszap, lpszUrl = lpszUrl_orig;
1317 LPCWSTR lpszcp = NULL;
1318 LPWSTR lpszUrl_decode = NULL;
1319 DWORD dwUrlLength = dwUrlLength_orig;
1320 const WCHAR lpszSeparators[3]={';','?',0};
1321 const WCHAR lpszSlash[2]={'/',0};
1322 if(dwUrlLength==0)
1323 dwUrlLength=strlenW(lpszUrl);
1325 TRACE("(%s %u %x %p)\n", debugstr_w(lpszUrl), dwUrlLength, dwFlags, lpUC);
1327 if (!lpszUrl_orig || !*lpszUrl_orig)
1329 SetLastError(ERROR_INVALID_PARAMETER);
1330 return FALSE;
1333 if (dwFlags & ICU_DECODE)
1335 lpszUrl_decode=HeapAlloc( GetProcessHeap(), 0, dwUrlLength * sizeof (WCHAR) );
1336 if( InternetCanonicalizeUrlW(lpszUrl_orig, lpszUrl_decode, &dwUrlLength, dwFlags))
1338 lpszUrl = lpszUrl_decode;
1341 lpszap = lpszUrl;
1343 /* Determine if the URI is absolute. */
1344 while (*lpszap != '\0')
1346 if (isalnumW(*lpszap))
1348 lpszap++;
1349 continue;
1351 if ((*lpszap == ':') && (lpszap - lpszUrl >= 2))
1353 bIsAbsolute = TRUE;
1354 lpszcp = lpszap;
1356 else
1358 lpszcp = lpszUrl; /* Relative url */
1361 break;
1364 lpUC->nScheme = INTERNET_SCHEME_UNKNOWN;
1365 lpUC->nPort = INTERNET_INVALID_PORT_NUMBER;
1367 /* Parse <params> */
1368 lpszParam = strpbrkW(lpszap, lpszSeparators);
1369 SetUrlComponentValueW(&lpUC->lpszExtraInfo, &lpUC->dwExtraInfoLength,
1370 lpszParam, lpszParam ? dwUrlLength-(lpszParam-lpszUrl) : 0);
1372 if (bIsAbsolute) /* Parse <protocol>:[//<net_loc>] */
1374 LPCWSTR lpszNetLoc;
1376 /* Get scheme first. */
1377 lpUC->nScheme = GetInternetSchemeW(lpszUrl, lpszcp - lpszUrl);
1378 SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength,
1379 lpszUrl, lpszcp - lpszUrl);
1381 /* Eat ':' in protocol. */
1382 lpszcp++;
1384 /* double slash indicates the net_loc portion is present */
1385 if ((lpszcp[0] == '/') && (lpszcp[1] == '/'))
1387 lpszcp += 2;
1389 lpszNetLoc = strpbrkW(lpszcp, lpszSlash);
1390 if (lpszParam)
1392 if (lpszNetLoc)
1393 lpszNetLoc = min(lpszNetLoc, lpszParam);
1394 else
1395 lpszNetLoc = lpszParam;
1397 else if (!lpszNetLoc)
1398 lpszNetLoc = lpszcp + dwUrlLength-(lpszcp-lpszUrl);
1400 /* Parse net-loc */
1401 if (lpszNetLoc)
1403 LPCWSTR lpszHost;
1404 LPCWSTR lpszPort;
1406 /* [<user>[<:password>]@]<host>[:<port>] */
1407 /* First find the user and password if they exist */
1409 lpszHost = strchrW(lpszcp, '@');
1410 if (lpszHost == NULL || lpszHost > lpszNetLoc)
1412 /* username and password not specified. */
1413 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1414 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1416 else /* Parse out username and password */
1418 LPCWSTR lpszUser = lpszcp;
1419 LPCWSTR lpszPasswd = lpszHost;
1421 while (lpszcp < lpszHost)
1423 if (*lpszcp == ':')
1424 lpszPasswd = lpszcp;
1426 lpszcp++;
1429 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength,
1430 lpszUser, lpszPasswd - lpszUser);
1432 if (lpszPasswd != lpszHost)
1433 lpszPasswd++;
1434 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength,
1435 lpszPasswd == lpszHost ? NULL : lpszPasswd,
1436 lpszHost - lpszPasswd);
1438 lpszcp++; /* Advance to beginning of host */
1441 /* Parse <host><:port> */
1443 lpszHost = lpszcp;
1444 lpszPort = lpszNetLoc;
1446 /* special case for res:// URLs: there is no port here, so the host is the
1447 entire string up to the first '/' */
1448 if(lpUC->nScheme==INTERNET_SCHEME_RES)
1450 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1451 lpszHost, lpszPort - lpszHost);
1452 lpszcp=lpszNetLoc;
1454 else
1456 while (lpszcp < lpszNetLoc)
1458 if (*lpszcp == ':')
1459 lpszPort = lpszcp;
1461 lpszcp++;
1464 /* If the scheme is "file" and the host is just one letter, it's not a host */
1465 if(lpUC->nScheme==INTERNET_SCHEME_FILE && (lpszPort-lpszHost)==1)
1467 lpszcp=lpszHost;
1468 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1469 NULL, 0);
1471 else
1473 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1474 lpszHost, lpszPort - lpszHost);
1475 if (lpszPort != lpszNetLoc)
1476 lpUC->nPort = atoiW(++lpszPort);
1477 else switch (lpUC->nScheme)
1479 case INTERNET_SCHEME_HTTP:
1480 lpUC->nPort = INTERNET_DEFAULT_HTTP_PORT;
1481 break;
1482 case INTERNET_SCHEME_HTTPS:
1483 lpUC->nPort = INTERNET_DEFAULT_HTTPS_PORT;
1484 break;
1485 case INTERNET_SCHEME_FTP:
1486 lpUC->nPort = INTERNET_DEFAULT_FTP_PORT;
1487 break;
1488 case INTERNET_SCHEME_GOPHER:
1489 lpUC->nPort = INTERNET_DEFAULT_GOPHER_PORT;
1490 break;
1491 default:
1492 break;
1498 else
1500 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1501 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1502 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1505 else
1507 SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength, NULL, 0);
1508 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1509 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1510 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1513 /* Here lpszcp points to:
1515 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1516 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1518 if (lpszcp != 0 && *lpszcp != '\0' && (!lpszParam || lpszcp < lpszParam))
1520 INT len;
1522 /* Only truncate the parameter list if it's already been saved
1523 * in lpUC->lpszExtraInfo.
1525 if (lpszParam && lpUC->dwExtraInfoLength && lpUC->lpszExtraInfo)
1526 len = lpszParam - lpszcp;
1527 else
1529 /* Leave the parameter list in lpszUrlPath. Strip off any trailing
1530 * newlines if necessary.
1532 LPWSTR lpsznewline = strchrW(lpszcp, '\n');
1533 if (lpsznewline != NULL)
1534 len = lpsznewline - lpszcp;
1535 else
1536 len = dwUrlLength-(lpszcp-lpszUrl);
1538 SetUrlComponentValueW(&lpUC->lpszUrlPath, &lpUC->dwUrlPathLength,
1539 lpszcp, len);
1541 else
1543 lpUC->dwUrlPathLength = 0;
1546 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl,dwUrlLength),
1547 debugstr_wn(lpUC->lpszScheme,lpUC->dwSchemeLength),
1548 debugstr_wn(lpUC->lpszHostName,lpUC->dwHostNameLength),
1549 debugstr_wn(lpUC->lpszUrlPath,lpUC->dwUrlPathLength),
1550 debugstr_wn(lpUC->lpszExtraInfo,lpUC->dwExtraInfoLength));
1552 HeapFree(GetProcessHeap(), 0, lpszUrl_decode );
1553 return TRUE;
1556 /***********************************************************************
1557 * InternetAttemptConnect (WININET.@)
1559 * Attempt to make a connection to the internet
1561 * RETURNS
1562 * ERROR_SUCCESS on success
1563 * Error value on failure
1566 DWORD WINAPI InternetAttemptConnect(DWORD dwReserved)
1568 FIXME("Stub\n");
1569 return ERROR_SUCCESS;
1573 /***********************************************************************
1574 * InternetCanonicalizeUrlA (WININET.@)
1576 * Escape unsafe characters and spaces
1578 * RETURNS
1579 * TRUE on success
1580 * FALSE on failure
1583 BOOL WINAPI InternetCanonicalizeUrlA(LPCSTR lpszUrl, LPSTR lpszBuffer,
1584 LPDWORD lpdwBufferLength, DWORD dwFlags)
1586 HRESULT hr;
1587 DWORD dwURLFlags= 0x80000000; /* Don't know what this means */
1588 if(dwFlags & ICU_DECODE)
1590 dwURLFlags |= URL_UNESCAPE;
1591 dwFlags &= ~ICU_DECODE;
1594 if(dwFlags & ICU_ESCAPE)
1596 dwURLFlags |= URL_UNESCAPE;
1597 dwFlags &= ~ICU_ESCAPE;
1599 if(dwFlags & ICU_BROWSER_MODE)
1601 dwURLFlags |= URL_BROWSER_MODE;
1602 dwFlags &= ~ICU_BROWSER_MODE;
1604 if(dwFlags)
1605 FIXME("Unhandled flags 0x%08x\n", dwFlags);
1606 TRACE("%s %p %p %08x\n", debugstr_a(lpszUrl), lpszBuffer,
1607 lpdwBufferLength, dwURLFlags);
1609 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1610 dwFlags ^= ICU_NO_ENCODE;
1612 hr = UrlCanonicalizeA(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1614 return (hr == S_OK) ? TRUE : FALSE;
1617 /***********************************************************************
1618 * InternetCanonicalizeUrlW (WININET.@)
1620 * Escape unsafe characters and spaces
1622 * RETURNS
1623 * TRUE on success
1624 * FALSE on failure
1627 BOOL WINAPI InternetCanonicalizeUrlW(LPCWSTR lpszUrl, LPWSTR lpszBuffer,
1628 LPDWORD lpdwBufferLength, DWORD dwFlags)
1630 HRESULT hr;
1631 DWORD dwURLFlags= 0x80000000; /* Don't know what this means */
1632 if(dwFlags & ICU_DECODE)
1634 dwURLFlags |= URL_UNESCAPE;
1635 dwFlags &= ~ICU_DECODE;
1638 if(dwFlags & ICU_ESCAPE)
1640 dwURLFlags |= URL_UNESCAPE;
1641 dwFlags &= ~ICU_ESCAPE;
1643 if(dwFlags & ICU_BROWSER_MODE)
1645 dwURLFlags |= URL_BROWSER_MODE;
1646 dwFlags &= ~ICU_BROWSER_MODE;
1648 if(dwFlags)
1649 FIXME("Unhandled flags 0x%08x\n", dwFlags);
1650 TRACE("%s %p %p %08x\n", debugstr_w(lpszUrl), lpszBuffer,
1651 lpdwBufferLength, dwURLFlags);
1653 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1654 dwFlags ^= ICU_NO_ENCODE;
1656 hr = UrlCanonicalizeW(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1658 return (hr == S_OK) ? TRUE : FALSE;
1662 /***********************************************************************
1663 * InternetSetStatusCallbackA (WININET.@)
1665 * Sets up a callback function which is called as progress is made
1666 * during an operation.
1668 * RETURNS
1669 * Previous callback or NULL on success
1670 * INTERNET_INVALID_STATUS_CALLBACK on failure
1673 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackA(
1674 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1676 INTERNET_STATUS_CALLBACK retVal;
1677 LPWININETHANDLEHEADER lpwh;
1679 TRACE("0x%08x\n", (ULONG)hInternet);
1681 lpwh = WININET_GetObject(hInternet);
1682 if (!lpwh)
1683 return INTERNET_INVALID_STATUS_CALLBACK;
1685 lpwh->dwInternalFlags &= ~INET_CALLBACKW;
1686 retVal = lpwh->lpfnStatusCB;
1687 lpwh->lpfnStatusCB = lpfnIntCB;
1689 WININET_Release( lpwh );
1691 return retVal;
1694 /***********************************************************************
1695 * InternetSetStatusCallbackW (WININET.@)
1697 * Sets up a callback function which is called as progress is made
1698 * during an operation.
1700 * RETURNS
1701 * Previous callback or NULL on success
1702 * INTERNET_INVALID_STATUS_CALLBACK on failure
1705 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackW(
1706 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1708 INTERNET_STATUS_CALLBACK retVal;
1709 LPWININETHANDLEHEADER lpwh;
1711 TRACE("0x%08x\n", (ULONG)hInternet);
1713 lpwh = WININET_GetObject(hInternet);
1714 if (!lpwh)
1715 return INTERNET_INVALID_STATUS_CALLBACK;
1717 lpwh->dwInternalFlags |= INET_CALLBACKW;
1718 retVal = lpwh->lpfnStatusCB;
1719 lpwh->lpfnStatusCB = lpfnIntCB;
1721 WININET_Release( lpwh );
1723 return retVal;
1726 /***********************************************************************
1727 * InternetSetFilePointer (WININET.@)
1729 DWORD WINAPI InternetSetFilePointer(HINTERNET hFile, LONG lDistanceToMove,
1730 PVOID pReserved, DWORD dwMoveContext, DWORD dwContext)
1732 FIXME("stub\n");
1733 return FALSE;
1736 /***********************************************************************
1737 * InternetWriteFile (WININET.@)
1739 * Write data to an open internet file
1741 * RETURNS
1742 * TRUE on success
1743 * FALSE on failure
1746 BOOL WINAPI InternetWriteFile(HINTERNET hFile, LPCVOID lpBuffer ,
1747 DWORD dwNumOfBytesToWrite, LPDWORD lpdwNumOfBytesWritten)
1749 BOOL retval = FALSE;
1750 int nSocket = -1;
1751 LPWININETHANDLEHEADER lpwh;
1753 TRACE("\n");
1754 lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1755 if (NULL == lpwh)
1756 return FALSE;
1758 switch (lpwh->htype)
1760 case WH_HHTTPREQ:
1762 LPWININETHTTPREQW lpwhr;
1763 lpwhr = (LPWININETHTTPREQW)lpwh;
1765 TRACE("HTTPREQ %i\n",dwNumOfBytesToWrite);
1766 retval = NETCON_send(&lpwhr->netConnection, lpBuffer,
1767 dwNumOfBytesToWrite, 0, (LPINT)lpdwNumOfBytesWritten);
1769 WININET_Release( lpwh );
1770 return retval;
1772 break;
1774 case WH_HFILE:
1775 nSocket = ((LPWININETFILE)lpwh)->nDataSocket;
1776 break;
1778 default:
1779 break;
1782 if (nSocket != -1)
1784 int res = send(nSocket, lpBuffer, dwNumOfBytesToWrite, 0);
1785 retval = (res >= 0);
1786 *lpdwNumOfBytesWritten = retval ? res : 0;
1788 WININET_Release( lpwh );
1790 return retval;
1794 static BOOL INTERNET_ReadFile(LPWININETHANDLEHEADER lpwh, LPVOID lpBuffer,
1795 DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead,
1796 BOOL bWait, BOOL bSendCompletionStatus)
1798 BOOL retval = FALSE;
1799 int nSocket = -1;
1801 /* FIXME: this should use NETCON functions! */
1802 switch (lpwh->htype)
1804 case WH_HHTTPREQ:
1805 if (!NETCON_recv(&((LPWININETHTTPREQW)lpwh)->netConnection, lpBuffer,
1806 dwNumOfBytesToRead, bWait ? MSG_WAITALL : 0, (int *)pdwNumOfBytesRead))
1808 *pdwNumOfBytesRead = 0;
1809 retval = TRUE; /* Under windows, it seems to return 0 even if nothing was read... */
1811 else
1812 retval = TRUE;
1813 break;
1815 case WH_HFILE:
1816 /* FIXME: FTP should use NETCON_ stuff */
1817 nSocket = ((LPWININETFILE)lpwh)->nDataSocket;
1818 if (nSocket != -1)
1820 int res = recv(nSocket, lpBuffer, dwNumOfBytesToRead, bWait ? MSG_WAITALL : 0);
1821 retval = (res >= 0);
1822 *pdwNumOfBytesRead = retval ? res : 0;
1824 break;
1826 default:
1827 break;
1830 if (bSendCompletionStatus)
1832 INTERNET_ASYNC_RESULT iar;
1834 iar.dwResult = retval;
1835 iar.dwError = iar.dwError = retval ? ERROR_SUCCESS :
1836 INTERNET_GetLastError();
1838 INTERNET_SendCallback(lpwh, lpwh->dwContext,
1839 INTERNET_STATUS_REQUEST_COMPLETE, &iar,
1840 sizeof(INTERNET_ASYNC_RESULT));
1842 return retval;
1845 /***********************************************************************
1846 * InternetReadFile (WININET.@)
1848 * Read data from an open internet file
1850 * RETURNS
1851 * TRUE on success
1852 * FALSE on failure
1855 BOOL WINAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer,
1856 DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead)
1858 LPWININETHANDLEHEADER lpwh;
1859 BOOL retval;
1861 TRACE("%p %p %d %p\n", hFile, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead);
1863 lpwh = WININET_GetObject( hFile );
1864 if (!lpwh)
1866 SetLastError(ERROR_INVALID_HANDLE);
1867 return FALSE;
1870 retval = INTERNET_ReadFile(lpwh, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead, TRUE, FALSE);
1871 WININET_Release( lpwh );
1873 TRACE("-- %s (bytes read: %d)\n", retval ? "TRUE": "FALSE", pdwNumOfBytesRead ? *pdwNumOfBytesRead : -1);
1874 return retval;
1877 /***********************************************************************
1878 * InternetReadFileExA (WININET.@)
1880 * Read data from an open internet file
1882 * PARAMS
1883 * hFile [I] Handle returned by InternetOpenUrl or HttpOpenRequest.
1884 * lpBuffersOut [I/O] Buffer.
1885 * dwFlags [I] Flags. See notes.
1886 * dwContext [I] Context for callbacks.
1888 * RETURNS
1889 * TRUE on success
1890 * FALSE on failure
1892 * NOTES
1893 * The parameter dwFlags include zero or more of the following flags:
1894 *|IRF_ASYNC - Makes the call asynchronous.
1895 *|IRF_SYNC - Makes the call synchronous.
1896 *|IRF_USE_CONTEXT - Forces dwContext to be used.
1897 *|IRF_NO_WAIT - Don't block if the data is not available, just return what is available.
1899 * However, in testing IRF_USE_CONTEXT seems to have no effect - dwContext isn't used.
1901 * SEE
1902 * InternetOpenUrlA(), HttpOpenRequestA()
1904 BOOL WINAPI InternetReadFileExA(HINTERNET hFile, LPINTERNET_BUFFERSA lpBuffersOut,
1905 DWORD dwFlags, DWORD dwContext)
1907 BOOL retval = FALSE;
1908 LPWININETHANDLEHEADER lpwh;
1910 TRACE("(%p %p 0x%x 0x%x)\n", hFile, lpBuffersOut, dwFlags, dwContext);
1912 if (dwFlags & ~(IRF_ASYNC|IRF_NO_WAIT))
1913 FIXME("these dwFlags aren't implemented: 0x%x\n", dwFlags & ~(IRF_ASYNC|IRF_NO_WAIT));
1915 if (lpBuffersOut->dwStructSize != sizeof(*lpBuffersOut))
1917 SetLastError(ERROR_INVALID_PARAMETER);
1918 return FALSE;
1921 lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1922 if (!lpwh)
1924 SetLastError(ERROR_INVALID_HANDLE);
1925 return FALSE;
1928 /* FIXME: native only does it asynchronously if the amount of data
1929 * requested isn't available. See NtReadFile. */
1930 /* FIXME: IRF_ASYNC may not be the right thing to test here;
1931 * hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC is probably better, but
1932 * we should implement the above first */
1933 if (dwFlags & IRF_ASYNC)
1935 WORKREQUEST workRequest;
1936 struct WORKREQ_INTERNETREADFILEEXA *req;
1938 workRequest.asyncall = INTERNETREADFILEEXA;
1939 workRequest.hdr = WININET_AddRef( lpwh );
1940 req = &workRequest.u.InternetReadFileExA;
1941 req->lpBuffersOut = lpBuffersOut;
1943 retval = INTERNET_AsyncCall(&workRequest);
1944 if (!retval) return FALSE;
1946 SetLastError(ERROR_IO_PENDING);
1947 return FALSE;
1950 retval = INTERNET_ReadFile(lpwh, lpBuffersOut->lpvBuffer,
1951 lpBuffersOut->dwBufferLength, &lpBuffersOut->dwBufferLength,
1952 !(dwFlags & IRF_NO_WAIT), FALSE);
1954 WININET_Release( lpwh );
1956 TRACE("-- %s (bytes read: %d)\n", retval ? "TRUE": "FALSE", lpBuffersOut->dwBufferLength);
1957 return retval;
1960 /***********************************************************************
1961 * InternetReadFileExW (WININET.@)
1963 * Read data from an open internet file.
1965 * PARAMS
1966 * hFile [I] Handle returned by InternetOpenUrl() or HttpOpenRequest().
1967 * lpBuffersOut [I/O] Buffer.
1968 * dwFlags [I] Flags.
1969 * dwContext [I] Context for callbacks.
1971 * RETURNS
1972 * FALSE, last error is set to ERROR_CALL_NOT_IMPLEMENTED
1974 * NOTES
1975 * Not implemented in Wine or native either (as of IE6 SP2).
1978 BOOL WINAPI InternetReadFileExW(HINTERNET hFile, LPINTERNET_BUFFERSW lpBuffer,
1979 DWORD dwFlags, DWORD dwContext)
1981 ERR("(%p, %p, 0x%x, 0x%x): not implemented in native\n", hFile, lpBuffer, dwFlags, dwContext);
1983 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1984 return FALSE;
1987 /***********************************************************************
1988 * INET_QueryOptionHelper (internal)
1990 static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD dwOption,
1991 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
1993 LPWININETHANDLEHEADER lpwhh;
1994 BOOL bSuccess = FALSE;
1996 TRACE("(%p, 0x%08x, %p, %p)\n", hInternet, dwOption, lpBuffer, lpdwBufferLength);
1998 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
1999 if (!lpwhh)
2001 SetLastError(ERROR_INVALID_PARAMETER);
2002 return FALSE;
2005 switch (dwOption)
2007 case INTERNET_OPTION_HANDLE_TYPE:
2009 ULONG type;
2011 if (!lpwhh)
2013 WARN("Invalid hInternet handle\n");
2014 SetLastError(ERROR_INVALID_HANDLE);
2015 return FALSE;
2018 type = lpwhh->htype;
2020 TRACE("INTERNET_OPTION_HANDLE_TYPE: %d\n", type);
2022 if (*lpdwBufferLength < sizeof(ULONG))
2023 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2024 else
2026 memcpy(lpBuffer, &type, sizeof(ULONG));
2027 bSuccess = TRUE;
2029 *lpdwBufferLength = sizeof(ULONG);
2030 break;
2033 case INTERNET_OPTION_REQUEST_FLAGS:
2035 ULONG flags = 4;
2036 TRACE("INTERNET_OPTION_REQUEST_FLAGS: %d\n", flags);
2037 if (*lpdwBufferLength < sizeof(ULONG))
2038 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2039 else
2041 memcpy(lpBuffer, &flags, sizeof(ULONG));
2042 bSuccess = TRUE;
2044 *lpdwBufferLength = sizeof(ULONG);
2045 break;
2048 case INTERNET_OPTION_URL:
2049 case INTERNET_OPTION_DATAFILE_NAME:
2051 if (!lpwhh)
2053 WARN("Invalid hInternet handle\n");
2054 SetLastError(ERROR_INVALID_HANDLE);
2055 return FALSE;
2057 if (lpwhh->htype == WH_HHTTPREQ)
2059 LPWININETHTTPREQW lpreq = (LPWININETHTTPREQW) lpwhh;
2060 WCHAR url[1023];
2061 static const WCHAR szFmt[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
2062 static const WCHAR szHost[] = {'H','o','s','t',0};
2063 DWORD sizeRequired;
2064 LPHTTPHEADERW Host;
2066 Host = HTTP_GetHeader(lpreq,szHost);
2067 sprintfW(url,szFmt,Host->lpszValue,lpreq->lpszPath);
2068 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url));
2069 if(!bIsUnicode)
2071 sizeRequired = WideCharToMultiByte(CP_ACP,0,url,-1,
2072 lpBuffer,*lpdwBufferLength,NULL,NULL);
2073 if (sizeRequired > *lpdwBufferLength)
2074 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2075 else
2076 bSuccess = TRUE;
2077 *lpdwBufferLength = sizeRequired;
2079 else
2081 sizeRequired = (lstrlenW(url)+1) * sizeof(WCHAR);
2082 if (*lpdwBufferLength < sizeRequired)
2083 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2084 else
2086 strcpyW(lpBuffer, url);
2087 bSuccess = TRUE;
2089 *lpdwBufferLength = sizeRequired;
2092 break;
2094 case INTERNET_OPTION_HTTP_VERSION:
2096 if (*lpdwBufferLength < sizeof(HTTP_VERSION_INFO))
2097 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2098 else
2101 * Presently hardcoded to 1.1
2103 ((HTTP_VERSION_INFO*)lpBuffer)->dwMajorVersion = 1;
2104 ((HTTP_VERSION_INFO*)lpBuffer)->dwMinorVersion = 1;
2105 bSuccess = TRUE;
2107 *lpdwBufferLength = sizeof(HTTP_VERSION_INFO);
2108 break;
2110 case INTERNET_OPTION_CONNECTED_STATE:
2112 DWORD *pdwConnectedState = (DWORD *)lpBuffer;
2113 FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
2115 if (*lpdwBufferLength < sizeof(*pdwConnectedState))
2116 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2117 else
2119 *pdwConnectedState = INTERNET_STATE_CONNECTED;
2120 bSuccess = TRUE;
2122 *lpdwBufferLength = sizeof(*pdwConnectedState);
2123 break;
2125 case INTERNET_OPTION_PROXY:
2127 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW)lpwhh;
2128 WININETAPPINFOW wai;
2130 if (lpwai == NULL)
2132 TRACE("Getting global proxy info\n");
2133 memset(&wai, 0, sizeof(WININETAPPINFOW));
2134 INTERNET_ConfigureProxyFromReg( &wai );
2135 lpwai = &wai;
2138 if (bIsUnicode)
2140 INTERNET_PROXY_INFOW *pPI = (INTERNET_PROXY_INFOW *)lpBuffer;
2141 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
2143 if (lpwai->lpszProxy)
2144 proxyBytesRequired = (lstrlenW(lpwai->lpszProxy) + 1) *
2145 sizeof(WCHAR);
2146 if (lpwai->lpszProxyBypass)
2147 proxyBypassBytesRequired =
2148 (lstrlenW(lpwai->lpszProxyBypass) + 1) * sizeof(WCHAR);
2149 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOW) +
2150 proxyBytesRequired + proxyBypassBytesRequired)
2151 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2152 else
2154 pPI->dwAccessType = lpwai->dwAccessType;
2155 if (lpwai->lpszProxy)
2157 pPI->lpszProxy = (LPWSTR)((LPBYTE)lpBuffer +
2158 sizeof(INTERNET_PROXY_INFOW));
2159 lstrcpyW((LPWSTR)pPI->lpszProxy, lpwai->lpszProxy);
2161 else
2163 pPI->lpszProxy = (LPWSTR)((LPBYTE)lpBuffer +
2164 sizeof(INTERNET_PROXY_INFOW));
2165 *((LPWSTR)(pPI->lpszProxy)) = 0;
2168 if (lpwai->lpszProxyBypass)
2170 pPI->lpszProxyBypass = (LPWSTR)((LPBYTE)lpBuffer +
2171 sizeof(INTERNET_PROXY_INFOW) +
2172 proxyBytesRequired);
2173 lstrcpyW((LPWSTR)pPI->lpszProxyBypass,
2174 lpwai->lpszProxyBypass);
2176 else
2178 pPI->lpszProxyBypass = (LPWSTR)((LPBYTE)lpBuffer +
2179 sizeof(INTERNET_PROXY_INFOW) +
2180 proxyBytesRequired);
2181 *((LPWSTR)(pPI->lpszProxyBypass)) = 0;
2183 bSuccess = TRUE;
2185 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOW) +
2186 proxyBytesRequired + proxyBypassBytesRequired;
2188 else
2190 INTERNET_PROXY_INFOA *pPI = (INTERNET_PROXY_INFOA *)lpBuffer;
2191 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
2193 if (lpwai->lpszProxy)
2194 proxyBytesRequired = WideCharToMultiByte(CP_ACP, 0,
2195 lpwai->lpszProxy, -1, NULL, 0, NULL, NULL);
2196 if (lpwai->lpszProxyBypass)
2197 proxyBypassBytesRequired = WideCharToMultiByte(CP_ACP, 0,
2198 lpwai->lpszProxyBypass, -1, NULL, 0, NULL, NULL);
2199 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOA) +
2200 proxyBytesRequired + proxyBypassBytesRequired)
2201 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2202 else
2204 pPI->dwAccessType = lpwai->dwAccessType;
2205 if (lpwai->lpszProxy)
2207 pPI->lpszProxy = (LPSTR)((LPBYTE)lpBuffer +
2208 sizeof(INTERNET_PROXY_INFOA));
2209 WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxy, -1,
2210 (LPSTR)pPI->lpszProxy, proxyBytesRequired, NULL, NULL);
2212 else
2214 pPI->lpszProxy = (LPSTR)((LPBYTE)lpBuffer +
2215 sizeof(INTERNET_PROXY_INFOA));
2216 *((LPSTR)(pPI->lpszProxy)) = '\0';
2219 if (lpwai->lpszProxyBypass)
2221 pPI->lpszProxyBypass = (LPSTR)((LPBYTE)lpBuffer +
2222 sizeof(INTERNET_PROXY_INFOA) + proxyBytesRequired);
2223 WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxyBypass,
2224 -1, (LPSTR)pPI->lpszProxyBypass,
2225 proxyBypassBytesRequired,
2226 NULL, NULL);
2228 else
2230 pPI->lpszProxyBypass = (LPSTR)((LPBYTE)lpBuffer +
2231 sizeof(INTERNET_PROXY_INFOA) +
2232 proxyBytesRequired);
2233 *((LPSTR)(pPI->lpszProxyBypass)) = '\0';
2235 bSuccess = TRUE;
2237 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOA) +
2238 proxyBytesRequired + proxyBypassBytesRequired;
2240 break;
2242 case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
2244 ULONG conn = 2;
2245 TRACE("INTERNET_OPTION_MAX_CONNS_PER_SERVER: %d\n", conn);
2246 if (*lpdwBufferLength < sizeof(ULONG))
2247 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2248 else
2250 memcpy(lpBuffer, &conn, sizeof(ULONG));
2251 bSuccess = TRUE;
2253 *lpdwBufferLength = sizeof(ULONG);
2254 break;
2256 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
2258 ULONG conn = 4;
2259 TRACE("INTERNET_OPTION_MAX_CONNS_1_0_SERVER: %d\n", conn);
2260 if (*lpdwBufferLength < sizeof(ULONG))
2261 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2262 else
2264 memcpy(lpBuffer, &conn, sizeof(ULONG));
2265 bSuccess = TRUE;
2267 *lpdwBufferLength = sizeof(ULONG);
2268 break;
2270 case INTERNET_OPTION_SECURITY_FLAGS:
2271 FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
2272 break;
2274 case INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT:
2275 if (*lpdwBufferLength < sizeof(INTERNET_CERTIFICATE_INFOW))
2277 *lpdwBufferLength = sizeof(INTERNET_CERTIFICATE_INFOW);
2278 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2280 else if (lpwhh->htype == WH_HHTTPREQ)
2282 LPWININETHTTPREQW lpwhr;
2283 PCCERT_CONTEXT context;
2285 lpwhr = (LPWININETHTTPREQW)lpwhh;
2286 context = (PCCERT_CONTEXT)NETCON_GetCert(&(lpwhr->netConnection));
2287 if (context)
2289 LPINTERNET_CERTIFICATE_INFOW info = (LPINTERNET_CERTIFICATE_INFOW)lpBuffer;
2290 DWORD strLen;
2292 memset(info,0,sizeof(INTERNET_CERTIFICATE_INFOW));
2293 info->ftExpiry = context->pCertInfo->NotAfter;
2294 info->ftStart = context->pCertInfo->NotBefore;
2295 if (bIsUnicode)
2297 strLen = CertNameToStrW(context->dwCertEncodingType,
2298 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2299 NULL, 0);
2300 info->lpszSubjectInfo = LocalAlloc(0,
2301 strLen * sizeof(WCHAR));
2302 if (info->lpszSubjectInfo)
2303 CertNameToStrW(context->dwCertEncodingType,
2304 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2305 info->lpszSubjectInfo, strLen);
2306 strLen = CertNameToStrW(context->dwCertEncodingType,
2307 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2308 NULL, 0);
2309 info->lpszIssuerInfo = LocalAlloc(0,
2310 strLen * sizeof(WCHAR));
2311 if (info->lpszIssuerInfo)
2312 CertNameToStrW(context->dwCertEncodingType,
2313 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2314 info->lpszIssuerInfo, strLen);
2316 else
2318 LPINTERNET_CERTIFICATE_INFOA infoA =
2319 (LPINTERNET_CERTIFICATE_INFOA)info;
2321 strLen = CertNameToStrA(context->dwCertEncodingType,
2322 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2323 NULL, 0);
2324 infoA->lpszSubjectInfo = LocalAlloc(0, strLen);
2325 if (infoA->lpszSubjectInfo)
2326 CertNameToStrA(context->dwCertEncodingType,
2327 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2328 infoA->lpszSubjectInfo, strLen);
2329 strLen = CertNameToStrA(context->dwCertEncodingType,
2330 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2331 NULL, 0);
2332 infoA->lpszIssuerInfo = LocalAlloc(0, strLen);
2333 if (infoA->lpszIssuerInfo)
2334 CertNameToStrA(context->dwCertEncodingType,
2335 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2336 infoA->lpszIssuerInfo, strLen);
2339 * Contrary to MSDN, these do not appear to be set.
2340 * lpszProtocolName
2341 * lpszSignatureAlgName
2342 * lpszEncryptionAlgName
2343 * dwKeySize
2345 CertFreeCertificateContext(context);
2346 bSuccess = TRUE;
2349 break;
2350 default:
2351 FIXME("Stub! %d\n", dwOption);
2352 break;
2354 if (lpwhh)
2355 WININET_Release( lpwhh );
2357 return bSuccess;
2360 /***********************************************************************
2361 * InternetQueryOptionW (WININET.@)
2363 * Queries an options on the specified handle
2365 * RETURNS
2366 * TRUE on success
2367 * FALSE on failure
2370 BOOL WINAPI InternetQueryOptionW(HINTERNET hInternet, DWORD dwOption,
2371 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2373 return INET_QueryOptionHelper(TRUE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2376 /***********************************************************************
2377 * InternetQueryOptionA (WININET.@)
2379 * Queries an options on the specified handle
2381 * RETURNS
2382 * TRUE on success
2383 * FALSE on failure
2386 BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
2387 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2389 return INET_QueryOptionHelper(FALSE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2393 /***********************************************************************
2394 * InternetSetOptionW (WININET.@)
2396 * Sets an options on the specified handle
2398 * RETURNS
2399 * TRUE on success
2400 * FALSE on failure
2403 BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
2404 LPVOID lpBuffer, DWORD dwBufferLength)
2406 LPWININETHANDLEHEADER lpwhh;
2407 BOOL ret = TRUE;
2409 TRACE("0x%08x\n", dwOption);
2411 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
2412 if( !lpwhh )
2413 return FALSE;
2415 switch (dwOption)
2417 case INTERNET_OPTION_HTTP_VERSION:
2419 HTTP_VERSION_INFO* pVersion=(HTTP_VERSION_INFO*)lpBuffer;
2420 FIXME("Option INTERNET_OPTION_HTTP_VERSION(%d,%d): STUB\n",pVersion->dwMajorVersion,pVersion->dwMinorVersion);
2422 break;
2423 case INTERNET_OPTION_ERROR_MASK:
2425 unsigned long flags=*(unsigned long*)lpBuffer;
2426 FIXME("Option INTERNET_OPTION_ERROR_MASK(%ld): STUB\n",flags);
2428 break;
2429 case INTERNET_OPTION_CODEPAGE:
2431 unsigned long codepage=*(unsigned long*)lpBuffer;
2432 FIXME("Option INTERNET_OPTION_CODEPAGE (%ld): STUB\n",codepage);
2434 break;
2435 case INTERNET_OPTION_REQUEST_PRIORITY:
2437 unsigned long priority=*(unsigned long*)lpBuffer;
2438 FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%ld): STUB\n",priority);
2440 break;
2441 case INTERNET_OPTION_CONNECT_TIMEOUT:
2443 unsigned long connecttimeout=*(unsigned long*)lpBuffer;
2444 FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%ld): STUB\n",connecttimeout);
2446 break;
2447 case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT:
2449 unsigned long receivetimeout=*(unsigned long*)lpBuffer;
2450 FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%ld): STUB\n",receivetimeout);
2452 break;
2453 case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
2455 unsigned long conns=*(unsigned long*)lpBuffer;
2456 FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_SERVER (%ld): STUB\n",conns);
2458 break;
2459 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
2461 unsigned long conns=*(unsigned long*)lpBuffer;
2462 FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER (%ld): STUB\n",conns);
2464 break;
2465 case INTERNET_OPTION_RESET_URLCACHE_SESSION:
2466 FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
2467 break;
2468 case INTERNET_OPTION_END_BROWSER_SESSION:
2469 FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
2470 break;
2471 case INTERNET_OPTION_CONNECTED_STATE:
2472 FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
2473 break;
2474 case INTERNET_OPTION_DISABLE_PASSPORT_AUTH:
2475 TRACE("Option INTERNET_OPTION_DISABLE_PASSPORT_AUTH: harmless stub, since not enabled\n");
2476 break;
2477 case INTERNET_OPTION_SEND_TIMEOUT:
2478 case INTERNET_OPTION_RECEIVE_TIMEOUT:
2479 TRACE("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT\n");
2480 if (dwBufferLength == sizeof(DWORD))
2482 if (lpwhh->htype == WH_HHTTPREQ)
2483 ret = NETCON_set_timeout(
2484 &((LPWININETHTTPREQW)lpwhh)->netConnection,
2485 dwOption == INTERNET_OPTION_SEND_TIMEOUT,
2486 *(DWORD *)lpBuffer);
2487 else
2489 FIXME("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT not supported on protocol %d\n",
2490 lpwhh->htype);
2491 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2492 ret = FALSE;
2495 else
2497 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2498 ret = FALSE;
2500 break;
2501 case INTERNET_OPTION_CONNECT_RETRIES:
2502 FIXME("Option INTERNET_OPTION_CONNECT_RETRIES: STUB\n");
2503 break;
2504 case INTERNET_OPTION_CONTEXT_VALUE:
2505 FIXME("Option INTERNET_OPTION_CONTEXT_VALUE; STUB\n");
2506 break;
2507 case INTERNET_OPTION_SECURITY_FLAGS:
2508 FIXME("Option INTERNET_OPTION_SECURITY_FLAGS; STUB\n");
2509 break;
2510 default:
2511 FIXME("Option %d STUB\n",dwOption);
2512 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2513 ret = FALSE;
2514 break;
2516 WININET_Release( lpwhh );
2518 return ret;
2522 /***********************************************************************
2523 * InternetSetOptionA (WININET.@)
2525 * Sets an options on the specified handle.
2527 * RETURNS
2528 * TRUE on success
2529 * FALSE on failure
2532 BOOL WINAPI InternetSetOptionA(HINTERNET hInternet, DWORD dwOption,
2533 LPVOID lpBuffer, DWORD dwBufferLength)
2535 LPVOID wbuffer;
2536 DWORD wlen;
2537 BOOL r;
2539 switch( dwOption )
2541 case INTERNET_OPTION_PROXY:
2543 LPINTERNET_PROXY_INFOA pi = (LPINTERNET_PROXY_INFOA) lpBuffer;
2544 LPINTERNET_PROXY_INFOW piw;
2545 DWORD proxlen, prbylen;
2546 LPWSTR prox, prby;
2548 proxlen = MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, NULL, 0);
2549 prbylen= MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, NULL, 0);
2550 wlen = sizeof(*piw) + proxlen + prbylen;
2551 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2552 piw = (LPINTERNET_PROXY_INFOW) wbuffer;
2553 piw->dwAccessType = pi->dwAccessType;
2554 prox = (LPWSTR) &piw[1];
2555 prby = &prox[proxlen+1];
2556 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, prox, proxlen);
2557 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, prby, prbylen);
2558 piw->lpszProxy = prox;
2559 piw->lpszProxyBypass = prby;
2561 break;
2562 case INTERNET_OPTION_USER_AGENT:
2563 case INTERNET_OPTION_USERNAME:
2564 case INTERNET_OPTION_PASSWORD:
2565 wlen = MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2566 NULL, 0 );
2567 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2568 MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2569 wbuffer, wlen );
2570 break;
2571 default:
2572 wbuffer = lpBuffer;
2573 wlen = dwBufferLength;
2576 r = InternetSetOptionW(hInternet,dwOption, wbuffer, wlen);
2578 if( lpBuffer != wbuffer )
2579 HeapFree( GetProcessHeap(), 0, wbuffer );
2581 return r;
2585 /***********************************************************************
2586 * InternetSetOptionExA (WININET.@)
2588 BOOL WINAPI InternetSetOptionExA(HINTERNET hInternet, DWORD dwOption,
2589 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2591 FIXME("Flags %08x ignored\n", dwFlags);
2592 return InternetSetOptionA( hInternet, dwOption, lpBuffer, dwBufferLength );
2595 /***********************************************************************
2596 * InternetSetOptionExW (WININET.@)
2598 BOOL WINAPI InternetSetOptionExW(HINTERNET hInternet, DWORD dwOption,
2599 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2601 FIXME("Flags %08x ignored\n", dwFlags);
2602 if( dwFlags & ~ISO_VALID_FLAGS )
2604 SetLastError( ERROR_INVALID_PARAMETER );
2605 return FALSE;
2607 return InternetSetOptionW( hInternet, dwOption, lpBuffer, dwBufferLength );
2610 static const WCHAR WININET_wkday[7][4] =
2611 { { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
2612 { 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
2613 static const WCHAR WININET_month[12][4] =
2614 { { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
2615 { 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
2616 { 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
2618 /***********************************************************************
2619 * InternetTimeFromSystemTimeA (WININET.@)
2621 BOOL WINAPI InternetTimeFromSystemTimeA( const SYSTEMTIME* time, DWORD format, LPSTR string, DWORD size )
2623 BOOL ret;
2624 WCHAR stringW[INTERNET_RFC1123_BUFSIZE];
2626 TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
2628 ret = InternetTimeFromSystemTimeW( time, format, stringW, sizeof(stringW) );
2629 if (ret) WideCharToMultiByte( CP_ACP, 0, stringW, -1, string, size, NULL, NULL );
2631 return ret;
2634 /***********************************************************************
2635 * InternetTimeFromSystemTimeW (WININET.@)
2637 BOOL WINAPI InternetTimeFromSystemTimeW( const SYSTEMTIME* time, DWORD format, LPWSTR string, DWORD size )
2639 static const WCHAR date[] =
2640 { '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
2641 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
2643 TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
2645 if (!time || !string) return FALSE;
2647 if (format != INTERNET_RFC1123_FORMAT || size < INTERNET_RFC1123_BUFSIZE * sizeof(WCHAR))
2648 return FALSE;
2650 sprintfW( string, date,
2651 WININET_wkday[time->wDayOfWeek],
2652 time->wDay,
2653 WININET_month[time->wMonth - 1],
2654 time->wYear,
2655 time->wHour,
2656 time->wMinute,
2657 time->wSecond );
2659 return TRUE;
2662 /***********************************************************************
2663 * InternetTimeToSystemTimeA (WININET.@)
2665 BOOL WINAPI InternetTimeToSystemTimeA( LPCSTR string, SYSTEMTIME* time, DWORD reserved )
2667 BOOL ret = FALSE;
2668 WCHAR *stringW;
2669 int len;
2671 TRACE( "%s %p 0x%08x\n", debugstr_a(string), time, reserved );
2673 len = MultiByteToWideChar( CP_ACP, 0, string, -1, NULL, 0 );
2674 stringW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
2676 if (stringW)
2678 MultiByteToWideChar( CP_ACP, 0, string, -1, stringW, len );
2679 ret = InternetTimeToSystemTimeW( stringW, time, reserved );
2680 HeapFree( GetProcessHeap(), 0, stringW );
2682 return ret;
2685 /***********************************************************************
2686 * InternetTimeToSystemTimeW (WININET.@)
2688 BOOL WINAPI InternetTimeToSystemTimeW( LPCWSTR string, SYSTEMTIME* time, DWORD reserved )
2690 unsigned int i;
2691 WCHAR *s = (LPWSTR)string;
2693 TRACE( "%s %p 0x%08x\n", debugstr_w(string), time, reserved );
2695 if (!string || !time) return FALSE;
2697 /* Windows does this too */
2698 GetSystemTime( time );
2700 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
2701 * a SYSTEMTIME structure.
2704 while (*s && !isalphaW( *s )) s++;
2705 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2706 time->wDayOfWeek = 7;
2708 for (i = 0; i < 7; i++)
2710 if (toupperW( WININET_wkday[i][0] ) == toupperW( s[0] ) &&
2711 toupperW( WININET_wkday[i][1] ) == toupperW( s[1] ) &&
2712 toupperW( WININET_wkday[i][2] ) == toupperW( s[2] ) )
2714 time->wDayOfWeek = i;
2715 break;
2719 if (time->wDayOfWeek > 6) return TRUE;
2720 while (*s && !isdigitW( *s )) s++;
2721 time->wDay = strtolW( s, &s, 10 );
2723 while (*s && !isalphaW( *s )) s++;
2724 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2725 time->wMonth = 0;
2727 for (i = 0; i < 12; i++)
2729 if (toupperW( WININET_month[i][0]) == toupperW( s[0] ) &&
2730 toupperW( WININET_month[i][1]) == toupperW( s[1] ) &&
2731 toupperW( WININET_month[i][2]) == toupperW( s[2] ) )
2733 time->wMonth = i + 1;
2734 break;
2737 if (time->wMonth == 0) return TRUE;
2739 while (*s && !isdigitW( *s )) s++;
2740 if (*s == '\0') return TRUE;
2741 time->wYear = strtolW( s, &s, 10 );
2743 while (*s && !isdigitW( *s )) s++;
2744 if (*s == '\0') return TRUE;
2745 time->wHour = strtolW( s, &s, 10 );
2747 while (*s && !isdigitW( *s )) s++;
2748 if (*s == '\0') return TRUE;
2749 time->wMinute = strtolW( s, &s, 10 );
2751 while (*s && !isdigitW( *s )) s++;
2752 if (*s == '\0') return TRUE;
2753 time->wSecond = strtolW( s, &s, 10 );
2755 time->wMilliseconds = 0;
2756 return TRUE;
2759 /***********************************************************************
2760 * InternetCheckConnectionW (WININET.@)
2762 * Pings a requested host to check internet connection
2764 * RETURNS
2765 * TRUE on success and FALSE on failure. If a failure then
2766 * ERROR_NOT_CONNECTED is placed into GetLastError
2769 BOOL WINAPI InternetCheckConnectionW( LPCWSTR lpszUrl, DWORD dwFlags, DWORD dwReserved )
2772 * this is a kludge which runs the resident ping program and reads the output.
2774 * Anyone have a better idea?
2777 BOOL rc = FALSE;
2778 static const CHAR ping[] = "ping -w 1 ";
2779 static const CHAR redirect[] = " >/dev/null 2>/dev/null";
2780 CHAR *command = NULL;
2781 WCHAR hostW[1024];
2782 DWORD len;
2783 int status = -1;
2785 FIXME("\n");
2788 * Crack or set the Address
2790 if (lpszUrl == NULL)
2793 * According to the doc we are supost to use the ip for the next
2794 * server in the WnInet internal server database. I have
2795 * no idea what that is or how to get it.
2797 * So someone needs to implement this.
2799 FIXME("Unimplemented with URL of NULL\n");
2800 return TRUE;
2802 else
2804 URL_COMPONENTSW components;
2806 ZeroMemory(&components,sizeof(URL_COMPONENTSW));
2807 components.lpszHostName = (LPWSTR)&hostW;
2808 components.dwHostNameLength = 1024;
2810 if (!InternetCrackUrlW(lpszUrl,0,0,&components))
2811 goto End;
2813 TRACE("host name : %s\n",debugstr_w(components.lpszHostName));
2817 * Build our ping command
2819 len = WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, NULL, 0, NULL, NULL);
2820 command = HeapAlloc( GetProcessHeap(), 0, strlen(ping)+len+strlen(redirect) );
2821 strcpy(command,ping);
2822 WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, command+strlen(ping), len, NULL, NULL);
2823 strcat(command,redirect);
2825 TRACE("Ping command is : %s\n",command);
2827 status = system(command);
2829 TRACE("Ping returned a code of %i\n",status);
2831 /* Ping return code of 0 indicates success */
2832 if (status == 0)
2833 rc = TRUE;
2835 End:
2837 HeapFree( GetProcessHeap(), 0, command );
2838 if (rc == FALSE)
2839 SetLastError(ERROR_NOT_CONNECTED);
2841 return rc;
2845 /***********************************************************************
2846 * InternetCheckConnectionA (WININET.@)
2848 * Pings a requested host to check internet connection
2850 * RETURNS
2851 * TRUE on success and FALSE on failure. If a failure then
2852 * ERROR_NOT_CONNECTED is placed into GetLastError
2855 BOOL WINAPI InternetCheckConnectionA(LPCSTR lpszUrl, DWORD dwFlags, DWORD dwReserved)
2857 WCHAR *szUrl;
2858 INT len;
2859 BOOL rc;
2861 len = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0);
2862 if (!(szUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR))))
2863 return FALSE;
2864 MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, len);
2865 rc = InternetCheckConnectionW(szUrl, dwFlags, dwReserved);
2866 HeapFree(GetProcessHeap(), 0, szUrl);
2868 return rc;
2872 /**********************************************************
2873 * INTERNET_InternetOpenUrlW (internal)
2875 * Opens an URL
2877 * RETURNS
2878 * handle of connection or NULL on failure
2880 HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
2881 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
2883 URL_COMPONENTSW urlComponents;
2884 WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
2885 WCHAR password[1024], path[2048], extra[1024];
2886 HINTERNET client = NULL, client1 = NULL;
2888 TRACE("(%p, %s, %s, %08x, %08x, %08x)\n", hIC, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2889 dwHeadersLength, dwFlags, dwContext);
2891 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
2892 urlComponents.lpszScheme = protocol;
2893 urlComponents.dwSchemeLength = 32;
2894 urlComponents.lpszHostName = hostName;
2895 urlComponents.dwHostNameLength = MAXHOSTNAME;
2896 urlComponents.lpszUserName = userName;
2897 urlComponents.dwUserNameLength = 1024;
2898 urlComponents.lpszPassword = password;
2899 urlComponents.dwPasswordLength = 1024;
2900 urlComponents.lpszUrlPath = path;
2901 urlComponents.dwUrlPathLength = 2048;
2902 urlComponents.lpszExtraInfo = extra;
2903 urlComponents.dwExtraInfoLength = 1024;
2904 if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
2905 return NULL;
2906 switch(urlComponents.nScheme) {
2907 case INTERNET_SCHEME_FTP:
2908 if(urlComponents.nPort == 0)
2909 urlComponents.nPort = INTERNET_DEFAULT_FTP_PORT;
2910 client = FTP_Connect(hIC, hostName, urlComponents.nPort,
2911 userName, password, dwFlags, dwContext, INET_OPENURL);
2912 if(client == NULL)
2913 break;
2914 client1 = FtpOpenFileW(client, path, GENERIC_READ, dwFlags, dwContext);
2915 if(client1 == NULL) {
2916 InternetCloseHandle(client);
2917 break;
2919 break;
2921 case INTERNET_SCHEME_HTTP:
2922 case INTERNET_SCHEME_HTTPS: {
2923 static const WCHAR szStars[] = { '*','/','*', 0 };
2924 LPCWSTR accept[2] = { szStars, NULL };
2925 if(urlComponents.nPort == 0) {
2926 if(urlComponents.nScheme == INTERNET_SCHEME_HTTP)
2927 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
2928 else
2929 urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
2931 /* FIXME: should use pointers, not handles, as handles are not thread-safe */
2932 client = HTTP_Connect(hIC, hostName, urlComponents.nPort,
2933 userName, password, dwFlags, dwContext, INET_OPENURL);
2934 if(client == NULL)
2935 break;
2936 client1 = HttpOpenRequestW(client, NULL, path, NULL, NULL, accept, dwFlags, dwContext);
2937 if(client1 == NULL) {
2938 InternetCloseHandle(client);
2939 break;
2941 HttpAddRequestHeadersW(client1, lpszHeaders, dwHeadersLength, HTTP_ADDREQ_FLAG_ADD);
2942 if (!HttpSendRequestW(client1, NULL, 0, NULL, 0) &&
2943 GetLastError() != ERROR_IO_PENDING) {
2944 InternetCloseHandle(client1);
2945 client1 = NULL;
2946 break;
2949 case INTERNET_SCHEME_GOPHER:
2950 /* gopher doesn't seem to be implemented in wine, but it's supposed
2951 * to be supported by InternetOpenUrlA. */
2952 default:
2953 INTERNET_SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME);
2954 break;
2957 TRACE(" %p <--\n", client1);
2959 return client1;
2962 /**********************************************************
2963 * InternetOpenUrlW (WININET.@)
2965 * Opens an URL
2967 * RETURNS
2968 * handle of connection or NULL on failure
2970 HINTERNET WINAPI InternetOpenUrlW(HINTERNET hInternet, LPCWSTR lpszUrl,
2971 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
2973 HINTERNET ret = NULL;
2974 LPWININETAPPINFOW hIC = NULL;
2976 if (TRACE_ON(wininet)) {
2977 TRACE("(%p, %s, %s, %08x, %08x, %08x)\n", hInternet, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2978 dwHeadersLength, dwFlags, dwContext);
2979 TRACE(" flags :");
2980 dump_INTERNET_FLAGS(dwFlags);
2983 if (!lpszUrl)
2985 SetLastError(ERROR_INVALID_PARAMETER);
2986 goto lend;
2989 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
2990 if (NULL == hIC || hIC->hdr.htype != WH_HINIT) {
2991 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
2992 goto lend;
2995 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) {
2996 WORKREQUEST workRequest;
2997 struct WORKREQ_INTERNETOPENURLW *req;
2999 workRequest.asyncall = INTERNETOPENURLW;
3000 workRequest.hdr = WININET_AddRef( &hIC->hdr );
3001 req = &workRequest.u.InternetOpenUrlW;
3002 req->lpszUrl = WININET_strdupW(lpszUrl);
3003 if (lpszHeaders)
3004 req->lpszHeaders = WININET_strdupW(lpszHeaders);
3005 else
3006 req->lpszHeaders = 0;
3007 req->dwHeadersLength = dwHeadersLength;
3008 req->dwFlags = dwFlags;
3009 req->dwContext = dwContext;
3011 INTERNET_AsyncCall(&workRequest);
3013 * This is from windows.
3015 SetLastError(ERROR_IO_PENDING);
3016 } else {
3017 ret = INTERNET_InternetOpenUrlW(hIC, lpszUrl, lpszHeaders, dwHeadersLength, dwFlags, dwContext);
3020 lend:
3021 if( hIC )
3022 WININET_Release( &hIC->hdr );
3023 TRACE(" %p <--\n", ret);
3025 return ret;
3028 /**********************************************************
3029 * InternetOpenUrlA (WININET.@)
3031 * Opens an URL
3033 * RETURNS
3034 * handle of connection or NULL on failure
3036 HINTERNET WINAPI InternetOpenUrlA(HINTERNET hInternet, LPCSTR lpszUrl,
3037 LPCSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
3039 HINTERNET rc = (HINTERNET)NULL;
3041 INT lenUrl;
3042 INT lenHeaders = 0;
3043 LPWSTR szUrl = NULL;
3044 LPWSTR szHeaders = NULL;
3046 TRACE("\n");
3048 if(lpszUrl) {
3049 lenUrl = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0 );
3050 szUrl = HeapAlloc(GetProcessHeap(), 0, lenUrl*sizeof(WCHAR));
3051 if(!szUrl)
3052 return (HINTERNET)NULL;
3053 MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, lenUrl);
3056 if(lpszHeaders) {
3057 lenHeaders = MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, NULL, 0 );
3058 szHeaders = HeapAlloc(GetProcessHeap(), 0, lenHeaders*sizeof(WCHAR));
3059 if(!szHeaders) {
3060 HeapFree(GetProcessHeap(), 0, szUrl);
3061 return (HINTERNET)NULL;
3063 MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, szHeaders, lenHeaders);
3066 rc = InternetOpenUrlW(hInternet, szUrl, szHeaders,
3067 lenHeaders, dwFlags, dwContext);
3069 HeapFree(GetProcessHeap(), 0, szUrl);
3070 HeapFree(GetProcessHeap(), 0, szHeaders);
3072 return rc;
3076 static LPWITHREADERROR INTERNET_AllocThreadError(void)
3078 LPWITHREADERROR lpwite = HeapAlloc(GetProcessHeap(), 0, sizeof(*lpwite));
3080 if (lpwite)
3082 lpwite->dwError = 0;
3083 lpwite->response[0] = '\0';
3086 if (!TlsSetValue(g_dwTlsErrIndex, lpwite))
3088 HeapFree(GetProcessHeap(), 0, lpwite);
3089 return NULL;
3092 return lpwite;
3096 /***********************************************************************
3097 * INTERNET_SetLastError (internal)
3099 * Set last thread specific error
3101 * RETURNS
3104 void INTERNET_SetLastError(DWORD dwError)
3106 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3108 if (!lpwite)
3109 lpwite = INTERNET_AllocThreadError();
3111 SetLastError(dwError);
3112 if(lpwite)
3113 lpwite->dwError = dwError;
3117 /***********************************************************************
3118 * INTERNET_GetLastError (internal)
3120 * Get last thread specific error
3122 * RETURNS
3125 DWORD INTERNET_GetLastError(void)
3127 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3128 if (!lpwite) return 0;
3129 /* TlsGetValue clears last error, so set it again here */
3130 SetLastError(lpwite->dwError);
3131 return lpwite->dwError;
3135 /***********************************************************************
3136 * INTERNET_WorkerThreadFunc (internal)
3138 * Worker thread execution function
3140 * RETURNS
3143 static DWORD CALLBACK INTERNET_WorkerThreadFunc(LPVOID lpvParam)
3145 DWORD dwWaitRes;
3147 while (1)
3149 if(dwNumJobs > 0) {
3150 INTERNET_ExecuteWork();
3151 continue;
3153 dwWaitRes = WaitForMultipleObjects(2, hEventArray, FALSE, MAX_IDLE_WORKER);
3155 if (dwWaitRes == WAIT_OBJECT_0 + 1)
3156 INTERNET_ExecuteWork();
3157 else
3158 break;
3160 InterlockedIncrement(&dwNumIdleThreads);
3163 InterlockedDecrement(&dwNumIdleThreads);
3164 InterlockedDecrement(&dwNumThreads);
3165 TRACE("Worker thread exiting\n");
3166 return TRUE;
3170 /***********************************************************************
3171 * INTERNET_InsertWorkRequest (internal)
3173 * Insert work request into queue
3175 * RETURNS
3178 static BOOL INTERNET_InsertWorkRequest(LPWORKREQUEST lpWorkRequest)
3180 BOOL bSuccess = FALSE;
3181 LPWORKREQUEST lpNewRequest;
3183 TRACE("\n");
3185 lpNewRequest = HeapAlloc(GetProcessHeap(), 0, sizeof(WORKREQUEST));
3186 if (lpNewRequest)
3188 memcpy(lpNewRequest, lpWorkRequest, sizeof(WORKREQUEST));
3189 lpNewRequest->prev = NULL;
3191 EnterCriticalSection(&csQueue);
3193 lpNewRequest->next = lpWorkQueueTail;
3194 if (lpWorkQueueTail)
3195 lpWorkQueueTail->prev = lpNewRequest;
3196 lpWorkQueueTail = lpNewRequest;
3197 if (!lpHeadWorkQueue)
3198 lpHeadWorkQueue = lpWorkQueueTail;
3200 LeaveCriticalSection(&csQueue);
3202 bSuccess = TRUE;
3203 InterlockedIncrement(&dwNumJobs);
3206 return bSuccess;
3210 /***********************************************************************
3211 * INTERNET_GetWorkRequest (internal)
3213 * Retrieves work request from queue
3215 * RETURNS
3218 static BOOL INTERNET_GetWorkRequest(LPWORKREQUEST lpWorkRequest)
3220 BOOL bSuccess = FALSE;
3221 LPWORKREQUEST lpRequest = NULL;
3223 TRACE("\n");
3225 EnterCriticalSection(&csQueue);
3227 if (lpHeadWorkQueue)
3229 lpRequest = lpHeadWorkQueue;
3230 lpHeadWorkQueue = lpHeadWorkQueue->prev;
3231 if (lpRequest == lpWorkQueueTail)
3232 lpWorkQueueTail = lpHeadWorkQueue;
3235 LeaveCriticalSection(&csQueue);
3237 if (lpRequest)
3239 memcpy(lpWorkRequest, lpRequest, sizeof(WORKREQUEST));
3240 HeapFree(GetProcessHeap(), 0, lpRequest);
3241 bSuccess = TRUE;
3242 InterlockedDecrement(&dwNumJobs);
3245 return bSuccess;
3249 /***********************************************************************
3250 * INTERNET_AsyncCall (internal)
3252 * Retrieves work request from queue
3254 * RETURNS
3257 BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest)
3259 HANDLE hThread;
3260 DWORD dwTID;
3261 BOOL bSuccess = FALSE;
3263 TRACE("\n");
3265 if (InterlockedDecrement(&dwNumIdleThreads) < 0)
3267 InterlockedIncrement(&dwNumIdleThreads);
3269 if (InterlockedIncrement(&dwNumThreads) > MAX_WORKER_THREADS ||
3270 !(hThread = CreateThread(NULL, 0,
3271 INTERNET_WorkerThreadFunc, NULL, 0, &dwTID)))
3273 InterlockedDecrement(&dwNumThreads);
3274 INTERNET_SetLastError(ERROR_INTERNET_ASYNC_THREAD_FAILED);
3275 goto lerror;
3278 TRACE("Created new thread\n");
3281 bSuccess = TRUE;
3282 INTERNET_InsertWorkRequest(lpWorkRequest);
3283 SetEvent(hWorkEvent);
3285 lerror:
3287 return bSuccess;
3291 /***********************************************************************
3292 * INTERNET_ExecuteWork (internal)
3294 * RETURNS
3297 static VOID INTERNET_ExecuteWork(void)
3299 WORKREQUEST workRequest;
3301 TRACE("\n");
3303 if (!INTERNET_GetWorkRequest(&workRequest))
3304 return;
3306 switch (workRequest.asyncall)
3308 case FTPPUTFILEW:
3310 struct WORKREQ_FTPPUTFILEW *req = &workRequest.u.FtpPutFileW;
3311 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3313 TRACE("FTPPUTFILEW %p\n", lpwfs);
3315 FTP_FtpPutFileW(lpwfs, req->lpszLocalFile,
3316 req->lpszNewRemoteFile, req->dwFlags, req->dwContext);
3318 HeapFree(GetProcessHeap(), 0, req->lpszLocalFile);
3319 HeapFree(GetProcessHeap(), 0, req->lpszNewRemoteFile);
3321 break;
3323 case FTPSETCURRENTDIRECTORYW:
3325 struct WORKREQ_FTPSETCURRENTDIRECTORYW *req;
3326 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3328 TRACE("FTPSETCURRENTDIRECTORYW %p\n", lpwfs);
3330 req = &workRequest.u.FtpSetCurrentDirectoryW;
3331 FTP_FtpSetCurrentDirectoryW(lpwfs, req->lpszDirectory);
3332 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
3334 break;
3336 case FTPCREATEDIRECTORYW:
3338 struct WORKREQ_FTPCREATEDIRECTORYW *req;
3339 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3341 TRACE("FTPCREATEDIRECTORYW %p\n", lpwfs);
3343 req = &workRequest.u.FtpCreateDirectoryW;
3344 FTP_FtpCreateDirectoryW(lpwfs, req->lpszDirectory);
3345 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
3347 break;
3349 case FTPFINDFIRSTFILEW:
3351 struct WORKREQ_FTPFINDFIRSTFILEW *req;
3352 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3354 TRACE("FTPFINDFIRSTFILEW %p\n", lpwfs);
3356 req = &workRequest.u.FtpFindFirstFileW;
3357 FTP_FtpFindFirstFileW(lpwfs, req->lpszSearchFile,
3358 req->lpFindFileData, req->dwFlags, req->dwContext);
3359 HeapFree(GetProcessHeap(), 0, req->lpszSearchFile);
3361 break;
3363 case FTPGETCURRENTDIRECTORYW:
3365 struct WORKREQ_FTPGETCURRENTDIRECTORYW *req;
3366 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3368 TRACE("FTPGETCURRENTDIRECTORYW %p\n", lpwfs);
3370 req = &workRequest.u.FtpGetCurrentDirectoryW;
3371 FTP_FtpGetCurrentDirectoryW(lpwfs,
3372 req->lpszDirectory, req->lpdwDirectory);
3374 break;
3376 case FTPOPENFILEW:
3378 struct WORKREQ_FTPOPENFILEW *req = &workRequest.u.FtpOpenFileW;
3379 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3381 TRACE("FTPOPENFILEW %p\n", lpwfs);
3383 FTP_FtpOpenFileW(lpwfs, req->lpszFilename,
3384 req->dwAccess, req->dwFlags, req->dwContext);
3385 HeapFree(GetProcessHeap(), 0, req->lpszFilename);
3387 break;
3389 case FTPGETFILEW:
3391 struct WORKREQ_FTPGETFILEW *req = &workRequest.u.FtpGetFileW;
3392 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3394 TRACE("FTPGETFILEW %p\n", lpwfs);
3396 FTP_FtpGetFileW(lpwfs, req->lpszRemoteFile,
3397 req->lpszNewFile, req->fFailIfExists,
3398 req->dwLocalFlagsAttribute, req->dwFlags, req->dwContext);
3399 HeapFree(GetProcessHeap(), 0, req->lpszRemoteFile);
3400 HeapFree(GetProcessHeap(), 0, req->lpszNewFile);
3402 break;
3404 case FTPDELETEFILEW:
3406 struct WORKREQ_FTPDELETEFILEW *req = &workRequest.u.FtpDeleteFileW;
3407 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3409 TRACE("FTPDELETEFILEW %p\n", lpwfs);
3411 FTP_FtpDeleteFileW(lpwfs, req->lpszFilename);
3412 HeapFree(GetProcessHeap(), 0, req->lpszFilename);
3414 break;
3416 case FTPREMOVEDIRECTORYW:
3418 struct WORKREQ_FTPREMOVEDIRECTORYW *req;
3419 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3421 TRACE("FTPREMOVEDIRECTORYW %p\n", lpwfs);
3423 req = &workRequest.u.FtpRemoveDirectoryW;
3424 FTP_FtpRemoveDirectoryW(lpwfs, req->lpszDirectory);
3425 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
3427 break;
3429 case FTPRENAMEFILEW:
3431 struct WORKREQ_FTPRENAMEFILEW *req = &workRequest.u.FtpRenameFileW;
3432 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3434 TRACE("FTPRENAMEFILEW %p\n", lpwfs);
3436 FTP_FtpRenameFileW(lpwfs, req->lpszSrcFile, req->lpszDestFile);
3437 HeapFree(GetProcessHeap(), 0, req->lpszSrcFile);
3438 HeapFree(GetProcessHeap(), 0, req->lpszDestFile);
3440 break;
3442 case INTERNETFINDNEXTW:
3444 struct WORKREQ_INTERNETFINDNEXTW *req;
3445 LPWININETFINDNEXTW lpwh = (LPWININETFINDNEXTW) workRequest.hdr;
3447 TRACE("INTERNETFINDNEXTW %p\n", lpwh);
3449 req = &workRequest.u.InternetFindNextW;
3450 INTERNET_FindNextFileW(lpwh, req->lpFindFileData);
3452 break;
3454 case HTTPSENDREQUESTW:
3456 struct WORKREQ_HTTPSENDREQUESTW *req = &workRequest.u.HttpSendRequestW;
3457 LPWININETHTTPREQW lpwhr = (LPWININETHTTPREQW) workRequest.hdr;
3459 TRACE("HTTPSENDREQUESTW %p\n", lpwhr);
3461 HTTP_HttpSendRequestW(lpwhr, req->lpszHeader,
3462 req->dwHeaderLength, req->lpOptional, req->dwOptionalLength,
3463 req->dwContentLength, req->bEndRequest);
3465 HeapFree(GetProcessHeap(), 0, req->lpszHeader);
3467 break;
3469 case HTTPOPENREQUESTW:
3471 struct WORKREQ_HTTPOPENREQUESTW *req = &workRequest.u.HttpOpenRequestW;
3472 LPWININETHTTPSESSIONW lpwhs = (LPWININETHTTPSESSIONW) workRequest.hdr;
3474 TRACE("HTTPOPENREQUESTW %p\n", lpwhs);
3476 HTTP_HttpOpenRequestW(lpwhs, req->lpszVerb,
3477 req->lpszObjectName, req->lpszVersion, req->lpszReferrer,
3478 req->lpszAcceptTypes, req->dwFlags, req->dwContext);
3480 HeapFree(GetProcessHeap(), 0, req->lpszVerb);
3481 HeapFree(GetProcessHeap(), 0, req->lpszObjectName);
3482 HeapFree(GetProcessHeap(), 0, req->lpszVersion);
3483 HeapFree(GetProcessHeap(), 0, req->lpszReferrer);
3485 break;
3487 case SENDCALLBACK:
3489 struct WORKREQ_SENDCALLBACK *req = &workRequest.u.SendCallback;
3491 TRACE("SENDCALLBACK %p\n", workRequest.hdr);
3493 INTERNET_SendCallback(workRequest.hdr,
3494 req->dwContext, req->dwInternetStatus, req->lpvStatusInfo,
3495 req->dwStatusInfoLength);
3497 /* And frees the copy of the status info */
3498 HeapFree(GetProcessHeap(), 0, req->lpvStatusInfo);
3500 break;
3502 case INTERNETOPENURLW:
3504 struct WORKREQ_INTERNETOPENURLW *req = &workRequest.u.InternetOpenUrlW;
3505 LPWININETAPPINFOW hIC = (LPWININETAPPINFOW) workRequest.hdr;
3507 TRACE("INTERNETOPENURLW %p\n", hIC);
3509 INTERNET_InternetOpenUrlW(hIC, req->lpszUrl,
3510 req->lpszHeaders, req->dwHeadersLength, req->dwFlags, req->dwContext);
3511 HeapFree(GetProcessHeap(), 0, req->lpszUrl);
3512 HeapFree(GetProcessHeap(), 0, req->lpszHeaders);
3514 break;
3515 case INTERNETREADFILEEXA:
3517 struct WORKREQ_INTERNETREADFILEEXA *req = &workRequest.u.InternetReadFileExA;
3519 TRACE("INTERNETREADFILEEXA %p\n", workRequest.hdr);
3521 INTERNET_ReadFile(workRequest.hdr, req->lpBuffersOut->lpvBuffer,
3522 req->lpBuffersOut->dwBufferLength,
3523 &req->lpBuffersOut->dwBufferLength, TRUE, TRUE);
3525 break;
3527 WININET_Release( workRequest.hdr );
3531 /***********************************************************************
3532 * INTERNET_GetResponseBuffer (internal)
3534 * RETURNS
3537 LPSTR INTERNET_GetResponseBuffer(void)
3539 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3540 if (!lpwite)
3541 lpwite = INTERNET_AllocThreadError();
3542 TRACE("\n");
3543 return lpwite->response;
3546 /***********************************************************************
3547 * INTERNET_GetNextLine (internal)
3549 * Parse next line in directory string listing
3551 * RETURNS
3552 * Pointer to beginning of next line
3553 * NULL on failure
3557 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen)
3559 struct timeval tv;
3560 fd_set infd;
3561 BOOL bSuccess = FALSE;
3562 INT nRecv = 0;
3563 LPSTR lpszBuffer = INTERNET_GetResponseBuffer();
3565 TRACE("\n");
3567 FD_ZERO(&infd);
3568 FD_SET(nSocket, &infd);
3569 tv.tv_sec=RESPONSE_TIMEOUT;
3570 tv.tv_usec=0;
3572 while (nRecv < MAX_REPLY_LEN)
3574 if (select(nSocket+1,&infd,NULL,NULL,&tv) > 0)
3576 if (recv(nSocket, &lpszBuffer[nRecv], 1, 0) <= 0)
3578 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
3579 goto lend;
3582 if (lpszBuffer[nRecv] == '\n')
3584 bSuccess = TRUE;
3585 break;
3587 if (lpszBuffer[nRecv] != '\r')
3588 nRecv++;
3590 else
3592 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT);
3593 goto lend;
3597 lend:
3598 if (bSuccess)
3600 lpszBuffer[nRecv] = '\0';
3601 *dwLen = nRecv - 1;
3602 TRACE(":%d %s\n", nRecv, lpszBuffer);
3603 return lpszBuffer;
3605 else
3607 return NULL;
3611 /**********************************************************
3612 * InternetQueryDataAvailable (WININET.@)
3614 * Determines how much data is available to be read.
3616 * RETURNS
3617 * If there is data available then TRUE, otherwise if there
3618 * is not or an error occurred then FALSE. Use GetLastError() to
3619 * check for ERROR_NO_MORE_FILES to see if it was the former.
3621 BOOL WINAPI InternetQueryDataAvailable( HINTERNET hFile,
3622 LPDWORD lpdwNumberOfBytesAvailble,
3623 DWORD dwFlags, DWORD dwConext)
3625 LPWININETHTTPREQW lpwhr;
3626 BOOL retval = FALSE;
3627 char buffer[4048];
3629 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hFile );
3630 if (NULL == lpwhr)
3632 SetLastError(ERROR_NO_MORE_FILES);
3633 return FALSE;
3636 TRACE("--> %p %i\n",lpwhr,lpwhr->hdr.htype);
3638 switch (lpwhr->hdr.htype)
3640 case WH_HHTTPREQ:
3641 if (!NETCON_recv(&lpwhr->netConnection, buffer,
3642 4048, MSG_PEEK, (int *)lpdwNumberOfBytesAvailble))
3644 SetLastError(ERROR_NO_MORE_FILES);
3645 retval = FALSE;
3647 else
3648 retval = TRUE;
3649 break;
3651 default:
3652 FIXME("unsupported file type\n");
3653 break;
3655 WININET_Release( &lpwhr->hdr );
3657 TRACE("<-- %i\n",retval);
3658 return retval;
3662 /***********************************************************************
3663 * InternetLockRequestFile (WININET.@)
3665 BOOL WINAPI InternetLockRequestFile( HINTERNET hInternet, HANDLE
3666 *lphLockReqHandle)
3668 FIXME("STUB\n");
3669 return FALSE;
3672 BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
3674 FIXME("STUB\n");
3675 return FALSE;
3679 /***********************************************************************
3680 * InternetAutodial (WININET.@)
3682 * On windows this function is supposed to dial the default internet
3683 * connection. We don't want to have Wine dial out to the internet so
3684 * we return TRUE by default. It might be nice to check if we are connected.
3686 * RETURNS
3687 * TRUE on success
3688 * FALSE on failure
3691 BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
3693 FIXME("STUB\n");
3695 /* Tell that we are connected to the internet. */
3696 return TRUE;
3699 /***********************************************************************
3700 * InternetAutodialHangup (WININET.@)
3702 * Hangs up a connection made with InternetAutodial
3704 * PARAM
3705 * dwReserved
3706 * RETURNS
3707 * TRUE on success
3708 * FALSE on failure
3711 BOOL WINAPI InternetAutodialHangup(DWORD dwReserved)
3713 FIXME("STUB\n");
3715 /* we didn't dial, we don't disconnect */
3716 return TRUE;
3719 /***********************************************************************
3720 * InternetCombineUrlA (WININET.@)
3722 * Combine a base URL with a relative URL
3724 * RETURNS
3725 * TRUE on success
3726 * FALSE on failure
3730 BOOL WINAPI InternetCombineUrlA(LPCSTR lpszBaseUrl, LPCSTR lpszRelativeUrl,
3731 LPSTR lpszBuffer, LPDWORD lpdwBufferLength,
3732 DWORD dwFlags)
3734 HRESULT hr=S_OK;
3736 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_a(lpszBaseUrl), debugstr_a(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3738 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3739 dwFlags ^= ICU_NO_ENCODE;
3740 hr=UrlCombineA(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3742 return (hr==S_OK);
3745 /***********************************************************************
3746 * InternetCombineUrlW (WININET.@)
3748 * Combine a base URL with a relative URL
3750 * RETURNS
3751 * TRUE on success
3752 * FALSE on failure
3756 BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
3757 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength,
3758 DWORD dwFlags)
3760 HRESULT hr=S_OK;
3762 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_w(lpszBaseUrl), debugstr_w(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3764 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3765 dwFlags ^= ICU_NO_ENCODE;
3766 hr=UrlCombineW(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3768 return (hr==S_OK);
3771 /* max port num is 65535 => 5 digits */
3772 #define MAX_WORD_DIGITS 5
3774 #define URL_GET_COMP_LENGTH(url, component) ((url)->dw##component##Length ? \
3775 (url)->dw##component##Length : strlenW((url)->lpsz##component))
3776 #define URL_GET_COMP_LENGTHA(url, component) ((url)->dw##component##Length ? \
3777 (url)->dw##component##Length : strlen((url)->lpsz##component))
3779 static BOOL url_uses_default_port(INTERNET_SCHEME nScheme, INTERNET_PORT nPort)
3781 if ((nScheme == INTERNET_SCHEME_HTTP) &&
3782 (nPort == INTERNET_DEFAULT_HTTP_PORT))
3783 return TRUE;
3784 if ((nScheme == INTERNET_SCHEME_HTTPS) &&
3785 (nPort == INTERNET_DEFAULT_HTTPS_PORT))
3786 return TRUE;
3787 if ((nScheme == INTERNET_SCHEME_FTP) &&
3788 (nPort == INTERNET_DEFAULT_FTP_PORT))
3789 return TRUE;
3790 if ((nScheme == INTERNET_SCHEME_GOPHER) &&
3791 (nPort == INTERNET_DEFAULT_GOPHER_PORT))
3792 return TRUE;
3794 if (nPort == INTERNET_INVALID_PORT_NUMBER)
3795 return TRUE;
3797 return FALSE;
3800 /* opaque urls do not fit into the standard url hierarchy and don't have
3801 * two following slashes */
3802 static inline BOOL scheme_is_opaque(INTERNET_SCHEME nScheme)
3804 return (nScheme != INTERNET_SCHEME_FTP) &&
3805 (nScheme != INTERNET_SCHEME_GOPHER) &&
3806 (nScheme != INTERNET_SCHEME_HTTP) &&
3807 (nScheme != INTERNET_SCHEME_HTTPS) &&
3808 (nScheme != INTERNET_SCHEME_FILE);
3811 static LPCWSTR INTERNET_GetSchemeString(INTERNET_SCHEME scheme)
3813 int index;
3814 if (scheme < INTERNET_SCHEME_FIRST)
3815 return NULL;
3816 index = scheme - INTERNET_SCHEME_FIRST;
3817 if (index >= sizeof(url_schemes)/sizeof(url_schemes[0]))
3818 return NULL;
3819 return (LPCWSTR)&url_schemes[index];
3822 /* we can calculate using ansi strings because we're just
3823 * calculating string length, not size
3825 static BOOL calc_url_length(LPURL_COMPONENTSW lpUrlComponents,
3826 LPDWORD lpdwUrlLength)
3828 INTERNET_SCHEME nScheme;
3830 *lpdwUrlLength = 0;
3832 if (lpUrlComponents->lpszScheme)
3834 DWORD dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
3835 *lpdwUrlLength += dwLen;
3836 nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
3838 else
3840 LPCWSTR scheme;
3842 nScheme = lpUrlComponents->nScheme;
3844 if (nScheme == INTERNET_SCHEME_DEFAULT)
3845 nScheme = INTERNET_SCHEME_HTTP;
3846 scheme = INTERNET_GetSchemeString(nScheme);
3847 *lpdwUrlLength += strlenW(scheme);
3850 (*lpdwUrlLength)++; /* ':' */
3851 if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
3852 *lpdwUrlLength += strlen("//");
3854 if (lpUrlComponents->lpszUserName)
3856 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
3857 *lpdwUrlLength += strlen("@");
3859 else
3861 if (lpUrlComponents->lpszPassword)
3863 SetLastError(ERROR_INVALID_PARAMETER);
3864 return FALSE;
3868 if (lpUrlComponents->lpszPassword)
3870 *lpdwUrlLength += strlen(":");
3871 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, Password);
3874 if (lpUrlComponents->lpszHostName)
3876 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
3878 if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
3880 char szPort[MAX_WORD_DIGITS+1];
3882 sprintf(szPort, "%d", lpUrlComponents->nPort);
3883 *lpdwUrlLength += strlen(szPort);
3884 *lpdwUrlLength += strlen(":");
3887 if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
3888 (*lpdwUrlLength)++; /* '/' */
3891 if (lpUrlComponents->lpszUrlPath)
3892 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
3894 return TRUE;
3897 static void convert_urlcomp_atow(LPURL_COMPONENTSA lpUrlComponents, LPURL_COMPONENTSW urlCompW)
3899 INT len;
3901 ZeroMemory(urlCompW, sizeof(URL_COMPONENTSW));
3903 urlCompW->dwStructSize = sizeof(URL_COMPONENTSW);
3904 urlCompW->dwSchemeLength = lpUrlComponents->dwSchemeLength;
3905 urlCompW->nScheme = lpUrlComponents->nScheme;
3906 urlCompW->dwHostNameLength = lpUrlComponents->dwHostNameLength;
3907 urlCompW->nPort = lpUrlComponents->nPort;
3908 urlCompW->dwUserNameLength = lpUrlComponents->dwUserNameLength;
3909 urlCompW->dwPasswordLength = lpUrlComponents->dwPasswordLength;
3910 urlCompW->dwUrlPathLength = lpUrlComponents->dwUrlPathLength;
3911 urlCompW->dwExtraInfoLength = lpUrlComponents->dwExtraInfoLength;
3913 if (lpUrlComponents->lpszScheme)
3915 len = URL_GET_COMP_LENGTHA(lpUrlComponents, Scheme) + 1;
3916 urlCompW->lpszScheme = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3917 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszScheme,
3918 -1, urlCompW->lpszScheme, len);
3921 if (lpUrlComponents->lpszHostName)
3923 len = URL_GET_COMP_LENGTHA(lpUrlComponents, HostName) + 1;
3924 urlCompW->lpszHostName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3925 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszHostName,
3926 -1, urlCompW->lpszHostName, len);
3929 if (lpUrlComponents->lpszUserName)
3931 len = URL_GET_COMP_LENGTHA(lpUrlComponents, UserName) + 1;
3932 urlCompW->lpszUserName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3933 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUserName,
3934 -1, urlCompW->lpszUserName, len);
3937 if (lpUrlComponents->lpszPassword)
3939 len = URL_GET_COMP_LENGTHA(lpUrlComponents, Password) + 1;
3940 urlCompW->lpszPassword = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3941 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszPassword,
3942 -1, urlCompW->lpszPassword, len);
3945 if (lpUrlComponents->lpszUrlPath)
3947 len = URL_GET_COMP_LENGTHA(lpUrlComponents, UrlPath) + 1;
3948 urlCompW->lpszUrlPath = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3949 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUrlPath,
3950 -1, urlCompW->lpszUrlPath, len);
3953 if (lpUrlComponents->lpszExtraInfo)
3955 len = URL_GET_COMP_LENGTHA(lpUrlComponents, ExtraInfo) + 1;
3956 urlCompW->lpszExtraInfo = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3957 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszExtraInfo,
3958 -1, urlCompW->lpszExtraInfo, len);
3962 /***********************************************************************
3963 * InternetCreateUrlA (WININET.@)
3965 * See InternetCreateUrlW.
3967 BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
3968 LPSTR lpszUrl, LPDWORD lpdwUrlLength)
3970 BOOL ret;
3971 LPWSTR urlW = NULL;
3972 URL_COMPONENTSW urlCompW;
3974 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
3976 if (!lpUrlComponents)
3977 return FALSE;
3979 if (lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
3981 SetLastError(ERROR_INVALID_PARAMETER);
3982 return FALSE;
3985 convert_urlcomp_atow(lpUrlComponents, &urlCompW);
3987 if (lpszUrl)
3988 urlW = HeapAlloc(GetProcessHeap(), 0, *lpdwUrlLength * sizeof(WCHAR));
3990 ret = InternetCreateUrlW(&urlCompW, dwFlags, urlW, lpdwUrlLength);
3992 if (!ret && (GetLastError() == ERROR_INSUFFICIENT_BUFFER))
3993 *lpdwUrlLength /= sizeof(WCHAR);
3995 /* on success, lpdwUrlLength points to the size of urlW in WCHARS
3996 * minus one, so add one to leave room for NULL terminator
3998 if (ret)
3999 WideCharToMultiByte(CP_ACP, 0, urlW, -1, lpszUrl, *lpdwUrlLength + 1, NULL, NULL);
4001 HeapFree(GetProcessHeap(), 0, urlCompW.lpszScheme);
4002 HeapFree(GetProcessHeap(), 0, urlCompW.lpszHostName);
4003 HeapFree(GetProcessHeap(), 0, urlCompW.lpszUserName);
4004 HeapFree(GetProcessHeap(), 0, urlCompW.lpszPassword);
4005 HeapFree(GetProcessHeap(), 0, urlCompW.lpszUrlPath);
4006 HeapFree(GetProcessHeap(), 0, urlCompW.lpszExtraInfo);
4007 HeapFree(GetProcessHeap(), 0, urlW);
4009 return ret;
4012 /***********************************************************************
4013 * InternetCreateUrlW (WININET.@)
4015 * Creates a URL from its component parts.
4017 * PARAMS
4018 * lpUrlComponents [I] URL Components.
4019 * dwFlags [I] Flags. See notes.
4020 * lpszUrl [I] Buffer in which to store the created URL.
4021 * lpdwUrlLength [I/O] On input, the length of the buffer pointed to by
4022 * lpszUrl in characters. On output, the number of bytes
4023 * required to store the URL including terminator.
4025 * NOTES
4027 * The dwFlags parameter can be zero or more of the following:
4028 *|ICU_ESCAPE - Generates escape sequences for unsafe characters in the path and extra info of the URL.
4030 * RETURNS
4031 * TRUE on success
4032 * FALSE on failure
4035 BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
4036 LPWSTR lpszUrl, LPDWORD lpdwUrlLength)
4038 DWORD dwLen;
4039 INTERNET_SCHEME nScheme;
4041 static const WCHAR slashSlashW[] = {'/','/'};
4042 static const WCHAR percentD[] = {'%','d',0};
4044 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
4046 if (!lpUrlComponents)
4047 return FALSE;
4049 if (lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
4051 SetLastError(ERROR_INVALID_PARAMETER);
4052 return FALSE;
4055 if (!calc_url_length(lpUrlComponents, &dwLen))
4056 return FALSE;
4058 if (!lpszUrl || *lpdwUrlLength < dwLen)
4060 *lpdwUrlLength = (dwLen + 1) * sizeof(WCHAR);
4061 SetLastError(ERROR_INSUFFICIENT_BUFFER);
4062 return FALSE;
4065 *lpdwUrlLength = dwLen;
4066 lpszUrl[0] = 0x00;
4068 dwLen = 0;
4070 if (lpUrlComponents->lpszScheme)
4072 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
4073 memcpy(lpszUrl, lpUrlComponents->lpszScheme, dwLen * sizeof(WCHAR));
4074 lpszUrl += dwLen;
4076 nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
4078 else
4080 LPCWSTR scheme;
4081 nScheme = lpUrlComponents->nScheme;
4083 if (nScheme == INTERNET_SCHEME_DEFAULT)
4084 nScheme = INTERNET_SCHEME_HTTP;
4086 scheme = INTERNET_GetSchemeString(nScheme);
4087 dwLen = strlenW(scheme);
4088 memcpy(lpszUrl, scheme, dwLen * sizeof(WCHAR));
4089 lpszUrl += dwLen;
4092 /* all schemes are followed by at least a colon */
4093 *lpszUrl = ':';
4094 lpszUrl++;
4096 if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
4098 memcpy(lpszUrl, slashSlashW, sizeof(slashSlashW));
4099 lpszUrl += sizeof(slashSlashW)/sizeof(slashSlashW[0]);
4102 if (lpUrlComponents->lpszUserName)
4104 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
4105 memcpy(lpszUrl, lpUrlComponents->lpszUserName, dwLen * sizeof(WCHAR));
4106 lpszUrl += dwLen;
4108 if (lpUrlComponents->lpszPassword)
4110 *lpszUrl = ':';
4111 lpszUrl++;
4113 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Password);
4114 memcpy(lpszUrl, lpUrlComponents->lpszPassword, dwLen * sizeof(WCHAR));
4115 lpszUrl += dwLen;
4118 *lpszUrl = '@';
4119 lpszUrl++;
4122 if (lpUrlComponents->lpszHostName)
4124 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
4125 memcpy(lpszUrl, lpUrlComponents->lpszHostName, dwLen * sizeof(WCHAR));
4126 lpszUrl += dwLen;
4128 if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
4130 WCHAR szPort[MAX_WORD_DIGITS+1];
4132 sprintfW(szPort, percentD, lpUrlComponents->nPort);
4133 *lpszUrl = ':';
4134 lpszUrl++;
4135 dwLen = strlenW(szPort);
4136 memcpy(lpszUrl, szPort, dwLen * sizeof(WCHAR));
4137 lpszUrl += dwLen;
4140 /* add slash between hostname and path if necessary */
4141 if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
4143 *lpszUrl = '/';
4144 lpszUrl++;
4149 if (lpUrlComponents->lpszUrlPath)
4151 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
4152 memcpy(lpszUrl, lpUrlComponents->lpszUrlPath, dwLen * sizeof(WCHAR));
4153 lpszUrl += dwLen;
4156 *lpszUrl = '\0';
4158 return TRUE;
4161 /***********************************************************************
4162 * InternetConfirmZoneCrossingA (WININET.@)
4165 DWORD WINAPI InternetConfirmZoneCrossingA( HWND hWnd, LPSTR szUrlPrev, LPSTR szUrlNew, BOOL bPost )
4167 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_a(szUrlPrev), debugstr_a(szUrlNew), bPost);
4168 return ERROR_SUCCESS;
4171 /***********************************************************************
4172 * InternetConfirmZoneCrossingW (WININET.@)
4175 DWORD WINAPI InternetConfirmZoneCrossingW( HWND hWnd, LPWSTR szUrlPrev, LPWSTR szUrlNew, BOOL bPost )
4177 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_w(szUrlPrev), debugstr_w(szUrlNew), bPost);
4178 return ERROR_SUCCESS;
4181 DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
4182 LPDWORD lpdwConnection, DWORD dwReserved )
4184 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
4185 lpdwConnection, dwReserved);
4186 return ERROR_SUCCESS;
4189 DWORD WINAPI InternetDialW( HWND hwndParent, LPWSTR lpszConnectoid, DWORD dwFlags,
4190 LPDWORD lpdwConnection, DWORD dwReserved )
4192 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
4193 lpdwConnection, dwReserved);
4194 return ERROR_SUCCESS;
4197 BOOL WINAPI InternetGoOnlineA( LPSTR lpszURL, HWND hwndParent, DWORD dwReserved )
4199 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_a(lpszURL), hwndParent, dwReserved);
4200 return TRUE;
4203 BOOL WINAPI InternetGoOnlineW( LPWSTR lpszURL, HWND hwndParent, DWORD dwReserved )
4205 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_w(lpszURL), hwndParent, dwReserved);
4206 return TRUE;
4209 DWORD WINAPI InternetHangUp( DWORD dwConnection, DWORD dwReserved )
4211 FIXME("(0x%08x, 0x%08x) stub\n", dwConnection, dwReserved);
4212 return ERROR_SUCCESS;
4215 BOOL WINAPI CreateMD5SSOHash( PWSTR pszChallengeInfo, PWSTR pwszRealm, PWSTR pwszTarget,
4216 PBYTE pbHexHash )
4218 FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo), debugstr_w(pwszRealm),
4219 debugstr_w(pwszTarget), pbHexHash);
4220 return FALSE;
4223 BOOL WINAPI ResumeSuspendedDownload( HINTERNET hInternet, DWORD dwError )
4225 FIXME("(%p, 0x%08x) stub\n", hInternet, dwError);
4226 return FALSE;