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>
57 #include "wine/debug.h"
59 #define NO_SHLWAPI_STREAM
62 #include "wine/exception.h"
68 #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 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 EnterCriticalSection( &WININET_cs
);
109 if( !WININET_dwMaxHandles
)
111 num
= HANDLE_CHUNK_SIZE
;
112 p
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
117 WININET_dwMaxHandles
= num
;
119 if( WININET_dwMaxHandles
== WININET_dwNextHandle
)
121 num
= WININET_dwMaxHandles
+ HANDLE_CHUNK_SIZE
;
122 p
= HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
123 WININET_Handles
, sizeof (UINT
)* num
);
127 WININET_dwMaxHandles
= num
;
130 handle
= WININET_dwNextHandle
;
131 if( WININET_Handles
[handle
] )
132 ERR("handle isn't free but should be\n");
133 WININET_Handles
[handle
] = WININET_AddRef( info
);
135 while( WININET_Handles
[WININET_dwNextHandle
] &&
136 (WININET_dwNextHandle
< WININET_dwMaxHandles
) )
137 WININET_dwNextHandle
++;
140 LeaveCriticalSection( &WININET_cs
);
142 return info
->hInternet
= (HINTERNET
) (handle
+1);
145 LPWININETHANDLEHEADER
WININET_AddRef( LPWININETHANDLEHEADER info
)
148 TRACE("%p -> refcount = %d\n", info
, info
->dwRefCount
);
152 LPWININETHANDLEHEADER
WININET_GetObject( HINTERNET hinternet
)
154 LPWININETHANDLEHEADER info
= NULL
;
155 UINT handle
= (UINT
) hinternet
;
157 EnterCriticalSection( &WININET_cs
);
159 if( (handle
> 0) && ( handle
<= WININET_dwMaxHandles
) &&
160 WININET_Handles
[handle
-1] )
161 info
= WININET_AddRef( WININET_Handles
[handle
-1] );
163 LeaveCriticalSection( &WININET_cs
);
165 TRACE("handle %d -> %p\n", handle
, info
);
170 BOOL
WININET_Release( LPWININETHANDLEHEADER info
)
173 TRACE( "object %p refcount = %d\n", info
, info
->dwRefCount
);
174 if( !info
->dwRefCount
)
176 TRACE( "destroying object %p\n", info
);
177 info
->destroy( info
);
182 BOOL
WININET_FreeHandle( HINTERNET hinternet
)
185 UINT handle
= (UINT
) hinternet
;
186 LPWININETHANDLEHEADER info
= NULL
;
188 EnterCriticalSection( &WININET_cs
);
190 if( (handle
> 0) && ( handle
<= WININET_dwMaxHandles
) )
193 if( WININET_Handles
[handle
] )
195 info
= WININET_Handles
[handle
];
196 TRACE( "destroying handle %d for object %p\n", handle
+1, info
);
197 WININET_Handles
[handle
] = NULL
;
199 if( WININET_dwNextHandle
> handle
)
200 WININET_dwNextHandle
= handle
;
204 LeaveCriticalSection( &WININET_cs
);
207 WININET_Release( info
);
212 /***********************************************************************
213 * DllMain [Internal] Initializes the internal 'WININET.DLL'.
216 * hinstDLL [I] handle to the DLL's instance
218 * lpvReserved [I] reserved, must be NULL
225 BOOL WINAPI
DllMain (HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
227 TRACE("%p,%x,%p\n", hinstDLL
, fdwReason
, lpvReserved
);
230 case DLL_PROCESS_ATTACH
:
232 g_dwTlsErrIndex
= TlsAlloc();
234 if (g_dwTlsErrIndex
== TLS_OUT_OF_INDEXES
)
237 URLCacheContainers_CreateDefaults();
239 WININET_hModule
= (HMODULE
)hinstDLL
;
241 case DLL_THREAD_ATTACH
:
244 case DLL_THREAD_DETACH
:
245 if (g_dwTlsErrIndex
!= TLS_OUT_OF_INDEXES
)
247 LPVOID lpwite
= TlsGetValue(g_dwTlsErrIndex
);
248 HeapFree(GetProcessHeap(), 0, lpwite
);
252 case DLL_PROCESS_DETACH
:
254 URLCacheContainers_DeleteAll();
256 if (g_dwTlsErrIndex
!= TLS_OUT_OF_INDEXES
)
258 HeapFree(GetProcessHeap(), 0, TlsGetValue(g_dwTlsErrIndex
));
259 TlsFree(g_dwTlsErrIndex
);
268 /***********************************************************************
269 * InternetInitializeAutoProxyDll (WININET.@)
271 * Setup the internal proxy
280 BOOL WINAPI
InternetInitializeAutoProxyDll(DWORD dwReserved
)
283 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
287 /***********************************************************************
288 * DetectAutoProxyUrl (WININET.@)
290 * Auto detect the proxy url
296 BOOL WINAPI
DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl
,
297 DWORD dwAutoProxyUrlLength
, DWORD dwDetectFlags
)
300 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
305 /***********************************************************************
306 * INTERNET_ConfigureProxyFromReg
309 * The proxy may be specified in the form 'http=proxy.my.org'
310 * Presumably that means there can be ftp=ftpproxy.my.org too.
312 static BOOL
INTERNET_ConfigureProxyFromReg( LPWININETAPPINFOW lpwai
)
315 DWORD r
, keytype
, len
, enabled
;
316 LPCSTR lpszInternetSettings
=
317 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
318 static const WCHAR szProxyServer
[] = { 'P','r','o','x','y','S','e','r','v','e','r', 0 };
320 r
= RegOpenKeyA(HKEY_CURRENT_USER
, lpszInternetSettings
, &key
);
321 if ( r
!= ERROR_SUCCESS
)
324 len
= sizeof enabled
;
325 r
= RegQueryValueExA( key
, "ProxyEnable", NULL
, &keytype
,
326 (BYTE
*)&enabled
, &len
);
327 if( (r
== ERROR_SUCCESS
) && enabled
)
329 TRACE("Proxy is enabled.\n");
331 /* figure out how much memory the proxy setting takes */
332 r
= RegQueryValueExW( key
, szProxyServer
, NULL
, &keytype
,
334 if( (r
== ERROR_SUCCESS
) && len
&& (keytype
== REG_SZ
) )
337 static const WCHAR szHttp
[] = {'h','t','t','p','=',0};
339 szProxy
=HeapAlloc( GetProcessHeap(), 0, len
);
340 RegQueryValueExW( key
, szProxyServer
, NULL
, &keytype
,
341 (BYTE
*)szProxy
, &len
);
343 /* find the http proxy, and strip away everything else */
344 p
= strstrW( szProxy
, szHttp
);
347 p
+= lstrlenW(szHttp
);
348 lstrcpyW( szProxy
, p
);
350 p
= strchrW( szProxy
, ' ' );
354 lpwai
->dwAccessType
= INTERNET_OPEN_TYPE_PROXY
;
355 lpwai
->lpszProxy
= szProxy
;
357 TRACE("http proxy = %s\n", debugstr_w(lpwai
->lpszProxy
));
360 ERR("Couldn't read proxy server settings.\n");
363 TRACE("Proxy is not enabled.\n");
369 /***********************************************************************
370 * dump_INTERNET_FLAGS
372 * Helper function to TRACE the internet flags.
378 static void dump_INTERNET_FLAGS(DWORD dwFlags
)
380 #define FE(x) { x, #x }
381 static const wininet_flag_info flag
[] = {
382 FE(INTERNET_FLAG_RELOAD
),
383 FE(INTERNET_FLAG_RAW_DATA
),
384 FE(INTERNET_FLAG_EXISTING_CONNECT
),
385 FE(INTERNET_FLAG_ASYNC
),
386 FE(INTERNET_FLAG_PASSIVE
),
387 FE(INTERNET_FLAG_NO_CACHE_WRITE
),
388 FE(INTERNET_FLAG_MAKE_PERSISTENT
),
389 FE(INTERNET_FLAG_FROM_CACHE
),
390 FE(INTERNET_FLAG_SECURE
),
391 FE(INTERNET_FLAG_KEEP_CONNECTION
),
392 FE(INTERNET_FLAG_NO_AUTO_REDIRECT
),
393 FE(INTERNET_FLAG_READ_PREFETCH
),
394 FE(INTERNET_FLAG_NO_COOKIES
),
395 FE(INTERNET_FLAG_NO_AUTH
),
396 FE(INTERNET_FLAG_CACHE_IF_NET_FAIL
),
397 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP
),
398 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS
),
399 FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID
),
400 FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID
),
401 FE(INTERNET_FLAG_RESYNCHRONIZE
),
402 FE(INTERNET_FLAG_HYPERLINK
),
403 FE(INTERNET_FLAG_NO_UI
),
404 FE(INTERNET_FLAG_PRAGMA_NOCACHE
),
405 FE(INTERNET_FLAG_CACHE_ASYNC
),
406 FE(INTERNET_FLAG_FORMS_SUBMIT
),
407 FE(INTERNET_FLAG_NEED_FILE
),
408 FE(INTERNET_FLAG_TRANSFER_ASCII
),
409 FE(INTERNET_FLAG_TRANSFER_BINARY
)
414 for (i
= 0; i
< (sizeof(flag
) / sizeof(flag
[0])); i
++) {
415 if (flag
[i
].val
& dwFlags
) {
416 TRACE(" %s", flag
[i
].name
);
417 dwFlags
&= ~flag
[i
].val
;
421 TRACE(" Unknown flags (%08x)\n", dwFlags
);
426 /***********************************************************************
427 * InternetOpenW (WININET.@)
429 * Per-application initialization of wininet
432 * HINTERNET on success
436 HINTERNET WINAPI
InternetOpenW(LPCWSTR lpszAgent
, DWORD dwAccessType
,
437 LPCWSTR lpszProxy
, LPCWSTR lpszProxyBypass
, DWORD dwFlags
)
439 LPWININETAPPINFOW lpwai
= NULL
;
440 HINTERNET handle
= NULL
;
442 if (TRACE_ON(wininet
)) {
443 #define FE(x) { x, #x }
444 static const wininet_flag_info access_type
[] = {
445 FE(INTERNET_OPEN_TYPE_PRECONFIG
),
446 FE(INTERNET_OPEN_TYPE_DIRECT
),
447 FE(INTERNET_OPEN_TYPE_PROXY
),
448 FE(INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY
)
452 const char *access_type_str
= "Unknown";
454 TRACE("(%s, %i, %s, %s, %i)\n", debugstr_w(lpszAgent
), dwAccessType
,
455 debugstr_w(lpszProxy
), debugstr_w(lpszProxyBypass
), dwFlags
);
456 for (i
= 0; i
< (sizeof(access_type
) / sizeof(access_type
[0])); i
++) {
457 if (access_type
[i
].val
== dwAccessType
) {
458 access_type_str
= access_type
[i
].name
;
462 TRACE(" access type : %s\n", access_type_str
);
464 dump_INTERNET_FLAGS(dwFlags
);
467 /* Clear any error information */
468 INTERNET_SetLastError(0);
470 lpwai
= HeapAlloc(GetProcessHeap(), 0, sizeof(WININETAPPINFOW
));
473 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
477 memset(lpwai
, 0, sizeof(WININETAPPINFOW
));
478 lpwai
->hdr
.htype
= WH_HINIT
;
479 lpwai
->hdr
.dwFlags
= dwFlags
;
480 lpwai
->hdr
.dwRefCount
= 1;
481 lpwai
->hdr
.destroy
= INTERNET_CloseHandle
;
482 lpwai
->dwAccessType
= dwAccessType
;
483 lpwai
->lpszProxyUsername
= NULL
;
484 lpwai
->lpszProxyPassword
= NULL
;
486 handle
= WININET_AllocHandle( &lpwai
->hdr
);
489 HeapFree( GetProcessHeap(), 0, lpwai
);
490 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
494 if (NULL
!= lpszAgent
)
496 lpwai
->lpszAgent
= HeapAlloc( GetProcessHeap(),0,
497 (strlenW(lpszAgent
)+1)*sizeof(WCHAR
));
498 if (lpwai
->lpszAgent
)
499 lstrcpyW( lpwai
->lpszAgent
, lpszAgent
);
501 if(dwAccessType
== INTERNET_OPEN_TYPE_PRECONFIG
)
502 INTERNET_ConfigureProxyFromReg( lpwai
);
503 else if (NULL
!= lpszProxy
)
505 lpwai
->lpszProxy
= HeapAlloc( GetProcessHeap(), 0,
506 (strlenW(lpszProxy
)+1)*sizeof(WCHAR
));
507 if (lpwai
->lpszProxy
)
508 lstrcpyW( lpwai
->lpszProxy
, lpszProxy
);
511 if (NULL
!= lpszProxyBypass
)
513 lpwai
->lpszProxyBypass
= HeapAlloc( GetProcessHeap(), 0,
514 (strlenW(lpszProxyBypass
)+1)*sizeof(WCHAR
));
515 if (lpwai
->lpszProxyBypass
)
516 lstrcpyW( lpwai
->lpszProxyBypass
, lpszProxyBypass
);
521 WININET_Release( &lpwai
->hdr
);
523 TRACE("returning %p\n", lpwai
);
529 /***********************************************************************
530 * InternetOpenA (WININET.@)
532 * Per-application initialization of wininet
535 * HINTERNET on success
539 HINTERNET WINAPI
InternetOpenA(LPCSTR lpszAgent
, DWORD dwAccessType
,
540 LPCSTR lpszProxy
, LPCSTR lpszProxyBypass
, DWORD dwFlags
)
542 HINTERNET rc
= (HINTERNET
)NULL
;
544 WCHAR
*szAgent
= NULL
, *szProxy
= NULL
, *szBypass
= NULL
;
546 TRACE("(%s, 0x%08x, %s, %s, 0x%08x)\n", debugstr_a(lpszAgent
),
547 dwAccessType
, debugstr_a(lpszProxy
), debugstr_a(lpszProxyBypass
), dwFlags
);
551 len
= MultiByteToWideChar(CP_ACP
, 0, lpszAgent
, -1, NULL
, 0);
552 szAgent
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
553 MultiByteToWideChar(CP_ACP
, 0, lpszAgent
, -1, szAgent
, len
);
558 len
= MultiByteToWideChar(CP_ACP
, 0, lpszProxy
, -1, NULL
, 0);
559 szProxy
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
560 MultiByteToWideChar(CP_ACP
, 0, lpszProxy
, -1, szProxy
, len
);
563 if( lpszProxyBypass
)
565 len
= MultiByteToWideChar(CP_ACP
, 0, lpszProxyBypass
, -1, NULL
, 0);
566 szBypass
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
567 MultiByteToWideChar(CP_ACP
, 0, lpszProxyBypass
, -1, szBypass
, len
);
570 rc
= InternetOpenW(szAgent
, dwAccessType
, szProxy
, szBypass
, dwFlags
);
572 HeapFree(GetProcessHeap(), 0, szAgent
);
573 HeapFree(GetProcessHeap(), 0, szProxy
);
574 HeapFree(GetProcessHeap(), 0, szBypass
);
579 /***********************************************************************
580 * InternetGetLastResponseInfoA (WININET.@)
582 * Return last wininet error description on the calling thread
585 * TRUE on success of writing to buffer
589 BOOL WINAPI
InternetGetLastResponseInfoA(LPDWORD lpdwError
,
590 LPSTR lpszBuffer
, LPDWORD lpdwBufferLength
)
592 LPWITHREADERROR lpwite
= (LPWITHREADERROR
)TlsGetValue(g_dwTlsErrIndex
);
598 *lpdwError
= lpwite
->dwError
;
601 memcpy(lpszBuffer
, lpwite
->response
, *lpdwBufferLength
);
602 *lpdwBufferLength
= strlen(lpszBuffer
);
605 *lpdwBufferLength
= 0;
610 *lpdwBufferLength
= 0;
616 /***********************************************************************
617 * InternetGetLastResponseInfoW (WININET.@)
619 * Return last wininet error description on the calling thread
622 * TRUE on success of writing to buffer
626 BOOL WINAPI
InternetGetLastResponseInfoW(LPDWORD lpdwError
,
627 LPWSTR lpszBuffer
, LPDWORD lpdwBufferLength
)
629 LPWITHREADERROR lpwite
= (LPWITHREADERROR
)TlsGetValue(g_dwTlsErrIndex
);
635 *lpdwError
= lpwite
->dwError
;
638 memcpy(lpszBuffer
, lpwite
->response
, *lpdwBufferLength
);
639 *lpdwBufferLength
= lstrlenW(lpszBuffer
);
642 *lpdwBufferLength
= 0;
647 *lpdwBufferLength
= 0;
653 /***********************************************************************
654 * InternetGetConnectedState (WININET.@)
656 * Return connected state
660 * if lpdwStatus is not null, return the status (off line,
661 * modem, lan...) in it.
662 * FALSE if not connected
664 BOOL WINAPI
InternetGetConnectedState(LPDWORD lpdwStatus
, DWORD dwReserved
)
666 TRACE("(%p, 0x%08x)\n", lpdwStatus
, dwReserved
);
669 FIXME("always returning LAN connection.\n");
670 *lpdwStatus
= INTERNET_CONNECTION_LAN
;
676 /***********************************************************************
677 * InternetGetConnectedStateExW (WININET.@)
679 * Return connected state
683 * lpdwStatus [O] Flags specifying the status of the internet connection.
684 * lpszConnectionName [O] Pointer to buffer to receive the friendly name of the internet connection.
685 * dwNameLen [I] Size of the buffer, in characters.
686 * dwReserved [I] Reserved. Must be set to 0.
690 * if lpdwStatus is not null, return the status (off line,
691 * modem, lan...) in it.
692 * FALSE if not connected
695 * If the system has no available network connections, an empty string is
696 * stored in lpszConnectionName. If there is a LAN connection, a localized
697 * "LAN Connection" string is stored. Presumably, if only a dial-up
698 * connection is available then the name of the dial-up connection is
699 * returned. Why any application, other than the "Internet Settings" CPL,
700 * would want to use this function instead of the simpler InternetGetConnectedStateW
701 * function is beyond me.
703 BOOL WINAPI
InternetGetConnectedStateExW(LPDWORD lpdwStatus
, LPWSTR lpszConnectionName
,
704 DWORD dwNameLen
, DWORD dwReserved
)
706 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus
, lpszConnectionName
, dwNameLen
, dwReserved
);
713 FIXME("always returning LAN connection.\n");
714 *lpdwStatus
= INTERNET_CONNECTION_LAN
;
716 return LoadStringW(WININET_hModule
, IDS_LANCONNECTION
, lpszConnectionName
, dwNameLen
);
720 /***********************************************************************
721 * InternetGetConnectedStateExA (WININET.@)
723 BOOL WINAPI
InternetGetConnectedStateExA(LPDWORD lpdwStatus
, LPSTR lpszConnectionName
,
724 DWORD dwNameLen
, DWORD dwReserved
)
726 LPWSTR lpwszConnectionName
= NULL
;
729 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus
, lpszConnectionName
, dwNameLen
, dwReserved
);
731 if (lpszConnectionName
&& dwNameLen
> 0)
732 lpwszConnectionName
= HeapAlloc(GetProcessHeap(), 0, dwNameLen
* sizeof(WCHAR
));
734 rc
= InternetGetConnectedStateExW(lpdwStatus
,lpwszConnectionName
, dwNameLen
,
736 if (rc
&& lpwszConnectionName
)
738 WideCharToMultiByte(CP_ACP
,0,lpwszConnectionName
,-1,lpszConnectionName
,
739 dwNameLen
, NULL
, NULL
);
741 HeapFree(GetProcessHeap(),0,lpwszConnectionName
);
748 /***********************************************************************
749 * InternetConnectW (WININET.@)
751 * Open a ftp, gopher or http session
754 * HINTERNET a session handle on success
758 HINTERNET WINAPI
InternetConnectW(HINTERNET hInternet
,
759 LPCWSTR lpszServerName
, INTERNET_PORT nServerPort
,
760 LPCWSTR lpszUserName
, LPCWSTR lpszPassword
,
761 DWORD dwService
, DWORD dwFlags
, DWORD dwContext
)
763 LPWININETAPPINFOW hIC
;
766 TRACE("(%p, %s, %i, %s, %s, %i, %i, %i)\n", hInternet
, debugstr_w(lpszServerName
),
767 nServerPort
, debugstr_w(lpszUserName
), debugstr_w(lpszPassword
),
768 dwService
, dwFlags
, dwContext
);
772 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
776 /* Clear any error information */
777 INTERNET_SetLastError(0);
778 hIC
= (LPWININETAPPINFOW
) WININET_GetObject( hInternet
);
779 if ( (hIC
== NULL
) || (hIC
->hdr
.htype
!= WH_HINIT
) )
781 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
787 case INTERNET_SERVICE_FTP
:
788 rc
= FTP_Connect(hIC
, lpszServerName
, nServerPort
,
789 lpszUserName
, lpszPassword
, dwFlags
, dwContext
, 0);
792 case INTERNET_SERVICE_HTTP
:
793 rc
= HTTP_Connect(hIC
, lpszServerName
, nServerPort
,
794 lpszUserName
, lpszPassword
, dwFlags
, dwContext
, 0);
797 case INTERNET_SERVICE_GOPHER
:
803 WININET_Release( &hIC
->hdr
);
805 TRACE("returning %p\n", rc
);
810 /***********************************************************************
811 * InternetConnectA (WININET.@)
813 * Open a ftp, gopher or http session
816 * HINTERNET a session handle on success
820 HINTERNET WINAPI
InternetConnectA(HINTERNET hInternet
,
821 LPCSTR lpszServerName
, INTERNET_PORT nServerPort
,
822 LPCSTR lpszUserName
, LPCSTR lpszPassword
,
823 DWORD dwService
, DWORD dwFlags
, DWORD dwContext
)
825 HINTERNET rc
= (HINTERNET
)NULL
;
827 LPWSTR szServerName
= NULL
;
828 LPWSTR szUserName
= NULL
;
829 LPWSTR szPassword
= NULL
;
833 len
= MultiByteToWideChar(CP_ACP
, 0, lpszServerName
, -1, NULL
, 0);
834 szServerName
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
835 MultiByteToWideChar(CP_ACP
, 0, lpszServerName
, -1, szServerName
, len
);
839 len
= MultiByteToWideChar(CP_ACP
, 0, lpszUserName
, -1, NULL
, 0);
840 szUserName
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
841 MultiByteToWideChar(CP_ACP
, 0, lpszUserName
, -1, szUserName
, len
);
845 len
= MultiByteToWideChar(CP_ACP
, 0, lpszPassword
, -1, NULL
, 0);
846 szPassword
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
847 MultiByteToWideChar(CP_ACP
, 0, lpszPassword
, -1, szPassword
, len
);
851 rc
= InternetConnectW(hInternet
, szServerName
, nServerPort
,
852 szUserName
, szPassword
, dwService
, dwFlags
, dwContext
);
854 HeapFree(GetProcessHeap(), 0, szServerName
);
855 HeapFree(GetProcessHeap(), 0, szUserName
);
856 HeapFree(GetProcessHeap(), 0, szPassword
);
861 /***********************************************************************
862 * InternetFindNextFileA (WININET.@)
864 * Continues a file search from a previous call to FindFirstFile
871 BOOL WINAPI
InternetFindNextFileA(HINTERNET hFind
, LPVOID lpvFindData
)
876 ret
= InternetFindNextFileW(hFind
, lpvFindData
?&fd
:NULL
);
878 WININET_find_data_WtoA(&fd
, (LPWIN32_FIND_DATAA
)lpvFindData
);
882 /***********************************************************************
883 * InternetFindNextFileW (WININET.@)
885 * Continues a file search from a previous call to FindFirstFile
892 static void AsyncFtpFindNextFileProc(WORKREQUEST
*workRequest
)
894 struct WORKREQ_FTPFINDNEXTW
*req
= &workRequest
->u
.FtpFindNextW
;
895 LPWININETFTPFINDNEXTW lpwh
= (LPWININETFTPFINDNEXTW
) workRequest
->hdr
;
899 FTP_FindNextFileW(lpwh
, req
->lpFindFileData
);
902 BOOL WINAPI
InternetFindNextFileW(HINTERNET hFind
, LPVOID lpvFindData
)
904 LPWININETAPPINFOW hIC
= NULL
;
905 LPWININETFTPFINDNEXTW lpwh
;
906 BOOL bSuccess
= FALSE
;
910 lpwh
= (LPWININETFTPFINDNEXTW
) WININET_GetObject( hFind
);
911 if (NULL
== lpwh
|| lpwh
->hdr
.htype
!= WH_HFTPFINDNEXT
)
913 FIXME("Only FTP supported\n");
914 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
918 hIC
= lpwh
->lpFtpSession
->lpAppInfo
;
919 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
)
921 WORKREQUEST workRequest
;
922 struct WORKREQ_FTPFINDNEXTW
*req
;
924 workRequest
.asyncproc
= AsyncFtpFindNextFileProc
;
925 workRequest
.hdr
= WININET_AddRef( &lpwh
->hdr
);
926 req
= &workRequest
.u
.FtpFindNextW
;
927 req
->lpFindFileData
= lpvFindData
;
929 bSuccess
= INTERNET_AsyncCall(&workRequest
);
933 bSuccess
= FTP_FindNextFileW(lpwh
, lpvFindData
);
937 WININET_Release( &lpwh
->hdr
);
941 /***********************************************************************
942 * INTERNET_CloseHandle (internal)
944 * Close internet handle
950 static VOID
INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr
)
952 LPWININETAPPINFOW lpwai
= (LPWININETAPPINFOW
) hdr
;
956 HeapFree(GetProcessHeap(), 0, lpwai
->lpszAgent
);
957 HeapFree(GetProcessHeap(), 0, lpwai
->lpszProxy
);
958 HeapFree(GetProcessHeap(), 0, lpwai
->lpszProxyBypass
);
959 HeapFree(GetProcessHeap(), 0, lpwai
->lpszProxyUsername
);
960 HeapFree(GetProcessHeap(), 0, lpwai
->lpszProxyPassword
);
961 HeapFree(GetProcessHeap(), 0, lpwai
);
965 /***********************************************************************
966 * InternetCloseHandle (WININET.@)
968 * Generic close handle function
975 BOOL WINAPI
InternetCloseHandle(HINTERNET hInternet
)
977 LPWININETHANDLEHEADER lpwh
;
979 TRACE("%p\n",hInternet
);
981 lpwh
= WININET_GetObject( hInternet
);
984 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
988 /* FIXME: native appears to send this from the equivalent of
990 INTERNET_SendCallback(lpwh
, lpwh
->dwContext
,
991 INTERNET_STATUS_HANDLE_CLOSING
, &hInternet
,
994 WININET_FreeHandle( hInternet
);
995 WININET_Release( lpwh
);
1001 /***********************************************************************
1002 * ConvertUrlComponentValue (Internal)
1004 * Helper function for InternetCrackUrlW
1007 static void ConvertUrlComponentValue(LPSTR
* lppszComponent
, LPDWORD dwComponentLen
,
1008 LPWSTR lpwszComponent
, DWORD dwwComponentLen
,
1009 LPCSTR lpszStart
, LPCWSTR lpwszStart
)
1011 TRACE("%p %d %p %d %p %p\n", lppszComponent
, *dwComponentLen
, lpwszComponent
, dwwComponentLen
, lpszStart
, lpwszStart
);
1012 if (*dwComponentLen
!= 0)
1014 DWORD nASCIILength
=WideCharToMultiByte(CP_ACP
,0,lpwszComponent
,dwwComponentLen
,NULL
,0,NULL
,NULL
);
1015 if (*lppszComponent
== NULL
)
1017 int nASCIIOffset
=WideCharToMultiByte(CP_ACP
,0,lpwszStart
,lpwszComponent
-lpwszStart
,NULL
,0,NULL
,NULL
);
1019 *lppszComponent
= (LPSTR
)lpszStart
+nASCIIOffset
;
1021 *lppszComponent
= NULL
;
1022 *dwComponentLen
= nASCIILength
;
1026 DWORD ncpylen
= min((*dwComponentLen
)-1, nASCIILength
);
1027 WideCharToMultiByte(CP_ACP
,0,lpwszComponent
,dwwComponentLen
,*lppszComponent
,ncpylen
+1,NULL
,NULL
);
1028 (*lppszComponent
)[ncpylen
]=0;
1029 *dwComponentLen
= ncpylen
;
1035 /***********************************************************************
1036 * InternetCrackUrlA (WININET.@)
1038 * See InternetCrackUrlW.
1040 BOOL WINAPI
InternetCrackUrlA(LPCSTR lpszUrl
, DWORD dwUrlLength
, DWORD dwFlags
,
1041 LPURL_COMPONENTSA lpUrlComponents
)
1044 URL_COMPONENTSW UCW
;
1047 TRACE("(%s %u %x %p)\n", debugstr_a(lpszUrl
), dwUrlLength
, dwFlags
, lpUrlComponents
);
1050 nLength
=MultiByteToWideChar(CP_ACP
,0,lpszUrl
,dwUrlLength
,NULL
,0);
1052 /* if dwUrlLength=-1 then nLength includes null but length to
1053 InternetCrackUrlW should not include it */
1054 if (dwUrlLength
== -1) nLength
--;
1056 lpwszUrl
=HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WCHAR
)*nLength
);
1057 MultiByteToWideChar(CP_ACP
,0,lpszUrl
,dwUrlLength
,lpwszUrl
,nLength
);
1059 memset(&UCW
,0,sizeof(UCW
));
1060 if(lpUrlComponents
->dwHostNameLength
!=0)
1061 UCW
.dwHostNameLength
= lpUrlComponents
->dwHostNameLength
;
1062 if(lpUrlComponents
->dwUserNameLength
!=0)
1063 UCW
.dwUserNameLength
=lpUrlComponents
->dwUserNameLength
;
1064 if(lpUrlComponents
->dwPasswordLength
!=0)
1065 UCW
.dwPasswordLength
=lpUrlComponents
->dwPasswordLength
;
1066 if(lpUrlComponents
->dwUrlPathLength
!=0)
1067 UCW
.dwUrlPathLength
=lpUrlComponents
->dwUrlPathLength
;
1068 if(lpUrlComponents
->dwSchemeLength
!=0)
1069 UCW
.dwSchemeLength
=lpUrlComponents
->dwSchemeLength
;
1070 if(lpUrlComponents
->dwExtraInfoLength
!=0)
1071 UCW
.dwExtraInfoLength
=lpUrlComponents
->dwExtraInfoLength
;
1072 if(!InternetCrackUrlW(lpwszUrl
,nLength
,dwFlags
,&UCW
))
1074 HeapFree(GetProcessHeap(), 0, lpwszUrl
);
1078 ConvertUrlComponentValue(&lpUrlComponents
->lpszHostName
, &lpUrlComponents
->dwHostNameLength
,
1079 UCW
.lpszHostName
, UCW
.dwHostNameLength
,
1081 ConvertUrlComponentValue(&lpUrlComponents
->lpszUserName
, &lpUrlComponents
->dwUserNameLength
,
1082 UCW
.lpszUserName
, UCW
.dwUserNameLength
,
1084 ConvertUrlComponentValue(&lpUrlComponents
->lpszPassword
, &lpUrlComponents
->dwPasswordLength
,
1085 UCW
.lpszPassword
, UCW
.dwPasswordLength
,
1087 ConvertUrlComponentValue(&lpUrlComponents
->lpszUrlPath
, &lpUrlComponents
->dwUrlPathLength
,
1088 UCW
.lpszUrlPath
, UCW
.dwUrlPathLength
,
1090 ConvertUrlComponentValue(&lpUrlComponents
->lpszScheme
, &lpUrlComponents
->dwSchemeLength
,
1091 UCW
.lpszScheme
, UCW
.dwSchemeLength
,
1093 ConvertUrlComponentValue(&lpUrlComponents
->lpszExtraInfo
, &lpUrlComponents
->dwExtraInfoLength
,
1094 UCW
.lpszExtraInfo
, UCW
.dwExtraInfoLength
,
1096 lpUrlComponents
->nScheme
=UCW
.nScheme
;
1097 lpUrlComponents
->nPort
=UCW
.nPort
;
1098 HeapFree(GetProcessHeap(), 0, lpwszUrl
);
1100 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", lpszUrl
,
1101 debugstr_an(lpUrlComponents
->lpszScheme
,lpUrlComponents
->dwSchemeLength
),
1102 debugstr_an(lpUrlComponents
->lpszHostName
,lpUrlComponents
->dwHostNameLength
),
1103 debugstr_an(lpUrlComponents
->lpszUrlPath
,lpUrlComponents
->dwUrlPathLength
),
1104 debugstr_an(lpUrlComponents
->lpszExtraInfo
,lpUrlComponents
->dwExtraInfoLength
));
1109 static const WCHAR url_schemes
[][7] =
1112 {'g','o','p','h','e','r',0},
1113 {'h','t','t','p',0},
1114 {'h','t','t','p','s',0},
1115 {'f','i','l','e',0},
1116 {'n','e','w','s',0},
1117 {'m','a','i','l','t','o',0},
1121 /***********************************************************************
1122 * GetInternetSchemeW (internal)
1128 * INTERNET_SCHEME_UNKNOWN on failure
1131 static INTERNET_SCHEME
GetInternetSchemeW(LPCWSTR lpszScheme
, DWORD nMaxCmp
)
1135 TRACE("%s %d\n",debugstr_wn(lpszScheme
, nMaxCmp
), nMaxCmp
);
1137 if(lpszScheme
==NULL
)
1138 return INTERNET_SCHEME_UNKNOWN
;
1140 for (i
= 0; i
< sizeof(url_schemes
)/sizeof(url_schemes
[0]); i
++)
1141 if (!strncmpW(lpszScheme
, url_schemes
[i
], nMaxCmp
))
1142 return INTERNET_SCHEME_FIRST
+ i
;
1144 return INTERNET_SCHEME_UNKNOWN
;
1147 /***********************************************************************
1148 * SetUrlComponentValueW (Internal)
1150 * Helper function for InternetCrackUrlW
1153 * lppszComponent [O] Holds the returned string
1154 * dwComponentLen [I] Holds the size of lppszComponent
1155 * [O] Holds the length of the string in lppszComponent without '\0'
1156 * lpszStart [I] Holds the string to copy from
1157 * len [I] Holds the length of lpszStart without '\0'
1164 static BOOL
SetUrlComponentValueW(LPWSTR
* lppszComponent
, LPDWORD dwComponentLen
, LPCWSTR lpszStart
, DWORD len
)
1166 TRACE("%s (%d)\n", debugstr_wn(lpszStart
,len
), len
);
1168 if ( (*dwComponentLen
== 0) && (*lppszComponent
== NULL
) )
1171 if (*dwComponentLen
!= 0 || *lppszComponent
== NULL
)
1173 if (*lppszComponent
== NULL
)
1175 *lppszComponent
= (LPWSTR
)lpszStart
;
1176 *dwComponentLen
= len
;
1180 DWORD ncpylen
= min((*dwComponentLen
)-1, len
);
1181 memcpy(*lppszComponent
, lpszStart
, ncpylen
*sizeof(WCHAR
));
1182 (*lppszComponent
)[ncpylen
] = '\0';
1183 *dwComponentLen
= ncpylen
;
1190 /***********************************************************************
1191 * InternetCrackUrlW (WININET.@)
1193 * Break up URL into its components
1199 BOOL WINAPI
InternetCrackUrlW(LPCWSTR lpszUrl_orig
, DWORD dwUrlLength_orig
, DWORD dwFlags
,
1200 LPURL_COMPONENTSW lpUC
)
1204 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1207 LPCWSTR lpszParam
= NULL
;
1208 BOOL bIsAbsolute
= FALSE
;
1209 LPCWSTR lpszap
, lpszUrl
= lpszUrl_orig
;
1210 LPCWSTR lpszcp
= NULL
;
1211 LPWSTR lpszUrl_decode
= NULL
;
1212 DWORD dwUrlLength
= dwUrlLength_orig
;
1213 const WCHAR lpszSeparators
[3]={';','?',0};
1214 const WCHAR lpszSlash
[2]={'/',0};
1216 dwUrlLength
=strlenW(lpszUrl
);
1218 TRACE("(%s %u %x %p)\n", debugstr_w(lpszUrl
), dwUrlLength
, dwFlags
, lpUC
);
1220 if (!lpszUrl_orig
|| !*lpszUrl_orig
)
1222 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1226 if (dwFlags
& ICU_DECODE
)
1228 lpszUrl_decode
=HeapAlloc( GetProcessHeap(), 0, dwUrlLength
* sizeof (WCHAR
) );
1229 if( InternetCanonicalizeUrlW(lpszUrl_orig
, lpszUrl_decode
, &dwUrlLength
, dwFlags
))
1231 lpszUrl
= lpszUrl_decode
;
1236 /* Determine if the URI is absolute. */
1237 while (*lpszap
!= '\0')
1239 if (isalnumW(*lpszap
))
1244 if ((*lpszap
== ':') && (lpszap
- lpszUrl
>= 2))
1251 lpszcp
= lpszUrl
; /* Relative url */
1257 lpUC
->nScheme
= INTERNET_SCHEME_UNKNOWN
;
1258 lpUC
->nPort
= INTERNET_INVALID_PORT_NUMBER
;
1260 /* Parse <params> */
1261 lpszParam
= strpbrkW(lpszap
, lpszSeparators
);
1262 SetUrlComponentValueW(&lpUC
->lpszExtraInfo
, &lpUC
->dwExtraInfoLength
,
1263 lpszParam
, lpszParam
? dwUrlLength
-(lpszParam
-lpszUrl
) : 0);
1265 if (bIsAbsolute
) /* Parse <protocol>:[//<net_loc>] */
1269 /* Get scheme first. */
1270 lpUC
->nScheme
= GetInternetSchemeW(lpszUrl
, lpszcp
- lpszUrl
);
1271 SetUrlComponentValueW(&lpUC
->lpszScheme
, &lpUC
->dwSchemeLength
,
1272 lpszUrl
, lpszcp
- lpszUrl
);
1274 /* Eat ':' in protocol. */
1277 /* double slash indicates the net_loc portion is present */
1278 if ((lpszcp
[0] == '/') && (lpszcp
[1] == '/'))
1282 lpszNetLoc
= strpbrkW(lpszcp
, lpszSlash
);
1286 lpszNetLoc
= min(lpszNetLoc
, lpszParam
);
1288 lpszNetLoc
= lpszParam
;
1290 else if (!lpszNetLoc
)
1291 lpszNetLoc
= lpszcp
+ dwUrlLength
-(lpszcp
-lpszUrl
);
1299 /* [<user>[<:password>]@]<host>[:<port>] */
1300 /* First find the user and password if they exist */
1302 lpszHost
= strchrW(lpszcp
, '@');
1303 if (lpszHost
== NULL
|| lpszHost
> lpszNetLoc
)
1305 /* username and password not specified. */
1306 SetUrlComponentValueW(&lpUC
->lpszUserName
, &lpUC
->dwUserNameLength
, NULL
, 0);
1307 SetUrlComponentValueW(&lpUC
->lpszPassword
, &lpUC
->dwPasswordLength
, NULL
, 0);
1309 else /* Parse out username and password */
1311 LPCWSTR lpszUser
= lpszcp
;
1312 LPCWSTR lpszPasswd
= lpszHost
;
1314 while (lpszcp
< lpszHost
)
1317 lpszPasswd
= lpszcp
;
1322 SetUrlComponentValueW(&lpUC
->lpszUserName
, &lpUC
->dwUserNameLength
,
1323 lpszUser
, lpszPasswd
- lpszUser
);
1325 if (lpszPasswd
!= lpszHost
)
1327 SetUrlComponentValueW(&lpUC
->lpszPassword
, &lpUC
->dwPasswordLength
,
1328 lpszPasswd
== lpszHost
? NULL
: lpszPasswd
,
1329 lpszHost
- lpszPasswd
);
1331 lpszcp
++; /* Advance to beginning of host */
1334 /* Parse <host><:port> */
1337 lpszPort
= lpszNetLoc
;
1339 /* special case for res:// URLs: there is no port here, so the host is the
1340 entire string up to the first '/' */
1341 if(lpUC
->nScheme
==INTERNET_SCHEME_RES
)
1343 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
,
1344 lpszHost
, lpszPort
- lpszHost
);
1349 while (lpszcp
< lpszNetLoc
)
1357 /* If the scheme is "file" and the host is just one letter, it's not a host */
1358 if(lpUC
->nScheme
==INTERNET_SCHEME_FILE
&& (lpszPort
-lpszHost
)==1)
1361 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
,
1366 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
,
1367 lpszHost
, lpszPort
- lpszHost
);
1368 if (lpszPort
!= lpszNetLoc
)
1369 lpUC
->nPort
= atoiW(++lpszPort
);
1370 else switch (lpUC
->nScheme
)
1372 case INTERNET_SCHEME_HTTP
:
1373 lpUC
->nPort
= INTERNET_DEFAULT_HTTP_PORT
;
1375 case INTERNET_SCHEME_HTTPS
:
1376 lpUC
->nPort
= INTERNET_DEFAULT_HTTPS_PORT
;
1378 case INTERNET_SCHEME_FTP
:
1379 lpUC
->nPort
= INTERNET_DEFAULT_FTP_PORT
;
1381 case INTERNET_SCHEME_GOPHER
:
1382 lpUC
->nPort
= INTERNET_DEFAULT_GOPHER_PORT
;
1393 SetUrlComponentValueW(&lpUC
->lpszUserName
, &lpUC
->dwUserNameLength
, NULL
, 0);
1394 SetUrlComponentValueW(&lpUC
->lpszPassword
, &lpUC
->dwPasswordLength
, NULL
, 0);
1395 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
, NULL
, 0);
1400 SetUrlComponentValueW(&lpUC
->lpszScheme
, &lpUC
->dwSchemeLength
, NULL
, 0);
1401 SetUrlComponentValueW(&lpUC
->lpszUserName
, &lpUC
->dwUserNameLength
, NULL
, 0);
1402 SetUrlComponentValueW(&lpUC
->lpszPassword
, &lpUC
->dwPasswordLength
, NULL
, 0);
1403 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
, NULL
, 0);
1406 /* Here lpszcp points to:
1408 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1409 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1411 if (lpszcp
!= 0 && *lpszcp
!= '\0' && (!lpszParam
|| lpszcp
< lpszParam
))
1415 /* Only truncate the parameter list if it's already been saved
1416 * in lpUC->lpszExtraInfo.
1418 if (lpszParam
&& lpUC
->dwExtraInfoLength
&& lpUC
->lpszExtraInfo
)
1419 len
= lpszParam
- lpszcp
;
1422 /* Leave the parameter list in lpszUrlPath. Strip off any trailing
1423 * newlines if necessary.
1425 LPWSTR lpsznewline
= strchrW(lpszcp
, '\n');
1426 if (lpsznewline
!= NULL
)
1427 len
= lpsznewline
- lpszcp
;
1429 len
= dwUrlLength
-(lpszcp
-lpszUrl
);
1431 SetUrlComponentValueW(&lpUC
->lpszUrlPath
, &lpUC
->dwUrlPathLength
,
1436 lpUC
->dwUrlPathLength
= 0;
1439 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl
,dwUrlLength
),
1440 debugstr_wn(lpUC
->lpszScheme
,lpUC
->dwSchemeLength
),
1441 debugstr_wn(lpUC
->lpszHostName
,lpUC
->dwHostNameLength
),
1442 debugstr_wn(lpUC
->lpszUrlPath
,lpUC
->dwUrlPathLength
),
1443 debugstr_wn(lpUC
->lpszExtraInfo
,lpUC
->dwExtraInfoLength
));
1445 HeapFree(GetProcessHeap(), 0, lpszUrl_decode
);
1449 /***********************************************************************
1450 * InternetAttemptConnect (WININET.@)
1452 * Attempt to make a connection to the internet
1455 * ERROR_SUCCESS on success
1456 * Error value on failure
1459 DWORD WINAPI
InternetAttemptConnect(DWORD dwReserved
)
1462 return ERROR_SUCCESS
;
1466 /***********************************************************************
1467 * InternetCanonicalizeUrlA (WININET.@)
1469 * Escape unsafe characters and spaces
1476 BOOL WINAPI
InternetCanonicalizeUrlA(LPCSTR lpszUrl
, LPSTR lpszBuffer
,
1477 LPDWORD lpdwBufferLength
, DWORD dwFlags
)
1480 DWORD dwURLFlags
= 0x80000000; /* Don't know what this means */
1481 if(dwFlags
& ICU_DECODE
)
1483 dwURLFlags
|= URL_UNESCAPE
;
1484 dwFlags
&= ~ICU_DECODE
;
1487 if(dwFlags
& ICU_ESCAPE
)
1489 dwURLFlags
|= URL_UNESCAPE
;
1490 dwFlags
&= ~ICU_ESCAPE
;
1492 if(dwFlags
& ICU_BROWSER_MODE
)
1494 dwURLFlags
|= URL_BROWSER_MODE
;
1495 dwFlags
&= ~ICU_BROWSER_MODE
;
1498 FIXME("Unhandled flags 0x%08x\n", dwFlags
);
1499 TRACE("%s %p %p %08x\n", debugstr_a(lpszUrl
), lpszBuffer
,
1500 lpdwBufferLength
, dwURLFlags
);
1502 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1503 dwFlags
^= ICU_NO_ENCODE
;
1505 hr
= UrlCanonicalizeA(lpszUrl
, lpszBuffer
, lpdwBufferLength
, dwURLFlags
);
1507 return (hr
== S_OK
) ? TRUE
: FALSE
;
1510 /***********************************************************************
1511 * InternetCanonicalizeUrlW (WININET.@)
1513 * Escape unsafe characters and spaces
1520 BOOL WINAPI
InternetCanonicalizeUrlW(LPCWSTR lpszUrl
, LPWSTR lpszBuffer
,
1521 LPDWORD lpdwBufferLength
, DWORD dwFlags
)
1524 DWORD dwURLFlags
= 0x80000000; /* Don't know what this means */
1525 if(dwFlags
& ICU_DECODE
)
1527 dwURLFlags
|= URL_UNESCAPE
;
1528 dwFlags
&= ~ICU_DECODE
;
1531 if(dwFlags
& ICU_ESCAPE
)
1533 dwURLFlags
|= URL_UNESCAPE
;
1534 dwFlags
&= ~ICU_ESCAPE
;
1536 if(dwFlags
& ICU_BROWSER_MODE
)
1538 dwURLFlags
|= URL_BROWSER_MODE
;
1539 dwFlags
&= ~ICU_BROWSER_MODE
;
1542 FIXME("Unhandled flags 0x%08x\n", dwFlags
);
1543 TRACE("%s %p %p %08x\n", debugstr_w(lpszUrl
), lpszBuffer
,
1544 lpdwBufferLength
, dwURLFlags
);
1546 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1547 dwFlags
^= ICU_NO_ENCODE
;
1549 hr
= UrlCanonicalizeW(lpszUrl
, lpszBuffer
, lpdwBufferLength
, dwURLFlags
);
1551 return (hr
== S_OK
) ? TRUE
: FALSE
;
1555 /***********************************************************************
1556 * InternetSetStatusCallbackA (WININET.@)
1558 * Sets up a callback function which is called as progress is made
1559 * during an operation.
1562 * Previous callback or NULL on success
1563 * INTERNET_INVALID_STATUS_CALLBACK on failure
1566 INTERNET_STATUS_CALLBACK WINAPI
InternetSetStatusCallbackA(
1567 HINTERNET hInternet
,INTERNET_STATUS_CALLBACK lpfnIntCB
)
1569 INTERNET_STATUS_CALLBACK retVal
;
1570 LPWININETHANDLEHEADER lpwh
;
1572 TRACE("0x%08x\n", (ULONG
)hInternet
);
1574 lpwh
= WININET_GetObject(hInternet
);
1576 return INTERNET_INVALID_STATUS_CALLBACK
;
1578 lpwh
->dwInternalFlags
&= ~INET_CALLBACKW
;
1579 retVal
= lpwh
->lpfnStatusCB
;
1580 lpwh
->lpfnStatusCB
= lpfnIntCB
;
1582 WININET_Release( lpwh
);
1587 /***********************************************************************
1588 * InternetSetStatusCallbackW (WININET.@)
1590 * Sets up a callback function which is called as progress is made
1591 * during an operation.
1594 * Previous callback or NULL on success
1595 * INTERNET_INVALID_STATUS_CALLBACK on failure
1598 INTERNET_STATUS_CALLBACK WINAPI
InternetSetStatusCallbackW(
1599 HINTERNET hInternet
,INTERNET_STATUS_CALLBACK lpfnIntCB
)
1601 INTERNET_STATUS_CALLBACK retVal
;
1602 LPWININETHANDLEHEADER lpwh
;
1604 TRACE("0x%08x\n", (ULONG
)hInternet
);
1606 lpwh
= WININET_GetObject(hInternet
);
1608 return INTERNET_INVALID_STATUS_CALLBACK
;
1610 lpwh
->dwInternalFlags
|= INET_CALLBACKW
;
1611 retVal
= lpwh
->lpfnStatusCB
;
1612 lpwh
->lpfnStatusCB
= lpfnIntCB
;
1614 WININET_Release( lpwh
);
1619 /***********************************************************************
1620 * InternetSetFilePointer (WININET.@)
1622 DWORD WINAPI
InternetSetFilePointer(HINTERNET hFile
, LONG lDistanceToMove
,
1623 PVOID pReserved
, DWORD dwMoveContext
, DWORD dwContext
)
1629 /***********************************************************************
1630 * InternetWriteFile (WININET.@)
1632 * Write data to an open internet file
1639 BOOL WINAPI
InternetWriteFile(HINTERNET hFile
, LPCVOID lpBuffer
,
1640 DWORD dwNumOfBytesToWrite
, LPDWORD lpdwNumOfBytesWritten
)
1642 BOOL retval
= FALSE
;
1644 LPWININETHANDLEHEADER lpwh
;
1647 lpwh
= (LPWININETHANDLEHEADER
) WININET_GetObject( hFile
);
1651 switch (lpwh
->htype
)
1655 LPWININETHTTPREQW lpwhr
;
1656 lpwhr
= (LPWININETHTTPREQW
)lpwh
;
1658 TRACE("HTTPREQ %i\n",dwNumOfBytesToWrite
);
1659 retval
= NETCON_send(&lpwhr
->netConnection
, lpBuffer
,
1660 dwNumOfBytesToWrite
, 0, (LPINT
)lpdwNumOfBytesWritten
);
1662 WININET_Release( lpwh
);
1668 nSocket
= ((LPWININETFTPFILE
)lpwh
)->nDataSocket
;
1677 int res
= send(nSocket
, lpBuffer
, dwNumOfBytesToWrite
, 0);
1678 retval
= (res
>= 0);
1679 *lpdwNumOfBytesWritten
= retval
? res
: 0;
1681 WININET_Release( lpwh
);
1687 BOOL
INTERNET_ReadFile(LPWININETHANDLEHEADER lpwh
, LPVOID lpBuffer
,
1688 DWORD dwNumOfBytesToRead
, LPDWORD pdwNumOfBytesRead
,
1689 BOOL bWait
, BOOL bSendCompletionStatus
)
1691 BOOL retval
= FALSE
;
1694 LPWININETHTTPREQW lpwhr
;
1696 /* FIXME: this should use NETCON functions! */
1697 switch (lpwh
->htype
)
1700 lpwhr
= (LPWININETHTTPREQW
)lpwh
;
1702 if (!NETCON_recv(&lpwhr
->netConnection
, lpBuffer
,
1703 min(dwNumOfBytesToRead
, lpwhr
->dwContentLength
- lpwhr
->dwContentRead
),
1704 bWait
? MSG_WAITALL
: 0, &bytes_read
))
1707 if (((lpwhr
->dwContentLength
!= -1) &&
1708 (lpwhr
->dwContentRead
!= lpwhr
->dwContentLength
)))
1709 ERR("not all data received %d/%d\n", lpwhr
->dwContentRead
,
1710 lpwhr
->dwContentLength
);
1712 /* always returns TRUE, even if the network layer returns an
1714 *pdwNumOfBytesRead
= 0;
1715 HTTP_FinishedReading(lpwhr
);
1720 lpwhr
->dwContentRead
+= bytes_read
;
1721 *pdwNumOfBytesRead
= bytes_read
;
1723 retval
= HTTP_FinishedReading(lpwhr
);
1730 /* FIXME: FTP should use NETCON_ stuff */
1731 nSocket
= ((LPWININETFTPFILE
)lpwh
)->nDataSocket
;
1734 int res
= recv(nSocket
, lpBuffer
, dwNumOfBytesToRead
, bWait
? MSG_WAITALL
: 0);
1735 retval
= (res
>= 0);
1736 *pdwNumOfBytesRead
= retval
? res
: 0;
1744 if (bSendCompletionStatus
)
1746 INTERNET_ASYNC_RESULT iar
;
1748 iar
.dwResult
= retval
;
1749 iar
.dwError
= iar
.dwError
= retval
? ERROR_SUCCESS
:
1750 INTERNET_GetLastError();
1752 INTERNET_SendCallback(lpwh
, lpwh
->dwContext
,
1753 INTERNET_STATUS_REQUEST_COMPLETE
, &iar
,
1754 sizeof(INTERNET_ASYNC_RESULT
));
1759 /***********************************************************************
1760 * InternetReadFile (WININET.@)
1762 * Read data from an open internet file
1769 BOOL WINAPI
InternetReadFile(HINTERNET hFile
, LPVOID lpBuffer
,
1770 DWORD dwNumOfBytesToRead
, LPDWORD pdwNumOfBytesRead
)
1772 LPWININETHANDLEHEADER lpwh
;
1775 TRACE("%p %p %d %p\n", hFile
, lpBuffer
, dwNumOfBytesToRead
, pdwNumOfBytesRead
);
1777 lpwh
= WININET_GetObject( hFile
);
1780 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
1784 retval
= INTERNET_ReadFile(lpwh
, lpBuffer
, dwNumOfBytesToRead
, pdwNumOfBytesRead
, TRUE
, FALSE
);
1785 WININET_Release( lpwh
);
1787 TRACE("-- %s (bytes read: %d)\n", retval
? "TRUE": "FALSE", pdwNumOfBytesRead
? *pdwNumOfBytesRead
: -1);
1791 /***********************************************************************
1792 * InternetReadFileExA (WININET.@)
1794 * Read data from an open internet file
1797 * hFile [I] Handle returned by InternetOpenUrl or HttpOpenRequest.
1798 * lpBuffersOut [I/O] Buffer.
1799 * dwFlags [I] Flags. See notes.
1800 * dwContext [I] Context for callbacks.
1807 * The parameter dwFlags include zero or more of the following flags:
1808 *|IRF_ASYNC - Makes the call asynchronous.
1809 *|IRF_SYNC - Makes the call synchronous.
1810 *|IRF_USE_CONTEXT - Forces dwContext to be used.
1811 *|IRF_NO_WAIT - Don't block if the data is not available, just return what is available.
1813 * However, in testing IRF_USE_CONTEXT seems to have no effect - dwContext isn't used.
1816 * InternetOpenUrlA(), HttpOpenRequestA()
1818 void AsyncInternetReadFileExProc(WORKREQUEST
*workRequest
)
1820 struct WORKREQ_INTERNETREADFILEEXA
const *req
= &workRequest
->u
.InternetReadFileExA
;
1822 TRACE("INTERNETREADFILEEXA %p\n", workRequest
->hdr
);
1824 INTERNET_ReadFile(workRequest
->hdr
, req
->lpBuffersOut
->lpvBuffer
,
1825 req
->lpBuffersOut
->dwBufferLength
,
1826 &req
->lpBuffersOut
->dwBufferLength
, TRUE
, TRUE
);
1829 BOOL WINAPI
InternetReadFileExA(HINTERNET hFile
, LPINTERNET_BUFFERSA lpBuffersOut
,
1830 DWORD dwFlags
, DWORD dwContext
)
1832 BOOL retval
= FALSE
;
1833 LPWININETHANDLEHEADER lpwh
;
1835 TRACE("(%p %p 0x%x 0x%x)\n", hFile
, lpBuffersOut
, dwFlags
, dwContext
);
1837 if (dwFlags
& ~(IRF_ASYNC
|IRF_NO_WAIT
))
1838 FIXME("these dwFlags aren't implemented: 0x%x\n", dwFlags
& ~(IRF_ASYNC
|IRF_NO_WAIT
));
1840 if (lpBuffersOut
->dwStructSize
!= sizeof(*lpBuffersOut
))
1842 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1846 lpwh
= (LPWININETHANDLEHEADER
) WININET_GetObject( hFile
);
1849 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
1853 /* FIXME: native only does it asynchronously if the amount of data
1854 * requested isn't available. See NtReadFile. */
1855 /* FIXME: IRF_ASYNC may not be the right thing to test here;
1856 * hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC is probably better, but
1857 * we should implement the above first */
1858 if (dwFlags
& IRF_ASYNC
)
1860 WORKREQUEST workRequest
;
1861 struct WORKREQ_INTERNETREADFILEEXA
*req
;
1863 workRequest
.asyncproc
= AsyncInternetReadFileExProc
;
1864 workRequest
.hdr
= WININET_AddRef( lpwh
);
1865 req
= &workRequest
.u
.InternetReadFileExA
;
1866 req
->lpBuffersOut
= lpBuffersOut
;
1868 retval
= INTERNET_AsyncCall(&workRequest
);
1869 if (!retval
) return FALSE
;
1871 INTERNET_SetLastError(ERROR_IO_PENDING
);
1875 retval
= INTERNET_ReadFile(lpwh
, lpBuffersOut
->lpvBuffer
,
1876 lpBuffersOut
->dwBufferLength
, &lpBuffersOut
->dwBufferLength
,
1877 !(dwFlags
& IRF_NO_WAIT
), FALSE
);
1879 WININET_Release( lpwh
);
1881 TRACE("-- %s (bytes read: %d)\n", retval
? "TRUE": "FALSE", lpBuffersOut
->dwBufferLength
);
1885 /***********************************************************************
1886 * InternetReadFileExW (WININET.@)
1888 * Read data from an open internet file.
1891 * hFile [I] Handle returned by InternetOpenUrl() or HttpOpenRequest().
1892 * lpBuffersOut [I/O] Buffer.
1893 * dwFlags [I] Flags.
1894 * dwContext [I] Context for callbacks.
1897 * FALSE, last error is set to ERROR_CALL_NOT_IMPLEMENTED
1900 * Not implemented in Wine or native either (as of IE6 SP2).
1903 BOOL WINAPI
InternetReadFileExW(HINTERNET hFile
, LPINTERNET_BUFFERSW lpBuffer
,
1904 DWORD dwFlags
, DWORD dwContext
)
1906 ERR("(%p, %p, 0x%x, 0x%x): not implemented in native\n", hFile
, lpBuffer
, dwFlags
, dwContext
);
1908 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
1912 /***********************************************************************
1913 * INET_QueryOptionHelper (internal)
1915 static BOOL
INET_QueryOptionHelper(BOOL bIsUnicode
, HINTERNET hInternet
, DWORD dwOption
,
1916 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
)
1918 LPWININETHANDLEHEADER lpwhh
;
1919 BOOL bSuccess
= FALSE
;
1921 TRACE("(%p, 0x%08x, %p, %p)\n", hInternet
, dwOption
, lpBuffer
, lpdwBufferLength
);
1923 lpwhh
= (LPWININETHANDLEHEADER
) WININET_GetObject( hInternet
);
1926 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1932 case INTERNET_OPTION_HANDLE_TYPE
:
1938 WARN("Invalid hInternet handle\n");
1939 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
1943 type
= lpwhh
->htype
;
1945 TRACE("INTERNET_OPTION_HANDLE_TYPE: %d\n", type
);
1947 if (*lpdwBufferLength
< sizeof(ULONG
))
1948 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1951 memcpy(lpBuffer
, &type
, sizeof(ULONG
));
1954 *lpdwBufferLength
= sizeof(ULONG
);
1958 case INTERNET_OPTION_REQUEST_FLAGS
:
1961 TRACE("INTERNET_OPTION_REQUEST_FLAGS: %d\n", flags
);
1962 if (*lpdwBufferLength
< sizeof(ULONG
))
1963 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
1966 memcpy(lpBuffer
, &flags
, sizeof(ULONG
));
1969 *lpdwBufferLength
= sizeof(ULONG
);
1973 case INTERNET_OPTION_URL
:
1974 case INTERNET_OPTION_DATAFILE_NAME
:
1978 WARN("Invalid hInternet handle\n");
1979 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
1982 if (lpwhh
->htype
== WH_HHTTPREQ
)
1984 LPWININETHTTPREQW lpreq
= (LPWININETHTTPREQW
) lpwhh
;
1986 static const WCHAR szFmt
[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
1987 static const WCHAR szHost
[] = {'H','o','s','t',0};
1991 Host
= HTTP_GetHeader(lpreq
,szHost
);
1992 sprintfW(url
,szFmt
,Host
->lpszValue
,lpreq
->lpszPath
);
1993 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url
));
1996 sizeRequired
= WideCharToMultiByte(CP_ACP
,0,url
,-1,
1997 lpBuffer
,*lpdwBufferLength
,NULL
,NULL
);
1998 if (sizeRequired
> *lpdwBufferLength
)
1999 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2002 *lpdwBufferLength
= sizeRequired
;
2006 sizeRequired
= (lstrlenW(url
)+1) * sizeof(WCHAR
);
2007 if (*lpdwBufferLength
< sizeRequired
)
2008 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2011 strcpyW(lpBuffer
, url
);
2014 *lpdwBufferLength
= sizeRequired
;
2019 case INTERNET_OPTION_HTTP_VERSION
:
2021 if (*lpdwBufferLength
< sizeof(HTTP_VERSION_INFO
))
2022 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2026 * Presently hardcoded to 1.1
2028 ((HTTP_VERSION_INFO
*)lpBuffer
)->dwMajorVersion
= 1;
2029 ((HTTP_VERSION_INFO
*)lpBuffer
)->dwMinorVersion
= 1;
2032 *lpdwBufferLength
= sizeof(HTTP_VERSION_INFO
);
2035 case INTERNET_OPTION_CONNECTED_STATE
:
2037 DWORD
*pdwConnectedState
= (DWORD
*)lpBuffer
;
2038 FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
2040 if (*lpdwBufferLength
< sizeof(*pdwConnectedState
))
2041 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2044 *pdwConnectedState
= INTERNET_STATE_CONNECTED
;
2047 *lpdwBufferLength
= sizeof(*pdwConnectedState
);
2050 case INTERNET_OPTION_PROXY
:
2052 LPWININETAPPINFOW lpwai
= (LPWININETAPPINFOW
)lpwhh
;
2053 WININETAPPINFOW wai
;
2057 TRACE("Getting global proxy info\n");
2058 memset(&wai
, 0, sizeof(WININETAPPINFOW
));
2059 INTERNET_ConfigureProxyFromReg( &wai
);
2065 INTERNET_PROXY_INFOW
*pPI
= (INTERNET_PROXY_INFOW
*)lpBuffer
;
2066 DWORD proxyBytesRequired
= 0, proxyBypassBytesRequired
= 0;
2068 if (lpwai
->lpszProxy
)
2069 proxyBytesRequired
= (lstrlenW(lpwai
->lpszProxy
) + 1) *
2071 if (lpwai
->lpszProxyBypass
)
2072 proxyBypassBytesRequired
=
2073 (lstrlenW(lpwai
->lpszProxyBypass
) + 1) * sizeof(WCHAR
);
2074 if (*lpdwBufferLength
< sizeof(INTERNET_PROXY_INFOW
) +
2075 proxyBytesRequired
+ proxyBypassBytesRequired
)
2076 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2079 LPWSTR proxy
= (LPWSTR
)((LPBYTE
)lpBuffer
+
2080 sizeof(INTERNET_PROXY_INFOW
));
2081 LPWSTR proxy_bypass
= (LPWSTR
)((LPBYTE
)lpBuffer
+
2082 sizeof(INTERNET_PROXY_INFOW
) +
2083 proxyBytesRequired
);
2085 pPI
->dwAccessType
= lpwai
->dwAccessType
;
2086 if (lpwai
->lpszProxy
)
2088 lstrcpyW(proxy
, lpwai
->lpszProxy
);
2094 pPI
->lpszProxy
= proxy
;
2096 if (lpwai
->lpszProxyBypass
)
2098 lstrcpyW(proxy_bypass
, lpwai
->lpszProxyBypass
);
2104 pPI
->lpszProxyBypass
= proxy_bypass
;
2107 *lpdwBufferLength
= sizeof(INTERNET_PROXY_INFOW
) +
2108 proxyBytesRequired
+ proxyBypassBytesRequired
;
2112 INTERNET_PROXY_INFOA
*pPI
= (INTERNET_PROXY_INFOA
*)lpBuffer
;
2113 DWORD proxyBytesRequired
= 0, proxyBypassBytesRequired
= 0;
2115 if (lpwai
->lpszProxy
)
2116 proxyBytesRequired
= WideCharToMultiByte(CP_ACP
, 0,
2117 lpwai
->lpszProxy
, -1, NULL
, 0, NULL
, NULL
);
2118 if (lpwai
->lpszProxyBypass
)
2119 proxyBypassBytesRequired
= WideCharToMultiByte(CP_ACP
, 0,
2120 lpwai
->lpszProxyBypass
, -1, NULL
, 0, NULL
, NULL
);
2121 if (*lpdwBufferLength
< sizeof(INTERNET_PROXY_INFOA
) +
2122 proxyBytesRequired
+ proxyBypassBytesRequired
)
2123 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2126 LPSTR proxy
= (LPSTR
)((LPBYTE
)lpBuffer
+
2127 sizeof(INTERNET_PROXY_INFOA
));
2128 LPSTR proxy_bypass
= (LPSTR
)((LPBYTE
)lpBuffer
+
2129 sizeof(INTERNET_PROXY_INFOA
) +
2130 proxyBytesRequired
);
2132 pPI
->dwAccessType
= lpwai
->dwAccessType
;
2133 if (lpwai
->lpszProxy
)
2135 WideCharToMultiByte(CP_ACP
, 0, lpwai
->lpszProxy
, -1,
2136 proxy
, proxyBytesRequired
, NULL
, NULL
);
2142 pPI
->lpszProxy
= proxy
;
2144 if (lpwai
->lpszProxyBypass
)
2146 WideCharToMultiByte(CP_ACP
, 0, lpwai
->lpszProxyBypass
,
2147 -1, proxy_bypass
, proxyBypassBytesRequired
,
2152 *proxy_bypass
= '\0';
2154 pPI
->lpszProxyBypass
= proxy_bypass
;
2157 *lpdwBufferLength
= sizeof(INTERNET_PROXY_INFOA
) +
2158 proxyBytesRequired
+ proxyBypassBytesRequired
;
2162 case INTERNET_OPTION_MAX_CONNS_PER_SERVER
:
2165 TRACE("INTERNET_OPTION_MAX_CONNS_PER_SERVER: %d\n", conn
);
2166 if (*lpdwBufferLength
< sizeof(ULONG
))
2167 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2170 memcpy(lpBuffer
, &conn
, sizeof(ULONG
));
2173 *lpdwBufferLength
= sizeof(ULONG
);
2176 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER
:
2179 TRACE("INTERNET_OPTION_MAX_CONNS_1_0_SERVER: %d\n", conn
);
2180 if (*lpdwBufferLength
< sizeof(ULONG
))
2181 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2184 memcpy(lpBuffer
, &conn
, sizeof(ULONG
));
2187 *lpdwBufferLength
= sizeof(ULONG
);
2190 case INTERNET_OPTION_SECURITY_FLAGS
:
2191 FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
2194 case INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT
:
2195 if (*lpdwBufferLength
< sizeof(INTERNET_CERTIFICATE_INFOW
))
2197 *lpdwBufferLength
= sizeof(INTERNET_CERTIFICATE_INFOW
);
2198 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2200 else if (lpwhh
->htype
== WH_HHTTPREQ
)
2202 LPWININETHTTPREQW lpwhr
;
2203 PCCERT_CONTEXT context
;
2205 lpwhr
= (LPWININETHTTPREQW
)lpwhh
;
2206 context
= (PCCERT_CONTEXT
)NETCON_GetCert(&(lpwhr
->netConnection
));
2209 LPINTERNET_CERTIFICATE_INFOW info
= (LPINTERNET_CERTIFICATE_INFOW
)lpBuffer
;
2212 memset(info
,0,sizeof(INTERNET_CERTIFICATE_INFOW
));
2213 info
->ftExpiry
= context
->pCertInfo
->NotAfter
;
2214 info
->ftStart
= context
->pCertInfo
->NotBefore
;
2217 strLen
= CertNameToStrW(context
->dwCertEncodingType
,
2218 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
,
2220 info
->lpszSubjectInfo
= LocalAlloc(0,
2221 strLen
* sizeof(WCHAR
));
2222 if (info
->lpszSubjectInfo
)
2223 CertNameToStrW(context
->dwCertEncodingType
,
2224 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
,
2225 info
->lpszSubjectInfo
, strLen
);
2226 strLen
= CertNameToStrW(context
->dwCertEncodingType
,
2227 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
,
2229 info
->lpszIssuerInfo
= LocalAlloc(0,
2230 strLen
* sizeof(WCHAR
));
2231 if (info
->lpszIssuerInfo
)
2232 CertNameToStrW(context
->dwCertEncodingType
,
2233 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
,
2234 info
->lpszIssuerInfo
, strLen
);
2238 LPINTERNET_CERTIFICATE_INFOA infoA
=
2239 (LPINTERNET_CERTIFICATE_INFOA
)info
;
2241 strLen
= CertNameToStrA(context
->dwCertEncodingType
,
2242 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
,
2244 infoA
->lpszSubjectInfo
= LocalAlloc(0, strLen
);
2245 if (infoA
->lpszSubjectInfo
)
2246 CertNameToStrA(context
->dwCertEncodingType
,
2247 &context
->pCertInfo
->Subject
, CERT_SIMPLE_NAME_STR
,
2248 infoA
->lpszSubjectInfo
, strLen
);
2249 strLen
= CertNameToStrA(context
->dwCertEncodingType
,
2250 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
,
2252 infoA
->lpszIssuerInfo
= LocalAlloc(0, strLen
);
2253 if (infoA
->lpszIssuerInfo
)
2254 CertNameToStrA(context
->dwCertEncodingType
,
2255 &context
->pCertInfo
->Issuer
, CERT_SIMPLE_NAME_STR
,
2256 infoA
->lpszIssuerInfo
, strLen
);
2259 * Contrary to MSDN, these do not appear to be set.
2261 * lpszSignatureAlgName
2262 * lpszEncryptionAlgName
2265 CertFreeCertificateContext(context
);
2271 FIXME("Stub! %d\n", dwOption
);
2275 WININET_Release( lpwhh
);
2280 /***********************************************************************
2281 * InternetQueryOptionW (WININET.@)
2283 * Queries an options on the specified handle
2290 BOOL WINAPI
InternetQueryOptionW(HINTERNET hInternet
, DWORD dwOption
,
2291 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
)
2293 return INET_QueryOptionHelper(TRUE
, hInternet
, dwOption
, lpBuffer
, lpdwBufferLength
);
2296 /***********************************************************************
2297 * InternetQueryOptionA (WININET.@)
2299 * Queries an options on the specified handle
2306 BOOL WINAPI
InternetQueryOptionA(HINTERNET hInternet
, DWORD dwOption
,
2307 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
)
2309 return INET_QueryOptionHelper(FALSE
, hInternet
, dwOption
, lpBuffer
, lpdwBufferLength
);
2313 /***********************************************************************
2314 * InternetSetOptionW (WININET.@)
2316 * Sets an options on the specified handle
2323 BOOL WINAPI
InternetSetOptionW(HINTERNET hInternet
, DWORD dwOption
,
2324 LPVOID lpBuffer
, DWORD dwBufferLength
)
2326 LPWININETHANDLEHEADER lpwhh
;
2329 TRACE("0x%08x\n", dwOption
);
2331 lpwhh
= (LPWININETHANDLEHEADER
) WININET_GetObject( hInternet
);
2337 case INTERNET_OPTION_HTTP_VERSION
:
2339 HTTP_VERSION_INFO
* pVersion
=(HTTP_VERSION_INFO
*)lpBuffer
;
2340 FIXME("Option INTERNET_OPTION_HTTP_VERSION(%d,%d): STUB\n",pVersion
->dwMajorVersion
,pVersion
->dwMinorVersion
);
2343 case INTERNET_OPTION_ERROR_MASK
:
2345 unsigned long flags
=*(unsigned long*)lpBuffer
;
2346 FIXME("Option INTERNET_OPTION_ERROR_MASK(%ld): STUB\n",flags
);
2349 case INTERNET_OPTION_CODEPAGE
:
2351 unsigned long codepage
=*(unsigned long*)lpBuffer
;
2352 FIXME("Option INTERNET_OPTION_CODEPAGE (%ld): STUB\n",codepage
);
2355 case INTERNET_OPTION_REQUEST_PRIORITY
:
2357 unsigned long priority
=*(unsigned long*)lpBuffer
;
2358 FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%ld): STUB\n",priority
);
2361 case INTERNET_OPTION_CONNECT_TIMEOUT
:
2363 unsigned long connecttimeout
=*(unsigned long*)lpBuffer
;
2364 FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%ld): STUB\n",connecttimeout
);
2367 case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT
:
2369 unsigned long receivetimeout
=*(unsigned long*)lpBuffer
;
2370 FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%ld): STUB\n",receivetimeout
);
2373 case INTERNET_OPTION_MAX_CONNS_PER_SERVER
:
2375 unsigned long conns
=*(unsigned long*)lpBuffer
;
2376 FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_SERVER (%ld): STUB\n",conns
);
2379 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER
:
2381 unsigned long conns
=*(unsigned long*)lpBuffer
;
2382 FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER (%ld): STUB\n",conns
);
2385 case INTERNET_OPTION_RESET_URLCACHE_SESSION
:
2386 FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
2388 case INTERNET_OPTION_END_BROWSER_SESSION
:
2389 FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
2391 case INTERNET_OPTION_CONNECTED_STATE
:
2392 FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
2394 case INTERNET_OPTION_DISABLE_PASSPORT_AUTH
:
2395 TRACE("Option INTERNET_OPTION_DISABLE_PASSPORT_AUTH: harmless stub, since not enabled\n");
2397 case INTERNET_OPTION_SEND_TIMEOUT
:
2398 case INTERNET_OPTION_RECEIVE_TIMEOUT
:
2399 TRACE("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT\n");
2400 if (dwBufferLength
== sizeof(DWORD
))
2402 if (lpwhh
->htype
== WH_HHTTPREQ
)
2403 ret
= NETCON_set_timeout(
2404 &((LPWININETHTTPREQW
)lpwhh
)->netConnection
,
2405 dwOption
== INTERNET_OPTION_SEND_TIMEOUT
,
2406 *(DWORD
*)lpBuffer
);
2409 FIXME("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT not supported on protocol %d\n",
2415 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
2419 case INTERNET_OPTION_CONNECT_RETRIES
:
2420 FIXME("Option INTERNET_OPTION_CONNECT_RETRIES: STUB\n");
2422 case INTERNET_OPTION_CONTEXT_VALUE
:
2423 FIXME("Option INTERNET_OPTION_CONTEXT_VALUE; STUB\n");
2425 case INTERNET_OPTION_SECURITY_FLAGS
:
2426 FIXME("Option INTERNET_OPTION_SECURITY_FLAGS; STUB\n");
2429 FIXME("Option %d STUB\n",dwOption
);
2430 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
2434 WININET_Release( lpwhh
);
2440 /***********************************************************************
2441 * InternetSetOptionA (WININET.@)
2443 * Sets an options on the specified handle.
2450 BOOL WINAPI
InternetSetOptionA(HINTERNET hInternet
, DWORD dwOption
,
2451 LPVOID lpBuffer
, DWORD dwBufferLength
)
2459 case INTERNET_OPTION_PROXY
:
2461 LPINTERNET_PROXY_INFOA pi
= (LPINTERNET_PROXY_INFOA
) lpBuffer
;
2462 LPINTERNET_PROXY_INFOW piw
;
2463 DWORD proxlen
, prbylen
;
2466 proxlen
= MultiByteToWideChar( CP_ACP
, 0, pi
->lpszProxy
, -1, NULL
, 0);
2467 prbylen
= MultiByteToWideChar( CP_ACP
, 0, pi
->lpszProxyBypass
, -1, NULL
, 0);
2468 wlen
= sizeof(*piw
) + proxlen
+ prbylen
;
2469 wbuffer
= HeapAlloc( GetProcessHeap(), 0, wlen
*sizeof(WCHAR
) );
2470 piw
= (LPINTERNET_PROXY_INFOW
) wbuffer
;
2471 piw
->dwAccessType
= pi
->dwAccessType
;
2472 prox
= (LPWSTR
) &piw
[1];
2473 prby
= &prox
[proxlen
+1];
2474 MultiByteToWideChar( CP_ACP
, 0, pi
->lpszProxy
, -1, prox
, proxlen
);
2475 MultiByteToWideChar( CP_ACP
, 0, pi
->lpszProxyBypass
, -1, prby
, prbylen
);
2476 piw
->lpszProxy
= prox
;
2477 piw
->lpszProxyBypass
= prby
;
2480 case INTERNET_OPTION_USER_AGENT
:
2481 case INTERNET_OPTION_USERNAME
:
2482 case INTERNET_OPTION_PASSWORD
:
2483 wlen
= MultiByteToWideChar( CP_ACP
, 0, lpBuffer
, dwBufferLength
,
2485 wbuffer
= HeapAlloc( GetProcessHeap(), 0, wlen
*sizeof(WCHAR
) );
2486 MultiByteToWideChar( CP_ACP
, 0, lpBuffer
, dwBufferLength
,
2491 wlen
= dwBufferLength
;
2494 r
= InternetSetOptionW(hInternet
,dwOption
, wbuffer
, wlen
);
2496 if( lpBuffer
!= wbuffer
)
2497 HeapFree( GetProcessHeap(), 0, wbuffer
);
2503 /***********************************************************************
2504 * InternetSetOptionExA (WININET.@)
2506 BOOL WINAPI
InternetSetOptionExA(HINTERNET hInternet
, DWORD dwOption
,
2507 LPVOID lpBuffer
, DWORD dwBufferLength
, DWORD dwFlags
)
2509 FIXME("Flags %08x ignored\n", dwFlags
);
2510 return InternetSetOptionA( hInternet
, dwOption
, lpBuffer
, dwBufferLength
);
2513 /***********************************************************************
2514 * InternetSetOptionExW (WININET.@)
2516 BOOL WINAPI
InternetSetOptionExW(HINTERNET hInternet
, DWORD dwOption
,
2517 LPVOID lpBuffer
, DWORD dwBufferLength
, DWORD dwFlags
)
2519 FIXME("Flags %08x ignored\n", dwFlags
);
2520 if( dwFlags
& ~ISO_VALID_FLAGS
)
2522 INTERNET_SetLastError( ERROR_INVALID_PARAMETER
);
2525 return InternetSetOptionW( hInternet
, dwOption
, lpBuffer
, dwBufferLength
);
2528 static const WCHAR WININET_wkday
[7][4] =
2529 { { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
2530 { 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
2531 static const WCHAR WININET_month
[12][4] =
2532 { { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
2533 { 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
2534 { 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
2536 /***********************************************************************
2537 * InternetTimeFromSystemTimeA (WININET.@)
2539 BOOL WINAPI
InternetTimeFromSystemTimeA( const SYSTEMTIME
* time
, DWORD format
, LPSTR string
, DWORD size
)
2542 WCHAR stringW
[INTERNET_RFC1123_BUFSIZE
];
2544 TRACE( "%p 0x%08x %p 0x%08x\n", time
, format
, string
, size
);
2546 ret
= InternetTimeFromSystemTimeW( time
, format
, stringW
, sizeof(stringW
) );
2547 if (ret
) WideCharToMultiByte( CP_ACP
, 0, stringW
, -1, string
, size
, NULL
, NULL
);
2552 /***********************************************************************
2553 * InternetTimeFromSystemTimeW (WININET.@)
2555 BOOL WINAPI
InternetTimeFromSystemTimeW( const SYSTEMTIME
* time
, DWORD format
, LPWSTR string
, DWORD size
)
2557 static const WCHAR date
[] =
2558 { '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
2559 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
2561 TRACE( "%p 0x%08x %p 0x%08x\n", time
, format
, string
, size
);
2563 if (!time
|| !string
) return FALSE
;
2565 if (format
!= INTERNET_RFC1123_FORMAT
|| size
< INTERNET_RFC1123_BUFSIZE
* sizeof(WCHAR
))
2568 sprintfW( string
, date
,
2569 WININET_wkday
[time
->wDayOfWeek
],
2571 WININET_month
[time
->wMonth
- 1],
2580 /***********************************************************************
2581 * InternetTimeToSystemTimeA (WININET.@)
2583 BOOL WINAPI
InternetTimeToSystemTimeA( LPCSTR string
, SYSTEMTIME
* time
, DWORD reserved
)
2589 TRACE( "%s %p 0x%08x\n", debugstr_a(string
), time
, reserved
);
2591 len
= MultiByteToWideChar( CP_ACP
, 0, string
, -1, NULL
, 0 );
2592 stringW
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
2596 MultiByteToWideChar( CP_ACP
, 0, string
, -1, stringW
, len
);
2597 ret
= InternetTimeToSystemTimeW( stringW
, time
, reserved
);
2598 HeapFree( GetProcessHeap(), 0, stringW
);
2603 /***********************************************************************
2604 * InternetTimeToSystemTimeW (WININET.@)
2606 BOOL WINAPI
InternetTimeToSystemTimeW( LPCWSTR string
, SYSTEMTIME
* time
, DWORD reserved
)
2609 const WCHAR
*s
= string
;
2612 TRACE( "%s %p 0x%08x\n", debugstr_w(string
), time
, reserved
);
2614 if (!string
|| !time
) return FALSE
;
2616 /* Windows does this too */
2617 GetSystemTime( time
);
2619 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
2620 * a SYSTEMTIME structure.
2623 while (*s
&& !isalphaW( *s
)) s
++;
2624 if (s
[0] == '\0' || s
[1] == '\0' || s
[2] == '\0') return TRUE
;
2625 time
->wDayOfWeek
= 7;
2627 for (i
= 0; i
< 7; i
++)
2629 if (toupperW( WININET_wkday
[i
][0] ) == toupperW( s
[0] ) &&
2630 toupperW( WININET_wkday
[i
][1] ) == toupperW( s
[1] ) &&
2631 toupperW( WININET_wkday
[i
][2] ) == toupperW( s
[2] ) )
2633 time
->wDayOfWeek
= i
;
2638 if (time
->wDayOfWeek
> 6) return TRUE
;
2639 while (*s
&& !isdigitW( *s
)) s
++;
2640 time
->wDay
= strtolW( s
, &end
, 10 );
2643 while (*s
&& !isalphaW( *s
)) s
++;
2644 if (s
[0] == '\0' || s
[1] == '\0' || s
[2] == '\0') return TRUE
;
2647 for (i
= 0; i
< 12; i
++)
2649 if (toupperW( WININET_month
[i
][0]) == toupperW( s
[0] ) &&
2650 toupperW( WININET_month
[i
][1]) == toupperW( s
[1] ) &&
2651 toupperW( WININET_month
[i
][2]) == toupperW( s
[2] ) )
2653 time
->wMonth
= i
+ 1;
2657 if (time
->wMonth
== 0) return TRUE
;
2659 while (*s
&& !isdigitW( *s
)) s
++;
2660 if (*s
== '\0') return TRUE
;
2661 time
->wYear
= strtolW( s
, &end
, 10 );
2664 while (*s
&& !isdigitW( *s
)) s
++;
2665 if (*s
== '\0') return TRUE
;
2666 time
->wHour
= strtolW( s
, &end
, 10 );
2669 while (*s
&& !isdigitW( *s
)) s
++;
2670 if (*s
== '\0') return TRUE
;
2671 time
->wMinute
= strtolW( s
, &end
, 10 );
2674 while (*s
&& !isdigitW( *s
)) s
++;
2675 if (*s
== '\0') return TRUE
;
2676 time
->wSecond
= strtolW( s
, &end
, 10 );
2679 time
->wMilliseconds
= 0;
2683 /***********************************************************************
2684 * InternetCheckConnectionW (WININET.@)
2686 * Pings a requested host to check internet connection
2689 * TRUE on success and FALSE on failure. If a failure then
2690 * ERROR_NOT_CONNECTED is placed into GetLastError
2693 BOOL WINAPI
InternetCheckConnectionW( LPCWSTR lpszUrl
, DWORD dwFlags
, DWORD dwReserved
)
2696 * this is a kludge which runs the resident ping program and reads the output.
2698 * Anyone have a better idea?
2702 static const CHAR ping
[] = "ping -c 1 ";
2703 static const CHAR redirect
[] = " >/dev/null 2>/dev/null";
2704 CHAR
*command
= NULL
;
2712 * Crack or set the Address
2714 if (lpszUrl
== NULL
)
2717 * According to the doc we are supost to use the ip for the next
2718 * server in the WnInet internal server database. I have
2719 * no idea what that is or how to get it.
2721 * So someone needs to implement this.
2723 FIXME("Unimplemented with URL of NULL\n");
2728 URL_COMPONENTSW components
;
2730 ZeroMemory(&components
,sizeof(URL_COMPONENTSW
));
2731 components
.lpszHostName
= (LPWSTR
)&hostW
;
2732 components
.dwHostNameLength
= 1024;
2734 if (!InternetCrackUrlW(lpszUrl
,0,0,&components
))
2737 TRACE("host name : %s\n",debugstr_w(components
.lpszHostName
));
2741 * Build our ping command
2743 len
= WideCharToMultiByte(CP_UNIXCP
, 0, hostW
, -1, NULL
, 0, NULL
, NULL
);
2744 command
= HeapAlloc( GetProcessHeap(), 0, strlen(ping
)+len
+strlen(redirect
) );
2745 strcpy(command
,ping
);
2746 WideCharToMultiByte(CP_UNIXCP
, 0, hostW
, -1, command
+strlen(ping
), len
, NULL
, NULL
);
2747 strcat(command
,redirect
);
2749 TRACE("Ping command is : %s\n",command
);
2751 status
= system(command
);
2753 TRACE("Ping returned a code of %i\n",status
);
2755 /* Ping return code of 0 indicates success */
2761 HeapFree( GetProcessHeap(), 0, command
);
2763 INTERNET_SetLastError(ERROR_NOT_CONNECTED
);
2769 /***********************************************************************
2770 * InternetCheckConnectionA (WININET.@)
2772 * Pings a requested host to check internet connection
2775 * TRUE on success and FALSE on failure. If a failure then
2776 * ERROR_NOT_CONNECTED is placed into GetLastError
2779 BOOL WINAPI
InternetCheckConnectionA(LPCSTR lpszUrl
, DWORD dwFlags
, DWORD dwReserved
)
2785 len
= MultiByteToWideChar(CP_ACP
, 0, lpszUrl
, -1, NULL
, 0);
2786 if (!(szUrl
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
))))
2788 MultiByteToWideChar(CP_ACP
, 0, lpszUrl
, -1, szUrl
, len
);
2789 rc
= InternetCheckConnectionW(szUrl
, dwFlags
, dwReserved
);
2790 HeapFree(GetProcessHeap(), 0, szUrl
);
2796 /**********************************************************
2797 * INTERNET_InternetOpenUrlW (internal)
2802 * handle of connection or NULL on failure
2804 HINTERNET WINAPI
INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC
, LPCWSTR lpszUrl
,
2805 LPCWSTR lpszHeaders
, DWORD dwHeadersLength
, DWORD dwFlags
, DWORD dwContext
)
2807 URL_COMPONENTSW urlComponents
;
2808 WCHAR protocol
[32], hostName
[MAXHOSTNAME
], userName
[1024];
2809 WCHAR password
[1024], path
[2048], extra
[1024];
2810 HINTERNET client
= NULL
, client1
= NULL
;
2812 TRACE("(%p, %s, %s, %08x, %08x, %08x)\n", hIC
, debugstr_w(lpszUrl
), debugstr_w(lpszHeaders
),
2813 dwHeadersLength
, dwFlags
, dwContext
);
2815 urlComponents
.dwStructSize
= sizeof(URL_COMPONENTSW
);
2816 urlComponents
.lpszScheme
= protocol
;
2817 urlComponents
.dwSchemeLength
= 32;
2818 urlComponents
.lpszHostName
= hostName
;
2819 urlComponents
.dwHostNameLength
= MAXHOSTNAME
;
2820 urlComponents
.lpszUserName
= userName
;
2821 urlComponents
.dwUserNameLength
= 1024;
2822 urlComponents
.lpszPassword
= password
;
2823 urlComponents
.dwPasswordLength
= 1024;
2824 urlComponents
.lpszUrlPath
= path
;
2825 urlComponents
.dwUrlPathLength
= 2048;
2826 urlComponents
.lpszExtraInfo
= extra
;
2827 urlComponents
.dwExtraInfoLength
= 1024;
2828 if(!InternetCrackUrlW(lpszUrl
, strlenW(lpszUrl
), 0, &urlComponents
))
2830 switch(urlComponents
.nScheme
) {
2831 case INTERNET_SCHEME_FTP
:
2832 if(urlComponents
.nPort
== 0)
2833 urlComponents
.nPort
= INTERNET_DEFAULT_FTP_PORT
;
2834 client
= FTP_Connect(hIC
, hostName
, urlComponents
.nPort
,
2835 userName
, password
, dwFlags
, dwContext
, INET_OPENURL
);
2838 client1
= FtpOpenFileW(client
, path
, GENERIC_READ
, dwFlags
, dwContext
);
2839 if(client1
== NULL
) {
2840 InternetCloseHandle(client
);
2845 case INTERNET_SCHEME_HTTP
:
2846 case INTERNET_SCHEME_HTTPS
: {
2847 static const WCHAR szStars
[] = { '*','/','*', 0 };
2848 LPCWSTR accept
[2] = { szStars
, NULL
};
2849 if(urlComponents
.nPort
== 0) {
2850 if(urlComponents
.nScheme
== INTERNET_SCHEME_HTTP
)
2851 urlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
2853 urlComponents
.nPort
= INTERNET_DEFAULT_HTTPS_PORT
;
2855 /* FIXME: should use pointers, not handles, as handles are not thread-safe */
2856 client
= HTTP_Connect(hIC
, hostName
, urlComponents
.nPort
,
2857 userName
, password
, dwFlags
, dwContext
, INET_OPENURL
);
2861 if (urlComponents
.dwExtraInfoLength
) {
2863 DWORD len
= urlComponents
.dwUrlPathLength
+ urlComponents
.dwExtraInfoLength
+ 1;
2865 if (!(path_extra
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
))))
2867 InternetCloseHandle(client
);
2870 strcpyW(path_extra
, urlComponents
.lpszUrlPath
);
2871 strcatW(path_extra
, urlComponents
.lpszExtraInfo
);
2872 client1
= HttpOpenRequestW(client
, NULL
, path_extra
, NULL
, NULL
, accept
, dwFlags
, dwContext
);
2873 HeapFree(GetProcessHeap(), 0, path_extra
);
2876 client1
= HttpOpenRequestW(client
, NULL
, path
, NULL
, NULL
, accept
, dwFlags
, dwContext
);
2878 if(client1
== NULL
) {
2879 InternetCloseHandle(client
);
2882 HttpAddRequestHeadersW(client1
, lpszHeaders
, dwHeadersLength
, HTTP_ADDREQ_FLAG_ADD
);
2883 if (!HttpSendRequestW(client1
, NULL
, 0, NULL
, 0) &&
2884 GetLastError() != ERROR_IO_PENDING
) {
2885 InternetCloseHandle(client1
);
2890 case INTERNET_SCHEME_GOPHER
:
2891 /* gopher doesn't seem to be implemented in wine, but it's supposed
2892 * to be supported by InternetOpenUrlA. */
2894 INTERNET_SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME
);
2898 TRACE(" %p <--\n", client1
);
2903 /**********************************************************
2904 * InternetOpenUrlW (WININET.@)
2909 * handle of connection or NULL on failure
2911 static void AsyncInternetOpenUrlProc(WORKREQUEST
*workRequest
)
2913 struct WORKREQ_INTERNETOPENURLW
const *req
= &workRequest
->u
.InternetOpenUrlW
;
2914 LPWININETAPPINFOW hIC
= (LPWININETAPPINFOW
) workRequest
->hdr
;
2918 INTERNET_InternetOpenUrlW(hIC
, req
->lpszUrl
,
2919 req
->lpszHeaders
, req
->dwHeadersLength
, req
->dwFlags
, req
->dwContext
);
2920 HeapFree(GetProcessHeap(), 0, req
->lpszUrl
);
2921 HeapFree(GetProcessHeap(), 0, req
->lpszHeaders
);
2924 HINTERNET WINAPI
InternetOpenUrlW(HINTERNET hInternet
, LPCWSTR lpszUrl
,
2925 LPCWSTR lpszHeaders
, DWORD dwHeadersLength
, DWORD dwFlags
, DWORD dwContext
)
2927 HINTERNET ret
= NULL
;
2928 LPWININETAPPINFOW hIC
= NULL
;
2930 if (TRACE_ON(wininet
)) {
2931 TRACE("(%p, %s, %s, %08x, %08x, %08x)\n", hInternet
, debugstr_w(lpszUrl
), debugstr_w(lpszHeaders
),
2932 dwHeadersLength
, dwFlags
, dwContext
);
2934 dump_INTERNET_FLAGS(dwFlags
);
2939 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
2943 hIC
= (LPWININETAPPINFOW
) WININET_GetObject( hInternet
);
2944 if (NULL
== hIC
|| hIC
->hdr
.htype
!= WH_HINIT
) {
2945 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2949 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
) {
2950 WORKREQUEST workRequest
;
2951 struct WORKREQ_INTERNETOPENURLW
*req
;
2953 workRequest
.asyncproc
= AsyncInternetOpenUrlProc
;
2954 workRequest
.hdr
= WININET_AddRef( &hIC
->hdr
);
2955 req
= &workRequest
.u
.InternetOpenUrlW
;
2956 req
->lpszUrl
= WININET_strdupW(lpszUrl
);
2958 req
->lpszHeaders
= WININET_strdupW(lpszHeaders
);
2960 req
->lpszHeaders
= 0;
2961 req
->dwHeadersLength
= dwHeadersLength
;
2962 req
->dwFlags
= dwFlags
;
2963 req
->dwContext
= dwContext
;
2965 INTERNET_AsyncCall(&workRequest
);
2967 * This is from windows.
2969 INTERNET_SetLastError(ERROR_IO_PENDING
);
2971 ret
= INTERNET_InternetOpenUrlW(hIC
, lpszUrl
, lpszHeaders
, dwHeadersLength
, dwFlags
, dwContext
);
2976 WININET_Release( &hIC
->hdr
);
2977 TRACE(" %p <--\n", ret
);
2982 /**********************************************************
2983 * InternetOpenUrlA (WININET.@)
2988 * handle of connection or NULL on failure
2990 HINTERNET WINAPI
InternetOpenUrlA(HINTERNET hInternet
, LPCSTR lpszUrl
,
2991 LPCSTR lpszHeaders
, DWORD dwHeadersLength
, DWORD dwFlags
, DWORD dwContext
)
2993 HINTERNET rc
= (HINTERNET
)NULL
;
2997 LPWSTR szUrl
= NULL
;
2998 LPWSTR szHeaders
= NULL
;
3003 lenUrl
= MultiByteToWideChar(CP_ACP
, 0, lpszUrl
, -1, NULL
, 0 );
3004 szUrl
= HeapAlloc(GetProcessHeap(), 0, lenUrl
*sizeof(WCHAR
));
3006 return (HINTERNET
)NULL
;
3007 MultiByteToWideChar(CP_ACP
, 0, lpszUrl
, -1, szUrl
, lenUrl
);
3011 lenHeaders
= MultiByteToWideChar(CP_ACP
, 0, lpszHeaders
, dwHeadersLength
, NULL
, 0 );
3012 szHeaders
= HeapAlloc(GetProcessHeap(), 0, lenHeaders
*sizeof(WCHAR
));
3014 HeapFree(GetProcessHeap(), 0, szUrl
);
3015 return (HINTERNET
)NULL
;
3017 MultiByteToWideChar(CP_ACP
, 0, lpszHeaders
, dwHeadersLength
, szHeaders
, lenHeaders
);
3020 rc
= InternetOpenUrlW(hInternet
, szUrl
, szHeaders
,
3021 lenHeaders
, dwFlags
, dwContext
);
3023 HeapFree(GetProcessHeap(), 0, szUrl
);
3024 HeapFree(GetProcessHeap(), 0, szHeaders
);
3030 static LPWITHREADERROR
INTERNET_AllocThreadError(void)
3032 LPWITHREADERROR lpwite
= HeapAlloc(GetProcessHeap(), 0, sizeof(*lpwite
));
3036 lpwite
->dwError
= 0;
3037 lpwite
->response
[0] = '\0';
3040 if (!TlsSetValue(g_dwTlsErrIndex
, lpwite
))
3042 HeapFree(GetProcessHeap(), 0, lpwite
);
3050 /***********************************************************************
3051 * INTERNET_SetLastError (internal)
3053 * Set last thread specific error
3058 void INTERNET_SetLastError(DWORD dwError
)
3060 LPWITHREADERROR lpwite
= (LPWITHREADERROR
)TlsGetValue(g_dwTlsErrIndex
);
3063 lpwite
= INTERNET_AllocThreadError();
3065 SetLastError(dwError
);
3067 lpwite
->dwError
= dwError
;
3071 /***********************************************************************
3072 * INTERNET_GetLastError (internal)
3074 * Get last thread specific error
3079 DWORD
INTERNET_GetLastError(void)
3081 LPWITHREADERROR lpwite
= (LPWITHREADERROR
)TlsGetValue(g_dwTlsErrIndex
);
3082 if (!lpwite
) return 0;
3083 /* TlsGetValue clears last error, so set it again here */
3084 SetLastError(lpwite
->dwError
);
3085 return lpwite
->dwError
;
3089 /***********************************************************************
3090 * INTERNET_WorkerThreadFunc (internal)
3092 * Worker thread execution function
3097 static DWORD CALLBACK
INTERNET_WorkerThreadFunc(LPVOID lpvParam
)
3099 LPWORKREQUEST lpRequest
= lpvParam
;
3100 WORKREQUEST workRequest
;
3104 memcpy(&workRequest
, lpRequest
, sizeof(WORKREQUEST
));
3105 HeapFree(GetProcessHeap(), 0, lpRequest
);
3107 workRequest
.asyncproc(&workRequest
);
3109 WININET_Release( workRequest
.hdr
);
3114 /***********************************************************************
3115 * INTERNET_AsyncCall (internal)
3117 * Retrieves work request from queue
3122 BOOL
INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest
)
3125 LPWORKREQUEST lpNewRequest
;
3129 lpNewRequest
= HeapAlloc(GetProcessHeap(), 0, sizeof(WORKREQUEST
));
3133 memcpy(lpNewRequest
, lpWorkRequest
, sizeof(WORKREQUEST
));
3135 bSuccess
= QueueUserWorkItem(INTERNET_WorkerThreadFunc
, lpNewRequest
, WT_EXECUTELONGFUNCTION
);
3138 HeapFree(GetProcessHeap(), 0, lpNewRequest
);
3139 INTERNET_SetLastError(ERROR_INTERNET_ASYNC_THREAD_FAILED
);
3146 /***********************************************************************
3147 * INTERNET_GetResponseBuffer (internal)
3152 LPSTR
INTERNET_GetResponseBuffer(void)
3154 LPWITHREADERROR lpwite
= (LPWITHREADERROR
)TlsGetValue(g_dwTlsErrIndex
);
3156 lpwite
= INTERNET_AllocThreadError();
3158 return lpwite
->response
;
3161 /***********************************************************************
3162 * INTERNET_GetNextLine (internal)
3164 * Parse next line in directory string listing
3167 * Pointer to beginning of next line
3172 LPSTR
INTERNET_GetNextLine(INT nSocket
, LPDWORD dwLen
)
3176 BOOL bSuccess
= FALSE
;
3178 LPSTR lpszBuffer
= INTERNET_GetResponseBuffer();
3183 FD_SET(nSocket
, &infd
);
3184 tv
.tv_sec
=RESPONSE_TIMEOUT
;
3187 while (nRecv
< MAX_REPLY_LEN
)
3189 if (select(nSocket
+1,&infd
,NULL
,NULL
,&tv
) > 0)
3191 if (recv(nSocket
, &lpszBuffer
[nRecv
], 1, 0) <= 0)
3193 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
3197 if (lpszBuffer
[nRecv
] == '\n')
3202 if (lpszBuffer
[nRecv
] != '\r')
3207 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT
);
3215 lpszBuffer
[nRecv
] = '\0';
3217 TRACE(":%d %s\n", nRecv
, lpszBuffer
);
3226 /**********************************************************
3227 * InternetQueryDataAvailable (WININET.@)
3229 * Determines how much data is available to be read.
3232 * If there is data available then TRUE, otherwise if there
3233 * is not or an error occurred then FALSE. Use GetLastError() to
3234 * check for ERROR_NO_MORE_FILES to see if it was the former.
3236 BOOL WINAPI
InternetQueryDataAvailable( HINTERNET hFile
,
3237 LPDWORD lpdwNumberOfBytesAvailble
,
3238 DWORD dwFlags
, DWORD dwConext
)
3240 LPWININETHTTPREQW lpwhr
;
3241 BOOL retval
= FALSE
;
3244 lpwhr
= (LPWININETHTTPREQW
) WININET_GetObject( hFile
);
3247 INTERNET_SetLastError(ERROR_NO_MORE_FILES
);
3251 TRACE("--> %p %i\n",lpwhr
,lpwhr
->hdr
.htype
);
3253 switch (lpwhr
->hdr
.htype
)
3256 if (!NETCON_recv(&lpwhr
->netConnection
, buffer
,
3257 min(sizeof(buffer
), lpwhr
->dwContentLength
- lpwhr
->dwContentRead
),
3258 MSG_PEEK
, (int *)lpdwNumberOfBytesAvailble
))
3260 INTERNET_SetLastError(ERROR_NO_MORE_FILES
);
3268 FIXME("unsupported file type\n");
3271 WININET_Release( &lpwhr
->hdr
);
3273 TRACE("<-- %i\n",retval
);
3278 /***********************************************************************
3279 * InternetLockRequestFile (WININET.@)
3281 BOOL WINAPI
InternetLockRequestFile( HINTERNET hInternet
, HANDLE
3288 BOOL WINAPI
InternetUnlockRequestFile( HANDLE hLockHandle
)
3295 /***********************************************************************
3296 * InternetAutodial (WININET.@)
3298 * On windows this function is supposed to dial the default internet
3299 * connection. We don't want to have Wine dial out to the internet so
3300 * we return TRUE by default. It might be nice to check if we are connected.
3307 BOOL WINAPI
InternetAutodial(DWORD dwFlags
, HWND hwndParent
)
3311 /* Tell that we are connected to the internet. */
3315 /***********************************************************************
3316 * InternetAutodialHangup (WININET.@)
3318 * Hangs up a connection made with InternetAutodial
3327 BOOL WINAPI
InternetAutodialHangup(DWORD dwReserved
)
3331 /* we didn't dial, we don't disconnect */
3335 /***********************************************************************
3336 * InternetCombineUrlA (WININET.@)
3338 * Combine a base URL with a relative URL
3346 BOOL WINAPI
InternetCombineUrlA(LPCSTR lpszBaseUrl
, LPCSTR lpszRelativeUrl
,
3347 LPSTR lpszBuffer
, LPDWORD lpdwBufferLength
,
3352 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_a(lpszBaseUrl
), debugstr_a(lpszRelativeUrl
), lpszBuffer
, lpdwBufferLength
, dwFlags
);
3354 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3355 dwFlags
^= ICU_NO_ENCODE
;
3356 hr
=UrlCombineA(lpszBaseUrl
,lpszRelativeUrl
,lpszBuffer
,lpdwBufferLength
,dwFlags
);
3361 /***********************************************************************
3362 * InternetCombineUrlW (WININET.@)
3364 * Combine a base URL with a relative URL
3372 BOOL WINAPI
InternetCombineUrlW(LPCWSTR lpszBaseUrl
, LPCWSTR lpszRelativeUrl
,
3373 LPWSTR lpszBuffer
, LPDWORD lpdwBufferLength
,
3378 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_w(lpszBaseUrl
), debugstr_w(lpszRelativeUrl
), lpszBuffer
, lpdwBufferLength
, dwFlags
);
3380 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3381 dwFlags
^= ICU_NO_ENCODE
;
3382 hr
=UrlCombineW(lpszBaseUrl
,lpszRelativeUrl
,lpszBuffer
,lpdwBufferLength
,dwFlags
);
3387 /* max port num is 65535 => 5 digits */
3388 #define MAX_WORD_DIGITS 5
3390 #define URL_GET_COMP_LENGTH(url, component) ((url)->dw##component##Length ? \
3391 (url)->dw##component##Length : strlenW((url)->lpsz##component))
3392 #define URL_GET_COMP_LENGTHA(url, component) ((url)->dw##component##Length ? \
3393 (url)->dw##component##Length : strlen((url)->lpsz##component))
3395 static BOOL
url_uses_default_port(INTERNET_SCHEME nScheme
, INTERNET_PORT nPort
)
3397 if ((nScheme
== INTERNET_SCHEME_HTTP
) &&
3398 (nPort
== INTERNET_DEFAULT_HTTP_PORT
))
3400 if ((nScheme
== INTERNET_SCHEME_HTTPS
) &&
3401 (nPort
== INTERNET_DEFAULT_HTTPS_PORT
))
3403 if ((nScheme
== INTERNET_SCHEME_FTP
) &&
3404 (nPort
== INTERNET_DEFAULT_FTP_PORT
))
3406 if ((nScheme
== INTERNET_SCHEME_GOPHER
) &&
3407 (nPort
== INTERNET_DEFAULT_GOPHER_PORT
))
3410 if (nPort
== INTERNET_INVALID_PORT_NUMBER
)
3416 /* opaque urls do not fit into the standard url hierarchy and don't have
3417 * two following slashes */
3418 static inline BOOL
scheme_is_opaque(INTERNET_SCHEME nScheme
)
3420 return (nScheme
!= INTERNET_SCHEME_FTP
) &&
3421 (nScheme
!= INTERNET_SCHEME_GOPHER
) &&
3422 (nScheme
!= INTERNET_SCHEME_HTTP
) &&
3423 (nScheme
!= INTERNET_SCHEME_HTTPS
) &&
3424 (nScheme
!= INTERNET_SCHEME_FILE
);
3427 static LPCWSTR
INTERNET_GetSchemeString(INTERNET_SCHEME scheme
)
3430 if (scheme
< INTERNET_SCHEME_FIRST
)
3432 index
= scheme
- INTERNET_SCHEME_FIRST
;
3433 if (index
>= sizeof(url_schemes
)/sizeof(url_schemes
[0]))
3435 return (LPCWSTR
)&url_schemes
[index
];
3438 /* we can calculate using ansi strings because we're just
3439 * calculating string length, not size
3441 static BOOL
calc_url_length(LPURL_COMPONENTSW lpUrlComponents
,
3442 LPDWORD lpdwUrlLength
)
3444 INTERNET_SCHEME nScheme
;
3448 if (lpUrlComponents
->lpszScheme
)
3450 DWORD dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, Scheme
);
3451 *lpdwUrlLength
+= dwLen
;
3452 nScheme
= GetInternetSchemeW(lpUrlComponents
->lpszScheme
, dwLen
);
3458 nScheme
= lpUrlComponents
->nScheme
;
3460 if (nScheme
== INTERNET_SCHEME_DEFAULT
)
3461 nScheme
= INTERNET_SCHEME_HTTP
;
3462 scheme
= INTERNET_GetSchemeString(nScheme
);
3463 *lpdwUrlLength
+= strlenW(scheme
);
3466 (*lpdwUrlLength
)++; /* ':' */
3467 if (!scheme_is_opaque(nScheme
) || lpUrlComponents
->lpszHostName
)
3468 *lpdwUrlLength
+= strlen("//");
3470 if (lpUrlComponents
->lpszUserName
)
3472 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, UserName
);
3473 *lpdwUrlLength
+= strlen("@");
3477 if (lpUrlComponents
->lpszPassword
)
3479 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
3484 if (lpUrlComponents
->lpszPassword
)
3486 *lpdwUrlLength
+= strlen(":");
3487 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, Password
);
3490 if (lpUrlComponents
->lpszHostName
)
3492 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, HostName
);
3494 if (!url_uses_default_port(nScheme
, lpUrlComponents
->nPort
))
3496 char szPort
[MAX_WORD_DIGITS
+1];
3498 sprintf(szPort
, "%d", lpUrlComponents
->nPort
);
3499 *lpdwUrlLength
+= strlen(szPort
);
3500 *lpdwUrlLength
+= strlen(":");
3503 if (lpUrlComponents
->lpszUrlPath
&& *lpUrlComponents
->lpszUrlPath
!= '/')
3504 (*lpdwUrlLength
)++; /* '/' */
3507 if (lpUrlComponents
->lpszUrlPath
)
3508 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, UrlPath
);
3513 static void convert_urlcomp_atow(LPURL_COMPONENTSA lpUrlComponents
, LPURL_COMPONENTSW urlCompW
)
3517 ZeroMemory(urlCompW
, sizeof(URL_COMPONENTSW
));
3519 urlCompW
->dwStructSize
= sizeof(URL_COMPONENTSW
);
3520 urlCompW
->dwSchemeLength
= lpUrlComponents
->dwSchemeLength
;
3521 urlCompW
->nScheme
= lpUrlComponents
->nScheme
;
3522 urlCompW
->dwHostNameLength
= lpUrlComponents
->dwHostNameLength
;
3523 urlCompW
->nPort
= lpUrlComponents
->nPort
;
3524 urlCompW
->dwUserNameLength
= lpUrlComponents
->dwUserNameLength
;
3525 urlCompW
->dwPasswordLength
= lpUrlComponents
->dwPasswordLength
;
3526 urlCompW
->dwUrlPathLength
= lpUrlComponents
->dwUrlPathLength
;
3527 urlCompW
->dwExtraInfoLength
= lpUrlComponents
->dwExtraInfoLength
;
3529 if (lpUrlComponents
->lpszScheme
)
3531 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, Scheme
) + 1;
3532 urlCompW
->lpszScheme
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3533 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszScheme
,
3534 -1, urlCompW
->lpszScheme
, len
);
3537 if (lpUrlComponents
->lpszHostName
)
3539 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, HostName
) + 1;
3540 urlCompW
->lpszHostName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3541 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszHostName
,
3542 -1, urlCompW
->lpszHostName
, len
);
3545 if (lpUrlComponents
->lpszUserName
)
3547 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, UserName
) + 1;
3548 urlCompW
->lpszUserName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3549 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszUserName
,
3550 -1, urlCompW
->lpszUserName
, len
);
3553 if (lpUrlComponents
->lpszPassword
)
3555 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, Password
) + 1;
3556 urlCompW
->lpszPassword
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3557 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszPassword
,
3558 -1, urlCompW
->lpszPassword
, len
);
3561 if (lpUrlComponents
->lpszUrlPath
)
3563 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, UrlPath
) + 1;
3564 urlCompW
->lpszUrlPath
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3565 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszUrlPath
,
3566 -1, urlCompW
->lpszUrlPath
, len
);
3569 if (lpUrlComponents
->lpszExtraInfo
)
3571 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, ExtraInfo
) + 1;
3572 urlCompW
->lpszExtraInfo
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
3573 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszExtraInfo
,
3574 -1, urlCompW
->lpszExtraInfo
, len
);
3578 /***********************************************************************
3579 * InternetCreateUrlA (WININET.@)
3581 * See InternetCreateUrlW.
3583 BOOL WINAPI
InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents
, DWORD dwFlags
,
3584 LPSTR lpszUrl
, LPDWORD lpdwUrlLength
)
3588 URL_COMPONENTSW urlCompW
;
3590 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents
, dwFlags
, lpszUrl
, lpdwUrlLength
);
3592 if (!lpUrlComponents
)
3595 if (lpUrlComponents
->dwStructSize
!= sizeof(URL_COMPONENTSW
) || !lpdwUrlLength
)
3597 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
3601 convert_urlcomp_atow(lpUrlComponents
, &urlCompW
);
3604 urlW
= HeapAlloc(GetProcessHeap(), 0, *lpdwUrlLength
* sizeof(WCHAR
));
3606 ret
= InternetCreateUrlW(&urlCompW
, dwFlags
, urlW
, lpdwUrlLength
);
3608 if (!ret
&& (GetLastError() == ERROR_INSUFFICIENT_BUFFER
))
3609 *lpdwUrlLength
/= sizeof(WCHAR
);
3611 /* on success, lpdwUrlLength points to the size of urlW in WCHARS
3612 * minus one, so add one to leave room for NULL terminator
3615 WideCharToMultiByte(CP_ACP
, 0, urlW
, -1, lpszUrl
, *lpdwUrlLength
+ 1, NULL
, NULL
);
3617 HeapFree(GetProcessHeap(), 0, urlCompW
.lpszScheme
);
3618 HeapFree(GetProcessHeap(), 0, urlCompW
.lpszHostName
);
3619 HeapFree(GetProcessHeap(), 0, urlCompW
.lpszUserName
);
3620 HeapFree(GetProcessHeap(), 0, urlCompW
.lpszPassword
);
3621 HeapFree(GetProcessHeap(), 0, urlCompW
.lpszUrlPath
);
3622 HeapFree(GetProcessHeap(), 0, urlCompW
.lpszExtraInfo
);
3623 HeapFree(GetProcessHeap(), 0, urlW
);
3628 /***********************************************************************
3629 * InternetCreateUrlW (WININET.@)
3631 * Creates a URL from its component parts.
3634 * lpUrlComponents [I] URL Components.
3635 * dwFlags [I] Flags. See notes.
3636 * lpszUrl [I] Buffer in which to store the created URL.
3637 * lpdwUrlLength [I/O] On input, the length of the buffer pointed to by
3638 * lpszUrl in characters. On output, the number of bytes
3639 * required to store the URL including terminator.
3643 * The dwFlags parameter can be zero or more of the following:
3644 *|ICU_ESCAPE - Generates escape sequences for unsafe characters in the path and extra info of the URL.
3651 BOOL WINAPI
InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents
, DWORD dwFlags
,
3652 LPWSTR lpszUrl
, LPDWORD lpdwUrlLength
)
3655 INTERNET_SCHEME nScheme
;
3657 static const WCHAR slashSlashW
[] = {'/','/'};
3658 static const WCHAR percentD
[] = {'%','d',0};
3660 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents
, dwFlags
, lpszUrl
, lpdwUrlLength
);
3662 if (!lpUrlComponents
)
3665 if (lpUrlComponents
->dwStructSize
!= sizeof(URL_COMPONENTSW
) || !lpdwUrlLength
)
3667 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
3671 if (!calc_url_length(lpUrlComponents
, &dwLen
))
3674 if (!lpszUrl
|| *lpdwUrlLength
< dwLen
)
3676 *lpdwUrlLength
= (dwLen
+ 1) * sizeof(WCHAR
);
3677 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
3681 *lpdwUrlLength
= dwLen
;
3686 if (lpUrlComponents
->lpszScheme
)
3688 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, Scheme
);
3689 memcpy(lpszUrl
, lpUrlComponents
->lpszScheme
, dwLen
* sizeof(WCHAR
));
3692 nScheme
= GetInternetSchemeW(lpUrlComponents
->lpszScheme
, dwLen
);
3697 nScheme
= lpUrlComponents
->nScheme
;
3699 if (nScheme
== INTERNET_SCHEME_DEFAULT
)
3700 nScheme
= INTERNET_SCHEME_HTTP
;
3702 scheme
= INTERNET_GetSchemeString(nScheme
);
3703 dwLen
= strlenW(scheme
);
3704 memcpy(lpszUrl
, scheme
, dwLen
* sizeof(WCHAR
));
3708 /* all schemes are followed by at least a colon */
3712 if (!scheme_is_opaque(nScheme
) || lpUrlComponents
->lpszHostName
)
3714 memcpy(lpszUrl
, slashSlashW
, sizeof(slashSlashW
));
3715 lpszUrl
+= sizeof(slashSlashW
)/sizeof(slashSlashW
[0]);
3718 if (lpUrlComponents
->lpszUserName
)
3720 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, UserName
);
3721 memcpy(lpszUrl
, lpUrlComponents
->lpszUserName
, dwLen
* sizeof(WCHAR
));
3724 if (lpUrlComponents
->lpszPassword
)
3729 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, Password
);
3730 memcpy(lpszUrl
, lpUrlComponents
->lpszPassword
, dwLen
* sizeof(WCHAR
));
3738 if (lpUrlComponents
->lpszHostName
)
3740 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, HostName
);
3741 memcpy(lpszUrl
, lpUrlComponents
->lpszHostName
, dwLen
* sizeof(WCHAR
));
3744 if (!url_uses_default_port(nScheme
, lpUrlComponents
->nPort
))
3746 WCHAR szPort
[MAX_WORD_DIGITS
+1];
3748 sprintfW(szPort
, percentD
, lpUrlComponents
->nPort
);
3751 dwLen
= strlenW(szPort
);
3752 memcpy(lpszUrl
, szPort
, dwLen
* sizeof(WCHAR
));
3756 /* add slash between hostname and path if necessary */
3757 if (lpUrlComponents
->lpszUrlPath
&& *lpUrlComponents
->lpszUrlPath
!= '/')
3765 if (lpUrlComponents
->lpszUrlPath
)
3767 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, UrlPath
);
3768 memcpy(lpszUrl
, lpUrlComponents
->lpszUrlPath
, dwLen
* sizeof(WCHAR
));
3777 /***********************************************************************
3778 * InternetConfirmZoneCrossingA (WININET.@)
3781 DWORD WINAPI
InternetConfirmZoneCrossingA( HWND hWnd
, LPSTR szUrlPrev
, LPSTR szUrlNew
, BOOL bPost
)
3783 FIXME("(%p, %s, %s, %x) stub\n", hWnd
, debugstr_a(szUrlPrev
), debugstr_a(szUrlNew
), bPost
);
3784 return ERROR_SUCCESS
;
3787 /***********************************************************************
3788 * InternetConfirmZoneCrossingW (WININET.@)
3791 DWORD WINAPI
InternetConfirmZoneCrossingW( HWND hWnd
, LPWSTR szUrlPrev
, LPWSTR szUrlNew
, BOOL bPost
)
3793 FIXME("(%p, %s, %s, %x) stub\n", hWnd
, debugstr_w(szUrlPrev
), debugstr_w(szUrlNew
), bPost
);
3794 return ERROR_SUCCESS
;
3797 DWORD WINAPI
InternetDialA( HWND hwndParent
, LPSTR lpszConnectoid
, DWORD dwFlags
,
3798 LPDWORD lpdwConnection
, DWORD dwReserved
)
3800 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent
, lpszConnectoid
, dwFlags
,
3801 lpdwConnection
, dwReserved
);
3802 return ERROR_SUCCESS
;
3805 DWORD WINAPI
InternetDialW( HWND hwndParent
, LPWSTR lpszConnectoid
, DWORD dwFlags
,
3806 LPDWORD lpdwConnection
, DWORD dwReserved
)
3808 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent
, lpszConnectoid
, dwFlags
,
3809 lpdwConnection
, dwReserved
);
3810 return ERROR_SUCCESS
;
3813 BOOL WINAPI
InternetGoOnlineA( LPSTR lpszURL
, HWND hwndParent
, DWORD dwReserved
)
3815 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_a(lpszURL
), hwndParent
, dwReserved
);
3819 BOOL WINAPI
InternetGoOnlineW( LPWSTR lpszURL
, HWND hwndParent
, DWORD dwReserved
)
3821 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_w(lpszURL
), hwndParent
, dwReserved
);
3825 DWORD WINAPI
InternetHangUp( DWORD dwConnection
, DWORD dwReserved
)
3827 FIXME("(0x%08x, 0x%08x) stub\n", dwConnection
, dwReserved
);
3828 return ERROR_SUCCESS
;
3831 BOOL WINAPI
CreateMD5SSOHash( PWSTR pszChallengeInfo
, PWSTR pwszRealm
, PWSTR pwszTarget
,
3834 FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo
), debugstr_w(pwszRealm
),
3835 debugstr_w(pwszTarget
), pbHexHash
);
3839 BOOL WINAPI
ResumeSuspendedDownload( HINTERNET hInternet
, DWORD dwError
)
3841 FIXME("(%p, 0x%08x) stub\n", hInternet
, dwError
);