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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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
64 #include "wine/exception.h"
69 #include "wine/unicode.h"
71 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
73 #define RESPONSE_TIMEOUT 30
78 CHAR response[MAX_REPLY_LEN];
79 } WITHREADERROR, *LPWITHREADERROR;
81 static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr);
82 HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
83 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext);
85 static DWORD g_dwTlsErrIndex = TLS_OUT_OF_INDEXES;
86 static HMODULE WININET_hModule;
88 #define HANDLE_CHUNK_SIZE 0x10
90 static CRITICAL_SECTION WININET_cs;
91 static CRITICAL_SECTION_DEBUG WININET_cs_debug =
94 { &WININET_cs_debug.ProcessLocksList, &WININET_cs_debug.ProcessLocksList },
95 0, 0, { (DWORD_PTR)(__FILE__ ": WININET_cs") }
97 static CRITICAL_SECTION WININET_cs = { &WININET_cs_debug, -1, 0, 0, 0, 0 };
99 static LPWININETHANDLEHEADER *WININET_Handles;
100 static UINT WININET_dwNextHandle;
101 static UINT WININET_dwMaxHandles;
103 HINTERNET WININET_AllocHandle( LPWININETHANDLEHEADER info )
105 LPWININETHANDLEHEADER *p;
106 UINT handle = 0, num;
108 list_init( &info->children );
110 EnterCriticalSection( &WININET_cs );
111 if( !WININET_dwMaxHandles )
113 num = HANDLE_CHUNK_SIZE;
114 p = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
119 WININET_dwMaxHandles = num;
121 if( WININET_dwMaxHandles == WININET_dwNextHandle )
123 num = WININET_dwMaxHandles + HANDLE_CHUNK_SIZE;
124 p = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
125 WININET_Handles, sizeof (UINT)* num);
129 WININET_dwMaxHandles = num;
132 handle = WININET_dwNextHandle;
133 if( WININET_Handles[handle] )
134 ERR("handle isn't free but should be\n");
135 WININET_Handles[handle] = WININET_AddRef( info );
137 while( WININET_Handles[WININET_dwNextHandle] &&
138 (WININET_dwNextHandle < WININET_dwMaxHandles ) )
139 WININET_dwNextHandle++;
142 LeaveCriticalSection( &WININET_cs );
144 return info->hInternet = (HINTERNET) (handle+1);
147 LPWININETHANDLEHEADER WININET_AddRef( LPWININETHANDLEHEADER info )
150 TRACE("%p -> refcount = %d\n", info, info->dwRefCount );
154 LPWININETHANDLEHEADER WININET_GetObject( HINTERNET hinternet )
156 LPWININETHANDLEHEADER info = NULL;
157 UINT handle = (UINT) hinternet;
159 EnterCriticalSection( &WININET_cs );
161 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) &&
162 WININET_Handles[handle-1] )
163 info = WININET_AddRef( WININET_Handles[handle-1] );
165 LeaveCriticalSection( &WININET_cs );
167 TRACE("handle %d -> %p\n", handle, info);
172 BOOL WININET_Release( LPWININETHANDLEHEADER info )
175 TRACE( "object %p refcount = %d\n", info, info->dwRefCount );
176 if( !info->dwRefCount )
178 if ( info->close_connection )
180 TRACE( "closing connection %p\n", info);
181 info->close_connection( info );
183 INTERNET_SendCallback(info, info->dwContext,
184 INTERNET_STATUS_HANDLE_CLOSING, &info->hInternet,
186 TRACE( "destroying object %p\n", info);
187 if ( info->htype != WH_HINIT )
188 list_remove( &info->entry );
189 info->destroy( info );
194 BOOL WININET_FreeHandle( HINTERNET hinternet )
197 UINT handle = (UINT) hinternet;
198 LPWININETHANDLEHEADER info = NULL, child, next;
200 EnterCriticalSection( &WININET_cs );
202 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) )
205 if( WININET_Handles[handle] )
207 info = WININET_Handles[handle];
208 TRACE( "destroying handle %d for object %p\n", handle+1, info);
209 WININET_Handles[handle] = NULL;
214 LeaveCriticalSection( &WININET_cs );
216 /* As on native when the equivalent of WININET_Release is called, the handle
217 * is already invalid, but if a new handle is created at this time it does
218 * not yet get assigned the freed handle number */
221 /* Free all children as native does */
222 LIST_FOR_EACH_ENTRY_SAFE( child, next, &info->children, WININETHANDLEHEADER, entry )
224 TRACE( "freeing child handle %d for parent handle %d\n",
225 (UINT)child->hInternet, handle+1);
226 WININET_FreeHandle( child->hInternet );
228 WININET_Release( info );
231 EnterCriticalSection( &WININET_cs );
233 if( WININET_dwNextHandle > handle && !WININET_Handles[handle] )
234 WININET_dwNextHandle = handle;
236 LeaveCriticalSection( &WININET_cs );
241 /***********************************************************************
242 * DllMain [Internal] Initializes the internal 'WININET.DLL'.
245 * hinstDLL [I] handle to the DLL's instance
247 * lpvReserved [I] reserved, must be NULL
254 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
256 TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
259 case DLL_PROCESS_ATTACH:
261 g_dwTlsErrIndex = TlsAlloc();
263 if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
266 URLCacheContainers_CreateDefaults();
268 WININET_hModule = (HMODULE)hinstDLL;
270 case DLL_THREAD_ATTACH:
273 case DLL_THREAD_DETACH:
274 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
276 LPVOID lpwite = TlsGetValue(g_dwTlsErrIndex);
277 HeapFree(GetProcessHeap(), 0, lpwite);
281 case DLL_PROCESS_DETACH:
283 URLCacheContainers_DeleteAll();
285 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
287 HeapFree(GetProcessHeap(), 0, TlsGetValue(g_dwTlsErrIndex));
288 TlsFree(g_dwTlsErrIndex);
297 /***********************************************************************
298 * InternetInitializeAutoProxyDll (WININET.@)
300 * Setup the internal proxy
309 BOOL WINAPI InternetInitializeAutoProxyDll(DWORD dwReserved)
312 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
316 /***********************************************************************
317 * DetectAutoProxyUrl (WININET.@)
319 * Auto detect the proxy url
325 BOOL WINAPI DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl,
326 DWORD dwAutoProxyUrlLength, DWORD dwDetectFlags)
329 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
334 /***********************************************************************
335 * INTERNET_ConfigureProxyFromReg
338 * The proxy may be specified in the form 'http=proxy.my.org'
339 * Presumably that means there can be ftp=ftpproxy.my.org too.
341 static BOOL INTERNET_ConfigureProxyFromReg( LPWININETAPPINFOW lpwai )
344 DWORD r, keytype, len, enabled;
345 LPCSTR lpszInternetSettings =
346 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
347 static const WCHAR szProxyServer[] = { 'P','r','o','x','y','S','e','r','v','e','r', 0 };
349 r = RegOpenKeyA(HKEY_CURRENT_USER, lpszInternetSettings, &key);
350 if ( r != ERROR_SUCCESS )
353 len = sizeof enabled;
354 r = RegQueryValueExA( key, "ProxyEnable", NULL, &keytype,
355 (BYTE*)&enabled, &len);
356 if( (r == ERROR_SUCCESS) && enabled )
358 TRACE("Proxy is enabled.\n");
360 /* figure out how much memory the proxy setting takes */
361 r = RegQueryValueExW( key, szProxyServer, NULL, &keytype,
363 if( (r == ERROR_SUCCESS) && len && (keytype == REG_SZ) )
366 static const WCHAR szHttp[] = {'h','t','t','p','=',0};
368 szProxy=HeapAlloc( GetProcessHeap(), 0, len );
369 RegQueryValueExW( key, szProxyServer, NULL, &keytype,
370 (BYTE*)szProxy, &len);
372 /* find the http proxy, and strip away everything else */
373 p = strstrW( szProxy, szHttp );
376 p += lstrlenW(szHttp);
377 lstrcpyW( szProxy, p );
379 p = strchrW( szProxy, ' ' );
383 lpwai->dwAccessType = INTERNET_OPEN_TYPE_PROXY;
384 lpwai->lpszProxy = szProxy;
386 TRACE("http proxy = %s\n", debugstr_w(lpwai->lpszProxy));
389 ERR("Couldn't read proxy server settings.\n");
392 TRACE("Proxy is not enabled.\n");
398 /***********************************************************************
399 * dump_INTERNET_FLAGS
401 * Helper function to TRACE the internet flags.
407 static void dump_INTERNET_FLAGS(DWORD dwFlags)
409 #define FE(x) { x, #x }
410 static const wininet_flag_info flag[] = {
411 FE(INTERNET_FLAG_RELOAD),
412 FE(INTERNET_FLAG_RAW_DATA),
413 FE(INTERNET_FLAG_EXISTING_CONNECT),
414 FE(INTERNET_FLAG_ASYNC),
415 FE(INTERNET_FLAG_PASSIVE),
416 FE(INTERNET_FLAG_NO_CACHE_WRITE),
417 FE(INTERNET_FLAG_MAKE_PERSISTENT),
418 FE(INTERNET_FLAG_FROM_CACHE),
419 FE(INTERNET_FLAG_SECURE),
420 FE(INTERNET_FLAG_KEEP_CONNECTION),
421 FE(INTERNET_FLAG_NO_AUTO_REDIRECT),
422 FE(INTERNET_FLAG_READ_PREFETCH),
423 FE(INTERNET_FLAG_NO_COOKIES),
424 FE(INTERNET_FLAG_NO_AUTH),
425 FE(INTERNET_FLAG_CACHE_IF_NET_FAIL),
426 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP),
427 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS),
428 FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID),
429 FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID),
430 FE(INTERNET_FLAG_RESYNCHRONIZE),
431 FE(INTERNET_FLAG_HYPERLINK),
432 FE(INTERNET_FLAG_NO_UI),
433 FE(INTERNET_FLAG_PRAGMA_NOCACHE),
434 FE(INTERNET_FLAG_CACHE_ASYNC),
435 FE(INTERNET_FLAG_FORMS_SUBMIT),
436 FE(INTERNET_FLAG_NEED_FILE),
437 FE(INTERNET_FLAG_TRANSFER_ASCII),
438 FE(INTERNET_FLAG_TRANSFER_BINARY)
443 for (i = 0; i < (sizeof(flag) / sizeof(flag[0])); i++) {
444 if (flag[i].val & dwFlags) {
445 TRACE(" %s", flag[i].name);
446 dwFlags &= ~flag[i].val;
450 TRACE(" Unknown flags (%08x)\n", dwFlags);
455 /***********************************************************************
456 * InternetOpenW (WININET.@)
458 * Per-application initialization of wininet
461 * HINTERNET on success
465 HINTERNET WINAPI InternetOpenW(LPCWSTR lpszAgent, DWORD dwAccessType,
466 LPCWSTR lpszProxy, LPCWSTR lpszProxyBypass, DWORD dwFlags)
468 LPWININETAPPINFOW lpwai = NULL;
469 HINTERNET handle = NULL;
471 if (TRACE_ON(wininet)) {
472 #define FE(x) { x, #x }
473 static const wininet_flag_info access_type[] = {
474 FE(INTERNET_OPEN_TYPE_PRECONFIG),
475 FE(INTERNET_OPEN_TYPE_DIRECT),
476 FE(INTERNET_OPEN_TYPE_PROXY),
477 FE(INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY)
481 const char *access_type_str = "Unknown";
483 TRACE("(%s, %i, %s, %s, %i)\n", debugstr_w(lpszAgent), dwAccessType,
484 debugstr_w(lpszProxy), debugstr_w(lpszProxyBypass), dwFlags);
485 for (i = 0; i < (sizeof(access_type) / sizeof(access_type[0])); i++) {
486 if (access_type[i].val == dwAccessType) {
487 access_type_str = access_type[i].name;
491 TRACE(" access type : %s\n", access_type_str);
493 dump_INTERNET_FLAGS(dwFlags);
496 /* Clear any error information */
497 INTERNET_SetLastError(0);
499 lpwai = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETAPPINFOW));
502 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
506 lpwai->hdr.htype = WH_HINIT;
507 lpwai->hdr.dwFlags = dwFlags;
508 lpwai->hdr.dwRefCount = 1;
509 lpwai->hdr.close_connection = NULL;
510 lpwai->hdr.destroy = INTERNET_CloseHandle;
511 lpwai->dwAccessType = dwAccessType;
512 lpwai->lpszProxyUsername = NULL;
513 lpwai->lpszProxyPassword = NULL;
515 handle = WININET_AllocHandle( &lpwai->hdr );
518 HeapFree( GetProcessHeap(), 0, lpwai );
519 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
523 if (NULL != lpszAgent)
525 lpwai->lpszAgent = HeapAlloc( GetProcessHeap(),0,
526 (strlenW(lpszAgent)+1)*sizeof(WCHAR));
527 if (lpwai->lpszAgent)
528 lstrcpyW( lpwai->lpszAgent, lpszAgent );
530 if(dwAccessType == INTERNET_OPEN_TYPE_PRECONFIG)
531 INTERNET_ConfigureProxyFromReg( lpwai );
532 else if (NULL != lpszProxy)
534 lpwai->lpszProxy = HeapAlloc( GetProcessHeap(), 0,
535 (strlenW(lpszProxy)+1)*sizeof(WCHAR));
536 if (lpwai->lpszProxy)
537 lstrcpyW( lpwai->lpszProxy, lpszProxy );
540 if (NULL != lpszProxyBypass)
542 lpwai->lpszProxyBypass = HeapAlloc( GetProcessHeap(), 0,
543 (strlenW(lpszProxyBypass)+1)*sizeof(WCHAR));
544 if (lpwai->lpszProxyBypass)
545 lstrcpyW( lpwai->lpszProxyBypass, lpszProxyBypass );
550 WININET_Release( &lpwai->hdr );
552 TRACE("returning %p\n", lpwai);
558 /***********************************************************************
559 * InternetOpenA (WININET.@)
561 * Per-application initialization of wininet
564 * HINTERNET on success
568 HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent, DWORD dwAccessType,
569 LPCSTR lpszProxy, LPCSTR lpszProxyBypass, DWORD dwFlags)
571 HINTERNET rc = (HINTERNET)NULL;
573 WCHAR *szAgent = NULL, *szProxy = NULL, *szBypass = NULL;
575 TRACE("(%s, 0x%08x, %s, %s, 0x%08x)\n", debugstr_a(lpszAgent),
576 dwAccessType, debugstr_a(lpszProxy), debugstr_a(lpszProxyBypass), dwFlags);
580 len = MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, NULL, 0);
581 szAgent = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
582 MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, szAgent, len);
587 len = MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, NULL, 0);
588 szProxy = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
589 MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, szProxy, len);
592 if( lpszProxyBypass )
594 len = MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, NULL, 0);
595 szBypass = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
596 MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, szBypass, len);
599 rc = InternetOpenW(szAgent, dwAccessType, szProxy, szBypass, dwFlags);
601 HeapFree(GetProcessHeap(), 0, szAgent);
602 HeapFree(GetProcessHeap(), 0, szProxy);
603 HeapFree(GetProcessHeap(), 0, szBypass);
608 /***********************************************************************
609 * InternetGetLastResponseInfoA (WININET.@)
611 * Return last wininet error description on the calling thread
614 * TRUE on success of writing to buffer
618 BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
619 LPSTR lpszBuffer, LPDWORD lpdwBufferLength)
621 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
627 *lpdwError = lpwite->dwError;
630 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
631 *lpdwBufferLength = strlen(lpszBuffer);
634 *lpdwBufferLength = 0;
639 *lpdwBufferLength = 0;
645 /***********************************************************************
646 * InternetGetLastResponseInfoW (WININET.@)
648 * Return last wininet error description on the calling thread
651 * TRUE on success of writing to buffer
655 BOOL WINAPI InternetGetLastResponseInfoW(LPDWORD lpdwError,
656 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength)
658 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
664 *lpdwError = lpwite->dwError;
667 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
668 *lpdwBufferLength = lstrlenW(lpszBuffer);
671 *lpdwBufferLength = 0;
676 *lpdwBufferLength = 0;
682 /***********************************************************************
683 * InternetGetConnectedState (WININET.@)
685 * Return connected state
689 * if lpdwStatus is not null, return the status (off line,
690 * modem, lan...) in it.
691 * FALSE if not connected
693 BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
695 TRACE("(%p, 0x%08x)\n", lpdwStatus, dwReserved);
698 FIXME("always returning LAN connection.\n");
699 *lpdwStatus = INTERNET_CONNECTION_LAN;
705 /***********************************************************************
706 * InternetGetConnectedStateExW (WININET.@)
708 * Return connected state
712 * lpdwStatus [O] Flags specifying the status of the internet connection.
713 * lpszConnectionName [O] Pointer to buffer to receive the friendly name of the internet connection.
714 * dwNameLen [I] Size of the buffer, in characters.
715 * dwReserved [I] Reserved. Must be set to 0.
719 * if lpdwStatus is not null, return the status (off line,
720 * modem, lan...) in it.
721 * FALSE if not connected
724 * If the system has no available network connections, an empty string is
725 * stored in lpszConnectionName. If there is a LAN connection, a localized
726 * "LAN Connection" string is stored. Presumably, if only a dial-up
727 * connection is available then the name of the dial-up connection is
728 * returned. Why any application, other than the "Internet Settings" CPL,
729 * would want to use this function instead of the simpler InternetGetConnectedStateW
730 * function is beyond me.
732 BOOL WINAPI InternetGetConnectedStateExW(LPDWORD lpdwStatus, LPWSTR lpszConnectionName,
733 DWORD dwNameLen, DWORD dwReserved)
735 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
742 FIXME("always returning LAN connection.\n");
743 *lpdwStatus = INTERNET_CONNECTION_LAN;
745 return LoadStringW(WININET_hModule, IDS_LANCONNECTION, lpszConnectionName, dwNameLen);
749 /***********************************************************************
750 * InternetGetConnectedStateExA (WININET.@)
752 BOOL WINAPI InternetGetConnectedStateExA(LPDWORD lpdwStatus, LPSTR lpszConnectionName,
753 DWORD dwNameLen, DWORD dwReserved)
755 LPWSTR lpwszConnectionName = NULL;
758 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
760 if (lpszConnectionName && dwNameLen > 0)
761 lpwszConnectionName= HeapAlloc(GetProcessHeap(), 0, dwNameLen * sizeof(WCHAR));
763 rc = InternetGetConnectedStateExW(lpdwStatus,lpwszConnectionName, dwNameLen,
765 if (rc && lpwszConnectionName)
767 WideCharToMultiByte(CP_ACP,0,lpwszConnectionName,-1,lpszConnectionName,
768 dwNameLen, NULL, NULL);
770 HeapFree(GetProcessHeap(),0,lpwszConnectionName);
777 /***********************************************************************
778 * InternetConnectW (WININET.@)
780 * Open a ftp, gopher or http session
783 * HINTERNET a session handle on success
787 HINTERNET WINAPI InternetConnectW(HINTERNET hInternet,
788 LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
789 LPCWSTR lpszUserName, LPCWSTR lpszPassword,
790 DWORD dwService, DWORD dwFlags, DWORD_PTR dwContext)
792 LPWININETAPPINFOW hIC;
795 TRACE("(%p, %s, %i, %s, %s, %i, %i, %lx)\n", hInternet, debugstr_w(lpszServerName),
796 nServerPort, debugstr_w(lpszUserName), debugstr_w(lpszPassword),
797 dwService, dwFlags, dwContext);
801 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
805 /* Clear any error information */
806 INTERNET_SetLastError(0);
807 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
808 if ( (hIC == NULL) || (hIC->hdr.htype != WH_HINIT) )
810 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
816 case INTERNET_SERVICE_FTP:
817 rc = FTP_Connect(hIC, lpszServerName, nServerPort,
818 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
821 case INTERNET_SERVICE_HTTP:
822 rc = HTTP_Connect(hIC, lpszServerName, nServerPort,
823 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
826 case INTERNET_SERVICE_GOPHER:
832 WININET_Release( &hIC->hdr );
834 TRACE("returning %p\n", rc);
839 /***********************************************************************
840 * InternetConnectA (WININET.@)
842 * Open a ftp, gopher or http session
845 * HINTERNET a session handle on success
849 HINTERNET WINAPI InternetConnectA(HINTERNET hInternet,
850 LPCSTR lpszServerName, INTERNET_PORT nServerPort,
851 LPCSTR lpszUserName, LPCSTR lpszPassword,
852 DWORD dwService, DWORD dwFlags, DWORD_PTR dwContext)
854 HINTERNET rc = (HINTERNET)NULL;
856 LPWSTR szServerName = NULL;
857 LPWSTR szUserName = NULL;
858 LPWSTR szPassword = NULL;
862 len = MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, NULL, 0);
863 szServerName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
864 MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, szServerName, len);
868 len = MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, NULL, 0);
869 szUserName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
870 MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, szUserName, len);
874 len = MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, NULL, 0);
875 szPassword = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
876 MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, szPassword, len);
880 rc = InternetConnectW(hInternet, szServerName, nServerPort,
881 szUserName, szPassword, dwService, dwFlags, dwContext);
883 HeapFree(GetProcessHeap(), 0, szServerName);
884 HeapFree(GetProcessHeap(), 0, szUserName);
885 HeapFree(GetProcessHeap(), 0, szPassword);
890 /***********************************************************************
891 * InternetFindNextFileA (WININET.@)
893 * Continues a file search from a previous call to FindFirstFile
900 BOOL WINAPI InternetFindNextFileA(HINTERNET hFind, LPVOID lpvFindData)
905 ret = InternetFindNextFileW(hFind, lpvFindData?&fd:NULL);
907 WININET_find_data_WtoA(&fd, (LPWIN32_FIND_DATAA)lpvFindData);
911 /***********************************************************************
912 * InternetFindNextFileW (WININET.@)
914 * Continues a file search from a previous call to FindFirstFile
921 static void AsyncFtpFindNextFileProc(WORKREQUEST *workRequest)
923 struct WORKREQ_FTPFINDNEXTW *req = &workRequest->u.FtpFindNextW;
924 LPWININETFTPFINDNEXTW lpwh = (LPWININETFTPFINDNEXTW) workRequest->hdr;
928 FTP_FindNextFileW(lpwh, req->lpFindFileData);
931 BOOL WINAPI InternetFindNextFileW(HINTERNET hFind, LPVOID lpvFindData)
933 LPWININETAPPINFOW hIC = NULL;
934 LPWININETFTPFINDNEXTW lpwh;
935 BOOL bSuccess = FALSE;
939 lpwh = (LPWININETFTPFINDNEXTW) WININET_GetObject( hFind );
940 if (NULL == lpwh || lpwh->hdr.htype != WH_HFTPFINDNEXT)
942 FIXME("Only FTP supported\n");
943 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
947 hIC = lpwh->lpFtpSession->lpAppInfo;
948 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
950 WORKREQUEST workRequest;
951 struct WORKREQ_FTPFINDNEXTW *req;
953 workRequest.asyncproc = AsyncFtpFindNextFileProc;
954 workRequest.hdr = WININET_AddRef( &lpwh->hdr );
955 req = &workRequest.u.FtpFindNextW;
956 req->lpFindFileData = lpvFindData;
958 bSuccess = INTERNET_AsyncCall(&workRequest);
962 bSuccess = FTP_FindNextFileW(lpwh, lpvFindData);
966 WININET_Release( &lpwh->hdr );
970 /***********************************************************************
971 * INTERNET_CloseHandle (internal)
973 * Close internet handle
979 static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr)
981 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW) hdr;
985 HeapFree(GetProcessHeap(), 0, lpwai->lpszAgent);
986 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxy);
987 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyBypass);
988 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyUsername);
989 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyPassword);
990 HeapFree(GetProcessHeap(), 0, lpwai);
994 /***********************************************************************
995 * InternetCloseHandle (WININET.@)
997 * Generic close handle function
1004 BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
1006 LPWININETHANDLEHEADER lpwh;
1008 TRACE("%p\n",hInternet);
1010 lpwh = WININET_GetObject( hInternet );
1013 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1017 WININET_Release( lpwh );
1018 WININET_FreeHandle( hInternet );
1024 /***********************************************************************
1025 * ConvertUrlComponentValue (Internal)
1027 * Helper function for InternetCrackUrlW
1030 static void ConvertUrlComponentValue(LPSTR* lppszComponent, LPDWORD dwComponentLen,
1031 LPWSTR lpwszComponent, DWORD dwwComponentLen,
1032 LPCSTR lpszStart, LPCWSTR lpwszStart)
1034 TRACE("%p %d %p %d %p %p\n", lppszComponent, *dwComponentLen, lpwszComponent, dwwComponentLen, lpszStart, lpwszStart);
1035 if (*dwComponentLen != 0)
1037 DWORD nASCIILength=WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,NULL,0,NULL,NULL);
1038 if (*lppszComponent == NULL)
1040 int nASCIIOffset=WideCharToMultiByte(CP_ACP,0,lpwszStart,lpwszComponent-lpwszStart,NULL,0,NULL,NULL);
1042 *lppszComponent = (LPSTR)lpszStart+nASCIIOffset;
1044 *lppszComponent = NULL;
1045 *dwComponentLen = nASCIILength;
1049 DWORD ncpylen = min((*dwComponentLen)-1, nASCIILength);
1050 WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,*lppszComponent,ncpylen+1,NULL,NULL);
1051 (*lppszComponent)[ncpylen]=0;
1052 *dwComponentLen = ncpylen;
1058 /***********************************************************************
1059 * InternetCrackUrlA (WININET.@)
1061 * See InternetCrackUrlW.
1063 BOOL WINAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
1064 LPURL_COMPONENTSA lpUrlComponents)
1067 URL_COMPONENTSW UCW;
1070 TRACE("(%s %u %x %p)\n", debugstr_a(lpszUrl), dwUrlLength, dwFlags, lpUrlComponents);
1072 if (!lpszUrl || !*lpszUrl)
1074 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1080 nLength=MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,NULL,0);
1082 /* if dwUrlLength=-1 then nLength includes null but length to
1083 InternetCrackUrlW should not include it */
1084 if (dwUrlLength == -1) nLength--;
1086 lpwszUrl=HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WCHAR)*nLength);
1087 MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,lpwszUrl,nLength);
1089 memset(&UCW,0,sizeof(UCW));
1090 if(lpUrlComponents->dwHostNameLength!=0)
1091 UCW.dwHostNameLength= lpUrlComponents->dwHostNameLength;
1092 if(lpUrlComponents->dwUserNameLength!=0)
1093 UCW.dwUserNameLength=lpUrlComponents->dwUserNameLength;
1094 if(lpUrlComponents->dwPasswordLength!=0)
1095 UCW.dwPasswordLength=lpUrlComponents->dwPasswordLength;
1096 if(lpUrlComponents->dwUrlPathLength!=0)
1097 UCW.dwUrlPathLength=lpUrlComponents->dwUrlPathLength;
1098 if(lpUrlComponents->dwSchemeLength!=0)
1099 UCW.dwSchemeLength=lpUrlComponents->dwSchemeLength;
1100 if(lpUrlComponents->dwExtraInfoLength!=0)
1101 UCW.dwExtraInfoLength=lpUrlComponents->dwExtraInfoLength;
1102 if(!InternetCrackUrlW(lpwszUrl,nLength,dwFlags,&UCW))
1104 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1108 ConvertUrlComponentValue(&lpUrlComponents->lpszHostName, &lpUrlComponents->dwHostNameLength,
1109 UCW.lpszHostName, UCW.dwHostNameLength,
1111 ConvertUrlComponentValue(&lpUrlComponents->lpszUserName, &lpUrlComponents->dwUserNameLength,
1112 UCW.lpszUserName, UCW.dwUserNameLength,
1114 ConvertUrlComponentValue(&lpUrlComponents->lpszPassword, &lpUrlComponents->dwPasswordLength,
1115 UCW.lpszPassword, UCW.dwPasswordLength,
1117 ConvertUrlComponentValue(&lpUrlComponents->lpszUrlPath, &lpUrlComponents->dwUrlPathLength,
1118 UCW.lpszUrlPath, UCW.dwUrlPathLength,
1120 ConvertUrlComponentValue(&lpUrlComponents->lpszScheme, &lpUrlComponents->dwSchemeLength,
1121 UCW.lpszScheme, UCW.dwSchemeLength,
1123 ConvertUrlComponentValue(&lpUrlComponents->lpszExtraInfo, &lpUrlComponents->dwExtraInfoLength,
1124 UCW.lpszExtraInfo, UCW.dwExtraInfoLength,
1126 lpUrlComponents->nScheme=UCW.nScheme;
1127 lpUrlComponents->nPort=UCW.nPort;
1128 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1130 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", lpszUrl,
1131 debugstr_an(lpUrlComponents->lpszScheme,lpUrlComponents->dwSchemeLength),
1132 debugstr_an(lpUrlComponents->lpszHostName,lpUrlComponents->dwHostNameLength),
1133 debugstr_an(lpUrlComponents->lpszUrlPath,lpUrlComponents->dwUrlPathLength),
1134 debugstr_an(lpUrlComponents->lpszExtraInfo,lpUrlComponents->dwExtraInfoLength));
1139 static const WCHAR url_schemes[][7] =
1142 {'g','o','p','h','e','r',0},
1143 {'h','t','t','p',0},
1144 {'h','t','t','p','s',0},
1145 {'f','i','l','e',0},
1146 {'n','e','w','s',0},
1147 {'m','a','i','l','t','o',0},
1151 /***********************************************************************
1152 * GetInternetSchemeW (internal)
1158 * INTERNET_SCHEME_UNKNOWN on failure
1161 static INTERNET_SCHEME GetInternetSchemeW(LPCWSTR lpszScheme, DWORD nMaxCmp)
1165 TRACE("%s %d\n",debugstr_wn(lpszScheme, nMaxCmp), nMaxCmp);
1167 if(lpszScheme==NULL)
1168 return INTERNET_SCHEME_UNKNOWN;
1170 for (i = 0; i < sizeof(url_schemes)/sizeof(url_schemes[0]); i++)
1171 if (!strncmpW(lpszScheme, url_schemes[i], nMaxCmp))
1172 return INTERNET_SCHEME_FIRST + i;
1174 return INTERNET_SCHEME_UNKNOWN;
1177 /***********************************************************************
1178 * SetUrlComponentValueW (Internal)
1180 * Helper function for InternetCrackUrlW
1183 * lppszComponent [O] Holds the returned string
1184 * dwComponentLen [I] Holds the size of lppszComponent
1185 * [O] Holds the length of the string in lppszComponent without '\0'
1186 * lpszStart [I] Holds the string to copy from
1187 * len [I] Holds the length of lpszStart without '\0'
1194 static BOOL SetUrlComponentValueW(LPWSTR* lppszComponent, LPDWORD dwComponentLen, LPCWSTR lpszStart, DWORD len)
1196 TRACE("%s (%d)\n", debugstr_wn(lpszStart,len), len);
1198 if ( (*dwComponentLen == 0) && (*lppszComponent == NULL) )
1201 if (*dwComponentLen != 0 || *lppszComponent == NULL)
1203 if (*lppszComponent == NULL)
1205 *lppszComponent = (LPWSTR)lpszStart;
1206 *dwComponentLen = len;
1210 DWORD ncpylen = min((*dwComponentLen)-1, len);
1211 memcpy(*lppszComponent, lpszStart, ncpylen*sizeof(WCHAR));
1212 (*lppszComponent)[ncpylen] = '\0';
1213 *dwComponentLen = ncpylen;
1220 /***********************************************************************
1221 * InternetCrackUrlW (WININET.@)
1223 * Break up URL into its components
1229 BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl_orig, DWORD dwUrlLength_orig, DWORD dwFlags,
1230 LPURL_COMPONENTSW lpUC)
1234 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1237 LPCWSTR lpszParam = NULL;
1238 BOOL bIsAbsolute = FALSE;
1239 LPCWSTR lpszap, lpszUrl = lpszUrl_orig;
1240 LPCWSTR lpszcp = NULL;
1241 LPWSTR lpszUrl_decode = NULL;
1242 DWORD dwUrlLength = dwUrlLength_orig;
1243 const WCHAR lpszSeparators[3]={';','?',0};
1244 const WCHAR lpszSlash[2]={'/',0};
1246 TRACE("(%s %u %x %p)\n", debugstr_w(lpszUrl), dwUrlLength, dwFlags, lpUC);
1248 if (!lpszUrl_orig || !*lpszUrl_orig || !lpUC)
1250 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1253 if (!dwUrlLength) dwUrlLength = strlenW(lpszUrl);
1255 if (dwFlags & ICU_DECODE)
1257 lpszUrl_decode=HeapAlloc( GetProcessHeap(), 0, dwUrlLength * sizeof (WCHAR) );
1258 if( InternetCanonicalizeUrlW(lpszUrl_orig, lpszUrl_decode, &dwUrlLength, dwFlags))
1260 lpszUrl = lpszUrl_decode;
1265 /* Determine if the URI is absolute. */
1266 while (*lpszap != '\0')
1268 if (isalnumW(*lpszap))
1273 if ((*lpszap == ':') && (lpszap - lpszUrl >= 2))
1280 lpszcp = lpszUrl; /* Relative url */
1286 lpUC->nScheme = INTERNET_SCHEME_UNKNOWN;
1287 lpUC->nPort = INTERNET_INVALID_PORT_NUMBER;
1289 /* Parse <params> */
1290 lpszParam = strpbrkW(lpszap, lpszSeparators);
1291 SetUrlComponentValueW(&lpUC->lpszExtraInfo, &lpUC->dwExtraInfoLength,
1292 lpszParam, lpszParam ? dwUrlLength-(lpszParam-lpszUrl) : 0);
1294 if (bIsAbsolute) /* Parse <protocol>:[//<net_loc>] */
1298 /* Get scheme first. */
1299 lpUC->nScheme = GetInternetSchemeW(lpszUrl, lpszcp - lpszUrl);
1300 SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength,
1301 lpszUrl, lpszcp - lpszUrl);
1303 /* Eat ':' in protocol. */
1306 /* double slash indicates the net_loc portion is present */
1307 if ((lpszcp[0] == '/') && (lpszcp[1] == '/'))
1311 lpszNetLoc = strpbrkW(lpszcp, lpszSlash);
1315 lpszNetLoc = min(lpszNetLoc, lpszParam);
1317 lpszNetLoc = lpszParam;
1319 else if (!lpszNetLoc)
1320 lpszNetLoc = lpszcp + dwUrlLength-(lpszcp-lpszUrl);
1328 /* [<user>[<:password>]@]<host>[:<port>] */
1329 /* First find the user and password if they exist */
1331 lpszHost = strchrW(lpszcp, '@');
1332 if (lpszHost == NULL || lpszHost > lpszNetLoc)
1334 /* username and password not specified. */
1335 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1336 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1338 else /* Parse out username and password */
1340 LPCWSTR lpszUser = lpszcp;
1341 LPCWSTR lpszPasswd = lpszHost;
1343 while (lpszcp < lpszHost)
1346 lpszPasswd = lpszcp;
1351 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength,
1352 lpszUser, lpszPasswd - lpszUser);
1354 if (lpszPasswd != lpszHost)
1356 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength,
1357 lpszPasswd == lpszHost ? NULL : lpszPasswd,
1358 lpszHost - lpszPasswd);
1360 lpszcp++; /* Advance to beginning of host */
1363 /* Parse <host><:port> */
1366 lpszPort = lpszNetLoc;
1368 /* special case for res:// URLs: there is no port here, so the host is the
1369 entire string up to the first '/' */
1370 if(lpUC->nScheme==INTERNET_SCHEME_RES)
1372 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1373 lpszHost, lpszPort - lpszHost);
1378 while (lpszcp < lpszNetLoc)
1386 /* If the scheme is "file" and the host is just one letter, it's not a host */
1387 if(lpUC->nScheme==INTERNET_SCHEME_FILE && (lpszPort-lpszHost)==1)
1390 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1395 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1396 lpszHost, lpszPort - lpszHost);
1397 if (lpszPort != lpszNetLoc)
1398 lpUC->nPort = atoiW(++lpszPort);
1399 else switch (lpUC->nScheme)
1401 case INTERNET_SCHEME_HTTP:
1402 lpUC->nPort = INTERNET_DEFAULT_HTTP_PORT;
1404 case INTERNET_SCHEME_HTTPS:
1405 lpUC->nPort = INTERNET_DEFAULT_HTTPS_PORT;
1407 case INTERNET_SCHEME_FTP:
1408 lpUC->nPort = INTERNET_DEFAULT_FTP_PORT;
1410 case INTERNET_SCHEME_GOPHER:
1411 lpUC->nPort = INTERNET_DEFAULT_GOPHER_PORT;
1422 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1423 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1424 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1429 SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength, NULL, 0);
1430 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1431 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1432 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1435 /* Here lpszcp points to:
1437 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1438 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1440 if (lpszcp != 0 && *lpszcp != '\0' && (!lpszParam || lpszcp < lpszParam))
1444 /* Only truncate the parameter list if it's already been saved
1445 * in lpUC->lpszExtraInfo.
1447 if (lpszParam && lpUC->dwExtraInfoLength && lpUC->lpszExtraInfo)
1448 len = lpszParam - lpszcp;
1451 /* Leave the parameter list in lpszUrlPath. Strip off any trailing
1452 * newlines if necessary.
1454 LPWSTR lpsznewline = strchrW(lpszcp, '\n');
1455 if (lpsznewline != NULL)
1456 len = lpsznewline - lpszcp;
1458 len = dwUrlLength-(lpszcp-lpszUrl);
1460 SetUrlComponentValueW(&lpUC->lpszUrlPath, &lpUC->dwUrlPathLength,
1465 lpUC->dwUrlPathLength = 0;
1468 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl,dwUrlLength),
1469 debugstr_wn(lpUC->lpszScheme,lpUC->dwSchemeLength),
1470 debugstr_wn(lpUC->lpszHostName,lpUC->dwHostNameLength),
1471 debugstr_wn(lpUC->lpszUrlPath,lpUC->dwUrlPathLength),
1472 debugstr_wn(lpUC->lpszExtraInfo,lpUC->dwExtraInfoLength));
1474 HeapFree(GetProcessHeap(), 0, lpszUrl_decode );
1478 /***********************************************************************
1479 * InternetAttemptConnect (WININET.@)
1481 * Attempt to make a connection to the internet
1484 * ERROR_SUCCESS on success
1485 * Error value on failure
1488 DWORD WINAPI InternetAttemptConnect(DWORD dwReserved)
1491 return ERROR_SUCCESS;
1495 /***********************************************************************
1496 * InternetCanonicalizeUrlA (WININET.@)
1498 * Escape unsafe characters and spaces
1505 BOOL WINAPI InternetCanonicalizeUrlA(LPCSTR lpszUrl, LPSTR lpszBuffer,
1506 LPDWORD lpdwBufferLength, DWORD dwFlags)
1509 DWORD dwURLFlags= 0x80000000; /* Don't know what this means */
1510 if(dwFlags & ICU_DECODE)
1512 dwURLFlags |= URL_UNESCAPE;
1513 dwFlags &= ~ICU_DECODE;
1516 if(dwFlags & ICU_ESCAPE)
1518 dwURLFlags |= URL_UNESCAPE;
1519 dwFlags &= ~ICU_ESCAPE;
1521 if(dwFlags & ICU_BROWSER_MODE)
1523 dwURLFlags |= URL_BROWSER_MODE;
1524 dwFlags &= ~ICU_BROWSER_MODE;
1527 FIXME("Unhandled flags 0x%08x\n", dwFlags);
1528 TRACE("%s %p %p %08x\n", debugstr_a(lpszUrl), lpszBuffer,
1529 lpdwBufferLength, dwURLFlags);
1531 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1532 dwFlags ^= ICU_NO_ENCODE;
1534 hr = UrlCanonicalizeA(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1536 return (hr == S_OK) ? TRUE : FALSE;
1539 /***********************************************************************
1540 * InternetCanonicalizeUrlW (WININET.@)
1542 * Escape unsafe characters and spaces
1549 BOOL WINAPI InternetCanonicalizeUrlW(LPCWSTR lpszUrl, LPWSTR lpszBuffer,
1550 LPDWORD lpdwBufferLength, DWORD dwFlags)
1553 DWORD dwURLFlags= 0x80000000; /* Don't know what this means */
1554 if(dwFlags & ICU_DECODE)
1556 dwURLFlags |= URL_UNESCAPE;
1557 dwFlags &= ~ICU_DECODE;
1560 if(dwFlags & ICU_ESCAPE)
1562 dwURLFlags |= URL_UNESCAPE;
1563 dwFlags &= ~ICU_ESCAPE;
1565 if(dwFlags & ICU_BROWSER_MODE)
1567 dwURLFlags |= URL_BROWSER_MODE;
1568 dwFlags &= ~ICU_BROWSER_MODE;
1571 FIXME("Unhandled flags 0x%08x\n", dwFlags);
1572 TRACE("%s %p %p %08x\n", debugstr_w(lpszUrl), lpszBuffer,
1573 lpdwBufferLength, dwURLFlags);
1575 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1576 dwFlags ^= ICU_NO_ENCODE;
1578 hr = UrlCanonicalizeW(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1580 return (hr == S_OK) ? TRUE : FALSE;
1583 static INTERNET_STATUS_CALLBACK set_status_callback(
1584 LPWININETHANDLEHEADER lpwh, INTERNET_STATUS_CALLBACK callback, BOOL unicode)
1586 INTERNET_STATUS_CALLBACK ret;
1588 if (unicode) lpwh->dwInternalFlags |= INET_CALLBACKW;
1589 else lpwh->dwInternalFlags &= ~INET_CALLBACKW;
1591 ret = lpwh->lpfnStatusCB;
1592 lpwh->lpfnStatusCB = callback;
1597 /***********************************************************************
1598 * InternetSetStatusCallbackA (WININET.@)
1600 * Sets up a callback function which is called as progress is made
1601 * during an operation.
1604 * Previous callback or NULL on success
1605 * INTERNET_INVALID_STATUS_CALLBACK on failure
1608 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackA(
1609 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1611 INTERNET_STATUS_CALLBACK retVal;
1612 LPWININETHANDLEHEADER lpwh;
1614 TRACE("0x%08x\n", (ULONG)hInternet);
1616 if (!(lpwh = WININET_GetObject(hInternet)))
1617 return INTERNET_INVALID_STATUS_CALLBACK;
1619 retVal = set_status_callback(lpwh, lpfnIntCB, FALSE);
1621 WININET_Release( lpwh );
1625 /***********************************************************************
1626 * InternetSetStatusCallbackW (WININET.@)
1628 * Sets up a callback function which is called as progress is made
1629 * during an operation.
1632 * Previous callback or NULL on success
1633 * INTERNET_INVALID_STATUS_CALLBACK on failure
1636 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackW(
1637 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1639 INTERNET_STATUS_CALLBACK retVal;
1640 LPWININETHANDLEHEADER lpwh;
1642 TRACE("0x%08x\n", (ULONG)hInternet);
1644 if (!(lpwh = WININET_GetObject(hInternet)))
1645 return INTERNET_INVALID_STATUS_CALLBACK;
1647 retVal = set_status_callback(lpwh, lpfnIntCB, TRUE);
1649 WININET_Release( lpwh );
1653 /***********************************************************************
1654 * InternetSetFilePointer (WININET.@)
1656 DWORD WINAPI InternetSetFilePointer(HINTERNET hFile, LONG lDistanceToMove,
1657 PVOID pReserved, DWORD dwMoveContext, DWORD_PTR dwContext)
1663 /***********************************************************************
1664 * InternetWriteFile (WININET.@)
1666 * Write data to an open internet file
1673 BOOL WINAPI InternetWriteFile(HINTERNET hFile, LPCVOID lpBuffer ,
1674 DWORD dwNumOfBytesToWrite, LPDWORD lpdwNumOfBytesWritten)
1676 BOOL retval = FALSE;
1678 LPWININETHANDLEHEADER lpwh;
1681 lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1685 switch (lpwh->htype)
1689 LPWININETHTTPREQW lpwhr;
1690 lpwhr = (LPWININETHTTPREQW)lpwh;
1692 TRACE("HTTPREQ %i\n",dwNumOfBytesToWrite);
1693 retval = NETCON_send(&lpwhr->netConnection, lpBuffer,
1694 dwNumOfBytesToWrite, 0, (LPINT)lpdwNumOfBytesWritten);
1696 WININET_Release( lpwh );
1702 nSocket = ((LPWININETFTPFILE)lpwh)->nDataSocket;
1711 int res = send(nSocket, lpBuffer, dwNumOfBytesToWrite, 0);
1712 retval = (res >= 0);
1713 *lpdwNumOfBytesWritten = retval ? res : 0;
1715 WININET_Release( lpwh );
1721 BOOL INTERNET_ReadFile(LPWININETHANDLEHEADER lpwh, LPVOID lpBuffer,
1722 DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead,
1723 BOOL bWait, BOOL bSendCompletionStatus)
1725 BOOL retval = FALSE;
1728 LPWININETHTTPREQW lpwhr;
1730 /* FIXME: this should use NETCON functions! */
1731 switch (lpwh->htype)
1734 lpwhr = (LPWININETHTTPREQW)lpwh;
1736 if (!NETCON_recv(&lpwhr->netConnection, lpBuffer,
1737 min(dwNumOfBytesToRead, lpwhr->dwContentLength - lpwhr->dwContentRead),
1738 bWait ? MSG_WAITALL : 0, &bytes_read))
1741 if (((lpwhr->dwContentLength != -1) &&
1742 (lpwhr->dwContentRead != lpwhr->dwContentLength)))
1743 ERR("not all data received %d/%d\n", lpwhr->dwContentRead,
1744 lpwhr->dwContentLength);
1746 /* always returns TRUE, even if the network layer returns an
1748 *pdwNumOfBytesRead = 0;
1749 HTTP_FinishedReading(lpwhr);
1754 lpwhr->dwContentRead += bytes_read;
1755 *pdwNumOfBytesRead = bytes_read;
1756 if (!bytes_read && (lpwhr->dwContentRead == lpwhr->dwContentLength))
1757 retval = HTTP_FinishedReading(lpwhr);
1764 /* FIXME: FTP should use NETCON_ stuff */
1765 nSocket = ((LPWININETFTPFILE)lpwh)->nDataSocket;
1768 int res = recv(nSocket, lpBuffer, dwNumOfBytesToRead, bWait ? MSG_WAITALL : 0);
1769 retval = (res >= 0);
1770 *pdwNumOfBytesRead = retval ? res : 0;
1778 if (bSendCompletionStatus)
1780 INTERNET_ASYNC_RESULT iar;
1782 iar.dwResult = retval;
1783 iar.dwError = iar.dwError = retval ? ERROR_SUCCESS :
1784 INTERNET_GetLastError();
1786 INTERNET_SendCallback(lpwh, lpwh->dwContext,
1787 INTERNET_STATUS_REQUEST_COMPLETE, &iar,
1788 sizeof(INTERNET_ASYNC_RESULT));
1793 /***********************************************************************
1794 * InternetReadFile (WININET.@)
1796 * Read data from an open internet file
1803 BOOL WINAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer,
1804 DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead)
1806 LPWININETHANDLEHEADER lpwh;
1809 TRACE("%p %p %d %p\n", hFile, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead);
1811 lpwh = WININET_GetObject( hFile );
1814 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1818 retval = INTERNET_ReadFile(lpwh, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead, TRUE, FALSE);
1819 WININET_Release( lpwh );
1821 TRACE("-- %s (bytes read: %d)\n", retval ? "TRUE": "FALSE", pdwNumOfBytesRead ? *pdwNumOfBytesRead : -1);
1825 /***********************************************************************
1826 * InternetReadFileExA (WININET.@)
1828 * Read data from an open internet file
1831 * hFile [I] Handle returned by InternetOpenUrl or HttpOpenRequest.
1832 * lpBuffersOut [I/O] Buffer.
1833 * dwFlags [I] Flags. See notes.
1834 * dwContext [I] Context for callbacks.
1841 * The parameter dwFlags include zero or more of the following flags:
1842 *|IRF_ASYNC - Makes the call asynchronous.
1843 *|IRF_SYNC - Makes the call synchronous.
1844 *|IRF_USE_CONTEXT - Forces dwContext to be used.
1845 *|IRF_NO_WAIT - Don't block if the data is not available, just return what is available.
1847 * However, in testing IRF_USE_CONTEXT seems to have no effect - dwContext isn't used.
1850 * InternetOpenUrlA(), HttpOpenRequestA()
1852 void AsyncInternetReadFileExProc(WORKREQUEST *workRequest)
1854 struct WORKREQ_INTERNETREADFILEEXA const *req = &workRequest->u.InternetReadFileExA;
1856 TRACE("INTERNETREADFILEEXA %p\n", workRequest->hdr);
1858 INTERNET_ReadFile(workRequest->hdr, req->lpBuffersOut->lpvBuffer,
1859 req->lpBuffersOut->dwBufferLength,
1860 &req->lpBuffersOut->dwBufferLength, TRUE, TRUE);
1863 BOOL WINAPI InternetReadFileExA(HINTERNET hFile, LPINTERNET_BUFFERSA lpBuffersOut,
1864 DWORD dwFlags, DWORD_PTR dwContext)
1866 BOOL retval = FALSE;
1867 LPWININETHANDLEHEADER lpwh;
1869 TRACE("(%p %p 0x%x 0x%lx)\n", hFile, lpBuffersOut, dwFlags, dwContext);
1871 if (dwFlags & ~(IRF_ASYNC|IRF_NO_WAIT))
1872 FIXME("these dwFlags aren't implemented: 0x%x\n", dwFlags & ~(IRF_ASYNC|IRF_NO_WAIT));
1874 if (lpBuffersOut->dwStructSize != sizeof(*lpBuffersOut))
1876 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1880 lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1883 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1887 INTERNET_SendCallback(lpwh, lpwh->dwContext,
1888 INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
1890 /* FIXME: IRF_ASYNC may not be the right thing to test here;
1891 * hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC is probably better */
1892 if (dwFlags & IRF_ASYNC)
1894 DWORD dwDataAvailable = 0;
1896 if (lpwh->htype == WH_HHTTPREQ)
1897 NETCON_query_data_available(&((LPWININETHTTPREQW)lpwh)->netConnection,
1900 if (!dwDataAvailable)
1902 WORKREQUEST workRequest;
1903 struct WORKREQ_INTERNETREADFILEEXA *req;
1905 workRequest.asyncproc = AsyncInternetReadFileExProc;
1906 workRequest.hdr = WININET_AddRef( lpwh );
1907 req = &workRequest.u.InternetReadFileExA;
1908 req->lpBuffersOut = lpBuffersOut;
1910 if (!INTERNET_AsyncCall(&workRequest))
1911 WININET_Release( lpwh );
1913 INTERNET_SetLastError(ERROR_IO_PENDING);
1918 retval = INTERNET_ReadFile(lpwh, lpBuffersOut->lpvBuffer,
1919 lpBuffersOut->dwBufferLength, &lpBuffersOut->dwBufferLength,
1920 !(dwFlags & IRF_NO_WAIT), FALSE);
1924 DWORD dwBytesReceived = lpBuffersOut->dwBufferLength;
1925 INTERNET_SendCallback(lpwh, lpwh->dwContext,
1926 INTERNET_STATUS_RESPONSE_RECEIVED, &dwBytesReceived,
1927 sizeof(dwBytesReceived));
1931 WININET_Release( lpwh );
1933 TRACE("-- %s (bytes read: %d)\n", retval ? "TRUE": "FALSE", lpBuffersOut->dwBufferLength);
1937 /***********************************************************************
1938 * InternetReadFileExW (WININET.@)
1940 * Read data from an open internet file.
1943 * hFile [I] Handle returned by InternetOpenUrl() or HttpOpenRequest().
1944 * lpBuffersOut [I/O] Buffer.
1945 * dwFlags [I] Flags.
1946 * dwContext [I] Context for callbacks.
1949 * FALSE, last error is set to ERROR_CALL_NOT_IMPLEMENTED
1952 * Not implemented in Wine or native either (as of IE6 SP2).
1955 BOOL WINAPI InternetReadFileExW(HINTERNET hFile, LPINTERNET_BUFFERSW lpBuffer,
1956 DWORD dwFlags, DWORD_PTR dwContext)
1958 ERR("(%p, %p, 0x%x, 0x%lx): not implemented in native\n", hFile, lpBuffer, dwFlags, dwContext);
1960 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1964 /***********************************************************************
1965 * INET_QueryOptionHelper (internal)
1967 static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD dwOption,
1968 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
1970 LPWININETHANDLEHEADER lpwhh;
1971 BOOL bSuccess = FALSE;
1973 TRACE("(%p, 0x%08x, %p, %p)\n", hInternet, dwOption, lpBuffer, lpdwBufferLength);
1975 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
1979 case INTERNET_OPTION_HANDLE_TYPE:
1985 WARN("Invalid hInternet handle\n");
1986 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1990 type = lpwhh->htype;
1992 TRACE("INTERNET_OPTION_HANDLE_TYPE: %d\n", type);
1994 if (*lpdwBufferLength < sizeof(ULONG))
1995 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1998 memcpy(lpBuffer, &type, sizeof(ULONG));
2001 *lpdwBufferLength = sizeof(ULONG);
2005 case INTERNET_OPTION_REQUEST_FLAGS:
2008 TRACE("INTERNET_OPTION_REQUEST_FLAGS: %d\n", flags);
2009 if (*lpdwBufferLength < sizeof(ULONG))
2010 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2013 memcpy(lpBuffer, &flags, sizeof(ULONG));
2016 *lpdwBufferLength = sizeof(ULONG);
2020 case INTERNET_OPTION_URL:
2021 case INTERNET_OPTION_DATAFILE_NAME:
2025 WARN("Invalid hInternet handle\n");
2026 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
2029 if (lpwhh->htype == WH_HHTTPREQ)
2031 LPWININETHTTPREQW lpreq = (LPWININETHTTPREQW) lpwhh;
2033 static const WCHAR szFmt[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
2034 static const WCHAR szHost[] = {'H','o','s','t',0};
2038 Host = HTTP_GetHeader(lpreq,szHost);
2039 sprintfW(url,szFmt,Host->lpszValue,lpreq->lpszPath);
2040 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url));
2043 sizeRequired = WideCharToMultiByte(CP_ACP,0,url,-1,
2044 lpBuffer,*lpdwBufferLength,NULL,NULL);
2045 if (sizeRequired > *lpdwBufferLength)
2046 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2049 *lpdwBufferLength = sizeRequired;
2053 sizeRequired = (lstrlenW(url)+1) * sizeof(WCHAR);
2054 if (*lpdwBufferLength < sizeRequired)
2055 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2058 strcpyW(lpBuffer, url);
2061 *lpdwBufferLength = sizeRequired;
2066 case INTERNET_OPTION_HTTP_VERSION:
2068 if (*lpdwBufferLength < sizeof(HTTP_VERSION_INFO))
2069 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2073 * Presently hardcoded to 1.1
2075 ((HTTP_VERSION_INFO*)lpBuffer)->dwMajorVersion = 1;
2076 ((HTTP_VERSION_INFO*)lpBuffer)->dwMinorVersion = 1;
2079 *lpdwBufferLength = sizeof(HTTP_VERSION_INFO);
2082 case INTERNET_OPTION_CONNECTED_STATE:
2084 DWORD *pdwConnectedState = (DWORD *)lpBuffer;
2085 FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
2087 if (*lpdwBufferLength < sizeof(*pdwConnectedState))
2088 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2091 *pdwConnectedState = INTERNET_STATE_CONNECTED;
2094 *lpdwBufferLength = sizeof(*pdwConnectedState);
2097 case INTERNET_OPTION_PROXY:
2099 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW)lpwhh;
2100 WININETAPPINFOW wai;
2104 TRACE("Getting global proxy info\n");
2105 memset(&wai, 0, sizeof(WININETAPPINFOW));
2106 INTERNET_ConfigureProxyFromReg( &wai );
2112 INTERNET_PROXY_INFOW *pPI = (INTERNET_PROXY_INFOW *)lpBuffer;
2113 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
2115 if (lpwai->lpszProxy)
2116 proxyBytesRequired = (lstrlenW(lpwai->lpszProxy) + 1) *
2118 if (lpwai->lpszProxyBypass)
2119 proxyBypassBytesRequired =
2120 (lstrlenW(lpwai->lpszProxyBypass) + 1) * sizeof(WCHAR);
2121 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOW) +
2122 proxyBytesRequired + proxyBypassBytesRequired)
2123 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2126 LPWSTR proxy = (LPWSTR)((LPBYTE)lpBuffer +
2127 sizeof(INTERNET_PROXY_INFOW));
2128 LPWSTR proxy_bypass = (LPWSTR)((LPBYTE)lpBuffer +
2129 sizeof(INTERNET_PROXY_INFOW) +
2130 proxyBytesRequired);
2132 pPI->dwAccessType = lpwai->dwAccessType;
2133 pPI->lpszProxy = NULL;
2134 pPI->lpszProxyBypass = NULL;
2135 if (lpwai->lpszProxy)
2137 lstrcpyW(proxy, lpwai->lpszProxy);
2138 pPI->lpszProxy = proxy;
2141 if (lpwai->lpszProxyBypass)
2143 lstrcpyW(proxy_bypass, lpwai->lpszProxyBypass);
2144 pPI->lpszProxyBypass = proxy_bypass;
2148 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOW) +
2149 proxyBytesRequired + proxyBypassBytesRequired;
2153 INTERNET_PROXY_INFOA *pPI = (INTERNET_PROXY_INFOA *)lpBuffer;
2154 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
2156 if (lpwai->lpszProxy)
2157 proxyBytesRequired = WideCharToMultiByte(CP_ACP, 0,
2158 lpwai->lpszProxy, -1, NULL, 0, NULL, NULL);
2159 if (lpwai->lpszProxyBypass)
2160 proxyBypassBytesRequired = WideCharToMultiByte(CP_ACP, 0,
2161 lpwai->lpszProxyBypass, -1, NULL, 0, NULL, NULL);
2162 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOA) +
2163 proxyBytesRequired + proxyBypassBytesRequired)
2164 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2167 LPSTR proxy = (LPSTR)((LPBYTE)lpBuffer +
2168 sizeof(INTERNET_PROXY_INFOA));
2169 LPSTR proxy_bypass = (LPSTR)((LPBYTE)lpBuffer +
2170 sizeof(INTERNET_PROXY_INFOA) +
2171 proxyBytesRequired);
2173 pPI->dwAccessType = lpwai->dwAccessType;
2174 pPI->lpszProxy = NULL;
2175 pPI->lpszProxyBypass = NULL;
2176 if (lpwai->lpszProxy)
2178 WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxy, -1,
2179 proxy, proxyBytesRequired, NULL, NULL);
2180 pPI->lpszProxy = proxy;
2183 if (lpwai->lpszProxyBypass)
2185 WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxyBypass,
2186 -1, proxy_bypass, proxyBypassBytesRequired,
2188 pPI->lpszProxyBypass = proxy_bypass;
2192 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOA) +
2193 proxyBytesRequired + proxyBypassBytesRequired;
2197 case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
2200 TRACE("INTERNET_OPTION_MAX_CONNS_PER_SERVER: %d\n", conn);
2201 if (*lpdwBufferLength < sizeof(ULONG))
2202 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2205 memcpy(lpBuffer, &conn, sizeof(ULONG));
2208 *lpdwBufferLength = sizeof(ULONG);
2211 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
2214 TRACE("INTERNET_OPTION_MAX_CONNS_1_0_SERVER: %d\n", conn);
2215 if (*lpdwBufferLength < sizeof(ULONG))
2216 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2219 memcpy(lpBuffer, &conn, sizeof(ULONG));
2222 *lpdwBufferLength = sizeof(ULONG);
2225 case INTERNET_OPTION_SECURITY_FLAGS:
2226 FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
2229 case INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT:
2232 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2235 if (*lpdwBufferLength < sizeof(INTERNET_CERTIFICATE_INFOW))
2237 *lpdwBufferLength = sizeof(INTERNET_CERTIFICATE_INFOW);
2238 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2240 else if (lpwhh->htype == WH_HHTTPREQ)
2242 LPWININETHTTPREQW lpwhr;
2243 PCCERT_CONTEXT context;
2245 lpwhr = (LPWININETHTTPREQW)lpwhh;
2246 context = (PCCERT_CONTEXT)NETCON_GetCert(&(lpwhr->netConnection));
2249 LPINTERNET_CERTIFICATE_INFOW info = (LPINTERNET_CERTIFICATE_INFOW)lpBuffer;
2252 memset(info,0,sizeof(INTERNET_CERTIFICATE_INFOW));
2253 info->ftExpiry = context->pCertInfo->NotAfter;
2254 info->ftStart = context->pCertInfo->NotBefore;
2257 strLen = CertNameToStrW(context->dwCertEncodingType,
2258 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2260 info->lpszSubjectInfo = LocalAlloc(0,
2261 strLen * sizeof(WCHAR));
2262 if (info->lpszSubjectInfo)
2263 CertNameToStrW(context->dwCertEncodingType,
2264 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2265 info->lpszSubjectInfo, strLen);
2266 strLen = CertNameToStrW(context->dwCertEncodingType,
2267 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2269 info->lpszIssuerInfo = LocalAlloc(0,
2270 strLen * sizeof(WCHAR));
2271 if (info->lpszIssuerInfo)
2272 CertNameToStrW(context->dwCertEncodingType,
2273 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2274 info->lpszIssuerInfo, strLen);
2278 LPINTERNET_CERTIFICATE_INFOA infoA =
2279 (LPINTERNET_CERTIFICATE_INFOA)info;
2281 strLen = CertNameToStrA(context->dwCertEncodingType,
2282 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2284 infoA->lpszSubjectInfo = LocalAlloc(0, strLen);
2285 if (infoA->lpszSubjectInfo)
2286 CertNameToStrA(context->dwCertEncodingType,
2287 &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2288 infoA->lpszSubjectInfo, strLen);
2289 strLen = CertNameToStrA(context->dwCertEncodingType,
2290 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2292 infoA->lpszIssuerInfo = LocalAlloc(0, strLen);
2293 if (infoA->lpszIssuerInfo)
2294 CertNameToStrA(context->dwCertEncodingType,
2295 &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2296 infoA->lpszIssuerInfo, strLen);
2299 * Contrary to MSDN, these do not appear to be set.
2301 * lpszSignatureAlgName
2302 * lpszEncryptionAlgName
2305 CertFreeCertificateContext(context);
2311 FIXME("Stub! %d\n", dwOption);
2315 WININET_Release( lpwhh );
2320 /***********************************************************************
2321 * InternetQueryOptionW (WININET.@)
2323 * Queries an options on the specified handle
2330 BOOL WINAPI InternetQueryOptionW(HINTERNET hInternet, DWORD dwOption,
2331 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2333 return INET_QueryOptionHelper(TRUE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2336 /***********************************************************************
2337 * InternetQueryOptionA (WININET.@)
2339 * Queries an options on the specified handle
2346 BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
2347 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2349 return INET_QueryOptionHelper(FALSE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2353 /***********************************************************************
2354 * InternetSetOptionW (WININET.@)
2356 * Sets an options on the specified handle
2363 BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
2364 LPVOID lpBuffer, DWORD dwBufferLength)
2366 LPWININETHANDLEHEADER lpwhh;
2369 TRACE("0x%08x\n", dwOption);
2371 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
2377 case INTERNET_OPTION_CALLBACK:
2379 INTERNET_STATUS_CALLBACK callback = *(INTERNET_STATUS_CALLBACK *)lpBuffer;
2380 ret = (set_status_callback(lpwhh, callback, TRUE) != INTERNET_INVALID_STATUS_CALLBACK);
2383 case INTERNET_OPTION_HTTP_VERSION:
2385 HTTP_VERSION_INFO* pVersion=(HTTP_VERSION_INFO*)lpBuffer;
2386 FIXME("Option INTERNET_OPTION_HTTP_VERSION(%d,%d): STUB\n",pVersion->dwMajorVersion,pVersion->dwMinorVersion);
2389 case INTERNET_OPTION_ERROR_MASK:
2391 unsigned long flags=*(unsigned long*)lpBuffer;
2392 FIXME("Option INTERNET_OPTION_ERROR_MASK(%ld): STUB\n",flags);
2395 case INTERNET_OPTION_CODEPAGE:
2397 unsigned long codepage=*(unsigned long*)lpBuffer;
2398 FIXME("Option INTERNET_OPTION_CODEPAGE (%ld): STUB\n",codepage);
2401 case INTERNET_OPTION_REQUEST_PRIORITY:
2403 unsigned long priority=*(unsigned long*)lpBuffer;
2404 FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%ld): STUB\n",priority);
2407 case INTERNET_OPTION_CONNECT_TIMEOUT:
2409 unsigned long connecttimeout=*(unsigned long*)lpBuffer;
2410 FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%ld): STUB\n",connecttimeout);
2413 case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT:
2415 unsigned long receivetimeout=*(unsigned long*)lpBuffer;
2416 FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%ld): STUB\n",receivetimeout);
2419 case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
2421 unsigned long conns=*(unsigned long*)lpBuffer;
2422 FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_SERVER (%ld): STUB\n",conns);
2425 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
2427 unsigned long conns=*(unsigned long*)lpBuffer;
2428 FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER (%ld): STUB\n",conns);
2431 case INTERNET_OPTION_RESET_URLCACHE_SESSION:
2432 FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
2434 case INTERNET_OPTION_END_BROWSER_SESSION:
2435 FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
2437 case INTERNET_OPTION_CONNECTED_STATE:
2438 FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
2440 case INTERNET_OPTION_DISABLE_PASSPORT_AUTH:
2441 TRACE("Option INTERNET_OPTION_DISABLE_PASSPORT_AUTH: harmless stub, since not enabled\n");
2443 case INTERNET_OPTION_SEND_TIMEOUT:
2444 case INTERNET_OPTION_RECEIVE_TIMEOUT:
2445 TRACE("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT\n");
2446 if (dwBufferLength == sizeof(DWORD))
2448 if (lpwhh->htype == WH_HHTTPREQ)
2449 ret = NETCON_set_timeout(
2450 &((LPWININETHTTPREQW)lpwhh)->netConnection,
2451 dwOption == INTERNET_OPTION_SEND_TIMEOUT,
2452 *(DWORD *)lpBuffer);
2455 FIXME("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT not supported on protocol %d\n",
2461 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2465 case INTERNET_OPTION_CONNECT_RETRIES:
2466 FIXME("Option INTERNET_OPTION_CONNECT_RETRIES: STUB\n");
2468 case INTERNET_OPTION_CONTEXT_VALUE:
2469 FIXME("Option INTERNET_OPTION_CONTEXT_VALUE; STUB\n");
2471 case INTERNET_OPTION_SECURITY_FLAGS:
2472 FIXME("Option INTERNET_OPTION_SECURITY_FLAGS; STUB\n");
2475 FIXME("Option %d STUB\n",dwOption);
2476 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2480 WININET_Release( lpwhh );
2486 /***********************************************************************
2487 * InternetSetOptionA (WININET.@)
2489 * Sets an options on the specified handle.
2496 BOOL WINAPI InternetSetOptionA(HINTERNET hInternet, DWORD dwOption,
2497 LPVOID lpBuffer, DWORD dwBufferLength)
2505 case INTERNET_OPTION_CALLBACK:
2507 LPWININETHANDLEHEADER lpwh;
2508 INTERNET_STATUS_CALLBACK callback = *(INTERNET_STATUS_CALLBACK *)lpBuffer;
2510 if (!(lpwh = (LPWININETHANDLEHEADER)WININET_GetObject(hInternet))) return FALSE;
2511 r = (set_status_callback(lpwh, callback, FALSE) != INTERNET_INVALID_STATUS_CALLBACK);
2512 WININET_Release(lpwh);
2515 case INTERNET_OPTION_PROXY:
2517 LPINTERNET_PROXY_INFOA pi = (LPINTERNET_PROXY_INFOA) lpBuffer;
2518 LPINTERNET_PROXY_INFOW piw;
2519 DWORD proxlen, prbylen;
2522 proxlen = MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, NULL, 0);
2523 prbylen= MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, NULL, 0);
2524 wlen = sizeof(*piw) + proxlen + prbylen;
2525 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2526 piw = (LPINTERNET_PROXY_INFOW) wbuffer;
2527 piw->dwAccessType = pi->dwAccessType;
2528 prox = (LPWSTR) &piw[1];
2529 prby = &prox[proxlen+1];
2530 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, prox, proxlen);
2531 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, prby, prbylen);
2532 piw->lpszProxy = prox;
2533 piw->lpszProxyBypass = prby;
2536 case INTERNET_OPTION_USER_AGENT:
2537 case INTERNET_OPTION_USERNAME:
2538 case INTERNET_OPTION_PASSWORD:
2539 wlen = MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2541 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2542 MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2547 wlen = dwBufferLength;
2550 r = InternetSetOptionW(hInternet,dwOption, wbuffer, wlen);
2552 if( lpBuffer != wbuffer )
2553 HeapFree( GetProcessHeap(), 0, wbuffer );
2559 /***********************************************************************
2560 * InternetSetOptionExA (WININET.@)
2562 BOOL WINAPI InternetSetOptionExA(HINTERNET hInternet, DWORD dwOption,
2563 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2565 FIXME("Flags %08x ignored\n", dwFlags);
2566 return InternetSetOptionA( hInternet, dwOption, lpBuffer, dwBufferLength );
2569 /***********************************************************************
2570 * InternetSetOptionExW (WININET.@)
2572 BOOL WINAPI InternetSetOptionExW(HINTERNET hInternet, DWORD dwOption,
2573 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2575 FIXME("Flags %08x ignored\n", dwFlags);
2576 if( dwFlags & ~ISO_VALID_FLAGS )
2578 INTERNET_SetLastError( ERROR_INVALID_PARAMETER );
2581 return InternetSetOptionW( hInternet, dwOption, lpBuffer, dwBufferLength );
2584 static const WCHAR WININET_wkday[7][4] =
2585 { { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
2586 { 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
2587 static const WCHAR WININET_month[12][4] =
2588 { { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
2589 { 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
2590 { 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
2592 /***********************************************************************
2593 * InternetTimeFromSystemTimeA (WININET.@)
2595 BOOL WINAPI InternetTimeFromSystemTimeA( const SYSTEMTIME* time, DWORD format, LPSTR string, DWORD size )
2598 WCHAR stringW[INTERNET_RFC1123_BUFSIZE];
2600 TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
2602 ret = InternetTimeFromSystemTimeW( time, format, stringW, sizeof(stringW) );
2603 if (ret) WideCharToMultiByte( CP_ACP, 0, stringW, -1, string, size, NULL, NULL );
2608 /***********************************************************************
2609 * InternetTimeFromSystemTimeW (WININET.@)
2611 BOOL WINAPI InternetTimeFromSystemTimeW( const SYSTEMTIME* time, DWORD format, LPWSTR string, DWORD size )
2613 static const WCHAR date[] =
2614 { '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
2615 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
2617 TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
2619 if (!time || !string) return FALSE;
2621 if (format != INTERNET_RFC1123_FORMAT || size < INTERNET_RFC1123_BUFSIZE * sizeof(WCHAR))
2624 sprintfW( string, date,
2625 WININET_wkday[time->wDayOfWeek],
2627 WININET_month[time->wMonth - 1],
2636 /***********************************************************************
2637 * InternetTimeToSystemTimeA (WININET.@)
2639 BOOL WINAPI InternetTimeToSystemTimeA( LPCSTR string, SYSTEMTIME* time, DWORD reserved )
2645 TRACE( "%s %p 0x%08x\n", debugstr_a(string), time, reserved );
2647 len = MultiByteToWideChar( CP_ACP, 0, string, -1, NULL, 0 );
2648 stringW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
2652 MultiByteToWideChar( CP_ACP, 0, string, -1, stringW, len );
2653 ret = InternetTimeToSystemTimeW( stringW, time, reserved );
2654 HeapFree( GetProcessHeap(), 0, stringW );
2659 /***********************************************************************
2660 * InternetTimeToSystemTimeW (WININET.@)
2662 BOOL WINAPI InternetTimeToSystemTimeW( LPCWSTR string, SYSTEMTIME* time, DWORD reserved )
2665 const WCHAR *s = string;
2668 TRACE( "%s %p 0x%08x\n", debugstr_w(string), time, reserved );
2670 if (!string || !time) return FALSE;
2672 /* Windows does this too */
2673 GetSystemTime( time );
2675 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
2676 * a SYSTEMTIME structure.
2679 while (*s && !isalphaW( *s )) s++;
2680 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2681 time->wDayOfWeek = 7;
2683 for (i = 0; i < 7; i++)
2685 if (toupperW( WININET_wkday[i][0] ) == toupperW( s[0] ) &&
2686 toupperW( WININET_wkday[i][1] ) == toupperW( s[1] ) &&
2687 toupperW( WININET_wkday[i][2] ) == toupperW( s[2] ) )
2689 time->wDayOfWeek = i;
2694 if (time->wDayOfWeek > 6) return TRUE;
2695 while (*s && !isdigitW( *s )) s++;
2696 time->wDay = strtolW( s, &end, 10 );
2699 while (*s && !isalphaW( *s )) s++;
2700 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2703 for (i = 0; i < 12; i++)
2705 if (toupperW( WININET_month[i][0]) == toupperW( s[0] ) &&
2706 toupperW( WININET_month[i][1]) == toupperW( s[1] ) &&
2707 toupperW( WININET_month[i][2]) == toupperW( s[2] ) )
2709 time->wMonth = i + 1;
2713 if (time->wMonth == 0) return TRUE;
2715 while (*s && !isdigitW( *s )) s++;
2716 if (*s == '\0') return TRUE;
2717 time->wYear = strtolW( s, &end, 10 );
2720 while (*s && !isdigitW( *s )) s++;
2721 if (*s == '\0') return TRUE;
2722 time->wHour = strtolW( s, &end, 10 );
2725 while (*s && !isdigitW( *s )) s++;
2726 if (*s == '\0') return TRUE;
2727 time->wMinute = strtolW( s, &end, 10 );
2730 while (*s && !isdigitW( *s )) s++;
2731 if (*s == '\0') return TRUE;
2732 time->wSecond = strtolW( s, &end, 10 );
2735 time->wMilliseconds = 0;
2739 /***********************************************************************
2740 * InternetCheckConnectionW (WININET.@)
2742 * Pings a requested host to check internet connection
2745 * TRUE on success and FALSE on failure. If a failure then
2746 * ERROR_NOT_CONNECTED is placed into GetLastError
2749 BOOL WINAPI InternetCheckConnectionW( LPCWSTR lpszUrl, DWORD dwFlags, DWORD dwReserved )
2752 * this is a kludge which runs the resident ping program and reads the output.
2754 * Anyone have a better idea?
2758 static const CHAR ping[] = "ping -c 1 ";
2759 static const CHAR redirect[] = " >/dev/null 2>/dev/null";
2760 CHAR *command = NULL;
2769 * Crack or set the Address
2771 if (lpszUrl == NULL)
2774 * According to the doc we are supost to use the ip for the next
2775 * server in the WnInet internal server database. I have
2776 * no idea what that is or how to get it.
2778 * So someone needs to implement this.
2780 FIXME("Unimplemented with URL of NULL\n");
2785 URL_COMPONENTSW components;
2787 ZeroMemory(&components,sizeof(URL_COMPONENTSW));
2788 components.lpszHostName = (LPWSTR)&hostW;
2789 components.dwHostNameLength = 1024;
2791 if (!InternetCrackUrlW(lpszUrl,0,0,&components))
2794 TRACE("host name : %s\n",debugstr_w(components.lpszHostName));
2795 port = components.nPort;
2796 TRACE("port: %d\n", port);
2799 if (dwFlags & FLAG_ICC_FORCE_CONNECTION)
2801 struct sockaddr_in sin;
2804 if (!GetAddress(hostW, port, &sin))
2806 fd = socket(sin.sin_family, SOCK_STREAM, 0);
2809 if (connect(fd, (struct sockaddr *)&sin, sizeof(sin)) == 0)
2817 * Build our ping command
2819 len = WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, NULL, 0, NULL, NULL);
2820 command = HeapAlloc( GetProcessHeap(), 0, strlen(ping)+len+strlen(redirect) );
2821 strcpy(command,ping);
2822 WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, command+strlen(ping), len, NULL, NULL);
2823 strcat(command,redirect);
2825 TRACE("Ping command is : %s\n",command);
2827 status = system(command);
2829 TRACE("Ping returned a code of %i\n",status);
2831 /* Ping return code of 0 indicates success */
2838 HeapFree( GetProcessHeap(), 0, command );
2840 INTERNET_SetLastError(ERROR_NOT_CONNECTED);
2846 /***********************************************************************
2847 * InternetCheckConnectionA (WININET.@)
2849 * Pings a requested host to check internet connection
2852 * TRUE on success and FALSE on failure. If a failure then
2853 * ERROR_NOT_CONNECTED is placed into GetLastError
2856 BOOL WINAPI InternetCheckConnectionA(LPCSTR lpszUrl, DWORD dwFlags, DWORD dwReserved)
2862 len = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0);
2863 if (!(szUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR))))
2865 MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, len);
2866 rc = InternetCheckConnectionW(szUrl, dwFlags, dwReserved);
2867 HeapFree(GetProcessHeap(), 0, szUrl);
2873 /**********************************************************
2874 * INTERNET_InternetOpenUrlW (internal)
2879 * handle of connection or NULL on failure
2881 HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
2882 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
2884 URL_COMPONENTSW urlComponents;
2885 WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
2886 WCHAR password[1024], path[2048], extra[1024];
2887 HINTERNET client = NULL, client1 = NULL;
2889 TRACE("(%p, %s, %s, %08x, %08x, %08lx)\n", hIC, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2890 dwHeadersLength, dwFlags, dwContext);
2892 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
2893 urlComponents.lpszScheme = protocol;
2894 urlComponents.dwSchemeLength = 32;
2895 urlComponents.lpszHostName = hostName;
2896 urlComponents.dwHostNameLength = MAXHOSTNAME;
2897 urlComponents.lpszUserName = userName;
2898 urlComponents.dwUserNameLength = 1024;
2899 urlComponents.lpszPassword = password;
2900 urlComponents.dwPasswordLength = 1024;
2901 urlComponents.lpszUrlPath = path;
2902 urlComponents.dwUrlPathLength = 2048;
2903 urlComponents.lpszExtraInfo = extra;
2904 urlComponents.dwExtraInfoLength = 1024;
2905 if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
2907 switch(urlComponents.nScheme) {
2908 case INTERNET_SCHEME_FTP:
2909 if(urlComponents.nPort == 0)
2910 urlComponents.nPort = INTERNET_DEFAULT_FTP_PORT;
2911 client = FTP_Connect(hIC, hostName, urlComponents.nPort,
2912 userName, password, dwFlags, dwContext, INET_OPENURL);
2915 client1 = FtpOpenFileW(client, path, GENERIC_READ, dwFlags, dwContext);
2916 if(client1 == NULL) {
2917 InternetCloseHandle(client);
2922 case INTERNET_SCHEME_HTTP:
2923 case INTERNET_SCHEME_HTTPS: {
2924 static const WCHAR szStars[] = { '*','/','*', 0 };
2925 LPCWSTR accept[2] = { szStars, NULL };
2926 if(urlComponents.nPort == 0) {
2927 if(urlComponents.nScheme == INTERNET_SCHEME_HTTP)
2928 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
2930 urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
2932 /* FIXME: should use pointers, not handles, as handles are not thread-safe */
2933 client = HTTP_Connect(hIC, hostName, urlComponents.nPort,
2934 userName, password, dwFlags, dwContext, INET_OPENURL);
2938 if (urlComponents.dwExtraInfoLength) {
2940 DWORD len = urlComponents.dwUrlPathLength + urlComponents.dwExtraInfoLength + 1;
2942 if (!(path_extra = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
2944 InternetCloseHandle(client);
2947 strcpyW(path_extra, urlComponents.lpszUrlPath);
2948 strcatW(path_extra, urlComponents.lpszExtraInfo);
2949 client1 = HttpOpenRequestW(client, NULL, path_extra, NULL, NULL, accept, dwFlags, dwContext);
2950 HeapFree(GetProcessHeap(), 0, path_extra);
2953 client1 = HttpOpenRequestW(client, NULL, path, NULL, NULL, accept, dwFlags, dwContext);
2955 if(client1 == NULL) {
2956 InternetCloseHandle(client);
2959 HttpAddRequestHeadersW(client1, lpszHeaders, dwHeadersLength, HTTP_ADDREQ_FLAG_ADD);
2960 if (!HttpSendRequestW(client1, NULL, 0, NULL, 0) &&
2961 GetLastError() != ERROR_IO_PENDING) {
2962 InternetCloseHandle(client1);
2967 case INTERNET_SCHEME_GOPHER:
2968 /* gopher doesn't seem to be implemented in wine, but it's supposed
2969 * to be supported by InternetOpenUrlA. */
2971 INTERNET_SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME);
2975 TRACE(" %p <--\n", client1);
2980 /**********************************************************
2981 * InternetOpenUrlW (WININET.@)
2986 * handle of connection or NULL on failure
2988 static void AsyncInternetOpenUrlProc(WORKREQUEST *workRequest)
2990 struct WORKREQ_INTERNETOPENURLW const *req = &workRequest->u.InternetOpenUrlW;
2991 LPWININETAPPINFOW hIC = (LPWININETAPPINFOW) workRequest->hdr;
2995 INTERNET_InternetOpenUrlW(hIC, req->lpszUrl,
2996 req->lpszHeaders, req->dwHeadersLength, req->dwFlags, req->dwContext);
2997 HeapFree(GetProcessHeap(), 0, req->lpszUrl);
2998 HeapFree(GetProcessHeap(), 0, req->lpszHeaders);
3001 HINTERNET WINAPI InternetOpenUrlW(HINTERNET hInternet, LPCWSTR lpszUrl,
3002 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
3004 HINTERNET ret = NULL;
3005 LPWININETAPPINFOW hIC = NULL;
3007 if (TRACE_ON(wininet)) {
3008 TRACE("(%p, %s, %s, %08x, %08x, %08lx)\n", hInternet, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
3009 dwHeadersLength, dwFlags, dwContext);
3011 dump_INTERNET_FLAGS(dwFlags);
3016 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3020 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
3021 if (NULL == hIC || hIC->hdr.htype != WH_HINIT) {
3022 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
3026 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) {
3027 WORKREQUEST workRequest;
3028 struct WORKREQ_INTERNETOPENURLW *req;
3030 workRequest.asyncproc = AsyncInternetOpenUrlProc;
3031 workRequest.hdr = WININET_AddRef( &hIC->hdr );
3032 req = &workRequest.u.InternetOpenUrlW;
3033 req->lpszUrl = WININET_strdupW(lpszUrl);
3035 req->lpszHeaders = WININET_strdupW(lpszHeaders);
3037 req->lpszHeaders = 0;
3038 req->dwHeadersLength = dwHeadersLength;
3039 req->dwFlags = dwFlags;
3040 req->dwContext = dwContext;
3042 INTERNET_AsyncCall(&workRequest);
3044 * This is from windows.
3046 INTERNET_SetLastError(ERROR_IO_PENDING);
3048 ret = INTERNET_InternetOpenUrlW(hIC, lpszUrl, lpszHeaders, dwHeadersLength, dwFlags, dwContext);
3053 WININET_Release( &hIC->hdr );
3054 TRACE(" %p <--\n", ret);
3059 /**********************************************************
3060 * InternetOpenUrlA (WININET.@)
3065 * handle of connection or NULL on failure
3067 HINTERNET WINAPI InternetOpenUrlA(HINTERNET hInternet, LPCSTR lpszUrl,
3068 LPCSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
3070 HINTERNET rc = (HINTERNET)NULL;
3074 LPWSTR szUrl = NULL;
3075 LPWSTR szHeaders = NULL;
3080 lenUrl = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0 );
3081 szUrl = HeapAlloc(GetProcessHeap(), 0, lenUrl*sizeof(WCHAR));
3083 return (HINTERNET)NULL;
3084 MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, lenUrl);
3088 lenHeaders = MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, NULL, 0 );
3089 szHeaders = HeapAlloc(GetProcessHeap(), 0, lenHeaders*sizeof(WCHAR));
3091 HeapFree(GetProcessHeap(), 0, szUrl);
3092 return (HINTERNET)NULL;
3094 MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, szHeaders, lenHeaders);
3097 rc = InternetOpenUrlW(hInternet, szUrl, szHeaders,
3098 lenHeaders, dwFlags, dwContext);
3100 HeapFree(GetProcessHeap(), 0, szUrl);
3101 HeapFree(GetProcessHeap(), 0, szHeaders);
3107 static LPWITHREADERROR INTERNET_AllocThreadError(void)
3109 LPWITHREADERROR lpwite = HeapAlloc(GetProcessHeap(), 0, sizeof(*lpwite));
3113 lpwite->dwError = 0;
3114 lpwite->response[0] = '\0';
3117 if (!TlsSetValue(g_dwTlsErrIndex, lpwite))
3119 HeapFree(GetProcessHeap(), 0, lpwite);
3127 /***********************************************************************
3128 * INTERNET_SetLastError (internal)
3130 * Set last thread specific error
3135 void INTERNET_SetLastError(DWORD dwError)
3137 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3140 lpwite = INTERNET_AllocThreadError();
3142 SetLastError(dwError);
3144 lpwite->dwError = dwError;
3148 /***********************************************************************
3149 * INTERNET_GetLastError (internal)
3151 * Get last thread specific error
3156 DWORD INTERNET_GetLastError(void)
3158 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3159 if (!lpwite) return 0;
3160 /* TlsGetValue clears last error, so set it again here */
3161 SetLastError(lpwite->dwError);
3162 return lpwite->dwError;
3166 /***********************************************************************
3167 * INTERNET_WorkerThreadFunc (internal)
3169 * Worker thread execution function
3174 static DWORD CALLBACK INTERNET_WorkerThreadFunc(LPVOID lpvParam)
3176 LPWORKREQUEST lpRequest = lpvParam;
3177 WORKREQUEST workRequest;
3181 memcpy(&workRequest, lpRequest, sizeof(WORKREQUEST));
3182 HeapFree(GetProcessHeap(), 0, lpRequest);
3184 workRequest.asyncproc(&workRequest);
3186 WININET_Release( workRequest.hdr );
3191 /***********************************************************************
3192 * INTERNET_AsyncCall (internal)
3194 * Retrieves work request from queue
3199 BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest)
3202 LPWORKREQUEST lpNewRequest;
3206 lpNewRequest = HeapAlloc(GetProcessHeap(), 0, sizeof(WORKREQUEST));
3210 memcpy(lpNewRequest, lpWorkRequest, sizeof(WORKREQUEST));
3212 bSuccess = QueueUserWorkItem(INTERNET_WorkerThreadFunc, lpNewRequest, WT_EXECUTELONGFUNCTION);
3215 HeapFree(GetProcessHeap(), 0, lpNewRequest);
3216 INTERNET_SetLastError(ERROR_INTERNET_ASYNC_THREAD_FAILED);
3223 /***********************************************************************
3224 * INTERNET_GetResponseBuffer (internal)
3229 LPSTR INTERNET_GetResponseBuffer(void)
3231 LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3233 lpwite = INTERNET_AllocThreadError();
3235 return lpwite->response;
3238 /***********************************************************************
3239 * INTERNET_GetNextLine (internal)
3241 * Parse next line in directory string listing
3244 * Pointer to beginning of next line
3249 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen)
3253 BOOL bSuccess = FALSE;
3255 LPSTR lpszBuffer = INTERNET_GetResponseBuffer();
3260 FD_SET(nSocket, &infd);
3261 tv.tv_sec=RESPONSE_TIMEOUT;
3264 while (nRecv < MAX_REPLY_LEN)
3266 if (select(nSocket+1,&infd,NULL,NULL,&tv) > 0)
3268 if (recv(nSocket, &lpszBuffer[nRecv], 1, 0) <= 0)
3270 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
3274 if (lpszBuffer[nRecv] == '\n')
3279 if (lpszBuffer[nRecv] != '\r')
3284 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT);
3292 lpszBuffer[nRecv] = '\0';
3294 TRACE(":%d %s\n", nRecv, lpszBuffer);
3303 /**********************************************************
3304 * InternetQueryDataAvailable (WININET.@)
3306 * Determines how much data is available to be read.
3309 * TRUE on success, FALSE if an error occurred. If
3310 * INTERNET_FLAG_ASYNC was specified in InternetOpen, and
3311 * no data is presently available, FALSE is returned with
3312 * the last error ERROR_IO_PENDING; a callback with status
3313 * INTERNET_STATUS_REQUEST_COMPLETE will be sent when more
3314 * data is available.
3316 void AsyncInternetQueryDataAvailableProc(WORKREQUEST *workRequest)
3318 LPWININETHTTPREQW lpwhr;
3319 INTERNET_ASYNC_RESULT iar;
3322 TRACE("INTERNETQUERYDATAAVAILABLE %p\n", workRequest->hdr);
3324 switch (workRequest->hdr->htype)
3327 lpwhr = (LPWININETHTTPREQW)workRequest->hdr;
3328 iar.dwResult = NETCON_recv(&lpwhr->netConnection, buffer,
3330 lpwhr->dwContentLength - lpwhr->dwContentRead),
3331 MSG_PEEK, (int *)&iar.dwError);
3332 INTERNET_SendCallback(workRequest->hdr, workRequest->hdr->dwContext,
3333 INTERNET_STATUS_REQUEST_COMPLETE, &iar,
3334 sizeof(INTERNET_ASYNC_RESULT));
3338 FIXME("unsupported file type\n");
3343 BOOL WINAPI InternetQueryDataAvailable( HINTERNET hFile,
3344 LPDWORD lpdwNumberOfBytesAvailble,
3345 DWORD dwFlags, DWORD_PTR dwContext)
3347 LPWININETHTTPREQW lpwhr;
3348 BOOL retval = FALSE;
3351 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hFile );
3354 INTERNET_SetLastError(ERROR_NO_MORE_FILES);
3358 TRACE("--> %p %i\n",lpwhr,lpwhr->hdr.htype);
3360 switch (lpwhr->hdr.htype)
3364 if (NETCON_query_data_available(&lpwhr->netConnection,
3365 lpdwNumberOfBytesAvailble) &&
3366 !*lpdwNumberOfBytesAvailble)
3368 /* Even if we are in async mode, we need to determine whether
3369 * there is actually more data available. We do this by trying
3370 * to peek only a single byte in async mode. */
3371 BOOL async = (lpwhr->lpHttpSession->lpAppInfo->hdr.dwFlags & INTERNET_FLAG_ASYNC);
3372 if (NETCON_recv(&lpwhr->netConnection, buffer,
3373 min(async ? 1 : sizeof(buffer),
3374 lpwhr->dwContentLength - lpwhr->dwContentRead),
3375 MSG_PEEK, (int *)lpdwNumberOfBytesAvailble) &&
3376 async && *lpdwNumberOfBytesAvailble)
3378 WORKREQUEST workRequest;
3380 *lpdwNumberOfBytesAvailble = 0;
3381 workRequest.asyncproc = AsyncInternetQueryDataAvailableProc;
3382 workRequest.hdr = WININET_AddRef( &lpwhr->hdr );
3384 retval = INTERNET_AsyncCall(&workRequest);
3387 WININET_Release( &lpwhr->hdr );
3391 INTERNET_SetLastError(ERROR_IO_PENDING);
3399 FIXME("unsupported file type\n");
3402 WININET_Release( &lpwhr->hdr );
3404 TRACE("<-- %i\n",retval);
3409 /***********************************************************************
3410 * InternetLockRequestFile (WININET.@)
3412 BOOL WINAPI InternetLockRequestFile( HINTERNET hInternet, HANDLE
3419 BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
3426 /***********************************************************************
3427 * InternetAutodial (WININET.@)
3429 * On windows this function is supposed to dial the default internet
3430 * connection. We don't want to have Wine dial out to the internet so
3431 * we return TRUE by default. It might be nice to check if we are connected.
3438 BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
3442 /* Tell that we are connected to the internet. */
3446 /***********************************************************************
3447 * InternetAutodialHangup (WININET.@)
3449 * Hangs up a connection made with InternetAutodial
3458 BOOL WINAPI InternetAutodialHangup(DWORD dwReserved)
3462 /* we didn't dial, we don't disconnect */
3466 /***********************************************************************
3467 * InternetCombineUrlA (WININET.@)
3469 * Combine a base URL with a relative URL
3477 BOOL WINAPI InternetCombineUrlA(LPCSTR lpszBaseUrl, LPCSTR lpszRelativeUrl,
3478 LPSTR lpszBuffer, LPDWORD lpdwBufferLength,
3483 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_a(lpszBaseUrl), debugstr_a(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3485 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3486 dwFlags ^= ICU_NO_ENCODE;
3487 hr=UrlCombineA(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3492 /***********************************************************************
3493 * InternetCombineUrlW (WININET.@)
3495 * Combine a base URL with a relative URL
3503 BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
3504 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength,
3509 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_w(lpszBaseUrl), debugstr_w(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3511 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3512 dwFlags ^= ICU_NO_ENCODE;
3513 hr=UrlCombineW(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3518 /* max port num is 65535 => 5 digits */
3519 #define MAX_WORD_DIGITS 5
3521 #define URL_GET_COMP_LENGTH(url, component) ((url)->dw##component##Length ? \
3522 (url)->dw##component##Length : strlenW((url)->lpsz##component))
3523 #define URL_GET_COMP_LENGTHA(url, component) ((url)->dw##component##Length ? \
3524 (url)->dw##component##Length : strlen((url)->lpsz##component))
3526 static BOOL url_uses_default_port(INTERNET_SCHEME nScheme, INTERNET_PORT nPort)
3528 if ((nScheme == INTERNET_SCHEME_HTTP) &&
3529 (nPort == INTERNET_DEFAULT_HTTP_PORT))
3531 if ((nScheme == INTERNET_SCHEME_HTTPS) &&
3532 (nPort == INTERNET_DEFAULT_HTTPS_PORT))
3534 if ((nScheme == INTERNET_SCHEME_FTP) &&
3535 (nPort == INTERNET_DEFAULT_FTP_PORT))
3537 if ((nScheme == INTERNET_SCHEME_GOPHER) &&
3538 (nPort == INTERNET_DEFAULT_GOPHER_PORT))
3541 if (nPort == INTERNET_INVALID_PORT_NUMBER)
3547 /* opaque urls do not fit into the standard url hierarchy and don't have
3548 * two following slashes */
3549 static inline BOOL scheme_is_opaque(INTERNET_SCHEME nScheme)
3551 return (nScheme != INTERNET_SCHEME_FTP) &&
3552 (nScheme != INTERNET_SCHEME_GOPHER) &&
3553 (nScheme != INTERNET_SCHEME_HTTP) &&
3554 (nScheme != INTERNET_SCHEME_HTTPS) &&
3555 (nScheme != INTERNET_SCHEME_FILE);
3558 static LPCWSTR INTERNET_GetSchemeString(INTERNET_SCHEME scheme)
3561 if (scheme < INTERNET_SCHEME_FIRST)
3563 index = scheme - INTERNET_SCHEME_FIRST;
3564 if (index >= sizeof(url_schemes)/sizeof(url_schemes[0]))
3566 return (LPCWSTR)&url_schemes[index];
3569 /* we can calculate using ansi strings because we're just
3570 * calculating string length, not size
3572 static BOOL calc_url_length(LPURL_COMPONENTSW lpUrlComponents,
3573 LPDWORD lpdwUrlLength)
3575 INTERNET_SCHEME nScheme;
3579 if (lpUrlComponents->lpszScheme)
3581 DWORD dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
3582 *lpdwUrlLength += dwLen;
3583 nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
3589 nScheme = lpUrlComponents->nScheme;
3591 if (nScheme == INTERNET_SCHEME_DEFAULT)
3592 nScheme = INTERNET_SCHEME_HTTP;
3593 scheme = INTERNET_GetSchemeString(nScheme);
3594 *lpdwUrlLength += strlenW(scheme);
3597 (*lpdwUrlLength)++; /* ':' */
3598 if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
3599 *lpdwUrlLength += strlen("//");
3601 if (lpUrlComponents->lpszUserName)
3603 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
3604 *lpdwUrlLength += strlen("@");
3608 if (lpUrlComponents->lpszPassword)
3610 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3615 if (lpUrlComponents->lpszPassword)
3617 *lpdwUrlLength += strlen(":");
3618 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, Password);
3621 if (lpUrlComponents->lpszHostName)
3623 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
3625 if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
3627 char szPort[MAX_WORD_DIGITS+1];
3629 sprintf(szPort, "%d", lpUrlComponents->nPort);
3630 *lpdwUrlLength += strlen(szPort);
3631 *lpdwUrlLength += strlen(":");
3634 if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
3635 (*lpdwUrlLength)++; /* '/' */
3638 if (lpUrlComponents->lpszUrlPath)
3639 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
3644 static void convert_urlcomp_atow(LPURL_COMPONENTSA lpUrlComponents, LPURL_COMPONENTSW urlCompW)
3648 ZeroMemory(urlCompW, sizeof(URL_COMPONENTSW));
3650 urlCompW->dwStructSize = sizeof(URL_COMPONENTSW);
3651 urlCompW->dwSchemeLength = lpUrlComponents->dwSchemeLength;
3652 urlCompW->nScheme = lpUrlComponents->nScheme;
3653 urlCompW->dwHostNameLength = lpUrlComponents->dwHostNameLength;
3654 urlCompW->nPort = lpUrlComponents->nPort;
3655 urlCompW->dwUserNameLength = lpUrlComponents->dwUserNameLength;
3656 urlCompW->dwPasswordLength = lpUrlComponents->dwPasswordLength;
3657 urlCompW->dwUrlPathLength = lpUrlComponents->dwUrlPathLength;
3658 urlCompW->dwExtraInfoLength = lpUrlComponents->dwExtraInfoLength;
3660 if (lpUrlComponents->lpszScheme)
3662 len = URL_GET_COMP_LENGTHA(lpUrlComponents, Scheme) + 1;
3663 urlCompW->lpszScheme = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3664 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszScheme,
3665 -1, urlCompW->lpszScheme, len);
3668 if (lpUrlComponents->lpszHostName)
3670 len = URL_GET_COMP_LENGTHA(lpUrlComponents, HostName) + 1;
3671 urlCompW->lpszHostName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3672 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszHostName,
3673 -1, urlCompW->lpszHostName, len);
3676 if (lpUrlComponents->lpszUserName)
3678 len = URL_GET_COMP_LENGTHA(lpUrlComponents, UserName) + 1;
3679 urlCompW->lpszUserName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3680 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUserName,
3681 -1, urlCompW->lpszUserName, len);
3684 if (lpUrlComponents->lpszPassword)
3686 len = URL_GET_COMP_LENGTHA(lpUrlComponents, Password) + 1;
3687 urlCompW->lpszPassword = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3688 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszPassword,
3689 -1, urlCompW->lpszPassword, len);
3692 if (lpUrlComponents->lpszUrlPath)
3694 len = URL_GET_COMP_LENGTHA(lpUrlComponents, UrlPath) + 1;
3695 urlCompW->lpszUrlPath = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3696 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUrlPath,
3697 -1, urlCompW->lpszUrlPath, len);
3700 if (lpUrlComponents->lpszExtraInfo)
3702 len = URL_GET_COMP_LENGTHA(lpUrlComponents, ExtraInfo) + 1;
3703 urlCompW->lpszExtraInfo = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3704 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszExtraInfo,
3705 -1, urlCompW->lpszExtraInfo, len);
3709 /***********************************************************************
3710 * InternetCreateUrlA (WININET.@)
3712 * See InternetCreateUrlW.
3714 BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
3715 LPSTR lpszUrl, LPDWORD lpdwUrlLength)
3719 URL_COMPONENTSW urlCompW;
3721 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
3723 if (!lpUrlComponents || lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
3725 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3729 convert_urlcomp_atow(lpUrlComponents, &urlCompW);
3732 urlW = HeapAlloc(GetProcessHeap(), 0, *lpdwUrlLength * sizeof(WCHAR));
3734 ret = InternetCreateUrlW(&urlCompW, dwFlags, urlW, lpdwUrlLength);
3736 if (!ret && (GetLastError() == ERROR_INSUFFICIENT_BUFFER))
3737 *lpdwUrlLength /= sizeof(WCHAR);
3739 /* on success, lpdwUrlLength points to the size of urlW in WCHARS
3740 * minus one, so add one to leave room for NULL terminator
3743 WideCharToMultiByte(CP_ACP, 0, urlW, -1, lpszUrl, *lpdwUrlLength + 1, NULL, NULL);
3745 HeapFree(GetProcessHeap(), 0, urlCompW.lpszScheme);
3746 HeapFree(GetProcessHeap(), 0, urlCompW.lpszHostName);
3747 HeapFree(GetProcessHeap(), 0, urlCompW.lpszUserName);
3748 HeapFree(GetProcessHeap(), 0, urlCompW.lpszPassword);
3749 HeapFree(GetProcessHeap(), 0, urlCompW.lpszUrlPath);
3750 HeapFree(GetProcessHeap(), 0, urlCompW.lpszExtraInfo);
3751 HeapFree(GetProcessHeap(), 0, urlW);
3756 /***********************************************************************
3757 * InternetCreateUrlW (WININET.@)
3759 * Creates a URL from its component parts.
3762 * lpUrlComponents [I] URL Components.
3763 * dwFlags [I] Flags. See notes.
3764 * lpszUrl [I] Buffer in which to store the created URL.
3765 * lpdwUrlLength [I/O] On input, the length of the buffer pointed to by
3766 * lpszUrl in characters. On output, the number of bytes
3767 * required to store the URL including terminator.
3771 * The dwFlags parameter can be zero or more of the following:
3772 *|ICU_ESCAPE - Generates escape sequences for unsafe characters in the path and extra info of the URL.
3779 BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
3780 LPWSTR lpszUrl, LPDWORD lpdwUrlLength)
3783 INTERNET_SCHEME nScheme;
3785 static const WCHAR slashSlashW[] = {'/','/'};
3786 static const WCHAR percentD[] = {'%','d',0};
3788 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
3790 if (!lpUrlComponents || lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
3792 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3796 if (!calc_url_length(lpUrlComponents, &dwLen))
3799 if (!lpszUrl || *lpdwUrlLength < dwLen)
3801 *lpdwUrlLength = (dwLen + 1) * sizeof(WCHAR);
3802 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
3806 *lpdwUrlLength = dwLen;
3811 if (lpUrlComponents->lpszScheme)
3813 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
3814 memcpy(lpszUrl, lpUrlComponents->lpszScheme, dwLen * sizeof(WCHAR));
3817 nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
3822 nScheme = lpUrlComponents->nScheme;
3824 if (nScheme == INTERNET_SCHEME_DEFAULT)
3825 nScheme = INTERNET_SCHEME_HTTP;
3827 scheme = INTERNET_GetSchemeString(nScheme);
3828 dwLen = strlenW(scheme);
3829 memcpy(lpszUrl, scheme, dwLen * sizeof(WCHAR));
3833 /* all schemes are followed by at least a colon */
3837 if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
3839 memcpy(lpszUrl, slashSlashW, sizeof(slashSlashW));
3840 lpszUrl += sizeof(slashSlashW)/sizeof(slashSlashW[0]);
3843 if (lpUrlComponents->lpszUserName)
3845 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
3846 memcpy(lpszUrl, lpUrlComponents->lpszUserName, dwLen * sizeof(WCHAR));
3849 if (lpUrlComponents->lpszPassword)
3854 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Password);
3855 memcpy(lpszUrl, lpUrlComponents->lpszPassword, dwLen * sizeof(WCHAR));
3863 if (lpUrlComponents->lpszHostName)
3865 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
3866 memcpy(lpszUrl, lpUrlComponents->lpszHostName, dwLen * sizeof(WCHAR));
3869 if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
3871 WCHAR szPort[MAX_WORD_DIGITS+1];
3873 sprintfW(szPort, percentD, lpUrlComponents->nPort);
3876 dwLen = strlenW(szPort);
3877 memcpy(lpszUrl, szPort, dwLen * sizeof(WCHAR));
3881 /* add slash between hostname and path if necessary */
3882 if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
3890 if (lpUrlComponents->lpszUrlPath)
3892 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
3893 memcpy(lpszUrl, lpUrlComponents->lpszUrlPath, dwLen * sizeof(WCHAR));
3902 /***********************************************************************
3903 * InternetConfirmZoneCrossingA (WININET.@)
3906 DWORD WINAPI InternetConfirmZoneCrossingA( HWND hWnd, LPSTR szUrlPrev, LPSTR szUrlNew, BOOL bPost )
3908 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_a(szUrlPrev), debugstr_a(szUrlNew), bPost);
3909 return ERROR_SUCCESS;
3912 /***********************************************************************
3913 * InternetConfirmZoneCrossingW (WININET.@)
3916 DWORD WINAPI InternetConfirmZoneCrossingW( HWND hWnd, LPWSTR szUrlPrev, LPWSTR szUrlNew, BOOL bPost )
3918 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_w(szUrlPrev), debugstr_w(szUrlNew), bPost);
3919 return ERROR_SUCCESS;
3922 DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
3923 DWORD_PTR* lpdwConnection, DWORD dwReserved )
3925 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
3926 lpdwConnection, dwReserved);
3927 return ERROR_SUCCESS;
3930 DWORD WINAPI InternetDialW( HWND hwndParent, LPWSTR lpszConnectoid, DWORD dwFlags,
3931 DWORD_PTR* lpdwConnection, DWORD dwReserved )
3933 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
3934 lpdwConnection, dwReserved);
3935 return ERROR_SUCCESS;
3938 BOOL WINAPI InternetGoOnlineA( LPSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3940 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_a(lpszURL), hwndParent, dwReserved);
3944 BOOL WINAPI InternetGoOnlineW( LPWSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3946 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_w(lpszURL), hwndParent, dwReserved);
3950 DWORD WINAPI InternetHangUp( DWORD_PTR dwConnection, DWORD dwReserved )
3952 FIXME("(0x%08lx, 0x%08x) stub\n", dwConnection, dwReserved);
3953 return ERROR_SUCCESS;
3956 BOOL WINAPI CreateMD5SSOHash( PWSTR pszChallengeInfo, PWSTR pwszRealm, PWSTR pwszTarget,
3959 FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo), debugstr_w(pwszRealm),
3960 debugstr_w(pwszTarget), pbHexHash);
3964 BOOL WINAPI ResumeSuspendedDownload( HINTERNET hInternet, DWORD dwError )
3966 FIXME("(%p, 0x%08x) stub\n", hInternet, dwError);
3970 BOOL WINAPI InternetQueryFortezzaStatus(DWORD *a, DWORD_PTR b)
3972 FIXME("(%p, %08lx) stub\n", a, b);