kernel32: FindExSearchLimitToDirectories has no effect on FindFirstFileEx.
[wine] / dlls / wininet / internet.c
1 /*
2  * Wininet
3  *
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
9  *
10  * Ulrich Czekalla
11  * Aric Stewart
12  * David Hammerton
13  *
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.
18  *
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.
23  *
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
27  */
28
29 #include "config.h"
30 #include "wine/port.h"
31
32 #define MAXHOSTNAME 100 /* from http.c */
33
34 #include <string.h>
35 #include <stdarg.h>
36 #include <stdio.h>
37 #include <sys/types.h>
38 #ifdef HAVE_SYS_SOCKET_H
39 # include <sys/socket.h>
40 #endif
41 #ifdef HAVE_SYS_TIME_H
42 # include <sys/time.h>
43 #endif
44 #include <stdlib.h>
45 #include <ctype.h>
46 #ifdef HAVE_UNISTD_H
47 # include <unistd.h>
48 #endif
49 #include <assert.h>
50
51 #include "windef.h"
52 #include "winbase.h"
53 #include "winreg.h"
54 #include "winuser.h"
55 #include "wininet.h"
56 #include "winineti.h"
57 #include "winnls.h"
58 #include "wine/debug.h"
59 #include "winerror.h"
60 #define NO_SHLWAPI_STREAM
61 #include "shlwapi.h"
62 #include "wincrypt.h"
63
64 #include "wine/exception.h"
65
66 #include "internet.h"
67 #include "resource.h"
68
69 #include "wine/unicode.h"
70
71 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
72
73 #define RESPONSE_TIMEOUT        30
74
75 typedef struct
76 {
77     DWORD  dwError;
78     CHAR   response[MAX_REPLY_LEN];
79 } WITHREADERROR, *LPWITHREADERROR;
80
81 static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr);
82 HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
83               LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext);
84
85 static DWORD g_dwTlsErrIndex = TLS_OUT_OF_INDEXES;
86 static HMODULE WININET_hModule;
87
88 #define HANDLE_CHUNK_SIZE 0x10
89
90 static CRITICAL_SECTION WININET_cs;
91 static CRITICAL_SECTION_DEBUG WININET_cs_debug = 
92 {
93     0, 0, &WININET_cs,
94     { &WININET_cs_debug.ProcessLocksList, &WININET_cs_debug.ProcessLocksList },
95       0, 0, { (DWORD_PTR)(__FILE__ ": WININET_cs") }
96 };
97 static CRITICAL_SECTION WININET_cs = { &WININET_cs_debug, -1, 0, 0, 0, 0 };
98
99 static LPWININETHANDLEHEADER *WININET_Handles;
100 static UINT WININET_dwNextHandle;
101 static UINT WININET_dwMaxHandles;
102
103 HINTERNET WININET_AllocHandle( LPWININETHANDLEHEADER info )
104 {
105     LPWININETHANDLEHEADER *p;
106     UINT handle = 0, num;
107
108     list_init( &info->children );
109
110     EnterCriticalSection( &WININET_cs );
111     if( !WININET_dwMaxHandles )
112     {
113         num = HANDLE_CHUNK_SIZE;
114         p = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, 
115                    sizeof (UINT)* num);
116         if( !p )
117             goto end;
118         WININET_Handles = p;
119         WININET_dwMaxHandles = num;
120     }
121     if( WININET_dwMaxHandles == WININET_dwNextHandle )
122     {
123         num = WININET_dwMaxHandles + HANDLE_CHUNK_SIZE;
124         p = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
125                    WININET_Handles, sizeof (UINT)* num);
126         if( !p )
127             goto end;
128         WININET_Handles = p;
129         WININET_dwMaxHandles = num;
130     }
131
132     handle = WININET_dwNextHandle;
133     if( WININET_Handles[handle] )
134         ERR("handle isn't free but should be\n");
135     WININET_Handles[handle] = WININET_AddRef( info );
136
137     while( WININET_Handles[WININET_dwNextHandle] && 
138            (WININET_dwNextHandle < WININET_dwMaxHandles ) )
139         WININET_dwNextHandle++;
140     
141 end:
142     LeaveCriticalSection( &WININET_cs );
143
144     return info->hInternet = (HINTERNET) (handle+1);
145 }
146
147 LPWININETHANDLEHEADER WININET_AddRef( LPWININETHANDLEHEADER info )
148 {
149     info->dwRefCount++;
150     TRACE("%p -> refcount = %d\n", info, info->dwRefCount );
151     return info;
152 }
153
154 LPWININETHANDLEHEADER WININET_GetObject( HINTERNET hinternet )
155 {
156     LPWININETHANDLEHEADER info = NULL;
157     UINT handle = (UINT) hinternet;
158
159     EnterCriticalSection( &WININET_cs );
160
161     if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) && 
162         WININET_Handles[handle-1] )
163         info = WININET_AddRef( WININET_Handles[handle-1] );
164
165     LeaveCriticalSection( &WININET_cs );
166
167     TRACE("handle %d -> %p\n", handle, info);
168
169     return info;
170 }
171
172 BOOL WININET_Release( LPWININETHANDLEHEADER info )
173 {
174     info->dwRefCount--;
175     TRACE( "object %p refcount = %d\n", info, info->dwRefCount );
176     if( !info->dwRefCount )
177     {
178         if ( info->close_connection )
179         {
180             TRACE( "closing connection %p\n", info);
181             info->close_connection( info );
182         }
183         INTERNET_SendCallback(info, info->dwContext,
184                               INTERNET_STATUS_HANDLE_CLOSING, &info->hInternet,
185                               sizeof(HINTERNET));
186         TRACE( "destroying object %p\n", info);
187         if ( info->htype != WH_HINIT )
188             list_remove( &info->entry );
189         info->destroy( info );
190     }
191     return TRUE;
192 }
193
194 BOOL WININET_FreeHandle( HINTERNET hinternet )
195 {
196     BOOL ret = FALSE;
197     UINT handle = (UINT) hinternet;
198     LPWININETHANDLEHEADER info = NULL, child, next;
199
200     EnterCriticalSection( &WININET_cs );
201
202     if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) )
203     {
204         handle--;
205         if( WININET_Handles[handle] )
206         {
207             info = WININET_Handles[handle];
208             TRACE( "destroying handle %d for object %p\n", handle+1, info);
209             WININET_Handles[handle] = NULL;
210             ret = TRUE;
211         }
212     }
213
214     LeaveCriticalSection( &WININET_cs );
215
216     /* As on native when the equivalent of WININET_Release is called, the handle
217      * is already invalid, but if a new handle is created at this time it does
218      * not yet get assigned the freed handle number */
219     if( info )
220     {
221         /* Free all children as native does */
222         LIST_FOR_EACH_ENTRY_SAFE( child, next, &info->children, WININETHANDLEHEADER, entry )
223         {
224             TRACE( "freeing child handle %d for parent handle %d\n",
225                    (UINT)child->hInternet, handle+1);
226             WININET_FreeHandle( child->hInternet );
227         }
228         WININET_Release( info );
229     }
230
231     EnterCriticalSection( &WININET_cs );
232
233     if( WININET_dwNextHandle > handle && !WININET_Handles[handle] )
234         WININET_dwNextHandle = handle;
235
236     LeaveCriticalSection( &WININET_cs );
237
238     return ret;
239 }
240
241 /***********************************************************************
242  * DllMain [Internal] Initializes the internal 'WININET.DLL'.
243  *
244  * PARAMS
245  *     hinstDLL    [I] handle to the DLL's instance
246  *     fdwReason   [I]
247  *     lpvReserved [I] reserved, must be NULL
248  *
249  * RETURNS
250  *     Success: TRUE
251  *     Failure: FALSE
252  */
253
254 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
255 {
256     TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
257
258     switch (fdwReason) {
259         case DLL_PROCESS_ATTACH:
260
261             g_dwTlsErrIndex = TlsAlloc();
262
263             if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
264                 return FALSE;
265
266             URLCacheContainers_CreateDefaults();
267
268             WININET_hModule = (HMODULE)hinstDLL;
269
270         case DLL_THREAD_ATTACH:
271             break;
272
273         case DLL_THREAD_DETACH:
274             if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
275                         {
276                                 LPVOID lpwite = TlsGetValue(g_dwTlsErrIndex);
277                                 HeapFree(GetProcessHeap(), 0, lpwite);
278                         }
279             break;
280
281         case DLL_PROCESS_DETACH:
282
283             URLCacheContainers_DeleteAll();
284
285             if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
286             {
287                 HeapFree(GetProcessHeap(), 0, TlsGetValue(g_dwTlsErrIndex));
288                 TlsFree(g_dwTlsErrIndex);
289             }
290             break;
291     }
292
293     return TRUE;
294 }
295
296
297 /***********************************************************************
298  *           InternetInitializeAutoProxyDll   (WININET.@)
299  *
300  * Setup the internal proxy
301  *
302  * PARAMETERS
303  *     dwReserved
304  *
305  * RETURNS
306  *     FALSE on failure
307  *
308  */
309 BOOL WINAPI InternetInitializeAutoProxyDll(DWORD dwReserved)
310 {
311     FIXME("STUB\n");
312     INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
313     return FALSE;
314 }
315
316 /***********************************************************************
317  *           DetectAutoProxyUrl   (WININET.@)
318  *
319  * Auto detect the proxy url
320  *
321  * RETURNS
322  *     FALSE on failure
323  *
324  */
325 BOOL WINAPI DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl,
326         DWORD dwAutoProxyUrlLength, DWORD dwDetectFlags)
327 {
328     FIXME("STUB\n");
329     INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
330     return FALSE;
331 }
332
333
334 /***********************************************************************
335  *           INTERNET_ConfigureProxyFromReg
336  *
337  * FIXME:
338  * The proxy may be specified in the form 'http=proxy.my.org'
339  * Presumably that means there can be ftp=ftpproxy.my.org too.
340  */
341 static BOOL INTERNET_ConfigureProxyFromReg( LPWININETAPPINFOW lpwai )
342 {
343     HKEY key;
344     DWORD r, keytype, len, enabled;
345     LPCSTR lpszInternetSettings =
346         "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
347     static const WCHAR szProxyServer[] = { 'P','r','o','x','y','S','e','r','v','e','r', 0 };
348
349     r = RegOpenKeyA(HKEY_CURRENT_USER, lpszInternetSettings, &key);
350     if ( r != ERROR_SUCCESS )
351         return FALSE;
352
353     len = sizeof enabled;
354     r = RegQueryValueExA( key, "ProxyEnable", NULL, &keytype,
355                           (BYTE*)&enabled, &len);
356     if( (r == ERROR_SUCCESS) && enabled )
357     {
358         TRACE("Proxy is enabled.\n");
359
360         /* figure out how much memory the proxy setting takes */
361         r = RegQueryValueExW( key, szProxyServer, NULL, &keytype, 
362                               NULL, &len);
363         if( (r == ERROR_SUCCESS) && len && (keytype == REG_SZ) )
364         {
365             LPWSTR szProxy, p;
366             static const WCHAR szHttp[] = {'h','t','t','p','=',0};
367
368             szProxy=HeapAlloc( GetProcessHeap(), 0, len );
369             RegQueryValueExW( key, szProxyServer, NULL, &keytype,
370                               (BYTE*)szProxy, &len);
371
372             /* find the http proxy, and strip away everything else */
373             p = strstrW( szProxy, szHttp );
374             if( p )
375             {
376                  p += lstrlenW(szHttp);
377                  lstrcpyW( szProxy, p );
378             }
379             p = strchrW( szProxy, ' ' );
380             if( p )
381                 *p = 0;
382
383             lpwai->dwAccessType = INTERNET_OPEN_TYPE_PROXY;
384             lpwai->lpszProxy = szProxy;
385
386             TRACE("http proxy = %s\n", debugstr_w(lpwai->lpszProxy));
387         }
388         else
389             ERR("Couldn't read proxy server settings.\n");
390     }
391     else
392         TRACE("Proxy is not enabled.\n");
393     RegCloseKey(key);
394
395     return enabled;
396 }
397
398 /***********************************************************************
399  *           dump_INTERNET_FLAGS
400  *
401  * Helper function to TRACE the internet flags.
402  *
403  * RETURNS
404  *    None
405  *
406  */
407 static void dump_INTERNET_FLAGS(DWORD dwFlags) 
408 {
409 #define FE(x) { x, #x }
410     static const wininet_flag_info flag[] = {
411         FE(INTERNET_FLAG_RELOAD),
412         FE(INTERNET_FLAG_RAW_DATA),
413         FE(INTERNET_FLAG_EXISTING_CONNECT),
414         FE(INTERNET_FLAG_ASYNC),
415         FE(INTERNET_FLAG_PASSIVE),
416         FE(INTERNET_FLAG_NO_CACHE_WRITE),
417         FE(INTERNET_FLAG_MAKE_PERSISTENT),
418         FE(INTERNET_FLAG_FROM_CACHE),
419         FE(INTERNET_FLAG_SECURE),
420         FE(INTERNET_FLAG_KEEP_CONNECTION),
421         FE(INTERNET_FLAG_NO_AUTO_REDIRECT),
422         FE(INTERNET_FLAG_READ_PREFETCH),
423         FE(INTERNET_FLAG_NO_COOKIES),
424         FE(INTERNET_FLAG_NO_AUTH),
425         FE(INTERNET_FLAG_CACHE_IF_NET_FAIL),
426         FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP),
427         FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS),
428         FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID),
429         FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID),
430         FE(INTERNET_FLAG_RESYNCHRONIZE),
431         FE(INTERNET_FLAG_HYPERLINK),
432         FE(INTERNET_FLAG_NO_UI),
433         FE(INTERNET_FLAG_PRAGMA_NOCACHE),
434         FE(INTERNET_FLAG_CACHE_ASYNC),
435         FE(INTERNET_FLAG_FORMS_SUBMIT),
436         FE(INTERNET_FLAG_NEED_FILE),
437         FE(INTERNET_FLAG_TRANSFER_ASCII),
438         FE(INTERNET_FLAG_TRANSFER_BINARY)
439     };
440 #undef FE
441     int i;
442     
443     for (i = 0; i < (sizeof(flag) / sizeof(flag[0])); i++) {
444         if (flag[i].val & dwFlags) {
445             TRACE(" %s", flag[i].name);
446             dwFlags &= ~flag[i].val;
447         }
448     }   
449     if (dwFlags)
450         TRACE(" Unknown flags (%08x)\n", dwFlags);
451     else
452         TRACE("\n");
453 }
454
455 /***********************************************************************
456  *           InternetOpenW   (WININET.@)
457  *
458  * Per-application initialization of wininet
459  *
460  * RETURNS
461  *    HINTERNET on success
462  *    NULL on failure
463  *
464  */
465 HINTERNET WINAPI InternetOpenW(LPCWSTR lpszAgent, DWORD dwAccessType,
466     LPCWSTR lpszProxy, LPCWSTR lpszProxyBypass, DWORD dwFlags)
467 {
468     LPWININETAPPINFOW lpwai = NULL;
469     HINTERNET handle = NULL;
470
471     if (TRACE_ON(wininet)) {
472 #define FE(x) { x, #x }
473         static const wininet_flag_info access_type[] = {
474             FE(INTERNET_OPEN_TYPE_PRECONFIG),
475             FE(INTERNET_OPEN_TYPE_DIRECT),
476             FE(INTERNET_OPEN_TYPE_PROXY),
477             FE(INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY)
478         };
479 #undef FE
480         DWORD i;
481         const char *access_type_str = "Unknown";
482         
483         TRACE("(%s, %i, %s, %s, %i)\n", debugstr_w(lpszAgent), dwAccessType,
484               debugstr_w(lpszProxy), debugstr_w(lpszProxyBypass), dwFlags);
485         for (i = 0; i < (sizeof(access_type) / sizeof(access_type[0])); i++) {
486             if (access_type[i].val == dwAccessType) {
487                 access_type_str = access_type[i].name;
488                 break;
489             }
490         }
491         TRACE("  access type : %s\n", access_type_str);
492         TRACE("  flags       :");
493         dump_INTERNET_FLAGS(dwFlags);
494     }
495
496     /* Clear any error information */
497     INTERNET_SetLastError(0);
498
499     lpwai = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETAPPINFOW));
500     if (NULL == lpwai)
501     {
502         INTERNET_SetLastError(ERROR_OUTOFMEMORY);
503         goto lend;
504     }
505
506     lpwai->hdr.htype = WH_HINIT;
507     lpwai->hdr.dwFlags = dwFlags;
508     lpwai->hdr.dwRefCount = 1;
509     lpwai->hdr.close_connection = NULL;
510     lpwai->hdr.destroy = INTERNET_CloseHandle;
511     lpwai->dwAccessType = dwAccessType;
512     lpwai->lpszProxyUsername = NULL;
513     lpwai->lpszProxyPassword = NULL;
514
515     handle = WININET_AllocHandle( &lpwai->hdr );
516     if( !handle )
517     {
518         HeapFree( GetProcessHeap(), 0, lpwai );
519         INTERNET_SetLastError(ERROR_OUTOFMEMORY);
520         goto lend;
521     }
522
523     if (NULL != lpszAgent)
524     {
525         lpwai->lpszAgent = HeapAlloc( GetProcessHeap(),0,
526                                       (strlenW(lpszAgent)+1)*sizeof(WCHAR));
527         if (lpwai->lpszAgent)
528             lstrcpyW( lpwai->lpszAgent, lpszAgent );
529     }
530     if(dwAccessType == INTERNET_OPEN_TYPE_PRECONFIG)
531         INTERNET_ConfigureProxyFromReg( lpwai );
532     else if (NULL != lpszProxy)
533     {
534         lpwai->lpszProxy = HeapAlloc( GetProcessHeap(), 0,
535                                       (strlenW(lpszProxy)+1)*sizeof(WCHAR));
536         if (lpwai->lpszProxy)
537             lstrcpyW( lpwai->lpszProxy, lpszProxy );
538     }
539
540     if (NULL != lpszProxyBypass)
541     {
542         lpwai->lpszProxyBypass = HeapAlloc( GetProcessHeap(), 0,
543                                      (strlenW(lpszProxyBypass)+1)*sizeof(WCHAR));
544         if (lpwai->lpszProxyBypass)
545             lstrcpyW( lpwai->lpszProxyBypass, lpszProxyBypass );
546     }
547
548 lend:
549     if( lpwai )
550         WININET_Release( &lpwai->hdr );
551
552     TRACE("returning %p\n", lpwai);
553
554     return handle;
555 }
556
557
558 /***********************************************************************
559  *           InternetOpenA   (WININET.@)
560  *
561  * Per-application initialization of wininet
562  *
563  * RETURNS
564  *    HINTERNET on success
565  *    NULL on failure
566  *
567  */
568 HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent, DWORD dwAccessType,
569     LPCSTR lpszProxy, LPCSTR lpszProxyBypass, DWORD dwFlags)
570 {
571     HINTERNET rc = (HINTERNET)NULL;
572     INT len;
573     WCHAR *szAgent = NULL, *szProxy = NULL, *szBypass = NULL;
574
575     TRACE("(%s, 0x%08x, %s, %s, 0x%08x)\n", debugstr_a(lpszAgent),
576        dwAccessType, debugstr_a(lpszProxy), debugstr_a(lpszProxyBypass), dwFlags);
577
578     if( lpszAgent )
579     {
580         len = MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, NULL, 0);
581         szAgent = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
582         MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, szAgent, len);
583     }
584
585     if( lpszProxy )
586     {
587         len = MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, NULL, 0);
588         szProxy = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
589         MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, szProxy, len);
590     }
591
592     if( lpszProxyBypass )
593     {
594         len = MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, NULL, 0);
595         szBypass = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
596         MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, szBypass, len);
597     }
598
599     rc = InternetOpenW(szAgent, dwAccessType, szProxy, szBypass, dwFlags);
600
601     HeapFree(GetProcessHeap(), 0, szAgent);
602     HeapFree(GetProcessHeap(), 0, szProxy);
603     HeapFree(GetProcessHeap(), 0, szBypass);
604
605     return rc;
606 }
607
608 /***********************************************************************
609  *           InternetGetLastResponseInfoA (WININET.@)
610  *
611  * Return last wininet error description on the calling thread
612  *
613  * RETURNS
614  *    TRUE on success of writing to buffer
615  *    FALSE on failure
616  *
617  */
618 BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
619     LPSTR lpszBuffer, LPDWORD lpdwBufferLength)
620 {
621     LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
622
623     TRACE("\n");
624
625     if (lpwite)
626     {
627         *lpdwError = lpwite->dwError;
628         if (lpwite->dwError)
629         {
630             memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
631             *lpdwBufferLength = strlen(lpszBuffer);
632         }
633         else
634             *lpdwBufferLength = 0;
635     }
636     else
637     {
638         *lpdwError = 0;
639         *lpdwBufferLength = 0;
640     }
641
642     return TRUE;
643 }
644
645 /***********************************************************************
646  *           InternetGetLastResponseInfoW (WININET.@)
647  *
648  * Return last wininet error description on the calling thread
649  *
650  * RETURNS
651  *    TRUE on success of writing to buffer
652  *    FALSE on failure
653  *
654  */
655 BOOL WINAPI InternetGetLastResponseInfoW(LPDWORD lpdwError,
656     LPWSTR lpszBuffer, LPDWORD lpdwBufferLength)
657 {
658     LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
659
660     TRACE("\n");
661
662     if (lpwite)
663     {
664         *lpdwError = lpwite->dwError;
665         if (lpwite->dwError)
666         {
667             memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
668             *lpdwBufferLength = lstrlenW(lpszBuffer);
669         }
670         else
671             *lpdwBufferLength = 0;
672     }
673     else
674     {
675         *lpdwError = 0;
676         *lpdwBufferLength = 0;
677     }
678
679     return TRUE;
680 }
681
682 /***********************************************************************
683  *           InternetGetConnectedState (WININET.@)
684  *
685  * Return connected state
686  *
687  * RETURNS
688  *    TRUE if connected
689  *    if lpdwStatus is not null, return the status (off line,
690  *    modem, lan...) in it.
691  *    FALSE if not connected
692  */
693 BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
694 {
695     TRACE("(%p, 0x%08x)\n", lpdwStatus, dwReserved);
696
697     if (lpdwStatus) {
698         FIXME("always returning LAN connection.\n");
699         *lpdwStatus = INTERNET_CONNECTION_LAN;
700     }
701     return TRUE;
702 }
703
704
705 /***********************************************************************
706  *           InternetGetConnectedStateExW (WININET.@)
707  *
708  * Return connected state
709  *
710  * PARAMS
711  *
712  * lpdwStatus         [O] Flags specifying the status of the internet connection.
713  * lpszConnectionName [O] Pointer to buffer to receive the friendly name of the internet connection.
714  * dwNameLen          [I] Size of the buffer, in characters.
715  * dwReserved         [I] Reserved. Must be set to 0.
716  *
717  * RETURNS
718  *    TRUE if connected
719  *    if lpdwStatus is not null, return the status (off line,
720  *    modem, lan...) in it.
721  *    FALSE if not connected
722  *
723  * NOTES
724  *   If the system has no available network connections, an empty string is
725  *   stored in lpszConnectionName. If there is a LAN connection, a localized
726  *   "LAN Connection" string is stored. Presumably, if only a dial-up
727  *   connection is available then the name of the dial-up connection is
728  *   returned. Why any application, other than the "Internet Settings" CPL,
729  *   would want to use this function instead of the simpler InternetGetConnectedStateW
730  *   function is beyond me.
731  */
732 BOOL WINAPI InternetGetConnectedStateExW(LPDWORD lpdwStatus, LPWSTR lpszConnectionName,
733                                          DWORD dwNameLen, DWORD dwReserved)
734 {
735     TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
736
737     /* Must be zero */
738     if(dwReserved)
739         return FALSE;
740
741     if (lpdwStatus) {
742         FIXME("always returning LAN connection.\n");
743         *lpdwStatus = INTERNET_CONNECTION_LAN;
744     }
745     return LoadStringW(WININET_hModule, IDS_LANCONNECTION, lpszConnectionName, dwNameLen);
746 }
747
748
749 /***********************************************************************
750  *           InternetGetConnectedStateExA (WININET.@)
751  */
752 BOOL WINAPI InternetGetConnectedStateExA(LPDWORD lpdwStatus, LPSTR lpszConnectionName,
753                                          DWORD dwNameLen, DWORD dwReserved)
754 {
755     LPWSTR lpwszConnectionName = NULL;
756     BOOL rc;
757
758     TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
759
760     if (lpszConnectionName && dwNameLen > 0)
761         lpwszConnectionName= HeapAlloc(GetProcessHeap(), 0, dwNameLen * sizeof(WCHAR));
762
763     rc = InternetGetConnectedStateExW(lpdwStatus,lpwszConnectionName, dwNameLen,
764                                       dwReserved);
765     if (rc && lpwszConnectionName)
766     {
767         WideCharToMultiByte(CP_ACP,0,lpwszConnectionName,-1,lpszConnectionName,
768                             dwNameLen, NULL, NULL);
769
770         HeapFree(GetProcessHeap(),0,lpwszConnectionName);
771     }
772
773     return rc;
774 }
775
776
777 /***********************************************************************
778  *           InternetConnectW (WININET.@)
779  *
780  * Open a ftp, gopher or http session
781  *
782  * RETURNS
783  *    HINTERNET a session handle on success
784  *    NULL on failure
785  *
786  */
787 HINTERNET WINAPI InternetConnectW(HINTERNET hInternet,
788     LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
789     LPCWSTR lpszUserName, LPCWSTR lpszPassword,
790     DWORD dwService, DWORD dwFlags, DWORD_PTR dwContext)
791 {
792     LPWININETAPPINFOW hIC;
793     HINTERNET rc = NULL;
794
795     TRACE("(%p, %s, %i, %s, %s, %i, %i, %lx)\n", hInternet, debugstr_w(lpszServerName),
796           nServerPort, debugstr_w(lpszUserName), debugstr_w(lpszPassword),
797           dwService, dwFlags, dwContext);
798
799     if (!lpszServerName)
800     {
801         INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
802         return NULL;
803     }
804
805     /* Clear any error information */
806     INTERNET_SetLastError(0);
807     hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
808     if ( (hIC == NULL) || (hIC->hdr.htype != WH_HINIT) )
809     {
810         INTERNET_SetLastError(ERROR_INVALID_HANDLE);
811         goto lend;
812     }
813
814     switch (dwService)
815     {
816         case INTERNET_SERVICE_FTP:
817             rc = FTP_Connect(hIC, lpszServerName, nServerPort,
818             lpszUserName, lpszPassword, dwFlags, dwContext, 0);
819             break;
820
821         case INTERNET_SERVICE_HTTP:
822             rc = HTTP_Connect(hIC, lpszServerName, nServerPort,
823             lpszUserName, lpszPassword, dwFlags, dwContext, 0);
824             break;
825
826         case INTERNET_SERVICE_GOPHER:
827         default:
828             break;
829     }
830 lend:
831     if( hIC )
832         WININET_Release( &hIC->hdr );
833
834     TRACE("returning %p\n", rc);
835     return rc;
836 }
837
838
839 /***********************************************************************
840  *           InternetConnectA (WININET.@)
841  *
842  * Open a ftp, gopher or http session
843  *
844  * RETURNS
845  *    HINTERNET a session handle on success
846  *    NULL on failure
847  *
848  */
849 HINTERNET WINAPI InternetConnectA(HINTERNET hInternet,
850     LPCSTR lpszServerName, INTERNET_PORT nServerPort,
851     LPCSTR lpszUserName, LPCSTR lpszPassword,
852     DWORD dwService, DWORD dwFlags, DWORD_PTR dwContext)
853 {
854     HINTERNET rc = (HINTERNET)NULL;
855     INT len = 0;
856     LPWSTR szServerName = NULL;
857     LPWSTR szUserName = NULL;
858     LPWSTR szPassword = NULL;
859
860     if (lpszServerName)
861     {
862         len = MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, NULL, 0);
863         szServerName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
864         MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, szServerName, len);
865     }
866     if (lpszUserName)
867     {
868         len = MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, NULL, 0);
869         szUserName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
870         MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, szUserName, len);
871     }
872     if (lpszPassword)
873     {
874         len = MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, NULL, 0);
875         szPassword = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
876         MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, szPassword, len);
877     }
878
879
880     rc = InternetConnectW(hInternet, szServerName, nServerPort,
881         szUserName, szPassword, dwService, dwFlags, dwContext);
882
883     HeapFree(GetProcessHeap(), 0, szServerName);
884     HeapFree(GetProcessHeap(), 0, szUserName);
885     HeapFree(GetProcessHeap(), 0, szPassword);
886     return rc;
887 }
888
889
890 /***********************************************************************
891  *           InternetFindNextFileA (WININET.@)
892  *
893  * Continues a file search from a previous call to FindFirstFile
894  *
895  * RETURNS
896  *    TRUE on success
897  *    FALSE on failure
898  *
899  */
900 BOOL WINAPI InternetFindNextFileA(HINTERNET hFind, LPVOID lpvFindData)
901 {
902     BOOL ret;
903     WIN32_FIND_DATAW fd;
904     
905     ret = InternetFindNextFileW(hFind, lpvFindData?&fd:NULL);
906     if(lpvFindData)
907         WININET_find_data_WtoA(&fd, (LPWIN32_FIND_DATAA)lpvFindData);
908     return ret;
909 }
910
911 /***********************************************************************
912  *           InternetFindNextFileW (WININET.@)
913  *
914  * Continues a file search from a previous call to FindFirstFile
915  *
916  * RETURNS
917  *    TRUE on success
918  *    FALSE on failure
919  *
920  */
921 static void AsyncFtpFindNextFileProc(WORKREQUEST *workRequest)
922 {
923     struct WORKREQ_FTPFINDNEXTW *req = &workRequest->u.FtpFindNextW;
924     LPWININETFTPFINDNEXTW lpwh = (LPWININETFTPFINDNEXTW) workRequest->hdr;
925
926     TRACE("%p\n", lpwh);
927
928     FTP_FindNextFileW(lpwh, req->lpFindFileData);
929 }
930
931 BOOL WINAPI InternetFindNextFileW(HINTERNET hFind, LPVOID lpvFindData)
932 {
933     LPWININETAPPINFOW hIC = NULL;
934     LPWININETFTPFINDNEXTW lpwh;
935     BOOL bSuccess = FALSE;
936
937     TRACE("\n");
938
939     lpwh = (LPWININETFTPFINDNEXTW) WININET_GetObject( hFind );
940     if (NULL == lpwh || lpwh->hdr.htype != WH_HFTPFINDNEXT)
941     {
942         FIXME("Only FTP supported\n");
943         INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
944         goto lend;
945     }
946
947     hIC = lpwh->lpFtpSession->lpAppInfo;
948     if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
949     {
950         WORKREQUEST workRequest;
951         struct WORKREQ_FTPFINDNEXTW *req;
952
953         workRequest.asyncproc = AsyncFtpFindNextFileProc;
954         workRequest.hdr = WININET_AddRef( &lpwh->hdr );
955         req = &workRequest.u.FtpFindNextW;
956         req->lpFindFileData = lpvFindData;
957
958         bSuccess = INTERNET_AsyncCall(&workRequest);
959     }
960     else
961     {
962         bSuccess = FTP_FindNextFileW(lpwh, lpvFindData);
963     }
964 lend:
965     if( lpwh )
966         WININET_Release( &lpwh->hdr );
967     return bSuccess;
968 }
969
970 /***********************************************************************
971  *           INTERNET_CloseHandle (internal)
972  *
973  * Close internet handle
974  *
975  * RETURNS
976  *    Void
977  *
978  */
979 static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr)
980 {
981     LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW) hdr;
982
983     TRACE("%p\n",lpwai);
984
985     HeapFree(GetProcessHeap(), 0, lpwai->lpszAgent);
986     HeapFree(GetProcessHeap(), 0, lpwai->lpszProxy);
987     HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyBypass);
988     HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyUsername);
989     HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyPassword);
990     HeapFree(GetProcessHeap(), 0, lpwai);
991 }
992
993
994 /***********************************************************************
995  *           InternetCloseHandle (WININET.@)
996  *
997  * Generic close handle function
998  *
999  * RETURNS
1000  *    TRUE on success
1001  *    FALSE on failure
1002  *
1003  */
1004 BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
1005 {
1006     LPWININETHANDLEHEADER lpwh;
1007     
1008     TRACE("%p\n",hInternet);
1009
1010     lpwh = WININET_GetObject( hInternet );
1011     if (NULL == lpwh)
1012     {
1013         INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1014         return FALSE;
1015     }
1016
1017     WININET_Release( lpwh );
1018     WININET_FreeHandle( hInternet );
1019
1020     return TRUE;
1021 }
1022
1023
1024 /***********************************************************************
1025  *           ConvertUrlComponentValue (Internal)
1026  *
1027  * Helper function for InternetCrackUrlW
1028  *
1029  */
1030 static void ConvertUrlComponentValue(LPSTR* lppszComponent, LPDWORD dwComponentLen,
1031                                      LPWSTR lpwszComponent, DWORD dwwComponentLen,
1032                                      LPCSTR lpszStart, LPCWSTR lpwszStart)
1033 {
1034     TRACE("%p %d %p %d %p %p\n", lppszComponent, *dwComponentLen, lpwszComponent, dwwComponentLen, lpszStart, lpwszStart);
1035     if (*dwComponentLen != 0)
1036     {
1037         DWORD nASCIILength=WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,NULL,0,NULL,NULL);
1038         if (*lppszComponent == NULL)
1039         {
1040             int nASCIIOffset=WideCharToMultiByte(CP_ACP,0,lpwszStart,lpwszComponent-lpwszStart,NULL,0,NULL,NULL);
1041             if (lpwszComponent)
1042                 *lppszComponent = (LPSTR)lpszStart+nASCIIOffset;
1043             else
1044                 *lppszComponent = NULL;
1045             *dwComponentLen = nASCIILength;
1046         }
1047         else
1048         {
1049             DWORD ncpylen = min((*dwComponentLen)-1, nASCIILength);
1050             WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,*lppszComponent,ncpylen+1,NULL,NULL);
1051             (*lppszComponent)[ncpylen]=0;
1052             *dwComponentLen = ncpylen;
1053         }
1054     }
1055 }
1056
1057
1058 /***********************************************************************
1059  *           InternetCrackUrlA (WININET.@)
1060  *
1061  * See InternetCrackUrlW.
1062  */
1063 BOOL WINAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
1064     LPURL_COMPONENTSA lpUrlComponents)
1065 {
1066   DWORD nLength;
1067   URL_COMPONENTSW UCW;
1068   WCHAR* lpwszUrl;
1069
1070   TRACE("(%s %u %x %p)\n", debugstr_a(lpszUrl), dwUrlLength, dwFlags, lpUrlComponents);
1071
1072   if (!lpszUrl || !*lpszUrl)
1073   {
1074       INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1075       return FALSE;
1076   }
1077
1078   if(dwUrlLength<=0)
1079       dwUrlLength=-1;
1080   nLength=MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,NULL,0);
1081
1082   /* if dwUrlLength=-1 then nLength includes null but length to 
1083        InternetCrackUrlW should not include it                  */
1084   if (dwUrlLength == -1) nLength--;
1085
1086   lpwszUrl=HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WCHAR)*nLength);
1087   MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,lpwszUrl,nLength);
1088
1089   memset(&UCW,0,sizeof(UCW));
1090   if(lpUrlComponents->dwHostNameLength!=0)
1091       UCW.dwHostNameLength= lpUrlComponents->dwHostNameLength;
1092   if(lpUrlComponents->dwUserNameLength!=0)
1093       UCW.dwUserNameLength=lpUrlComponents->dwUserNameLength;
1094   if(lpUrlComponents->dwPasswordLength!=0)
1095       UCW.dwPasswordLength=lpUrlComponents->dwPasswordLength;
1096   if(lpUrlComponents->dwUrlPathLength!=0)
1097       UCW.dwUrlPathLength=lpUrlComponents->dwUrlPathLength;
1098   if(lpUrlComponents->dwSchemeLength!=0)
1099       UCW.dwSchemeLength=lpUrlComponents->dwSchemeLength;
1100   if(lpUrlComponents->dwExtraInfoLength!=0)
1101       UCW.dwExtraInfoLength=lpUrlComponents->dwExtraInfoLength;
1102   if(!InternetCrackUrlW(lpwszUrl,nLength,dwFlags,&UCW))
1103   {
1104       HeapFree(GetProcessHeap(), 0, lpwszUrl);
1105       return FALSE;
1106   }
1107
1108   ConvertUrlComponentValue(&lpUrlComponents->lpszHostName, &lpUrlComponents->dwHostNameLength,
1109                            UCW.lpszHostName, UCW.dwHostNameLength,
1110                            lpszUrl, lpwszUrl);
1111   ConvertUrlComponentValue(&lpUrlComponents->lpszUserName, &lpUrlComponents->dwUserNameLength,
1112                            UCW.lpszUserName, UCW.dwUserNameLength,
1113                            lpszUrl, lpwszUrl);
1114   ConvertUrlComponentValue(&lpUrlComponents->lpszPassword, &lpUrlComponents->dwPasswordLength,
1115                            UCW.lpszPassword, UCW.dwPasswordLength,
1116                            lpszUrl, lpwszUrl);
1117   ConvertUrlComponentValue(&lpUrlComponents->lpszUrlPath, &lpUrlComponents->dwUrlPathLength,
1118                            UCW.lpszUrlPath, UCW.dwUrlPathLength,
1119                            lpszUrl, lpwszUrl);
1120   ConvertUrlComponentValue(&lpUrlComponents->lpszScheme, &lpUrlComponents->dwSchemeLength,
1121                            UCW.lpszScheme, UCW.dwSchemeLength,
1122                            lpszUrl, lpwszUrl);
1123   ConvertUrlComponentValue(&lpUrlComponents->lpszExtraInfo, &lpUrlComponents->dwExtraInfoLength,
1124                            UCW.lpszExtraInfo, UCW.dwExtraInfoLength,
1125                            lpszUrl, lpwszUrl);
1126   lpUrlComponents->nScheme=UCW.nScheme;
1127   lpUrlComponents->nPort=UCW.nPort;
1128   HeapFree(GetProcessHeap(), 0, lpwszUrl);
1129   
1130   TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", lpszUrl,
1131           debugstr_an(lpUrlComponents->lpszScheme,lpUrlComponents->dwSchemeLength),
1132           debugstr_an(lpUrlComponents->lpszHostName,lpUrlComponents->dwHostNameLength),
1133           debugstr_an(lpUrlComponents->lpszUrlPath,lpUrlComponents->dwUrlPathLength),
1134           debugstr_an(lpUrlComponents->lpszExtraInfo,lpUrlComponents->dwExtraInfoLength));
1135
1136   return TRUE;
1137 }
1138
1139 static const WCHAR url_schemes[][7] =
1140 {
1141     {'f','t','p',0},
1142     {'g','o','p','h','e','r',0},
1143     {'h','t','t','p',0},
1144     {'h','t','t','p','s',0},
1145     {'f','i','l','e',0},
1146     {'n','e','w','s',0},
1147     {'m','a','i','l','t','o',0},
1148     {'r','e','s',0},
1149 };
1150
1151 /***********************************************************************
1152  *           GetInternetSchemeW (internal)
1153  *
1154  * Get scheme of url
1155  *
1156  * RETURNS
1157  *    scheme on success
1158  *    INTERNET_SCHEME_UNKNOWN on failure
1159  *
1160  */
1161 static INTERNET_SCHEME GetInternetSchemeW(LPCWSTR lpszScheme, DWORD nMaxCmp)
1162 {
1163     int i;
1164
1165     TRACE("%s %d\n",debugstr_wn(lpszScheme, nMaxCmp), nMaxCmp);
1166
1167     if(lpszScheme==NULL)
1168         return INTERNET_SCHEME_UNKNOWN;
1169
1170     for (i = 0; i < sizeof(url_schemes)/sizeof(url_schemes[0]); i++)
1171         if (!strncmpW(lpszScheme, url_schemes[i], nMaxCmp))
1172             return INTERNET_SCHEME_FIRST + i;
1173
1174     return INTERNET_SCHEME_UNKNOWN;
1175 }
1176
1177 /***********************************************************************
1178  *           SetUrlComponentValueW (Internal)
1179  *
1180  * Helper function for InternetCrackUrlW
1181  *
1182  * PARAMS
1183  *     lppszComponent [O] Holds the returned string
1184  *     dwComponentLen [I] Holds the size of lppszComponent
1185  *                    [O] Holds the length of the string in lppszComponent without '\0'
1186  *     lpszStart      [I] Holds the string to copy from
1187  *     len            [I] Holds the length of lpszStart without '\0'
1188  *
1189  * RETURNS
1190  *    TRUE on success
1191  *    FALSE on failure
1192  *
1193  */
1194 static BOOL SetUrlComponentValueW(LPWSTR* lppszComponent, LPDWORD dwComponentLen, LPCWSTR lpszStart, DWORD len)
1195 {
1196     TRACE("%s (%d)\n", debugstr_wn(lpszStart,len), len);
1197
1198     if ( (*dwComponentLen == 0) && (*lppszComponent == NULL) )
1199         return FALSE;
1200
1201     if (*dwComponentLen != 0 || *lppszComponent == NULL)
1202     {
1203         if (*lppszComponent == NULL)
1204         {
1205             *lppszComponent = (LPWSTR)lpszStart;
1206             *dwComponentLen = len;
1207         }
1208         else
1209         {
1210             DWORD ncpylen = min((*dwComponentLen)-1, len);
1211             memcpy(*lppszComponent, lpszStart, ncpylen*sizeof(WCHAR));
1212             (*lppszComponent)[ncpylen] = '\0';
1213             *dwComponentLen = ncpylen;
1214         }
1215     }
1216
1217     return TRUE;
1218 }
1219
1220 /***********************************************************************
1221  *           InternetCrackUrlW   (WININET.@)
1222  *
1223  * Break up URL into its components
1224  *
1225  * RETURNS
1226  *    TRUE on success
1227  *    FALSE on failure
1228  */
1229 BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl_orig, DWORD dwUrlLength_orig, DWORD dwFlags,
1230                               LPURL_COMPONENTSW lpUC)
1231 {
1232   /*
1233    * RFC 1808
1234    * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1235    *
1236    */
1237     LPCWSTR lpszParam    = NULL;
1238     BOOL  bIsAbsolute = FALSE;
1239     LPCWSTR lpszap, lpszUrl = lpszUrl_orig;
1240     LPCWSTR lpszcp = NULL;
1241     LPWSTR  lpszUrl_decode = NULL;
1242     DWORD dwUrlLength = dwUrlLength_orig;
1243     const WCHAR lpszSeparators[3]={';','?',0};
1244     const WCHAR lpszSlash[2]={'/',0};
1245
1246     TRACE("(%s %u %x %p)\n", debugstr_w(lpszUrl), dwUrlLength, dwFlags, lpUC);
1247
1248     if (!lpszUrl_orig || !*lpszUrl_orig || !lpUC)
1249     {
1250         INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1251         return FALSE;
1252     }
1253     if (!dwUrlLength) dwUrlLength = strlenW(lpszUrl);
1254
1255     if (dwFlags & ICU_DECODE)
1256     {
1257         lpszUrl_decode=HeapAlloc( GetProcessHeap(), 0,  dwUrlLength * sizeof (WCHAR) );
1258         if( InternetCanonicalizeUrlW(lpszUrl_orig, lpszUrl_decode, &dwUrlLength, dwFlags))
1259         {
1260             lpszUrl =  lpszUrl_decode;
1261         }
1262     }
1263     lpszap = lpszUrl;
1264     
1265     /* Determine if the URI is absolute. */
1266     while (*lpszap != '\0')
1267     {
1268         if (isalnumW(*lpszap))
1269         {
1270             lpszap++;
1271             continue;
1272         }
1273         if ((*lpszap == ':') && (lpszap - lpszUrl >= 2))
1274         {
1275             bIsAbsolute = TRUE;
1276             lpszcp = lpszap;
1277         }
1278         else
1279         {
1280             lpszcp = lpszUrl; /* Relative url */
1281         }
1282
1283         break;
1284     }
1285
1286     lpUC->nScheme = INTERNET_SCHEME_UNKNOWN;
1287     lpUC->nPort = INTERNET_INVALID_PORT_NUMBER;
1288
1289     /* Parse <params> */
1290     lpszParam = strpbrkW(lpszap, lpszSeparators);
1291     SetUrlComponentValueW(&lpUC->lpszExtraInfo, &lpUC->dwExtraInfoLength,
1292                           lpszParam, lpszParam ? dwUrlLength-(lpszParam-lpszUrl) : 0);
1293
1294     if (bIsAbsolute) /* Parse <protocol>:[//<net_loc>] */
1295     {
1296         LPCWSTR lpszNetLoc;
1297
1298         /* Get scheme first. */
1299         lpUC->nScheme = GetInternetSchemeW(lpszUrl, lpszcp - lpszUrl);
1300         SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength,
1301                                    lpszUrl, lpszcp - lpszUrl);
1302
1303         /* Eat ':' in protocol. */
1304         lpszcp++;
1305
1306         /* double slash indicates the net_loc portion is present */
1307         if ((lpszcp[0] == '/') && (lpszcp[1] == '/'))
1308         {
1309             lpszcp += 2;
1310
1311             lpszNetLoc = strpbrkW(lpszcp, lpszSlash);
1312             if (lpszParam)
1313             {
1314                 if (lpszNetLoc)
1315                     lpszNetLoc = min(lpszNetLoc, lpszParam);
1316                 else
1317                     lpszNetLoc = lpszParam;
1318             }
1319             else if (!lpszNetLoc)
1320                 lpszNetLoc = lpszcp + dwUrlLength-(lpszcp-lpszUrl);
1321
1322             /* Parse net-loc */
1323             if (lpszNetLoc)
1324             {
1325                 LPCWSTR lpszHost;
1326                 LPCWSTR lpszPort;
1327
1328                 /* [<user>[<:password>]@]<host>[:<port>] */
1329                 /* First find the user and password if they exist */
1330
1331                 lpszHost = strchrW(lpszcp, '@');
1332                 if (lpszHost == NULL || lpszHost > lpszNetLoc)
1333                 {
1334                     /* username and password not specified. */
1335                     SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1336                     SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1337                 }
1338                 else /* Parse out username and password */
1339                 {
1340                     LPCWSTR lpszUser = lpszcp;
1341                     LPCWSTR lpszPasswd = lpszHost;
1342
1343                     while (lpszcp < lpszHost)
1344                     {
1345                         if (*lpszcp == ':')
1346                             lpszPasswd = lpszcp;
1347
1348                         lpszcp++;
1349                     }
1350
1351                     SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength,
1352                                           lpszUser, lpszPasswd - lpszUser);
1353
1354                     if (lpszPasswd != lpszHost)
1355                         lpszPasswd++;
1356                     SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength,
1357                                           lpszPasswd == lpszHost ? NULL : lpszPasswd,
1358                                           lpszHost - lpszPasswd);
1359
1360                     lpszcp++; /* Advance to beginning of host */
1361                 }
1362
1363                 /* Parse <host><:port> */
1364
1365                 lpszHost = lpszcp;
1366                 lpszPort = lpszNetLoc;
1367
1368                 /* special case for res:// URLs: there is no port here, so the host is the
1369                    entire string up to the first '/' */
1370                 if(lpUC->nScheme==INTERNET_SCHEME_RES)
1371                 {
1372                     SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1373                                           lpszHost, lpszPort - lpszHost);
1374                     lpszcp=lpszNetLoc;
1375                 }
1376                 else
1377                 {
1378                     while (lpszcp < lpszNetLoc)
1379                     {
1380                         if (*lpszcp == ':')
1381                             lpszPort = lpszcp;
1382
1383                         lpszcp++;
1384                     }
1385
1386                     /* If the scheme is "file" and the host is just one letter, it's not a host */
1387                     if(lpUC->nScheme==INTERNET_SCHEME_FILE && (lpszPort-lpszHost)==1)
1388                     {
1389                         lpszcp=lpszHost;
1390                         SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1391                                               NULL, 0);
1392                     }
1393                     else
1394                     {
1395                         SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1396                                               lpszHost, lpszPort - lpszHost);
1397                         if (lpszPort != lpszNetLoc)
1398                             lpUC->nPort = atoiW(++lpszPort);
1399                         else switch (lpUC->nScheme)
1400                         {
1401                         case INTERNET_SCHEME_HTTP:
1402                             lpUC->nPort = INTERNET_DEFAULT_HTTP_PORT;
1403                             break;
1404                         case INTERNET_SCHEME_HTTPS:
1405                             lpUC->nPort = INTERNET_DEFAULT_HTTPS_PORT;
1406                             break;
1407                         case INTERNET_SCHEME_FTP:
1408                             lpUC->nPort = INTERNET_DEFAULT_FTP_PORT;
1409                             break;
1410                         case INTERNET_SCHEME_GOPHER:
1411                             lpUC->nPort = INTERNET_DEFAULT_GOPHER_PORT;
1412                             break;
1413                         default:
1414                             break;
1415                         }
1416                     }
1417                 }
1418             }
1419         }
1420         else
1421         {
1422             SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1423             SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1424             SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1425         }
1426     }
1427     else
1428     {
1429         SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength, NULL, 0);
1430         SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1431         SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1432         SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1433     }
1434
1435     /* Here lpszcp points to:
1436      *
1437      * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1438      *                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1439      */
1440     if (lpszcp != 0 && *lpszcp != '\0' && (!lpszParam || lpszcp < lpszParam))
1441     {
1442         INT len;
1443
1444         /* Only truncate the parameter list if it's already been saved
1445          * in lpUC->lpszExtraInfo.
1446          */
1447         if (lpszParam && lpUC->dwExtraInfoLength && lpUC->lpszExtraInfo)
1448             len = lpszParam - lpszcp;
1449         else
1450         {
1451             /* Leave the parameter list in lpszUrlPath.  Strip off any trailing
1452              * newlines if necessary.
1453              */
1454             LPWSTR lpsznewline = strchrW(lpszcp, '\n');
1455             if (lpsznewline != NULL)
1456                 len = lpsznewline - lpszcp;
1457             else
1458                 len = dwUrlLength-(lpszcp-lpszUrl);
1459         }
1460         SetUrlComponentValueW(&lpUC->lpszUrlPath, &lpUC->dwUrlPathLength,
1461                                    lpszcp, len);
1462     }
1463     else
1464     {
1465         lpUC->dwUrlPathLength = 0;
1466     }
1467
1468     TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl,dwUrlLength),
1469              debugstr_wn(lpUC->lpszScheme,lpUC->dwSchemeLength),
1470              debugstr_wn(lpUC->lpszHostName,lpUC->dwHostNameLength),
1471              debugstr_wn(lpUC->lpszUrlPath,lpUC->dwUrlPathLength),
1472              debugstr_wn(lpUC->lpszExtraInfo,lpUC->dwExtraInfoLength));
1473
1474     HeapFree(GetProcessHeap(), 0, lpszUrl_decode );
1475     return TRUE;
1476 }
1477
1478 /***********************************************************************
1479  *           InternetAttemptConnect (WININET.@)
1480  *
1481  * Attempt to make a connection to the internet
1482  *
1483  * RETURNS
1484  *    ERROR_SUCCESS on success
1485  *    Error value   on failure
1486  *
1487  */
1488 DWORD WINAPI InternetAttemptConnect(DWORD dwReserved)
1489 {
1490     FIXME("Stub\n");
1491     return ERROR_SUCCESS;
1492 }
1493
1494
1495 /***********************************************************************
1496  *           InternetCanonicalizeUrlA (WININET.@)
1497  *
1498  * Escape unsafe characters and spaces
1499  *
1500  * RETURNS
1501  *    TRUE on success
1502  *    FALSE on failure
1503  *
1504  */
1505 BOOL WINAPI InternetCanonicalizeUrlA(LPCSTR lpszUrl, LPSTR lpszBuffer,
1506         LPDWORD lpdwBufferLength, DWORD dwFlags)
1507 {
1508     HRESULT hr;
1509     DWORD dwURLFlags = URL_WININET_COMPATIBILITY | URL_ESCAPE_UNSAFE;
1510
1511     TRACE("(%s, %p, %p, 0x%08x) bufferlength: %d\n", debugstr_a(lpszUrl), lpszBuffer,
1512         lpdwBufferLength, lpdwBufferLength ? *lpdwBufferLength : -1, dwFlags);
1513
1514     if(dwFlags & ICU_DECODE)
1515     {
1516         dwURLFlags |= URL_UNESCAPE;
1517         dwFlags &= ~ICU_DECODE;
1518     }
1519
1520     if(dwFlags & ICU_ESCAPE)
1521     {
1522         dwURLFlags |= URL_UNESCAPE;
1523         dwFlags &= ~ICU_ESCAPE;
1524     }
1525
1526     if(dwFlags & ICU_BROWSER_MODE)
1527     {
1528         dwURLFlags |= URL_BROWSER_MODE;
1529         dwFlags &= ~ICU_BROWSER_MODE;
1530     }
1531
1532     if(dwFlags & ICU_NO_ENCODE)
1533     {
1534         /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1535         dwURLFlags ^= URL_ESCAPE_UNSAFE;
1536         dwFlags &= ~ICU_NO_ENCODE;
1537     }
1538
1539     if (dwFlags) FIXME("Unhandled flags 0x%08x\n", dwFlags);
1540
1541     hr = UrlCanonicalizeA(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1542     if (hr == E_POINTER) SetLastError(ERROR_INSUFFICIENT_BUFFER);
1543     if (hr == E_INVALIDARG) SetLastError(ERROR_INVALID_PARAMETER);
1544
1545     return (hr == S_OK) ? TRUE : FALSE;
1546 }
1547
1548 /***********************************************************************
1549  *           InternetCanonicalizeUrlW (WININET.@)
1550  *
1551  * Escape unsafe characters and spaces
1552  *
1553  * RETURNS
1554  *    TRUE on success
1555  *    FALSE on failure
1556  *
1557  */
1558 BOOL WINAPI InternetCanonicalizeUrlW(LPCWSTR lpszUrl, LPWSTR lpszBuffer,
1559     LPDWORD lpdwBufferLength, DWORD dwFlags)
1560 {
1561     HRESULT hr;
1562     DWORD dwURLFlags = URL_WININET_COMPATIBILITY | URL_ESCAPE_UNSAFE;
1563
1564     TRACE("(%s, %p, %p, 0x%08x) bufferlength: %d\n", debugstr_w(lpszUrl), lpszBuffer,
1565         lpdwBufferLength, lpdwBufferLength ? *lpdwBufferLength : -1, dwFlags);
1566
1567     if(dwFlags & ICU_DECODE)
1568     {
1569         dwURLFlags |= URL_UNESCAPE;
1570         dwFlags &= ~ICU_DECODE;
1571     }
1572
1573     if(dwFlags & ICU_ESCAPE)
1574     {
1575         dwURLFlags |= URL_UNESCAPE;
1576         dwFlags &= ~ICU_ESCAPE;
1577     }
1578
1579     if(dwFlags & ICU_BROWSER_MODE)
1580     {
1581         dwURLFlags |= URL_BROWSER_MODE;
1582         dwFlags &= ~ICU_BROWSER_MODE;
1583     }
1584
1585     if(dwFlags & ICU_NO_ENCODE)
1586     {
1587         /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1588         dwURLFlags ^= URL_ESCAPE_UNSAFE;
1589         dwFlags &= ~ICU_NO_ENCODE;
1590     }
1591
1592     if (dwFlags) FIXME("Unhandled flags 0x%08x\n", dwFlags);
1593
1594     hr = UrlCanonicalizeW(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1595     if (hr == E_POINTER) SetLastError(ERROR_INSUFFICIENT_BUFFER);
1596     if (hr == E_INVALIDARG) SetLastError(ERROR_INVALID_PARAMETER);
1597
1598     return (hr == S_OK) ? TRUE : FALSE;
1599 }
1600
1601 /* #################################################### */
1602
1603 static INTERNET_STATUS_CALLBACK set_status_callback(
1604     LPWININETHANDLEHEADER lpwh, INTERNET_STATUS_CALLBACK callback, BOOL unicode)
1605 {
1606     INTERNET_STATUS_CALLBACK ret;
1607
1608     if (unicode) lpwh->dwInternalFlags |= INET_CALLBACKW;
1609     else lpwh->dwInternalFlags &= ~INET_CALLBACKW;
1610
1611     ret = lpwh->lpfnStatusCB;
1612     lpwh->lpfnStatusCB = callback;
1613
1614     return ret;
1615 }
1616
1617 /***********************************************************************
1618  *           InternetSetStatusCallbackA (WININET.@)
1619  *
1620  * Sets up a callback function which is called as progress is made
1621  * during an operation.
1622  *
1623  * RETURNS
1624  *    Previous callback or NULL         on success
1625  *    INTERNET_INVALID_STATUS_CALLBACK  on failure
1626  *
1627  */
1628 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackA(
1629         HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1630 {
1631     INTERNET_STATUS_CALLBACK retVal;
1632     LPWININETHANDLEHEADER lpwh;
1633
1634     TRACE("0x%08x\n", (ULONG)hInternet);
1635     
1636     if (!(lpwh = WININET_GetObject(hInternet)))
1637         return INTERNET_INVALID_STATUS_CALLBACK;
1638
1639     retVal = set_status_callback(lpwh, lpfnIntCB, FALSE);
1640
1641     WININET_Release( lpwh );
1642     return retVal;
1643 }
1644
1645 /***********************************************************************
1646  *           InternetSetStatusCallbackW (WININET.@)
1647  *
1648  * Sets up a callback function which is called as progress is made
1649  * during an operation.
1650  *
1651  * RETURNS
1652  *    Previous callback or NULL         on success
1653  *    INTERNET_INVALID_STATUS_CALLBACK  on failure
1654  *
1655  */
1656 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackW(
1657         HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1658 {
1659     INTERNET_STATUS_CALLBACK retVal;
1660     LPWININETHANDLEHEADER lpwh;
1661
1662     TRACE("0x%08x\n", (ULONG)hInternet);
1663
1664     if (!(lpwh = WININET_GetObject(hInternet)))
1665         return INTERNET_INVALID_STATUS_CALLBACK;
1666
1667     retVal = set_status_callback(lpwh, lpfnIntCB, TRUE);
1668
1669     WININET_Release( lpwh );
1670     return retVal;
1671 }
1672
1673 /***********************************************************************
1674  *           InternetSetFilePointer (WININET.@)
1675  */
1676 DWORD WINAPI InternetSetFilePointer(HINTERNET hFile, LONG lDistanceToMove,
1677     PVOID pReserved, DWORD dwMoveContext, DWORD_PTR dwContext)
1678 {
1679     FIXME("stub\n");
1680     return FALSE;
1681 }
1682
1683 /***********************************************************************
1684  *           InternetWriteFile (WININET.@)
1685  *
1686  * Write data to an open internet file
1687  *
1688  * RETURNS
1689  *    TRUE  on success
1690  *    FALSE on failure
1691  *
1692  */
1693 BOOL WINAPI InternetWriteFile(HINTERNET hFile, LPCVOID lpBuffer ,
1694         DWORD dwNumOfBytesToWrite, LPDWORD lpdwNumOfBytesWritten)
1695 {
1696     BOOL retval = FALSE;
1697     int nSocket = -1;
1698     LPWININETHANDLEHEADER lpwh;
1699
1700     TRACE("\n");
1701     lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1702     if (NULL == lpwh)
1703         return FALSE;
1704
1705     switch (lpwh->htype)
1706     {
1707         case WH_HHTTPREQ:
1708             {
1709                 LPWININETHTTPREQW lpwhr;
1710                 lpwhr = (LPWININETHTTPREQW)lpwh;
1711
1712                 TRACE("HTTPREQ %i\n",dwNumOfBytesToWrite);
1713                 retval = NETCON_send(&lpwhr->netConnection, lpBuffer, 
1714                         dwNumOfBytesToWrite, 0, (LPINT)lpdwNumOfBytesWritten);
1715
1716                 WININET_Release( lpwh );
1717                 return retval;
1718             }
1719             break;
1720
1721         case WH_HFILE:
1722             nSocket = ((LPWININETFTPFILE)lpwh)->nDataSocket;
1723             break;
1724
1725         default:
1726             break;
1727     }
1728
1729     if (nSocket != -1)
1730     {
1731         int res = send(nSocket, lpBuffer, dwNumOfBytesToWrite, 0);
1732         retval = (res >= 0);
1733         *lpdwNumOfBytesWritten = retval ? res : 0;
1734     }
1735     WININET_Release( lpwh );
1736
1737     return retval;
1738 }
1739
1740
1741 BOOL INTERNET_ReadFile(LPWININETHANDLEHEADER lpwh, LPVOID lpBuffer,
1742                        DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead,
1743                        BOOL bWait, BOOL bSendCompletionStatus)
1744 {
1745     BOOL retval = FALSE;
1746     int nSocket = -1;
1747     int bytes_read;
1748     LPWININETHTTPREQW lpwhr;
1749
1750     /* FIXME: this should use NETCON functions! */
1751     switch (lpwh->htype)
1752     {
1753         case WH_HHTTPREQ:
1754             lpwhr = (LPWININETHTTPREQW)lpwh;
1755
1756             if (!NETCON_recv(&lpwhr->netConnection, lpBuffer,
1757                              min(dwNumOfBytesToRead, lpwhr->dwContentLength - lpwhr->dwContentRead),
1758                              bWait ? MSG_WAITALL : 0, &bytes_read))
1759             {
1760
1761                 if (((lpwhr->dwContentLength != -1) &&
1762                      (lpwhr->dwContentRead != lpwhr->dwContentLength)))
1763                     ERR("not all data received %d/%d\n", lpwhr->dwContentRead,
1764                         lpwhr->dwContentLength);
1765
1766                 /* always returns TRUE, even if the network layer returns an
1767                  * error */
1768                 *pdwNumOfBytesRead = 0;
1769                 HTTP_FinishedReading(lpwhr);
1770                 retval = TRUE;
1771             }
1772             else
1773             {
1774                 lpwhr->dwContentRead += bytes_read;
1775                 *pdwNumOfBytesRead = bytes_read;
1776                 if (!bytes_read && (lpwhr->dwContentRead == lpwhr->dwContentLength))
1777                     retval = HTTP_FinishedReading(lpwhr);
1778                 else
1779                     retval = TRUE;
1780             }
1781             break;
1782
1783         case WH_HFILE:
1784             /* FIXME: FTP should use NETCON_ stuff */
1785             nSocket = ((LPWININETFTPFILE)lpwh)->nDataSocket;
1786             if (nSocket != -1)
1787             {
1788                 int res = recv(nSocket, lpBuffer, dwNumOfBytesToRead, bWait ? MSG_WAITALL : 0);
1789                 retval = (res >= 0);
1790                 *pdwNumOfBytesRead = retval ? res : 0;
1791             }
1792             break;
1793
1794         default:
1795             break;
1796     }
1797
1798     if (bSendCompletionStatus)
1799     {
1800         INTERNET_ASYNC_RESULT iar;
1801
1802         iar.dwResult = retval;
1803         iar.dwError = iar.dwError = retval ? ERROR_SUCCESS :
1804                                              INTERNET_GetLastError();
1805
1806         INTERNET_SendCallback(lpwh, lpwh->dwContext,
1807                               INTERNET_STATUS_REQUEST_COMPLETE, &iar,
1808                               sizeof(INTERNET_ASYNC_RESULT));
1809     }
1810     return retval;
1811 }
1812
1813 /***********************************************************************
1814  *           InternetReadFile (WININET.@)
1815  *
1816  * Read data from an open internet file
1817  *
1818  * RETURNS
1819  *    TRUE  on success
1820  *    FALSE on failure
1821  *
1822  */
1823 BOOL WINAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer,
1824         DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead)
1825 {
1826     LPWININETHANDLEHEADER lpwh;
1827     BOOL retval;
1828
1829     TRACE("%p %p %d %p\n", hFile, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead);
1830
1831     lpwh = WININET_GetObject( hFile );
1832     if (!lpwh)
1833     {
1834         INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1835         return FALSE;
1836     }
1837
1838     retval = INTERNET_ReadFile(lpwh, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead, TRUE, FALSE);
1839     WININET_Release( lpwh );
1840
1841     TRACE("-- %s (bytes read: %d)\n", retval ? "TRUE": "FALSE", pdwNumOfBytesRead ? *pdwNumOfBytesRead : -1);
1842     return retval;
1843 }
1844
1845 /***********************************************************************
1846  *           InternetReadFileExA (WININET.@)
1847  *
1848  * Read data from an open internet file
1849  *
1850  * PARAMS
1851  *  hFile         [I] Handle returned by InternetOpenUrl or HttpOpenRequest.
1852  *  lpBuffersOut  [I/O] Buffer.
1853  *  dwFlags       [I] Flags. See notes.
1854  *  dwContext     [I] Context for callbacks.
1855  *
1856  * RETURNS
1857  *    TRUE  on success
1858  *    FALSE on failure
1859  *
1860  * NOTES
1861  *  The parameter dwFlags include zero or more of the following flags:
1862  *|IRF_ASYNC - Makes the call asynchronous.
1863  *|IRF_SYNC - Makes the call synchronous.
1864  *|IRF_USE_CONTEXT - Forces dwContext to be used.
1865  *|IRF_NO_WAIT - Don't block if the data is not available, just return what is available.
1866  *
1867  * However, in testing IRF_USE_CONTEXT seems to have no effect - dwContext isn't used.
1868  *
1869  * SEE
1870  *  InternetOpenUrlA(), HttpOpenRequestA()
1871  */
1872 void AsyncInternetReadFileExProc(WORKREQUEST *workRequest)
1873 {
1874     struct WORKREQ_INTERNETREADFILEEXA const *req = &workRequest->u.InternetReadFileExA;
1875
1876     TRACE("INTERNETREADFILEEXA %p\n", workRequest->hdr);
1877
1878     INTERNET_ReadFile(workRequest->hdr, req->lpBuffersOut->lpvBuffer,
1879         req->lpBuffersOut->dwBufferLength,
1880         &req->lpBuffersOut->dwBufferLength, TRUE, TRUE);
1881 }
1882
1883 BOOL WINAPI InternetReadFileExA(HINTERNET hFile, LPINTERNET_BUFFERSA lpBuffersOut,
1884         DWORD dwFlags, DWORD_PTR dwContext)
1885 {
1886     BOOL retval = FALSE;
1887     LPWININETHANDLEHEADER lpwh;
1888
1889     TRACE("(%p %p 0x%x 0x%lx)\n", hFile, lpBuffersOut, dwFlags, dwContext);
1890
1891     if (dwFlags & ~(IRF_ASYNC|IRF_NO_WAIT))
1892         FIXME("these dwFlags aren't implemented: 0x%x\n", dwFlags & ~(IRF_ASYNC|IRF_NO_WAIT));
1893
1894     if (lpBuffersOut->dwStructSize != sizeof(*lpBuffersOut))
1895     {
1896         INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1897         return FALSE;
1898     }
1899
1900     lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
1901     if (!lpwh)
1902     {
1903         INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1904         return FALSE;
1905     }
1906
1907     INTERNET_SendCallback(lpwh, lpwh->dwContext,
1908                           INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
1909
1910     /* FIXME: IRF_ASYNC may not be the right thing to test here;
1911      * hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC is probably better */
1912     if (dwFlags & IRF_ASYNC)
1913     {
1914         DWORD dwDataAvailable = 0;
1915
1916         if (lpwh->htype == WH_HHTTPREQ)
1917             NETCON_query_data_available(&((LPWININETHTTPREQW)lpwh)->netConnection,
1918                                         &dwDataAvailable);
1919
1920         if (!dwDataAvailable)
1921         {
1922             WORKREQUEST workRequest;
1923             struct WORKREQ_INTERNETREADFILEEXA *req;
1924
1925             workRequest.asyncproc = AsyncInternetReadFileExProc;
1926             workRequest.hdr = WININET_AddRef( lpwh );
1927             req = &workRequest.u.InternetReadFileExA;
1928             req->lpBuffersOut = lpBuffersOut;
1929
1930             if (!INTERNET_AsyncCall(&workRequest))
1931                 WININET_Release( lpwh );
1932             else
1933                 INTERNET_SetLastError(ERROR_IO_PENDING);
1934             goto end;
1935         }
1936     }
1937
1938     retval = INTERNET_ReadFile(lpwh, lpBuffersOut->lpvBuffer,
1939         lpBuffersOut->dwBufferLength, &lpBuffersOut->dwBufferLength,
1940         !(dwFlags & IRF_NO_WAIT), FALSE);
1941
1942     if (retval)
1943     {
1944         DWORD dwBytesReceived = lpBuffersOut->dwBufferLength;
1945         INTERNET_SendCallback(lpwh, lpwh->dwContext,
1946                               INTERNET_STATUS_RESPONSE_RECEIVED, &dwBytesReceived,
1947                               sizeof(dwBytesReceived));
1948     }
1949
1950 end:
1951     WININET_Release( lpwh );
1952
1953     TRACE("-- %s (bytes read: %d)\n", retval ? "TRUE": "FALSE", lpBuffersOut->dwBufferLength);
1954     return retval;
1955 }
1956
1957 /***********************************************************************
1958  *           InternetReadFileExW (WININET.@)
1959  *
1960  * Read data from an open internet file.
1961  *
1962  * PARAMS
1963  *  hFile         [I] Handle returned by InternetOpenUrl() or HttpOpenRequest().
1964  *  lpBuffersOut  [I/O] Buffer.
1965  *  dwFlags       [I] Flags.
1966  *  dwContext     [I] Context for callbacks.
1967  *
1968  * RETURNS
1969  *    FALSE, last error is set to ERROR_CALL_NOT_IMPLEMENTED
1970  *
1971  * NOTES
1972  *  Not implemented in Wine or native either (as of IE6 SP2).
1973  *
1974  */
1975 BOOL WINAPI InternetReadFileExW(HINTERNET hFile, LPINTERNET_BUFFERSW lpBuffer,
1976         DWORD dwFlags, DWORD_PTR dwContext)
1977 {
1978   ERR("(%p, %p, 0x%x, 0x%lx): not implemented in native\n", hFile, lpBuffer, dwFlags, dwContext);
1979
1980   INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1981   return FALSE;
1982 }
1983
1984 /***********************************************************************
1985  *           INET_QueryOptionHelper (internal)
1986  */
1987 static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD dwOption,
1988                                    LPVOID lpBuffer, LPDWORD lpdwBufferLength)
1989 {
1990     LPWININETHANDLEHEADER lpwhh;
1991     BOOL bSuccess = FALSE;
1992
1993     TRACE("(%p, 0x%08x, %p, %p)\n", hInternet, dwOption, lpBuffer, lpdwBufferLength);
1994
1995     lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
1996
1997     switch (dwOption)
1998     {
1999         case INTERNET_OPTION_HANDLE_TYPE:
2000         {
2001             ULONG type;
2002
2003             if (!lpwhh)
2004             {
2005                 WARN("Invalid hInternet handle\n");
2006                 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
2007                 return FALSE;
2008             }
2009
2010             type = lpwhh->htype;
2011
2012             TRACE("INTERNET_OPTION_HANDLE_TYPE: %d\n", type);
2013
2014             if (*lpdwBufferLength < sizeof(ULONG))
2015                 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2016             else
2017             {
2018                 memcpy(lpBuffer, &type, sizeof(ULONG));
2019                 bSuccess = TRUE;
2020             }
2021             *lpdwBufferLength = sizeof(ULONG);
2022             break;
2023         }
2024
2025         case INTERNET_OPTION_REQUEST_FLAGS:
2026         {
2027             ULONG flags = 4;
2028             TRACE("INTERNET_OPTION_REQUEST_FLAGS: %d\n", flags);
2029             if (*lpdwBufferLength < sizeof(ULONG))
2030                 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2031             else
2032             {
2033                 memcpy(lpBuffer, &flags, sizeof(ULONG));
2034                 bSuccess = TRUE;
2035             }
2036             *lpdwBufferLength = sizeof(ULONG);
2037             break;
2038         }
2039
2040         case INTERNET_OPTION_URL:
2041         case INTERNET_OPTION_DATAFILE_NAME:
2042         {
2043             if (!lpwhh)
2044             {
2045                 WARN("Invalid hInternet handle\n");
2046                 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
2047                 return FALSE;
2048             }
2049             if (lpwhh->htype == WH_HHTTPREQ)
2050             {
2051                 LPWININETHTTPREQW lpreq = (LPWININETHTTPREQW) lpwhh;
2052                 WCHAR url[1023];
2053                 static const WCHAR szFmt[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
2054                 static const WCHAR szHost[] = {'H','o','s','t',0};
2055                 DWORD sizeRequired;
2056                 LPHTTPHEADERW Host;
2057
2058                 Host = HTTP_GetHeader(lpreq,szHost);
2059                 sprintfW(url,szFmt,Host->lpszValue,lpreq->lpszPath);
2060                 TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url));
2061                 if(!bIsUnicode)
2062                 {
2063                     sizeRequired = WideCharToMultiByte(CP_ACP,0,url,-1,
2064                      lpBuffer,*lpdwBufferLength,NULL,NULL);
2065                     if (sizeRequired > *lpdwBufferLength)
2066                         INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2067                     else
2068                         bSuccess = TRUE;
2069                     *lpdwBufferLength = sizeRequired;
2070                 }
2071                 else
2072                 {
2073                     sizeRequired = (lstrlenW(url)+1) * sizeof(WCHAR);
2074                     if (*lpdwBufferLength < sizeRequired)
2075                         INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2076                     else
2077                     {
2078                         strcpyW(lpBuffer, url);
2079                         bSuccess = TRUE;
2080                     }
2081                     *lpdwBufferLength = sizeRequired;
2082                 }
2083             }
2084             break;
2085         }
2086         case INTERNET_OPTION_HTTP_VERSION:
2087         {
2088             if (*lpdwBufferLength < sizeof(HTTP_VERSION_INFO))
2089                 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2090             else
2091             {
2092                 /*
2093                  * Presently hardcoded to 1.1
2094                  */
2095                 ((HTTP_VERSION_INFO*)lpBuffer)->dwMajorVersion = 1;
2096                 ((HTTP_VERSION_INFO*)lpBuffer)->dwMinorVersion = 1;
2097                 bSuccess = TRUE;
2098             }
2099             *lpdwBufferLength = sizeof(HTTP_VERSION_INFO);
2100             break;
2101         }
2102        case INTERNET_OPTION_CONNECTED_STATE:
2103        {
2104             DWORD *pdwConnectedState = (DWORD *)lpBuffer;
2105             FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
2106
2107             if (*lpdwBufferLength < sizeof(*pdwConnectedState))
2108                  INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2109             else
2110             {
2111                 *pdwConnectedState = INTERNET_STATE_CONNECTED;
2112                 bSuccess = TRUE;
2113             }
2114             *lpdwBufferLength = sizeof(*pdwConnectedState);
2115             break;
2116         }
2117         case INTERNET_OPTION_PROXY:
2118         {
2119             LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW)lpwhh;
2120             WININETAPPINFOW wai;
2121
2122             if (lpwai == NULL)
2123             {
2124                 TRACE("Getting global proxy info\n");
2125                 memset(&wai, 0, sizeof(WININETAPPINFOW));
2126                 INTERNET_ConfigureProxyFromReg( &wai );
2127                 lpwai = &wai;
2128             }
2129
2130             if (bIsUnicode)
2131             {
2132                 INTERNET_PROXY_INFOW *pPI = (INTERNET_PROXY_INFOW *)lpBuffer;
2133                 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
2134
2135                 if (lpwai->lpszProxy)
2136                     proxyBytesRequired = (lstrlenW(lpwai->lpszProxy) + 1) *
2137                      sizeof(WCHAR);
2138                 if (lpwai->lpszProxyBypass)
2139                     proxyBypassBytesRequired =
2140                      (lstrlenW(lpwai->lpszProxyBypass) + 1) * sizeof(WCHAR);
2141                 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOW) +
2142                  proxyBytesRequired + proxyBypassBytesRequired)
2143                     INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2144                 else
2145                 {
2146                     LPWSTR proxy = (LPWSTR)((LPBYTE)lpBuffer +
2147                                             sizeof(INTERNET_PROXY_INFOW));
2148                     LPWSTR proxy_bypass = (LPWSTR)((LPBYTE)lpBuffer +
2149                                                    sizeof(INTERNET_PROXY_INFOW) +
2150                                                    proxyBytesRequired);
2151
2152                     pPI->dwAccessType = lpwai->dwAccessType;
2153                     pPI->lpszProxy = NULL;
2154                     pPI->lpszProxyBypass = NULL;
2155                     if (lpwai->lpszProxy)
2156                     {
2157                         lstrcpyW(proxy, lpwai->lpszProxy);
2158                         pPI->lpszProxy = proxy;
2159                     }
2160
2161                     if (lpwai->lpszProxyBypass)
2162                     {
2163                         lstrcpyW(proxy_bypass, lpwai->lpszProxyBypass);
2164                         pPI->lpszProxyBypass = proxy_bypass;
2165                     }
2166                     bSuccess = TRUE;
2167                 }
2168                 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOW) +
2169                  proxyBytesRequired + proxyBypassBytesRequired;
2170             }
2171             else
2172             {
2173                 INTERNET_PROXY_INFOA *pPI = (INTERNET_PROXY_INFOA *)lpBuffer;
2174                 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
2175
2176                 if (lpwai->lpszProxy)
2177                     proxyBytesRequired = WideCharToMultiByte(CP_ACP, 0,
2178                      lpwai->lpszProxy, -1, NULL, 0, NULL, NULL);
2179                 if (lpwai->lpszProxyBypass)
2180                     proxyBypassBytesRequired = WideCharToMultiByte(CP_ACP, 0,
2181                      lpwai->lpszProxyBypass, -1, NULL, 0, NULL, NULL);
2182                 if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOA) +
2183                  proxyBytesRequired + proxyBypassBytesRequired)
2184                     INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2185                 else
2186                 {
2187                     LPSTR proxy = (LPSTR)((LPBYTE)lpBuffer +
2188                                           sizeof(INTERNET_PROXY_INFOA));
2189                     LPSTR proxy_bypass = (LPSTR)((LPBYTE)lpBuffer +
2190                                                  sizeof(INTERNET_PROXY_INFOA) +
2191                                                  proxyBytesRequired);
2192
2193                     pPI->dwAccessType = lpwai->dwAccessType;
2194                     pPI->lpszProxy = NULL;
2195                     pPI->lpszProxyBypass = NULL;
2196                     if (lpwai->lpszProxy)
2197                     {
2198                         WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxy, -1,
2199                                             proxy, proxyBytesRequired, NULL, NULL);
2200                         pPI->lpszProxy = proxy;
2201                     }
2202
2203                     if (lpwai->lpszProxyBypass)
2204                     {
2205                         WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxyBypass,
2206                                             -1, proxy_bypass, proxyBypassBytesRequired,
2207                                             NULL, NULL);
2208                         pPI->lpszProxyBypass = proxy_bypass;
2209                     }
2210                     bSuccess = TRUE;
2211                 }
2212                 *lpdwBufferLength = sizeof(INTERNET_PROXY_INFOA) +
2213                  proxyBytesRequired + proxyBypassBytesRequired;
2214             }
2215             break;
2216         }
2217         case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
2218         {
2219             ULONG conn = 2;
2220             TRACE("INTERNET_OPTION_MAX_CONNS_PER_SERVER: %d\n", conn);
2221             if (*lpdwBufferLength < sizeof(ULONG))
2222                 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2223             else
2224             {
2225                 memcpy(lpBuffer, &conn, sizeof(ULONG));
2226                 bSuccess = TRUE;
2227             }
2228             *lpdwBufferLength = sizeof(ULONG);
2229             break;
2230         }
2231         case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
2232         {
2233             ULONG conn = 4;
2234             TRACE("INTERNET_OPTION_MAX_CONNS_1_0_SERVER: %d\n", conn);
2235             if (*lpdwBufferLength < sizeof(ULONG))
2236                 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2237             else
2238             {
2239                 memcpy(lpBuffer, &conn, sizeof(ULONG));
2240                 bSuccess = TRUE;
2241             }
2242             *lpdwBufferLength = sizeof(ULONG);
2243             break;
2244         }
2245         case INTERNET_OPTION_SECURITY_FLAGS:
2246             FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
2247             break;
2248
2249         case INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT:
2250             if (!lpwhh)
2251             {
2252                 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2253                 return FALSE;
2254             }
2255             if (*lpdwBufferLength < sizeof(INTERNET_CERTIFICATE_INFOW))
2256             {
2257                 *lpdwBufferLength = sizeof(INTERNET_CERTIFICATE_INFOW);
2258                 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
2259             }
2260             else if (lpwhh->htype == WH_HHTTPREQ)
2261             {
2262                 LPWININETHTTPREQW lpwhr;
2263                 PCCERT_CONTEXT context;
2264
2265                 lpwhr = (LPWININETHTTPREQW)lpwhh;
2266                 context = (PCCERT_CONTEXT)NETCON_GetCert(&(lpwhr->netConnection));
2267                 if (context)
2268                 {
2269                     LPINTERNET_CERTIFICATE_INFOW info = (LPINTERNET_CERTIFICATE_INFOW)lpBuffer;
2270                     DWORD strLen;
2271
2272                     memset(info,0,sizeof(INTERNET_CERTIFICATE_INFOW));
2273                     info->ftExpiry = context->pCertInfo->NotAfter;
2274                     info->ftStart = context->pCertInfo->NotBefore;
2275                     if (bIsUnicode)
2276                     {
2277                         strLen = CertNameToStrW(context->dwCertEncodingType,
2278                          &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2279                          NULL, 0);
2280                         info->lpszSubjectInfo = LocalAlloc(0,
2281                          strLen * sizeof(WCHAR));
2282                         if (info->lpszSubjectInfo)
2283                             CertNameToStrW(context->dwCertEncodingType,
2284                              &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2285                              info->lpszSubjectInfo, strLen);
2286                         strLen = CertNameToStrW(context->dwCertEncodingType,
2287                          &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2288                          NULL, 0);
2289                         info->lpszIssuerInfo = LocalAlloc(0,
2290                          strLen * sizeof(WCHAR));
2291                         if (info->lpszIssuerInfo)
2292                             CertNameToStrW(context->dwCertEncodingType,
2293                              &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2294                              info->lpszIssuerInfo, strLen);
2295                     }
2296                     else
2297                     {
2298                         LPINTERNET_CERTIFICATE_INFOA infoA =
2299                          (LPINTERNET_CERTIFICATE_INFOA)info;
2300
2301                         strLen = CertNameToStrA(context->dwCertEncodingType,
2302                          &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2303                          NULL, 0);
2304                         infoA->lpszSubjectInfo = LocalAlloc(0, strLen);
2305                         if (infoA->lpszSubjectInfo)
2306                             CertNameToStrA(context->dwCertEncodingType,
2307                              &context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
2308                              infoA->lpszSubjectInfo, strLen);
2309                         strLen = CertNameToStrA(context->dwCertEncodingType,
2310                          &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2311                          NULL, 0);
2312                         infoA->lpszIssuerInfo = LocalAlloc(0, strLen);
2313                         if (infoA->lpszIssuerInfo)
2314                             CertNameToStrA(context->dwCertEncodingType,
2315                              &context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
2316                              infoA->lpszIssuerInfo, strLen);
2317                     }
2318                     /*
2319                      * Contrary to MSDN, these do not appear to be set.
2320                      * lpszProtocolName
2321                      * lpszSignatureAlgName
2322                      * lpszEncryptionAlgName
2323                      * dwKeySize
2324                      */
2325                     CertFreeCertificateContext(context);
2326                     bSuccess = TRUE;
2327                 }
2328             }
2329             break;
2330         default:
2331             FIXME("Stub! %d\n", dwOption);
2332             break;
2333     }
2334     if (lpwhh)
2335         WININET_Release( lpwhh );
2336
2337     return bSuccess;
2338 }
2339
2340 /***********************************************************************
2341  *           InternetQueryOptionW (WININET.@)
2342  *
2343  * Queries an options on the specified handle
2344  *
2345  * RETURNS
2346  *    TRUE  on success
2347  *    FALSE on failure
2348  *
2349  */
2350 BOOL WINAPI InternetQueryOptionW(HINTERNET hInternet, DWORD dwOption,
2351                                  LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2352 {
2353     return INET_QueryOptionHelper(TRUE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2354 }
2355
2356 /***********************************************************************
2357  *           InternetQueryOptionA (WININET.@)
2358  *
2359  * Queries an options on the specified handle
2360  *
2361  * RETURNS
2362  *    TRUE  on success
2363  *    FALSE on failure
2364  *
2365  */
2366 BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
2367                                  LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2368 {
2369     return INET_QueryOptionHelper(FALSE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
2370 }
2371
2372
2373 /***********************************************************************
2374  *           InternetSetOptionW (WININET.@)
2375  *
2376  * Sets an options on the specified handle
2377  *
2378  * RETURNS
2379  *    TRUE  on success
2380  *    FALSE on failure
2381  *
2382  */
2383 BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
2384                            LPVOID lpBuffer, DWORD dwBufferLength)
2385 {
2386     LPWININETHANDLEHEADER lpwhh;
2387     BOOL ret = TRUE;
2388
2389     TRACE("0x%08x\n", dwOption);
2390
2391     lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
2392     if( !lpwhh )
2393         return FALSE;
2394
2395     switch (dwOption)
2396     {
2397     case INTERNET_OPTION_CALLBACK:
2398       {
2399         INTERNET_STATUS_CALLBACK callback = *(INTERNET_STATUS_CALLBACK *)lpBuffer;
2400         ret = (set_status_callback(lpwhh, callback, TRUE) != INTERNET_INVALID_STATUS_CALLBACK);
2401         break;
2402       }
2403     case INTERNET_OPTION_HTTP_VERSION:
2404       {
2405         HTTP_VERSION_INFO* pVersion=(HTTP_VERSION_INFO*)lpBuffer;
2406         FIXME("Option INTERNET_OPTION_HTTP_VERSION(%d,%d): STUB\n",pVersion->dwMajorVersion,pVersion->dwMinorVersion);
2407       }
2408       break;
2409     case INTERNET_OPTION_ERROR_MASK:
2410       {
2411         unsigned long flags=*(unsigned long*)lpBuffer;
2412         FIXME("Option INTERNET_OPTION_ERROR_MASK(%ld): STUB\n",flags);
2413       }
2414       break;
2415     case INTERNET_OPTION_CODEPAGE:
2416       {
2417         unsigned long codepage=*(unsigned long*)lpBuffer;
2418         FIXME("Option INTERNET_OPTION_CODEPAGE (%ld): STUB\n",codepage);
2419       }
2420       break;
2421     case INTERNET_OPTION_REQUEST_PRIORITY:
2422       {
2423         unsigned long priority=*(unsigned long*)lpBuffer;
2424         FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%ld): STUB\n",priority);
2425       }
2426       break;
2427     case INTERNET_OPTION_CONNECT_TIMEOUT:
2428       {
2429         unsigned long connecttimeout=*(unsigned long*)lpBuffer;
2430         FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%ld): STUB\n",connecttimeout);
2431       }
2432       break;
2433     case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT:
2434       {
2435         unsigned long receivetimeout=*(unsigned long*)lpBuffer;
2436         FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%ld): STUB\n",receivetimeout);
2437       }
2438       break;
2439     case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
2440       {
2441         unsigned long conns=*(unsigned long*)lpBuffer;
2442         FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_SERVER (%ld): STUB\n",conns);
2443       }
2444       break;
2445     case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
2446       {
2447         unsigned long conns=*(unsigned long*)lpBuffer;
2448         FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER (%ld): STUB\n",conns);
2449       }
2450       break;
2451     case INTERNET_OPTION_RESET_URLCACHE_SESSION:
2452         FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
2453         break;
2454     case INTERNET_OPTION_END_BROWSER_SESSION:
2455         FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
2456         break;
2457     case INTERNET_OPTION_CONNECTED_STATE:
2458         FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
2459         break;
2460     case INTERNET_OPTION_DISABLE_PASSPORT_AUTH:
2461         TRACE("Option INTERNET_OPTION_DISABLE_PASSPORT_AUTH: harmless stub, since not enabled\n");
2462         break;
2463     case INTERNET_OPTION_SEND_TIMEOUT:
2464     case INTERNET_OPTION_RECEIVE_TIMEOUT:
2465         TRACE("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT\n");
2466         if (dwBufferLength == sizeof(DWORD))
2467         {
2468             if (lpwhh->htype == WH_HHTTPREQ)
2469                 ret = NETCON_set_timeout(
2470                     &((LPWININETHTTPREQW)lpwhh)->netConnection,
2471                     dwOption == INTERNET_OPTION_SEND_TIMEOUT,
2472                     *(DWORD *)lpBuffer);
2473             else
2474             {
2475                 FIXME("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT not supported on protocol %d\n",
2476                       lpwhh->htype);
2477             }
2478         }
2479         else
2480         {
2481             INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2482             ret = FALSE;
2483         }
2484         break;
2485     case INTERNET_OPTION_CONNECT_RETRIES:
2486         FIXME("Option INTERNET_OPTION_CONNECT_RETRIES: STUB\n");
2487         break;
2488     case INTERNET_OPTION_CONTEXT_VALUE:
2489          FIXME("Option INTERNET_OPTION_CONTEXT_VALUE; STUB\n");
2490          break;
2491     case INTERNET_OPTION_SECURITY_FLAGS:
2492          FIXME("Option INTERNET_OPTION_SECURITY_FLAGS; STUB\n");
2493          break;
2494     default:
2495         FIXME("Option %d STUB\n",dwOption);
2496         INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2497         ret = FALSE;
2498         break;
2499     }
2500     WININET_Release( lpwhh );
2501
2502     return ret;
2503 }
2504
2505
2506 /***********************************************************************
2507  *           InternetSetOptionA (WININET.@)
2508  *
2509  * Sets an options on the specified handle.
2510  *
2511  * RETURNS
2512  *    TRUE  on success
2513  *    FALSE on failure
2514  *
2515  */
2516 BOOL WINAPI InternetSetOptionA(HINTERNET hInternet, DWORD dwOption,
2517                            LPVOID lpBuffer, DWORD dwBufferLength)
2518 {
2519     LPVOID wbuffer;
2520     DWORD wlen;
2521     BOOL r;
2522
2523     switch( dwOption )
2524     {
2525     case INTERNET_OPTION_CALLBACK:
2526         {
2527         LPWININETHANDLEHEADER lpwh;
2528         INTERNET_STATUS_CALLBACK callback = *(INTERNET_STATUS_CALLBACK *)lpBuffer;
2529
2530         if (!(lpwh = (LPWININETHANDLEHEADER)WININET_GetObject(hInternet))) return FALSE;
2531         r = (set_status_callback(lpwh, callback, FALSE) != INTERNET_INVALID_STATUS_CALLBACK);
2532         WININET_Release(lpwh);
2533         return r;
2534         }
2535     case INTERNET_OPTION_PROXY:
2536         {
2537         LPINTERNET_PROXY_INFOA pi = (LPINTERNET_PROXY_INFOA) lpBuffer;
2538         LPINTERNET_PROXY_INFOW piw;
2539         DWORD proxlen, prbylen;
2540         LPWSTR prox, prby;
2541
2542         proxlen = MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, NULL, 0);
2543         prbylen= MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, NULL, 0);
2544         wlen = sizeof(*piw) + proxlen + prbylen;
2545         wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2546         piw = (LPINTERNET_PROXY_INFOW) wbuffer;
2547         piw->dwAccessType = pi->dwAccessType;
2548         prox = (LPWSTR) &piw[1];
2549         prby = &prox[proxlen+1];
2550         MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, prox, proxlen);
2551         MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, prby, prbylen);
2552         piw->lpszProxy = prox;
2553         piw->lpszProxyBypass = prby;
2554         }
2555         break;
2556     case INTERNET_OPTION_USER_AGENT:
2557     case INTERNET_OPTION_USERNAME:
2558     case INTERNET_OPTION_PASSWORD:
2559         wlen = MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2560                                    NULL, 0 );
2561         wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2562         MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2563                                    wbuffer, wlen );
2564         break;
2565     default:
2566         wbuffer = lpBuffer;
2567         wlen = dwBufferLength;
2568     }
2569
2570     r = InternetSetOptionW(hInternet,dwOption, wbuffer, wlen);
2571
2572     if( lpBuffer != wbuffer )
2573         HeapFree( GetProcessHeap(), 0, wbuffer );
2574
2575     return r;
2576 }
2577
2578
2579 /***********************************************************************
2580  *           InternetSetOptionExA (WININET.@)
2581  */
2582 BOOL WINAPI InternetSetOptionExA(HINTERNET hInternet, DWORD dwOption,
2583                            LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2584 {
2585     FIXME("Flags %08x ignored\n", dwFlags);
2586     return InternetSetOptionA( hInternet, dwOption, lpBuffer, dwBufferLength );
2587 }
2588
2589 /***********************************************************************
2590  *           InternetSetOptionExW (WININET.@)
2591  */
2592 BOOL WINAPI InternetSetOptionExW(HINTERNET hInternet, DWORD dwOption,
2593                            LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2594 {
2595     FIXME("Flags %08x ignored\n", dwFlags);
2596     if( dwFlags & ~ISO_VALID_FLAGS )
2597     {
2598         INTERNET_SetLastError( ERROR_INVALID_PARAMETER );
2599         return FALSE;
2600     }
2601     return InternetSetOptionW( hInternet, dwOption, lpBuffer, dwBufferLength );
2602 }
2603
2604 static const WCHAR WININET_wkday[7][4] =
2605     { { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
2606       { 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
2607 static const WCHAR WININET_month[12][4] =
2608     { { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
2609       { 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
2610       { 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
2611
2612 /***********************************************************************
2613  *           InternetTimeFromSystemTimeA (WININET.@)
2614  */
2615 BOOL WINAPI InternetTimeFromSystemTimeA( const SYSTEMTIME* time, DWORD format, LPSTR string, DWORD size )
2616 {
2617     BOOL ret;
2618     WCHAR stringW[INTERNET_RFC1123_BUFSIZE];
2619
2620     TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
2621
2622     ret = InternetTimeFromSystemTimeW( time, format, stringW, sizeof(stringW) );
2623     if (ret) WideCharToMultiByte( CP_ACP, 0, stringW, -1, string, size, NULL, NULL );
2624
2625     return ret;
2626 }
2627
2628 /***********************************************************************
2629  *           InternetTimeFromSystemTimeW (WININET.@)
2630  */
2631 BOOL WINAPI InternetTimeFromSystemTimeW( const SYSTEMTIME* time, DWORD format, LPWSTR string, DWORD size )
2632 {
2633     static const WCHAR date[] =
2634         { '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
2635           '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
2636
2637     TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
2638
2639     if (!time || !string) return FALSE;
2640
2641     if (format != INTERNET_RFC1123_FORMAT || size < INTERNET_RFC1123_BUFSIZE * sizeof(WCHAR))
2642         return FALSE;
2643
2644     sprintfW( string, date,
2645               WININET_wkday[time->wDayOfWeek],
2646               time->wDay,
2647               WININET_month[time->wMonth - 1],
2648               time->wYear,
2649               time->wHour,
2650               time->wMinute,
2651               time->wSecond );
2652
2653     return TRUE;
2654 }
2655
2656 /***********************************************************************
2657  *           InternetTimeToSystemTimeA (WININET.@)
2658  */
2659 BOOL WINAPI InternetTimeToSystemTimeA( LPCSTR string, SYSTEMTIME* time, DWORD reserved )
2660 {
2661     BOOL ret = FALSE;
2662     WCHAR *stringW;
2663     int len;
2664
2665     TRACE( "%s %p 0x%08x\n", debugstr_a(string), time, reserved );
2666
2667     len = MultiByteToWideChar( CP_ACP, 0, string, -1, NULL, 0 );
2668     stringW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
2669
2670     if (stringW)
2671     {
2672         MultiByteToWideChar( CP_ACP, 0, string, -1, stringW, len );
2673         ret = InternetTimeToSystemTimeW( stringW, time, reserved );
2674         HeapFree( GetProcessHeap(), 0, stringW );
2675     }
2676     return ret;
2677 }
2678
2679 /***********************************************************************
2680  *           InternetTimeToSystemTimeW (WININET.@)
2681  */
2682 BOOL WINAPI InternetTimeToSystemTimeW( LPCWSTR string, SYSTEMTIME* time, DWORD reserved )
2683 {
2684     unsigned int i;
2685     const WCHAR *s = string;
2686     WCHAR       *end;
2687
2688     TRACE( "%s %p 0x%08x\n", debugstr_w(string), time, reserved );
2689
2690     if (!string || !time) return FALSE;
2691
2692     /* Windows does this too */
2693     GetSystemTime( time );
2694
2695     /*  Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
2696      *  a SYSTEMTIME structure.
2697      */
2698
2699     while (*s && !isalphaW( *s )) s++;
2700     if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2701     time->wDayOfWeek = 7;
2702
2703     for (i = 0; i < 7; i++)
2704     {
2705         if (toupperW( WININET_wkday[i][0] ) == toupperW( s[0] ) &&
2706             toupperW( WININET_wkday[i][1] ) == toupperW( s[1] ) &&
2707             toupperW( WININET_wkday[i][2] ) == toupperW( s[2] ) )
2708         {
2709             time->wDayOfWeek = i;
2710             break;
2711         }
2712     }
2713
2714     if (time->wDayOfWeek > 6) return TRUE;
2715     while (*s && !isdigitW( *s )) s++;
2716     time->wDay = strtolW( s, &end, 10 );
2717     s = end;
2718
2719     while (*s && !isalphaW( *s )) s++;
2720     if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2721     time->wMonth = 0;
2722
2723     for (i = 0; i < 12; i++)
2724     {
2725         if (toupperW( WININET_month[i][0]) == toupperW( s[0] ) &&
2726             toupperW( WININET_month[i][1]) == toupperW( s[1] ) &&
2727             toupperW( WININET_month[i][2]) == toupperW( s[2] ) )
2728         {
2729             time->wMonth = i + 1;
2730             break;
2731         }
2732     }
2733     if (time->wMonth == 0) return TRUE;
2734
2735     while (*s && !isdigitW( *s )) s++;
2736     if (*s == '\0') return TRUE;
2737     time->wYear = strtolW( s, &end, 10 );
2738     s = end;
2739
2740     while (*s && !isdigitW( *s )) s++;
2741     if (*s == '\0') return TRUE;
2742     time->wHour = strtolW( s, &end, 10 );
2743     s = end;
2744
2745     while (*s && !isdigitW( *s )) s++;
2746     if (*s == '\0') return TRUE;
2747     time->wMinute = strtolW( s, &end, 10 );
2748     s = end;
2749
2750     while (*s && !isdigitW( *s )) s++;
2751     if (*s == '\0') return TRUE;
2752     time->wSecond = strtolW( s, &end, 10 );
2753     s = end;
2754
2755     time->wMilliseconds = 0;
2756     return TRUE;
2757 }
2758
2759 /***********************************************************************
2760  *      InternetCheckConnectionW (WININET.@)
2761  *
2762  * Pings a requested host to check internet connection
2763  *
2764  * RETURNS
2765  *   TRUE on success and FALSE on failure. If a failure then
2766  *   ERROR_NOT_CONNECTED is placed into GetLastError
2767  *
2768  */
2769 BOOL WINAPI InternetCheckConnectionW( LPCWSTR lpszUrl, DWORD dwFlags, DWORD dwReserved )
2770 {
2771 /*
2772  * this is a kludge which runs the resident ping program and reads the output.
2773  *
2774  * Anyone have a better idea?
2775  */
2776
2777   BOOL   rc = FALSE;
2778   static const CHAR ping[] = "ping -c 1 ";
2779   static const CHAR redirect[] = " >/dev/null 2>/dev/null";
2780   CHAR *command = NULL;
2781   WCHAR hostW[1024];
2782   DWORD len;
2783   INTERNET_PORT port;
2784   int status = -1;
2785
2786   FIXME("\n");
2787
2788   /*
2789    * Crack or set the Address
2790    */
2791   if (lpszUrl == NULL)
2792   {
2793      /*
2794       * According to the doc we are supost to use the ip for the next
2795       * server in the WnInet internal server database. I have
2796       * no idea what that is or how to get it.
2797       *
2798       * So someone needs to implement this.
2799       */
2800      FIXME("Unimplemented with URL of NULL\n");
2801      return TRUE;
2802   }
2803   else
2804   {
2805      URL_COMPONENTSW components;
2806
2807      ZeroMemory(&components,sizeof(URL_COMPONENTSW));
2808      components.lpszHostName = (LPWSTR)&hostW;
2809      components.dwHostNameLength = 1024;
2810
2811      if (!InternetCrackUrlW(lpszUrl,0,0,&components))
2812        goto End;
2813
2814      TRACE("host name : %s\n",debugstr_w(components.lpszHostName));
2815      port = components.nPort;
2816      TRACE("port: %d\n", port);
2817   }
2818
2819   if (dwFlags & FLAG_ICC_FORCE_CONNECTION)
2820   {
2821       struct sockaddr_in sin;
2822       int fd;
2823
2824       if (!GetAddress(hostW, port, &sin))
2825           goto End;
2826       fd = socket(sin.sin_family, SOCK_STREAM, 0);
2827       if (fd != -1)
2828       {
2829           if (connect(fd, (struct sockaddr *)&sin, sizeof(sin)) == 0)
2830               rc = TRUE;
2831           close(fd);
2832       }
2833   }
2834   else
2835   {
2836       /*
2837        * Build our ping command
2838        */
2839       len = WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, NULL, 0, NULL, NULL);
2840       command = HeapAlloc( GetProcessHeap(), 0, strlen(ping)+len+strlen(redirect) );
2841       strcpy(command,ping);
2842       WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, command+strlen(ping), len, NULL, NULL);
2843       strcat(command,redirect);
2844
2845       TRACE("Ping command is : %s\n",command);
2846
2847       status = system(command);
2848
2849       TRACE("Ping returned a code of %i\n",status);
2850
2851       /* Ping return code of 0 indicates success */
2852       if (status == 0)
2853          rc = TRUE;
2854   }
2855
2856 End:
2857
2858   HeapFree( GetProcessHeap(), 0, command );
2859   if (rc == FALSE)
2860     INTERNET_SetLastError(ERROR_NOT_CONNECTED);
2861
2862   return rc;
2863 }
2864
2865
2866 /***********************************************************************
2867  *      InternetCheckConnectionA (WININET.@)
2868  *
2869  * Pings a requested host to check internet connection
2870  *
2871  * RETURNS
2872  *   TRUE on success and FALSE on failure. If a failure then
2873  *   ERROR_NOT_CONNECTED is placed into GetLastError
2874  *
2875  */
2876 BOOL WINAPI InternetCheckConnectionA(LPCSTR lpszUrl, DWORD dwFlags, DWORD dwReserved)
2877 {
2878     WCHAR *szUrl;
2879     INT len;
2880     BOOL rc;
2881
2882     len = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0);
2883     if (!(szUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR))))
2884         return FALSE;
2885     MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, len);
2886     rc = InternetCheckConnectionW(szUrl, dwFlags, dwReserved);
2887     HeapFree(GetProcessHeap(), 0, szUrl);
2888     
2889     return rc;
2890 }
2891
2892
2893 /**********************************************************
2894  *      INTERNET_InternetOpenUrlW (internal)
2895  *
2896  * Opens an URL
2897  *
2898  * RETURNS
2899  *   handle of connection or NULL on failure
2900  */
2901 HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
2902     LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
2903 {
2904     URL_COMPONENTSW urlComponents;
2905     WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
2906     WCHAR password[1024], path[2048], extra[1024];
2907     HINTERNET client = NULL, client1 = NULL;
2908     
2909     TRACE("(%p, %s, %s, %08x, %08x, %08lx)\n", hIC, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2910           dwHeadersLength, dwFlags, dwContext);
2911     
2912     urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
2913     urlComponents.lpszScheme = protocol;
2914     urlComponents.dwSchemeLength = 32;
2915     urlComponents.lpszHostName = hostName;
2916     urlComponents.dwHostNameLength = MAXHOSTNAME;
2917     urlComponents.lpszUserName = userName;
2918     urlComponents.dwUserNameLength = 1024;
2919     urlComponents.lpszPassword = password;
2920     urlComponents.dwPasswordLength = 1024;
2921     urlComponents.lpszUrlPath = path;
2922     urlComponents.dwUrlPathLength = 2048;
2923     urlComponents.lpszExtraInfo = extra;
2924     urlComponents.dwExtraInfoLength = 1024;
2925     if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
2926         return NULL;
2927     switch(urlComponents.nScheme) {
2928     case INTERNET_SCHEME_FTP:
2929         if(urlComponents.nPort == 0)
2930             urlComponents.nPort = INTERNET_DEFAULT_FTP_PORT;
2931         client = FTP_Connect(hIC, hostName, urlComponents.nPort,
2932                              userName, password, dwFlags, dwContext, INET_OPENURL);
2933         if(client == NULL)
2934             break;
2935         client1 = FtpOpenFileW(client, path, GENERIC_READ, dwFlags, dwContext);
2936         if(client1 == NULL) {
2937             InternetCloseHandle(client);
2938             break;
2939         }
2940         break;
2941         
2942     case INTERNET_SCHEME_HTTP:
2943     case INTERNET_SCHEME_HTTPS: {
2944         static const WCHAR szStars[] = { '*','/','*', 0 };
2945         LPCWSTR accept[2] = { szStars, NULL };
2946         if(urlComponents.nPort == 0) {
2947             if(urlComponents.nScheme == INTERNET_SCHEME_HTTP)
2948                 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
2949             else
2950                 urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
2951         }
2952         /* FIXME: should use pointers, not handles, as handles are not thread-safe */
2953         client = HTTP_Connect(hIC, hostName, urlComponents.nPort,
2954                               userName, password, dwFlags, dwContext, INET_OPENURL);
2955         if(client == NULL)
2956             break;
2957
2958         if (urlComponents.dwExtraInfoLength) {
2959                 WCHAR *path_extra;
2960                 DWORD len = urlComponents.dwUrlPathLength + urlComponents.dwExtraInfoLength + 1;
2961
2962                 if (!(path_extra = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
2963                 {
2964                         InternetCloseHandle(client);
2965                         break;
2966                 }
2967                 strcpyW(path_extra, urlComponents.lpszUrlPath);
2968                 strcatW(path_extra, urlComponents.lpszExtraInfo);
2969                 client1 = HttpOpenRequestW(client, NULL, path_extra, NULL, NULL, accept, dwFlags, dwContext);
2970                 HeapFree(GetProcessHeap(), 0, path_extra);
2971         }
2972         else
2973                 client1 = HttpOpenRequestW(client, NULL, path, NULL, NULL, accept, dwFlags, dwContext);
2974
2975         if(client1 == NULL) {
2976             InternetCloseHandle(client);
2977             break;
2978         }
2979         HttpAddRequestHeadersW(client1, lpszHeaders, dwHeadersLength, HTTP_ADDREQ_FLAG_ADD);
2980         if (!HttpSendRequestW(client1, NULL, 0, NULL, 0) &&
2981             GetLastError() != ERROR_IO_PENDING) {
2982             InternetCloseHandle(client1);
2983             client1 = NULL;
2984             break;
2985         }
2986     }
2987     case INTERNET_SCHEME_GOPHER:
2988         /* gopher doesn't seem to be implemented in wine, but it's supposed
2989          * to be supported by InternetOpenUrlA. */
2990     default:
2991         INTERNET_SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME);
2992         break;
2993     }
2994
2995     TRACE(" %p <--\n", client1);
2996     
2997     return client1;
2998 }
2999
3000 /**********************************************************
3001  *      InternetOpenUrlW (WININET.@)
3002  *
3003  * Opens an URL
3004  *
3005  * RETURNS
3006  *   handle of connection or NULL on failure
3007  */
3008 static void AsyncInternetOpenUrlProc(WORKREQUEST *workRequest)
3009 {
3010     struct WORKREQ_INTERNETOPENURLW const *req = &workRequest->u.InternetOpenUrlW;
3011     LPWININETAPPINFOW hIC = (LPWININETAPPINFOW) workRequest->hdr;
3012
3013     TRACE("%p\n", hIC);
3014
3015     INTERNET_InternetOpenUrlW(hIC, req->lpszUrl,
3016                               req->lpszHeaders, req->dwHeadersLength, req->dwFlags, req->dwContext);
3017     HeapFree(GetProcessHeap(), 0, req->lpszUrl);
3018     HeapFree(GetProcessHeap(), 0, req->lpszHeaders);
3019 }
3020
3021 HINTERNET WINAPI InternetOpenUrlW(HINTERNET hInternet, LPCWSTR lpszUrl,
3022     LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
3023 {
3024     HINTERNET ret = NULL;
3025     LPWININETAPPINFOW hIC = NULL;
3026
3027     if (TRACE_ON(wininet)) {
3028         TRACE("(%p, %s, %s, %08x, %08x, %08lx)\n", hInternet, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
3029               dwHeadersLength, dwFlags, dwContext);
3030         TRACE("  flags :");
3031         dump_INTERNET_FLAGS(dwFlags);
3032     }
3033
3034     if (!lpszUrl)
3035     {
3036         INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3037         goto lend;
3038     }
3039
3040     hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
3041     if (NULL == hIC ||  hIC->hdr.htype != WH_HINIT) {
3042         INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
3043         goto lend;
3044     }
3045     
3046     if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) {
3047         WORKREQUEST workRequest;
3048         struct WORKREQ_INTERNETOPENURLW *req;
3049
3050         workRequest.asyncproc = AsyncInternetOpenUrlProc;
3051         workRequest.hdr = WININET_AddRef( &hIC->hdr );
3052         req = &workRequest.u.InternetOpenUrlW;
3053         req->lpszUrl = WININET_strdupW(lpszUrl);
3054         if (lpszHeaders)
3055             req->lpszHeaders = WININET_strdupW(lpszHeaders);
3056         else
3057             req->lpszHeaders = 0;
3058         req->dwHeadersLength = dwHeadersLength;
3059         req->dwFlags = dwFlags;
3060         req->dwContext = dwContext;
3061         
3062         INTERNET_AsyncCall(&workRequest);
3063         /*
3064          * This is from windows.
3065          */
3066         INTERNET_SetLastError(ERROR_IO_PENDING);
3067     } else {
3068         ret = INTERNET_InternetOpenUrlW(hIC, lpszUrl, lpszHeaders, dwHeadersLength, dwFlags, dwContext);
3069     }
3070     
3071   lend:
3072     if( hIC )
3073         WININET_Release( &hIC->hdr );
3074     TRACE(" %p <--\n", ret);
3075     
3076     return ret;
3077 }
3078
3079 /**********************************************************
3080  *      InternetOpenUrlA (WININET.@)
3081  *
3082  * Opens an URL
3083  *
3084  * RETURNS
3085  *   handle of connection or NULL on failure
3086  */
3087 HINTERNET WINAPI InternetOpenUrlA(HINTERNET hInternet, LPCSTR lpszUrl,
3088     LPCSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
3089 {
3090     HINTERNET rc = (HINTERNET)NULL;
3091
3092     INT lenUrl;
3093     INT lenHeaders = 0;
3094     LPWSTR szUrl = NULL;
3095     LPWSTR szHeaders = NULL;
3096
3097     TRACE("\n");
3098
3099     if(lpszUrl) {
3100         lenUrl = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0 );
3101         szUrl = HeapAlloc(GetProcessHeap(), 0, lenUrl*sizeof(WCHAR));
3102         if(!szUrl)
3103             return (HINTERNET)NULL;
3104         MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, lenUrl);
3105     }
3106     
3107     if(lpszHeaders) {
3108         lenHeaders = MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, NULL, 0 );
3109         szHeaders = HeapAlloc(GetProcessHeap(), 0, lenHeaders*sizeof(WCHAR));
3110         if(!szHeaders) {
3111             HeapFree(GetProcessHeap(), 0, szUrl);
3112             return (HINTERNET)NULL;
3113         }
3114         MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, szHeaders, lenHeaders);
3115     }
3116     
3117     rc = InternetOpenUrlW(hInternet, szUrl, szHeaders,
3118         lenHeaders, dwFlags, dwContext);
3119
3120     HeapFree(GetProcessHeap(), 0, szUrl);
3121     HeapFree(GetProcessHeap(), 0, szHeaders);
3122
3123     return rc;
3124 }
3125
3126
3127 static LPWITHREADERROR INTERNET_AllocThreadError(void)
3128 {
3129     LPWITHREADERROR lpwite = HeapAlloc(GetProcessHeap(), 0, sizeof(*lpwite));
3130
3131     if (lpwite)
3132     {
3133         lpwite->dwError = 0;
3134         lpwite->response[0] = '\0';
3135     }
3136
3137     if (!TlsSetValue(g_dwTlsErrIndex, lpwite))
3138     {
3139         HeapFree(GetProcessHeap(), 0, lpwite);
3140         return NULL;
3141     }
3142
3143     return lpwite;
3144 }
3145
3146
3147 /***********************************************************************
3148  *           INTERNET_SetLastError (internal)
3149  *
3150  * Set last thread specific error
3151  *
3152  * RETURNS
3153  *
3154  */
3155 void INTERNET_SetLastError(DWORD dwError)
3156 {
3157     LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3158
3159     if (!lpwite)
3160         lpwite = INTERNET_AllocThreadError();
3161
3162     SetLastError(dwError);
3163     if(lpwite)
3164         lpwite->dwError = dwError;
3165 }
3166
3167
3168 /***********************************************************************
3169  *           INTERNET_GetLastError (internal)
3170  *
3171  * Get last thread specific error
3172  *
3173  * RETURNS
3174  *
3175  */
3176 DWORD INTERNET_GetLastError(void)
3177 {
3178     LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3179     if (!lpwite) return 0;
3180     /* TlsGetValue clears last error, so set it again here */
3181     SetLastError(lpwite->dwError);
3182     return lpwite->dwError;
3183 }
3184
3185
3186 /***********************************************************************
3187  *           INTERNET_WorkerThreadFunc (internal)
3188  *
3189  * Worker thread execution function
3190  *
3191  * RETURNS
3192  *
3193  */
3194 static DWORD CALLBACK INTERNET_WorkerThreadFunc(LPVOID lpvParam)
3195 {
3196     LPWORKREQUEST lpRequest = lpvParam;
3197     WORKREQUEST workRequest;
3198
3199     TRACE("\n");
3200
3201     memcpy(&workRequest, lpRequest, sizeof(WORKREQUEST));
3202     HeapFree(GetProcessHeap(), 0, lpRequest);
3203
3204     workRequest.asyncproc(&workRequest);
3205
3206     WININET_Release( workRequest.hdr );
3207     return TRUE;
3208 }
3209
3210
3211 /***********************************************************************
3212  *           INTERNET_AsyncCall (internal)
3213  *
3214  * Retrieves work request from queue
3215  *
3216  * RETURNS
3217  *
3218  */
3219 BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest)
3220 {
3221     BOOL bSuccess;
3222     LPWORKREQUEST lpNewRequest;
3223
3224     TRACE("\n");
3225
3226     lpNewRequest = HeapAlloc(GetProcessHeap(), 0, sizeof(WORKREQUEST));
3227     if (!lpNewRequest)
3228         return FALSE;
3229
3230     memcpy(lpNewRequest, lpWorkRequest, sizeof(WORKREQUEST));
3231
3232     bSuccess = QueueUserWorkItem(INTERNET_WorkerThreadFunc, lpNewRequest, WT_EXECUTELONGFUNCTION);
3233     if (!bSuccess)
3234     {
3235         HeapFree(GetProcessHeap(), 0, lpNewRequest);
3236         INTERNET_SetLastError(ERROR_INTERNET_ASYNC_THREAD_FAILED);
3237     }
3238
3239     return bSuccess;
3240 }
3241
3242
3243 /***********************************************************************
3244  *          INTERNET_GetResponseBuffer  (internal)
3245  *
3246  * RETURNS
3247  *
3248  */
3249 LPSTR INTERNET_GetResponseBuffer(void)
3250 {
3251     LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
3252     if (!lpwite)
3253         lpwite = INTERNET_AllocThreadError();
3254     TRACE("\n");
3255     return lpwite->response;
3256 }
3257
3258 /***********************************************************************
3259  *           INTERNET_GetNextLine  (internal)
3260  *
3261  * Parse next line in directory string listing
3262  *
3263  * RETURNS
3264  *   Pointer to beginning of next line
3265  *   NULL on failure
3266  *
3267  */
3268
3269 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen)
3270 {
3271     struct timeval tv;
3272     fd_set infd;
3273     BOOL bSuccess = FALSE;
3274     INT nRecv = 0;
3275     LPSTR lpszBuffer = INTERNET_GetResponseBuffer();
3276
3277     TRACE("\n");
3278
3279     FD_ZERO(&infd);
3280     FD_SET(nSocket, &infd);
3281     tv.tv_sec=RESPONSE_TIMEOUT;
3282     tv.tv_usec=0;
3283
3284     while (nRecv < MAX_REPLY_LEN)
3285     {
3286         if (select(nSocket+1,&infd,NULL,NULL,&tv) > 0)
3287         {
3288             if (recv(nSocket, &lpszBuffer[nRecv], 1, 0) <= 0)
3289             {
3290                 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
3291                 goto lend;
3292             }
3293
3294             if (lpszBuffer[nRecv] == '\n')
3295             {
3296                 bSuccess = TRUE;
3297                 break;
3298             }
3299             if (lpszBuffer[nRecv] != '\r')
3300                 nRecv++;
3301         }
3302         else
3303         {
3304             INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT);
3305             goto lend;
3306         }
3307     }
3308
3309 lend:
3310     if (bSuccess)
3311     {
3312         lpszBuffer[nRecv] = '\0';
3313         *dwLen = nRecv - 1;
3314         TRACE(":%d %s\n", nRecv, lpszBuffer);
3315         return lpszBuffer;
3316     }
3317     else
3318     {
3319         return NULL;
3320     }
3321 }
3322
3323 /**********************************************************
3324  *      InternetQueryDataAvailable (WININET.@)
3325  *
3326  * Determines how much data is available to be read.
3327  *
3328  * RETURNS
3329  *   TRUE on success, FALSE if an error occurred. If
3330  *   INTERNET_FLAG_ASYNC was specified in InternetOpen, and
3331  *   no data is presently available, FALSE is returned with
3332  *   the last error ERROR_IO_PENDING; a callback with status
3333  *   INTERNET_STATUS_REQUEST_COMPLETE will be sent when more
3334  *   data is available.
3335  */
3336 void AsyncInternetQueryDataAvailableProc(WORKREQUEST *workRequest)
3337 {
3338     LPWININETHTTPREQW lpwhr;
3339     INTERNET_ASYNC_RESULT iar;
3340     char buffer[4048];
3341
3342     TRACE("INTERNETQUERYDATAAVAILABLE %p\n", workRequest->hdr);
3343
3344     switch (workRequest->hdr->htype)
3345     {
3346     case WH_HHTTPREQ:
3347         lpwhr = (LPWININETHTTPREQW)workRequest->hdr;
3348         iar.dwResult = NETCON_recv(&lpwhr->netConnection, buffer,
3349                                    min(sizeof(buffer),
3350                                        lpwhr->dwContentLength - lpwhr->dwContentRead),
3351                                    MSG_PEEK, (int *)&iar.dwError);
3352         INTERNET_SendCallback(workRequest->hdr, workRequest->hdr->dwContext,
3353                               INTERNET_STATUS_REQUEST_COMPLETE, &iar,
3354                               sizeof(INTERNET_ASYNC_RESULT));
3355         break;
3356
3357     default:
3358         FIXME("unsupported file type\n");
3359         break;
3360     }
3361 }
3362
3363 BOOL WINAPI InternetQueryDataAvailable( HINTERNET hFile,
3364                                 LPDWORD lpdwNumberOfBytesAvailble,
3365                                 DWORD dwFlags, DWORD_PTR dwContext)
3366 {
3367     LPWININETHTTPREQW lpwhr;
3368     BOOL retval = FALSE;
3369     char buffer[4048];
3370
3371     lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hFile );
3372     if (NULL == lpwhr)
3373     {
3374         INTERNET_SetLastError(ERROR_NO_MORE_FILES);
3375         return FALSE;
3376     }
3377
3378     TRACE("-->  %p %i\n",lpwhr,lpwhr->hdr.htype);
3379
3380     switch (lpwhr->hdr.htype)
3381     {
3382     case WH_HHTTPREQ:
3383         retval = TRUE;
3384         if (NETCON_query_data_available(&lpwhr->netConnection,
3385                                         lpdwNumberOfBytesAvailble) &&
3386             !*lpdwNumberOfBytesAvailble)
3387         {
3388             /* Even if we are in async mode, we need to determine whether
3389              * there is actually more data available. We do this by trying
3390              * to peek only a single byte in async mode. */
3391             BOOL async = (lpwhr->lpHttpSession->lpAppInfo->hdr.dwFlags & INTERNET_FLAG_ASYNC);
3392             if (NETCON_recv(&lpwhr->netConnection, buffer,
3393                             min(async ? 1 : sizeof(buffer),
3394                                 lpwhr->dwContentLength - lpwhr->dwContentRead),
3395                             MSG_PEEK, (int *)lpdwNumberOfBytesAvailble) &&
3396                 async && *lpdwNumberOfBytesAvailble)
3397             {
3398                 WORKREQUEST workRequest;
3399
3400                 *lpdwNumberOfBytesAvailble = 0;
3401                 workRequest.asyncproc = AsyncInternetQueryDataAvailableProc;
3402                 workRequest.hdr = WININET_AddRef( &lpwhr->hdr );
3403
3404                 retval = INTERNET_AsyncCall(&workRequest);
3405                 if (!retval)
3406                 {
3407                     WININET_Release( &lpwhr->hdr );
3408                 }
3409                 else
3410                 {
3411                     INTERNET_SetLastError(ERROR_IO_PENDING);
3412                     retval = FALSE;
3413                 }
3414             }
3415         }
3416         break;
3417
3418     default:
3419         FIXME("unsupported file type\n");
3420         break;
3421     }
3422     WININET_Release( &lpwhr->hdr );
3423
3424     TRACE("<-- %i\n",retval);
3425     return retval;
3426 }
3427
3428
3429 /***********************************************************************
3430  *      InternetLockRequestFile (WININET.@)
3431  */
3432 BOOL WINAPI InternetLockRequestFile( HINTERNET hInternet, HANDLE
3433 *lphLockReqHandle)
3434 {
3435     FIXME("STUB\n");
3436     return FALSE;
3437 }
3438
3439 BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
3440 {
3441     FIXME("STUB\n");
3442     return FALSE;
3443 }
3444
3445
3446 /***********************************************************************
3447  *      InternetAutodial (WININET.@)
3448  *
3449  * On windows this function is supposed to dial the default internet
3450  * connection. We don't want to have Wine dial out to the internet so
3451  * we return TRUE by default. It might be nice to check if we are connected.
3452  *
3453  * RETURNS
3454  *   TRUE on success
3455  *   FALSE on failure
3456  *
3457  */
3458 BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
3459 {
3460     FIXME("STUB\n");
3461
3462     /* Tell that we are connected to the internet. */
3463     return TRUE;
3464 }
3465
3466 /***********************************************************************
3467  *      InternetAutodialHangup (WININET.@)
3468  *
3469  * Hangs up a connection made with InternetAutodial
3470  *
3471  * PARAM
3472  *    dwReserved
3473  * RETURNS
3474  *   TRUE on success
3475  *   FALSE on failure
3476  *
3477  */
3478 BOOL WINAPI InternetAutodialHangup(DWORD dwReserved)
3479 {
3480     FIXME("STUB\n");
3481
3482     /* we didn't dial, we don't disconnect */
3483     return TRUE;
3484 }
3485
3486 /***********************************************************************
3487  *      InternetCombineUrlA (WININET.@)
3488  *
3489  * Combine a base URL with a relative URL
3490  *
3491  * RETURNS
3492  *   TRUE on success
3493  *   FALSE on failure
3494  *
3495  */
3496
3497 BOOL WINAPI InternetCombineUrlA(LPCSTR lpszBaseUrl, LPCSTR lpszRelativeUrl,
3498                                 LPSTR lpszBuffer, LPDWORD lpdwBufferLength,
3499                                 DWORD dwFlags)
3500 {
3501     HRESULT hr=S_OK;
3502
3503     TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_a(lpszBaseUrl), debugstr_a(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3504
3505     /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3506     dwFlags ^= ICU_NO_ENCODE;
3507     hr=UrlCombineA(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3508
3509     return (hr==S_OK);
3510 }
3511
3512 /***********************************************************************
3513  *      InternetCombineUrlW (WININET.@)
3514  *
3515  * Combine a base URL with a relative URL
3516  *
3517  * RETURNS
3518  *   TRUE on success
3519  *   FALSE on failure
3520  *
3521  */
3522
3523 BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
3524                                 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength,
3525                                 DWORD dwFlags)
3526 {
3527     HRESULT hr=S_OK;
3528
3529     TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_w(lpszBaseUrl), debugstr_w(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3530
3531     /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3532     dwFlags ^= ICU_NO_ENCODE;
3533     hr=UrlCombineW(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3534
3535     return (hr==S_OK);
3536 }
3537
3538 /* max port num is 65535 => 5 digits */
3539 #define MAX_WORD_DIGITS 5
3540
3541 #define URL_GET_COMP_LENGTH(url, component) ((url)->dw##component##Length ? \
3542     (url)->dw##component##Length : strlenW((url)->lpsz##component))
3543 #define URL_GET_COMP_LENGTHA(url, component) ((url)->dw##component##Length ? \
3544     (url)->dw##component##Length : strlen((url)->lpsz##component))
3545
3546 static BOOL url_uses_default_port(INTERNET_SCHEME nScheme, INTERNET_PORT nPort)
3547 {
3548     if ((nScheme == INTERNET_SCHEME_HTTP) &&
3549         (nPort == INTERNET_DEFAULT_HTTP_PORT))
3550         return TRUE;
3551     if ((nScheme == INTERNET_SCHEME_HTTPS) &&
3552         (nPort == INTERNET_DEFAULT_HTTPS_PORT))
3553         return TRUE;
3554     if ((nScheme == INTERNET_SCHEME_FTP) &&
3555         (nPort == INTERNET_DEFAULT_FTP_PORT))
3556         return TRUE;
3557     if ((nScheme == INTERNET_SCHEME_GOPHER) &&
3558         (nPort == INTERNET_DEFAULT_GOPHER_PORT))
3559         return TRUE;
3560
3561     if (nPort == INTERNET_INVALID_PORT_NUMBER)
3562         return TRUE;
3563
3564     return FALSE;
3565 }
3566
3567 /* opaque urls do not fit into the standard url hierarchy and don't have
3568  * two following slashes */
3569 static inline BOOL scheme_is_opaque(INTERNET_SCHEME nScheme)
3570 {
3571     return (nScheme != INTERNET_SCHEME_FTP) &&
3572            (nScheme != INTERNET_SCHEME_GOPHER) &&
3573            (nScheme != INTERNET_SCHEME_HTTP) &&
3574            (nScheme != INTERNET_SCHEME_HTTPS) &&
3575            (nScheme != INTERNET_SCHEME_FILE);
3576 }
3577
3578 static LPCWSTR INTERNET_GetSchemeString(INTERNET_SCHEME scheme)
3579 {
3580     int index;
3581     if (scheme < INTERNET_SCHEME_FIRST)
3582         return NULL;
3583     index = scheme - INTERNET_SCHEME_FIRST;
3584     if (index >= sizeof(url_schemes)/sizeof(url_schemes[0]))
3585         return NULL;
3586     return (LPCWSTR)&url_schemes[index];
3587 }
3588
3589 /* we can calculate using ansi strings because we're just
3590  * calculating string length, not size
3591  */
3592 static BOOL calc_url_length(LPURL_COMPONENTSW lpUrlComponents,
3593                             LPDWORD lpdwUrlLength)
3594 {
3595     INTERNET_SCHEME nScheme;
3596
3597     *lpdwUrlLength = 0;
3598
3599     if (lpUrlComponents->lpszScheme)
3600     {
3601         DWORD dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
3602         *lpdwUrlLength += dwLen;
3603         nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
3604     }
3605     else
3606     {
3607         LPCWSTR scheme;
3608
3609         nScheme = lpUrlComponents->nScheme;
3610
3611         if (nScheme == INTERNET_SCHEME_DEFAULT)
3612             nScheme = INTERNET_SCHEME_HTTP;
3613         scheme = INTERNET_GetSchemeString(nScheme);
3614         *lpdwUrlLength += strlenW(scheme);
3615     }
3616
3617     (*lpdwUrlLength)++; /* ':' */
3618     if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
3619         *lpdwUrlLength += strlen("//");
3620
3621     if (lpUrlComponents->lpszUserName)
3622     {
3623         *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
3624         *lpdwUrlLength += strlen("@");
3625     }
3626     else
3627     {
3628         if (lpUrlComponents->lpszPassword)
3629         {
3630             INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3631             return FALSE;
3632         }
3633     }
3634
3635     if (lpUrlComponents->lpszPassword)
3636     {
3637         *lpdwUrlLength += strlen(":");
3638         *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, Password);
3639     }
3640
3641     if (lpUrlComponents->lpszHostName)
3642     {
3643         *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
3644
3645         if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
3646         {
3647             char szPort[MAX_WORD_DIGITS+1];
3648
3649             sprintf(szPort, "%d", lpUrlComponents->nPort);
3650             *lpdwUrlLength += strlen(szPort);
3651             *lpdwUrlLength += strlen(":");
3652         }
3653
3654         if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
3655             (*lpdwUrlLength)++; /* '/' */
3656     }
3657
3658     if (lpUrlComponents->lpszUrlPath)
3659         *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
3660
3661     return TRUE;
3662 }
3663
3664 static void convert_urlcomp_atow(LPURL_COMPONENTSA lpUrlComponents, LPURL_COMPONENTSW urlCompW)
3665 {
3666     INT len;
3667
3668     ZeroMemory(urlCompW, sizeof(URL_COMPONENTSW));
3669
3670     urlCompW->dwStructSize = sizeof(URL_COMPONENTSW);
3671     urlCompW->dwSchemeLength = lpUrlComponents->dwSchemeLength;
3672     urlCompW->nScheme = lpUrlComponents->nScheme;
3673     urlCompW->dwHostNameLength = lpUrlComponents->dwHostNameLength;
3674     urlCompW->nPort = lpUrlComponents->nPort;
3675     urlCompW->dwUserNameLength = lpUrlComponents->dwUserNameLength;
3676     urlCompW->dwPasswordLength = lpUrlComponents->dwPasswordLength;
3677     urlCompW->dwUrlPathLength = lpUrlComponents->dwUrlPathLength;
3678     urlCompW->dwExtraInfoLength = lpUrlComponents->dwExtraInfoLength;
3679
3680     if (lpUrlComponents->lpszScheme)
3681     {
3682         len = URL_GET_COMP_LENGTHA(lpUrlComponents, Scheme) + 1;
3683         urlCompW->lpszScheme = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3684         MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszScheme,
3685                             -1, urlCompW->lpszScheme, len);
3686     }
3687
3688     if (lpUrlComponents->lpszHostName)
3689     {
3690         len = URL_GET_COMP_LENGTHA(lpUrlComponents, HostName) + 1;
3691         urlCompW->lpszHostName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3692         MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszHostName,
3693                             -1, urlCompW->lpszHostName, len);
3694     }
3695
3696     if (lpUrlComponents->lpszUserName)
3697     {
3698         len = URL_GET_COMP_LENGTHA(lpUrlComponents, UserName) + 1;
3699         urlCompW->lpszUserName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3700         MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUserName,
3701                             -1, urlCompW->lpszUserName, len);
3702     }
3703
3704     if (lpUrlComponents->lpszPassword)
3705     {
3706         len = URL_GET_COMP_LENGTHA(lpUrlComponents, Password) + 1;
3707         urlCompW->lpszPassword = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3708         MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszPassword,
3709                             -1, urlCompW->lpszPassword, len);
3710     }
3711
3712     if (lpUrlComponents->lpszUrlPath)
3713     {
3714         len = URL_GET_COMP_LENGTHA(lpUrlComponents, UrlPath) + 1;
3715         urlCompW->lpszUrlPath = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3716         MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUrlPath,
3717                             -1, urlCompW->lpszUrlPath, len);
3718     }
3719
3720     if (lpUrlComponents->lpszExtraInfo)
3721     {
3722         len = URL_GET_COMP_LENGTHA(lpUrlComponents, ExtraInfo) + 1;
3723         urlCompW->lpszExtraInfo = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3724         MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszExtraInfo,
3725                             -1, urlCompW->lpszExtraInfo, len);
3726     }
3727 }
3728
3729 /***********************************************************************
3730  *      InternetCreateUrlA (WININET.@)
3731  *
3732  * See InternetCreateUrlW.
3733  */
3734 BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
3735                                LPSTR lpszUrl, LPDWORD lpdwUrlLength)
3736 {
3737     BOOL ret;
3738     LPWSTR urlW = NULL;
3739     URL_COMPONENTSW urlCompW;
3740
3741     TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
3742
3743     if (!lpUrlComponents || lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
3744     {
3745         INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3746         return FALSE;
3747     }
3748
3749     convert_urlcomp_atow(lpUrlComponents, &urlCompW);
3750
3751     if (lpszUrl)
3752         urlW = HeapAlloc(GetProcessHeap(), 0, *lpdwUrlLength * sizeof(WCHAR));
3753
3754     ret = InternetCreateUrlW(&urlCompW, dwFlags, urlW, lpdwUrlLength);
3755
3756     if (!ret && (GetLastError() == ERROR_INSUFFICIENT_BUFFER))
3757         *lpdwUrlLength /= sizeof(WCHAR);
3758
3759     /* on success, lpdwUrlLength points to the size of urlW in WCHARS
3760     * minus one, so add one to leave room for NULL terminator
3761     */
3762     if (ret)
3763         WideCharToMultiByte(CP_ACP, 0, urlW, -1, lpszUrl, *lpdwUrlLength + 1, NULL, NULL);
3764
3765     HeapFree(GetProcessHeap(), 0, urlCompW.lpszScheme);
3766     HeapFree(GetProcessHeap(), 0, urlCompW.lpszHostName);
3767     HeapFree(GetProcessHeap(), 0, urlCompW.lpszUserName);
3768     HeapFree(GetProcessHeap(), 0, urlCompW.lpszPassword);
3769     HeapFree(GetProcessHeap(), 0, urlCompW.lpszUrlPath);
3770     HeapFree(GetProcessHeap(), 0, urlCompW.lpszExtraInfo);
3771     HeapFree(GetProcessHeap(), 0, urlW);
3772
3773     return ret;
3774 }
3775
3776 /***********************************************************************
3777  *      InternetCreateUrlW (WININET.@)
3778  *
3779  * Creates a URL from its component parts.
3780  *
3781  * PARAMS
3782  *  lpUrlComponents [I] URL Components.
3783  *  dwFlags         [I] Flags. See notes.
3784  *  lpszUrl         [I] Buffer in which to store the created URL.
3785  *  lpdwUrlLength   [I/O] On input, the length of the buffer pointed to by
3786  *                        lpszUrl in characters. On output, the number of bytes
3787  *                        required to store the URL including terminator.
3788  *
3789  * NOTES
3790  *
3791  * The dwFlags parameter can be zero or more of the following:
3792  *|ICU_ESCAPE - Generates escape sequences for unsafe characters in the path and extra info of the URL.
3793  *
3794  * RETURNS
3795  *   TRUE on success
3796  *   FALSE on failure
3797  *
3798  */
3799 BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
3800                                LPWSTR lpszUrl, LPDWORD lpdwUrlLength)
3801 {
3802     DWORD dwLen;
3803     INTERNET_SCHEME nScheme;
3804
3805     static const WCHAR slashSlashW[] = {'/','/'};
3806     static const WCHAR percentD[] = {'%','d',0};
3807
3808     TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
3809
3810     if (!lpUrlComponents || lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
3811     {
3812         INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3813         return FALSE;
3814     }
3815
3816     if (!calc_url_length(lpUrlComponents, &dwLen))
3817         return FALSE;
3818
3819     if (!lpszUrl || *lpdwUrlLength < dwLen)
3820     {
3821         *lpdwUrlLength = (dwLen + 1) * sizeof(WCHAR);
3822         INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
3823         return FALSE;
3824     }
3825
3826     *lpdwUrlLength = dwLen;
3827     lpszUrl[0] = 0x00;
3828
3829     dwLen = 0;
3830
3831     if (lpUrlComponents->lpszScheme)
3832     {
3833         dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
3834         memcpy(lpszUrl, lpUrlComponents->lpszScheme, dwLen * sizeof(WCHAR));
3835         lpszUrl += dwLen;
3836
3837         nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
3838     }
3839     else
3840     {
3841         LPCWSTR scheme;
3842         nScheme = lpUrlComponents->nScheme;
3843
3844         if (nScheme == INTERNET_SCHEME_DEFAULT)
3845             nScheme = INTERNET_SCHEME_HTTP;
3846
3847         scheme = INTERNET_GetSchemeString(nScheme);
3848         dwLen = strlenW(scheme);
3849         memcpy(lpszUrl, scheme, dwLen * sizeof(WCHAR));
3850         lpszUrl += dwLen;
3851     }
3852
3853     /* all schemes are followed by at least a colon */
3854     *lpszUrl = ':';
3855     lpszUrl++;
3856
3857     if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
3858     {
3859         memcpy(lpszUrl, slashSlashW, sizeof(slashSlashW));
3860         lpszUrl += sizeof(slashSlashW)/sizeof(slashSlashW[0]);
3861     }
3862
3863     if (lpUrlComponents->lpszUserName)
3864     {
3865         dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
3866         memcpy(lpszUrl, lpUrlComponents->lpszUserName, dwLen * sizeof(WCHAR));
3867         lpszUrl += dwLen;
3868
3869         if (lpUrlComponents->lpszPassword)
3870         {
3871             *lpszUrl = ':';
3872             lpszUrl++;
3873
3874             dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Password);
3875             memcpy(lpszUrl, lpUrlComponents->lpszPassword, dwLen * sizeof(WCHAR));
3876             lpszUrl += dwLen;
3877         }
3878
3879         *lpszUrl = '@';
3880         lpszUrl++;
3881     }
3882
3883     if (lpUrlComponents->lpszHostName)
3884     {
3885         dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
3886         memcpy(lpszUrl, lpUrlComponents->lpszHostName, dwLen * sizeof(WCHAR));
3887         lpszUrl += dwLen;
3888
3889         if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
3890         {
3891             WCHAR szPort[MAX_WORD_DIGITS+1];
3892
3893             sprintfW(szPort, percentD, lpUrlComponents->nPort);
3894             *lpszUrl = ':';
3895             lpszUrl++;
3896             dwLen = strlenW(szPort);
3897             memcpy(lpszUrl, szPort, dwLen * sizeof(WCHAR));
3898             lpszUrl += dwLen;
3899         }
3900
3901         /* add slash between hostname and path if necessary */
3902         if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
3903         {
3904             *lpszUrl = '/';
3905             lpszUrl++;
3906         }
3907     }
3908
3909
3910     if (lpUrlComponents->lpszUrlPath)
3911     {
3912         dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
3913         memcpy(lpszUrl, lpUrlComponents->lpszUrlPath, dwLen * sizeof(WCHAR));
3914         lpszUrl += dwLen;
3915     }
3916
3917     *lpszUrl = '\0';
3918
3919     return TRUE;
3920 }
3921
3922 /***********************************************************************
3923  *      InternetConfirmZoneCrossingA (WININET.@)
3924  *
3925  */
3926 DWORD WINAPI InternetConfirmZoneCrossingA( HWND hWnd, LPSTR szUrlPrev, LPSTR szUrlNew, BOOL bPost )
3927 {
3928     FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_a(szUrlPrev), debugstr_a(szUrlNew), bPost);
3929     return ERROR_SUCCESS;
3930 }
3931
3932 /***********************************************************************
3933  *      InternetConfirmZoneCrossingW (WININET.@)
3934  *
3935  */
3936 DWORD WINAPI InternetConfirmZoneCrossingW( HWND hWnd, LPWSTR szUrlPrev, LPWSTR szUrlNew, BOOL bPost )
3937 {
3938     FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_w(szUrlPrev), debugstr_w(szUrlNew), bPost);
3939     return ERROR_SUCCESS;
3940 }
3941
3942 DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
3943                             DWORD_PTR* lpdwConnection, DWORD dwReserved )
3944 {
3945     FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
3946           lpdwConnection, dwReserved);
3947     return ERROR_SUCCESS;
3948 }
3949
3950 DWORD WINAPI InternetDialW( HWND hwndParent, LPWSTR lpszConnectoid, DWORD dwFlags,
3951                             DWORD_PTR* lpdwConnection, DWORD dwReserved )
3952 {
3953     FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
3954           lpdwConnection, dwReserved);
3955     return ERROR_SUCCESS;
3956 }
3957
3958 BOOL WINAPI InternetGoOnlineA( LPSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3959 {
3960     FIXME("(%s, %p, 0x%08x) stub\n", debugstr_a(lpszURL), hwndParent, dwReserved);
3961     return TRUE;
3962 }
3963
3964 BOOL WINAPI InternetGoOnlineW( LPWSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3965 {
3966     FIXME("(%s, %p, 0x%08x) stub\n", debugstr_w(lpszURL), hwndParent, dwReserved);
3967     return TRUE;
3968 }
3969
3970 DWORD WINAPI InternetHangUp( DWORD_PTR dwConnection, DWORD dwReserved )
3971 {
3972     FIXME("(0x%08lx, 0x%08x) stub\n", dwConnection, dwReserved);
3973     return ERROR_SUCCESS;
3974 }
3975
3976 BOOL WINAPI CreateMD5SSOHash( PWSTR pszChallengeInfo, PWSTR pwszRealm, PWSTR pwszTarget,
3977                               PBYTE pbHexHash )
3978 {
3979     FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo), debugstr_w(pwszRealm),
3980           debugstr_w(pwszTarget), pbHexHash);
3981     return FALSE;
3982 }
3983
3984 BOOL WINAPI ResumeSuspendedDownload( HINTERNET hInternet, DWORD dwError )
3985 {
3986     FIXME("(%p, 0x%08x) stub\n", hInternet, dwError);
3987     return FALSE;
3988 }
3989
3990 BOOL WINAPI InternetQueryFortezzaStatus(DWORD *a, DWORD_PTR b)
3991 {
3992     FIXME("(%p, %08lx) stub\n", a, b);
3993     return 0;
3994 }