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
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
30 #include "wine/port.h"
32 #define MAXHOSTNAME 100 /* from http.c */
37 #include <sys/types.h>
38 #ifdef HAVE_SYS_SOCKET_H
39 # include <sys/socket.h>
41 #ifdef HAVE_SYS_TIME_H
42 # include <sys/time.h>
58 #include "wine/debug.h"
60 #define NO_SHLWAPI_STREAM
63 #include "wine/exception.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)
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 =
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,
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);
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++;
160 LeaveCriticalSection( &WININET_cs );
162 return (HINTERNET) (handle+1);
165 HINTERNET WININET_FindHandle( LPWININETHANDLEHEADER info )
169 EnterCriticalSection( &WININET_cs );
170 for( i=0; i<WININET_dwMaxHandles; i++ )
172 if( info == WININET_Handles[i] )
174 WININET_AddRef( info );
179 LeaveCriticalSection( &WININET_cs );
181 return (HINTERNET) handle;
184 LPWININETHANDLEHEADER WININET_AddRef( LPWININETHANDLEHEADER info )
187 TRACE("%p -> refcount = %ld\n", info, info->dwRefCount );
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);
209 BOOL WININET_Release( LPWININETHANDLEHEADER info )
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 );
221 BOOL WININET_FreeHandle( HINTERNET hinternet )
224 UINT handle = (UINT) hinternet;
225 LPWININETHANDLEHEADER info = NULL;
227 EnterCriticalSection( &WININET_cs );
229 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) )
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;
238 if( WININET_dwNextHandle > handle )
239 WININET_dwNextHandle = handle;
243 LeaveCriticalSection( &WININET_cs );
246 WININET_Release( info );
251 /***********************************************************************
252 * DllMain [Internal] Initializes the internal 'WININET.DLL'.
255 * hinstDLL [I] handle to the DLL's instance
257 * lpvReserved [I] reserved, must be NULL
264 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
266 TRACE("%p,%lx,%p\n", hinstDLL, fdwReason, lpvReserved);
269 case DLL_PROCESS_ATTACH:
271 g_dwTlsErrIndex = TlsAlloc();
273 if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
276 hQuitEvent = CreateEventW(0, TRUE, FALSE, NULL);
277 hWorkEvent = CreateEventW(0, FALSE, FALSE, NULL);
278 InitializeCriticalSection(&csQueue);
280 URLCacheContainers_CreateDefaults();
283 dwNumIdleThreads = 0;
286 WININET_hModule = (HMODULE)hinstDLL;
288 case DLL_THREAD_ATTACH:
290 LPWITHREADERROR lpwite = HeapAlloc(GetProcessHeap(), 0, sizeof(WITHREADERROR));
294 TlsSetValue(g_dwTlsErrIndex, (LPVOID)lpwite);
298 case DLL_THREAD_DETACH:
299 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
301 LPVOID lpwite = TlsGetValue(g_dwTlsErrIndex);
302 HeapFree(GetProcessHeap(), 0, lpwite);
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);
328 /***********************************************************************
329 * InternetInitializeAutoProxyDll (WININET.@)
331 * Setup the internal proxy
340 BOOL WINAPI InternetInitializeAutoProxyDll(DWORD dwReserved)
343 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
347 /***********************************************************************
348 * DetectAutoProxyUrl (WININET.@)
350 * Auto detect the proxy url
356 BOOL WINAPI DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl,
357 DWORD dwAutoProxyUrlLength, DWORD dwDetectFlags)
360 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
365 /***********************************************************************
366 * INTERNET_ConfigureProxyFromReg
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 )
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 )
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,
394 if( (r == ERROR_SUCCESS) && len && (keytype == REG_SZ) )
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 );
407 p += lstrlenW(szHttp);
408 lstrcpyW( szProxy, p );
410 p = strchrW( szProxy, ' ' );
414 lpwai->dwAccessType = INTERNET_OPEN_TYPE_PROXY;
415 lpwai->lpszProxy = szProxy;
417 TRACE("http proxy = %s\n", debugstr_w(lpwai->lpszProxy));
420 ERR("Couldn't read proxy server settings.\n");
423 TRACE("Proxy is not enabled.\n");
429 /***********************************************************************
430 * InternetOpenW (WININET.@)
432 * Per-application initialization of wininet
435 * HINTERNET on success
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)
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;
465 TRACE(" access type : %s\n", access_type_str);
467 dump_INTERNET_FLAGS(dwFlags);
470 /* Clear any error information */
471 INTERNET_SetLastError(0);
473 lpwai = HeapAlloc(GetProcessHeap(), 0, sizeof(WININETAPPINFOW));
476 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
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 );
493 HeapFree( GetProcessHeap(), 0, lpwai );
494 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
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 );
525 WININET_Release( &lpwai->hdr );
527 TRACE("returning %p\n", lpwai);
533 /***********************************************************************
534 * InternetOpenA (WININET.@)
536 * Per-application initialization of wininet
539 * HINTERNET on success
543 HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent, DWORD dwAccessType,
544 LPCSTR lpszProxy, LPCSTR lpszProxyBypass, DWORD dwFlags)
546 HINTERNET rc = (HINTERNET)NULL;
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);
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);
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);
583 /***********************************************************************
584 * InternetGetLastResponseInfoA (WININET.@)
586 * Return last wininet error description on the calling thread
589 * TRUE on success of writing to buffer
593 BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
594 LPSTR lpszBuffer, LPDWORD lpdwBufferLength)
596 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
600 *lpdwError = lpwite->dwError;
603 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
604 *lpdwBufferLength = strlen(lpszBuffer);
607 *lpdwBufferLength = 0;
612 /***********************************************************************
613 * InternetGetLastResponseInfoW (WININET.@)
615 * Return last wininet error description on the calling thread
618 * TRUE on success of writing to buffer
622 BOOL WINAPI InternetGetLastResponseInfoW(LPDWORD lpdwError,
623 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength)
625 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
629 *lpdwError = lpwite->dwError;
632 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
633 *lpdwBufferLength = lstrlenW(lpszBuffer);
636 *lpdwBufferLength = 0;
641 /***********************************************************************
642 * InternetGetConnectedState (WININET.@)
644 * Return connected state
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);
657 FIXME("always returning LAN connection.\n");
658 *lpdwStatus = INTERNET_CONNECTION_LAN;
664 /***********************************************************************
665 * InternetGetConnectedStateExW (WININET.@)
667 * Return connected state
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.
678 * if lpdwStatus is not null, return the status (off line,
679 * modem, lan...) in it.
680 * FALSE if not connected
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);
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;
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,
724 if (rc && lpwszConnectionName)
726 WideCharToMultiByte(CP_ACP,0,lpwszConnectionName,-1,lpszConnectionName,
727 dwNameLen, NULL, NULL);
729 HeapFree(GetProcessHeap(),0,lpwszConnectionName);
736 /***********************************************************************
737 * InternetConnectW (WININET.@)
739 * Open a ftp, gopher or http session
742 * HINTERNET a session handle on success
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) )
766 case INTERNET_SERVICE_FTP:
767 rc = FTP_Connect(hIC, lpszServerName, nServerPort,
768 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
771 case INTERNET_SERVICE_HTTP:
772 rc = HTTP_Connect(hIC, lpszServerName, nServerPort,
773 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
776 case INTERNET_SERVICE_GOPHER:
782 WININET_Release( &hIC->hdr );
784 TRACE("returning %p\n", rc);
789 /***********************************************************************
790 * InternetConnectA (WININET.@)
792 * Open a ftp, gopher or http session
795 * HINTERNET a session handle on success
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;
806 LPWSTR szServerName = NULL;
807 LPWSTR szUserName = NULL;
808 LPWSTR szPassword = NULL;
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);
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);
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);
840 /***********************************************************************
841 * InternetFindNextFileA (WININET.@)
843 * Continues a file search from a previous call to FindFirstFile
850 BOOL WINAPI InternetFindNextFileA(HINTERNET hFind, LPVOID lpvFindData)
855 ret = InternetFindNextFileW(hFind, lpvFindData?&fd:NULL);
857 WININET_find_data_WtoA(&fd, (LPWIN32_FIND_DATAA)lpvFindData);
861 /***********************************************************************
862 * InternetFindNextFileW (WININET.@)
864 * Continues a file search from a previous call to FindFirstFile
871 BOOL WINAPI InternetFindNextFileW(HINTERNET hFind, LPVOID lpvFindData)
873 LPWININETAPPINFOW hIC = NULL;
874 LPWININETFINDNEXTW lpwh;
875 BOOL bSuccess = FALSE;
879 lpwh = (LPWININETFINDNEXTW) WININET_GetObject( hFind );
880 if (NULL == lpwh || lpwh->hdr.htype != WH_HFINDNEXT)
882 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
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);
901 bSuccess = INTERNET_FindNextFileW(lpwh, lpvFindData);
905 WININET_Release( &lpwh->hdr );
909 /***********************************************************************
910 * INTERNET_FindNextFileW (Internal)
912 * Continues a file search from a previous call to FindFirstFile
919 BOOL WINAPI INTERNET_FindNextFileW(LPWININETFINDNEXTW lpwh, LPVOID lpvFindData)
921 BOOL bSuccess = TRUE;
922 LPWIN32_FIND_DATAW lpFindFileData;
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);
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);
950 FTP_ConvertFileProp(&lpwh->lpafp[lpwh->index], lpFindFileData);
953 TRACE("\nName: %s\nSize: %ld\n", debugstr_w(lpFindFileData->cFileName), lpFindFileData->nFileSizeLow);
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));
974 /***********************************************************************
975 * INTERNET_CloseHandle (internal)
977 * Close internet handle
983 static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr)
985 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW) hdr;
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
1008 BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
1010 LPWININETHANDLEHEADER lpwh;
1012 TRACE("%p\n",hInternet);
1014 lpwh = WININET_GetObject( hInternet );
1017 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
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 );
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 TRACE("%p %p %p %ld %p %p\n", lppszComponent, dwComponentLen, lpwszComponent, dwwComponentLen, lpszStart, lpwszStart);
1045 if (*dwComponentLen != 0)
1047 DWORD nASCIILength=WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,NULL,0,NULL,NULL);
1048 if (*lppszComponent == NULL)
1050 int nASCIIOffset=WideCharToMultiByte(CP_ACP,0,lpwszStart,lpwszComponent-lpwszStart,NULL,0,NULL,NULL);
1051 *lppszComponent = (LPSTR)lpszStart+nASCIIOffset;
1052 *dwComponentLen = nASCIILength;
1056 DWORD ncpylen = min((*dwComponentLen)-1, nASCIILength);
1057 WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,*lppszComponent,ncpylen+1,NULL,NULL);
1058 (*lppszComponent)[ncpylen]=0;
1059 *dwComponentLen = ncpylen;
1065 /***********************************************************************
1066 * InternetCrackUrlA (WININET.@)
1068 * Break up URL into its components
1070 * TODO: Handle dwFlags
1077 BOOL WINAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
1078 LPURL_COMPONENTSA lpUrlComponents)
1081 URL_COMPONENTSW UCW;
1084 TRACE("(%s %lu %lx %p)\n", debugstr_a(lpszUrl), dwUrlLength, dwFlags, lpUrlComponents);
1087 nLength=MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,NULL,0);
1089 /* if dwUrlLength=-1 then nLength includes null but length to
1090 InternetCrackUrlW should not include it */
1091 if (dwUrlLength == -1) nLength--;
1093 lpwszUrl=HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WCHAR)*nLength);
1094 MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,lpwszUrl,nLength);
1096 memset(&UCW,0,sizeof(UCW));
1097 if(lpUrlComponents->dwHostNameLength!=0)
1098 UCW.dwHostNameLength= lpUrlComponents->dwHostNameLength;
1099 if(lpUrlComponents->dwUserNameLength!=0)
1100 UCW.dwUserNameLength=lpUrlComponents->dwUserNameLength;
1101 if(lpUrlComponents->dwPasswordLength!=0)
1102 UCW.dwPasswordLength=lpUrlComponents->dwPasswordLength;
1103 if(lpUrlComponents->dwUrlPathLength!=0)
1104 UCW.dwUrlPathLength=lpUrlComponents->dwUrlPathLength;
1105 if(lpUrlComponents->dwSchemeLength!=0)
1106 UCW.dwSchemeLength=lpUrlComponents->dwSchemeLength;
1107 if(lpUrlComponents->dwExtraInfoLength!=0)
1108 UCW.dwExtraInfoLength=lpUrlComponents->dwExtraInfoLength;
1109 if(!InternetCrackUrlW(lpwszUrl,nLength,dwFlags,&UCW))
1111 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1115 ConvertUrlComponentValue(&lpUrlComponents->lpszHostName, &lpUrlComponents->dwHostNameLength,
1116 UCW.lpszHostName, UCW.dwHostNameLength,
1118 ConvertUrlComponentValue(&lpUrlComponents->lpszUserName, &lpUrlComponents->dwUserNameLength,
1119 UCW.lpszUserName, UCW.dwUserNameLength,
1121 ConvertUrlComponentValue(&lpUrlComponents->lpszPassword, &lpUrlComponents->dwPasswordLength,
1122 UCW.lpszPassword, UCW.dwPasswordLength,
1124 ConvertUrlComponentValue(&lpUrlComponents->lpszUrlPath, &lpUrlComponents->dwUrlPathLength,
1125 UCW.lpszUrlPath, UCW.dwUrlPathLength,
1127 ConvertUrlComponentValue(&lpUrlComponents->lpszScheme, &lpUrlComponents->dwSchemeLength,
1128 UCW.lpszScheme, UCW.dwSchemeLength,
1130 ConvertUrlComponentValue(&lpUrlComponents->lpszExtraInfo, &lpUrlComponents->dwExtraInfoLength,
1131 UCW.lpszExtraInfo, UCW.dwExtraInfoLength,
1133 lpUrlComponents->nScheme=UCW.nScheme;
1134 lpUrlComponents->nPort=UCW.nPort;
1135 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1137 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", lpszUrl,
1138 debugstr_an(lpUrlComponents->lpszScheme,lpUrlComponents->dwSchemeLength),
1139 debugstr_an(lpUrlComponents->lpszHostName,lpUrlComponents->dwHostNameLength),
1140 debugstr_an(lpUrlComponents->lpszUrlPath,lpUrlComponents->dwUrlPathLength),
1141 debugstr_an(lpUrlComponents->lpszExtraInfo,lpUrlComponents->dwExtraInfoLength));
1146 /***********************************************************************
1147 * GetInternetSchemeW (internal)
1153 * INTERNET_SCHEME_UNKNOWN on failure
1156 static INTERNET_SCHEME GetInternetSchemeW(LPCWSTR lpszScheme, DWORD nMaxCmp)
1158 INTERNET_SCHEME iScheme=INTERNET_SCHEME_UNKNOWN;
1159 static const WCHAR lpszFtp[]={'f','t','p',0};
1160 static const WCHAR lpszGopher[]={'g','o','p','h','e','r',0};
1161 static const WCHAR lpszHttp[]={'h','t','t','p',0};
1162 static const WCHAR lpszHttps[]={'h','t','t','p','s',0};
1163 static const WCHAR lpszFile[]={'f','i','l','e',0};
1164 static const WCHAR lpszNews[]={'n','e','w','s',0};
1165 static const WCHAR lpszMailto[]={'m','a','i','l','t','o',0};
1166 static const WCHAR lpszRes[]={'r','e','s',0};
1167 WCHAR* tempBuffer=NULL;
1168 TRACE("%s %ld\n",debugstr_wn(lpszScheme, nMaxCmp), nMaxCmp);
1169 if(lpszScheme==NULL)
1170 return INTERNET_SCHEME_UNKNOWN;
1172 tempBuffer=HeapAlloc(GetProcessHeap(),0,(nMaxCmp+1)*sizeof(WCHAR));
1173 lstrcpynW(tempBuffer,lpszScheme,nMaxCmp+1);
1174 strlwrW(tempBuffer);
1175 if (nMaxCmp==strlenW(lpszFtp) && !strncmpW(lpszFtp, tempBuffer, nMaxCmp))
1176 iScheme=INTERNET_SCHEME_FTP;
1177 else if (nMaxCmp==strlenW(lpszGopher) && !strncmpW(lpszGopher, tempBuffer, nMaxCmp))
1178 iScheme=INTERNET_SCHEME_GOPHER;
1179 else if (nMaxCmp==strlenW(lpszHttp) && !strncmpW(lpszHttp, tempBuffer, nMaxCmp))
1180 iScheme=INTERNET_SCHEME_HTTP;
1181 else if (nMaxCmp==strlenW(lpszHttps) && !strncmpW(lpszHttps, tempBuffer, nMaxCmp))
1182 iScheme=INTERNET_SCHEME_HTTPS;
1183 else if (nMaxCmp==strlenW(lpszFile) && !strncmpW(lpszFile, tempBuffer, nMaxCmp))
1184 iScheme=INTERNET_SCHEME_FILE;
1185 else if (nMaxCmp==strlenW(lpszNews) && !strncmpW(lpszNews, tempBuffer, nMaxCmp))
1186 iScheme=INTERNET_SCHEME_NEWS;
1187 else if (nMaxCmp==strlenW(lpszMailto) && !strncmpW(lpszMailto, tempBuffer, nMaxCmp))
1188 iScheme=INTERNET_SCHEME_MAILTO;
1189 else if (nMaxCmp==strlenW(lpszRes) && !strncmpW(lpszRes, tempBuffer, nMaxCmp))
1190 iScheme=INTERNET_SCHEME_RES;
1191 HeapFree(GetProcessHeap(),0,tempBuffer);
1195 /***********************************************************************
1196 * SetUrlComponentValueW (Internal)
1198 * Helper function for InternetCrackUrlW
1201 * lppszComponent [O] Holds the returned string
1202 * dwComponentLen [I] Holds the size of lppszComponent
1203 * [O] Holds the length of the string in lppszComponent without '\0'
1204 * lpszStart [I] Holds the string to copy from
1205 * len [I] Holds the length of lpszStart without '\0'
1212 static BOOL SetUrlComponentValueW(LPWSTR* lppszComponent, LPDWORD dwComponentLen, LPCWSTR lpszStart, DWORD len)
1214 TRACE("%s (%ld)\n", debugstr_wn(lpszStart,len), len);
1216 if ( (*dwComponentLen == 0) && (*lppszComponent == NULL) )
1219 if (*dwComponentLen != 0 || *lppszComponent == NULL)
1221 if (*lppszComponent == NULL)
1223 *lppszComponent = (LPWSTR)lpszStart;
1224 *dwComponentLen = len;
1228 DWORD ncpylen = min((*dwComponentLen)-1, len);
1229 memcpy(*lppszComponent, lpszStart, ncpylen*sizeof(WCHAR));
1230 (*lppszComponent)[ncpylen] = '\0';
1231 *dwComponentLen = ncpylen;
1238 /***********************************************************************
1239 * InternetCrackUrlW (WININET.@)
1241 BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl_orig, DWORD dwUrlLength_orig, DWORD dwFlags,
1242 LPURL_COMPONENTSW lpUC)
1246 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1249 LPCWSTR lpszParam = NULL;
1250 BOOL bIsAbsolute = FALSE;
1251 LPCWSTR lpszap, lpszUrl = lpszUrl_orig;
1252 LPCWSTR lpszcp = NULL;
1253 LPWSTR lpszUrl_decode = NULL;
1254 DWORD dwUrlLength = dwUrlLength_orig;
1255 const WCHAR lpszSeparators[3]={';','?',0};
1256 const WCHAR lpszSlash[2]={'/',0};
1258 dwUrlLength=strlenW(lpszUrl);
1260 TRACE("(%s %lu %lx %p)\n", debugstr_w(lpszUrl), dwUrlLength, dwFlags, lpUC);
1261 if (dwFlags & ICU_DECODE)
1263 lpszUrl_decode=HeapAlloc( GetProcessHeap(), 0, dwUrlLength * sizeof (WCHAR) );
1264 if( InternetCanonicalizeUrlW(lpszUrl_orig, lpszUrl_decode, &dwUrlLength, dwFlags))
1266 lpszUrl = lpszUrl_decode;
1271 /* Determine if the URI is absolute. */
1272 while (*lpszap != '\0')
1274 if (isalnumW(*lpszap))
1279 if ((*lpszap == ':') && (lpszap - lpszUrl >= 2))
1286 lpszcp = lpszUrl; /* Relative url */
1292 /* Parse <params> */
1293 lpszParam = strpbrkW(lpszap, lpszSeparators);
1294 if (lpszParam != NULL)
1296 SetUrlComponentValueW(&lpUC->lpszExtraInfo, &lpUC->dwExtraInfoLength,
1297 lpszParam, dwUrlLength-(lpszParam-lpszUrl));
1300 if (bIsAbsolute) /* Parse <protocol>:[//<net_loc>] */
1303 static const WCHAR wszAbout[]={'a','b','o','u','t',':',0};
1305 /* Get scheme first. */
1306 lpUC->nScheme = GetInternetSchemeW(lpszUrl, lpszcp - lpszUrl);
1307 SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength,
1308 lpszUrl, lpszcp - lpszUrl);
1310 /* Eat ':' in protocol. */
1313 /* if the scheme is "about", there is no host */
1314 if(strncmpW(wszAbout,lpszUrl, lpszcp - lpszUrl)==0)
1316 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1317 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1318 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1323 /* Skip over slashes. */
1335 lpszNetLoc = strpbrkW(lpszcp, lpszSlash);
1339 lpszNetLoc = min(lpszNetLoc, lpszParam);
1341 lpszNetLoc = lpszParam;
1343 else if (!lpszNetLoc)
1344 lpszNetLoc = lpszcp + dwUrlLength-(lpszcp-lpszUrl);
1352 /* [<user>[<:password>]@]<host>[:<port>] */
1353 /* First find the user and password if they exist */
1355 lpszHost = strchrW(lpszcp, '@');
1356 if (lpszHost == NULL || lpszHost > lpszNetLoc)
1358 /* username and password not specified. */
1359 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1360 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1362 else /* Parse out username and password */
1364 LPCWSTR lpszUser = lpszcp;
1365 LPCWSTR lpszPasswd = lpszHost;
1367 while (lpszcp < lpszHost)
1370 lpszPasswd = lpszcp;
1375 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength,
1376 lpszUser, lpszPasswd - lpszUser);
1378 if (lpszPasswd != lpszHost)
1380 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength,
1381 lpszPasswd == lpszHost ? NULL : lpszPasswd,
1382 lpszHost - lpszPasswd);
1384 lpszcp++; /* Advance to beginning of host */
1387 /* Parse <host><:port> */
1390 lpszPort = lpszNetLoc;
1392 /* special case for res:// URLs: there is no port here, so the host is the
1393 entire string up to the first '/' */
1394 if(lpUC->nScheme==INTERNET_SCHEME_RES)
1396 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1397 lpszHost, lpszPort - lpszHost);
1403 while (lpszcp < lpszNetLoc)
1411 /* If the scheme is "file" and the host is just one letter, it's not a host */
1412 if(lpUC->nScheme==INTERNET_SCHEME_FILE && (lpszPort-lpszHost)==1)
1415 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1421 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1422 lpszHost, lpszPort - lpszHost);
1423 if (lpszPort != lpszNetLoc)
1424 lpUC->nPort = atoiW(++lpszPort);
1433 /* Here lpszcp points to:
1435 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1436 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1438 if (lpszcp != 0 && *lpszcp != '\0' && (!lpszParam || lpszcp < lpszParam))
1442 /* Only truncate the parameter list if it's already been saved
1443 * in lpUC->lpszExtraInfo.
1445 if (lpszParam && lpUC->dwExtraInfoLength && lpUC->lpszExtraInfo)
1446 len = lpszParam - lpszcp;
1449 /* Leave the parameter list in lpszUrlPath. Strip off any trailing
1450 * newlines if necessary.
1452 LPWSTR lpsznewline = strchrW(lpszcp, '\n');
1453 if (lpsznewline != NULL)
1454 len = lpsznewline - lpszcp;
1456 len = dwUrlLength-(lpszcp-lpszUrl);
1458 SetUrlComponentValueW(&lpUC->lpszUrlPath, &lpUC->dwUrlPathLength,
1463 lpUC->dwUrlPathLength = 0;
1466 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl,dwUrlLength),
1467 debugstr_wn(lpUC->lpszScheme,lpUC->dwSchemeLength),
1468 debugstr_wn(lpUC->lpszHostName,lpUC->dwHostNameLength),
1469 debugstr_wn(lpUC->lpszUrlPath,lpUC->dwUrlPathLength),
1470 debugstr_wn(lpUC->lpszExtraInfo,lpUC->dwExtraInfoLength));
1473 HeapFree(GetProcessHeap(), 0, lpszUrl_decode );
1477 /***********************************************************************
1478 * InternetAttemptConnect (WININET.@)
1480 * Attempt to make a connection to the internet
1483 * ERROR_SUCCESS on success
1484 * Error value on failure
1487 DWORD WINAPI InternetAttemptConnect(DWORD dwReserved)
1490 return ERROR_SUCCESS;
1494 /***********************************************************************
1495 * InternetCanonicalizeUrlA (WININET.@)
1497 * Escape unsafe characters and spaces
1504 BOOL WINAPI InternetCanonicalizeUrlA(LPCSTR lpszUrl, LPSTR lpszBuffer,
1505 LPDWORD lpdwBufferLength, DWORD dwFlags)
1508 DWORD dwURLFlags= 0x80000000; /* Don't know what this means */
1509 if(dwFlags & ICU_DECODE)
1511 dwURLFlags |= URL_UNESCAPE;
1512 dwFlags &= ~ICU_DECODE;
1515 if(dwFlags & ICU_ESCAPE)
1517 dwURLFlags |= URL_UNESCAPE;
1518 dwFlags &= ~ICU_ESCAPE;
1521 FIXME("Unhandled flags 0x%08lx\n", dwFlags);
1522 TRACE("%s %p %p %08lx\n", debugstr_a(lpszUrl), lpszBuffer,
1523 lpdwBufferLength, dwURLFlags);
1525 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1526 dwFlags ^= ICU_NO_ENCODE;
1528 hr = UrlCanonicalizeA(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1530 return (hr == S_OK) ? TRUE : FALSE;
1533 /***********************************************************************
1534 * InternetCanonicalizeUrlW (WININET.@)
1536 * Escape unsafe characters and spaces
1543 BOOL WINAPI InternetCanonicalizeUrlW(LPCWSTR lpszUrl, LPWSTR lpszBuffer,
1544 LPDWORD lpdwBufferLength, DWORD dwFlags)
1547 DWORD dwURLFlags= 0x80000000; /* Don't know what this means */
1548 if(dwFlags & ICU_DECODE)
1550 dwURLFlags |= URL_UNESCAPE;
1551 dwFlags &= ~ICU_DECODE;
1554 if(dwFlags & ICU_ESCAPE)
1556 dwURLFlags |= URL_UNESCAPE;
1557 dwFlags &= ~ICU_ESCAPE;
1560 FIXME("Unhandled flags 0x%08lx\n", dwFlags);
1561 TRACE("%s %p %p %08lx\n", debugstr_w(lpszUrl), lpszBuffer,
1562 lpdwBufferLength, dwURLFlags);
1564 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1565 dwFlags ^= ICU_NO_ENCODE;
1567 hr = UrlCanonicalizeW(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1569 return (hr == S_OK) ? TRUE : FALSE;
1573 /***********************************************************************
1574 * InternetSetStatusCallbackA (WININET.@)
1576 * Sets up a callback function which is called as progress is made
1577 * during an operation.
1580 * Previous callback or NULL on success
1581 * INTERNET_INVALID_STATUS_CALLBACK on failure
1584 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackA(
1585 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1587 INTERNET_STATUS_CALLBACK retVal;
1588 LPWININETHANDLEHEADER lpwh;
1590 TRACE("0x%08lx\n", (ULONG)hInternet);
1592 lpwh = WININET_GetObject(hInternet);
1594 return INTERNET_INVALID_STATUS_CALLBACK;
1596 lpwh->dwInternalFlags &= ~INET_CALLBACKW;
1597 retVal = lpwh->lpfnStatusCB;
1598 lpwh->lpfnStatusCB = lpfnIntCB;
1600 WININET_Release( lpwh );
1605 /***********************************************************************
1606 * InternetSetStatusCallbackW (WININET.@)
1608 * Sets up a callback function which is called as progress is made
1609 * during an operation.
1612 * Previous callback or NULL on success
1613 * INTERNET_INVALID_STATUS_CALLBACK on failure
1616 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackW(
1617 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1619 INTERNET_STATUS_CALLBACK retVal;
1620 LPWININETHANDLEHEADER lpwh;
1622 TRACE("0x%08lx\n", (ULONG)hInternet);
1624 lpwh = WININET_GetObject(hInternet);
1626 return INTERNET_INVALID_STATUS_CALLBACK;
1628 lpwh->dwInternalFlags |= INET_CALLBACKW;
1629 retVal = lpwh->lpfnStatusCB;
1630 lpwh->lpfnStatusCB = lpfnIntCB;
1632 WININET_Release( lpwh );
1637 /***********************************************************************
1638 * InternetSetFilePointer (WININET.@)
1640 DWORD WINAPI InternetSetFilePointer(HINTERNET f1, LONG f2, PVOID f3, DWORD f4, DWORD f5)
1646 /***********************************************************************
1647 * InternetWriteFile (WININET.@)
1649 * Write data to an open internet file
1656 BOOL WINAPI InternetWriteFile(HINTERNET hFile, LPCVOID lpBuffer ,
1657 DWORD dwNumOfBytesToWrite, LPDWORD lpdwNumOfBytesWritten)
1659 BOOL retval = FALSE;
1661 LPWININETHANDLEHEADER lpwh;
1664 lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1668 switch (lpwh->htype)
1671 FIXME("This shouldn't be here! We don't support this kind"
1672 " of connection anymore. Must use NETCON functions,"
1673 " especially if using SSL\n");
1674 nSocket = ((LPWININETHTTPREQW)lpwh)->netConnection.socketFD;
1678 nSocket = ((LPWININETFILE)lpwh)->nDataSocket;
1687 int res = send(nSocket, lpBuffer, dwNumOfBytesToWrite, 0);
1688 retval = (res >= 0);
1689 *lpdwNumOfBytesWritten = retval ? res : 0;
1691 WININET_Release( lpwh );
1697 /***********************************************************************
1698 * InternetReadFile (WININET.@)
1700 * Read data from an open internet file
1707 BOOL WINAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer,
1708 DWORD dwNumOfBytesToRead, LPDWORD dwNumOfBytesRead)
1710 BOOL retval = FALSE;
1712 LPWININETHANDLEHEADER lpwh;
1714 TRACE("%p %p %ld %p\n", hFile, lpBuffer, dwNumOfBytesToRead, dwNumOfBytesRead);
1716 lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1720 /* FIXME: this should use NETCON functions! */
1721 switch (lpwh->htype)
1724 if (!NETCON_recv(&((LPWININETHTTPREQW)lpwh)->netConnection, lpBuffer,
1725 dwNumOfBytesToRead, MSG_WAITALL, (int *)dwNumOfBytesRead))
1727 *dwNumOfBytesRead = 0;
1728 retval = TRUE; /* Under windows, it seems to return 0 even if nothing was read... */
1735 /* FIXME: FTP should use NETCON_ stuff */
1736 nSocket = ((LPWININETFILE)lpwh)->nDataSocket;
1739 int res = recv(nSocket, lpBuffer, dwNumOfBytesToRead, MSG_WAITALL);
1740 retval = (res >= 0);
1741 *dwNumOfBytesRead = retval ? res : 0;
1748 WININET_Release( lpwh );
1750 TRACE("-- %s (bytes read: %ld)\n", retval ? "TRUE": "FALSE", dwNumOfBytesRead ? *dwNumOfBytesRead : -1);
1754 /***********************************************************************
1755 * InternetReadFileExA (WININET.@)
1757 * Read data from an open internet file
1764 BOOL WINAPI InternetReadFileExA(HINTERNET hFile, LPINTERNET_BUFFERSA lpBuffer,
1765 DWORD dwFlags, DWORD dwContext)
1771 /***********************************************************************
1772 * InternetReadFileExW (WININET.@)
1774 * Read data from an open internet file
1781 BOOL WINAPI InternetReadFileExW(HINTERNET hFile, LPINTERNET_BUFFERSW lpBuffer,
1782 DWORD dwFlags, DWORD dwContext)
1786 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1790 /***********************************************************************
1791 * INET_QueryOptionHelper (internal)
1793 static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD dwOption,
1794 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
1796 LPWININETHANDLEHEADER lpwhh;
1797 BOOL bSuccess = FALSE;
1799 TRACE("(%p, 0x%08lx, %p, %p)\n", hInternet, dwOption, lpBuffer, lpdwBufferLength);
1801 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
1805 case INTERNET_OPTION_HANDLE_TYPE:
1811 WARN("Invalid hInternet handle\n");
1812 SetLastError(ERROR_INVALID_HANDLE);
1816 type = lpwhh->htype;
1818 TRACE("INTERNET_OPTION_HANDLE_TYPE: %ld\n", type);
1820 if (*lpdwBufferLength < sizeof(ULONG))
1821 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1824 memcpy(lpBuffer, &type, sizeof(ULONG));
1827 *lpdwBufferLength = sizeof(ULONG);
1831 case INTERNET_OPTION_REQUEST_FLAGS:
1834 TRACE("INTERNET_OPTION_REQUEST_FLAGS: %ld\n", flags);
1835 if (*lpdwBufferLength < sizeof(ULONG))
1836 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1839 memcpy(lpBuffer, &flags, sizeof(ULONG));
1842 *lpdwBufferLength = sizeof(ULONG);
1846 case INTERNET_OPTION_URL:
1847 case INTERNET_OPTION_DATAFILE_NAME:
1851 WARN("Invalid hInternet handle\n");
1852 SetLastError(ERROR_INVALID_HANDLE);
1855 if (lpwhh->htype == WH_HHTTPREQ)
1857 LPWININETHTTPREQW lpreq = (LPWININETHTTPREQW) lpwhh;
1859 static const WCHAR szFmt[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
1862 sprintfW(url,szFmt,lpreq->StdHeaders[HTTP_QUERY_HOST].lpszValue,lpreq->lpszPath);
1863 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url));
1866 sizeRequired = WideCharToMultiByte(CP_ACP,0,url,-1,
1867 lpBuffer,*lpdwBufferLength,NULL,NULL);
1868 if (sizeRequired > *lpdwBufferLength)
1869 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1872 *lpdwBufferLength = sizeRequired;
1876 sizeRequired = (lstrlenW(url)+1) * sizeof(WCHAR);
1877 if (*lpdwBufferLength < sizeRequired)
1878 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1881 strcpyW(lpBuffer, url);
1884 *lpdwBufferLength = sizeRequired;
1889 case INTERNET_OPTION_HTTP_VERSION:
1891 if (*lpdwBufferLength < sizeof(HTTP_VERSION_INFO))
1892 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1896 * Presently hardcoded to 1.1
1898 ((HTTP_VERSION_INFO*)lpBuffer)->dwMajorVersion = 1;
1899 ((HTTP_VERSION_INFO*)lpBuffer)->dwMinorVersion = 1;
1902 *lpdwBufferLength = sizeof(HTTP_VERSION_INFO);
1905 case INTERNET_OPTION_CONNECTED_STATE:
1907 INTERNET_CONNECTED_INFO * pCi = (INTERNET_CONNECTED_INFO *)lpBuffer;
1908 FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
1910 if (*lpdwBufferLength < sizeof(INTERNET_CONNECTED_INFO))
1911 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1914 pCi->dwConnectedState = INTERNET_STATE_CONNECTED;
1918 *lpdwBufferLength = sizeof(INTERNET_CONNECTED_INFO);
1921 case INTERNET_OPTION_PROXY:
1923 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW)lpwhh;
1924 WININETAPPINFOW wai;
1928 TRACE("Getting global proxy info\n");
1929 memset(&wai, 0, sizeof(WININETAPPINFOW));
1930 INTERNET_ConfigureProxyFromReg( &wai );
1936 INTERNET_PROXY_INFOW *pPI = (INTERNET_PROXY_INFOW *)lpBuffer;
1937 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
1939 if (lpwai->lpszProxy)
1940 proxyBytesRequired = (lstrlenW(lpwai->lpszProxy) + 1) *
1942 if (lpwai->lpszProxyBypass)
1943 proxyBypassBytesRequired =
1944 (lstrlenW(lpwai->lpszProxyBypass) + 1) * sizeof(WCHAR);
1945 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOW) +
1946 proxyBytesRequired + proxyBypassBytesRequired)
1947 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1950 pPI->dwAccessType = lpwai->dwAccessType;
1951 if (lpwai->lpszProxy)
1953 pPI->lpszProxy = (LPWSTR)((LPBYTE)lpBuffer +
1954 sizeof(INTERNET_PROXY_INFOW));
1955 lstrcpyW((LPWSTR)pPI->lpszProxy, lpwai->lpszProxy);
1959 pPI->lpszProxy = (LPWSTR)((LPBYTE)lpBuffer +
1960 sizeof(INTERNET_PROXY_INFOW));
1961 *((LPWSTR)(pPI->lpszProxy)) = 0;
1964 if (lpwai->lpszProxyBypass)
1966 pPI->lpszProxyBypass = (LPWSTR)((LPBYTE)lpBuffer +
1967 sizeof(INTERNET_PROXY_INFOW) +
1968 proxyBytesRequired);
1969 lstrcpyW((LPWSTR)pPI->lpszProxyBypass,
1970 lpwai->lpszProxyBypass);
1974 pPI->lpszProxyBypass = (LPWSTR)((LPBYTE)lpBuffer +
1975 sizeof(INTERNET_PROXY_INFOW) +
1976 proxyBytesRequired);
1977 *((LPWSTR)(pPI->lpszProxyBypass)) = 0;
1981 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOW) +
1982 proxyBytesRequired + proxyBypassBytesRequired;
1986 INTERNET_PROXY_INFOA *pPI = (INTERNET_PROXY_INFOA *)lpBuffer;
1987 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
1989 if (lpwai->lpszProxy)
1990 proxyBytesRequired = WideCharToMultiByte(CP_ACP, 0,
1991 lpwai->lpszProxy, -1, NULL, 0, NULL, NULL);
1992 if (lpwai->lpszProxyBypass)
1993 proxyBypassBytesRequired = WideCharToMultiByte(CP_ACP, 0,
1994 lpwai->lpszProxyBypass, -1, NULL, 0, NULL, NULL);
1995 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOA) +
1996 proxyBytesRequired + proxyBypassBytesRequired)
1997 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2000 pPI->dwAccessType = lpwai->dwAccessType;
2001 if (lpwai->lpszProxy)
2003 pPI->lpszProxy = (LPSTR)((LPBYTE)lpBuffer +
2004 sizeof(INTERNET_PROXY_INFOA));
2005 WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxy, -1,
2006 (LPSTR)pPI->lpszProxy, proxyBytesRequired, NULL, NULL);
2010 pPI->lpszProxy = (LPSTR)((LPBYTE)lpBuffer +
2011 sizeof(INTERNET_PROXY_INFOA));
2012 *((LPSTR)(pPI->lpszProxy)) = '\0';
2015 if (lpwai->lpszProxyBypass)
2017 pPI->lpszProxyBypass = (LPSTR)((LPBYTE)lpBuffer +
2018 sizeof(INTERNET_PROXY_INFOA) + proxyBytesRequired);
2019 WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxyBypass,
2020 -1, (LPSTR)pPI->lpszProxyBypass,
2021 proxyBypassBytesRequired,
2026 pPI->lpszProxyBypass = (LPSTR)((LPBYTE)lpBuffer +
2027 sizeof(INTERNET_PROXY_INFOA) +
2028 proxyBytesRequired);
2029 *((LPSTR)(pPI->lpszProxyBypass)) = '\0';
2033 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOA) +
2034 proxyBytesRequired + proxyBypassBytesRequired;
2038 case INTERNET_OPTION_SECURITY_FLAGS:
2039 FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
2043 FIXME("Stub! %ld \n",dwOption);
2047 WININET_Release( lpwhh );
2052 /***********************************************************************
2053 * InternetQueryOptionW (WININET.@)
2055 * Queries an options on the specified handle
2062 BOOL WINAPI InternetQueryOptionW(HINTERNET hInternet, DWORD dwOption,
2063 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2065 return INET_QueryOptionHelper(TRUE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2068 /***********************************************************************
2069 * InternetQueryOptionA (WININET.@)
2071 * Queries an options on the specified handle
2078 BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
2079 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2081 return INET_QueryOptionHelper(FALSE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2085 /***********************************************************************
2086 * InternetSetOptionW (WININET.@)
2088 * Sets an options on the specified handle
2095 BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
2096 LPVOID lpBuffer, DWORD dwBufferLength)
2098 LPWININETHANDLEHEADER lpwhh;
2101 TRACE("0x%08lx\n", dwOption);
2103 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
2109 case INTERNET_OPTION_HTTP_VERSION:
2111 HTTP_VERSION_INFO* pVersion=(HTTP_VERSION_INFO*)lpBuffer;
2112 FIXME("Option INTERNET_OPTION_HTTP_VERSION(%ld,%ld): STUB\n",pVersion->dwMajorVersion,pVersion->dwMinorVersion);
2115 case INTERNET_OPTION_ERROR_MASK:
2117 unsigned long flags=*(unsigned long*)lpBuffer;
2118 FIXME("Option INTERNET_OPTION_ERROR_MASK(%ld): STUB\n",flags);
2121 case INTERNET_OPTION_CODEPAGE:
2123 unsigned long codepage=*(unsigned long*)lpBuffer;
2124 FIXME("Option INTERNET_OPTION_CODEPAGE (%ld): STUB\n",codepage);
2127 case INTERNET_OPTION_REQUEST_PRIORITY:
2129 unsigned long priority=*(unsigned long*)lpBuffer;
2130 FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%ld): STUB\n",priority);
2133 case INTERNET_OPTION_CONNECT_TIMEOUT:
2135 unsigned long connecttimeout=*(unsigned long*)lpBuffer;
2136 FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%ld): STUB\n",connecttimeout);
2139 case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT:
2141 unsigned long receivetimeout=*(unsigned long*)lpBuffer;
2142 FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%ld): STUB\n",receivetimeout);
2145 case INTERNET_OPTION_RESET_URLCACHE_SESSION:
2146 FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
2148 case INTERNET_OPTION_END_BROWSER_SESSION:
2149 FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
2151 case INTERNET_OPTION_CONNECTED_STATE:
2152 FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
2155 FIXME("Option %ld STUB\n",dwOption);
2156 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2160 WININET_Release( lpwhh );
2166 /***********************************************************************
2167 * InternetSetOptionA (WININET.@)
2169 * Sets an options on the specified handle.
2176 BOOL WINAPI InternetSetOptionA(HINTERNET hInternet, DWORD dwOption,
2177 LPVOID lpBuffer, DWORD dwBufferLength)
2185 case INTERNET_OPTION_PROXY:
2187 LPINTERNET_PROXY_INFOA pi = (LPINTERNET_PROXY_INFOA) lpBuffer;
2188 LPINTERNET_PROXY_INFOW piw;
2189 DWORD proxlen, prbylen;
2192 proxlen = MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, NULL, 0);
2193 prbylen= MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, NULL, 0);
2194 wlen = sizeof(*piw) + proxlen + prbylen;
2195 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2196 piw = (LPINTERNET_PROXY_INFOW) wbuffer;
2197 piw->dwAccessType = pi->dwAccessType;
2198 prox = (LPWSTR) &piw[1];
2199 prby = &prox[proxlen+1];
2200 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, prox, proxlen);
2201 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, prby, prbylen);
2202 piw->lpszProxy = prox;
2203 piw->lpszProxyBypass = prby;
2206 case INTERNET_OPTION_USER_AGENT:
2207 case INTERNET_OPTION_USERNAME:
2208 case INTERNET_OPTION_PASSWORD:
2209 wlen = MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2211 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2212 MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2217 wlen = dwBufferLength;
2220 r = InternetSetOptionW(hInternet,dwOption, wbuffer, wlen);
2222 if( lpBuffer != wbuffer )
2223 HeapFree( GetProcessHeap(), 0, wbuffer );
2229 /***********************************************************************
2230 * InternetSetOptionExA (WININET.@)
2232 BOOL WINAPI InternetSetOptionExA(HINTERNET hInternet, DWORD dwOption,
2233 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2235 FIXME("Flags %08lx ignored\n", dwFlags);
2236 return InternetSetOptionA( hInternet, dwOption, lpBuffer, dwBufferLength );
2239 /***********************************************************************
2240 * InternetSetOptionExW (WININET.@)
2242 BOOL WINAPI InternetSetOptionExW(HINTERNET hInternet, DWORD dwOption,
2243 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2245 FIXME("Flags %08lx ignored\n", dwFlags);
2246 if( dwFlags & ~ISO_VALID_FLAGS )
2248 SetLastError( ERROR_INVALID_PARAMETER );
2251 return InternetSetOptionW( hInternet, dwOption, lpBuffer, dwBufferLength );
2254 static const WCHAR WININET_wkday[7][4] =
2255 { { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
2256 { 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
2257 static const WCHAR WININET_month[12][4] =
2258 { { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
2259 { 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
2260 { 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
2262 /***********************************************************************
2263 * InternetTimeFromSystemTimeA (WININET.@)
2265 BOOL WINAPI InternetTimeFromSystemTimeA( const SYSTEMTIME* time, DWORD format, LPSTR string, DWORD size )
2268 WCHAR stringW[INTERNET_RFC1123_BUFSIZE];
2270 TRACE( "%p 0x%08lx %p 0x%08lx\n", time, format, string, size );
2272 ret = InternetTimeFromSystemTimeW( time, format, stringW, sizeof(stringW) );
2273 if (ret) WideCharToMultiByte( CP_ACP, 0, stringW, -1, string, size, NULL, NULL );
2278 /***********************************************************************
2279 * InternetTimeFromSystemTimeW (WININET.@)
2281 BOOL WINAPI InternetTimeFromSystemTimeW( const SYSTEMTIME* time, DWORD format, LPWSTR string, DWORD size )
2283 static const WCHAR date[] =
2284 { '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
2285 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
2287 TRACE( "%p 0x%08lx %p 0x%08lx\n", time, format, string, size );
2289 if (!time || !string) return FALSE;
2291 if (format != INTERNET_RFC1123_FORMAT || size < INTERNET_RFC1123_BUFSIZE * sizeof(WCHAR))
2294 sprintfW( string, date,
2295 WININET_wkday[time->wDayOfWeek],
2297 WININET_month[time->wMonth - 1],
2306 /***********************************************************************
2307 * InternetTimeToSystemTimeA (WININET.@)
2309 BOOL WINAPI InternetTimeToSystemTimeA( LPCSTR string, SYSTEMTIME* time, DWORD reserved )
2315 TRACE( "%s %p 0x%08lx\n", debugstr_a(string), time, reserved );
2317 len = MultiByteToWideChar( CP_ACP, 0, string, -1, NULL, 0 );
2318 stringW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
2322 MultiByteToWideChar( CP_ACP, 0, string, -1, stringW, len );
2323 ret = InternetTimeToSystemTimeW( stringW, time, reserved );
2324 HeapFree( GetProcessHeap(), 0, stringW );
2329 /***********************************************************************
2330 * InternetTimeToSystemTimeW (WININET.@)
2332 BOOL WINAPI InternetTimeToSystemTimeW( LPCWSTR string, SYSTEMTIME* time, DWORD reserved )
2335 WCHAR *s = (LPWSTR)string;
2337 TRACE( "%s %p 0x%08lx\n", debugstr_w(string), time, reserved );
2339 if (!string || !time) return FALSE;
2341 /* Windows does this too */
2342 GetSystemTime( time );
2344 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
2345 * a SYSTEMTIME structure.
2348 while (*s && !isalphaW( *s )) s++;
2349 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2350 time->wDayOfWeek = 7;
2352 for (i = 0; i < 7; i++)
2354 if (toupperW( WININET_wkday[i][0] ) == toupperW( s[0] ) &&
2355 toupperW( WININET_wkday[i][1] ) == toupperW( s[1] ) &&
2356 toupperW( WININET_wkday[i][2] ) == toupperW( s[2] ) )
2358 time->wDayOfWeek = i;
2363 if (time->wDayOfWeek > 6) return TRUE;
2364 while (*s && !isdigitW( *s )) s++;
2365 time->wDay = strtolW( s, &s, 10 );
2367 while (*s && !isalphaW( *s )) s++;
2368 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2371 for (i = 0; i < 12; i++)
2373 if (toupperW( WININET_month[i][0]) == toupperW( s[0] ) &&
2374 toupperW( WININET_month[i][1]) == toupperW( s[1] ) &&
2375 toupperW( WININET_month[i][2]) == toupperW( s[2] ) )
2377 time->wMonth = i + 1;
2381 if (time->wMonth == 0) return TRUE;
2383 while (*s && !isdigitW( *s )) s++;
2384 if (*s == '\0') return TRUE;
2385 time->wYear = strtolW( s, &s, 10 );
2387 while (*s && !isdigitW( *s )) s++;
2388 if (*s == '\0') return TRUE;
2389 time->wHour = strtolW( s, &s, 10 );
2391 while (*s && !isdigitW( *s )) s++;
2392 if (*s == '\0') return TRUE;
2393 time->wMinute = strtolW( s, &s, 10 );
2395 while (*s && !isdigitW( *s )) s++;
2396 if (*s == '\0') return TRUE;
2397 time->wSecond = strtolW( s, &s, 10 );
2399 time->wMilliseconds = 0;
2403 /***********************************************************************
2404 * InternetCheckConnectionA (WININET.@)
2406 * Pings a requested host to check internet connection
2409 * TRUE on success and FALSE on failure. If a failure then
2410 * ERROR_NOT_CONNECTED is placesd into GetLastError
2413 BOOL WINAPI InternetCheckConnectionA( LPCSTR lpszUrl, DWORD dwFlags, DWORD dwReserved )
2416 * this is a kludge which runs the resident ping program and reads the output.
2418 * Anyone have a better idea?
2429 * Crack or set the Address
2431 if (lpszUrl == NULL)
2434 * According to the doc we are supost to use the ip for the next
2435 * server in the WnInet internal server database. I have
2436 * no idea what that is or how to get it.
2438 * So someone needs to implement this.
2440 FIXME("Unimplemented with URL of NULL\n");
2445 URL_COMPONENTSA components;
2447 ZeroMemory(&components,sizeof(URL_COMPONENTSA));
2448 components.lpszHostName = (LPSTR)&host;
2449 components.dwHostNameLength = 1024;
2451 if (!InternetCrackUrlA(lpszUrl,0,0,&components))
2454 TRACE("host name : %s\n",components.lpszHostName);
2458 * Build our ping command
2460 strcpy(command,"ping -w 1 ");
2461 strcat(command,host);
2462 strcat(command," >/dev/null 2>/dev/null");
2464 TRACE("Ping command is : %s\n",command);
2466 status = system(command);
2468 TRACE("Ping returned a code of %i \n",status);
2470 /* Ping return code of 0 indicates success */
2477 SetLastError(ERROR_NOT_CONNECTED);
2483 /***********************************************************************
2484 * InternetCheckConnectionW (WININET.@)
2486 * Pings a requested host to check internet connection
2489 * TRUE on success and FALSE on failure. If a failure then
2490 * ERROR_NOT_CONNECTED is placed into GetLastError
2493 BOOL WINAPI InternetCheckConnectionW(LPCWSTR lpszUrl, DWORD dwFlags, DWORD dwReserved)
2499 len = WideCharToMultiByte(CP_ACP, 0, lpszUrl, -1, NULL, 0, NULL, NULL);
2500 if (!(szUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(CHAR))))
2502 WideCharToMultiByte(CP_ACP, 0, lpszUrl, -1, szUrl, len, NULL, NULL);
2503 rc = InternetCheckConnectionA((LPCSTR)szUrl, dwFlags, dwReserved);
2504 HeapFree(GetProcessHeap(), 0, szUrl);
2510 /**********************************************************
2511 * INTERNET_InternetOpenUrlW (internal)
2516 * handle of connection or NULL on failure
2518 HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
2519 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
2521 URL_COMPONENTSW urlComponents;
2522 WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
2523 WCHAR password[1024], path[2048], extra[1024];
2524 HINTERNET client = NULL, client1 = NULL;
2526 TRACE("(%p, %s, %s, %08lx, %08lx, %08lx)\n", hIC, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2527 dwHeadersLength, dwFlags, dwContext);
2529 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
2530 urlComponents.lpszScheme = protocol;
2531 urlComponents.dwSchemeLength = 32;
2532 urlComponents.lpszHostName = hostName;
2533 urlComponents.dwHostNameLength = MAXHOSTNAME;
2534 urlComponents.lpszUserName = userName;
2535 urlComponents.dwUserNameLength = 1024;
2536 urlComponents.lpszPassword = password;
2537 urlComponents.dwPasswordLength = 1024;
2538 urlComponents.lpszUrlPath = path;
2539 urlComponents.dwUrlPathLength = 2048;
2540 urlComponents.lpszExtraInfo = extra;
2541 urlComponents.dwExtraInfoLength = 1024;
2542 if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
2544 switch(urlComponents.nScheme) {
2545 case INTERNET_SCHEME_FTP:
2546 if(urlComponents.nPort == 0)
2547 urlComponents.nPort = INTERNET_DEFAULT_FTP_PORT;
2548 client = FTP_Connect(hIC, hostName, urlComponents.nPort,
2549 userName, password, dwFlags, dwContext, INET_OPENURL);
2552 client1 = FtpOpenFileW(client, path, GENERIC_READ, dwFlags, dwContext);
2553 if(client1 == NULL) {
2554 InternetCloseHandle(client);
2559 case INTERNET_SCHEME_HTTP:
2560 case INTERNET_SCHEME_HTTPS: {
2561 static const WCHAR szStars[] = { '*','/','*', 0 };
2562 LPCWSTR accept[2] = { szStars, NULL };
2563 if(urlComponents.nPort == 0) {
2564 if(urlComponents.nScheme == INTERNET_SCHEME_HTTP)
2565 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
2567 urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
2569 /* FIXME: should use pointers, not handles, as handles are not thread-safe */
2570 client = HTTP_Connect(hIC, hostName, urlComponents.nPort,
2571 userName, password, dwFlags, dwContext, INET_OPENURL);
2574 client1 = HttpOpenRequestW(client, NULL, path, NULL, NULL, accept, dwFlags, dwContext);
2575 if(client1 == NULL) {
2576 InternetCloseHandle(client);
2579 HttpAddRequestHeadersW(client1, lpszHeaders, dwHeadersLength, HTTP_ADDREQ_FLAG_ADD);
2580 if (!HttpSendRequestW(client1, NULL, 0, NULL, 0)) {
2581 InternetCloseHandle(client1);
2586 case INTERNET_SCHEME_GOPHER:
2587 /* gopher doesn't seem to be implemented in wine, but it's supposed
2588 * to be supported by InternetOpenUrlA. */
2593 TRACE(" %p <--\n", client1);
2598 /**********************************************************
2599 * InternetOpenUrlW (WININET.@)
2604 * handle of connection or NULL on failure
2606 HINTERNET WINAPI InternetOpenUrlW(HINTERNET hInternet, LPCWSTR lpszUrl,
2607 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
2609 HINTERNET ret = NULL;
2610 LPWININETAPPINFOW hIC = NULL;
2612 if (TRACE_ON(wininet)) {
2613 TRACE("(%p, %s, %s, %08lx, %08lx, %08lx)\n", hInternet, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2614 dwHeadersLength, dwFlags, dwContext);
2616 dump_INTERNET_FLAGS(dwFlags);
2619 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
2620 if (NULL == hIC || hIC->hdr.htype != WH_HINIT) {
2621 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
2625 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) {
2626 WORKREQUEST workRequest;
2627 struct WORKREQ_INTERNETOPENURLW *req;
2629 workRequest.asyncall = INTERNETOPENURLW;
2630 workRequest.hdr = WININET_AddRef( &hIC->hdr );
2631 req = &workRequest.u.InternetOpenUrlW;
2633 req->lpszUrl = WININET_strdupW(lpszUrl);
2637 req->lpszHeaders = WININET_strdupW(lpszHeaders);
2639 req->lpszHeaders = 0;
2640 req->dwHeadersLength = dwHeadersLength;
2641 req->dwFlags = dwFlags;
2642 req->dwContext = dwContext;
2644 INTERNET_AsyncCall(&workRequest);
2646 * This is from windows.
2648 SetLastError(ERROR_IO_PENDING);
2650 ret = INTERNET_InternetOpenUrlW(hIC, lpszUrl, lpszHeaders, dwHeadersLength, dwFlags, dwContext);
2655 WININET_Release( &hIC->hdr );
2656 TRACE(" %p <--\n", ret);
2661 /**********************************************************
2662 * InternetOpenUrlA (WININET.@)
2667 * handle of connection or NULL on failure
2669 HINTERNET WINAPI InternetOpenUrlA(HINTERNET hInternet, LPCSTR lpszUrl,
2670 LPCSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
2672 HINTERNET rc = (HINTERNET)NULL;
2676 LPWSTR szUrl = NULL;
2677 LPWSTR szHeaders = NULL;
2682 lenUrl = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0 );
2683 szUrl = HeapAlloc(GetProcessHeap(), 0, lenUrl*sizeof(WCHAR));
2685 return (HINTERNET)NULL;
2686 MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, lenUrl);
2690 lenHeaders = MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, NULL, 0 );
2691 szHeaders = HeapAlloc(GetProcessHeap(), 0, lenHeaders*sizeof(WCHAR));
2693 HeapFree(GetProcessHeap(), 0, szUrl);
2694 return (HINTERNET)NULL;
2696 MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, szHeaders, lenHeaders);
2699 rc = InternetOpenUrlW(hInternet, szUrl, szHeaders,
2700 lenHeaders, dwFlags, dwContext);
2702 HeapFree(GetProcessHeap(), 0, szUrl);
2703 HeapFree(GetProcessHeap(), 0, szHeaders);
2709 /***********************************************************************
2710 * INTERNET_SetLastError (internal)
2712 * Set last thread specific error
2717 void INTERNET_SetLastError(DWORD dwError)
2719 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
2721 SetLastError(dwError);
2723 lpwite->dwError = dwError;
2727 /***********************************************************************
2728 * INTERNET_GetLastError (internal)
2730 * Get last thread specific error
2735 DWORD INTERNET_GetLastError(void)
2737 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
2738 return lpwite->dwError;
2742 /***********************************************************************
2743 * INTERNET_WorkerThreadFunc (internal)
2745 * Worker thread execution function
2750 static DWORD INTERNET_WorkerThreadFunc(LPVOID *lpvParam)
2757 INTERNET_ExecuteWork();
2760 dwWaitRes = WaitForMultipleObjects(2, hEventArray, FALSE, MAX_IDLE_WORKER);
2762 if (dwWaitRes == WAIT_OBJECT_0 + 1)
2763 INTERNET_ExecuteWork();
2767 InterlockedIncrement(&dwNumIdleThreads);
2770 InterlockedDecrement(&dwNumIdleThreads);
2771 InterlockedDecrement(&dwNumThreads);
2772 TRACE("Worker thread exiting\n");
2777 /***********************************************************************
2778 * INTERNET_InsertWorkRequest (internal)
2780 * Insert work request into queue
2785 static BOOL INTERNET_InsertWorkRequest(LPWORKREQUEST lpWorkRequest)
2787 BOOL bSuccess = FALSE;
2788 LPWORKREQUEST lpNewRequest;
2792 lpNewRequest = HeapAlloc(GetProcessHeap(), 0, sizeof(WORKREQUEST));
2795 memcpy(lpNewRequest, lpWorkRequest, sizeof(WORKREQUEST));
2796 lpNewRequest->prev = NULL;
2798 EnterCriticalSection(&csQueue);
2800 lpNewRequest->next = lpWorkQueueTail;
2801 if (lpWorkQueueTail)
2802 lpWorkQueueTail->prev = lpNewRequest;
2803 lpWorkQueueTail = lpNewRequest;
2804 if (!lpHeadWorkQueue)
2805 lpHeadWorkQueue = lpWorkQueueTail;
2807 LeaveCriticalSection(&csQueue);
2810 InterlockedIncrement(&dwNumJobs);
2817 /***********************************************************************
2818 * INTERNET_GetWorkRequest (internal)
2820 * Retrieves work request from queue
2825 static BOOL INTERNET_GetWorkRequest(LPWORKREQUEST lpWorkRequest)
2827 BOOL bSuccess = FALSE;
2828 LPWORKREQUEST lpRequest = NULL;
2832 EnterCriticalSection(&csQueue);
2834 if (lpHeadWorkQueue)
2836 lpRequest = lpHeadWorkQueue;
2837 lpHeadWorkQueue = lpHeadWorkQueue->prev;
2838 if (lpRequest == lpWorkQueueTail)
2839 lpWorkQueueTail = lpHeadWorkQueue;
2842 LeaveCriticalSection(&csQueue);
2846 memcpy(lpWorkRequest, lpRequest, sizeof(WORKREQUEST));
2847 HeapFree(GetProcessHeap(), 0, lpRequest);
2849 InterlockedDecrement(&dwNumJobs);
2856 /***********************************************************************
2857 * INTERNET_AsyncCall (internal)
2859 * Retrieves work request from queue
2864 BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest)
2868 BOOL bSuccess = FALSE;
2872 if (InterlockedDecrement(&dwNumIdleThreads) < 0)
2874 InterlockedIncrement(&dwNumIdleThreads);
2876 if (InterlockedIncrement(&dwNumThreads) > MAX_WORKER_THREADS ||
2877 !(hThread = CreateThread(NULL, 0,
2878 (LPTHREAD_START_ROUTINE)INTERNET_WorkerThreadFunc, NULL, 0, &dwTID)))
2880 InterlockedDecrement(&dwNumThreads);
2881 INTERNET_SetLastError(ERROR_INTERNET_ASYNC_THREAD_FAILED);
2885 TRACE("Created new thread\n");
2889 INTERNET_InsertWorkRequest(lpWorkRequest);
2890 SetEvent(hWorkEvent);
2898 /***********************************************************************
2899 * INTERNET_ExecuteWork (internal)
2904 static VOID INTERNET_ExecuteWork(void)
2906 WORKREQUEST workRequest;
2910 if (!INTERNET_GetWorkRequest(&workRequest))
2913 switch (workRequest.asyncall)
2917 struct WORKREQ_FTPPUTFILEW *req = &workRequest.u.FtpPutFileW;
2918 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2920 TRACE("FTPPUTFILEW %p\n", lpwfs);
2922 FTP_FtpPutFileW(lpwfs, req->lpszLocalFile,
2923 req->lpszNewRemoteFile, req->dwFlags, req->dwContext);
2925 HeapFree(GetProcessHeap(), 0, req->lpszLocalFile);
2926 HeapFree(GetProcessHeap(), 0, req->lpszNewRemoteFile);
2930 case FTPSETCURRENTDIRECTORYW:
2932 struct WORKREQ_FTPSETCURRENTDIRECTORYW *req;
2933 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2935 TRACE("FTPSETCURRENTDIRECTORYW %p\n", lpwfs);
2937 req = &workRequest.u.FtpSetCurrentDirectoryW;
2938 FTP_FtpSetCurrentDirectoryW(lpwfs, req->lpszDirectory);
2939 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
2943 case FTPCREATEDIRECTORYW:
2945 struct WORKREQ_FTPCREATEDIRECTORYW *req;
2946 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2948 TRACE("FTPCREATEDIRECTORYW %p\n", lpwfs);
2950 req = &workRequest.u.FtpCreateDirectoryW;
2951 FTP_FtpCreateDirectoryW(lpwfs, req->lpszDirectory);
2952 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
2956 case FTPFINDFIRSTFILEW:
2958 struct WORKREQ_FTPFINDFIRSTFILEW *req;
2959 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2961 TRACE("FTPFINDFIRSTFILEW %p\n", lpwfs);
2963 req = &workRequest.u.FtpFindFirstFileW;
2964 FTP_FtpFindFirstFileW(lpwfs, req->lpszSearchFile,
2965 req->lpFindFileData, req->dwFlags, req->dwContext);
2966 HeapFree(GetProcessHeap(), 0, req->lpszSearchFile);
2970 case FTPGETCURRENTDIRECTORYW:
2972 struct WORKREQ_FTPGETCURRENTDIRECTORYW *req;
2973 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2975 TRACE("FTPGETCURRENTDIRECTORYW %p\n", lpwfs);
2977 req = &workRequest.u.FtpGetCurrentDirectoryW;
2978 FTP_FtpGetCurrentDirectoryW(lpwfs,
2979 req->lpszDirectory, req->lpdwDirectory);
2985 struct WORKREQ_FTPOPENFILEW *req = &workRequest.u.FtpOpenFileW;
2986 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
2988 TRACE("FTPOPENFILEW %p\n", lpwfs);
2990 FTP_FtpOpenFileW(lpwfs, req->lpszFilename,
2991 req->dwAccess, req->dwFlags, req->dwContext);
2992 HeapFree(GetProcessHeap(), 0, req->lpszFilename);
2998 struct WORKREQ_FTPGETFILEW *req = &workRequest.u.FtpGetFileW;
2999 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3001 TRACE("FTPGETFILEW %p\n", lpwfs);
3003 FTP_FtpGetFileW(lpwfs, req->lpszRemoteFile,
3004 req->lpszNewFile, req->fFailIfExists,
3005 req->dwLocalFlagsAttribute, req->dwFlags, req->dwContext);
3006 HeapFree(GetProcessHeap(), 0, req->lpszRemoteFile);
3007 HeapFree(GetProcessHeap(), 0, req->lpszNewFile);
3011 case FTPDELETEFILEW:
3013 struct WORKREQ_FTPDELETEFILEW *req = &workRequest.u.FtpDeleteFileW;
3014 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3016 TRACE("FTPDELETEFILEW %p\n", lpwfs);
3018 FTP_FtpDeleteFileW(lpwfs, req->lpszFilename);
3019 HeapFree(GetProcessHeap(), 0, req->lpszFilename);
3023 case FTPREMOVEDIRECTORYW:
3025 struct WORKREQ_FTPREMOVEDIRECTORYW *req;
3026 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3028 TRACE("FTPREMOVEDIRECTORYW %p\n", lpwfs);
3030 req = &workRequest.u.FtpRemoveDirectoryW;
3031 FTP_FtpRemoveDirectoryW(lpwfs, req->lpszDirectory);
3032 HeapFree(GetProcessHeap(), 0, req->lpszDirectory);
3036 case FTPRENAMEFILEW:
3038 struct WORKREQ_FTPRENAMEFILEW *req = &workRequest.u.FtpRenameFileW;
3039 LPWININETFTPSESSIONW lpwfs = (LPWININETFTPSESSIONW) workRequest.hdr;
3041 TRACE("FTPRENAMEFILEW %p\n", lpwfs);
3043 FTP_FtpRenameFileW(lpwfs, req->lpszSrcFile, req->lpszDestFile);
3044 HeapFree(GetProcessHeap(), 0, req->lpszSrcFile);
3045 HeapFree(GetProcessHeap(), 0, req->lpszDestFile);
3049 case INTERNETFINDNEXTW:
3051 struct WORKREQ_INTERNETFINDNEXTW *req;
3052 LPWININETFINDNEXTW lpwh = (LPWININETFINDNEXTW) workRequest.hdr;
3054 TRACE("INTERNETFINDNEXTW %p\n", lpwh);
3056 req = &workRequest.u.InternetFindNextW;
3057 INTERNET_FindNextFileW(lpwh, req->lpFindFileData);
3061 case HTTPSENDREQUESTW:
3063 struct WORKREQ_HTTPSENDREQUESTW *req = &workRequest.u.HttpSendRequestW;
3064 LPWININETHTTPREQW lpwhr = (LPWININETHTTPREQW) workRequest.hdr;
3066 TRACE("HTTPSENDREQUESTW %p\n", lpwhr);
3068 HTTP_HttpSendRequestW(lpwhr, req->lpszHeader,
3069 req->dwHeaderLength, req->lpOptional, req->dwOptionalLength);
3071 HeapFree(GetProcessHeap(), 0, req->lpszHeader);
3075 case HTTPOPENREQUESTW:
3077 struct WORKREQ_HTTPOPENREQUESTW *req = &workRequest.u.HttpOpenRequestW;
3078 LPWININETHTTPSESSIONW lpwhs = (LPWININETHTTPSESSIONW) workRequest.hdr;
3080 TRACE("HTTPOPENREQUESTW %p\n", lpwhs);
3082 HTTP_HttpOpenRequestW(lpwhs, req->lpszVerb,
3083 req->lpszObjectName, req->lpszVersion, req->lpszReferrer,
3084 req->lpszAcceptTypes, req->dwFlags, req->dwContext);
3086 HeapFree(GetProcessHeap(), 0, req->lpszVerb);
3087 HeapFree(GetProcessHeap(), 0, req->lpszObjectName);
3088 HeapFree(GetProcessHeap(), 0, req->lpszVersion);
3089 HeapFree(GetProcessHeap(), 0, req->lpszReferrer);
3095 struct WORKREQ_SENDCALLBACK *req = &workRequest.u.SendCallback;
3097 TRACE("SENDCALLBACK %p\n", workRequest.hdr);
3099 SendSyncCallback(workRequest.hdr,
3100 req->dwContext, req->dwInternetStatus, req->lpvStatusInfo,
3101 req->dwStatusInfoLength);
3103 /* And frees the copy of the status info */
3104 HeapFree(GetProcessHeap(), 0, req->lpvStatusInfo);
3108 case INTERNETOPENURLW:
3110 struct WORKREQ_INTERNETOPENURLW *req = &workRequest.u.InternetOpenUrlW;
3111 LPWININETAPPINFOW hIC = (LPWININETAPPINFOW) workRequest.hdr;
3113 TRACE("INTERNETOPENURLW %p\n", hIC);
3115 INTERNET_InternetOpenUrlW(hIC, req->lpszUrl,
3116 req->lpszHeaders, req->dwHeadersLength, req->dwFlags, req->dwContext);
3117 HeapFree(GetProcessHeap(), 0, req->lpszUrl);
3118 HeapFree(GetProcessHeap(), 0, req->lpszHeaders);
3122 WININET_Release( workRequest.hdr );
3126 /***********************************************************************
3127 * INTERNET_GetResponseBuffer
3132 LPSTR INTERNET_GetResponseBuffer(void)
3134 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3136 return lpwite->response;
3139 /***********************************************************************
3140 * INTERNET_GetNextLine (internal)
3142 * Parse next line in directory string listing
3145 * Pointer to beginning of next line
3150 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen)
3154 BOOL bSuccess = FALSE;
3156 LPSTR lpszBuffer = INTERNET_GetResponseBuffer();
3161 FD_SET(nSocket, &infd);
3162 tv.tv_sec=RESPONSE_TIMEOUT;
3165 while (nRecv < MAX_REPLY_LEN)
3167 if (select(nSocket+1,&infd,NULL,NULL,&tv) > 0)
3169 if (recv(nSocket, &lpszBuffer[nRecv], 1, 0) <= 0)
3171 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
3175 if (lpszBuffer[nRecv] == '\n')
3180 if (lpszBuffer[nRecv] != '\r')
3185 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT);
3193 lpszBuffer[nRecv] = '\0';
3195 TRACE(":%d %s\n", nRecv, lpszBuffer);
3204 /***********************************************************************
3207 BOOL WINAPI InternetQueryDataAvailable( HINTERNET hFile,
3208 LPDWORD lpdwNumberOfBytesAvailble,
3209 DWORD dwFlags, DWORD dwConext)
3211 LPWININETHTTPREQW lpwhr;
3215 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hFile );
3218 SetLastError(ERROR_NO_MORE_FILES);
3222 TRACE("--> %p %i\n",lpwhr,lpwhr->hdr.htype);
3224 switch (lpwhr->hdr.htype)
3227 if (!NETCON_recv(&lpwhr->netConnection, buffer,
3228 4048, MSG_PEEK, (int *)lpdwNumberOfBytesAvailble))
3230 SetLastError(ERROR_NO_MORE_FILES);
3238 FIXME("unsupported file type\n");
3241 WININET_Release( &lpwhr->hdr );
3243 TRACE("<-- %i\n",retval);
3248 /***********************************************************************
3251 BOOL WINAPI InternetLockRequestFile( HINTERNET hInternet, HANDLE
3258 BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
3265 /***********************************************************************
3268 * On windows this function is supposed to dial the default internet
3269 * connection. We don't want to have Wine dial out to the internet so
3270 * we return TRUE by default. It might be nice to check if we are connected.
3277 BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
3281 /* Tell that we are connected to the internet. */
3285 /***********************************************************************
3286 * InternetAutodialHangup
3288 * Hangs up a connection made with InternetAutodial
3297 BOOL WINAPI InternetAutodialHangup(DWORD dwReserved)
3301 /* we didn't dial, we don't disconnect */
3305 /***********************************************************************
3307 * InternetCombineUrlA
3309 * Combine a base URL with a relative URL
3317 BOOL WINAPI InternetCombineUrlA(LPCSTR lpszBaseUrl, LPCSTR lpszRelativeUrl,
3318 LPSTR lpszBuffer, LPDWORD lpdwBufferLength,
3323 TRACE("(%s, %s, %p, %p, 0x%08lx)\n", debugstr_a(lpszBaseUrl), debugstr_a(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3325 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3326 dwFlags ^= ICU_NO_ENCODE;
3327 hr=UrlCombineA(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3332 /***********************************************************************
3334 * InternetCombineUrlW
3336 * Combine a base URL with a relative URL
3344 BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
3345 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength,
3350 TRACE("(%s, %s, %p, %p, 0x%08lx)\n", debugstr_w(lpszBaseUrl), debugstr_w(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3352 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3353 dwFlags ^= ICU_NO_ENCODE;
3354 hr=UrlCombineW(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3359 /***********************************************************************
3361 * InternetCreateUrlA
3368 BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
3369 LPSTR lpszUrl, LPDWORD lpdwUrlLength)
3375 DWORD WINAPI InternetConfirmZoneCrossingA( HWND hWnd, LPSTR szUrlPrev, LPSTR szUrlNew, BOOL bPost )
3377 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_a(szUrlPrev), debugstr_a(szUrlNew), bPost);
3378 return ERROR_SUCCESS;
3381 DWORD WINAPI InternetConfirmZoneCrossingW( HWND hWnd, LPWSTR szUrlPrev, LPWSTR szUrlNew, BOOL bPost )
3383 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_w(szUrlPrev), debugstr_w(szUrlNew), bPost);
3384 return ERROR_SUCCESS;
3387 DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
3388 LPDWORD lpdwConnection, DWORD dwReserved )
3390 FIXME("(%p, %p, 0x%08lx, %p, 0x%08lx) stub\n", hwndParent, lpszConnectoid, dwFlags,
3391 lpdwConnection, dwReserved);
3392 return ERROR_SUCCESS;
3395 DWORD WINAPI InternetDialW( HWND hwndParent, LPWSTR lpszConnectoid, DWORD dwFlags,
3396 LPDWORD lpdwConnection, DWORD dwReserved )
3398 FIXME("(%p, %p, 0x%08lx, %p, 0x%08lx) stub\n", hwndParent, lpszConnectoid, dwFlags,
3399 lpdwConnection, dwReserved);
3400 return ERROR_SUCCESS;
3403 BOOL WINAPI InternetGoOnlineA( LPSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3405 FIXME("(%s, %p, 0x%08lx) stub\n", debugstr_a(lpszURL), hwndParent, dwReserved);
3409 BOOL WINAPI InternetGoOnlineW( LPWSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3411 FIXME("(%s, %p, 0x%08lx) stub\n", debugstr_w(lpszURL), hwndParent, dwReserved);
3415 DWORD WINAPI InternetHangUp( DWORD dwConnection, DWORD dwReserved )
3417 FIXME("(0x%08lx, 0x%08lx) stub\n", dwConnection, dwReserved);
3418 return ERROR_SUCCESS;
3421 BOOL WINAPI CreateMD5SSOHash( PWSTR pszChallengeInfo, PWSTR pwszRealm, PWSTR pwszTarget,
3424 FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo), debugstr_w(pwszRealm),
3425 debugstr_w(pwszTarget), pbHexHash);
3429 BOOL WINAPI InternetClearAllPerSiteCookieDecisions( VOID )
3435 BOOL WINAPI InternetEnumPerSiteCookieDecisionA( LPSTR pszSiteName, unsigned long *pcSiteNameSize,
3436 unsigned long *pdwDecision, unsigned long dwIndex )
3438 FIXME("(%s, %p, %p, 0x%08lx) stub\n",
3439 debugstr_a(pszSiteName), pcSiteNameSize, pdwDecision, dwIndex);
3443 BOOL WINAPI InternetEnumPerSiteCookieDecisionW( LPWSTR pszSiteName, unsigned long *pcSiteNameSize,
3444 unsigned long *pdwDecision, unsigned long dwIndex )
3446 FIXME("(%s, %p, %p, 0x%08lx) stub\n",
3447 debugstr_w(pszSiteName), pcSiteNameSize, pdwDecision, dwIndex);
3451 BOOL WINAPI InternetGetCookieExA( LPCSTR pchURL, LPCSTR pchCookieName, LPSTR pchCookieData,
3452 LPDWORD pcchCookieData, DWORD dwFlags, LPVOID lpReserved)
3454 FIXME("(%s, %s, %s, %p, 0x%08lx, %p) stub\n",
3455 debugstr_a(pchURL), debugstr_a(pchCookieName), debugstr_a(pchCookieData),
3456 pcchCookieData, dwFlags, lpReserved);
3460 BOOL WINAPI InternetGetCookieExW( LPCWSTR pchURL, LPCWSTR pchCookieName, LPWSTR pchCookieData,
3461 LPDWORD pcchCookieData, DWORD dwFlags, LPVOID lpReserved)
3463 FIXME("(%s, %s, %s, %p, 0x%08lx, %p) stub\n",
3464 debugstr_w(pchURL), debugstr_w(pchCookieName), debugstr_w(pchCookieData),
3465 pcchCookieData, dwFlags, lpReserved);
3469 BOOL WINAPI InternetGetPerSiteCookieDecisionA( LPCSTR pwchHostName, unsigned long *pResult )
3471 FIXME("(%s, %p) stub\n", debugstr_a(pwchHostName), pResult);
3475 BOOL WINAPI InternetGetPerSiteCookieDecisionW( LPCWSTR pwchHostName, unsigned long *pResult )
3477 FIXME("(%s, %p) stub\n", debugstr_w(pwchHostName), pResult);
3481 BOOL WINAPI InternetSetPerSiteCookieDecisionA( LPCSTR pchHostName, DWORD dwDecision )
3483 FIXME("(%s, 0x%08lx) stub\n", debugstr_a(pchHostName), dwDecision);
3487 BOOL WINAPI InternetSetPerSiteCookieDecisionW( LPCWSTR pchHostName, DWORD dwDecision )
3489 FIXME("(%s, 0x%08lx) stub\n", debugstr_w(pchHostName), dwDecision);
3493 DWORD WINAPI InternetSetCookieExA( LPCSTR lpszURL, LPCSTR lpszCookieName, LPCSTR lpszCookieData,
3494 DWORD dwFlags, DWORD_PTR dwReserved)
3496 FIXME("(%s, %s, %s, 0x%08lx, 0x%08lx) stub\n",
3497 debugstr_a(lpszURL), debugstr_a(lpszCookieName), debugstr_a(lpszCookieData),
3498 dwFlags, dwReserved);
3502 DWORD WINAPI InternetSetCookieExW( LPCWSTR lpszURL, LPCWSTR lpszCookieName, LPCWSTR lpszCookieData,
3503 DWORD dwFlags, DWORD_PTR dwReserved)
3505 FIXME("(%s, %s, %s, 0x%08lx, 0x%08lx) stub\n",
3506 debugstr_w(lpszURL), debugstr_w(lpszCookieName), debugstr_w(lpszCookieData),
3507 dwFlags, dwReserved);
3511 BOOL WINAPI ResumeSuspendedDownload( HINTERNET hInternet, DWORD dwError )
3513 FIXME("(%p, 0x%08lx) stub\n", hInternet, dwError);
3517 /***********************************************************************
3519 * InternetCreateUrlW
3526 BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
3527 LPWSTR lpszUrl, LPDWORD lpdwUrlLength)
3533 /***********************************************************************
3534 * dump_INTERNET_FLAGS
3536 * Helper function to TRACE the internet flags.
3542 void dump_INTERNET_FLAGS(DWORD dwFlags)
3544 #define FE(x) { x, #x }
3545 static const wininet_flag_info flag[] = {
3546 FE(INTERNET_FLAG_RELOAD),
3547 FE(INTERNET_FLAG_RAW_DATA),
3548 FE(INTERNET_FLAG_EXISTING_CONNECT),
3549 FE(INTERNET_FLAG_ASYNC),
3550 FE(INTERNET_FLAG_PASSIVE),
3551 FE(INTERNET_FLAG_NO_CACHE_WRITE),
3552 FE(INTERNET_FLAG_MAKE_PERSISTENT),
3553 FE(INTERNET_FLAG_FROM_CACHE),
3554 FE(INTERNET_FLAG_SECURE),
3555 FE(INTERNET_FLAG_KEEP_CONNECTION),
3556 FE(INTERNET_FLAG_NO_AUTO_REDIRECT),
3557 FE(INTERNET_FLAG_READ_PREFETCH),
3558 FE(INTERNET_FLAG_NO_COOKIES),
3559 FE(INTERNET_FLAG_NO_AUTH),
3560 FE(INTERNET_FLAG_CACHE_IF_NET_FAIL),
3561 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP),
3562 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS),
3563 FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID),
3564 FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID),
3565 FE(INTERNET_FLAG_RESYNCHRONIZE),
3566 FE(INTERNET_FLAG_HYPERLINK),
3567 FE(INTERNET_FLAG_NO_UI),
3568 FE(INTERNET_FLAG_PRAGMA_NOCACHE),
3569 FE(INTERNET_FLAG_CACHE_ASYNC),
3570 FE(INTERNET_FLAG_FORMS_SUBMIT),
3571 FE(INTERNET_FLAG_NEED_FILE),
3572 FE(INTERNET_FLAG_TRANSFER_ASCII),
3573 FE(INTERNET_FLAG_TRANSFER_BINARY)
3578 for (i = 0; i < (sizeof(flag) / sizeof(flag[0])); i++) {
3579 if (flag[i].val & dwFlags) {
3580 TRACE(" %s", flag[i].name);
3581 dwFlags &= ~flag[i].val;
3585 TRACE(" Unknown flags (%08lx)\n", dwFlags);