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 #if defined(__MINGW32__) || defined (_MSC_VER)
39 #include <sys/types.h>
40 #ifdef HAVE_SYS_SOCKET_H
41 # include <sys/socket.h>
46 #ifdef HAVE_SYS_POLL_H
47 # include <sys/poll.h>
49 #ifdef HAVE_SYS_TIME_H
50 # include <sys/time.h>
66 #include "wine/debug.h"
68 #define NO_SHLWAPI_STREAM
71 #include "wine/exception.h"
76 #include "wine/unicode.h"
78 WINE_DEFAULT_DEBUG_CHANNEL(wininet
);
80 #define RESPONSE_TIMEOUT 30
85 CHAR response
[MAX_REPLY_LEN
];
86 } WITHREADERROR
, *LPWITHREADERROR
;
88 static DWORD g_dwTlsErrIndex
= TLS_OUT_OF_INDEXES
;
89 HMODULE WININET_hModule
;
91 static CRITICAL_SECTION WININET_cs
;
92 static CRITICAL_SECTION_DEBUG WININET_cs_debug
=
95 { &WININET_cs_debug
.ProcessLocksList
, &WININET_cs_debug
.ProcessLocksList
},
96 0, 0, { (DWORD_PTR
)(__FILE__
": WININET_cs") }
98 static CRITICAL_SECTION WININET_cs
= { &WININET_cs_debug
, -1, 0, 0, 0, 0 };
100 static object_header_t
**handle_table
;
101 static UINT_PTR next_handle
;
102 static UINT_PTR handle_table_size
;
111 static ULONG max_conns
= 2, max_1_0_conns
= 4;
112 static ULONG connect_timeout
= 60000;
114 static const WCHAR szInternetSettings
[] =
115 { 'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\',
116 'W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
117 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s',0 };
118 static const WCHAR szProxyServer
[] = { 'P','r','o','x','y','S','e','r','v','e','r', 0 };
119 static const WCHAR szProxyEnable
[] = { 'P','r','o','x','y','E','n','a','b','l','e', 0 };
121 void *alloc_object(object_header_t
*parent
, const object_vtbl_t
*vtbl
, size_t size
)
123 UINT_PTR handle
= 0, num
;
124 object_header_t
*ret
;
128 ret
= heap_alloc_zero(size
);
132 list_init(&ret
->children
);
134 EnterCriticalSection( &WININET_cs
);
136 if(!handle_table_size
) {
138 p
= heap_alloc_zero(sizeof(handle_table
[0]) * num
);
141 handle_table_size
= num
;
146 }else if(next_handle
== handle_table_size
) {
147 num
= handle_table_size
* 2;
148 p
= heap_realloc_zero(handle_table
, sizeof(handle_table
[0]) * num
);
151 handle_table_size
= num
;
158 handle
= next_handle
;
159 if(handle_table
[handle
])
160 ERR("handle isn't free but should be\n");
161 handle_table
[handle
] = ret
;
162 ret
->valid_handle
= TRUE
;
164 while(handle_table
[next_handle
] && next_handle
< handle_table_size
)
168 LeaveCriticalSection( &WININET_cs
);
177 ret
->hInternet
= (HINTERNET
)handle
;
180 ret
->lpfnStatusCB
= parent
->lpfnStatusCB
;
181 ret
->dwInternalFlags
= parent
->dwInternalFlags
& INET_CALLBACKW
;
187 object_header_t
*WININET_AddRef( object_header_t
*info
)
189 ULONG refs
= InterlockedIncrement(&info
->refs
);
190 TRACE("%p -> refcount = %d\n", info
, refs
);
194 object_header_t
*get_handle_object( HINTERNET hinternet
)
196 object_header_t
*info
= NULL
;
197 UINT_PTR handle
= (UINT_PTR
) hinternet
;
199 EnterCriticalSection( &WININET_cs
);
201 if(handle
> 0 && handle
< handle_table_size
&& handle_table
[handle
] && handle_table
[handle
]->valid_handle
)
202 info
= WININET_AddRef(handle_table
[handle
]);
204 LeaveCriticalSection( &WININET_cs
);
206 TRACE("handle %ld -> %p\n", handle
, info
);
211 static void invalidate_handle(object_header_t
*info
)
213 object_header_t
*child
, *next
;
215 if(!info
->valid_handle
)
217 info
->valid_handle
= FALSE
;
219 /* Free all children as native does */
220 LIST_FOR_EACH_ENTRY_SAFE( child
, next
, &info
->children
, object_header_t
, entry
)
222 TRACE("invalidating child handle %p for parent %p\n", child
->hInternet
, info
);
223 invalidate_handle( child
);
226 WININET_Release(info
);
229 BOOL
WININET_Release( object_header_t
*info
)
231 ULONG refs
= InterlockedDecrement(&info
->refs
);
232 TRACE( "object %p refcount = %d\n", info
, refs
);
235 invalidate_handle(info
);
236 if ( info
->vtbl
->CloseConnection
)
238 TRACE( "closing connection %p\n", info
);
239 info
->vtbl
->CloseConnection( info
);
241 /* Don't send a callback if this is a session handle created with InternetOpenUrl */
242 if ((info
->htype
!= WH_HHTTPSESSION
&& info
->htype
!= WH_HFTPSESSION
)
243 || !(info
->dwInternalFlags
& INET_OPENURL
))
245 INTERNET_SendCallback(info
, info
->dwContext
,
246 INTERNET_STATUS_HANDLE_CLOSING
, &info
->hInternet
,
249 TRACE( "destroying object %p\n", info
);
250 if ( info
->htype
!= WH_HINIT
)
251 list_remove( &info
->entry
);
252 info
->vtbl
->Destroy( info
);
254 if(info
->hInternet
) {
255 UINT_PTR handle
= (UINT_PTR
)info
->hInternet
;
257 EnterCriticalSection( &WININET_cs
);
259 handle_table
[handle
] = NULL
;
260 if(next_handle
> handle
)
261 next_handle
= handle
;
263 LeaveCriticalSection( &WININET_cs
);
271 /***********************************************************************
272 * DllMain [Internal] Initializes the internal 'WININET.DLL'.
275 * hinstDLL [I] handle to the DLL's instance
277 * lpvReserved [I] reserved, must be NULL
284 BOOL WINAPI
DllMain (HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
286 TRACE("%p,%x,%p\n", hinstDLL
, fdwReason
, lpvReserved
);
289 case DLL_PROCESS_ATTACH
:
291 g_dwTlsErrIndex
= TlsAlloc();
293 if (g_dwTlsErrIndex
== TLS_OUT_OF_INDEXES
)
296 URLCacheContainers_CreateDefaults();
298 WININET_hModule
= hinstDLL
;
301 case DLL_THREAD_ATTACH
:
304 case DLL_THREAD_DETACH
:
305 if (g_dwTlsErrIndex
!= TLS_OUT_OF_INDEXES
)
307 heap_free(TlsGetValue(g_dwTlsErrIndex
));
311 case DLL_PROCESS_DETACH
:
312 collect_connections(TRUE
);
314 URLCacheContainers_DeleteAll();
316 if (g_dwTlsErrIndex
!= TLS_OUT_OF_INDEXES
)
318 heap_free(TlsGetValue(g_dwTlsErrIndex
));
319 TlsFree(g_dwTlsErrIndex
);
326 /***********************************************************************
327 * INTERNET_SaveProxySettings
329 * Stores the proxy settings given by lpwai into the registry
332 * ERROR_SUCCESS if no error, or error code on fail
334 static LONG
INTERNET_SaveProxySettings( proxyinfo_t
*lpwpi
)
339 if ((ret
= RegOpenKeyW( HKEY_CURRENT_USER
, szInternetSettings
, &key
)))
342 if ((ret
= RegSetValueExW( key
, szProxyEnable
, 0, REG_DWORD
, (BYTE
*)&lpwpi
->proxyEnabled
, sizeof(DWORD
))))
350 if ((ret
= RegSetValueExW( key
, szProxyServer
, 0, REG_SZ
, (BYTE
*)lpwpi
->proxy
, sizeof(WCHAR
) * (lstrlenW(lpwpi
->proxy
) + 1))))
358 if ((ret
= RegDeleteValueW( key
, szProxyServer
)))
366 return ERROR_SUCCESS
;
369 /***********************************************************************
370 * INTERNET_FindProxyForProtocol
372 * Searches the proxy string for a proxy of the given protocol.
373 * Returns the found proxy, or the default proxy if none of the given
377 * szProxy [In] proxy string to search
378 * proto [In] protocol to search for, e.g. "http"
379 * foundProxy [Out] found proxy
380 * foundProxyLen [In/Out] length of foundProxy buffer, in WCHARs
383 * TRUE if a proxy is found, FALSE if not. If foundProxy is too short,
384 * *foundProxyLen is set to the required size in WCHARs, including the
385 * NULL terminator, and the last error is set to ERROR_INSUFFICIENT_BUFFER.
387 BOOL
INTERNET_FindProxyForProtocol(LPCWSTR szProxy
, LPCWSTR proto
, WCHAR
*foundProxy
, DWORD
*foundProxyLen
)
392 TRACE("(%s, %s)\n", debugstr_w(szProxy
), debugstr_w(proto
));
394 /* First, look for the specified protocol (proto=scheme://host:port) */
395 for (ptr
= szProxy
; !ret
&& ptr
&& *ptr
; )
399 if (!(end
= strchrW(ptr
, ' ')))
400 end
= ptr
+ strlenW(ptr
);
401 if ((equal
= strchrW(ptr
, '=')) && equal
< end
&&
402 equal
- ptr
== strlenW(proto
) &&
403 !strncmpiW(proto
, ptr
, strlenW(proto
)))
405 if (end
- equal
> *foundProxyLen
)
407 WARN("buffer too short for %s\n",
408 debugstr_wn(equal
+ 1, end
- equal
- 1));
409 *foundProxyLen
= end
- equal
;
410 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
414 memcpy(foundProxy
, equal
+ 1, (end
- equal
) * sizeof(WCHAR
));
415 foundProxy
[end
- equal
] = 0;
426 /* It wasn't found: look for no protocol */
427 for (ptr
= szProxy
; !ret
&& ptr
&& *ptr
; )
431 if (!(end
= strchrW(ptr
, ' ')))
432 end
= ptr
+ strlenW(ptr
);
433 if (!(equal
= strchrW(ptr
, '=')))
435 if (end
- ptr
+ 1 > *foundProxyLen
)
437 WARN("buffer too short for %s\n",
438 debugstr_wn(ptr
, end
- ptr
));
439 *foundProxyLen
= end
- ptr
+ 1;
440 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
444 memcpy(foundProxy
, ptr
, (end
- ptr
) * sizeof(WCHAR
));
445 foundProxy
[end
- ptr
] = 0;
456 TRACE("found proxy for %s: %s\n", debugstr_w(proto
),
457 debugstr_w(foundProxy
));
461 /***********************************************************************
462 * InternetInitializeAutoProxyDll (WININET.@)
464 * Setup the internal proxy
473 BOOL WINAPI
InternetInitializeAutoProxyDll(DWORD dwReserved
)
476 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
480 /***********************************************************************
481 * DetectAutoProxyUrl (WININET.@)
483 * Auto detect the proxy url
489 BOOL WINAPI
DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl
,
490 DWORD dwAutoProxyUrlLength
, DWORD dwDetectFlags
)
493 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
497 static void FreeProxyInfo( proxyinfo_t
*lpwpi
)
499 heap_free(lpwpi
->proxy
);
500 heap_free(lpwpi
->proxyBypass
);
503 static proxyinfo_t
*global_proxy
;
505 static void free_global_proxy( void )
507 EnterCriticalSection( &WININET_cs
);
510 FreeProxyInfo( global_proxy
);
511 heap_free( global_proxy
);
513 LeaveCriticalSection( &WININET_cs
);
516 /***********************************************************************
517 * INTERNET_LoadProxySettings
519 * Loads proxy information from process-wide global settings, the registry,
520 * or the environment into lpwpi.
522 * The caller should call FreeProxyInfo when done with lpwpi.
525 * The proxy may be specified in the form 'http=proxy.my.org'
526 * Presumably that means there can be ftp=ftpproxy.my.org too.
528 static LONG
INTERNET_LoadProxySettings( proxyinfo_t
*lpwpi
)
535 EnterCriticalSection( &WININET_cs
);
538 lpwpi
->proxyEnabled
= global_proxy
->proxyEnabled
;
539 lpwpi
->proxy
= heap_strdupW( global_proxy
->proxy
);
540 lpwpi
->proxyBypass
= heap_strdupW( global_proxy
->proxyBypass
);
542 LeaveCriticalSection( &WININET_cs
);
544 if ((ret
= RegOpenKeyW( HKEY_CURRENT_USER
, szInternetSettings
, &key
)))
548 if (RegQueryValueExW( key
, szProxyEnable
, NULL
, &type
, (BYTE
*)&lpwpi
->proxyEnabled
, &len
) || type
!= REG_DWORD
)
550 lpwpi
->proxyEnabled
= 0;
551 if((ret
= RegSetValueExW( key
, szProxyEnable
, 0, REG_DWORD
, (BYTE
*)&lpwpi
->proxyEnabled
, sizeof(DWORD
) )))
558 if (!(envproxy
= getenv( "http_proxy" )) || lpwpi
->proxyEnabled
)
560 TRACE("Proxy is enabled.\n");
562 /* figure out how much memory the proxy setting takes */
563 if (!RegQueryValueExW( key
, szProxyServer
, NULL
, &type
, NULL
, &len
) && len
&& (type
== REG_SZ
))
566 static const WCHAR szHttp
[] = {'h','t','t','p','=',0};
568 if (!(szProxy
= heap_alloc(len
)))
571 return ERROR_OUTOFMEMORY
;
573 RegQueryValueExW( key
, szProxyServer
, NULL
, &type
, (BYTE
*)szProxy
, &len
);
575 /* find the http proxy, and strip away everything else */
576 p
= strstrW( szProxy
, szHttp
);
579 p
+= lstrlenW( szHttp
);
580 lstrcpyW( szProxy
, p
);
582 p
= strchrW( szProxy
, ' ' );
585 lpwpi
->proxy
= szProxy
;
587 TRACE("http proxy = %s\n", debugstr_w(lpwpi
->proxy
));
591 TRACE("No proxy server settings in registry.\n");
599 len
= MultiByteToWideChar( CP_UNIXCP
, 0, envproxy
, -1, NULL
, 0 );
600 if (!(envproxyW
= heap_alloc(len
* sizeof(WCHAR
))))
601 return ERROR_OUTOFMEMORY
;
602 MultiByteToWideChar( CP_UNIXCP
, 0, envproxy
, -1, envproxyW
, len
);
604 lpwpi
->proxyEnabled
= 1;
605 lpwpi
->proxy
= envproxyW
;
607 TRACE("http proxy (from environment) = %s\n", debugstr_w(lpwpi
->proxy
));
611 lpwpi
->proxyBypass
= NULL
;
613 return ERROR_SUCCESS
;
616 /***********************************************************************
617 * INTERNET_ConfigureProxy
619 static BOOL
INTERNET_ConfigureProxy( appinfo_t
*lpwai
)
623 if (INTERNET_LoadProxySettings( &wpi
))
626 if (wpi
.proxyEnabled
)
628 WCHAR proxyurl
[INTERNET_MAX_URL_LENGTH
];
629 WCHAR username
[INTERNET_MAX_USER_NAME_LENGTH
];
630 WCHAR password
[INTERNET_MAX_PASSWORD_LENGTH
];
631 WCHAR hostname
[INTERNET_MAX_HOST_NAME_LENGTH
];
632 URL_COMPONENTSW UrlComponents
;
634 UrlComponents
.dwStructSize
= sizeof UrlComponents
;
635 UrlComponents
.dwSchemeLength
= 0;
636 UrlComponents
.lpszHostName
= hostname
;
637 UrlComponents
.dwHostNameLength
= INTERNET_MAX_HOST_NAME_LENGTH
;
638 UrlComponents
.lpszUserName
= username
;
639 UrlComponents
.dwUserNameLength
= INTERNET_MAX_USER_NAME_LENGTH
;
640 UrlComponents
.lpszPassword
= password
;
641 UrlComponents
.dwPasswordLength
= INTERNET_MAX_PASSWORD_LENGTH
;
642 UrlComponents
.dwUrlPathLength
= 0;
643 UrlComponents
.dwExtraInfoLength
= 0;
645 if(InternetCrackUrlW(wpi
.proxy
, 0, 0, &UrlComponents
))
647 static const WCHAR szFormat
[] = { 'h','t','t','p',':','/','/','%','s',':','%','u',0 };
649 if(UrlComponents
.nPort
== INTERNET_INVALID_PORT_NUMBER
)
650 UrlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
651 sprintfW(proxyurl
, szFormat
, hostname
, UrlComponents
.nPort
);
653 lpwai
->accessType
= INTERNET_OPEN_TYPE_PROXY
;
654 lpwai
->proxy
= heap_strdupW(proxyurl
);
655 if (UrlComponents
.dwUserNameLength
)
657 lpwai
->proxyUsername
= heap_strdupW(UrlComponents
.lpszUserName
);
658 lpwai
->proxyPassword
= heap_strdupW(UrlComponents
.lpszPassword
);
661 TRACE("http proxy = %s\n", debugstr_w(lpwai
->proxy
));
666 TRACE("Failed to parse proxy: %s\n", debugstr_w(wpi
.proxy
));
671 lpwai
->accessType
= INTERNET_OPEN_TYPE_DIRECT
;
675 /***********************************************************************
676 * dump_INTERNET_FLAGS
678 * Helper function to TRACE the internet flags.
684 static void dump_INTERNET_FLAGS(DWORD dwFlags
)
686 #define FE(x) { x, #x }
687 static const wininet_flag_info flag
[] = {
688 FE(INTERNET_FLAG_RELOAD
),
689 FE(INTERNET_FLAG_RAW_DATA
),
690 FE(INTERNET_FLAG_EXISTING_CONNECT
),
691 FE(INTERNET_FLAG_ASYNC
),
692 FE(INTERNET_FLAG_PASSIVE
),
693 FE(INTERNET_FLAG_NO_CACHE_WRITE
),
694 FE(INTERNET_FLAG_MAKE_PERSISTENT
),
695 FE(INTERNET_FLAG_FROM_CACHE
),
696 FE(INTERNET_FLAG_SECURE
),
697 FE(INTERNET_FLAG_KEEP_CONNECTION
),
698 FE(INTERNET_FLAG_NO_AUTO_REDIRECT
),
699 FE(INTERNET_FLAG_READ_PREFETCH
),
700 FE(INTERNET_FLAG_NO_COOKIES
),
701 FE(INTERNET_FLAG_NO_AUTH
),
702 FE(INTERNET_FLAG_CACHE_IF_NET_FAIL
),
703 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP
),
704 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS
),
705 FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID
),
706 FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID
),
707 FE(INTERNET_FLAG_RESYNCHRONIZE
),
708 FE(INTERNET_FLAG_HYPERLINK
),
709 FE(INTERNET_FLAG_NO_UI
),
710 FE(INTERNET_FLAG_PRAGMA_NOCACHE
),
711 FE(INTERNET_FLAG_CACHE_ASYNC
),
712 FE(INTERNET_FLAG_FORMS_SUBMIT
),
713 FE(INTERNET_FLAG_NEED_FILE
),
714 FE(INTERNET_FLAG_TRANSFER_ASCII
),
715 FE(INTERNET_FLAG_TRANSFER_BINARY
)
720 for (i
= 0; i
< (sizeof(flag
) / sizeof(flag
[0])); i
++) {
721 if (flag
[i
].val
& dwFlags
) {
722 TRACE(" %s", flag
[i
].name
);
723 dwFlags
&= ~flag
[i
].val
;
727 TRACE(" Unknown flags (%08x)\n", dwFlags
);
732 /***********************************************************************
733 * INTERNET_CloseHandle (internal)
735 * Close internet handle
738 static VOID
APPINFO_Destroy(object_header_t
*hdr
)
740 appinfo_t
*lpwai
= (appinfo_t
*)hdr
;
744 heap_free(lpwai
->agent
);
745 heap_free(lpwai
->proxy
);
746 heap_free(lpwai
->proxyBypass
);
747 heap_free(lpwai
->proxyUsername
);
748 heap_free(lpwai
->proxyPassword
);
751 static DWORD
APPINFO_QueryOption(object_header_t
*hdr
, DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
753 appinfo_t
*ai
= (appinfo_t
*)hdr
;
756 case INTERNET_OPTION_HANDLE_TYPE
:
757 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
759 if (*size
< sizeof(ULONG
))
760 return ERROR_INSUFFICIENT_BUFFER
;
762 *size
= sizeof(DWORD
);
763 *(DWORD
*)buffer
= INTERNET_HANDLE_TYPE_INTERNET
;
764 return ERROR_SUCCESS
;
766 case INTERNET_OPTION_USER_AGENT
: {
769 TRACE("INTERNET_OPTION_USER_AGENT\n");
774 DWORD len
= ai
->agent
? strlenW(ai
->agent
) : 0;
776 *size
= (len
+ 1) * sizeof(WCHAR
);
777 if(!buffer
|| bufsize
< *size
)
778 return ERROR_INSUFFICIENT_BUFFER
;
781 strcpyW(buffer
, ai
->agent
);
783 *(WCHAR
*)buffer
= 0;
784 /* If the buffer is copied, the returned length doesn't include
785 * the NULL terminator.
787 *size
= len
* sizeof(WCHAR
);
790 *size
= WideCharToMultiByte(CP_ACP
, 0, ai
->agent
, -1, NULL
, 0, NULL
, NULL
);
793 if(!buffer
|| bufsize
< *size
)
794 return ERROR_INSUFFICIENT_BUFFER
;
797 WideCharToMultiByte(CP_ACP
, 0, ai
->agent
, -1, buffer
, *size
, NULL
, NULL
);
800 /* If the buffer is copied, the returned length doesn't include
801 * the NULL terminator.
806 return ERROR_SUCCESS
;
809 case INTERNET_OPTION_PROXY
:
810 if(!size
) return ERROR_INVALID_PARAMETER
;
812 INTERNET_PROXY_INFOW
*pi
= (INTERNET_PROXY_INFOW
*)buffer
;
813 DWORD proxyBytesRequired
= 0, proxyBypassBytesRequired
= 0;
814 LPWSTR proxy
, proxy_bypass
;
817 proxyBytesRequired
= (lstrlenW(ai
->proxy
) + 1) * sizeof(WCHAR
);
819 proxyBypassBytesRequired
= (lstrlenW(ai
->proxyBypass
) + 1) * sizeof(WCHAR
);
820 if (*size
< sizeof(INTERNET_PROXY_INFOW
) + proxyBytesRequired
+ proxyBypassBytesRequired
)
822 *size
= sizeof(INTERNET_PROXY_INFOW
) + proxyBytesRequired
+ proxyBypassBytesRequired
;
823 return ERROR_INSUFFICIENT_BUFFER
;
825 proxy
= (LPWSTR
)((LPBYTE
)buffer
+ sizeof(INTERNET_PROXY_INFOW
));
826 proxy_bypass
= (LPWSTR
)((LPBYTE
)buffer
+ sizeof(INTERNET_PROXY_INFOW
) + proxyBytesRequired
);
828 pi
->dwAccessType
= ai
->accessType
;
829 pi
->lpszProxy
= NULL
;
830 pi
->lpszProxyBypass
= NULL
;
832 lstrcpyW(proxy
, ai
->proxy
);
833 pi
->lpszProxy
= proxy
;
836 if (ai
->proxyBypass
) {
837 lstrcpyW(proxy_bypass
, ai
->proxyBypass
);
838 pi
->lpszProxyBypass
= proxy_bypass
;
841 *size
= sizeof(INTERNET_PROXY_INFOW
) + proxyBytesRequired
+ proxyBypassBytesRequired
;
842 return ERROR_SUCCESS
;
844 INTERNET_PROXY_INFOA
*pi
= (INTERNET_PROXY_INFOA
*)buffer
;
845 DWORD proxyBytesRequired
= 0, proxyBypassBytesRequired
= 0;
846 LPSTR proxy
, proxy_bypass
;
849 proxyBytesRequired
= WideCharToMultiByte(CP_ACP
, 0, ai
->proxy
, -1, NULL
, 0, NULL
, NULL
);
851 proxyBypassBytesRequired
= WideCharToMultiByte(CP_ACP
, 0, ai
->proxyBypass
, -1,
852 NULL
, 0, NULL
, NULL
);
853 if (*size
< sizeof(INTERNET_PROXY_INFOA
) + proxyBytesRequired
+ proxyBypassBytesRequired
)
855 *size
= sizeof(INTERNET_PROXY_INFOA
) + proxyBytesRequired
+ proxyBypassBytesRequired
;
856 return ERROR_INSUFFICIENT_BUFFER
;
858 proxy
= (LPSTR
)((LPBYTE
)buffer
+ sizeof(INTERNET_PROXY_INFOA
));
859 proxy_bypass
= (LPSTR
)((LPBYTE
)buffer
+ sizeof(INTERNET_PROXY_INFOA
) + proxyBytesRequired
);
861 pi
->dwAccessType
= ai
->accessType
;
862 pi
->lpszProxy
= NULL
;
863 pi
->lpszProxyBypass
= NULL
;
865 WideCharToMultiByte(CP_ACP
, 0, ai
->proxy
, -1, proxy
, proxyBytesRequired
, NULL
, NULL
);
866 pi
->lpszProxy
= proxy
;
869 if (ai
->proxyBypass
) {
870 WideCharToMultiByte(CP_ACP
, 0, ai
->proxyBypass
, -1, proxy_bypass
,
871 proxyBypassBytesRequired
, NULL
, NULL
);
872 pi
->lpszProxyBypass
= proxy_bypass
;
875 *size
= sizeof(INTERNET_PROXY_INFOA
) + proxyBytesRequired
+ proxyBypassBytesRequired
;
876 return ERROR_SUCCESS
;
879 case INTERNET_OPTION_CONNECT_TIMEOUT
:
880 TRACE("INTERNET_OPTION_CONNECT_TIMEOUT\n");
882 if (*size
< sizeof(ULONG
))
883 return ERROR_INSUFFICIENT_BUFFER
;
885 *(ULONG
*)buffer
= ai
->connect_timeout
;
886 *size
= sizeof(ULONG
);
888 return ERROR_SUCCESS
;
891 return INET_QueryOption(hdr
, option
, buffer
, size
, unicode
);
894 static DWORD
APPINFO_SetOption(object_header_t
*hdr
, DWORD option
, void *buf
, DWORD size
)
896 appinfo_t
*ai
= (appinfo_t
*)hdr
;
899 case INTERNET_OPTION_CONNECT_TIMEOUT
:
900 TRACE("INTERNET_OPTION_CONNECT_TIMEOUT\n");
902 if(size
!= sizeof(connect_timeout
))
903 return ERROR_INTERNET_BAD_OPTION_LENGTH
;
905 return ERROR_BAD_ARGUMENTS
;
907 ai
->connect_timeout
= *(ULONG
*)buf
;
908 return ERROR_SUCCESS
;
911 return INET_SetOption(hdr
, option
, buf
, size
);
914 static const object_vtbl_t APPINFOVtbl
= {
927 /***********************************************************************
928 * InternetOpenW (WININET.@)
930 * Per-application initialization of wininet
933 * HINTERNET on success
937 HINTERNET WINAPI
InternetOpenW(LPCWSTR lpszAgent
, DWORD dwAccessType
,
938 LPCWSTR lpszProxy
, LPCWSTR lpszProxyBypass
, DWORD dwFlags
)
940 appinfo_t
*lpwai
= NULL
;
942 if (TRACE_ON(wininet
)) {
943 #define FE(x) { x, #x }
944 static const wininet_flag_info access_type
[] = {
945 FE(INTERNET_OPEN_TYPE_PRECONFIG
),
946 FE(INTERNET_OPEN_TYPE_DIRECT
),
947 FE(INTERNET_OPEN_TYPE_PROXY
),
948 FE(INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY
)
952 const char *access_type_str
= "Unknown";
954 TRACE("(%s, %i, %s, %s, %i)\n", debugstr_w(lpszAgent
), dwAccessType
,
955 debugstr_w(lpszProxy
), debugstr_w(lpszProxyBypass
), dwFlags
);
956 for (i
= 0; i
< (sizeof(access_type
) / sizeof(access_type
[0])); i
++) {
957 if (access_type
[i
].val
== dwAccessType
) {
958 access_type_str
= access_type
[i
].name
;
962 TRACE(" access type : %s\n", access_type_str
);
964 dump_INTERNET_FLAGS(dwFlags
);
967 /* Clear any error information */
968 INTERNET_SetLastError(0);
970 lpwai
= alloc_object(NULL
, &APPINFOVtbl
, sizeof(appinfo_t
));
972 SetLastError(ERROR_OUTOFMEMORY
);
976 lpwai
->hdr
.htype
= WH_HINIT
;
977 lpwai
->hdr
.dwFlags
= dwFlags
;
978 lpwai
->accessType
= dwAccessType
;
979 lpwai
->proxyUsername
= NULL
;
980 lpwai
->proxyPassword
= NULL
;
981 lpwai
->connect_timeout
= connect_timeout
;
983 lpwai
->agent
= heap_strdupW(lpszAgent
);
984 if(dwAccessType
== INTERNET_OPEN_TYPE_PRECONFIG
)
985 INTERNET_ConfigureProxy( lpwai
);
987 lpwai
->proxy
= heap_strdupW(lpszProxy
);
988 lpwai
->proxyBypass
= heap_strdupW(lpszProxyBypass
);
990 TRACE("returning %p\n", lpwai
);
992 return lpwai
->hdr
.hInternet
;
996 /***********************************************************************
997 * InternetOpenA (WININET.@)
999 * Per-application initialization of wininet
1002 * HINTERNET on success
1006 HINTERNET WINAPI
InternetOpenA(LPCSTR lpszAgent
, DWORD dwAccessType
,
1007 LPCSTR lpszProxy
, LPCSTR lpszProxyBypass
, DWORD dwFlags
)
1009 WCHAR
*szAgent
, *szProxy
, *szBypass
;
1012 TRACE("(%s, 0x%08x, %s, %s, 0x%08x)\n", debugstr_a(lpszAgent
),
1013 dwAccessType
, debugstr_a(lpszProxy
), debugstr_a(lpszProxyBypass
), dwFlags
);
1015 szAgent
= heap_strdupAtoW(lpszAgent
);
1016 szProxy
= heap_strdupAtoW(lpszProxy
);
1017 szBypass
= heap_strdupAtoW(lpszProxyBypass
);
1019 rc
= InternetOpenW(szAgent
, dwAccessType
, szProxy
, szBypass
, dwFlags
);
1023 heap_free(szBypass
);
1027 /***********************************************************************
1028 * InternetGetLastResponseInfoA (WININET.@)
1030 * Return last wininet error description on the calling thread
1033 * TRUE on success of writing to buffer
1037 BOOL WINAPI
InternetGetLastResponseInfoA(LPDWORD lpdwError
,
1038 LPSTR lpszBuffer
, LPDWORD lpdwBufferLength
)
1040 LPWITHREADERROR lpwite
= TlsGetValue(g_dwTlsErrIndex
);
1046 *lpdwError
= lpwite
->dwError
;
1047 if (lpwite
->dwError
)
1049 memcpy(lpszBuffer
, lpwite
->response
, *lpdwBufferLength
);
1050 *lpdwBufferLength
= strlen(lpszBuffer
);
1053 *lpdwBufferLength
= 0;
1058 *lpdwBufferLength
= 0;
1064 /***********************************************************************
1065 * InternetGetLastResponseInfoW (WININET.@)
1067 * Return last wininet error description on the calling thread
1070 * TRUE on success of writing to buffer
1074 BOOL WINAPI
InternetGetLastResponseInfoW(LPDWORD lpdwError
,
1075 LPWSTR lpszBuffer
, LPDWORD lpdwBufferLength
)
1077 LPWITHREADERROR lpwite
= TlsGetValue(g_dwTlsErrIndex
);
1083 *lpdwError
= lpwite
->dwError
;
1084 if (lpwite
->dwError
)
1086 memcpy(lpszBuffer
, lpwite
->response
, *lpdwBufferLength
);
1087 *lpdwBufferLength
= lstrlenW(lpszBuffer
);
1090 *lpdwBufferLength
= 0;
1095 *lpdwBufferLength
= 0;
1101 /***********************************************************************
1102 * InternetGetConnectedState (WININET.@)
1104 * Return connected state
1108 * if lpdwStatus is not null, return the status (off line,
1109 * modem, lan...) in it.
1110 * FALSE if not connected
1112 BOOL WINAPI
InternetGetConnectedState(LPDWORD lpdwStatus
, DWORD dwReserved
)
1114 TRACE("(%p, 0x%08x)\n", lpdwStatus
, dwReserved
);
1117 WARN("always returning LAN connection.\n");
1118 *lpdwStatus
= INTERNET_CONNECTION_LAN
;
1124 /***********************************************************************
1125 * InternetGetConnectedStateExW (WININET.@)
1127 * Return connected state
1131 * lpdwStatus [O] Flags specifying the status of the internet connection.
1132 * lpszConnectionName [O] Pointer to buffer to receive the friendly name of the internet connection.
1133 * dwNameLen [I] Size of the buffer, in characters.
1134 * dwReserved [I] Reserved. Must be set to 0.
1138 * if lpdwStatus is not null, return the status (off line,
1139 * modem, lan...) in it.
1140 * FALSE if not connected
1143 * If the system has no available network connections, an empty string is
1144 * stored in lpszConnectionName. If there is a LAN connection, a localized
1145 * "LAN Connection" string is stored. Presumably, if only a dial-up
1146 * connection is available then the name of the dial-up connection is
1147 * returned. Why any application, other than the "Internet Settings" CPL,
1148 * would want to use this function instead of the simpler InternetGetConnectedStateW
1149 * function is beyond me.
1151 BOOL WINAPI
InternetGetConnectedStateExW(LPDWORD lpdwStatus
, LPWSTR lpszConnectionName
,
1152 DWORD dwNameLen
, DWORD dwReserved
)
1154 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus
, lpszConnectionName
, dwNameLen
, dwReserved
);
1161 WARN("always returning LAN connection.\n");
1162 *lpdwStatus
= INTERNET_CONNECTION_LAN
;
1164 return LoadStringW(WININET_hModule
, IDS_LANCONNECTION
, lpszConnectionName
, dwNameLen
);
1168 /***********************************************************************
1169 * InternetGetConnectedStateExA (WININET.@)
1171 BOOL WINAPI
InternetGetConnectedStateExA(LPDWORD lpdwStatus
, LPSTR lpszConnectionName
,
1172 DWORD dwNameLen
, DWORD dwReserved
)
1174 LPWSTR lpwszConnectionName
= NULL
;
1177 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus
, lpszConnectionName
, dwNameLen
, dwReserved
);
1179 if (lpszConnectionName
&& dwNameLen
> 0)
1180 lpwszConnectionName
= heap_alloc(dwNameLen
* sizeof(WCHAR
));
1182 rc
= InternetGetConnectedStateExW(lpdwStatus
,lpwszConnectionName
, dwNameLen
,
1184 if (rc
&& lpwszConnectionName
)
1186 WideCharToMultiByte(CP_ACP
,0,lpwszConnectionName
,-1,lpszConnectionName
,
1187 dwNameLen
, NULL
, NULL
);
1188 heap_free(lpwszConnectionName
);
1194 /***********************************************************************
1195 * InternetConnectW (WININET.@)
1197 * Open a ftp, gopher or http session
1200 * HINTERNET a session handle on success
1204 HINTERNET WINAPI
InternetConnectW(HINTERNET hInternet
,
1205 LPCWSTR lpszServerName
, INTERNET_PORT nServerPort
,
1206 LPCWSTR lpszUserName
, LPCWSTR lpszPassword
,
1207 DWORD dwService
, DWORD dwFlags
, DWORD_PTR dwContext
)
1210 HINTERNET rc
= NULL
;
1211 DWORD res
= ERROR_SUCCESS
;
1213 TRACE("(%p, %s, %i, %s, %s, %i, %i, %lx)\n", hInternet
, debugstr_w(lpszServerName
),
1214 nServerPort
, debugstr_w(lpszUserName
), debugstr_w(lpszPassword
),
1215 dwService
, dwFlags
, dwContext
);
1217 if (!lpszServerName
)
1219 SetLastError(ERROR_INVALID_PARAMETER
);
1223 hIC
= (appinfo_t
*)get_handle_object( hInternet
);
1224 if ( (hIC
== NULL
) || (hIC
->hdr
.htype
!= WH_HINIT
) )
1226 res
= ERROR_INVALID_HANDLE
;
1232 case INTERNET_SERVICE_FTP
:
1233 rc
= FTP_Connect(hIC
, lpszServerName
, nServerPort
,
1234 lpszUserName
, lpszPassword
, dwFlags
, dwContext
, 0);
1236 res
= INTERNET_GetLastError();
1239 case INTERNET_SERVICE_HTTP
:
1240 res
= HTTP_Connect(hIC
, lpszServerName
, nServerPort
,
1241 lpszUserName
, lpszPassword
, dwFlags
, dwContext
, 0, &rc
);
1244 case INTERNET_SERVICE_GOPHER
:
1250 WININET_Release( &hIC
->hdr
);
1252 TRACE("returning %p\n", rc
);
1258 /***********************************************************************
1259 * InternetConnectA (WININET.@)
1261 * Open a ftp, gopher or http session
1264 * HINTERNET a session handle on success
1268 HINTERNET WINAPI
InternetConnectA(HINTERNET hInternet
,
1269 LPCSTR lpszServerName
, INTERNET_PORT nServerPort
,
1270 LPCSTR lpszUserName
, LPCSTR lpszPassword
,
1271 DWORD dwService
, DWORD dwFlags
, DWORD_PTR dwContext
)
1273 HINTERNET rc
= NULL
;
1274 LPWSTR szServerName
;
1278 szServerName
= heap_strdupAtoW(lpszServerName
);
1279 szUserName
= heap_strdupAtoW(lpszUserName
);
1280 szPassword
= heap_strdupAtoW(lpszPassword
);
1282 rc
= InternetConnectW(hInternet
, szServerName
, nServerPort
,
1283 szUserName
, szPassword
, dwService
, dwFlags
, dwContext
);
1285 heap_free(szServerName
);
1286 heap_free(szUserName
);
1287 heap_free(szPassword
);
1292 /***********************************************************************
1293 * InternetFindNextFileA (WININET.@)
1295 * Continues a file search from a previous call to FindFirstFile
1302 BOOL WINAPI
InternetFindNextFileA(HINTERNET hFind
, LPVOID lpvFindData
)
1305 WIN32_FIND_DATAW fd
;
1307 ret
= InternetFindNextFileW(hFind
, lpvFindData
?&fd
:NULL
);
1309 WININET_find_data_WtoA(&fd
, (LPWIN32_FIND_DATAA
)lpvFindData
);
1313 /***********************************************************************
1314 * InternetFindNextFileW (WININET.@)
1316 * Continues a file search from a previous call to FindFirstFile
1323 BOOL WINAPI
InternetFindNextFileW(HINTERNET hFind
, LPVOID lpvFindData
)
1325 object_header_t
*hdr
;
1330 hdr
= get_handle_object(hFind
);
1332 WARN("Invalid handle\n");
1333 SetLastError(ERROR_INVALID_HANDLE
);
1337 if(hdr
->vtbl
->FindNextFileW
) {
1338 res
= hdr
->vtbl
->FindNextFileW(hdr
, lpvFindData
);
1340 WARN("Handle doesn't support NextFile\n");
1341 res
= ERROR_INTERNET_INCORRECT_HANDLE_TYPE
;
1344 WININET_Release(hdr
);
1346 if(res
!= ERROR_SUCCESS
)
1348 return res
== ERROR_SUCCESS
;
1351 /***********************************************************************
1352 * InternetCloseHandle (WININET.@)
1354 * Generic close handle function
1361 BOOL WINAPI
InternetCloseHandle(HINTERNET hInternet
)
1363 object_header_t
*obj
;
1365 TRACE("%p\n", hInternet
);
1367 obj
= get_handle_object( hInternet
);
1369 SetLastError(ERROR_INVALID_HANDLE
);
1373 invalidate_handle(obj
);
1374 WININET_Release(obj
);
1380 /***********************************************************************
1381 * ConvertUrlComponentValue (Internal)
1383 * Helper function for InternetCrackUrlA
1386 static void ConvertUrlComponentValue(LPSTR
* lppszComponent
, LPDWORD dwComponentLen
,
1387 LPWSTR lpwszComponent
, DWORD dwwComponentLen
,
1388 LPCSTR lpszStart
, LPCWSTR lpwszStart
)
1390 TRACE("%p %d %p %d %p %p\n", *lppszComponent
, *dwComponentLen
, lpwszComponent
, dwwComponentLen
, lpszStart
, lpwszStart
);
1391 if (*dwComponentLen
!= 0)
1393 DWORD nASCIILength
=WideCharToMultiByte(CP_ACP
,0,lpwszComponent
,dwwComponentLen
,NULL
,0,NULL
,NULL
);
1394 if (*lppszComponent
== NULL
)
1398 int offset
= WideCharToMultiByte(CP_ACP
, 0, lpwszStart
, lpwszComponent
-lpwszStart
, NULL
, 0, NULL
, NULL
);
1399 *lppszComponent
= (LPSTR
)lpszStart
+ offset
;
1402 *lppszComponent
= NULL
;
1404 *dwComponentLen
= nASCIILength
;
1408 DWORD ncpylen
= min((*dwComponentLen
)-1, nASCIILength
);
1409 WideCharToMultiByte(CP_ACP
,0,lpwszComponent
,dwwComponentLen
,*lppszComponent
,ncpylen
+1,NULL
,NULL
);
1410 (*lppszComponent
)[ncpylen
]=0;
1411 *dwComponentLen
= ncpylen
;
1417 /***********************************************************************
1418 * InternetCrackUrlA (WININET.@)
1420 * See InternetCrackUrlW.
1422 BOOL WINAPI
InternetCrackUrlA(LPCSTR lpszUrl
, DWORD dwUrlLength
, DWORD dwFlags
,
1423 LPURL_COMPONENTSA lpUrlComponents
)
1426 URL_COMPONENTSW UCW
;
1428 WCHAR
*lpwszUrl
, *hostname
= NULL
, *username
= NULL
, *password
= NULL
, *path
= NULL
,
1429 *scheme
= NULL
, *extra
= NULL
;
1431 TRACE("(%s %u %x %p)\n",
1432 lpszUrl
? debugstr_an(lpszUrl
, dwUrlLength
? dwUrlLength
: strlen(lpszUrl
)) : "(null)",
1433 dwUrlLength
, dwFlags
, lpUrlComponents
);
1435 if (!lpszUrl
|| !*lpszUrl
|| !lpUrlComponents
||
1436 lpUrlComponents
->dwStructSize
!= sizeof(URL_COMPONENTSA
))
1438 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1444 nLength
=MultiByteToWideChar(CP_ACP
,0,lpszUrl
,dwUrlLength
,NULL
,0);
1446 /* if dwUrlLength=-1 then nLength includes null but length to
1447 InternetCrackUrlW should not include it */
1448 if (dwUrlLength
== -1) nLength
--;
1450 lpwszUrl
= heap_alloc((nLength
+ 1) * sizeof(WCHAR
));
1451 MultiByteToWideChar(CP_ACP
,0,lpszUrl
,dwUrlLength
,lpwszUrl
,nLength
+ 1);
1452 lpwszUrl
[nLength
] = '\0';
1454 memset(&UCW
,0,sizeof(UCW
));
1455 UCW
.dwStructSize
= sizeof(URL_COMPONENTSW
);
1456 if (lpUrlComponents
->dwHostNameLength
)
1458 UCW
.dwHostNameLength
= lpUrlComponents
->dwHostNameLength
;
1459 if (lpUrlComponents
->lpszHostName
)
1461 hostname
= heap_alloc(UCW
.dwHostNameLength
* sizeof(WCHAR
));
1462 UCW
.lpszHostName
= hostname
;
1465 if (lpUrlComponents
->dwUserNameLength
)
1467 UCW
.dwUserNameLength
= lpUrlComponents
->dwUserNameLength
;
1468 if (lpUrlComponents
->lpszUserName
)
1470 username
= heap_alloc(UCW
.dwUserNameLength
* sizeof(WCHAR
));
1471 UCW
.lpszUserName
= username
;
1474 if (lpUrlComponents
->dwPasswordLength
)
1476 UCW
.dwPasswordLength
= lpUrlComponents
->dwPasswordLength
;
1477 if (lpUrlComponents
->lpszPassword
)
1479 password
= heap_alloc(UCW
.dwPasswordLength
* sizeof(WCHAR
));
1480 UCW
.lpszPassword
= password
;
1483 if (lpUrlComponents
->dwUrlPathLength
)
1485 UCW
.dwUrlPathLength
= lpUrlComponents
->dwUrlPathLength
;
1486 if (lpUrlComponents
->lpszUrlPath
)
1488 path
= heap_alloc(UCW
.dwUrlPathLength
* sizeof(WCHAR
));
1489 UCW
.lpszUrlPath
= path
;
1492 if (lpUrlComponents
->dwSchemeLength
)
1494 UCW
.dwSchemeLength
= lpUrlComponents
->dwSchemeLength
;
1495 if (lpUrlComponents
->lpszScheme
)
1497 scheme
= heap_alloc(UCW
.dwSchemeLength
* sizeof(WCHAR
));
1498 UCW
.lpszScheme
= scheme
;
1501 if (lpUrlComponents
->dwExtraInfoLength
)
1503 UCW
.dwExtraInfoLength
= lpUrlComponents
->dwExtraInfoLength
;
1504 if (lpUrlComponents
->lpszExtraInfo
)
1506 extra
= heap_alloc(UCW
.dwExtraInfoLength
* sizeof(WCHAR
));
1507 UCW
.lpszExtraInfo
= extra
;
1510 if ((ret
= InternetCrackUrlW(lpwszUrl
, nLength
, dwFlags
, &UCW
)))
1512 ConvertUrlComponentValue(&lpUrlComponents
->lpszHostName
, &lpUrlComponents
->dwHostNameLength
,
1513 UCW
.lpszHostName
, UCW
.dwHostNameLength
, lpszUrl
, lpwszUrl
);
1514 ConvertUrlComponentValue(&lpUrlComponents
->lpszUserName
, &lpUrlComponents
->dwUserNameLength
,
1515 UCW
.lpszUserName
, UCW
.dwUserNameLength
, lpszUrl
, lpwszUrl
);
1516 ConvertUrlComponentValue(&lpUrlComponents
->lpszPassword
, &lpUrlComponents
->dwPasswordLength
,
1517 UCW
.lpszPassword
, UCW
.dwPasswordLength
, lpszUrl
, lpwszUrl
);
1518 ConvertUrlComponentValue(&lpUrlComponents
->lpszUrlPath
, &lpUrlComponents
->dwUrlPathLength
,
1519 UCW
.lpszUrlPath
, UCW
.dwUrlPathLength
, lpszUrl
, lpwszUrl
);
1520 ConvertUrlComponentValue(&lpUrlComponents
->lpszScheme
, &lpUrlComponents
->dwSchemeLength
,
1521 UCW
.lpszScheme
, UCW
.dwSchemeLength
, lpszUrl
, lpwszUrl
);
1522 ConvertUrlComponentValue(&lpUrlComponents
->lpszExtraInfo
, &lpUrlComponents
->dwExtraInfoLength
,
1523 UCW
.lpszExtraInfo
, UCW
.dwExtraInfoLength
, lpszUrl
, lpwszUrl
);
1525 lpUrlComponents
->nScheme
= UCW
.nScheme
;
1526 lpUrlComponents
->nPort
= UCW
.nPort
;
1528 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_a(lpszUrl
),
1529 debugstr_an(lpUrlComponents
->lpszScheme
, lpUrlComponents
->dwSchemeLength
),
1530 debugstr_an(lpUrlComponents
->lpszHostName
, lpUrlComponents
->dwHostNameLength
),
1531 debugstr_an(lpUrlComponents
->lpszUrlPath
, lpUrlComponents
->dwUrlPathLength
),
1532 debugstr_an(lpUrlComponents
->lpszExtraInfo
, lpUrlComponents
->dwExtraInfoLength
));
1534 heap_free(lpwszUrl
);
1535 heap_free(hostname
);
1536 heap_free(username
);
1537 heap_free(password
);
1544 static const WCHAR url_schemes
[][7] =
1547 {'g','o','p','h','e','r',0},
1548 {'h','t','t','p',0},
1549 {'h','t','t','p','s',0},
1550 {'f','i','l','e',0},
1551 {'n','e','w','s',0},
1552 {'m','a','i','l','t','o',0},
1556 /***********************************************************************
1557 * GetInternetSchemeW (internal)
1563 * INTERNET_SCHEME_UNKNOWN on failure
1566 static INTERNET_SCHEME
GetInternetSchemeW(LPCWSTR lpszScheme
, DWORD nMaxCmp
)
1570 TRACE("%s %d\n",debugstr_wn(lpszScheme
, nMaxCmp
), nMaxCmp
);
1572 if(lpszScheme
==NULL
)
1573 return INTERNET_SCHEME_UNKNOWN
;
1575 for (i
= 0; i
< sizeof(url_schemes
)/sizeof(url_schemes
[0]); i
++)
1576 if (!strncmpW(lpszScheme
, url_schemes
[i
], nMaxCmp
))
1577 return INTERNET_SCHEME_FIRST
+ i
;
1579 return INTERNET_SCHEME_UNKNOWN
;
1582 /***********************************************************************
1583 * SetUrlComponentValueW (Internal)
1585 * Helper function for InternetCrackUrlW
1588 * lppszComponent [O] Holds the returned string
1589 * dwComponentLen [I] Holds the size of lppszComponent
1590 * [O] Holds the length of the string in lppszComponent without '\0'
1591 * lpszStart [I] Holds the string to copy from
1592 * len [I] Holds the length of lpszStart without '\0'
1599 static BOOL
SetUrlComponentValueW(LPWSTR
* lppszComponent
, LPDWORD dwComponentLen
, LPCWSTR lpszStart
, DWORD len
)
1601 TRACE("%s (%d)\n", debugstr_wn(lpszStart
,len
), len
);
1603 if ( (*dwComponentLen
== 0) && (*lppszComponent
== NULL
) )
1606 if (*dwComponentLen
!= 0 || *lppszComponent
== NULL
)
1608 if (*lppszComponent
== NULL
)
1610 *lppszComponent
= (LPWSTR
)lpszStart
;
1611 *dwComponentLen
= len
;
1615 DWORD ncpylen
= min((*dwComponentLen
)-1, len
);
1616 memcpy(*lppszComponent
, lpszStart
, ncpylen
*sizeof(WCHAR
));
1617 (*lppszComponent
)[ncpylen
] = '\0';
1618 *dwComponentLen
= ncpylen
;
1625 /***********************************************************************
1626 * InternetCrackUrlW (WININET.@)
1628 * Break up URL into its components
1634 BOOL WINAPI
InternetCrackUrlW(LPCWSTR lpszUrl_orig
, DWORD dwUrlLength_orig
, DWORD dwFlags
,
1635 LPURL_COMPONENTSW lpUC
)
1639 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1642 LPCWSTR lpszParam
= NULL
;
1643 BOOL bIsAbsolute
= FALSE
;
1644 LPCWSTR lpszap
, lpszUrl
= lpszUrl_orig
;
1645 LPCWSTR lpszcp
= NULL
;
1646 LPWSTR lpszUrl_decode
= NULL
;
1647 DWORD dwUrlLength
= dwUrlLength_orig
;
1649 TRACE("(%s %u %x %p)\n",
1650 lpszUrl
? debugstr_wn(lpszUrl
, dwUrlLength
? dwUrlLength
: strlenW(lpszUrl
)) : "(null)",
1651 dwUrlLength
, dwFlags
, lpUC
);
1653 if (!lpszUrl_orig
|| !*lpszUrl_orig
|| !lpUC
)
1655 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
1658 if (!dwUrlLength
) dwUrlLength
= strlenW(lpszUrl
);
1660 if (dwFlags
& ICU_DECODE
)
1663 DWORD len
= dwUrlLength
+ 1;
1665 if (!(url_tmp
= heap_alloc(len
* sizeof(WCHAR
))))
1667 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1670 memcpy(url_tmp
, lpszUrl_orig
, dwUrlLength
* sizeof(WCHAR
));
1671 url_tmp
[dwUrlLength
] = 0;
1672 if (!(lpszUrl_decode
= heap_alloc(len
* sizeof(WCHAR
))))
1675 INTERNET_SetLastError(ERROR_OUTOFMEMORY
);
1678 if (InternetCanonicalizeUrlW(url_tmp
, lpszUrl_decode
, &len
, ICU_DECODE
| ICU_NO_ENCODE
))
1681 lpszUrl
= lpszUrl_decode
;
1687 /* Determine if the URI is absolute. */
1688 while (lpszap
- lpszUrl
< dwUrlLength
)
1690 if (isalnumW(*lpszap
) || *lpszap
== '+' || *lpszap
== '.' || *lpszap
== '-')
1695 if ((*lpszap
== ':') && (lpszap
- lpszUrl
>= 2))
1702 lpszcp
= lpszUrl
; /* Relative url */
1708 lpUC
->nScheme
= INTERNET_SCHEME_UNKNOWN
;
1709 lpUC
->nPort
= INTERNET_INVALID_PORT_NUMBER
;
1711 /* Parse <params> */
1712 lpszParam
= memchrW(lpszap
, ';', dwUrlLength
- (lpszap
- lpszUrl
));
1714 lpszParam
= memchrW(lpszap
, '?', dwUrlLength
- (lpszap
- lpszUrl
));
1716 lpszParam
= memchrW(lpszap
, '#', dwUrlLength
- (lpszap
- lpszUrl
));
1718 SetUrlComponentValueW(&lpUC
->lpszExtraInfo
, &lpUC
->dwExtraInfoLength
,
1719 lpszParam
, lpszParam
? dwUrlLength
-(lpszParam
-lpszUrl
) : 0);
1721 if (bIsAbsolute
) /* Parse <protocol>:[//<net_loc>] */
1725 /* Get scheme first. */
1726 lpUC
->nScheme
= GetInternetSchemeW(lpszUrl
, lpszcp
- lpszUrl
);
1727 SetUrlComponentValueW(&lpUC
->lpszScheme
, &lpUC
->dwSchemeLength
,
1728 lpszUrl
, lpszcp
- lpszUrl
);
1730 /* Eat ':' in protocol. */
1733 /* double slash indicates the net_loc portion is present */
1734 if ((lpszcp
[0] == '/') && (lpszcp
[1] == '/'))
1738 lpszNetLoc
= memchrW(lpszcp
, '/', dwUrlLength
- (lpszcp
- lpszUrl
));
1742 lpszNetLoc
= min(lpszNetLoc
, lpszParam
);
1744 lpszNetLoc
= lpszParam
;
1746 else if (!lpszNetLoc
)
1747 lpszNetLoc
= lpszcp
+ dwUrlLength
-(lpszcp
-lpszUrl
);
1755 /* [<user>[<:password>]@]<host>[:<port>] */
1756 /* First find the user and password if they exist */
1758 lpszHost
= memchrW(lpszcp
, '@', dwUrlLength
- (lpszcp
- lpszUrl
));
1759 if (lpszHost
== NULL
|| lpszHost
> lpszNetLoc
)
1761 /* username and password not specified. */
1762 SetUrlComponentValueW(&lpUC
->lpszUserName
, &lpUC
->dwUserNameLength
, NULL
, 0);
1763 SetUrlComponentValueW(&lpUC
->lpszPassword
, &lpUC
->dwPasswordLength
, NULL
, 0);
1765 else /* Parse out username and password */
1767 LPCWSTR lpszUser
= lpszcp
;
1768 LPCWSTR lpszPasswd
= lpszHost
;
1770 while (lpszcp
< lpszHost
)
1773 lpszPasswd
= lpszcp
;
1778 SetUrlComponentValueW(&lpUC
->lpszUserName
, &lpUC
->dwUserNameLength
,
1779 lpszUser
, lpszPasswd
- lpszUser
);
1781 if (lpszPasswd
!= lpszHost
)
1783 SetUrlComponentValueW(&lpUC
->lpszPassword
, &lpUC
->dwPasswordLength
,
1784 lpszPasswd
== lpszHost
? NULL
: lpszPasswd
,
1785 lpszHost
- lpszPasswd
);
1787 lpszcp
++; /* Advance to beginning of host */
1790 /* Parse <host><:port> */
1793 lpszPort
= lpszNetLoc
;
1795 /* special case for res:// URLs: there is no port here, so the host is the
1796 entire string up to the first '/' */
1797 if(lpUC
->nScheme
==INTERNET_SCHEME_RES
)
1799 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
,
1800 lpszHost
, lpszPort
- lpszHost
);
1805 while (lpszcp
< lpszNetLoc
)
1813 /* If the scheme is "file" and the host is just one letter, it's not a host */
1814 if(lpUC
->nScheme
==INTERNET_SCHEME_FILE
&& lpszPort
<= lpszHost
+1)
1817 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
,
1822 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
,
1823 lpszHost
, lpszPort
- lpszHost
);
1824 if (lpszPort
!= lpszNetLoc
)
1825 lpUC
->nPort
= atoiW(++lpszPort
);
1826 else switch (lpUC
->nScheme
)
1828 case INTERNET_SCHEME_HTTP
:
1829 lpUC
->nPort
= INTERNET_DEFAULT_HTTP_PORT
;
1831 case INTERNET_SCHEME_HTTPS
:
1832 lpUC
->nPort
= INTERNET_DEFAULT_HTTPS_PORT
;
1834 case INTERNET_SCHEME_FTP
:
1835 lpUC
->nPort
= INTERNET_DEFAULT_FTP_PORT
;
1837 case INTERNET_SCHEME_GOPHER
:
1838 lpUC
->nPort
= INTERNET_DEFAULT_GOPHER_PORT
;
1849 SetUrlComponentValueW(&lpUC
->lpszUserName
, &lpUC
->dwUserNameLength
, NULL
, 0);
1850 SetUrlComponentValueW(&lpUC
->lpszPassword
, &lpUC
->dwPasswordLength
, NULL
, 0);
1851 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
, NULL
, 0);
1856 SetUrlComponentValueW(&lpUC
->lpszScheme
, &lpUC
->dwSchemeLength
, NULL
, 0);
1857 SetUrlComponentValueW(&lpUC
->lpszUserName
, &lpUC
->dwUserNameLength
, NULL
, 0);
1858 SetUrlComponentValueW(&lpUC
->lpszPassword
, &lpUC
->dwPasswordLength
, NULL
, 0);
1859 SetUrlComponentValueW(&lpUC
->lpszHostName
, &lpUC
->dwHostNameLength
, NULL
, 0);
1862 /* Here lpszcp points to:
1864 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1865 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1867 if (lpszcp
!= 0 && lpszcp
- lpszUrl
< dwUrlLength
&& (!lpszParam
|| lpszcp
<= lpszParam
))
1871 /* Only truncate the parameter list if it's already been saved
1872 * in lpUC->lpszExtraInfo.
1874 if (lpszParam
&& lpUC
->dwExtraInfoLength
&& lpUC
->lpszExtraInfo
)
1875 len
= lpszParam
- lpszcp
;
1878 /* Leave the parameter list in lpszUrlPath. Strip off any trailing
1879 * newlines if necessary.
1881 LPWSTR lpsznewline
= memchrW(lpszcp
, '\n', dwUrlLength
- (lpszcp
- lpszUrl
));
1882 if (lpsznewline
!= NULL
)
1883 len
= lpsznewline
- lpszcp
;
1885 len
= dwUrlLength
-(lpszcp
-lpszUrl
);
1887 if (lpUC
->dwUrlPathLength
&& lpUC
->lpszUrlPath
&&
1888 lpUC
->nScheme
== INTERNET_SCHEME_FILE
)
1890 WCHAR tmppath
[MAX_PATH
];
1894 PathCreateFromUrlW(lpszUrl_orig
, tmppath
, &len
, 0);
1899 memcpy(tmppath
, lpszcp
, len
* sizeof(WCHAR
));
1900 tmppath
[len
] = '\0';
1909 /* if ends in \. or \.. append a backslash */
1910 if (tmppath
[len
- 1] == '.' &&
1911 (tmppath
[len
- 2] == '\\' ||
1912 (tmppath
[len
- 2] == '.' && tmppath
[len
- 3] == '\\')))
1914 if (len
< MAX_PATH
- 1)
1916 tmppath
[len
] = '\\';
1917 tmppath
[len
+1] = '\0';
1921 SetUrlComponentValueW(&lpUC
->lpszUrlPath
, &lpUC
->dwUrlPathLength
,
1925 SetUrlComponentValueW(&lpUC
->lpszUrlPath
, &lpUC
->dwUrlPathLength
,
1930 if (lpUC
->lpszUrlPath
&& (lpUC
->dwUrlPathLength
> 0))
1931 lpUC
->lpszUrlPath
[0] = 0;
1932 lpUC
->dwUrlPathLength
= 0;
1935 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl
,dwUrlLength
),
1936 debugstr_wn(lpUC
->lpszScheme
,lpUC
->dwSchemeLength
),
1937 debugstr_wn(lpUC
->lpszHostName
,lpUC
->dwHostNameLength
),
1938 debugstr_wn(lpUC
->lpszUrlPath
,lpUC
->dwUrlPathLength
),
1939 debugstr_wn(lpUC
->lpszExtraInfo
,lpUC
->dwExtraInfoLength
));
1941 heap_free( lpszUrl_decode
);
1945 /***********************************************************************
1946 * InternetAttemptConnect (WININET.@)
1948 * Attempt to make a connection to the internet
1951 * ERROR_SUCCESS on success
1952 * Error value on failure
1955 DWORD WINAPI
InternetAttemptConnect(DWORD dwReserved
)
1958 return ERROR_SUCCESS
;
1962 /***********************************************************************
1963 * InternetCanonicalizeUrlA (WININET.@)
1965 * Escape unsafe characters and spaces
1972 BOOL WINAPI
InternetCanonicalizeUrlA(LPCSTR lpszUrl
, LPSTR lpszBuffer
,
1973 LPDWORD lpdwBufferLength
, DWORD dwFlags
)
1976 DWORD dwURLFlags
= URL_WININET_COMPATIBILITY
| URL_ESCAPE_UNSAFE
;
1978 TRACE("(%s, %p, %p, 0x%08x) bufferlength: %d\n", debugstr_a(lpszUrl
), lpszBuffer
,
1979 lpdwBufferLength
, dwFlags
, lpdwBufferLength
? *lpdwBufferLength
: -1);
1981 if(dwFlags
& ICU_DECODE
)
1983 dwURLFlags
|= URL_UNESCAPE
;
1984 dwFlags
&= ~ICU_DECODE
;
1987 if(dwFlags
& ICU_ESCAPE
)
1989 dwURLFlags
|= URL_UNESCAPE
;
1990 dwFlags
&= ~ICU_ESCAPE
;
1993 if(dwFlags
& ICU_BROWSER_MODE
)
1995 dwURLFlags
|= URL_BROWSER_MODE
;
1996 dwFlags
&= ~ICU_BROWSER_MODE
;
1999 if(dwFlags
& ICU_NO_ENCODE
)
2001 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
2002 dwURLFlags
^= URL_ESCAPE_UNSAFE
;
2003 dwFlags
&= ~ICU_NO_ENCODE
;
2006 if (dwFlags
) FIXME("Unhandled flags 0x%08x\n", dwFlags
);
2008 hr
= UrlCanonicalizeA(lpszUrl
, lpszBuffer
, lpdwBufferLength
, dwURLFlags
);
2009 if (hr
== E_POINTER
) SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2010 if (hr
== E_INVALIDARG
) SetLastError(ERROR_INVALID_PARAMETER
);
2012 return (hr
== S_OK
) ? TRUE
: FALSE
;
2015 /***********************************************************************
2016 * InternetCanonicalizeUrlW (WININET.@)
2018 * Escape unsafe characters and spaces
2025 BOOL WINAPI
InternetCanonicalizeUrlW(LPCWSTR lpszUrl
, LPWSTR lpszBuffer
,
2026 LPDWORD lpdwBufferLength
, DWORD dwFlags
)
2029 DWORD dwURLFlags
= URL_WININET_COMPATIBILITY
| URL_ESCAPE_UNSAFE
;
2031 TRACE("(%s, %p, %p, 0x%08x) bufferlength: %d\n", debugstr_w(lpszUrl
), lpszBuffer
,
2032 lpdwBufferLength
, dwFlags
, lpdwBufferLength
? *lpdwBufferLength
: -1);
2034 if(dwFlags
& ICU_DECODE
)
2036 dwURLFlags
|= URL_UNESCAPE
;
2037 dwFlags
&= ~ICU_DECODE
;
2040 if(dwFlags
& ICU_ESCAPE
)
2042 dwURLFlags
|= URL_UNESCAPE
;
2043 dwFlags
&= ~ICU_ESCAPE
;
2046 if(dwFlags
& ICU_BROWSER_MODE
)
2048 dwURLFlags
|= URL_BROWSER_MODE
;
2049 dwFlags
&= ~ICU_BROWSER_MODE
;
2052 if(dwFlags
& ICU_NO_ENCODE
)
2054 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
2055 dwURLFlags
^= URL_ESCAPE_UNSAFE
;
2056 dwFlags
&= ~ICU_NO_ENCODE
;
2059 if (dwFlags
) FIXME("Unhandled flags 0x%08x\n", dwFlags
);
2061 hr
= UrlCanonicalizeW(lpszUrl
, lpszBuffer
, lpdwBufferLength
, dwURLFlags
);
2062 if (hr
== E_POINTER
) SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2063 if (hr
== E_INVALIDARG
) SetLastError(ERROR_INVALID_PARAMETER
);
2065 return (hr
== S_OK
) ? TRUE
: FALSE
;
2068 /* #################################################### */
2070 static INTERNET_STATUS_CALLBACK
set_status_callback(
2071 object_header_t
*lpwh
, INTERNET_STATUS_CALLBACK callback
, BOOL unicode
)
2073 INTERNET_STATUS_CALLBACK ret
;
2075 if (unicode
) lpwh
->dwInternalFlags
|= INET_CALLBACKW
;
2076 else lpwh
->dwInternalFlags
&= ~INET_CALLBACKW
;
2078 ret
= lpwh
->lpfnStatusCB
;
2079 lpwh
->lpfnStatusCB
= callback
;
2084 /***********************************************************************
2085 * InternetSetStatusCallbackA (WININET.@)
2087 * Sets up a callback function which is called as progress is made
2088 * during an operation.
2091 * Previous callback or NULL on success
2092 * INTERNET_INVALID_STATUS_CALLBACK on failure
2095 INTERNET_STATUS_CALLBACK WINAPI
InternetSetStatusCallbackA(
2096 HINTERNET hInternet
,INTERNET_STATUS_CALLBACK lpfnIntCB
)
2098 INTERNET_STATUS_CALLBACK retVal
;
2099 object_header_t
*lpwh
;
2101 TRACE("%p\n", hInternet
);
2103 if (!(lpwh
= get_handle_object(hInternet
)))
2104 return INTERNET_INVALID_STATUS_CALLBACK
;
2106 retVal
= set_status_callback(lpwh
, lpfnIntCB
, FALSE
);
2108 WININET_Release( lpwh
);
2112 /***********************************************************************
2113 * InternetSetStatusCallbackW (WININET.@)
2115 * Sets up a callback function which is called as progress is made
2116 * during an operation.
2119 * Previous callback or NULL on success
2120 * INTERNET_INVALID_STATUS_CALLBACK on failure
2123 INTERNET_STATUS_CALLBACK WINAPI
InternetSetStatusCallbackW(
2124 HINTERNET hInternet
,INTERNET_STATUS_CALLBACK lpfnIntCB
)
2126 INTERNET_STATUS_CALLBACK retVal
;
2127 object_header_t
*lpwh
;
2129 TRACE("%p\n", hInternet
);
2131 if (!(lpwh
= get_handle_object(hInternet
)))
2132 return INTERNET_INVALID_STATUS_CALLBACK
;
2134 retVal
= set_status_callback(lpwh
, lpfnIntCB
, TRUE
);
2136 WININET_Release( lpwh
);
2140 /***********************************************************************
2141 * InternetSetFilePointer (WININET.@)
2143 DWORD WINAPI
InternetSetFilePointer(HINTERNET hFile
, LONG lDistanceToMove
,
2144 PVOID pReserved
, DWORD dwMoveContext
, DWORD_PTR dwContext
)
2146 FIXME("(%p %d %p %d %lx): stub\n", hFile
, lDistanceToMove
, pReserved
, dwMoveContext
, dwContext
);
2150 /***********************************************************************
2151 * InternetWriteFile (WININET.@)
2153 * Write data to an open internet file
2160 BOOL WINAPI
InternetWriteFile(HINTERNET hFile
, LPCVOID lpBuffer
,
2161 DWORD dwNumOfBytesToWrite
, LPDWORD lpdwNumOfBytesWritten
)
2163 object_header_t
*lpwh
;
2166 TRACE("(%p %p %d %p)\n", hFile
, lpBuffer
, dwNumOfBytesToWrite
, lpdwNumOfBytesWritten
);
2168 lpwh
= get_handle_object( hFile
);
2170 WARN("Invalid handle\n");
2171 SetLastError(ERROR_INVALID_HANDLE
);
2175 if(lpwh
->vtbl
->WriteFile
) {
2176 res
= lpwh
->vtbl
->WriteFile(lpwh
, lpBuffer
, dwNumOfBytesToWrite
, lpdwNumOfBytesWritten
);
2178 WARN("No Writefile method.\n");
2179 res
= ERROR_INVALID_HANDLE
;
2182 WININET_Release( lpwh
);
2184 if(res
!= ERROR_SUCCESS
)
2186 return res
== ERROR_SUCCESS
;
2190 /***********************************************************************
2191 * InternetReadFile (WININET.@)
2193 * Read data from an open internet file
2200 BOOL WINAPI
InternetReadFile(HINTERNET hFile
, LPVOID lpBuffer
,
2201 DWORD dwNumOfBytesToRead
, LPDWORD pdwNumOfBytesRead
)
2203 object_header_t
*hdr
;
2204 DWORD res
= ERROR_INTERNET_INCORRECT_HANDLE_TYPE
;
2206 TRACE("%p %p %d %p\n", hFile
, lpBuffer
, dwNumOfBytesToRead
, pdwNumOfBytesRead
);
2208 hdr
= get_handle_object(hFile
);
2210 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
2214 if(hdr
->vtbl
->ReadFile
)
2215 res
= hdr
->vtbl
->ReadFile(hdr
, lpBuffer
, dwNumOfBytesToRead
, pdwNumOfBytesRead
);
2217 WININET_Release(hdr
);
2219 TRACE("-- %s (%u) (bytes read: %d)\n", res
== ERROR_SUCCESS
? "TRUE": "FALSE", res
,
2220 pdwNumOfBytesRead
? *pdwNumOfBytesRead
: -1);
2222 if(res
!= ERROR_SUCCESS
)
2224 return res
== ERROR_SUCCESS
;
2227 /***********************************************************************
2228 * InternetReadFileExA (WININET.@)
2230 * Read data from an open internet file
2233 * hFile [I] Handle returned by InternetOpenUrl or HttpOpenRequest.
2234 * lpBuffersOut [I/O] Buffer.
2235 * dwFlags [I] Flags. See notes.
2236 * dwContext [I] Context for callbacks.
2243 * The parameter dwFlags include zero or more of the following flags:
2244 *|IRF_ASYNC - Makes the call asynchronous.
2245 *|IRF_SYNC - Makes the call synchronous.
2246 *|IRF_USE_CONTEXT - Forces dwContext to be used.
2247 *|IRF_NO_WAIT - Don't block if the data is not available, just return what is available.
2249 * However, in testing IRF_USE_CONTEXT seems to have no effect - dwContext isn't used.
2252 * InternetOpenUrlA(), HttpOpenRequestA()
2254 BOOL WINAPI
InternetReadFileExA(HINTERNET hFile
, LPINTERNET_BUFFERSA lpBuffersOut
,
2255 DWORD dwFlags
, DWORD_PTR dwContext
)
2257 object_header_t
*hdr
;
2258 DWORD res
= ERROR_INTERNET_INCORRECT_HANDLE_TYPE
;
2260 TRACE("(%p %p 0x%x 0x%lx)\n", hFile
, lpBuffersOut
, dwFlags
, dwContext
);
2262 hdr
= get_handle_object(hFile
);
2264 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
2268 if(hdr
->vtbl
->ReadFileExA
)
2269 res
= hdr
->vtbl
->ReadFileExA(hdr
, lpBuffersOut
, dwFlags
, dwContext
);
2271 WININET_Release(hdr
);
2273 TRACE("-- %s (%u, bytes read: %d)\n", res
== ERROR_SUCCESS
? "TRUE": "FALSE",
2274 res
, lpBuffersOut
->dwBufferLength
);
2276 if(res
!= ERROR_SUCCESS
)
2278 return res
== ERROR_SUCCESS
;
2281 /***********************************************************************
2282 * InternetReadFileExW (WININET.@)
2284 * InternetReadFileExA()
2286 BOOL WINAPI
InternetReadFileExW(HINTERNET hFile
, LPINTERNET_BUFFERSW lpBuffer
,
2287 DWORD dwFlags
, DWORD_PTR dwContext
)
2289 object_header_t
*hdr
;
2290 DWORD res
= ERROR_INTERNET_INCORRECT_HANDLE_TYPE
;
2292 TRACE("(%p %p 0x%x 0x%lx)\n", hFile
, lpBuffer
, dwFlags
, dwContext
);
2294 hdr
= get_handle_object(hFile
);
2296 INTERNET_SetLastError(ERROR_INVALID_HANDLE
);
2300 if(hdr
->vtbl
->ReadFileExW
)
2301 res
= hdr
->vtbl
->ReadFileExW(hdr
, lpBuffer
, dwFlags
, dwContext
);
2303 WININET_Release(hdr
);
2305 TRACE("-- %s (%u, bytes read: %d)\n", res
== ERROR_SUCCESS
? "TRUE": "FALSE",
2306 res
, lpBuffer
->dwBufferLength
);
2308 if(res
!= ERROR_SUCCESS
)
2310 return res
== ERROR_SUCCESS
;
2313 static DWORD
query_global_option(DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
2315 /* FIXME: This function currently handles more options than it should. Options requiring
2316 * proper handles should be moved to proper functions */
2318 case INTERNET_OPTION_REQUEST_FLAGS
:
2319 TRACE("INTERNET_OPTION_REQUEST_FLAGS\n");
2321 if (*size
< sizeof(ULONG
))
2322 return ERROR_INSUFFICIENT_BUFFER
;
2324 *(ULONG
*)buffer
= 4;
2325 *size
= sizeof(ULONG
);
2327 return ERROR_SUCCESS
;
2329 case INTERNET_OPTION_HTTP_VERSION
:
2330 if (*size
< sizeof(HTTP_VERSION_INFO
))
2331 return ERROR_INSUFFICIENT_BUFFER
;
2334 * Presently hardcoded to 1.1
2336 ((HTTP_VERSION_INFO
*)buffer
)->dwMajorVersion
= 1;
2337 ((HTTP_VERSION_INFO
*)buffer
)->dwMinorVersion
= 1;
2338 *size
= sizeof(HTTP_VERSION_INFO
);
2340 return ERROR_SUCCESS
;
2342 case INTERNET_OPTION_CONNECTED_STATE
:
2343 FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
2345 if (*size
< sizeof(ULONG
))
2346 return ERROR_INSUFFICIENT_BUFFER
;
2348 *(ULONG
*)buffer
= INTERNET_STATE_CONNECTED
;
2349 *size
= sizeof(ULONG
);
2351 return ERROR_SUCCESS
;
2353 case INTERNET_OPTION_PROXY
: {
2357 TRACE("Getting global proxy info\n");
2358 memset(&ai
, 0, sizeof(appinfo_t
));
2359 INTERNET_ConfigureProxy(&ai
);
2361 ret
= APPINFO_QueryOption(&ai
.hdr
, INTERNET_OPTION_PROXY
, buffer
, size
, unicode
); /* FIXME */
2362 APPINFO_Destroy(&ai
.hdr
);
2366 case INTERNET_OPTION_MAX_CONNS_PER_SERVER
:
2367 TRACE("INTERNET_OPTION_MAX_CONNS_PER_SERVER\n");
2369 if (*size
< sizeof(ULONG
))
2370 return ERROR_INSUFFICIENT_BUFFER
;
2372 *(ULONG
*)buffer
= max_conns
;
2373 *size
= sizeof(ULONG
);
2375 return ERROR_SUCCESS
;
2377 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER
:
2378 TRACE("INTERNET_OPTION_MAX_CONNS_1_0_SERVER\n");
2380 if (*size
< sizeof(ULONG
))
2381 return ERROR_INSUFFICIENT_BUFFER
;
2383 *(ULONG
*)buffer
= max_1_0_conns
;
2384 *size
= sizeof(ULONG
);
2386 return ERROR_SUCCESS
;
2388 case INTERNET_OPTION_SECURITY_FLAGS
:
2389 FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
2390 return ERROR_SUCCESS
;
2392 case INTERNET_OPTION_VERSION
: {
2393 static const INTERNET_VERSION_INFO info
= { 1, 2 };
2395 TRACE("INTERNET_OPTION_VERSION\n");
2397 if (*size
< sizeof(INTERNET_VERSION_INFO
))
2398 return ERROR_INSUFFICIENT_BUFFER
;
2400 memcpy(buffer
, &info
, sizeof(info
));
2401 *size
= sizeof(info
);
2403 return ERROR_SUCCESS
;
2406 case INTERNET_OPTION_PER_CONNECTION_OPTION
: {
2407 INTERNET_PER_CONN_OPTION_LISTW
*con
= buffer
;
2408 INTERNET_PER_CONN_OPTION_LISTA
*conA
= buffer
;
2409 DWORD res
= ERROR_SUCCESS
, i
;
2413 TRACE("Getting global proxy info\n");
2414 if((ret
= INTERNET_LoadProxySettings(&pi
)))
2417 FIXME("INTERNET_OPTION_PER_CONNECTION_OPTION stub\n");
2419 if (*size
< sizeof(INTERNET_PER_CONN_OPTION_LISTW
)) {
2421 return ERROR_INSUFFICIENT_BUFFER
;
2424 for (i
= 0; i
< con
->dwOptionCount
; i
++) {
2425 INTERNET_PER_CONN_OPTIONW
*optionW
= con
->pOptions
+ i
;
2426 INTERNET_PER_CONN_OPTIONA
*optionA
= conA
->pOptions
+ i
;
2428 switch (optionW
->dwOption
) {
2429 case INTERNET_PER_CONN_FLAGS
:
2431 optionW
->Value
.dwValue
= PROXY_TYPE_PROXY
;
2433 optionW
->Value
.dwValue
= PROXY_TYPE_DIRECT
;
2436 case INTERNET_PER_CONN_PROXY_SERVER
:
2438 optionW
->Value
.pszValue
= heap_strdupW(pi
.proxy
);
2440 optionA
->Value
.pszValue
= heap_strdupWtoA(pi
.proxy
);
2443 case INTERNET_PER_CONN_PROXY_BYPASS
:
2445 optionW
->Value
.pszValue
= heap_strdupW(pi
.proxyBypass
);
2447 optionA
->Value
.pszValue
= heap_strdupWtoA(pi
.proxyBypass
);
2450 case INTERNET_PER_CONN_AUTOCONFIG_URL
:
2451 case INTERNET_PER_CONN_AUTODISCOVERY_FLAGS
:
2452 case INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL
:
2453 case INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS
:
2454 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME
:
2455 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL
:
2456 FIXME("Unhandled dwOption %d\n", optionW
->dwOption
);
2457 memset(&optionW
->Value
, 0, sizeof(optionW
->Value
));
2461 FIXME("Unknown dwOption %d\n", optionW
->dwOption
);
2462 res
= ERROR_INVALID_PARAMETER
;
2470 case INTERNET_OPTION_USER_AGENT
:
2471 return ERROR_INTERNET_INCORRECT_HANDLE_TYPE
;
2472 case INTERNET_OPTION_POLICY
:
2473 return ERROR_INVALID_PARAMETER
;
2474 case INTERNET_OPTION_CONNECT_TIMEOUT
:
2475 TRACE("INTERNET_OPTION_CONNECT_TIMEOUT\n");
2477 if (*size
< sizeof(ULONG
))
2478 return ERROR_INSUFFICIENT_BUFFER
;
2480 *(ULONG
*)buffer
= connect_timeout
;
2481 *size
= sizeof(ULONG
);
2483 return ERROR_SUCCESS
;
2486 FIXME("Stub for %d\n", option
);
2487 return ERROR_INTERNET_INCORRECT_HANDLE_TYPE
;
2490 DWORD
INET_QueryOption(object_header_t
*hdr
, DWORD option
, void *buffer
, DWORD
*size
, BOOL unicode
)
2493 case INTERNET_OPTION_CONTEXT_VALUE
:
2495 return ERROR_INVALID_PARAMETER
;
2497 if (*size
< sizeof(DWORD_PTR
)) {
2498 *size
= sizeof(DWORD_PTR
);
2499 return ERROR_INSUFFICIENT_BUFFER
;
2502 return ERROR_INVALID_PARAMETER
;
2504 *(DWORD_PTR
*)buffer
= hdr
->dwContext
;
2505 *size
= sizeof(DWORD_PTR
);
2506 return ERROR_SUCCESS
;
2508 case INTERNET_OPTION_MAX_CONNS_PER_SERVER
:
2509 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER
:
2510 WARN("Called on global option %u\n", option
);
2511 return ERROR_INTERNET_INVALID_OPERATION
;
2514 /* FIXME: we shouldn't call it here */
2515 return query_global_option(option
, buffer
, size
, unicode
);
2518 /***********************************************************************
2519 * InternetQueryOptionW (WININET.@)
2521 * Queries an options on the specified handle
2528 BOOL WINAPI
InternetQueryOptionW(HINTERNET hInternet
, DWORD dwOption
,
2529 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
)
2531 object_header_t
*hdr
;
2532 DWORD res
= ERROR_INVALID_HANDLE
;
2534 TRACE("%p %d %p %p\n", hInternet
, dwOption
, lpBuffer
, lpdwBufferLength
);
2537 hdr
= get_handle_object(hInternet
);
2539 res
= hdr
->vtbl
->QueryOption(hdr
, dwOption
, lpBuffer
, lpdwBufferLength
, TRUE
);
2540 WININET_Release(hdr
);
2543 res
= query_global_option(dwOption
, lpBuffer
, lpdwBufferLength
, TRUE
);
2546 if(res
!= ERROR_SUCCESS
)
2548 return res
== ERROR_SUCCESS
;
2551 /***********************************************************************
2552 * InternetQueryOptionA (WININET.@)
2554 * Queries an options on the specified handle
2561 BOOL WINAPI
InternetQueryOptionA(HINTERNET hInternet
, DWORD dwOption
,
2562 LPVOID lpBuffer
, LPDWORD lpdwBufferLength
)
2564 object_header_t
*hdr
;
2565 DWORD res
= ERROR_INVALID_HANDLE
;
2567 TRACE("%p %d %p %p\n", hInternet
, dwOption
, lpBuffer
, lpdwBufferLength
);
2570 hdr
= get_handle_object(hInternet
);
2572 res
= hdr
->vtbl
->QueryOption(hdr
, dwOption
, lpBuffer
, lpdwBufferLength
, FALSE
);
2573 WININET_Release(hdr
);
2576 res
= query_global_option(dwOption
, lpBuffer
, lpdwBufferLength
, FALSE
);
2579 if(res
!= ERROR_SUCCESS
)
2581 return res
== ERROR_SUCCESS
;
2584 DWORD
INET_SetOption(object_header_t
*hdr
, DWORD option
, void *buf
, DWORD size
)
2587 case INTERNET_OPTION_CALLBACK
:
2588 WARN("Not settable option %u\n", option
);
2589 return ERROR_INTERNET_OPTION_NOT_SETTABLE
;
2590 case INTERNET_OPTION_MAX_CONNS_PER_SERVER
:
2591 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER
:
2592 WARN("Called on global option %u\n", option
);
2593 return ERROR_INTERNET_INVALID_OPERATION
;
2596 return ERROR_INTERNET_INVALID_OPTION
;
2599 static DWORD
set_global_option(DWORD option
, void *buf
, DWORD size
)
2602 case INTERNET_OPTION_CALLBACK
:
2603 WARN("Not global option %u\n", option
);
2604 return ERROR_INTERNET_INCORRECT_HANDLE_TYPE
;
2606 case INTERNET_OPTION_MAX_CONNS_PER_SERVER
:
2607 TRACE("INTERNET_OPTION_MAX_CONNS_PER_SERVER\n");
2609 if(size
!= sizeof(max_conns
))
2610 return ERROR_INTERNET_BAD_OPTION_LENGTH
;
2612 return ERROR_BAD_ARGUMENTS
;
2614 max_conns
= *(ULONG
*)buf
;
2615 return ERROR_SUCCESS
;
2617 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER
:
2618 TRACE("INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER\n");
2620 if(size
!= sizeof(max_1_0_conns
))
2621 return ERROR_INTERNET_BAD_OPTION_LENGTH
;
2623 return ERROR_BAD_ARGUMENTS
;
2625 max_1_0_conns
= *(ULONG
*)buf
;
2626 return ERROR_SUCCESS
;
2628 case INTERNET_OPTION_CONNECT_TIMEOUT
:
2629 TRACE("INTERNET_OPTION_CONNECT_TIMEOUT\n");
2631 if(size
!= sizeof(connect_timeout
))
2632 return ERROR_INTERNET_BAD_OPTION_LENGTH
;
2634 return ERROR_BAD_ARGUMENTS
;
2636 connect_timeout
= *(ULONG
*)buf
;
2637 return ERROR_SUCCESS
;
2640 return ERROR_INTERNET_INVALID_OPTION
;
2643 /***********************************************************************
2644 * InternetSetOptionW (WININET.@)
2646 * Sets an options on the specified handle
2653 BOOL WINAPI
InternetSetOptionW(HINTERNET hInternet
, DWORD dwOption
,
2654 LPVOID lpBuffer
, DWORD dwBufferLength
)
2656 object_header_t
*lpwhh
;
2660 TRACE("(%p %d %p %d)\n", hInternet
, dwOption
, lpBuffer
, dwBufferLength
);
2662 lpwhh
= (object_header_t
*) get_handle_object( hInternet
);
2664 res
= lpwhh
->vtbl
->SetOption(lpwhh
, dwOption
, lpBuffer
, dwBufferLength
);
2666 res
= set_global_option(dwOption
, lpBuffer
, dwBufferLength
);
2668 if(res
!= ERROR_INTERNET_INVALID_OPTION
) {
2670 WININET_Release(lpwhh
);
2672 if(res
!= ERROR_SUCCESS
)
2675 return res
== ERROR_SUCCESS
;
2680 case INTERNET_OPTION_HTTP_VERSION
:
2682 HTTP_VERSION_INFO
* pVersion
=(HTTP_VERSION_INFO
*)lpBuffer
;
2683 FIXME("Option INTERNET_OPTION_HTTP_VERSION(%d,%d): STUB\n",pVersion
->dwMajorVersion
,pVersion
->dwMinorVersion
);
2686 case INTERNET_OPTION_ERROR_MASK
:
2689 SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2691 } else if(*(ULONG
*)lpBuffer
& (~(INTERNET_ERROR_MASK_INSERT_CDROM
|
2692 INTERNET_ERROR_MASK_COMBINED_SEC_CERT
|
2693 INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY
))) {
2694 SetLastError(ERROR_INVALID_PARAMETER
);
2696 } else if(dwBufferLength
!= sizeof(ULONG
)) {
2697 SetLastError(ERROR_INTERNET_BAD_OPTION_LENGTH
);
2700 lpwhh
->ErrorMask
= *(ULONG
*)lpBuffer
;
2703 case INTERNET_OPTION_PROXY
:
2705 INTERNET_PROXY_INFOW
*info
= lpBuffer
;
2707 if (!lpBuffer
|| dwBufferLength
< sizeof(INTERNET_PROXY_INFOW
))
2709 SetLastError(ERROR_INVALID_PARAMETER
);
2714 EnterCriticalSection( &WININET_cs
);
2715 free_global_proxy();
2716 global_proxy
= heap_alloc( sizeof(proxyinfo_t
) );
2719 if (info
->dwAccessType
== INTERNET_OPEN_TYPE_PROXY
)
2721 global_proxy
->proxyEnabled
= 1;
2722 global_proxy
->proxy
= heap_strdupW( info
->lpszProxy
);
2723 global_proxy
->proxyBypass
= heap_strdupW( info
->lpszProxyBypass
);
2727 global_proxy
->proxyEnabled
= 0;
2728 global_proxy
->proxy
= global_proxy
->proxyBypass
= NULL
;
2731 LeaveCriticalSection( &WININET_cs
);
2735 /* In general, each type of object should handle
2736 * INTERNET_OPTION_PROXY directly. This FIXME ensures it doesn't
2737 * get silently dropped.
2739 FIXME("INTERNET_OPTION_PROXY unimplemented\n");
2740 SetLastError(ERROR_INTERNET_INVALID_OPTION
);
2745 case INTERNET_OPTION_CODEPAGE
:
2747 ULONG codepage
= *(ULONG
*)lpBuffer
;
2748 FIXME("Option INTERNET_OPTION_CODEPAGE (%d): STUB\n", codepage
);
2751 case INTERNET_OPTION_REQUEST_PRIORITY
:
2753 ULONG priority
= *(ULONG
*)lpBuffer
;
2754 FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%d): STUB\n", priority
);
2757 case INTERNET_OPTION_CONNECT_TIMEOUT
:
2759 ULONG connecttimeout
= *(ULONG
*)lpBuffer
;
2760 FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%d): STUB\n", connecttimeout
);
2763 case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT
:
2765 ULONG receivetimeout
= *(ULONG
*)lpBuffer
;
2766 FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%d): STUB\n", receivetimeout
);
2769 case INTERNET_OPTION_RESET_URLCACHE_SESSION
:
2770 FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
2772 case INTERNET_OPTION_END_BROWSER_SESSION
:
2773 FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
2775 case INTERNET_OPTION_CONNECTED_STATE
:
2776 FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
2778 case INTERNET_OPTION_DISABLE_PASSPORT_AUTH
:
2779 TRACE("Option INTERNET_OPTION_DISABLE_PASSPORT_AUTH: harmless stub, since not enabled\n");
2781 case INTERNET_OPTION_SEND_TIMEOUT
:
2782 case INTERNET_OPTION_RECEIVE_TIMEOUT
:
2783 case INTERNET_OPTION_DATA_SEND_TIMEOUT
:
2785 ULONG timeout
= *(ULONG
*)lpBuffer
;
2786 FIXME("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT/DATA_SEND_TIMEOUT %d\n", timeout
);
2789 case INTERNET_OPTION_CONNECT_RETRIES
:
2791 ULONG retries
= *(ULONG
*)lpBuffer
;
2792 FIXME("INTERNET_OPTION_CONNECT_RETRIES %d\n", retries
);
2795 case INTERNET_OPTION_CONTEXT_VALUE
:
2799 SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
2802 if (!lpBuffer
|| dwBufferLength
!= sizeof(DWORD_PTR
))
2804 SetLastError(ERROR_INVALID_PARAMETER
);
2808 lpwhh
->dwContext
= *(DWORD_PTR
*)lpBuffer
;
2811 case INTERNET_OPTION_SECURITY_FLAGS
:
2812 FIXME("Option INTERNET_OPTION_SECURITY_FLAGS; STUB\n");
2814 case INTERNET_OPTION_DISABLE_AUTODIAL
:
2815 FIXME("Option INTERNET_OPTION_DISABLE_AUTODIAL; STUB\n");
2817 case INTERNET_OPTION_HTTP_DECODING
:
2818 FIXME("INTERNET_OPTION_HTTP_DECODING; STUB\n");
2819 SetLastError(ERROR_INTERNET_INVALID_OPTION
);
2822 case INTERNET_OPTION_COOKIES_3RD_PARTY
:
2823 FIXME("INTERNET_OPTION_COOKIES_3RD_PARTY; STUB\n");
2824 SetLastError(ERROR_INTERNET_INVALID_OPTION
);
2827 case INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY
:
2828 FIXME("INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY; STUB\n");
2829 SetLastError(ERROR_INTERNET_INVALID_OPTION
);
2832 case INTERNET_OPTION_CODEPAGE_PATH
:
2833 FIXME("INTERNET_OPTION_CODEPAGE_PATH; STUB\n");
2834 SetLastError(ERROR_INTERNET_INVALID_OPTION
);
2837 case INTERNET_OPTION_CODEPAGE_EXTRA
:
2838 FIXME("INTERNET_OPTION_CODEPAGE_EXTRA; STUB\n");
2839 SetLastError(ERROR_INTERNET_INVALID_OPTION
);
2842 case INTERNET_OPTION_IDN
:
2843 FIXME("INTERNET_OPTION_IDN; STUB\n");
2844 SetLastError(ERROR_INTERNET_INVALID_OPTION
);
2847 case INTERNET_OPTION_POLICY
:
2848 SetLastError(ERROR_INVALID_PARAMETER
);
2851 case INTERNET_OPTION_PER_CONNECTION_OPTION
: {
2852 INTERNET_PER_CONN_OPTION_LISTW
*con
= lpBuffer
;
2857 INTERNET_LoadProxySettings(&pi
);
2859 for (i
= 0; i
< con
->dwOptionCount
; i
++) {
2860 INTERNET_PER_CONN_OPTIONW
*option
= con
->pOptions
+ i
;
2862 switch (option
->dwOption
) {
2863 case INTERNET_PER_CONN_PROXY_SERVER
:
2864 heap_free(pi
.proxy
);
2865 pi
.proxy
= heap_strdupW(option
->Value
.pszValue
);
2868 case INTERNET_PER_CONN_FLAGS
:
2869 if(option
->Value
.dwValue
& PROXY_TYPE_PROXY
)
2870 pi
.proxyEnabled
= 1;
2873 if(option
->Value
.dwValue
!= PROXY_TYPE_DIRECT
)
2874 FIXME("Unhandled flags: 0x%x\n", option
->Value
.dwValue
);
2875 pi
.proxyEnabled
= 0;
2879 case INTERNET_PER_CONN_AUTOCONFIG_URL
:
2880 case INTERNET_PER_CONN_AUTODISCOVERY_FLAGS
:
2881 case INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL
:
2882 case INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS
:
2883 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME
:
2884 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL
:
2885 case INTERNET_PER_CONN_PROXY_BYPASS
:
2886 FIXME("Unhandled dwOption %d\n", option
->dwOption
);
2890 FIXME("Unknown dwOption %d\n", option
->dwOption
);
2891 SetLastError(ERROR_INVALID_PARAMETER
);
2896 if ((res
= INTERNET_SaveProxySettings(&pi
)))
2901 ret
= (res
== ERROR_SUCCESS
);
2905 FIXME("Option %d STUB\n",dwOption
);
2906 SetLastError(ERROR_INTERNET_INVALID_OPTION
);
2912 WININET_Release( lpwhh
);
2918 /***********************************************************************
2919 * InternetSetOptionA (WININET.@)
2921 * Sets an options on the specified handle.
2928 BOOL WINAPI
InternetSetOptionA(HINTERNET hInternet
, DWORD dwOption
,
2929 LPVOID lpBuffer
, DWORD dwBufferLength
)
2937 case INTERNET_OPTION_PROXY
:
2939 LPINTERNET_PROXY_INFOA pi
= (LPINTERNET_PROXY_INFOA
) lpBuffer
;
2940 LPINTERNET_PROXY_INFOW piw
;
2941 DWORD proxlen
, prbylen
;
2944 proxlen
= MultiByteToWideChar( CP_ACP
, 0, pi
->lpszProxy
, -1, NULL
, 0);
2945 prbylen
= MultiByteToWideChar( CP_ACP
, 0, pi
->lpszProxyBypass
, -1, NULL
, 0);
2946 wlen
= sizeof(*piw
) + proxlen
+ prbylen
;
2947 wbuffer
= heap_alloc(wlen
*sizeof(WCHAR
) );
2948 piw
= (LPINTERNET_PROXY_INFOW
) wbuffer
;
2949 piw
->dwAccessType
= pi
->dwAccessType
;
2950 prox
= (LPWSTR
) &piw
[1];
2951 prby
= &prox
[proxlen
+1];
2952 MultiByteToWideChar( CP_ACP
, 0, pi
->lpszProxy
, -1, prox
, proxlen
);
2953 MultiByteToWideChar( CP_ACP
, 0, pi
->lpszProxyBypass
, -1, prby
, prbylen
);
2954 piw
->lpszProxy
= prox
;
2955 piw
->lpszProxyBypass
= prby
;
2958 case INTERNET_OPTION_USER_AGENT
:
2959 case INTERNET_OPTION_USERNAME
:
2960 case INTERNET_OPTION_PASSWORD
:
2961 wlen
= MultiByteToWideChar( CP_ACP
, 0, lpBuffer
, dwBufferLength
,
2963 wbuffer
= heap_alloc(wlen
*sizeof(WCHAR
) );
2964 MultiByteToWideChar( CP_ACP
, 0, lpBuffer
, dwBufferLength
,
2967 case INTERNET_OPTION_PER_CONNECTION_OPTION
: {
2969 INTERNET_PER_CONN_OPTION_LISTW
*listW
;
2970 INTERNET_PER_CONN_OPTION_LISTA
*listA
= lpBuffer
;
2971 wlen
= sizeof(INTERNET_PER_CONN_OPTION_LISTW
);
2972 wbuffer
= heap_alloc(wlen
);
2975 listW
->dwSize
= sizeof(INTERNET_PER_CONN_OPTION_LISTW
);
2976 if (listA
->pszConnection
)
2978 wlen
= MultiByteToWideChar( CP_ACP
, 0, listA
->pszConnection
, -1, NULL
, 0 );
2979 listW
->pszConnection
= heap_alloc(wlen
*sizeof(WCHAR
));
2980 MultiByteToWideChar( CP_ACP
, 0, listA
->pszConnection
, -1, listW
->pszConnection
, wlen
);
2983 listW
->pszConnection
= NULL
;
2984 listW
->dwOptionCount
= listA
->dwOptionCount
;
2985 listW
->dwOptionError
= listA
->dwOptionError
;
2986 listW
->pOptions
= heap_alloc(sizeof(INTERNET_PER_CONN_OPTIONW
) * listA
->dwOptionCount
);
2988 for (i
= 0; i
< listA
->dwOptionCount
; ++i
) {
2989 INTERNET_PER_CONN_OPTIONA
*optA
= listA
->pOptions
+ i
;
2990 INTERNET_PER_CONN_OPTIONW
*optW
= listW
->pOptions
+ i
;
2992 optW
->dwOption
= optA
->dwOption
;
2994 switch (optA
->dwOption
) {
2995 case INTERNET_PER_CONN_AUTOCONFIG_URL
:
2996 case INTERNET_PER_CONN_PROXY_BYPASS
:
2997 case INTERNET_PER_CONN_PROXY_SERVER
:
2998 case INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL
:
2999 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL
:
3000 if (optA
->Value
.pszValue
)
3002 wlen
= MultiByteToWideChar( CP_ACP
, 0, optA
->Value
.pszValue
, -1, NULL
, 0 );
3003 optW
->Value
.pszValue
= heap_alloc(wlen
*sizeof(WCHAR
));
3004 MultiByteToWideChar( CP_ACP
, 0, optA
->Value
.pszValue
, -1, optW
->Value
.pszValue
, wlen
);
3007 optW
->Value
.pszValue
= NULL
;
3009 case INTERNET_PER_CONN_AUTODISCOVERY_FLAGS
:
3010 case INTERNET_PER_CONN_FLAGS
:
3011 case INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS
:
3012 optW
->Value
.dwValue
= optA
->Value
.dwValue
;
3014 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME
:
3015 optW
->Value
.ftValue
= optA
->Value
.ftValue
;
3018 WARN("Unknown PER_CONN dwOption: %d, guessing at conversion to Wide\n", optA
->dwOption
);
3019 optW
->Value
.dwValue
= optA
->Value
.dwValue
;
3027 wlen
= dwBufferLength
;
3030 r
= InternetSetOptionW(hInternet
,dwOption
, wbuffer
, wlen
);
3032 if( lpBuffer
!= wbuffer
)
3034 if (dwOption
== INTERNET_OPTION_PER_CONNECTION_OPTION
)
3036 INTERNET_PER_CONN_OPTION_LISTW
*list
= wbuffer
;
3038 for (i
= 0; i
< list
->dwOptionCount
; ++i
) {
3039 INTERNET_PER_CONN_OPTIONW
*opt
= list
->pOptions
+ i
;
3040 switch (opt
->dwOption
) {
3041 case INTERNET_PER_CONN_AUTOCONFIG_URL
:
3042 case INTERNET_PER_CONN_PROXY_BYPASS
:
3043 case INTERNET_PER_CONN_PROXY_SERVER
:
3044 case INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL
:
3045 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL
:
3046 heap_free( opt
->Value
.pszValue
);
3052 heap_free( list
->pOptions
);
3054 heap_free( wbuffer
);
3061 /***********************************************************************
3062 * InternetSetOptionExA (WININET.@)
3064 BOOL WINAPI
InternetSetOptionExA(HINTERNET hInternet
, DWORD dwOption
,
3065 LPVOID lpBuffer
, DWORD dwBufferLength
, DWORD dwFlags
)
3067 FIXME("Flags %08x ignored\n", dwFlags
);
3068 return InternetSetOptionA( hInternet
, dwOption
, lpBuffer
, dwBufferLength
);
3071 /***********************************************************************
3072 * InternetSetOptionExW (WININET.@)
3074 BOOL WINAPI
InternetSetOptionExW(HINTERNET hInternet
, DWORD dwOption
,
3075 LPVOID lpBuffer
, DWORD dwBufferLength
, DWORD dwFlags
)
3077 FIXME("Flags %08x ignored\n", dwFlags
);
3078 if( dwFlags
& ~ISO_VALID_FLAGS
)
3080 SetLastError( ERROR_INVALID_PARAMETER
);
3083 return InternetSetOptionW( hInternet
, dwOption
, lpBuffer
, dwBufferLength
);
3086 static const WCHAR WININET_wkday
[7][4] =
3087 { { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
3088 { 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
3089 static const WCHAR WININET_month
[12][4] =
3090 { { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
3091 { 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
3092 { 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
3094 /***********************************************************************
3095 * InternetTimeFromSystemTimeA (WININET.@)
3097 BOOL WINAPI
InternetTimeFromSystemTimeA( const SYSTEMTIME
* time
, DWORD format
, LPSTR string
, DWORD size
)
3100 WCHAR stringW
[INTERNET_RFC1123_BUFSIZE
];
3102 TRACE( "%p 0x%08x %p 0x%08x\n", time
, format
, string
, size
);
3104 if (!time
|| !string
|| format
!= INTERNET_RFC1123_FORMAT
)
3106 SetLastError(ERROR_INVALID_PARAMETER
);
3110 if (size
< INTERNET_RFC1123_BUFSIZE
* sizeof(*string
))
3112 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
3116 ret
= InternetTimeFromSystemTimeW( time
, format
, stringW
, sizeof(stringW
) );
3117 if (ret
) WideCharToMultiByte( CP_ACP
, 0, stringW
, -1, string
, size
, NULL
, NULL
);
3122 /***********************************************************************
3123 * InternetTimeFromSystemTimeW (WININET.@)
3125 BOOL WINAPI
InternetTimeFromSystemTimeW( const SYSTEMTIME
* time
, DWORD format
, LPWSTR string
, DWORD size
)
3127 static const WCHAR date
[] =
3128 { '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
3129 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
3131 TRACE( "%p 0x%08x %p 0x%08x\n", time
, format
, string
, size
);
3133 if (!time
|| !string
|| format
!= INTERNET_RFC1123_FORMAT
)
3135 SetLastError(ERROR_INVALID_PARAMETER
);
3139 if (size
< INTERNET_RFC1123_BUFSIZE
* sizeof(*string
))
3141 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
3145 sprintfW( string
, date
,
3146 WININET_wkday
[time
->wDayOfWeek
],
3148 WININET_month
[time
->wMonth
- 1],
3157 /***********************************************************************
3158 * InternetTimeToSystemTimeA (WININET.@)
3160 BOOL WINAPI
InternetTimeToSystemTimeA( LPCSTR string
, SYSTEMTIME
* time
, DWORD reserved
)
3165 TRACE( "%s %p 0x%08x\n", debugstr_a(string
), time
, reserved
);
3167 stringW
= heap_strdupAtoW(string
);
3170 ret
= InternetTimeToSystemTimeW( stringW
, time
, reserved
);
3171 heap_free( stringW
);
3176 /***********************************************************************
3177 * InternetTimeToSystemTimeW (WININET.@)
3179 BOOL WINAPI
InternetTimeToSystemTimeW( LPCWSTR string
, SYSTEMTIME
* time
, DWORD reserved
)
3182 const WCHAR
*s
= string
;
3185 TRACE( "%s %p 0x%08x\n", debugstr_w(string
), time
, reserved
);
3187 if (!string
|| !time
) return FALSE
;
3189 /* Windows does this too */
3190 GetSystemTime( time
);
3192 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
3193 * a SYSTEMTIME structure.
3196 while (*s
&& !isalphaW( *s
)) s
++;
3197 if (s
[0] == '\0' || s
[1] == '\0' || s
[2] == '\0') return TRUE
;
3198 time
->wDayOfWeek
= 7;
3200 for (i
= 0; i
< 7; i
++)
3202 if (toupperW( WININET_wkday
[i
][0] ) == toupperW( s
[0] ) &&
3203 toupperW( WININET_wkday
[i
][1] ) == toupperW( s
[1] ) &&
3204 toupperW( WININET_wkday
[i
][2] ) == toupperW( s
[2] ) )
3206 time
->wDayOfWeek
= i
;
3211 if (time
->wDayOfWeek
> 6) return TRUE
;
3212 while (*s
&& !isdigitW( *s
)) s
++;
3213 time
->wDay
= strtolW( s
, &end
, 10 );
3216 while (*s
&& !isalphaW( *s
)) s
++;
3217 if (s
[0] == '\0' || s
[1] == '\0' || s
[2] == '\0') return TRUE
;
3220 for (i
= 0; i
< 12; i
++)
3222 if (toupperW( WININET_month
[i
][0]) == toupperW( s
[0] ) &&
3223 toupperW( WININET_month
[i
][1]) == toupperW( s
[1] ) &&
3224 toupperW( WININET_month
[i
][2]) == toupperW( s
[2] ) )
3226 time
->wMonth
= i
+ 1;
3230 if (time
->wMonth
== 0) return TRUE
;
3232 while (*s
&& !isdigitW( *s
)) s
++;
3233 if (*s
== '\0') return TRUE
;
3234 time
->wYear
= strtolW( s
, &end
, 10 );
3237 while (*s
&& !isdigitW( *s
)) s
++;
3238 if (*s
== '\0') return TRUE
;
3239 time
->wHour
= strtolW( s
, &end
, 10 );
3242 while (*s
&& !isdigitW( *s
)) s
++;
3243 if (*s
== '\0') return TRUE
;
3244 time
->wMinute
= strtolW( s
, &end
, 10 );
3247 while (*s
&& !isdigitW( *s
)) s
++;
3248 if (*s
== '\0') return TRUE
;
3249 time
->wSecond
= strtolW( s
, &end
, 10 );
3252 time
->wMilliseconds
= 0;
3256 /***********************************************************************
3257 * InternetCheckConnectionW (WININET.@)
3259 * Pings a requested host to check internet connection
3262 * TRUE on success and FALSE on failure. If a failure then
3263 * ERROR_NOT_CONNECTED is placed into GetLastError
3266 BOOL WINAPI
InternetCheckConnectionW( LPCWSTR lpszUrl
, DWORD dwFlags
, DWORD dwReserved
)
3269 * this is a kludge which runs the resident ping program and reads the output.
3271 * Anyone have a better idea?
3275 static const CHAR ping
[] = "ping -c 1 ";
3276 static const CHAR redirect
[] = " >/dev/null 2>/dev/null";
3277 CHAR
*command
= NULL
;
3278 WCHAR hostW
[INTERNET_MAX_HOST_NAME_LENGTH
];
3286 * Crack or set the Address
3288 if (lpszUrl
== NULL
)
3291 * According to the doc we are supposed to use the ip for the next
3292 * server in the WnInet internal server database. I have
3293 * no idea what that is or how to get it.
3295 * So someone needs to implement this.
3297 FIXME("Unimplemented with URL of NULL\n");
3302 URL_COMPONENTSW components
;
3304 ZeroMemory(&components
,sizeof(URL_COMPONENTSW
));
3305 components
.lpszHostName
= (LPWSTR
)hostW
;
3306 components
.dwHostNameLength
= INTERNET_MAX_HOST_NAME_LENGTH
;
3308 if (!InternetCrackUrlW(lpszUrl
,0,0,&components
))
3311 TRACE("host name : %s\n",debugstr_w(components
.lpszHostName
));
3312 port
= components
.nPort
;
3313 TRACE("port: %d\n", port
);
3316 if (dwFlags
& FLAG_ICC_FORCE_CONNECTION
)
3318 struct sockaddr_storage saddr
;
3319 socklen_t sa_len
= sizeof(saddr
);
3322 if (!GetAddress(hostW
, port
, (struct sockaddr
*)&saddr
, &sa_len
))
3324 fd
= socket(saddr
.ss_family
, SOCK_STREAM
, 0);
3327 if (connect(fd
, (struct sockaddr
*)&saddr
, sa_len
) == 0)
3335 * Build our ping command
3337 len
= WideCharToMultiByte(CP_UNIXCP
, 0, hostW
, -1, NULL
, 0, NULL
, NULL
);
3338 command
= heap_alloc(strlen(ping
)+len
+strlen(redirect
));
3339 strcpy(command
,ping
);
3340 WideCharToMultiByte(CP_UNIXCP
, 0, hostW
, -1, command
+strlen(ping
), len
, NULL
, NULL
);
3341 strcat(command
,redirect
);
3343 TRACE("Ping command is : %s\n",command
);
3345 status
= system(command
);
3347 TRACE("Ping returned a code of %i\n",status
);
3349 /* Ping return code of 0 indicates success */
3355 heap_free( command
);
3357 INTERNET_SetLastError(ERROR_NOT_CONNECTED
);
3363 /***********************************************************************
3364 * InternetCheckConnectionA (WININET.@)
3366 * Pings a requested host to check internet connection
3369 * TRUE on success and FALSE on failure. If a failure then
3370 * ERROR_NOT_CONNECTED is placed into GetLastError
3373 BOOL WINAPI
InternetCheckConnectionA(LPCSTR lpszUrl
, DWORD dwFlags
, DWORD dwReserved
)
3379 url
= heap_strdupAtoW(lpszUrl
);
3384 rc
= InternetCheckConnectionW(url
, dwFlags
, dwReserved
);
3391 /**********************************************************
3392 * INTERNET_InternetOpenUrlW (internal)
3397 * handle of connection or NULL on failure
3399 static HINTERNET
INTERNET_InternetOpenUrlW(appinfo_t
*hIC
, LPCWSTR lpszUrl
,
3400 LPCWSTR lpszHeaders
, DWORD dwHeadersLength
, DWORD dwFlags
, DWORD_PTR dwContext
)
3402 URL_COMPONENTSW urlComponents
;
3403 WCHAR protocol
[INTERNET_MAX_SCHEME_LENGTH
];
3404 WCHAR hostName
[INTERNET_MAX_HOST_NAME_LENGTH
];
3405 WCHAR userName
[INTERNET_MAX_USER_NAME_LENGTH
];
3406 WCHAR password
[INTERNET_MAX_PASSWORD_LENGTH
];
3407 WCHAR path
[INTERNET_MAX_PATH_LENGTH
];
3409 HINTERNET client
= NULL
, client1
= NULL
;
3412 TRACE("(%p, %s, %s, %08x, %08x, %08lx)\n", hIC
, debugstr_w(lpszUrl
), debugstr_w(lpszHeaders
),
3413 dwHeadersLength
, dwFlags
, dwContext
);
3415 urlComponents
.dwStructSize
= sizeof(URL_COMPONENTSW
);
3416 urlComponents
.lpszScheme
= protocol
;
3417 urlComponents
.dwSchemeLength
= INTERNET_MAX_SCHEME_LENGTH
;
3418 urlComponents
.lpszHostName
= hostName
;
3419 urlComponents
.dwHostNameLength
= INTERNET_MAX_HOST_NAME_LENGTH
;
3420 urlComponents
.lpszUserName
= userName
;
3421 urlComponents
.dwUserNameLength
= INTERNET_MAX_USER_NAME_LENGTH
;
3422 urlComponents
.lpszPassword
= password
;
3423 urlComponents
.dwPasswordLength
= INTERNET_MAX_PASSWORD_LENGTH
;
3424 urlComponents
.lpszUrlPath
= path
;
3425 urlComponents
.dwUrlPathLength
= INTERNET_MAX_PATH_LENGTH
;
3426 urlComponents
.lpszExtraInfo
= extra
;
3427 urlComponents
.dwExtraInfoLength
= 1024;
3428 if(!InternetCrackUrlW(lpszUrl
, strlenW(lpszUrl
), 0, &urlComponents
))
3430 switch(urlComponents
.nScheme
) {
3431 case INTERNET_SCHEME_FTP
:
3432 if(urlComponents
.nPort
== 0)
3433 urlComponents
.nPort
= INTERNET_DEFAULT_FTP_PORT
;
3434 client
= FTP_Connect(hIC
, hostName
, urlComponents
.nPort
,
3435 userName
, password
, dwFlags
, dwContext
, INET_OPENURL
);
3438 client1
= FtpOpenFileW(client
, path
, GENERIC_READ
, dwFlags
, dwContext
);
3439 if(client1
== NULL
) {
3440 InternetCloseHandle(client
);
3445 case INTERNET_SCHEME_HTTP
:
3446 case INTERNET_SCHEME_HTTPS
: {
3447 static const WCHAR szStars
[] = { '*','/','*', 0 };
3448 LPCWSTR accept
[2] = { szStars
, NULL
};
3449 if(urlComponents
.nPort
== 0) {
3450 if(urlComponents
.nScheme
== INTERNET_SCHEME_HTTP
)
3451 urlComponents
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
3453 urlComponents
.nPort
= INTERNET_DEFAULT_HTTPS_PORT
;
3455 if (urlComponents
.nScheme
== INTERNET_SCHEME_HTTPS
) dwFlags
|= INTERNET_FLAG_SECURE
;
3457 /* FIXME: should use pointers, not handles, as handles are not thread-safe */
3458 res
= HTTP_Connect(hIC
, hostName
, urlComponents
.nPort
,
3459 userName
, password
, dwFlags
, dwContext
, INET_OPENURL
, &client
);
3460 if(res
!= ERROR_SUCCESS
) {
3461 INTERNET_SetLastError(res
);
3465 if (urlComponents
.dwExtraInfoLength
) {
3467 DWORD len
= urlComponents
.dwUrlPathLength
+ urlComponents
.dwExtraInfoLength
+ 1;
3469 if (!(path_extra
= heap_alloc(len
* sizeof(WCHAR
))))
3471 InternetCloseHandle(client
);
3474 strcpyW(path_extra
, urlComponents
.lpszUrlPath
);
3475 strcatW(path_extra
, urlComponents
.lpszExtraInfo
);
3476 client1
= HttpOpenRequestW(client
, NULL
, path_extra
, NULL
, NULL
, accept
, dwFlags
, dwContext
);
3477 heap_free(path_extra
);
3480 client1
= HttpOpenRequestW(client
, NULL
, path
, NULL
, NULL
, accept
, dwFlags
, dwContext
);
3482 if(client1
== NULL
) {
3483 InternetCloseHandle(client
);
3486 HttpAddRequestHeadersW(client1
, lpszHeaders
, dwHeadersLength
, HTTP_ADDREQ_FLAG_ADD
);
3487 if (!HttpSendRequestW(client1
, NULL
, 0, NULL
, 0) &&
3488 GetLastError() != ERROR_IO_PENDING
) {
3489 InternetCloseHandle(client1
);
3494 case INTERNET_SCHEME_GOPHER
:
3495 /* gopher doesn't seem to be implemented in wine, but it's supposed
3496 * to be supported by InternetOpenUrlA. */
3498 SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME
);
3502 TRACE(" %p <--\n", client1
);
3507 /**********************************************************
3508 * InternetOpenUrlW (WININET.@)
3513 * handle of connection or NULL on failure
3515 static void AsyncInternetOpenUrlProc(WORKREQUEST
*workRequest
)
3517 struct WORKREQ_INTERNETOPENURLW
const *req
= &workRequest
->u
.InternetOpenUrlW
;
3518 appinfo_t
*hIC
= (appinfo_t
*) workRequest
->hdr
;
3522 INTERNET_InternetOpenUrlW(hIC
, req
->lpszUrl
,
3523 req
->lpszHeaders
, req
->dwHeadersLength
, req
->dwFlags
, req
->dwContext
);
3524 heap_free(req
->lpszUrl
);
3525 heap_free(req
->lpszHeaders
);
3528 HINTERNET WINAPI
InternetOpenUrlW(HINTERNET hInternet
, LPCWSTR lpszUrl
,
3529 LPCWSTR lpszHeaders
, DWORD dwHeadersLength
, DWORD dwFlags
, DWORD_PTR dwContext
)
3531 HINTERNET ret
= NULL
;
3532 appinfo_t
*hIC
= NULL
;
3534 if (TRACE_ON(wininet
)) {
3535 TRACE("(%p, %s, %s, %08x, %08x, %08lx)\n", hInternet
, debugstr_w(lpszUrl
), debugstr_w(lpszHeaders
),
3536 dwHeadersLength
, dwFlags
, dwContext
);
3538 dump_INTERNET_FLAGS(dwFlags
);
3543 SetLastError(ERROR_INVALID_PARAMETER
);
3547 hIC
= (appinfo_t
*)get_handle_object( hInternet
);
3548 if (NULL
== hIC
|| hIC
->hdr
.htype
!= WH_HINIT
) {
3549 SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
3553 if (hIC
->hdr
.dwFlags
& INTERNET_FLAG_ASYNC
) {
3554 WORKREQUEST workRequest
;
3555 struct WORKREQ_INTERNETOPENURLW
*req
;
3557 workRequest
.asyncproc
= AsyncInternetOpenUrlProc
;
3558 workRequest
.hdr
= WININET_AddRef( &hIC
->hdr
);
3559 req
= &workRequest
.u
.InternetOpenUrlW
;
3560 req
->lpszUrl
= heap_strdupW(lpszUrl
);
3561 req
->lpszHeaders
= heap_strdupW(lpszHeaders
);
3562 req
->dwHeadersLength
= dwHeadersLength
;
3563 req
->dwFlags
= dwFlags
;
3564 req
->dwContext
= dwContext
;
3566 INTERNET_AsyncCall(&workRequest
);
3568 * This is from windows.
3570 SetLastError(ERROR_IO_PENDING
);
3572 ret
= INTERNET_InternetOpenUrlW(hIC
, lpszUrl
, lpszHeaders
, dwHeadersLength
, dwFlags
, dwContext
);
3577 WININET_Release( &hIC
->hdr
);
3578 TRACE(" %p <--\n", ret
);
3583 /**********************************************************
3584 * InternetOpenUrlA (WININET.@)
3589 * handle of connection or NULL on failure
3591 HINTERNET WINAPI
InternetOpenUrlA(HINTERNET hInternet
, LPCSTR lpszUrl
,
3592 LPCSTR lpszHeaders
, DWORD dwHeadersLength
, DWORD dwFlags
, DWORD_PTR dwContext
)
3594 HINTERNET rc
= NULL
;
3595 DWORD lenHeaders
= 0;
3596 LPWSTR szUrl
= NULL
;
3597 LPWSTR szHeaders
= NULL
;
3602 szUrl
= heap_strdupAtoW(lpszUrl
);
3608 lenHeaders
= MultiByteToWideChar(CP_ACP
, 0, lpszHeaders
, dwHeadersLength
, NULL
, 0 );
3609 szHeaders
= heap_alloc(lenHeaders
*sizeof(WCHAR
));
3614 MultiByteToWideChar(CP_ACP
, 0, lpszHeaders
, dwHeadersLength
, szHeaders
, lenHeaders
);
3617 rc
= InternetOpenUrlW(hInternet
, szUrl
, szHeaders
,
3618 lenHeaders
, dwFlags
, dwContext
);
3621 heap_free(szHeaders
);
3626 static LPWITHREADERROR
INTERNET_AllocThreadError(void)
3628 LPWITHREADERROR lpwite
= heap_alloc(sizeof(*lpwite
));
3632 lpwite
->dwError
= 0;
3633 lpwite
->response
[0] = '\0';
3636 if (!TlsSetValue(g_dwTlsErrIndex
, lpwite
))
3645 /***********************************************************************
3646 * INTERNET_SetLastError (internal)
3648 * Set last thread specific error
3653 void INTERNET_SetLastError(DWORD dwError
)
3655 LPWITHREADERROR lpwite
= TlsGetValue(g_dwTlsErrIndex
);
3658 lpwite
= INTERNET_AllocThreadError();
3660 SetLastError(dwError
);
3662 lpwite
->dwError
= dwError
;
3666 /***********************************************************************
3667 * INTERNET_GetLastError (internal)
3669 * Get last thread specific error
3674 DWORD
INTERNET_GetLastError(void)
3676 LPWITHREADERROR lpwite
= TlsGetValue(g_dwTlsErrIndex
);
3677 if (!lpwite
) return 0;
3678 /* TlsGetValue clears last error, so set it again here */
3679 SetLastError(lpwite
->dwError
);
3680 return lpwite
->dwError
;
3684 /***********************************************************************
3685 * INTERNET_WorkerThreadFunc (internal)
3687 * Worker thread execution function
3692 static DWORD CALLBACK
INTERNET_WorkerThreadFunc(LPVOID lpvParam
)
3694 LPWORKREQUEST lpRequest
= lpvParam
;
3695 WORKREQUEST workRequest
;
3699 workRequest
= *lpRequest
;
3700 heap_free(lpRequest
);
3702 workRequest
.asyncproc(&workRequest
);
3703 WININET_Release( workRequest
.hdr
);
3705 if (g_dwTlsErrIndex
!= TLS_OUT_OF_INDEXES
)
3707 heap_free(TlsGetValue(g_dwTlsErrIndex
));
3708 TlsSetValue(g_dwTlsErrIndex
, NULL
);
3714 /***********************************************************************
3715 * INTERNET_AsyncCall (internal)
3717 * Retrieves work request from queue
3722 DWORD
INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest
)
3725 LPWORKREQUEST lpNewRequest
;
3729 lpNewRequest
= heap_alloc(sizeof(WORKREQUEST
));
3731 return ERROR_OUTOFMEMORY
;
3733 *lpNewRequest
= *lpWorkRequest
;
3735 bSuccess
= QueueUserWorkItem(INTERNET_WorkerThreadFunc
, lpNewRequest
, WT_EXECUTELONGFUNCTION
);
3738 heap_free(lpNewRequest
);
3739 return ERROR_INTERNET_ASYNC_THREAD_FAILED
;
3741 return ERROR_SUCCESS
;
3745 /***********************************************************************
3746 * INTERNET_GetResponseBuffer (internal)
3751 LPSTR
INTERNET_GetResponseBuffer(void)
3753 LPWITHREADERROR lpwite
= TlsGetValue(g_dwTlsErrIndex
);
3755 lpwite
= INTERNET_AllocThreadError();
3757 return lpwite
->response
;
3760 /***********************************************************************
3761 * INTERNET_GetNextLine (internal)
3763 * Parse next line in directory string listing
3766 * Pointer to beginning of next line
3771 LPSTR
INTERNET_GetNextLine(INT nSocket
, LPDWORD dwLen
)
3774 BOOL bSuccess
= FALSE
;
3776 LPSTR lpszBuffer
= INTERNET_GetResponseBuffer();
3781 pfd
.events
= POLLIN
;
3783 while (nRecv
< MAX_REPLY_LEN
)
3785 if (poll(&pfd
,1, RESPONSE_TIMEOUT
* 1000) > 0)
3787 if (recv(nSocket
, &lpszBuffer
[nRecv
], 1, 0) <= 0)
3789 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS
);
3793 if (lpszBuffer
[nRecv
] == '\n')
3798 if (lpszBuffer
[nRecv
] != '\r')
3803 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT
);
3811 lpszBuffer
[nRecv
] = '\0';
3813 TRACE(":%d %s\n", nRecv
, lpszBuffer
);
3822 /**********************************************************
3823 * InternetQueryDataAvailable (WININET.@)
3825 * Determines how much data is available to be read.
3828 * TRUE on success, FALSE if an error occurred. If
3829 * INTERNET_FLAG_ASYNC was specified in InternetOpen, and
3830 * no data is presently available, FALSE is returned with
3831 * the last error ERROR_IO_PENDING; a callback with status
3832 * INTERNET_STATUS_REQUEST_COMPLETE will be sent when more
3833 * data is available.
3835 BOOL WINAPI
InternetQueryDataAvailable( HINTERNET hFile
,
3836 LPDWORD lpdwNumberOfBytesAvailable
,
3837 DWORD dwFlags
, DWORD_PTR dwContext
)
3839 object_header_t
*hdr
;
3842 TRACE("(%p %p %x %lx)\n", hFile
, lpdwNumberOfBytesAvailable
, dwFlags
, dwContext
);
3844 hdr
= get_handle_object( hFile
);
3846 SetLastError(ERROR_INVALID_HANDLE
);
3850 if(hdr
->vtbl
->QueryDataAvailable
) {
3851 res
= hdr
->vtbl
->QueryDataAvailable(hdr
, lpdwNumberOfBytesAvailable
, dwFlags
, dwContext
);
3853 WARN("wrong handle\n");
3854 res
= ERROR_INTERNET_INCORRECT_HANDLE_TYPE
;
3857 WININET_Release(hdr
);
3859 if(res
!= ERROR_SUCCESS
)
3861 return res
== ERROR_SUCCESS
;
3865 /***********************************************************************
3866 * InternetLockRequestFile (WININET.@)
3868 BOOL WINAPI
InternetLockRequestFile( HINTERNET hInternet
, HANDLE
3875 BOOL WINAPI
InternetUnlockRequestFile( HANDLE hLockHandle
)
3882 /***********************************************************************
3883 * InternetAutodial (WININET.@)
3885 * On windows this function is supposed to dial the default internet
3886 * connection. We don't want to have Wine dial out to the internet so
3887 * we return TRUE by default. It might be nice to check if we are connected.
3894 BOOL WINAPI
InternetAutodial(DWORD dwFlags
, HWND hwndParent
)
3898 /* Tell that we are connected to the internet. */
3902 /***********************************************************************
3903 * InternetAutodialHangup (WININET.@)
3905 * Hangs up a connection made with InternetAutodial
3914 BOOL WINAPI
InternetAutodialHangup(DWORD dwReserved
)
3918 /* we didn't dial, we don't disconnect */
3922 /***********************************************************************
3923 * InternetCombineUrlA (WININET.@)
3925 * Combine a base URL with a relative URL
3933 BOOL WINAPI
InternetCombineUrlA(LPCSTR lpszBaseUrl
, LPCSTR lpszRelativeUrl
,
3934 LPSTR lpszBuffer
, LPDWORD lpdwBufferLength
,
3939 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_a(lpszBaseUrl
), debugstr_a(lpszRelativeUrl
), lpszBuffer
, lpdwBufferLength
, dwFlags
);
3941 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3942 dwFlags
^= ICU_NO_ENCODE
;
3943 hr
=UrlCombineA(lpszBaseUrl
,lpszRelativeUrl
,lpszBuffer
,lpdwBufferLength
,dwFlags
);
3948 /***********************************************************************
3949 * InternetCombineUrlW (WININET.@)
3951 * Combine a base URL with a relative URL
3959 BOOL WINAPI
InternetCombineUrlW(LPCWSTR lpszBaseUrl
, LPCWSTR lpszRelativeUrl
,
3960 LPWSTR lpszBuffer
, LPDWORD lpdwBufferLength
,
3965 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_w(lpszBaseUrl
), debugstr_w(lpszRelativeUrl
), lpszBuffer
, lpdwBufferLength
, dwFlags
);
3967 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3968 dwFlags
^= ICU_NO_ENCODE
;
3969 hr
=UrlCombineW(lpszBaseUrl
,lpszRelativeUrl
,lpszBuffer
,lpdwBufferLength
,dwFlags
);
3974 /* max port num is 65535 => 5 digits */
3975 #define MAX_WORD_DIGITS 5
3977 #define URL_GET_COMP_LENGTH(url, component) ((url)->dw##component##Length ? \
3978 (url)->dw##component##Length : strlenW((url)->lpsz##component))
3979 #define URL_GET_COMP_LENGTHA(url, component) ((url)->dw##component##Length ? \
3980 (url)->dw##component##Length : strlen((url)->lpsz##component))
3982 static BOOL
url_uses_default_port(INTERNET_SCHEME nScheme
, INTERNET_PORT nPort
)
3984 if ((nScheme
== INTERNET_SCHEME_HTTP
) &&
3985 (nPort
== INTERNET_DEFAULT_HTTP_PORT
))
3987 if ((nScheme
== INTERNET_SCHEME_HTTPS
) &&
3988 (nPort
== INTERNET_DEFAULT_HTTPS_PORT
))
3990 if ((nScheme
== INTERNET_SCHEME_FTP
) &&
3991 (nPort
== INTERNET_DEFAULT_FTP_PORT
))
3993 if ((nScheme
== INTERNET_SCHEME_GOPHER
) &&
3994 (nPort
== INTERNET_DEFAULT_GOPHER_PORT
))
3997 if (nPort
== INTERNET_INVALID_PORT_NUMBER
)
4003 /* opaque urls do not fit into the standard url hierarchy and don't have
4004 * two following slashes */
4005 static inline BOOL
scheme_is_opaque(INTERNET_SCHEME nScheme
)
4007 return (nScheme
!= INTERNET_SCHEME_FTP
) &&
4008 (nScheme
!= INTERNET_SCHEME_GOPHER
) &&
4009 (nScheme
!= INTERNET_SCHEME_HTTP
) &&
4010 (nScheme
!= INTERNET_SCHEME_HTTPS
) &&
4011 (nScheme
!= INTERNET_SCHEME_FILE
);
4014 static LPCWSTR
INTERNET_GetSchemeString(INTERNET_SCHEME scheme
)
4017 if (scheme
< INTERNET_SCHEME_FIRST
)
4019 index
= scheme
- INTERNET_SCHEME_FIRST
;
4020 if (index
>= sizeof(url_schemes
)/sizeof(url_schemes
[0]))
4022 return (LPCWSTR
)url_schemes
[index
];
4025 /* we can calculate using ansi strings because we're just
4026 * calculating string length, not size
4028 static BOOL
calc_url_length(LPURL_COMPONENTSW lpUrlComponents
,
4029 LPDWORD lpdwUrlLength
)
4031 INTERNET_SCHEME nScheme
;
4035 if (lpUrlComponents
->lpszScheme
)
4037 DWORD dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, Scheme
);
4038 *lpdwUrlLength
+= dwLen
;
4039 nScheme
= GetInternetSchemeW(lpUrlComponents
->lpszScheme
, dwLen
);
4045 nScheme
= lpUrlComponents
->nScheme
;
4047 if (nScheme
== INTERNET_SCHEME_DEFAULT
)
4048 nScheme
= INTERNET_SCHEME_HTTP
;
4049 scheme
= INTERNET_GetSchemeString(nScheme
);
4050 *lpdwUrlLength
+= strlenW(scheme
);
4053 (*lpdwUrlLength
)++; /* ':' */
4054 if (!scheme_is_opaque(nScheme
) || lpUrlComponents
->lpszHostName
)
4055 *lpdwUrlLength
+= strlen("//");
4057 if (lpUrlComponents
->lpszUserName
)
4059 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, UserName
);
4060 *lpdwUrlLength
+= strlen("@");
4064 if (lpUrlComponents
->lpszPassword
)
4066 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
4071 if (lpUrlComponents
->lpszPassword
)
4073 *lpdwUrlLength
+= strlen(":");
4074 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, Password
);
4077 if (lpUrlComponents
->lpszHostName
)
4079 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, HostName
);
4081 if (!url_uses_default_port(nScheme
, lpUrlComponents
->nPort
))
4083 char szPort
[MAX_WORD_DIGITS
+1];
4085 sprintf(szPort
, "%d", lpUrlComponents
->nPort
);
4086 *lpdwUrlLength
+= strlen(szPort
);
4087 *lpdwUrlLength
+= strlen(":");
4090 if (lpUrlComponents
->lpszUrlPath
&& *lpUrlComponents
->lpszUrlPath
!= '/')
4091 (*lpdwUrlLength
)++; /* '/' */
4094 if (lpUrlComponents
->lpszUrlPath
)
4095 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, UrlPath
);
4097 if (lpUrlComponents
->lpszExtraInfo
)
4098 *lpdwUrlLength
+= URL_GET_COMP_LENGTH(lpUrlComponents
, ExtraInfo
);
4103 static void convert_urlcomp_atow(LPURL_COMPONENTSA lpUrlComponents
, LPURL_COMPONENTSW urlCompW
)
4107 ZeroMemory(urlCompW
, sizeof(URL_COMPONENTSW
));
4109 urlCompW
->dwStructSize
= sizeof(URL_COMPONENTSW
);
4110 urlCompW
->dwSchemeLength
= lpUrlComponents
->dwSchemeLength
;
4111 urlCompW
->nScheme
= lpUrlComponents
->nScheme
;
4112 urlCompW
->dwHostNameLength
= lpUrlComponents
->dwHostNameLength
;
4113 urlCompW
->nPort
= lpUrlComponents
->nPort
;
4114 urlCompW
->dwUserNameLength
= lpUrlComponents
->dwUserNameLength
;
4115 urlCompW
->dwPasswordLength
= lpUrlComponents
->dwPasswordLength
;
4116 urlCompW
->dwUrlPathLength
= lpUrlComponents
->dwUrlPathLength
;
4117 urlCompW
->dwExtraInfoLength
= lpUrlComponents
->dwExtraInfoLength
;
4119 if (lpUrlComponents
->lpszScheme
)
4121 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, Scheme
) + 1;
4122 urlCompW
->lpszScheme
= heap_alloc(len
* sizeof(WCHAR
));
4123 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszScheme
,
4124 -1, urlCompW
->lpszScheme
, len
);
4127 if (lpUrlComponents
->lpszHostName
)
4129 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, HostName
) + 1;
4130 urlCompW
->lpszHostName
= heap_alloc(len
* sizeof(WCHAR
));
4131 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszHostName
,
4132 -1, urlCompW
->lpszHostName
, len
);
4135 if (lpUrlComponents
->lpszUserName
)
4137 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, UserName
) + 1;
4138 urlCompW
->lpszUserName
= heap_alloc(len
* sizeof(WCHAR
));
4139 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszUserName
,
4140 -1, urlCompW
->lpszUserName
, len
);
4143 if (lpUrlComponents
->lpszPassword
)
4145 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, Password
) + 1;
4146 urlCompW
->lpszPassword
= heap_alloc(len
* sizeof(WCHAR
));
4147 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszPassword
,
4148 -1, urlCompW
->lpszPassword
, len
);
4151 if (lpUrlComponents
->lpszUrlPath
)
4153 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, UrlPath
) + 1;
4154 urlCompW
->lpszUrlPath
= heap_alloc(len
* sizeof(WCHAR
));
4155 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszUrlPath
,
4156 -1, urlCompW
->lpszUrlPath
, len
);
4159 if (lpUrlComponents
->lpszExtraInfo
)
4161 len
= URL_GET_COMP_LENGTHA(lpUrlComponents
, ExtraInfo
) + 1;
4162 urlCompW
->lpszExtraInfo
= heap_alloc(len
* sizeof(WCHAR
));
4163 MultiByteToWideChar(CP_ACP
, 0, lpUrlComponents
->lpszExtraInfo
,
4164 -1, urlCompW
->lpszExtraInfo
, len
);
4168 /***********************************************************************
4169 * InternetCreateUrlA (WININET.@)
4171 * See InternetCreateUrlW.
4173 BOOL WINAPI
InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents
, DWORD dwFlags
,
4174 LPSTR lpszUrl
, LPDWORD lpdwUrlLength
)
4178 URL_COMPONENTSW urlCompW
;
4180 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents
, dwFlags
, lpszUrl
, lpdwUrlLength
);
4182 if (!lpUrlComponents
|| lpUrlComponents
->dwStructSize
!= sizeof(URL_COMPONENTSW
) || !lpdwUrlLength
)
4184 SetLastError(ERROR_INVALID_PARAMETER
);
4188 convert_urlcomp_atow(lpUrlComponents
, &urlCompW
);
4191 urlW
= heap_alloc(*lpdwUrlLength
* sizeof(WCHAR
));
4193 ret
= InternetCreateUrlW(&urlCompW
, dwFlags
, urlW
, lpdwUrlLength
);
4195 if (!ret
&& (GetLastError() == ERROR_INSUFFICIENT_BUFFER
))
4196 *lpdwUrlLength
/= sizeof(WCHAR
);
4198 /* on success, lpdwUrlLength points to the size of urlW in WCHARS
4199 * minus one, so add one to leave room for NULL terminator
4202 WideCharToMultiByte(CP_ACP
, 0, urlW
, -1, lpszUrl
, *lpdwUrlLength
+ 1, NULL
, NULL
);
4204 heap_free(urlCompW
.lpszScheme
);
4205 heap_free(urlCompW
.lpszHostName
);
4206 heap_free(urlCompW
.lpszUserName
);
4207 heap_free(urlCompW
.lpszPassword
);
4208 heap_free(urlCompW
.lpszUrlPath
);
4209 heap_free(urlCompW
.lpszExtraInfo
);
4214 /***********************************************************************
4215 * InternetCreateUrlW (WININET.@)
4217 * Creates a URL from its component parts.
4220 * lpUrlComponents [I] URL Components.
4221 * dwFlags [I] Flags. See notes.
4222 * lpszUrl [I] Buffer in which to store the created URL.
4223 * lpdwUrlLength [I/O] On input, the length of the buffer pointed to by
4224 * lpszUrl in characters. On output, the number of bytes
4225 * required to store the URL including terminator.
4229 * The dwFlags parameter can be zero or more of the following:
4230 *|ICU_ESCAPE - Generates escape sequences for unsafe characters in the path and extra info of the URL.
4237 BOOL WINAPI
InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents
, DWORD dwFlags
,
4238 LPWSTR lpszUrl
, LPDWORD lpdwUrlLength
)
4241 INTERNET_SCHEME nScheme
;
4243 static const WCHAR slashSlashW
[] = {'/','/'};
4244 static const WCHAR fmtW
[] = {'%','u',0};
4246 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents
, dwFlags
, lpszUrl
, lpdwUrlLength
);
4248 if (!lpUrlComponents
|| lpUrlComponents
->dwStructSize
!= sizeof(URL_COMPONENTSW
) || !lpdwUrlLength
)
4250 INTERNET_SetLastError(ERROR_INVALID_PARAMETER
);
4254 if (!calc_url_length(lpUrlComponents
, &dwLen
))
4257 if (!lpszUrl
|| *lpdwUrlLength
< dwLen
)
4259 *lpdwUrlLength
= (dwLen
+ 1) * sizeof(WCHAR
);
4260 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER
);
4264 *lpdwUrlLength
= dwLen
;
4269 if (lpUrlComponents
->lpszScheme
)
4271 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, Scheme
);
4272 memcpy(lpszUrl
, lpUrlComponents
->lpszScheme
, dwLen
* sizeof(WCHAR
));
4275 nScheme
= GetInternetSchemeW(lpUrlComponents
->lpszScheme
, dwLen
);
4280 nScheme
= lpUrlComponents
->nScheme
;
4282 if (nScheme
== INTERNET_SCHEME_DEFAULT
)
4283 nScheme
= INTERNET_SCHEME_HTTP
;
4285 scheme
= INTERNET_GetSchemeString(nScheme
);
4286 dwLen
= strlenW(scheme
);
4287 memcpy(lpszUrl
, scheme
, dwLen
* sizeof(WCHAR
));
4291 /* all schemes are followed by at least a colon */
4295 if (!scheme_is_opaque(nScheme
) || lpUrlComponents
->lpszHostName
)
4297 memcpy(lpszUrl
, slashSlashW
, sizeof(slashSlashW
));
4298 lpszUrl
+= sizeof(slashSlashW
)/sizeof(slashSlashW
[0]);
4301 if (lpUrlComponents
->lpszUserName
)
4303 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, UserName
);
4304 memcpy(lpszUrl
, lpUrlComponents
->lpszUserName
, dwLen
* sizeof(WCHAR
));
4307 if (lpUrlComponents
->lpszPassword
)
4312 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, Password
);
4313 memcpy(lpszUrl
, lpUrlComponents
->lpszPassword
, dwLen
* sizeof(WCHAR
));
4321 if (lpUrlComponents
->lpszHostName
)
4323 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, HostName
);
4324 memcpy(lpszUrl
, lpUrlComponents
->lpszHostName
, dwLen
* sizeof(WCHAR
));
4327 if (!url_uses_default_port(nScheme
, lpUrlComponents
->nPort
))
4329 WCHAR szPort
[MAX_WORD_DIGITS
+1];
4331 sprintfW(szPort
, fmtW
, lpUrlComponents
->nPort
);
4334 dwLen
= strlenW(szPort
);
4335 memcpy(lpszUrl
, szPort
, dwLen
* sizeof(WCHAR
));
4339 /* add slash between hostname and path if necessary */
4340 if (lpUrlComponents
->lpszUrlPath
&& *lpUrlComponents
->lpszUrlPath
!= '/')
4347 if (lpUrlComponents
->lpszUrlPath
)
4349 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, UrlPath
);
4350 memcpy(lpszUrl
, lpUrlComponents
->lpszUrlPath
, dwLen
* sizeof(WCHAR
));
4354 if (lpUrlComponents
->lpszExtraInfo
)
4356 dwLen
= URL_GET_COMP_LENGTH(lpUrlComponents
, ExtraInfo
);
4357 memcpy(lpszUrl
, lpUrlComponents
->lpszExtraInfo
, dwLen
* sizeof(WCHAR
));
4366 /***********************************************************************
4367 * InternetConfirmZoneCrossingA (WININET.@)
4370 DWORD WINAPI
InternetConfirmZoneCrossingA( HWND hWnd
, LPSTR szUrlPrev
, LPSTR szUrlNew
, BOOL bPost
)
4372 FIXME("(%p, %s, %s, %x) stub\n", hWnd
, debugstr_a(szUrlPrev
), debugstr_a(szUrlNew
), bPost
);
4373 return ERROR_SUCCESS
;
4376 /***********************************************************************
4377 * InternetConfirmZoneCrossingW (WININET.@)
4380 DWORD WINAPI
InternetConfirmZoneCrossingW( HWND hWnd
, LPWSTR szUrlPrev
, LPWSTR szUrlNew
, BOOL bPost
)
4382 FIXME("(%p, %s, %s, %x) stub\n", hWnd
, debugstr_w(szUrlPrev
), debugstr_w(szUrlNew
), bPost
);
4383 return ERROR_SUCCESS
;
4386 static DWORD zone_preference
= 3;
4388 /***********************************************************************
4389 * PrivacySetZonePreferenceW (WININET.@)
4391 DWORD WINAPI
PrivacySetZonePreferenceW( DWORD zone
, DWORD type
, DWORD
template, LPCWSTR preference
)
4393 FIXME( "%x %x %x %s: stub\n", zone
, type
, template, debugstr_w(preference
) );
4395 zone_preference
= template;
4399 /***********************************************************************
4400 * PrivacyGetZonePreferenceW (WININET.@)
4402 DWORD WINAPI
PrivacyGetZonePreferenceW( DWORD zone
, DWORD type
, LPDWORD
template,
4403 LPWSTR preference
, LPDWORD length
)
4405 FIXME( "%x %x %p %p %p: stub\n", zone
, type
, template, preference
, length
);
4407 if (template) *template = zone_preference
;
4411 DWORD WINAPI
InternetDialA( HWND hwndParent
, LPSTR lpszConnectoid
, DWORD dwFlags
,
4412 DWORD_PTR
* lpdwConnection
, DWORD dwReserved
)
4414 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent
, lpszConnectoid
, dwFlags
,
4415 lpdwConnection
, dwReserved
);
4416 return ERROR_SUCCESS
;
4419 DWORD WINAPI
InternetDialW( HWND hwndParent
, LPWSTR lpszConnectoid
, DWORD dwFlags
,
4420 DWORD_PTR
* lpdwConnection
, DWORD dwReserved
)
4422 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent
, lpszConnectoid
, dwFlags
,
4423 lpdwConnection
, dwReserved
);
4424 return ERROR_SUCCESS
;
4427 BOOL WINAPI
InternetGoOnlineA( LPSTR lpszURL
, HWND hwndParent
, DWORD dwReserved
)
4429 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_a(lpszURL
), hwndParent
, dwReserved
);
4433 BOOL WINAPI
InternetGoOnlineW( LPWSTR lpszURL
, HWND hwndParent
, DWORD dwReserved
)
4435 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_w(lpszURL
), hwndParent
, dwReserved
);
4439 DWORD WINAPI
InternetHangUp( DWORD_PTR dwConnection
, DWORD dwReserved
)
4441 FIXME("(0x%08lx, 0x%08x) stub\n", dwConnection
, dwReserved
);
4442 return ERROR_SUCCESS
;
4445 BOOL WINAPI
CreateMD5SSOHash( PWSTR pszChallengeInfo
, PWSTR pwszRealm
, PWSTR pwszTarget
,
4448 FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo
), debugstr_w(pwszRealm
),
4449 debugstr_w(pwszTarget
), pbHexHash
);
4453 BOOL WINAPI
ResumeSuspendedDownload( HINTERNET hInternet
, DWORD dwError
)
4455 FIXME("(%p, 0x%08x) stub\n", hInternet
, dwError
);
4459 BOOL WINAPI
InternetQueryFortezzaStatus(DWORD
*a
, DWORD_PTR b
)
4461 FIXME("(%p, %08lx) stub\n", a
, b
);
4465 DWORD WINAPI
ShowClientAuthCerts(HWND parent
)
4467 FIXME("%p: stub\n", parent
);