Avoid referencing stackframe.h from outside kernel32.
[wine/testsucceed.git] / dlls / wininet / internet.c
blob32d584f6db75cc659c73b167f1e6d576049aa25d
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 "ntstatus.h"
52 #include "windef.h"
53 #include "winbase.h"
54 #include "winreg.h"
55 #include "winuser.h"
56 #include "wininet.h"
57 #include "winnls.h"
58 #include "wine/debug.h"
59 #include "winerror.h"
60 #define NO_SHLWAPI_STREAM
61 #include "shlwapi.h"
63 #include "wine/exception.h"
64 #include "excpt.h"
66 #include "internet.h"
67 #include "resource.h"
69 #include "wine/unicode.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 (LPWININETAPPINFOW)(((LPWININETFTPSESSIONW)(lpwh->hdr.lpwhparent))->hdr.lpwhparent)
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 DWORD dwNumThreads;
95 static DWORD dwNumIdleThreads;
96 static DWORD 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 extern void URLCacheContainers_CreateDefaults(void);
106 extern void URLCacheContainers_DeleteAll(void);
108 #define HANDLE_CHUNK_SIZE 0x10
110 static CRITICAL_SECTION WININET_cs;
111 static CRITICAL_SECTION_DEBUG WININET_cs_debug =
113 0, 0, &WININET_cs,
114 { &WININET_cs_debug.ProcessLocksList, &WININET_cs_debug.ProcessLocksList },
115 0, 0, { 0, (DWORD)(__FILE__ ": WININET_cs") }
117 static CRITICAL_SECTION WININET_cs = { &WININET_cs_debug, -1, 0, 0, 0, 0 };
119 static LPWININETHANDLEHEADER *WININET_Handles;
120 static UINT WININET_dwNextHandle;
121 static UINT WININET_dwMaxHandles;
123 HINTERNET WININET_AllocHandle( LPWININETHANDLEHEADER info )
125 LPWININETHANDLEHEADER *p;
126 UINT handle = 0, num;
128 EnterCriticalSection( &WININET_cs );
129 if( !WININET_dwMaxHandles )
131 num = HANDLE_CHUNK_SIZE;
132 p = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
133 sizeof (UINT)* num);
134 if( !p )
135 goto end;
136 WININET_Handles = p;
137 WININET_dwMaxHandles = num;
139 if( WININET_dwMaxHandles == WININET_dwNextHandle )
141 num = WININET_dwMaxHandles + HANDLE_CHUNK_SIZE;
142 p = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
143 WININET_Handles, sizeof (UINT)* num);
144 if( !p )
145 goto end;
146 WININET_Handles = p;
147 WININET_dwMaxHandles = num;
150 handle = WININET_dwNextHandle;
151 if( WININET_Handles[handle] )
152 ERR("handle isn't free but should be\n");
153 WININET_Handles[handle] = WININET_AddRef( info );
155 while( WININET_Handles[WININET_dwNextHandle] &&
156 (WININET_dwNextHandle < WININET_dwMaxHandles ) )
157 WININET_dwNextHandle++;
159 end:
160 LeaveCriticalSection( &WININET_cs );
162 return (HINTERNET) (handle+1);
165 HINTERNET WININET_FindHandle( LPWININETHANDLEHEADER info )
167 UINT i, handle = 0;
169 EnterCriticalSection( &WININET_cs );
170 for( i=0; i<WININET_dwMaxHandles; i++ )
172 if( info == WININET_Handles[i] )
174 WININET_AddRef( info );
175 handle = i+1;
176 break;
179 LeaveCriticalSection( &WININET_cs );
181 return (HINTERNET) handle;
184 LPWININETHANDLEHEADER WININET_AddRef( LPWININETHANDLEHEADER info )
186 info->dwRefCount++;
187 TRACE("%p -> refcount = %ld\n", info, info->dwRefCount );
188 return info;
191 LPWININETHANDLEHEADER WININET_GetObject( HINTERNET hinternet )
193 LPWININETHANDLEHEADER info = NULL;
194 UINT handle = (UINT) hinternet;
196 EnterCriticalSection( &WININET_cs );
198 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) &&
199 WININET_Handles[handle-1] )
200 info = WININET_AddRef( WININET_Handles[handle-1] );
202 LeaveCriticalSection( &WININET_cs );
204 TRACE("handle %d -> %p\n", handle, info);
206 return info;
209 BOOL WININET_Release( LPWININETHANDLEHEADER info )
211 info->dwRefCount--;
212 TRACE( "object %p refcount = %ld\n", info, info->dwRefCount );
213 if( !info->dwRefCount )
215 TRACE( "destroying object %p\n", info);
216 info->destroy( info );
218 return TRUE;
221 BOOL WININET_FreeHandle( HINTERNET hinternet )
223 BOOL ret = FALSE;
224 UINT handle = (UINT) hinternet;
225 LPWININETHANDLEHEADER info = NULL;
227 EnterCriticalSection( &WININET_cs );
229 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) )
231 handle--;
232 if( WININET_Handles[handle] )
234 info = WININET_Handles[handle];
235 TRACE( "destroying handle %d for object %p\n", handle+1, info);
236 WININET_Handles[handle] = NULL;
237 ret = TRUE;
238 if( WININET_dwNextHandle > handle )
239 WININET_dwNextHandle = handle;
243 LeaveCriticalSection( &WININET_cs );
245 if( info )
246 WININET_Release( info );
248 return ret;
251 /***********************************************************************
252 * DllMain [Internal] Initializes the internal 'WININET.DLL'.
254 * PARAMS
255 * hinstDLL [I] handle to the DLL's instance
256 * fdwReason [I]
257 * lpvReserved [I] reserved, must be NULL
259 * RETURNS
260 * Success: TRUE
261 * Failure: FALSE
264 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
266 TRACE("%p,%lx,%p\n", hinstDLL, fdwReason, lpvReserved);
268 switch (fdwReason) {
269 case DLL_PROCESS_ATTACH:
271 g_dwTlsErrIndex = TlsAlloc();
273 if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
274 return FALSE;
276 hQuitEvent = CreateEventW(0, TRUE, FALSE, NULL);
277 hWorkEvent = CreateEventW(0, FALSE, FALSE, NULL);
278 InitializeCriticalSection(&csQueue);
280 URLCacheContainers_CreateDefaults();
282 dwNumThreads = 0;
283 dwNumIdleThreads = 0;
284 dwNumJobs = 0;
286 WININET_hModule = (HMODULE)hinstDLL;
288 case DLL_THREAD_ATTACH:
290 LPWITHREADERROR lpwite = HeapAlloc(GetProcessHeap(), 0, sizeof(WITHREADERROR));
291 if (NULL == lpwite)
292 return FALSE;
294 TlsSetValue(g_dwTlsErrIndex, (LPVOID)lpwite);
296 break;
298 case DLL_THREAD_DETACH:
299 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
301 LPVOID lpwite = TlsGetValue(g_dwTlsErrIndex);
302 HeapFree(GetProcessHeap(), 0, lpwite);
304 break;
306 case DLL_PROCESS_DETACH:
308 URLCacheContainers_DeleteAll();
310 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
312 HeapFree(GetProcessHeap(), 0, TlsGetValue(g_dwTlsErrIndex));
313 TlsFree(g_dwTlsErrIndex);
316 SetEvent(hQuitEvent);
318 CloseHandle(hQuitEvent);
319 CloseHandle(hWorkEvent);
320 DeleteCriticalSection(&csQueue);
321 break;
324 return TRUE;
328 /***********************************************************************
329 * InternetInitializeAutoProxyDll (WININET.@)
331 * Setup the internal proxy
333 * PARAMETERS
334 * dwReserved
336 * RETURNS
337 * FALSE on failure
340 BOOL WINAPI InternetInitializeAutoProxyDll(DWORD dwReserved)
342 FIXME("STUB\n");
343 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
344 return FALSE;
347 /***********************************************************************
348 * DetectAutoProxyUrl (WININET.@)
350 * Auto detect the proxy url
352 * RETURNS
353 * FALSE on failure
356 BOOL WINAPI DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl,
357 DWORD dwAutoProxyUrlLength, DWORD dwDetectFlags)
359 FIXME("STUB\n");
360 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
361 return FALSE;
365 /***********************************************************************
366 * INTERNET_ConfigureProxyFromReg
368 * FIXME:
369 * The proxy may be specified in the form 'http=proxy.my.org'
370 * Presumably that means there can be ftp=ftpproxy.my.org too.
372 static BOOL INTERNET_ConfigureProxyFromReg( LPWININETAPPINFOW lpwai )
374 HKEY key;
375 DWORD r, keytype, len, enabled;
376 LPSTR lpszInternetSettings =
377 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
378 static const WCHAR szProxyServer[] = { 'P','r','o','x','y','S','e','r','v','e','r', 0 };
380 r = RegOpenKeyA(HKEY_CURRENT_USER, lpszInternetSettings, &key);
381 if ( r != ERROR_SUCCESS )
382 return FALSE;
384 len = sizeof enabled;
385 r = RegQueryValueExA( key, "ProxyEnable", NULL, &keytype,
386 (BYTE*)&enabled, &len);
387 if( (r == ERROR_SUCCESS) && enabled )
389 TRACE("Proxy is enabled.\n");
391 /* figure out how much memory the proxy setting takes */
392 r = RegQueryValueExW( key, szProxyServer, NULL, &keytype,
393 NULL, &len);
394 if( (r == ERROR_SUCCESS) && len && (keytype == REG_SZ) )
396 LPWSTR szProxy, p;
397 static const WCHAR szHttp[] = {'h','t','t','p','=',0};
399 szProxy=HeapAlloc( GetProcessHeap(), 0, len );
400 RegQueryValueExW( key, szProxyServer, NULL, &keytype,
401 (BYTE*)szProxy, &len);
403 /* find the http proxy, and strip away everything else */
404 p = strstrW( szProxy, szHttp );
405 if( p )
407 p += lstrlenW(szHttp);
408 lstrcpyW( szProxy, p );
410 p = strchrW( szProxy, ' ' );
411 if( p )
412 *p = 0;
414 lpwai->dwAccessType = INTERNET_OPEN_TYPE_PROXY;
415 lpwai->lpszProxy = szProxy;
417 TRACE("http proxy = %s\n", debugstr_w(lpwai->lpszProxy));
419 else
420 ERR("Couldn't read proxy server settings.\n");
422 else
423 TRACE("Proxy is not enabled.\n");
424 RegCloseKey(key);
426 return enabled;
429 /***********************************************************************
430 * InternetOpenW (WININET.@)
432 * Per-application initialization of wininet
434 * RETURNS
435 * HINTERNET on success
436 * NULL on failure
439 HINTERNET WINAPI InternetOpenW(LPCWSTR lpszAgent, DWORD dwAccessType,
440 LPCWSTR lpszProxy, LPCWSTR lpszProxyBypass, DWORD dwFlags)
442 LPWININETAPPINFOW lpwai = NULL;
443 HINTERNET handle = NULL;
445 if (TRACE_ON(wininet)) {
446 #define FE(x) { x, #x }
447 static const wininet_flag_info access_type[] = {
448 FE(INTERNET_OPEN_TYPE_PRECONFIG),
449 FE(INTERNET_OPEN_TYPE_DIRECT),
450 FE(INTERNET_OPEN_TYPE_PROXY),
451 FE(INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY)
453 #undef FE
454 DWORD i;
455 const char *access_type_str = "Unknown";
457 TRACE("(%s, %li, %s, %s, %li)\n", debugstr_w(lpszAgent), dwAccessType,
458 debugstr_w(lpszProxy), debugstr_w(lpszProxyBypass), dwFlags);
459 for (i = 0; i < (sizeof(access_type) / sizeof(access_type[0])); i++) {
460 if (access_type[i].val == dwAccessType) {
461 access_type_str = access_type[i].name;
462 break;
465 TRACE(" access type : %s\n", access_type_str);
466 TRACE(" flags :");
467 dump_INTERNET_FLAGS(dwFlags);
470 /* Clear any error information */
471 INTERNET_SetLastError(0);
473 lpwai = HeapAlloc(GetProcessHeap(), 0, sizeof(WININETAPPINFOW));
474 if (NULL == lpwai)
476 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
477 goto lend;
480 memset(lpwai, 0, sizeof(WININETAPPINFOW));
481 lpwai->hdr.htype = WH_HINIT;
482 lpwai->hdr.lpwhparent = NULL;
483 lpwai->hdr.dwFlags = dwFlags;
484 lpwai->hdr.dwRefCount = 1;
485 lpwai->hdr.destroy = INTERNET_CloseHandle;
486 lpwai->dwAccessType = dwAccessType;
487 lpwai->lpszProxyUsername = NULL;
488 lpwai->lpszProxyPassword = NULL;
490 handle = WININET_AllocHandle( &lpwai->hdr );
491 if( !handle )
493 HeapFree( GetProcessHeap(), 0, lpwai );
494 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
495 goto lend;
498 if (NULL != lpszAgent)
500 lpwai->lpszAgent = HeapAlloc( GetProcessHeap(),0,
501 (strlenW(lpszAgent)+1)*sizeof(WCHAR));
502 if (lpwai->lpszAgent)
503 lstrcpyW( lpwai->lpszAgent, lpszAgent );
505 if(dwAccessType == INTERNET_OPEN_TYPE_PRECONFIG)
506 INTERNET_ConfigureProxyFromReg( lpwai );
507 else if (NULL != lpszProxy)
509 lpwai->lpszProxy = HeapAlloc( GetProcessHeap(), 0,
510 (strlenW(lpszProxy)+1)*sizeof(WCHAR));
511 if (lpwai->lpszProxy)
512 lstrcpyW( lpwai->lpszProxy, lpszProxy );
515 if (NULL != lpszProxyBypass)
517 lpwai->lpszProxyBypass = HeapAlloc( GetProcessHeap(), 0,
518 (strlenW(lpszProxyBypass)+1)*sizeof(WCHAR));
519 if (lpwai->lpszProxyBypass)
520 lstrcpyW( lpwai->lpszProxyBypass, lpszProxyBypass );
523 lend:
524 if( lpwai )
525 WININET_Release( &lpwai->hdr );
527 TRACE("returning %p\n", lpwai);
529 return handle;
533 /***********************************************************************
534 * InternetOpenA (WININET.@)
536 * Per-application initialization of wininet
538 * RETURNS
539 * HINTERNET on success
540 * NULL on failure
543 HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent, DWORD dwAccessType,
544 LPCSTR lpszProxy, LPCSTR lpszProxyBypass, DWORD dwFlags)
546 HINTERNET rc = (HINTERNET)NULL;
547 INT len;
548 WCHAR *szAgent = NULL, *szProxy = NULL, *szBypass = NULL;
550 TRACE("(%s, 0x%08lx, %s, %s, 0x%08lx)\n", debugstr_a(lpszAgent),
551 dwAccessType, debugstr_a(lpszProxy), debugstr_a(lpszProxyBypass), dwFlags);
553 if( lpszAgent )
555 len = MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, NULL, 0);
556 szAgent = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
557 MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, szAgent, len);
560 if( lpszProxy )
562 len = MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, NULL, 0);
563 szProxy = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
564 MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, szProxy, len);
567 if( lpszProxyBypass )
569 len = MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, NULL, 0);
570 szBypass = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
571 MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, szBypass, len);
574 rc = InternetOpenW(szAgent, dwAccessType, szProxy, szBypass, dwFlags);
576 HeapFree(GetProcessHeap(), 0, szAgent);
577 HeapFree(GetProcessHeap(), 0, szProxy);
578 HeapFree(GetProcessHeap(), 0, szBypass);
580 return rc;
583 /***********************************************************************
584 * InternetGetLastResponseInfoA (WININET.@)
586 * Return last wininet error description on the calling thread
588 * RETURNS
589 * TRUE on success of writing to buffer
590 * FALSE on failure
593 BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
594 LPSTR lpszBuffer, LPDWORD lpdwBufferLength)
596 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
598 TRACE("\n");
600 *lpdwError = lpwite->dwError;
601 if (lpwite->dwError)
603 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
604 *lpdwBufferLength = strlen(lpszBuffer);
606 else
607 *lpdwBufferLength = 0;
609 return TRUE;
612 /***********************************************************************
613 * InternetGetLastResponseInfoW (WININET.@)
615 * Return last wininet error description on the calling thread
617 * RETURNS
618 * TRUE on success of writing to buffer
619 * FALSE on failure
622 BOOL WINAPI InternetGetLastResponseInfoW(LPDWORD lpdwError,
623 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength)
625 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
627 TRACE("\n");
629 *lpdwError = lpwite->dwError;
630 if (lpwite->dwError)
632 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
633 *lpdwBufferLength = lstrlenW(lpszBuffer);
635 else
636 *lpdwBufferLength = 0;
638 return TRUE;
641 /***********************************************************************
642 * InternetGetConnectedState (WININET.@)
644 * Return connected state
646 * RETURNS
647 * TRUE if connected
648 * if lpdwStatus is not null, return the status (off line,
649 * modem, lan...) in it.
650 * FALSE if not connected
652 BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
654 TRACE("(%p, 0x%08lx)\n", lpdwStatus, dwReserved);
656 if (lpdwStatus) {
657 FIXME("always returning LAN connection.\n");
658 *lpdwStatus = INTERNET_CONNECTION_LAN;
660 return TRUE;
664 /***********************************************************************
665 * InternetGetConnectedStateExW (WININET.@)
667 * Return connected state
669 * PARAMS
671 * lpdwStatus [O] Flags specifying the status of the internet connection.
672 * lpszConnectionName [O] Pointer to buffer to receive the friendly name of the internet connection.
673 * dwNameLen [I] Size of the buffer, in characters.
674 * dwReserved [I] Reserved. Must be set to 0.
676 * RETURNS
677 * TRUE if connected
678 * if lpdwStatus is not null, return the status (off line,
679 * modem, lan...) in it.
680 * FALSE if not connected
682 * NOTES
683 * If the system has no available network connections, an empty string is
684 * stored in lpszConnectionName. If there is a LAN connection, a localized
685 * "LAN Connection" string is stored. Presumably, if only a dial-up
686 * connection is available then the name of the dial-up connection is
687 * returned. Why any application, other than the "Internet Settings" CPL,
688 * would want to use this function instead of the simpler InternetGetConnectedStateW
689 * function is beyond me.
691 BOOL WINAPI InternetGetConnectedStateExW(LPDWORD lpdwStatus, LPWSTR lpszConnectionName,
692 DWORD dwNameLen, DWORD dwReserved)
694 TRACE("(%p, %p, %ld, 0x%08lx)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
696 /* Must be zero */
697 if(dwReserved)
698 return FALSE;
700 if (lpdwStatus) {
701 FIXME("always returning LAN connection.\n");
702 *lpdwStatus = INTERNET_CONNECTION_LAN;
704 return LoadStringW(WININET_hModule, IDS_LANCONNECTION, lpszConnectionName, dwNameLen);
708 /***********************************************************************
709 * InternetGetConnectedStateExA (WININET.@)
711 BOOL WINAPI InternetGetConnectedStateExA(LPDWORD lpdwStatus, LPSTR lpszConnectionName,
712 DWORD dwNameLen, DWORD dwReserved)
714 LPWSTR lpwszConnectionName = NULL;
715 BOOL rc;
717 TRACE("(%p, %p, %ld, 0x%08lx)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
719 if (lpszConnectionName && dwNameLen > 0)
720 lpwszConnectionName= HeapAlloc(GetProcessHeap(), 0, dwNameLen * sizeof(WCHAR));
722 rc = InternetGetConnectedStateExW(lpdwStatus,lpwszConnectionName, dwNameLen,
723 dwReserved);
724 if (rc && lpwszConnectionName)
726 WideCharToMultiByte(CP_ACP,0,lpwszConnectionName,-1,lpszConnectionName,
727 dwNameLen, NULL, NULL);
729 HeapFree(GetProcessHeap(),0,lpwszConnectionName);
732 return rc;
736 /***********************************************************************
737 * InternetConnectW (WININET.@)
739 * Open a ftp, gopher or http session
741 * RETURNS
742 * HINTERNET a session handle on success
743 * NULL on failure
746 HINTERNET WINAPI InternetConnectW(HINTERNET hInternet,
747 LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
748 LPCWSTR lpszUserName, LPCWSTR lpszPassword,
749 DWORD dwService, DWORD dwFlags, DWORD dwContext)
751 LPWININETAPPINFOW hIC;
752 HINTERNET rc = (HINTERNET) NULL;
754 TRACE("(%p, %s, %i, %s, %s, %li, %li, %li)\n", hInternet, debugstr_w(lpszServerName),
755 nServerPort, debugstr_w(lpszUserName), debugstr_w(lpszPassword),
756 dwService, dwFlags, dwContext);
758 /* Clear any error information */
759 INTERNET_SetLastError(0);
760 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
761 if ( (hIC == NULL) || (hIC->hdr.htype != WH_HINIT) )
762 goto lend;
764 switch (dwService)
766 case INTERNET_SERVICE_FTP:
767 rc = FTP_Connect(hIC, lpszServerName, nServerPort,
768 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
769 break;
771 case INTERNET_SERVICE_HTTP:
772 rc = HTTP_Connect(hIC, lpszServerName, nServerPort,
773 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
774 break;
776 case INTERNET_SERVICE_GOPHER:
777 default:
778 break;
780 lend:
781 if( hIC )
782 WININET_Release( &hIC->hdr );
784 TRACE("returning %p\n", rc);
785 return rc;
789 /***********************************************************************
790 * InternetConnectA (WININET.@)
792 * Open a ftp, gopher or http session
794 * RETURNS
795 * HINTERNET a session handle on success
796 * NULL on failure
799 HINTERNET WINAPI InternetConnectA(HINTERNET hInternet,
800 LPCSTR lpszServerName, INTERNET_PORT nServerPort,
801 LPCSTR lpszUserName, LPCSTR lpszPassword,
802 DWORD dwService, DWORD dwFlags, DWORD dwContext)
804 HINTERNET rc = (HINTERNET)NULL;
805 INT len = 0;
806 LPWSTR szServerName = NULL;
807 LPWSTR szUserName = NULL;
808 LPWSTR szPassword = NULL;
810 if (lpszServerName)
812 len = MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, NULL, 0);
813 szServerName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
814 MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, szServerName, len);
816 if (lpszUserName)
818 len = MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, NULL, 0);
819 szUserName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
820 MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, szUserName, len);
822 if (lpszPassword)
824 len = MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, NULL, 0);
825 szPassword = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
826 MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, szPassword, len);
830 rc = InternetConnectW(hInternet, szServerName, nServerPort,
831 szUserName, szPassword, dwService, dwFlags, dwContext);
833 HeapFree(GetProcessHeap(), 0, szServerName);
834 HeapFree(GetProcessHeap(), 0, szUserName);
835 HeapFree(GetProcessHeap(), 0, szPassword);
836 return rc;
840 /***********************************************************************
841 * InternetFindNextFileA (WININET.@)
843 * Continues a file search from a previous call to FindFirstFile
845 * RETURNS
846 * TRUE on success
847 * FALSE on failure
850 BOOL WINAPI InternetFindNextFileA(HINTERNET hFind, LPVOID lpvFindData)
852 BOOL ret;
853 WIN32_FIND_DATAW fd;
855 ret = InternetFindNextFileW(hFind, lpvFindData?&fd:NULL);
856 if(lpvFindData)
857 WININET_find_data_WtoA(&fd, (LPWIN32_FIND_DATAA)lpvFindData);
858 return ret;
861 /***********************************************************************
862 * InternetFindNextFileW (WININET.@)
864 * Continues a file search from a previous call to FindFirstFile
866 * RETURNS
867 * TRUE on success
868 * FALSE on failure
871 BOOL WINAPI InternetFindNextFileW(HINTERNET hFind, LPVOID lpvFindData)
873 LPWININETAPPINFOW hIC = NULL;
874 LPWININETFINDNEXTW lpwh;
875 BOOL bSuccess = FALSE;
877 TRACE("\n");
879 lpwh = (LPWININETFINDNEXTW) WININET_GetObject( hFind );
880 if (NULL == lpwh || lpwh->hdr.htype != WH_HFINDNEXT)
882 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
883 goto lend;
886 hIC = GET_HWININET_FROM_LPWININETFINDNEXT(lpwh);
887 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
889 WORKREQUEST workRequest;
890 struct WORKREQ_INTERNETFINDNEXTW *req;
892 workRequest.asyncall = INTERNETFINDNEXTW;
893 workRequest.hdr = WININET_AddRef( &lpwh->hdr );
894 req = &workRequest.u.InternetFindNextW;
895 req->lpFindFileData = lpvFindData;
897 bSuccess = INTERNET_AsyncCall(&workRequest);
899 else
901 bSuccess = INTERNET_FindNextFileW(lpwh, lpvFindData);
903 lend:
904 if( lpwh )
905 WININET_Release( &lpwh->hdr );
906 return bSuccess;
909 /***********************************************************************
910 * INTERNET_FindNextFileW (Internal)
912 * Continues a file search from a previous call to FindFirstFile
914 * RETURNS
915 * TRUE on success
916 * FALSE on failure
919 BOOL WINAPI INTERNET_FindNextFileW(LPWININETFINDNEXTW lpwh, LPVOID lpvFindData)
921 BOOL bSuccess = TRUE;
922 LPWIN32_FIND_DATAW lpFindFileData;
924 TRACE("\n");
926 assert (lpwh->hdr.htype == WH_HFINDNEXT);
928 /* Clear any error information */
929 INTERNET_SetLastError(0);
931 if (lpwh->hdr.lpwhparent->htype != WH_HFTPSESSION)
933 FIXME("Only FTP find next supported\n");
934 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
935 return FALSE;
938 TRACE("index(%ld) size(%ld)\n", lpwh->index, lpwh->size);
940 lpFindFileData = (LPWIN32_FIND_DATAW) lpvFindData;
941 ZeroMemory(lpFindFileData, sizeof(WIN32_FIND_DATAA));
943 if (lpwh->index >= lpwh->size)
945 INTERNET_SetLastError(ERROR_NO_MORE_FILES);
946 bSuccess = FALSE;
947 goto lend;
950 FTP_ConvertFileProp(&lpwh->lpafp[lpwh->index], lpFindFileData);
951 lpwh->index++;
953 TRACE("\nName: %s\nSize: %ld\n", debugstr_w(lpFindFileData->cFileName), lpFindFileData->nFileSizeLow);
955 lend:
957 if (lpwh->hdr.dwFlags & INTERNET_FLAG_ASYNC && lpwh->hdr.lpfnStatusCB)
959 INTERNET_ASYNC_RESULT iar;
961 iar.dwResult = (DWORD)bSuccess;
962 iar.dwError = iar.dwError = bSuccess ? ERROR_SUCCESS :
963 INTERNET_GetLastError();
965 SendAsyncCallback(&lpwh->hdr, lpwh->hdr.dwContext,
966 INTERNET_STATUS_REQUEST_COMPLETE, &iar,
967 sizeof(INTERNET_ASYNC_RESULT));
970 return bSuccess;
974 /***********************************************************************
975 * INTERNET_CloseHandle (internal)
977 * Close internet handle
979 * RETURNS
980 * Void
983 static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr)
985 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW) hdr;
987 TRACE("%p\n",lpwai);
989 HeapFree(GetProcessHeap(), 0, lpwai->lpszAgent);
990 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxy);
991 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyBypass);
992 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyUsername);
993 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyPassword);
994 HeapFree(GetProcessHeap(), 0, lpwai);
998 /***********************************************************************
999 * InternetCloseHandle (WININET.@)
1001 * Generic close handle function
1003 * RETURNS
1004 * TRUE on success
1005 * FALSE on failure
1008 BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
1010 LPWININETHANDLEHEADER lpwh;
1012 TRACE("%p\n",hInternet);
1014 lpwh = WININET_GetObject( hInternet );
1015 if (NULL == lpwh)
1017 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1018 return FALSE;
1021 SendAsyncCallback(lpwh, lpwh->dwContext,
1022 INTERNET_STATUS_HANDLE_CLOSING, &hInternet,
1023 sizeof(HINTERNET*));
1025 if( lpwh->lpwhparent )
1026 WININET_Release( lpwh->lpwhparent );
1027 WININET_FreeHandle( hInternet );
1028 WININET_Release( lpwh );
1030 return TRUE;
1034 /***********************************************************************
1035 * ConvertUrlComponentValue (Internal)
1037 * Helper function for InternetCrackUrlW
1040 static void ConvertUrlComponentValue(LPSTR* lppszComponent, LPDWORD dwComponentLen,
1041 LPWSTR lpwszComponent, DWORD dwwComponentLen,
1042 LPCSTR lpszStart, LPCWSTR lpwszStart)
1044 if (*dwComponentLen != 0)
1046 DWORD nASCIILength=WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,NULL,0,NULL,NULL);
1047 if (*lppszComponent == NULL)
1049 int nASCIIOffset=WideCharToMultiByte(CP_ACP,0,lpwszStart,lpwszComponent-lpwszStart,NULL,0,NULL,NULL);
1050 *lppszComponent = (LPSTR)lpszStart+nASCIIOffset;
1051 *dwComponentLen = nASCIILength;
1053 else
1055 DWORD ncpylen = min((*dwComponentLen)-1, nASCIILength);
1056 WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,*lppszComponent,ncpylen+1,NULL,NULL);
1057 (*lppszComponent)[ncpylen]=0;
1058 *dwComponentLen = ncpylen;
1064 /***********************************************************************
1065 * InternetCrackUrlA (WININET.@)
1067 * Break up URL into its components
1069 * TODO: Handle dwFlags
1071 * RETURNS
1072 * TRUE on success
1073 * FALSE on failure
1076 BOOL WINAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
1077 LPURL_COMPONENTSA lpUrlComponents)
1079 DWORD nLength;
1080 URL_COMPONENTSW UCW;
1081 WCHAR* lpwszUrl;
1083 if(dwUrlLength<=0)
1084 dwUrlLength=-1;
1085 nLength=MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,NULL,0);
1087 /* if dwUrlLength=-1 then nLength includes null but length to
1088 InternetCrackUrlW should not include it */
1089 if (dwUrlLength == -1) nLength--;
1091 lpwszUrl=HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WCHAR)*nLength);
1092 MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,lpwszUrl,nLength);
1094 memset(&UCW,0,sizeof(UCW));
1095 if(lpUrlComponents->dwHostNameLength!=0)
1096 UCW.dwHostNameLength=1;
1097 if(lpUrlComponents->dwUserNameLength!=0)
1098 UCW.dwUserNameLength=1;
1099 if(lpUrlComponents->dwPasswordLength!=0)
1100 UCW.dwPasswordLength=1;
1101 if(lpUrlComponents->dwUrlPathLength!=0)
1102 UCW.dwUrlPathLength=1;
1103 if(lpUrlComponents->dwSchemeLength!=0)
1104 UCW.dwSchemeLength=1;
1105 if(lpUrlComponents->dwExtraInfoLength!=0)
1106 UCW.dwExtraInfoLength=1;
1107 if(!InternetCrackUrlW(lpwszUrl,nLength,dwFlags,&UCW))
1109 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1110 return FALSE;
1113 ConvertUrlComponentValue(&lpUrlComponents->lpszHostName, &lpUrlComponents->dwHostNameLength,
1114 UCW.lpszHostName, UCW.dwHostNameLength,
1115 lpszUrl, lpwszUrl);
1116 ConvertUrlComponentValue(&lpUrlComponents->lpszUserName, &lpUrlComponents->dwUserNameLength,
1117 UCW.lpszUserName, UCW.dwUserNameLength,
1118 lpszUrl, lpwszUrl);
1119 ConvertUrlComponentValue(&lpUrlComponents->lpszPassword, &lpUrlComponents->dwPasswordLength,
1120 UCW.lpszPassword, UCW.dwPasswordLength,
1121 lpszUrl, lpwszUrl);
1122 ConvertUrlComponentValue(&lpUrlComponents->lpszUrlPath, &lpUrlComponents->dwUrlPathLength,
1123 UCW.lpszUrlPath, UCW.dwUrlPathLength,
1124 lpszUrl, lpwszUrl);
1125 ConvertUrlComponentValue(&lpUrlComponents->lpszScheme, &lpUrlComponents->dwSchemeLength,
1126 UCW.lpszScheme, UCW.dwSchemeLength,
1127 lpszUrl, lpwszUrl);
1128 ConvertUrlComponentValue(&lpUrlComponents->lpszExtraInfo, &lpUrlComponents->dwExtraInfoLength,
1129 UCW.lpszExtraInfo, UCW.dwExtraInfoLength,
1130 lpszUrl, lpwszUrl);
1131 lpUrlComponents->nScheme=UCW.nScheme;
1132 lpUrlComponents->nPort=UCW.nPort;
1133 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1135 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", lpszUrl,
1136 debugstr_an(lpUrlComponents->lpszScheme,lpUrlComponents->dwSchemeLength),
1137 debugstr_an(lpUrlComponents->lpszHostName,lpUrlComponents->dwHostNameLength),
1138 debugstr_an(lpUrlComponents->lpszUrlPath,lpUrlComponents->dwUrlPathLength),
1139 debugstr_an(lpUrlComponents->lpszExtraInfo,lpUrlComponents->dwExtraInfoLength));
1141 return TRUE;
1144 /***********************************************************************
1145 * GetInternetSchemeW (internal)
1147 * Get scheme of url
1149 * RETURNS
1150 * scheme on success
1151 * INTERNET_SCHEME_UNKNOWN on failure
1154 static INTERNET_SCHEME GetInternetSchemeW(LPCWSTR lpszScheme, DWORD nMaxCmp)
1156 INTERNET_SCHEME iScheme=INTERNET_SCHEME_UNKNOWN;
1157 static const WCHAR lpszFtp[]={'f','t','p',0};
1158 static const WCHAR lpszGopher[]={'g','o','p','h','e','r',0};
1159 static const WCHAR lpszHttp[]={'h','t','t','p',0};
1160 static const WCHAR lpszHttps[]={'h','t','t','p','s',0};
1161 static const WCHAR lpszFile[]={'f','i','l','e',0};
1162 static const WCHAR lpszNews[]={'n','e','w','s',0};
1163 static const WCHAR lpszMailto[]={'m','a','i','l','t','o',0};
1164 static const WCHAR lpszRes[]={'r','e','s',0};
1165 WCHAR* tempBuffer=NULL;
1166 TRACE("\n");
1167 if(lpszScheme==NULL)
1168 return INTERNET_SCHEME_UNKNOWN;
1170 tempBuffer=HeapAlloc(GetProcessHeap(),0,(nMaxCmp+1)*sizeof(WCHAR));
1171 lstrcpynW(tempBuffer,lpszScheme,nMaxCmp+1);
1172 strlwrW(tempBuffer);
1173 if (nMaxCmp==strlenW(lpszFtp) && !strncmpW(lpszFtp, tempBuffer, nMaxCmp))
1174 iScheme=INTERNET_SCHEME_FTP;
1175 else if (nMaxCmp==strlenW(lpszGopher) && !strncmpW(lpszGopher, tempBuffer, nMaxCmp))
1176 iScheme=INTERNET_SCHEME_GOPHER;
1177 else if (nMaxCmp==strlenW(lpszHttp) && !strncmpW(lpszHttp, tempBuffer, nMaxCmp))
1178 iScheme=INTERNET_SCHEME_HTTP;
1179 else if (nMaxCmp==strlenW(lpszHttps) && !strncmpW(lpszHttps, tempBuffer, nMaxCmp))
1180 iScheme=INTERNET_SCHEME_HTTPS;
1181 else if (nMaxCmp==strlenW(lpszFile) && !strncmpW(lpszFile, tempBuffer, nMaxCmp))
1182 iScheme=INTERNET_SCHEME_FILE;
1183 else if (nMaxCmp==strlenW(lpszNews) && !strncmpW(lpszNews, tempBuffer, nMaxCmp))
1184 iScheme=INTERNET_SCHEME_NEWS;
1185 else if (nMaxCmp==strlenW(lpszMailto) && !strncmpW(lpszMailto, tempBuffer, nMaxCmp))
1186 iScheme=INTERNET_SCHEME_MAILTO;
1187 else if (nMaxCmp==strlenW(lpszRes) && !strncmpW(lpszRes, tempBuffer, nMaxCmp))
1188 iScheme=INTERNET_SCHEME_RES;
1189 HeapFree(GetProcessHeap(),0,tempBuffer);
1190 return iScheme;
1193 /***********************************************************************
1194 * SetUrlComponentValueW (Internal)
1196 * Helper function for InternetCrackUrlW
1198 * PARAMS
1199 * lppszComponent [O] Holds the returned string
1200 * dwComponentLen [I] Holds the size of lppszComponent
1201 * [O] Holds the length of the string in lppszComponent without '\0'
1202 * lpszStart [I] Holds the string to copy from
1203 * len [I] Holds the length of lpszStart without '\0'
1205 * RETURNS
1206 * TRUE on success
1207 * FALSE on failure
1210 static BOOL SetUrlComponentValueW(LPWSTR* lppszComponent, LPDWORD dwComponentLen, LPCWSTR lpszStart, DWORD len)
1212 TRACE("%s (%ld)\n", debugstr_wn(lpszStart,len), len);
1214 if ( (*dwComponentLen == 0) && (*lppszComponent == NULL) )
1215 return FALSE;
1217 if (*dwComponentLen != 0 || *lppszComponent == NULL)
1219 if (*lppszComponent == NULL)
1221 *lppszComponent = (LPWSTR)lpszStart;
1222 *dwComponentLen = len;
1224 else
1226 DWORD ncpylen = min((*dwComponentLen)-1, len);
1227 memcpy(*lppszComponent, lpszStart, ncpylen*sizeof(WCHAR));
1228 (*lppszComponent)[ncpylen] = '\0';
1229 *dwComponentLen = ncpylen;
1233 return TRUE;
1236 /***********************************************************************
1237 * InternetCrackUrlW (WININET.@)
1239 BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
1240 LPURL_COMPONENTSW lpUC)
1243 * RFC 1808
1244 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1247 LPCWSTR lpszParam = NULL;
1248 BOOL bIsAbsolute = FALSE;
1249 LPCWSTR lpszap = lpszUrl;
1250 LPCWSTR lpszcp = NULL;
1251 const WCHAR lpszSeparators[3]={';','?',0};
1252 const WCHAR lpszSlash[2]={'/',0};
1253 if(dwUrlLength==0)
1254 dwUrlLength=strlenW(lpszUrl);
1256 TRACE("(%s %lu %lx %p)\n", debugstr_w(lpszUrl), dwUrlLength, dwFlags, lpUC);
1258 /* Determine if the URI is absolute. */
1259 while (*lpszap != '\0')
1261 if (isalnumW(*lpszap))
1263 lpszap++;
1264 continue;
1266 if ((*lpszap == ':') && (lpszap - lpszUrl >= 2))
1268 bIsAbsolute = TRUE;
1269 lpszcp = lpszap;
1271 else
1273 lpszcp = lpszUrl; /* Relative url */
1276 break;
1279 /* Parse <params> */
1280 lpszParam = strpbrkW(lpszap, lpszSeparators);
1281 if (lpszParam != NULL)
1283 SetUrlComponentValueW(&lpUC->lpszExtraInfo, &lpUC->dwExtraInfoLength,
1284 lpszParam, dwUrlLength-(lpszParam-lpszUrl));
1287 if (bIsAbsolute) /* Parse <protocol>:[//<net_loc>] */
1289 LPCWSTR lpszNetLoc;
1290 static const WCHAR wszAbout[]={'a','b','o','u','t',':',0};
1292 /* Get scheme first. */
1293 lpUC->nScheme = GetInternetSchemeW(lpszUrl, lpszcp - lpszUrl);
1294 SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength,
1295 lpszUrl, lpszcp - lpszUrl);
1297 /* Eat ':' in protocol. */
1298 lpszcp++;
1300 /* if the scheme is "about", there is no host */
1301 if(strncmpW(wszAbout,lpszUrl, lpszcp - lpszUrl)==0)
1303 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1304 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1305 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1306 lpUC->nPort = 0;
1308 else
1310 /* Skip over slashes. */
1311 if (*lpszcp == '/')
1313 lpszcp++;
1314 if (*lpszcp == '/')
1316 lpszcp++;
1317 if (*lpszcp == '/')
1318 lpszcp++;
1322 lpszNetLoc = strpbrkW(lpszcp, lpszSlash);
1323 if (lpszParam)
1325 if (lpszNetLoc)
1326 lpszNetLoc = min(lpszNetLoc, lpszParam);
1327 else
1328 lpszNetLoc = lpszParam;
1330 else if (!lpszNetLoc)
1331 lpszNetLoc = lpszcp + dwUrlLength-(lpszcp-lpszUrl);
1333 /* Parse net-loc */
1334 if (lpszNetLoc)
1336 LPCWSTR lpszHost;
1337 LPCWSTR lpszPort;
1339 /* [<user>[<:password>]@]<host>[:<port>] */
1340 /* First find the user and password if they exist */
1342 lpszHost = strchrW(lpszcp, '@');
1343 if (lpszHost == NULL || lpszHost > lpszNetLoc)
1345 /* username and password not specified. */
1346 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1347 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1349 else /* Parse out username and password */
1351 LPCWSTR lpszUser = lpszcp;
1352 LPCWSTR lpszPasswd = lpszHost;
1354 while (lpszcp < lpszHost)
1356 if (*lpszcp == ':')
1357 lpszPasswd = lpszcp;
1359 lpszcp++;
1362 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength,
1363 lpszUser, lpszPasswd - lpszUser);
1365 if (lpszPasswd != lpszHost)
1366 lpszPasswd++;
1367 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength,
1368 lpszPasswd == lpszHost ? NULL : lpszPasswd,
1369 lpszHost - lpszPasswd);
1371 lpszcp++; /* Advance to beginning of host */
1374 /* Parse <host><:port> */
1376 lpszHost = lpszcp;
1377 lpszPort = lpszNetLoc;
1379 /* special case for res:// URLs: there is no port here, so the host is the
1380 entire string up to the first '/' */
1381 if(lpUC->nScheme==INTERNET_SCHEME_RES)
1383 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1384 lpszHost, lpszPort - lpszHost);
1385 lpUC->nPort = 0;
1386 lpszcp=lpszNetLoc;
1388 else
1390 while (lpszcp < lpszNetLoc)
1392 if (*lpszcp == ':')
1393 lpszPort = lpszcp;
1395 lpszcp++;
1398 /* If the scheme is "file" and the host is just one letter, it's not a host */
1399 if(lpUC->nScheme==INTERNET_SCHEME_FILE && (lpszPort-lpszHost)==1)
1401 lpszcp=lpszHost;
1402 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1403 NULL, 0);
1404 lpUC->nPort = 0;
1406 else
1408 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1409 lpszHost, lpszPort - lpszHost);
1410 if (lpszPort != lpszNetLoc)
1411 lpUC->nPort = atoiW(++lpszPort);
1412 else
1413 lpUC->nPort = 0;
1420 /* Here lpszcp points to:
1422 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1423 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1425 if (lpszcp != 0 && *lpszcp != '\0' && (!lpszParam || lpszcp < lpszParam))
1427 INT len;
1429 /* Only truncate the parameter list if it's already been saved
1430 * in lpUC->lpszExtraInfo.
1432 if (lpszParam && lpUC->dwExtraInfoLength && lpUC->lpszExtraInfo)
1433 len = lpszParam - lpszcp;
1434 else
1436 /* Leave the parameter list in lpszUrlPath. Strip off any trailing
1437 * newlines if necessary.
1439 LPWSTR lpsznewline = strchrW(lpszcp, '\n');
1440 if (lpsznewline != NULL)
1441 len = lpsznewline - lpszcp;
1442 else
1443 len = dwUrlLength-(lpszcp-lpszUrl);
1446 SetUrlComponentValueW(&lpUC->lpszUrlPath, &lpUC->dwUrlPathLength,
1447 lpszcp, len);
1449 else
1451 lpUC->dwUrlPathLength = 0;
1454 TRACE("%s: host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl,dwUrlLength),
1455 debugstr_wn(lpUC->lpszHostName,lpUC->dwHostNameLength),
1456 debugstr_wn(lpUC->lpszUrlPath,lpUC->dwUrlPathLength),
1457 debugstr_wn(lpUC->lpszExtraInfo,lpUC->dwExtraInfoLength));
1459 return TRUE;
1462 /***********************************************************************
1463 * InternetAttemptConnect (WININET.@)
1465 * Attempt to make a connection to the internet
1467 * RETURNS
1468 * ERROR_SUCCESS on success
1469 * Error value on failure
1472 DWORD WINAPI InternetAttemptConnect(DWORD dwReserved)
1474 FIXME("Stub\n");
1475 return ERROR_SUCCESS;
1479 /***********************************************************************
1480 * InternetCanonicalizeUrlA (WININET.@)
1482 * Escape unsafe characters and spaces
1484 * RETURNS
1485 * TRUE on success
1486 * FALSE on failure
1489 BOOL WINAPI InternetCanonicalizeUrlA(LPCSTR lpszUrl, LPSTR lpszBuffer,
1490 LPDWORD lpdwBufferLength, DWORD dwFlags)
1492 HRESULT hr;
1493 TRACE("%s %p %p %08lx\n",debugstr_a(lpszUrl), lpszBuffer,
1494 lpdwBufferLength, dwFlags);
1496 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1497 dwFlags ^= ICU_NO_ENCODE;
1499 dwFlags |= 0x80000000; /* Don't know what this means */
1501 hr = UrlCanonicalizeA(lpszUrl, lpszBuffer, lpdwBufferLength, dwFlags);
1503 return (hr == S_OK) ? TRUE : FALSE;
1506 /***********************************************************************
1507 * InternetCanonicalizeUrlW (WININET.@)
1509 * Escape unsafe characters and spaces
1511 * RETURNS
1512 * TRUE on success
1513 * FALSE on failure
1516 BOOL WINAPI InternetCanonicalizeUrlW(LPCWSTR lpszUrl, LPWSTR lpszBuffer,
1517 LPDWORD lpdwBufferLength, DWORD dwFlags)
1519 HRESULT hr;
1520 TRACE("%s %p %p %08lx\n", debugstr_w(lpszUrl), lpszBuffer,
1521 lpdwBufferLength, dwFlags);
1523 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1524 dwFlags ^= ICU_NO_ENCODE;
1526 dwFlags |= 0x80000000; /* Don't know what this means */
1528 hr = UrlCanonicalizeW(lpszUrl, lpszBuffer, lpdwBufferLength, dwFlags);
1530 return (hr == S_OK) ? TRUE : FALSE;
1534 /***********************************************************************
1535 * InternetSetStatusCallbackA (WININET.@)
1537 * Sets up a callback function which is called as progress is made
1538 * during an operation.
1540 * RETURNS
1541 * Previous callback or NULL on success
1542 * INTERNET_INVALID_STATUS_CALLBACK on failure
1545 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackA(
1546 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1548 INTERNET_STATUS_CALLBACK retVal;
1549 LPWININETHANDLEHEADER lpwh;
1551 TRACE("0x%08lx\n", (ULONG)hInternet);
1553 lpwh = WININET_GetObject(hInternet);
1554 if (!lpwh)
1555 return INTERNET_INVALID_STATUS_CALLBACK;
1557 lpwh->dwInternalFlags &= ~INET_CALLBACKW;
1558 retVal = lpwh->lpfnStatusCB;
1559 lpwh->lpfnStatusCB = lpfnIntCB;
1561 WININET_Release( lpwh );
1563 return retVal;
1566 /***********************************************************************
1567 * InternetSetStatusCallbackW (WININET.@)
1569 * Sets up a callback function which is called as progress is made
1570 * during an operation.
1572 * RETURNS
1573 * Previous callback or NULL on success
1574 * INTERNET_INVALID_STATUS_CALLBACK on failure
1577 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackW(
1578 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1580 INTERNET_STATUS_CALLBACK retVal;
1581 LPWININETHANDLEHEADER lpwh;
1583 TRACE("0x%08lx\n", (ULONG)hInternet);
1585 lpwh = WININET_GetObject(hInternet);
1586 if (!lpwh)
1587 return INTERNET_INVALID_STATUS_CALLBACK;
1589 lpwh->dwInternalFlags |= INET_CALLBACKW;
1590 retVal = lpwh->lpfnStatusCB;
1591 lpwh->lpfnStatusCB = lpfnIntCB;
1593 WININET_Release( lpwh );
1595 return retVal;
1598 /***********************************************************************
1599 * InternetSetFilePointer (WININET.@)
1601 DWORD WINAPI InternetSetFilePointer(HINTERNET f1, LONG f2, PVOID f3, DWORD f4, DWORD f5)
1603 FIXME("stub\n");
1604 return FALSE;
1607 /***********************************************************************
1608 * InternetWriteFile (WININET.@)
1610 * Write data to an open internet file
1612 * RETURNS
1613 * TRUE on success
1614 * FALSE on failure
1617 BOOL WINAPI InternetWriteFile(HINTERNET hFile, LPCVOID lpBuffer ,
1618 DWORD dwNumOfBytesToWrite, LPDWORD lpdwNumOfBytesWritten)
1620 BOOL retval = FALSE;
1621 int nSocket = -1;
1622 LPWININETHANDLEHEADER lpwh;
1624 TRACE("\n");
1625 lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1626 if (NULL == lpwh)
1627 return FALSE;
1629 switch (lpwh->htype)
1631 case WH_HHTTPREQ:
1632 FIXME("This shouldn't be here! We don't support this kind"
1633 " of connection anymore. Must use NETCON functions,"
1634 " especially if using SSL\n");
1635 nSocket = ((LPWININETHTTPREQW)lpwh)->netConnection.socketFD;
1636 break;
1638 case WH_HFILE:
1639 nSocket = ((LPWININETFILE)lpwh)->nDataSocket;
1640 break;
1642 default:
1643 break;
1646 if (nSocket != -1)
1648 int res = send(nSocket, lpBuffer, dwNumOfBytesToWrite, 0);
1649 retval = (res >= 0);
1650 *lpdwNumOfBytesWritten = retval ? res : 0;
1652 WININET_Release( lpwh );
1654 return retval;
1658 /***********************************************************************
1659 * InternetReadFile (WININET.@)
1661 * Read data from an open internet file
1663 * RETURNS
1664 * TRUE on success
1665 * FALSE on failure
1668 BOOL WINAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer,
1669 DWORD dwNumOfBytesToRead, LPDWORD dwNumOfBytesRead)
1671 BOOL retval = FALSE;
1672 int nSocket = -1;
1673 LPWININETHANDLEHEADER lpwh;
1675 TRACE("%p %p %ld %p\n", hFile, lpBuffer, dwNumOfBytesToRead, dwNumOfBytesRead);
1677 lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1678 if (NULL == lpwh)
1679 return FALSE;
1681 /* FIXME: this should use NETCON functions! */
1682 switch (lpwh->htype)
1684 case WH_HHTTPREQ:
1685 if (!NETCON_recv(&((LPWININETHTTPREQW)lpwh)->netConnection, lpBuffer,
1686 dwNumOfBytesToRead, MSG_WAITALL, (int *)dwNumOfBytesRead))
1688 *dwNumOfBytesRead = 0;
1689 retval = TRUE; /* Under windows, it seems to return 0 even if nothing was read... */
1691 else
1692 retval = TRUE;
1693 break;
1695 case WH_HFILE:
1696 /* FIXME: FTP should use NETCON_ stuff */
1697 nSocket = ((LPWININETFILE)lpwh)->nDataSocket;
1698 if (nSocket != -1)
1700 int res = recv(nSocket, lpBuffer, dwNumOfBytesToRead, MSG_WAITALL);
1701 retval = (res >= 0);
1702 *dwNumOfBytesRead = retval ? res : 0;
1704 break;
1706 default:
1707 break;
1709 WININET_Release( lpwh );
1711 TRACE("-- %s (bytes read: %ld)\n", retval ? "TRUE": "FALSE", dwNumOfBytesRead ? *dwNumOfBytesRead : -1);
1712 return retval;
1715 /***********************************************************************
1716 * InternetReadFileExA (WININET.@)
1718 * Read data from an open internet file
1720 * RETURNS
1721 * TRUE on success
1722 * FALSE on failure
1725 BOOL WINAPI InternetReadFileExA(HINTERNET hFile, LPINTERNET_BUFFERSA lpBuffer,
1726 DWORD dwFlags, DWORD dwContext)
1728 FIXME("stub\n");
1729 return FALSE;
1732 /***********************************************************************
1733 * InternetReadFileExW (WININET.@)
1735 * Read data from an open internet file
1737 * RETURNS
1738 * TRUE on success
1739 * FALSE on failure
1742 BOOL WINAPI InternetReadFileExW(HINTERNET hFile, LPINTERNET_BUFFERSW lpBuffer,
1743 DWORD dwFlags, DWORD dwContext)
1745 FIXME("stub\n");
1747 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1748 return FALSE;
1751 /***********************************************************************
1752 * INET_QueryOptionHelper (internal)
1754 static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD dwOption,
1755 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
1757 LPWININETHANDLEHEADER lpwhh;
1758 BOOL bSuccess = FALSE;
1760 TRACE("(%p, 0x%08lx, %p, %p)\n", hInternet, dwOption, lpBuffer, lpdwBufferLength);
1762 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
1764 switch (dwOption)
1766 case INTERNET_OPTION_HANDLE_TYPE:
1768 ULONG type;
1770 if (!lpwhh)
1772 WARN("Invalid hInternet handle\n");
1773 SetLastError(ERROR_INVALID_HANDLE);
1774 return FALSE;
1777 type = lpwhh->htype;
1779 TRACE("INTERNET_OPTION_HANDLE_TYPE: %ld\n", type);
1781 if (*lpdwBufferLength < sizeof(ULONG))
1782 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1783 else
1785 memcpy(lpBuffer, &type, sizeof(ULONG));
1786 bSuccess = TRUE;
1788 *lpdwBufferLength = sizeof(ULONG);
1789 break;
1792 case INTERNET_OPTION_REQUEST_FLAGS:
1794 ULONG flags = 4;
1795 TRACE("INTERNET_OPTION_REQUEST_FLAGS: %ld\n", flags);
1796 if (*lpdwBufferLength < sizeof(ULONG))
1797 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1798 else
1800 memcpy(lpBuffer, &flags, sizeof(ULONG));
1801 bSuccess = TRUE;
1803 *lpdwBufferLength = sizeof(ULONG);
1804 break;
1807 case INTERNET_OPTION_URL:
1808 case INTERNET_OPTION_DATAFILE_NAME:
1810 if (!lpwhh)
1812 WARN("Invalid hInternet handle\n");
1813 SetLastError(ERROR_INVALID_HANDLE);
1814 return FALSE;
1816 if (lpwhh->htype == WH_HHTTPREQ)
1818 LPWININETHTTPREQW lpreq = (LPWININETHTTPREQW) lpwhh;
1819 WCHAR url[1023];
1820 static const WCHAR szFmt[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
1821 DWORD sizeRequired;
1823 sprintfW(url,szFmt,lpreq->StdHeaders[HTTP_QUERY_HOST].lpszValue,lpreq->lpszPath);
1824 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url));
1825 if(!bIsUnicode)
1827 sizeRequired = WideCharToMultiByte(CP_ACP,0,url,-1,
1828 lpBuffer,*lpdwBufferLength,NULL,NULL);
1829 if (sizeRequired > *lpdwBufferLength)
1830 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1831 else
1832 bSuccess = TRUE;
1833 *lpdwBufferLength = sizeRequired;
1835 else
1837 sizeRequired = (lstrlenW(url)+1) * sizeof(WCHAR);
1838 if (*lpdwBufferLength < sizeRequired)
1839 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1840 else
1842 strcpyW(lpBuffer, url);
1843 bSuccess = TRUE;
1845 *lpdwBufferLength = sizeRequired;
1848 break;
1850 case INTERNET_OPTION_HTTP_VERSION:
1852 if (*lpdwBufferLength < sizeof(HTTP_VERSION_INFO))
1853 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1854 else
1857 * Presently hardcoded to 1.1
1859 ((HTTP_VERSION_INFO*)lpBuffer)->dwMajorVersion = 1;
1860 ((HTTP_VERSION_INFO*)lpBuffer)->dwMinorVersion = 1;
1861 bSuccess = TRUE;
1863 *lpdwBufferLength = sizeof(HTTP_VERSION_INFO);
1864 break;
1866 case INTERNET_OPTION_CONNECTED_STATE:
1868 INTERNET_CONNECTED_INFO * pCi = (INTERNET_CONNECTED_INFO *)lpBuffer;
1869 FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
1871 if (*lpdwBufferLength < sizeof(INTERNET_CONNECTED_INFO))
1872 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1873 else
1875 pCi->dwConnectedState = INTERNET_STATE_CONNECTED;
1876 pCi->dwFlags = 0;
1877 bSuccess = TRUE;
1879 *lpdwBufferLength = sizeof(INTERNET_CONNECTED_INFO);
1880 break;
1882 case INTERNET_OPTION_PROXY:
1884 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW)lpwhh;
1885 WININETAPPINFOW wai;
1887 if (lpwai == NULL)
1889 TRACE("Getting global proxy info\n");
1890 memset(&wai, 0, sizeof(WININETAPPINFOW));
1891 INTERNET_ConfigureProxyFromReg( &wai );
1892 lpwai = &wai;
1895 if (bIsUnicode)
1897 INTERNET_PROXY_INFOW *pPI = (INTERNET_PROXY_INFOW *)lpBuffer;
1898 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
1900 if (lpwai->lpszProxy)
1901 proxyBytesRequired = (lstrlenW(lpwai->lpszProxy) + 1) *
1902 sizeof(WCHAR);
1903 if (lpwai->lpszProxyBypass)
1904 proxyBypassBytesRequired =
1905 (lstrlenW(lpwai->lpszProxyBypass) + 1) * sizeof(WCHAR);
1906 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOW) +
1907 proxyBytesRequired + proxyBypassBytesRequired)
1908 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1909 else
1911 pPI->dwAccessType = lpwai->dwAccessType;
1912 if (lpwai->lpszProxy)
1914 pPI->lpszProxy = (LPWSTR)((LPBYTE)lpBuffer +
1915 sizeof(INTERNET_PROXY_INFOW));
1916 lstrcpyW((LPWSTR)pPI->lpszProxy, lpwai->lpszProxy);
1918 else
1919 pPI->lpszProxy = NULL;
1920 if (lpwai->lpszProxyBypass)
1922 pPI->lpszProxyBypass = (LPWSTR)((LPBYTE)lpBuffer +
1923 sizeof(INTERNET_PROXY_INFOW) + proxyBytesRequired);
1924 lstrcpyW((LPWSTR)pPI->lpszProxyBypass,
1925 lpwai->lpszProxyBypass);
1927 else
1928 pPI->lpszProxyBypass = NULL;
1929 bSuccess = TRUE;
1931 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOW) +
1932 proxyBytesRequired + proxyBypassBytesRequired;
1934 else
1936 INTERNET_PROXY_INFOA *pPI = (INTERNET_PROXY_INFOA *)lpBuffer;
1937 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
1939 if (lpwai->lpszProxy)
1940 proxyBytesRequired = WideCharToMultiByte(CP_ACP, 0,
1941 lpwai->lpszProxy, -1, NULL, 0, NULL, NULL);
1942 if (lpwai->lpszProxyBypass)
1943 proxyBypassBytesRequired = WideCharToMultiByte(CP_ACP, 0,
1944 lpwai->lpszProxyBypass, -1, NULL, 0, NULL, NULL);
1945 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOA) +
1946 proxyBytesRequired + proxyBypassBytesRequired)
1947 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1948 else
1950 pPI->dwAccessType = lpwai->dwAccessType;
1951 FIXME("INTERNET_OPTION_PROXY: Stub\n");
1952 if (lpwai->lpszProxy)
1954 pPI->lpszProxy = (LPSTR)((LPBYTE)lpBuffer +
1955 sizeof(INTERNET_PROXY_INFOA));
1956 WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxy, -1,
1957 (LPSTR)pPI->lpszProxy, proxyBytesRequired, NULL, NULL);
1959 else
1960 pPI->lpszProxy = NULL;
1961 if (lpwai->lpszProxyBypass)
1963 pPI->lpszProxyBypass = (LPSTR)((LPBYTE)lpBuffer +
1964 sizeof(INTERNET_PROXY_INFOA) + proxyBytesRequired);
1965 WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxyBypass,
1966 -1, (LPSTR)pPI->lpszProxyBypass,
1967 proxyBypassBytesRequired,
1968 NULL, NULL);
1970 else
1971 pPI->lpszProxyBypass = NULL;
1972 bSuccess = TRUE;
1974 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOA) +
1975 proxyBytesRequired + proxyBypassBytesRequired;
1977 break;
1979 case INTERNET_OPTION_SECURITY_FLAGS:
1980 FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
1981 break;
1983 default:
1984 FIXME("Stub! %ld \n",dwOption);
1985 break;
1987 if (lpwhh)
1988 WININET_Release( lpwhh );
1990 return bSuccess;
1993 /***********************************************************************
1994 * InternetQueryOptionW (WININET.@)
1996 * Queries an options on the specified handle
1998 * RETURNS
1999 * TRUE on success
2000 * FALSE on failure
2003 BOOL WINAPI InternetQueryOptionW(HINTERNET hInternet, DWORD dwOption,
2004 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2006 return INET_QueryOptionHelper(TRUE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2009 /***********************************************************************
2010 * InternetQueryOptionA (WININET.@)
2012 * Queries an options on the specified handle
2014 * RETURNS
2015 * TRUE on success
2016 * FALSE on failure
2019 BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
2020 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2022 return INET_QueryOptionHelper(FALSE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2026 /***********************************************************************
2027 * InternetSetOptionW (WININET.@)
2029 * Sets an options on the specified handle
2031 * RETURNS
2032 * TRUE on success
2033 * FALSE on failure
2036 BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
2037 LPVOID lpBuffer, DWORD dwBufferLength)
2039 LPWININETHANDLEHEADER lpwhh;
2040 BOOL ret = TRUE;
2042 TRACE("0x%08lx\n", dwOption);
2044 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
2045 if( !lpwhh )
2046 return FALSE;
2048 switch (dwOption)
2050 case INTERNET_OPTION_HTTP_VERSION:
2052 HTTP_VERSION_INFO* pVersion=(HTTP_VERSION_INFO*)lpBuffer;
2053 FIXME("Option INTERNET_OPTION_HTTP_VERSION(%ld,%ld): STUB\n",pVersion->dwMajorVersion,pVersion->dwMinorVersion);
2055 break;
2056 case INTERNET_OPTION_ERROR_MASK:
2058 unsigned long flags=*(unsigned long*)lpBuffer;
2059 FIXME("Option INTERNET_OPTION_ERROR_MASK(%ld): STUB\n",flags);
2061 break;
2062 case INTERNET_OPTION_CODEPAGE:
2064 unsigned long codepage=*(unsigned long*)lpBuffer;
2065 FIXME("Option INTERNET_OPTION_CODEPAGE (%ld): STUB\n",codepage);
2067 break;
2068 case INTERNET_OPTION_REQUEST_PRIORITY:
2070 unsigned long priority=*(unsigned long*)lpBuffer;
2071 FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%ld): STUB\n",priority);
2073 break;
2074 case INTERNET_OPTION_CONNECT_TIMEOUT:
2076 unsigned long connecttimeout=*(unsigned long*)lpBuffer;
2077 FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%ld): STUB\n",connecttimeout);
2079 break;
2080 case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT:
2082 unsigned long receivetimeout=*(unsigned long*)lpBuffer;
2083 FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%ld): STUB\n",receivetimeout);
2085 break;
2086 case INTERNET_OPTION_RESET_URLCACHE_SESSION:
2087 FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
2088 break;
2089 case INTERNET_OPTION_END_BROWSER_SESSION:
2090 FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
2091 break;
2092 case INTERNET_OPTION_CONNECTED_STATE:
2093 FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
2094 break;
2095 default:
2096 FIXME("Option %ld STUB\n",dwOption);
2097 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2098 ret = FALSE;
2099 break;
2101 WININET_Release( lpwhh );
2103 return TRUE;
2107 /***********************************************************************
2108 * InternetSetOptionA (WININET.@)
2110 * Sets an options on the specified handle.
2112 * RETURNS
2113 * TRUE on success
2114 * FALSE on failure
2117 BOOL WINAPI InternetSetOptionA(HINTERNET hInternet, DWORD dwOption,
2118 LPVOID lpBuffer, DWORD dwBufferLength)
2120 LPVOID wbuffer;
2121 DWORD wlen;
2122 BOOL r;
2124 switch( dwOption )
2126 case INTERNET_OPTION_PROXY:
2128 LPINTERNET_PROXY_INFOA pi = (LPINTERNET_PROXY_INFOA) lpBuffer;
2129 LPINTERNET_PROXY_INFOW piw;
2130 DWORD proxlen, prbylen;
2131 LPWSTR prox, prby;
2133 proxlen = MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, NULL, 0);
2134 prbylen= MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, NULL, 0);
2135 wlen = sizeof(*piw) + proxlen + prbylen;
2136 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2137 piw = (LPINTERNET_PROXY_INFOW) wbuffer;
2138 piw->dwAccessType = pi->dwAccessType;
2139 prox = (LPWSTR) &piw[1];
2140 prby = &prox[proxlen+1];
2141 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, prox, proxlen);
2142 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, prby, prbylen);
2143 piw->lpszProxy = prox;
2144 piw->lpszProxyBypass = prby;
2146 break;
2147 case INTERNET_OPTION_USER_AGENT:
2148 case INTERNET_OPTION_USERNAME:
2149 case INTERNET_OPTION_PASSWORD:
2150 wlen = MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2151 NULL, 0 );
2152 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2153 MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2154 wbuffer, wlen );
2155 break;
2156 default:
2157 wbuffer = lpBuffer;
2158 wlen = dwBufferLength;
2161 r = InternetSetOptionW(hInternet,dwOption, wbuffer, wlen);
2163 if( lpBuffer != wbuffer )
2164 HeapFree( GetProcessHeap(), 0, wbuffer );
2166 return r;
2170 /***********************************************************************
2171 * InternetSetOptionExA (WININET.@)
2173 BOOL WINAPI InternetSetOptionExA(HINTERNET hInternet, DWORD dwOption,
2174 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2176 FIXME("Flags %08lx ignored\n", dwFlags);
2177 return InternetSetOptionA( hInternet, dwOption, lpBuffer, dwBufferLength );
2180 /***********************************************************************
2181 * InternetSetOptionExW (WININET.@)
2183 BOOL WINAPI InternetSetOptionExW(HINTERNET hInternet, DWORD dwOption,
2184 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2186 FIXME("Flags %08lx ignored\n", dwFlags);
2187 if( dwFlags & ~ISO_VALID_FLAGS )
2189 SetLastError( ERROR_INVALID_PARAMETER );
2190 return FALSE;
2192 return InternetSetOptionW( hInternet, dwOption, lpBuffer, dwBufferLength );
2195 static const WCHAR WININET_wkday[7][4] =
2196 { { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
2197 { 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
2198 static const WCHAR WININET_month[12][4] =
2199 { { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
2200 { 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
2201 { 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
2203 /***********************************************************************
2204 * InternetTimeFromSystemTimeA (WININET.@)
2206 BOOL WINAPI InternetTimeFromSystemTimeA( const SYSTEMTIME* time, DWORD format, LPSTR string, DWORD size )
2208 BOOL ret;
2209 WCHAR stringW[INTERNET_RFC1123_BUFSIZE];
2211 TRACE( "%p 0x%08lx %p 0x%08lx\n", time, format, string, size );
2213 ret = InternetTimeFromSystemTimeW( time, format, stringW, sizeof(stringW) );
2214 if (ret) WideCharToMultiByte( CP_ACP, 0, stringW, -1, string, size, NULL, NULL );
2216 return ret;
2219 /***********************************************************************
2220 * InternetTimeFromSystemTimeW (WININET.@)
2222 BOOL WINAPI InternetTimeFromSystemTimeW( const SYSTEMTIME* time, DWORD format, LPWSTR string, DWORD size )
2224 static const WCHAR date[] =
2225 { '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
2226 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
2228 TRACE( "%p 0x%08lx %p 0x%08lx\n", time, format, string, size );
2230 if (!time || !string) return FALSE;
2232 if (format != INTERNET_RFC1123_FORMAT || size < INTERNET_RFC1123_BUFSIZE * sizeof(WCHAR))
2233 return FALSE;
2235 sprintfW( string, date,
2236 WININET_wkday[time->wDayOfWeek],
2237 time->wDay,
2238 WININET_month[time->wMonth - 1],
2239 time->wYear,
2240 time->wHour,
2241 time->wMinute,
2242 time->wSecond );
2244 return TRUE;
2247 /***********************************************************************
2248 * InternetTimeToSystemTimeA (WININET.@)
2250 BOOL WINAPI InternetTimeToSystemTimeA( LPCSTR string, SYSTEMTIME* time, DWORD reserved )
2252 BOOL ret = FALSE;
2253 WCHAR *stringW;
2254 int len;
2256 TRACE( "%s %p 0x%08lx\n", debugstr_a(string), time, reserved );
2258 len = MultiByteToWideChar( CP_ACP, 0, string, -1, NULL, 0 );
2259 stringW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
2261 if (stringW)
2263 MultiByteToWideChar( CP_ACP, 0, string, -1, stringW, len );
2264 ret = InternetTimeToSystemTimeW( stringW, time, reserved );
2265 HeapFree( GetProcessHeap(), 0, stringW );
2267 return ret;
2270 /***********************************************************************
2271 * InternetTimeToSystemTimeW (WININET.@)
2273 BOOL WINAPI InternetTimeToSystemTimeW( LPCWSTR string, SYSTEMTIME* time, DWORD reserved )
2275 unsigned int i;
2276 WCHAR *s = (LPWSTR)string;
2278 TRACE( "%s %p 0x%08lx\n", debugstr_w(string), time, reserved );
2280 if (!string || !time) return FALSE;
2282 /* Windows does this too */
2283 GetSystemTime( time );
2285 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
2286 * a SYSTEMTIME structure.
2289 while (*s && !isalphaW( *s )) s++;
2290 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2291 time->wDayOfWeek = 7;
2293 for (i = 0; i < 7; i++)
2295 if (toupperW( WININET_wkday[i][0] ) == toupperW( s[0] ) &&
2296 toupperW( WININET_wkday[i][1] ) == toupperW( s[1] ) &&
2297 toupperW( WININET_wkday[i][2] ) == toupperW( s[2] ) )
2299 time->wDayOfWeek = i;
2300 break;
2304 if (time->wDayOfWeek > 6) return TRUE;
2305 while (*s && !isdigitW( *s )) s++;
2306 time->wDay = strtolW( s, &s, 10 );
2308 while (*s && !isalphaW( *s )) s++;
2309 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2310 time->wMonth = 0;
2312 for (i = 0; i < 12; i++)
2314 if (toupperW( WININET_month[i][0]) == toupperW( s[0] ) &&
2315 toupperW( WININET_month[i][1]) == toupperW( s[1] ) &&
2316 toupperW( WININET_month[i][2]) == toupperW( s[2] ) )
2318 time->wMonth = i + 1;
2319 break;
2322 if (time->wMonth == 0) return TRUE;
2324 while (*s && !isdigitW( *s )) s++;
2325 if (*s == '\0') return TRUE;
2326 time->wYear = strtolW( s, &s, 10 );
2328 while (*s && !isdigitW( *s )) s++;
2329 if (*s == '\0') return TRUE;
2330 time->wHour = strtolW( s, &s, 10 );
2332 while (*s && !isdigitW( *s )) s++;
2333 if (*s == '\0') return TRUE;
2334 time->wMinute = strtolW( s, &s, 10 );
2336 while (*s && !isdigitW( *s )) s++;
2337 if (*s == '\0') return TRUE;
2338 time->wSecond = strtolW( s, &s, 10 );
2340 time->wMilliseconds = 0;
2341 return TRUE;
2344 /***********************************************************************
2345 * InternetCheckConnectionA (WININET.@)
2347 * Pings a requested host to check internet connection
2349 * RETURNS
2350 * TRUE on success and FALSE on failure. If a failure then
2351 * ERROR_NOT_CONNECTED is placesd into GetLastError
2354 BOOL WINAPI InternetCheckConnectionA( LPCSTR lpszUrl, DWORD dwFlags, DWORD dwReserved )
2357 * this is a kludge which runs the resident ping program and reads the output.
2359 * Anyone have a better idea?
2362 BOOL rc = FALSE;
2363 char command[1024];
2364 char host[1024];
2365 int status = -1;
2367 FIXME("\n");
2370 * Crack or set the Address
2372 if (lpszUrl == NULL)
2375 * According to the doc we are supost to use the ip for the next
2376 * server in the WnInet internal server database. I have
2377 * no idea what that is or how to get it.
2379 * So someone needs to implement this.
2381 FIXME("Unimplemented with URL of NULL\n");
2382 return TRUE;
2384 else
2386 URL_COMPONENTSA components;
2388 ZeroMemory(&components,sizeof(URL_COMPONENTSA));
2389 components.lpszHostName = (LPSTR)&host;
2390 components.dwHostNameLength = 1024;
2392 if (!InternetCrackUrlA(lpszUrl,0,0,&components))
2393 goto End;
2395 TRACE("host name : %s\n",components.lpszHostName);
2399 * Build our ping command
2401 strcpy(command,"ping -w 1 ");
2402 strcat(command,host);
2403 strcat(command," >/dev/null 2>/dev/null");
2405 TRACE("Ping command is : %s\n",command);
2407 status = system(command);
2409 TRACE("Ping returned a code of %i \n",status);
2411 /* Ping return code of 0 indicates success */
2412 if (status == 0)
2413 rc = TRUE;
2415 End:
2417 if (rc == FALSE)
2418 SetLastError(ERROR_NOT_CONNECTED);
2420 return rc;
2424 /***********************************************************************
2425 * InternetCheckConnectionW (WININET.@)
2427 * Pings a requested host to check internet connection
2429 * RETURNS
2430 * TRUE on success and FALSE on failure. If a failure then
2431 * ERROR_NOT_CONNECTED is placed into GetLastError
2434 BOOL WINAPI InternetCheckConnectionW(LPCWSTR lpszUrl, DWORD dwFlags, DWORD dwReserved)
2436 CHAR *szUrl;
2437 INT len;
2438 BOOL rc;
2440 len = WideCharToMultiByte(CP_ACP, 0, lpszUrl, -1, NULL, 0, NULL, NULL);
2441 if (!(szUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(CHAR))))
2442 return FALSE;
2443 WideCharToMultiByte(CP_ACP, 0, lpszUrl, -1, szUrl, len, NULL, NULL);
2444 rc = InternetCheckConnectionA((LPCSTR)szUrl, dwFlags, dwReserved);
2445 HeapFree(GetProcessHeap(), 0, szUrl);
2447 return rc;
2451 /**********************************************************
2452 * INTERNET_InternetOpenUrlW (internal)
2454 * Opens an URL
2456 * RETURNS
2457 * handle of connection or NULL on failure
2459 HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
2460 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
2462 URL_COMPONENTSW urlComponents;
2463 WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
2464 WCHAR password[1024], path[2048], extra[1024];
2465 HINTERNET client = NULL, client1 = NULL;
2467 TRACE("(%p, %s, %s, %08lx, %08lx, %08lx)\n", hIC, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2468 dwHeadersLength, dwFlags, dwContext);
2470 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
2471 urlComponents.lpszScheme = protocol;
2472 urlComponents.dwSchemeLength = 32;
2473 urlComponents.lpszHostName = hostName;
2474 urlComponents.dwHostNameLength = MAXHOSTNAME;
2475 urlComponents.lpszUserName = userName;
2476 urlComponents.dwUserNameLength = 1024;
2477 urlComponents.lpszPassword = password;
2478 urlComponents.dwPasswordLength = 1024;
2479 urlComponents.lpszUrlPath = path;
2480 urlComponents.dwUrlPathLength = 2048;
2481 urlComponents.lpszExtraInfo = extra;
2482 urlComponents.dwExtraInfoLength = 1024;
2483 if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
2484 return NULL;
2485 switch(urlComponents.nScheme) {
2486 case INTERNET_SCHEME_FTP:
2487 if(urlComponents.nPort == 0)
2488 urlComponents.nPort = INTERNET_DEFAULT_FTP_PORT;
2489 client = FTP_Connect(hIC, hostName, urlComponents.nPort,
2490 userName, password, dwFlags, dwContext, INET_OPENURL);
2491 if(client == NULL)
2492 break;
2493 client1 = FtpOpenFileW(client, path, GENERIC_READ, dwFlags, dwContext);
2494 if(client1 == NULL) {
2495 InternetCloseHandle(client);
2496 break;
2498 break;
2500 case INTERNET_SCHEME_HTTP:
2501 case INTERNET_SCHEME_HTTPS: {
2502 static const WCHAR szStars[] = { '*','/','*', 0 };
2503 LPCWSTR accept[2] = { szStars, NULL };
2504 if(urlComponents.nPort == 0) {
2505 if(urlComponents.nScheme == INTERNET_SCHEME_HTTP)
2506 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
2507 else
2508 urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
2510 /* FIXME: should use pointers, not handles, as handles are not thread-safe */
2511 client = HTTP_Connect(hIC, hostName, urlComponents.nPort,
2512 userName, password, dwFlags, dwContext, INET_OPENURL);
2513 if(client == NULL)
2514 break;
2515 client1 = HttpOpenRequestW(client, NULL, path, NULL, NULL, accept, dwFlags, dwContext);
2516 if(client1 == NULL) {
2517 InternetCloseHandle(client);
2518 break;
2520 HttpAddRequestHeadersW(client1, lpszHeaders, dwHeadersLength, HTTP_ADDREQ_FLAG_ADD);
2521 if (!HttpSendRequestW(client1, NULL, 0, NULL, 0)) {
2522 InternetCloseHandle(client1);
2523 client1 = NULL;
2524 break;
2527 case INTERNET_SCHEME_GOPHER:
2528 /* gopher doesn't seem to be implemented in wine, but it's supposed
2529 * to be supported by InternetOpenUrlA. */
2530 default:
2531 break;
2534 TRACE(" %p <--\n", client1);
2536 return client1;
2539 /**********************************************************
2540 * InternetOpenUrlW (WININET.@)
2542 * Opens an URL
2544 * RETURNS
2545 * handle of connection or NULL on failure
2547 HINTERNET WINAPI InternetOpenUrlW(HINTERNET hInternet, LPCWSTR lpszUrl,
2548 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
2550 HINTERNET ret = NULL;
2551 LPWININETAPPINFOW hIC = NULL;
2553 if (TRACE_ON(wininet)) {
2554 TRACE("(%p, %s, %s, %08lx, %08lx, %08lx)\n", hInternet, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2555 dwHeadersLength, dwFlags, dwContext);
2556 TRACE(" flags :");
2557 dump_INTERNET_FLAGS(dwFlags);
2560 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
2561 if (NULL == hIC || hIC->hdr.htype != WH_HINIT) {
2562 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
2563 goto lend;
2566 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) {
2567 WORKREQUEST workRequest;
2568 struct WORKREQ_INTERNETOPENURLW *req;
2570 workRequest.asyncall = INTERNETOPENURLW;
2571 workRequest.hdr = WININET_AddRef( &hIC->hdr );
2572 req = &workRequest.u.InternetOpenUrlW;
2573 if (lpszUrl)
2574 req->lpszUrl = WININET_strdupW(lpszUrl);
2575 else
2576 req->lpszUrl = 0;
2577 if (lpszHeaders)
2578 req->lpszHeaders = WININET_strdupW(lpszHeaders);
2579 else
2580 req->lpszHeaders = 0;
2581 req->dwHeadersLength = dwHeadersLength;
2582 req->dwFlags = dwFlags;
2583 req->dwContext = dwContext;
2585 INTERNET_AsyncCall(&workRequest);
2587 * This is from windows.
2589 SetLastError(ERROR_IO_PENDING);
2590 } else {
2591 ret = INTERNET_InternetOpenUrlW(hIC, lpszUrl, lpszHeaders, dwHeadersLength, dwFlags, dwContext);
2594 lend:
2595 if( hIC )
2596 WININET_Release( &hIC->hdr );
2597 TRACE(" %p <--\n", ret);
2599 return ret;
2602 /**********************************************************
2603 * InternetOpenUrlA (WININET.@)
2605 * Opens an URL
2607 * RETURNS
2608 * handle of connection or NULL on failure
2610 HINTERNET WINAPI InternetOpenUrlA(HINTERNET hInternet, LPCSTR lpszUrl,
2611 LPCSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
2613 HINTERNET rc = (HINTERNET)NULL;
2615 INT lenUrl;
2616 INT lenHeaders = 0;
2617 LPWSTR szUrl = NULL;
2618 LPWSTR szHeaders = NULL;
2620 TRACE("\n");
2622 if(lpszUrl) {
2623 lenUrl = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0 );
2624 szUrl = HeapAlloc(GetProcessHeap(), 0, lenUrl*sizeof(WCHAR));
2625 if(!szUrl)
2626 return (HINTERNET)NULL;
2627 MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, lenUrl);
2630 if(lpszHeaders) {
2631 lenHeaders = MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, NULL, 0 );
2632 szHeaders = HeapAlloc(GetProcessHeap(), 0, lenHeaders*sizeof(WCHAR));
2633 if(!szHeaders) {
2634 HeapFree(GetProcessHeap(), 0, szUrl);
2635 return (HINTERNET)NULL;
2637 MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, szHeaders, lenHeaders);
2640 rc = InternetOpenUrlW(hInternet, szUrl, szHeaders,
2641 lenHeaders, dwFlags, dwContext);
2643 HeapFree(GetProcessHeap(), 0, szUrl);
2644 HeapFree(GetProcessHeap(), 0, szHeaders);
2646 return rc;
2650 /***********************************************************************
2651 * INTERNET_SetLastError (internal)
2653 * Set last thread specific error
2655 * RETURNS
2658 void INTERNET_SetLastError(DWORD dwError)
2660 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
2662 SetLastError(dwError);
2663 if(lpwite)
2664 lpwite->dwError = dwError;
2668 /***********************************************************************
2669 * INTERNET_GetLastError (internal)
2671 * Get last thread specific error
2673 * RETURNS
2676 DWORD INTERNET_GetLastError(void)
2678 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
2679 return lpwite->dwError;
2683 /***********************************************************************
2684 * INTERNET_WorkerThreadFunc (internal)
2686 * Worker thread execution function
2688 * RETURNS
2691 static DWORD INTERNET_WorkerThreadFunc(LPVOID *lpvParam)
2693 DWORD dwWaitRes;
2695 while (1)
2697 if(dwNumJobs > 0) {
2698 INTERNET_ExecuteWork();
2699 continue;
2701 dwWaitRes = WaitForMultipleObjects(2, hEventArray, FALSE, MAX_IDLE_WORKER);
2703 if (dwWaitRes == WAIT_OBJECT_0 + 1)
2704 INTERNET_ExecuteWork();
2705 else
2706 break;
2708 InterlockedIncrement(&dwNumIdleThreads);
2711 InterlockedDecrement(&dwNumIdleThreads);
2712 InterlockedDecrement(&dwNumThreads);
2713 TRACE("Worker thread exiting\n");
2714 return TRUE;
2718 /***********************************************************************
2719 * INTERNET_InsertWorkRequest (internal)
2721 * Insert work request into queue
2723 * RETURNS
2726 static BOOL INTERNET_InsertWorkRequest(LPWORKREQUEST lpWorkRequest)
2728 BOOL bSuccess = FALSE;
2729 LPWORKREQUEST lpNewRequest;
2731 TRACE("\n");
2733 lpNewRequest = HeapAlloc(GetProcessHeap(), 0, sizeof(WORKREQUEST));
2734 if (lpNewRequest)
2736 memcpy(lpNewRequest, lpWorkRequest, sizeof(WORKREQUEST));
2737 lpNewRequest->prev = NULL;
2739 EnterCriticalSection(&csQueue);
2741 lpNewRequest->next = lpWorkQueueTail;
2742 if (lpWorkQueueTail)
2743 lpWorkQueueTail->prev = lpNewRequest;
2744 lpWorkQueueTail = lpNewRequest;
2745 if (!lpHeadWorkQueue)
2746 lpHeadWorkQueue = lpWorkQueueTail;
2748 LeaveCriticalSection(&csQueue);
2750 bSuccess = TRUE;
2751 InterlockedIncrement(&dwNumJobs);
2754 return bSuccess;
2758 /***********************************************************************
2759 * INTERNET_GetWorkRequest (internal)
2761 * Retrieves work request from queue
2763 * RETURNS
2766 static BOOL INTERNET_GetWorkRequest(LPWORKREQUEST lpWorkRequest)
2768 BOOL bSuccess = FALSE;
2769 LPWORKREQUEST lpRequest = NULL;
2771 TRACE("\n");
2773 EnterCriticalSection(&csQueue);
2775 if (lpHeadWorkQueue)
2777 lpRequest = lpHeadWorkQueue;
2778 lpHeadWorkQueue = lpHeadWorkQueue->prev;
2779 if (lpRequest == lpWorkQueueTail)
2780 lpWorkQueueTail = lpHeadWorkQueue;
2783 LeaveCriticalSection(&csQueue);
2785 if (lpRequest)
2787 memcpy(lpWorkRequest, lpRequest, sizeof(WORKREQUEST));
2788 HeapFree(GetProcessHeap(), 0, lpRequest);
2789 bSuccess = TRUE;
2790 InterlockedDecrement(&dwNumJobs);
2793 return bSuccess;
2797 /***********************************************************************
2798 * INTERNET_AsyncCall (internal)
2800 * Retrieves work request from queue
2802 * RETURNS
2805 BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest)
2807 HANDLE hThread;
2808 DWORD dwTID;
2809 BOOL bSuccess = FALSE;
2811 TRACE("\n");
2813 if (InterlockedDecrement(&dwNumIdleThreads) < 0)
2815 InterlockedIncrement(&dwNumIdleThreads);
2817 if (InterlockedIncrement(&dwNumThreads) > MAX_WORKER_THREADS ||
2818 !(hThread = CreateThread(NULL, 0,
2819 (LPTHREAD_START_ROUTINE)INTERNET_WorkerThreadFunc, NULL, 0, &dwTID)))
2821 InterlockedDecrement(&dwNumThreads);
2822 INTERNET_SetLastError(ERROR_INTERNET_ASYNC_THREAD_FAILED);
2823 goto lerror;
2826 TRACE("Created new thread\n");
2829 bSuccess = TRUE;
2830 INTERNET_InsertWorkRequest(lpWorkRequest);
2831 SetEvent(hWorkEvent);
2833 lerror:
2835 return bSuccess;
2839 /***********************************************************************
2840 * INTERNET_ExecuteWork (internal)
2842 * RETURNS
2845 static VOID INTERNET_ExecuteWork(void)
2847 WORKREQUEST workRequest;
2849 TRACE("\n");
2851 if (!INTERNET_GetWorkRequest(&workRequest))
2852 return;
2854 switch (workRequest.asyncall)
2856 case FTPPUTFILEW:
2858 struct WORKREQ_FTPPUTFILEW *req = &workRequest.u.FtpPutFileW;
2859 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2861 TRACE("FTPPUTFILEW %p\n", lpwfs);
2863 FTP_FtpPutFileW(lpwfs, req->lpszLocalFile,
2864 req->lpszNewRemoteFile, req->dwFlags, req->dwContext);
2866 HeapFree(GetProcessHeap(), 0, req->lpszLocalFile);
2867 HeapFree(GetProcessHeap(), 0, req->lpszNewRemoteFile);
2869 break;
2871 case FTPSETCURRENTDIRECTORYW:
2873 struct WORKREQ_FTPSETCURRENTDIRECTORYW *req;
2874 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2876 TRACE("FTPSETCURRENTDIRECTORYW %p\n", lpwfs);
2878 req = &workRequest.u.FtpSetCurrentDirectoryW;
2879 FTP_FtpSetCurrentDirectoryW(lpwfs, req->lpszDirectory);
2880 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
2882 break;
2884 case FTPCREATEDIRECTORYW:
2886 struct WORKREQ_FTPCREATEDIRECTORYW *req;
2887 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2889 TRACE("FTPCREATEDIRECTORYW %p\n", lpwfs);
2891 req = &workRequest.u.FtpCreateDirectoryW;
2892 FTP_FtpCreateDirectoryW(lpwfs, req->lpszDirectory);
2893 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
2895 break;
2897 case FTPFINDFIRSTFILEW:
2899 struct WORKREQ_FTPFINDFIRSTFILEW *req;
2900 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2902 TRACE("FTPFINDFIRSTFILEW %p\n", lpwfs);
2904 req = &workRequest.u.FtpFindFirstFileW;
2905 FTP_FtpFindFirstFileW(lpwfs, req->lpszSearchFile,
2906 req->lpFindFileData, req->dwFlags, req->dwContext);
2907 HeapFree(GetProcessHeap(), 0, req->lpszSearchFile);
2909 break;
2911 case FTPGETCURRENTDIRECTORYW:
2913 struct WORKREQ_FTPGETCURRENTDIRECTORYW *req;
2914 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2916 TRACE("FTPGETCURRENTDIRECTORYW %p\n", lpwfs);
2918 req = &workRequest.u.FtpGetCurrentDirectoryW;
2919 FTP_FtpGetCurrentDirectoryW(lpwfs,
2920 req->lpszDirectory, req->lpdwDirectory);
2922 break;
2924 case FTPOPENFILEW:
2926 struct WORKREQ_FTPOPENFILEW *req = &workRequest.u.FtpOpenFileW;
2927 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2929 TRACE("FTPOPENFILEW %p\n", lpwfs);
2931 FTP_FtpOpenFileW(lpwfs, req->lpszFilename,
2932 req->dwAccess, req->dwFlags, req->dwContext);
2933 HeapFree(GetProcessHeap(), 0, req->lpszFilename);
2935 break;
2937 case FTPGETFILEW:
2939 struct WORKREQ_FTPGETFILEW *req = &workRequest.u.FtpGetFileW;
2940 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2942 TRACE("FTPGETFILEW %p\n", lpwfs);
2944 FTP_FtpGetFileW(lpwfs, req->lpszRemoteFile,
2945 req->lpszNewFile, req->fFailIfExists,
2946 req->dwLocalFlagsAttribute, req->dwFlags, req->dwContext);
2947 HeapFree(GetProcessHeap(), 0, req->lpszRemoteFile);
2948 HeapFree(GetProcessHeap(), 0, req->lpszNewFile);
2950 break;
2952 case FTPDELETEFILEW:
2954 struct WORKREQ_FTPDELETEFILEW *req = &workRequest.u.FtpDeleteFileW;
2955 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2957 TRACE("FTPDELETEFILEW %p\n", lpwfs);
2959 FTP_FtpDeleteFileW(lpwfs, req->lpszFilename);
2960 HeapFree(GetProcessHeap(), 0, req->lpszFilename);
2962 break;
2964 case FTPREMOVEDIRECTORYW:
2966 struct WORKREQ_FTPREMOVEDIRECTORYW *req;
2967 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2969 TRACE("FTPREMOVEDIRECTORYW %p\n", lpwfs);
2971 req = &workRequest.u.FtpRemoveDirectoryW;
2972 FTP_FtpRemoveDirectoryW(lpwfs, req->lpszDirectory);
2973 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
2975 break;
2977 case FTPRENAMEFILEW:
2979 struct WORKREQ_FTPRENAMEFILEW *req = &workRequest.u.FtpRenameFileW;
2980 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2982 TRACE("FTPRENAMEFILEW %p\n", lpwfs);
2984 FTP_FtpRenameFileW(lpwfs, req->lpszSrcFile, req->lpszDestFile);
2985 HeapFree(GetProcessHeap(), 0, req->lpszSrcFile);
2986 HeapFree(GetProcessHeap(), 0, req->lpszDestFile);
2988 break;
2990 case INTERNETFINDNEXTW:
2992 struct WORKREQ_INTERNETFINDNEXTW *req;
2993 LPWININETFINDNEXTW lpwh = (LPWININETFINDNEXTW) workRequest.hdr;
2995 TRACE("INTERNETFINDNEXTW %p\n", lpwh);
2997 req = &workRequest.u.InternetFindNextW;
2998 INTERNET_FindNextFileW(lpwh, req->lpFindFileData);
3000 break;
3002 case HTTPSENDREQUESTW:
3004 struct WORKREQ_HTTPSENDREQUESTW *req = &workRequest.u.HttpSendRequestW;
3005 LPWININETHTTPREQW lpwhr = (LPWININETHTTPREQW) workRequest.hdr;
3007 TRACE("HTTPSENDREQUESTW %p\n", lpwhr);
3009 HTTP_HttpSendRequestW(lpwhr, req->lpszHeader,
3010 req->dwHeaderLength, req->lpOptional, req->dwOptionalLength);
3012 HeapFree(GetProcessHeap(), 0, req->lpszHeader);
3014 break;
3016 case HTTPOPENREQUESTW:
3018 struct WORKREQ_HTTPOPENREQUESTW *req = &workRequest.u.HttpOpenRequestW;
3019 LPWININETHTTPSESSIONW lpwhs = (LPWININETHTTPSESSIONW) workRequest.hdr;
3021 TRACE("HTTPOPENREQUESTW %p\n", lpwhs);
3023 HTTP_HttpOpenRequestW(lpwhs, req->lpszVerb,
3024 req->lpszObjectName, req->lpszVersion, req->lpszReferrer,
3025 req->lpszAcceptTypes, req->dwFlags, req->dwContext);
3027 HeapFree(GetProcessHeap(), 0, req->lpszVerb);
3028 HeapFree(GetProcessHeap(), 0, req->lpszObjectName);
3029 HeapFree(GetProcessHeap(), 0, req->lpszVersion);
3030 HeapFree(GetProcessHeap(), 0, req->lpszReferrer);
3032 break;
3034 case SENDCALLBACK:
3036 struct WORKREQ_SENDCALLBACK *req = &workRequest.u.SendCallback;
3038 TRACE("SENDCALLBACK %p\n", workRequest.hdr);
3040 SendSyncCallback(workRequest.hdr,
3041 req->dwContext, req->dwInternetStatus, req->lpvStatusInfo,
3042 req->dwStatusInfoLength);
3044 /* And frees the copy of the status info */
3045 HeapFree(GetProcessHeap(), 0, req->lpvStatusInfo);
3047 break;
3049 case INTERNETOPENURLW:
3051 struct WORKREQ_INTERNETOPENURLW *req = &workRequest.u.InternetOpenUrlW;
3052 LPWININETAPPINFOW hIC = (LPWININETAPPINFOW) workRequest.hdr;
3054 TRACE("INTERNETOPENURLW %p\n", hIC);
3056 INTERNET_InternetOpenUrlW(hIC, req->lpszUrl,
3057 req->lpszHeaders, req->dwHeadersLength, req->dwFlags, req->dwContext);
3058 HeapFree(GetProcessHeap(), 0, req->lpszUrl);
3059 HeapFree(GetProcessHeap(), 0, req->lpszHeaders);
3061 break;
3063 WININET_Release( workRequest.hdr );
3067 /***********************************************************************
3068 * INTERNET_GetResponseBuffer
3070 * RETURNS
3073 LPSTR INTERNET_GetResponseBuffer(void)
3075 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3076 TRACE("\n");
3077 return lpwite->response;
3080 /***********************************************************************
3081 * INTERNET_GetNextLine (internal)
3083 * Parse next line in directory string listing
3085 * RETURNS
3086 * Pointer to beginning of next line
3087 * NULL on failure
3091 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen)
3093 struct timeval tv;
3094 fd_set infd;
3095 BOOL bSuccess = FALSE;
3096 INT nRecv = 0;
3097 LPSTR lpszBuffer = INTERNET_GetResponseBuffer();
3099 TRACE("\n");
3101 FD_ZERO(&infd);
3102 FD_SET(nSocket, &infd);
3103 tv.tv_sec=RESPONSE_TIMEOUT;
3104 tv.tv_usec=0;
3106 while (nRecv < MAX_REPLY_LEN)
3108 if (select(nSocket+1,&infd,NULL,NULL,&tv) > 0)
3110 if (recv(nSocket, &lpszBuffer[nRecv], 1, 0) <= 0)
3112 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
3113 goto lend;
3116 if (lpszBuffer[nRecv] == '\n')
3118 bSuccess = TRUE;
3119 break;
3121 if (lpszBuffer[nRecv] != '\r')
3122 nRecv++;
3124 else
3126 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT);
3127 goto lend;
3131 lend:
3132 if (bSuccess)
3134 lpszBuffer[nRecv] = '\0';
3135 *dwLen = nRecv - 1;
3136 TRACE(":%d %s\n", nRecv, lpszBuffer);
3137 return lpszBuffer;
3139 else
3141 return NULL;
3145 /***********************************************************************
3148 BOOL WINAPI InternetQueryDataAvailable( HINTERNET hFile,
3149 LPDWORD lpdwNumberOfBytesAvailble,
3150 DWORD dwFlags, DWORD dwConext)
3152 LPWININETHTTPREQW lpwhr;
3153 INT retval = -1;
3154 char buffer[4048];
3156 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hFile );
3157 if (NULL == lpwhr)
3159 SetLastError(ERROR_NO_MORE_FILES);
3160 return FALSE;
3163 TRACE("--> %p %i\n",lpwhr,lpwhr->hdr.htype);
3165 switch (lpwhr->hdr.htype)
3167 case WH_HHTTPREQ:
3168 if (!NETCON_recv(&lpwhr->netConnection, buffer,
3169 4048, MSG_PEEK, (int *)lpdwNumberOfBytesAvailble))
3171 SetLastError(ERROR_NO_MORE_FILES);
3172 retval = FALSE;
3174 else
3175 retval = TRUE;
3176 break;
3178 default:
3179 FIXME("unsupported file type\n");
3180 break;
3182 WININET_Release( &lpwhr->hdr );
3184 TRACE("<-- %i\n",retval);
3185 return (retval+1);
3189 /***********************************************************************
3192 BOOL WINAPI InternetLockRequestFile( HINTERNET hInternet, HANDLE
3193 *lphLockReqHandle)
3195 FIXME("STUB\n");
3196 return FALSE;
3199 BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
3201 FIXME("STUB\n");
3202 return FALSE;
3206 /***********************************************************************
3207 * InternetAutodial
3209 * On windows this function is supposed to dial the default internet
3210 * connection. We don't want to have Wine dial out to the internet so
3211 * we return TRUE by default. It might be nice to check if we are connected.
3213 * RETURNS
3214 * TRUE on success
3215 * FALSE on failure
3218 BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
3220 FIXME("STUB\n");
3222 /* Tell that we are connected to the internet. */
3223 return TRUE;
3226 /***********************************************************************
3227 * InternetAutodialHangup
3229 * Hangs up a connection made with InternetAutodial
3231 * PARAM
3232 * dwReserved
3233 * RETURNS
3234 * TRUE on success
3235 * FALSE on failure
3238 BOOL WINAPI InternetAutodialHangup(DWORD dwReserved)
3240 FIXME("STUB\n");
3242 /* we didn't dial, we don't disconnect */
3243 return TRUE;
3246 /***********************************************************************
3248 * InternetCombineUrlA
3250 * Combine a base URL with a relative URL
3252 * RETURNS
3253 * TRUE on success
3254 * FALSE on failure
3258 BOOL WINAPI InternetCombineUrlA(LPCSTR lpszBaseUrl, LPCSTR lpszRelativeUrl,
3259 LPSTR lpszBuffer, LPDWORD lpdwBufferLength,
3260 DWORD dwFlags)
3262 HRESULT hr=S_OK;
3264 TRACE("(%s, %s, %p, %p, 0x%08lx)\n", debugstr_a(lpszBaseUrl), debugstr_a(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3266 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3267 dwFlags ^= ICU_NO_ENCODE;
3268 hr=UrlCombineA(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3270 return (hr==S_OK);
3273 /***********************************************************************
3275 * InternetCombineUrlW
3277 * Combine a base URL with a relative URL
3279 * RETURNS
3280 * TRUE on success
3281 * FALSE on failure
3285 BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
3286 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength,
3287 DWORD dwFlags)
3289 HRESULT hr=S_OK;
3291 TRACE("(%s, %s, %p, %p, 0x%08lx)\n", debugstr_w(lpszBaseUrl), debugstr_w(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3293 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3294 dwFlags ^= ICU_NO_ENCODE;
3295 hr=UrlCombineW(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3297 return (hr==S_OK);
3300 /***********************************************************************
3302 * InternetCreateUrlA
3304 * RETURNS
3305 * TRUE on success
3306 * FALSE on failure
3309 BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
3310 LPSTR lpszUrl, LPDWORD lpdwUrlLength)
3312 FIXME("\n");
3313 return FALSE;
3316 DWORD WINAPI InternetConfirmZoneCrossingA( HWND hWnd, LPSTR szUrlPrev, LPSTR szUrlNew, BOOL bPost )
3318 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_a(szUrlPrev), debugstr_a(szUrlNew), bPost);
3319 return ERROR_SUCCESS;
3322 DWORD WINAPI InternetConfirmZoneCrossingW( HWND hWnd, LPWSTR szUrlPrev, LPWSTR szUrlNew, BOOL bPost )
3324 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_w(szUrlPrev), debugstr_w(szUrlNew), bPost);
3325 return ERROR_SUCCESS;
3328 DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
3329 LPDWORD lpdwConnection, DWORD dwReserved )
3331 FIXME("(%p, %p, 0x%08lx, %p, 0x%08lx) stub\n", hwndParent, lpszConnectoid, dwFlags,
3332 lpdwConnection, dwReserved);
3333 return ERROR_SUCCESS;
3336 DWORD WINAPI InternetDialW( HWND hwndParent, LPWSTR lpszConnectoid, DWORD dwFlags,
3337 LPDWORD lpdwConnection, DWORD dwReserved )
3339 FIXME("(%p, %p, 0x%08lx, %p, 0x%08lx) stub\n", hwndParent, lpszConnectoid, dwFlags,
3340 lpdwConnection, dwReserved);
3341 return ERROR_SUCCESS;
3344 BOOL WINAPI InternetGoOnlineA( LPSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3346 FIXME("(%s, %p, 0x%08lx) stub\n", debugstr_a(lpszURL), hwndParent, dwReserved);
3347 return TRUE;
3350 BOOL WINAPI InternetGoOnlineW( LPWSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3352 FIXME("(%s, %p, 0x%08lx) stub\n", debugstr_w(lpszURL), hwndParent, dwReserved);
3353 return TRUE;
3356 DWORD WINAPI InternetHangUp( DWORD dwConnection, DWORD dwReserved )
3358 FIXME("(0x%08lx, 0x%08lx) stub\n", dwConnection, dwReserved);
3359 return ERROR_SUCCESS;
3362 BOOL WINAPI CreateMD5SSOHash( PWSTR pszChallengeInfo, PWSTR pwszRealm, PWSTR pwszTarget,
3363 PBYTE pbHexHash )
3365 FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo), debugstr_w(pwszRealm),
3366 debugstr_w(pwszTarget), pbHexHash);
3367 return FALSE;
3370 BOOL WINAPI InternetClearAllPerSiteCookieDecisions( VOID )
3372 FIXME("stub\n");
3373 return TRUE;
3376 BOOL WINAPI InternetEnumPerSiteCookieDecisionA( LPSTR pszSiteName, unsigned long *pcSiteNameSize,
3377 unsigned long *pdwDecision, unsigned long dwIndex )
3379 FIXME("(%s, %p, %p, 0x%08lx) stub\n",
3380 debugstr_a(pszSiteName), pcSiteNameSize, pdwDecision, dwIndex);
3381 return FALSE;
3384 BOOL WINAPI InternetEnumPerSiteCookieDecisionW( LPWSTR pszSiteName, unsigned long *pcSiteNameSize,
3385 unsigned long *pdwDecision, unsigned long dwIndex )
3387 FIXME("(%s, %p, %p, 0x%08lx) stub\n",
3388 debugstr_w(pszSiteName), pcSiteNameSize, pdwDecision, dwIndex);
3389 return FALSE;
3392 BOOL WINAPI InternetGetCookieExA( LPCSTR pchURL, LPCSTR pchCookieName, LPSTR pchCookieData,
3393 LPDWORD pcchCookieData, DWORD dwFlags, LPVOID lpReserved)
3395 FIXME("(%s, %s, %s, %p, 0x%08lx, %p) stub\n",
3396 debugstr_a(pchURL), debugstr_a(pchCookieName), debugstr_a(pchCookieData),
3397 pcchCookieData, dwFlags, lpReserved);
3398 return FALSE;
3401 BOOL WINAPI InternetGetCookieExW( LPCWSTR pchURL, LPCWSTR pchCookieName, LPWSTR pchCookieData,
3402 LPDWORD pcchCookieData, DWORD dwFlags, LPVOID lpReserved)
3404 FIXME("(%s, %s, %s, %p, 0x%08lx, %p) stub\n",
3405 debugstr_w(pchURL), debugstr_w(pchCookieName), debugstr_w(pchCookieData),
3406 pcchCookieData, dwFlags, lpReserved);
3407 return FALSE;
3410 BOOL WINAPI InternetGetPerSiteCookieDecisionA( LPCSTR pwchHostName, unsigned long *pResult )
3412 FIXME("(%s, %p) stub\n", debugstr_a(pwchHostName), pResult);
3413 return FALSE;
3416 BOOL WINAPI InternetGetPerSiteCookieDecisionW( LPCWSTR pwchHostName, unsigned long *pResult )
3418 FIXME("(%s, %p) stub\n", debugstr_w(pwchHostName), pResult);
3419 return FALSE;
3422 BOOL WINAPI InternetSetPerSiteCookieDecisionA( LPCSTR pchHostName, DWORD dwDecision )
3424 FIXME("(%s, 0x%08lx) stub\n", debugstr_a(pchHostName), dwDecision);
3425 return FALSE;
3428 BOOL WINAPI InternetSetPerSiteCookieDecisionW( LPCWSTR pchHostName, DWORD dwDecision )
3430 FIXME("(%s, 0x%08lx) stub\n", debugstr_w(pchHostName), dwDecision);
3431 return FALSE;
3434 DWORD WINAPI InternetSetCookieExA( LPCSTR lpszURL, LPCSTR lpszCookieName, LPCSTR lpszCookieData,
3435 DWORD dwFlags, DWORD_PTR dwReserved)
3437 FIXME("(%s, %s, %s, 0x%08lx, 0x%08lx) stub\n",
3438 debugstr_a(lpszURL), debugstr_a(lpszCookieName), debugstr_a(lpszCookieData),
3439 dwFlags, dwReserved);
3440 return TRUE;
3443 DWORD WINAPI InternetSetCookieExW( LPCWSTR lpszURL, LPCWSTR lpszCookieName, LPCWSTR lpszCookieData,
3444 DWORD dwFlags, DWORD_PTR dwReserved)
3446 FIXME("(%s, %s, %s, 0x%08lx, 0x%08lx) stub\n",
3447 debugstr_w(lpszURL), debugstr_w(lpszCookieName), debugstr_w(lpszCookieData),
3448 dwFlags, dwReserved);
3449 return TRUE;
3452 BOOL WINAPI ResumeSuspendedDownload( HINTERNET hInternet, DWORD dwError )
3454 FIXME("(%p, 0x%08lx) stub\n", hInternet, dwError);
3455 return FALSE;
3458 /***********************************************************************
3460 * InternetCreateUrlW
3462 * RETURNS
3463 * TRUE on success
3464 * FALSE on failure
3467 BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
3468 LPWSTR lpszUrl, LPDWORD lpdwUrlLength)
3470 FIXME("\n");
3471 return FALSE;
3474 /***********************************************************************
3475 * dump_INTERNET_FLAGS
3477 * Helper function to TRACE the internet flags.
3479 * RETURNS
3480 * None
3483 void dump_INTERNET_FLAGS(DWORD dwFlags)
3485 #define FE(x) { x, #x }
3486 static const wininet_flag_info flag[] = {
3487 FE(INTERNET_FLAG_RELOAD),
3488 FE(INTERNET_FLAG_RAW_DATA),
3489 FE(INTERNET_FLAG_EXISTING_CONNECT),
3490 FE(INTERNET_FLAG_ASYNC),
3491 FE(INTERNET_FLAG_PASSIVE),
3492 FE(INTERNET_FLAG_NO_CACHE_WRITE),
3493 FE(INTERNET_FLAG_MAKE_PERSISTENT),
3494 FE(INTERNET_FLAG_FROM_CACHE),
3495 FE(INTERNET_FLAG_SECURE),
3496 FE(INTERNET_FLAG_KEEP_CONNECTION),
3497 FE(INTERNET_FLAG_NO_AUTO_REDIRECT),
3498 FE(INTERNET_FLAG_READ_PREFETCH),
3499 FE(INTERNET_FLAG_NO_COOKIES),
3500 FE(INTERNET_FLAG_NO_AUTH),
3501 FE(INTERNET_FLAG_CACHE_IF_NET_FAIL),
3502 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP),
3503 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS),
3504 FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID),
3505 FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID),
3506 FE(INTERNET_FLAG_RESYNCHRONIZE),
3507 FE(INTERNET_FLAG_HYPERLINK),
3508 FE(INTERNET_FLAG_NO_UI),
3509 FE(INTERNET_FLAG_PRAGMA_NOCACHE),
3510 FE(INTERNET_FLAG_CACHE_ASYNC),
3511 FE(INTERNET_FLAG_FORMS_SUBMIT),
3512 FE(INTERNET_FLAG_NEED_FILE),
3513 FE(INTERNET_FLAG_TRANSFER_ASCII),
3514 FE(INTERNET_FLAG_TRANSFER_BINARY)
3516 #undef FE
3517 int i;
3519 for (i = 0; i < (sizeof(flag) / sizeof(flag[0])); i++) {
3520 if (flag[i].val & dwFlags) {
3521 TRACE(" %s", flag[i].name);
3522 dwFlags &= ~flag[i].val;
3525 if (dwFlags)
3526 TRACE(" Unknown flags (%08lx)\n", dwFlags);
3527 else
3528 TRACE("\n");