Changed the init code to make libwine load only ntdll and transfer
[wine] / dlls / kernel / process.c
1 /*
2  * Win32 processes
3  *
4  * Copyright 1996, 1998 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <ctype.h>
26 #include <errno.h>
27 #include <locale.h>
28 #include <signal.h>
29 #include <stdio.h>
30
31 #include "wine/winbase16.h"
32 #include "wine/winuser16.h"
33 #include "ntstatus.h"
34 #include "thread.h"
35 #include "drive.h"
36 #include "file.h"
37 #include "heap.h"
38 #include "module.h"
39 #include "options.h"
40 #include "kernel_private.h"
41 #include "wine/server.h"
42 #include "wine/unicode.h"
43 #include "wine/debug.h"
44
45 WINE_DEFAULT_DEBUG_CHANNEL(process);
46 WINE_DECLARE_DEBUG_CHANNEL(server);
47 WINE_DECLARE_DEBUG_CHANNEL(relay);
48
49 static UINT process_error_mode;
50
51 static HANDLE main_exe_file;
52 static DWORD shutdown_flags = 0;
53 static DWORD shutdown_priority = 0x280;
54 static DWORD process_dword;
55 static BOOL oem_file_apis;
56
57 static unsigned int server_startticks;
58 int main_create_flags = 0;
59
60 /* Process flags */
61 #define PDB32_DEBUGGED      0x0001  /* Process is being debugged */
62 #define PDB32_WIN16_PROC    0x0008  /* Win16 process */
63 #define PDB32_DOS_PROC      0x0010  /* Dos process */
64 #define PDB32_CONSOLE_PROC  0x0020  /* Console process */
65 #define PDB32_FILE_APIS_OEM 0x0040  /* File APIs are OEM */
66 #define PDB32_WIN32S_PROC   0x8000  /* Win32s process */
67
68 static const WCHAR comW[] = {'c','o','m',0};
69 static const WCHAR batW[] = {'b','a','t',0};
70 static const WCHAR winevdmW[] = {'w','i','n','e','v','d','m','.','e','x','e',0};
71
72 extern void SHELL_LoadRegistry(void);
73 extern void VERSION_Init( const WCHAR *appname );
74 extern void MODULE_InitLoadPath(void);
75
76 /***********************************************************************
77  *           contains_path
78  */
79 inline static int contains_path( LPCWSTR name )
80 {
81     return ((*name && (name[1] == ':')) || strchrW(name, '/') || strchrW(name, '\\'));
82 }
83
84
85 /***************************************************************************
86  *      get_builtin_path
87  *
88  * Get the path of a builtin module when the native file does not exist.
89  */
90 static BOOL get_builtin_path( const WCHAR *libname, const WCHAR *ext, WCHAR *filename, UINT size )
91 {
92     WCHAR *file_part;
93     WCHAR sysdir[MAX_PATH];
94     UINT len = GetSystemDirectoryW( sysdir, MAX_PATH );
95
96     if (contains_path( libname ))
97     {
98         if (RtlGetFullPathName_U( libname, size * sizeof(WCHAR),
99                                   filename, &file_part ) > size * sizeof(WCHAR))
100             return FALSE;  /* too long */
101
102         if (strncmpiW( filename, sysdir, len ) || filename[len] != '\\')
103             return FALSE;
104         while (filename[len] == '\\') len++;
105         if (filename != file_part) return FALSE;
106     }
107     else
108     {
109         if (strlenW(libname) + len + 2 >= size) return FALSE;  /* too long */
110         memcpy( filename, sysdir, len * sizeof(WCHAR) );
111         file_part = filename + len;
112         if (file_part > filename && file_part[-1] != '\\') *file_part++ = '\\';
113         strcpyW( file_part, libname );
114     }
115     if (ext && !strchrW( file_part, '.' ))
116     {
117         if (file_part + strlenW(file_part) + strlenW(ext) + 1 > filename + size)
118             return FALSE;  /* too long */
119         strcatW( file_part, ext );
120     }
121     return TRUE;
122 }
123
124
125 /***********************************************************************
126  *           open_builtin_exe_file
127  *
128  * Open an exe file for a builtin exe.
129  */
130 static void *open_builtin_exe_file( const WCHAR *name, char *error, int error_size,
131                                     int test_only, int *file_exists )
132 {
133     char exename[MAX_PATH];
134     WCHAR *p;
135     UINT i, len;
136
137     if ((p = strrchrW( name, '/' ))) name = p + 1;
138     if ((p = strrchrW( name, '\\' ))) name = p + 1;
139
140     /* we don't want to depend on the current codepage here */
141     len = strlenW( name ) + 1;
142     if (len >= sizeof(exename)) return NULL;
143     for (i = 0; i < len; i++)
144     {
145         if (name[i] > 127) return NULL;
146         exename[i] = (char)name[i];
147         if (exename[i] >= 'A' && exename[i] <= 'Z') exename[i] += 'a' - 'A';
148     }
149     return wine_dll_load_main_exe( exename, error, error_size, test_only, file_exists );
150 }
151
152
153 /***********************************************************************
154  *           open_exe_file
155  *
156  * Open a specific exe file, taking load order into account.
157  * Returns the file handle or 0 for a builtin exe.
158  */
159 static HANDLE open_exe_file( const WCHAR *name )
160 {
161     enum loadorder_type loadorder[LOADORDER_NTYPES];
162     WCHAR buffer[MAX_PATH];
163     HANDLE handle;
164     int i, file_exists;
165
166     TRACE("looking for %s\n", debugstr_w(name) );
167
168     if ((handle = CreateFileW( name, GENERIC_READ, FILE_SHARE_READ,
169                                NULL, OPEN_EXISTING, 0, 0 )) == INVALID_HANDLE_VALUE)
170     {
171         /* file doesn't exist, check for builtin */
172         if (!contains_path( name )) goto error;
173         if (!get_builtin_path( name, NULL, buffer, sizeof(buffer) )) goto error;
174         name = buffer;
175     }
176
177     MODULE_GetLoadOrderW( loadorder, NULL, name, TRUE );
178
179     for(i = 0; i < LOADORDER_NTYPES; i++)
180     {
181         if (loadorder[i] == LOADORDER_INVALID) break;
182         switch(loadorder[i])
183         {
184         case LOADORDER_DLL:
185             TRACE( "Trying native exe %s\n", debugstr_w(name) );
186             if (handle != INVALID_HANDLE_VALUE) return handle;
187             break;
188         case LOADORDER_BI:
189             TRACE( "Trying built-in exe %s\n", debugstr_w(name) );
190             open_builtin_exe_file( name, NULL, 0, 1, &file_exists );
191             if (file_exists)
192             {
193                 if (handle != INVALID_HANDLE_VALUE) CloseHandle(handle);
194                 return 0;
195             }
196         default:
197             break;
198         }
199     }
200     if (handle != INVALID_HANDLE_VALUE) CloseHandle(handle);
201
202  error:
203     SetLastError( ERROR_FILE_NOT_FOUND );
204     return INVALID_HANDLE_VALUE;
205 }
206
207
208 /***********************************************************************
209  *           find_exe_file
210  *
211  * Open an exe file, and return the full name and file handle.
212  * Returns FALSE if file could not be found.
213  * If file exists but cannot be opened, returns TRUE and set handle to INVALID_HANDLE_VALUE.
214  * If file is a builtin exe, returns TRUE and sets handle to 0.
215  */
216 static BOOL find_exe_file( const WCHAR *name, WCHAR *buffer, int buflen, HANDLE *handle )
217 {
218     static const WCHAR exeW[] = {'.','e','x','e',0};
219
220     enum loadorder_type loadorder[LOADORDER_NTYPES];
221     int i, file_exists;
222
223     TRACE("looking for %s\n", debugstr_w(name) );
224
225     if (!SearchPathW( NULL, name, exeW, buflen, buffer, NULL ) &&
226         !get_builtin_path( name, exeW, buffer, buflen ))
227     {
228         /* no builtin found, try native without extension in case it is a Unix app */
229
230         if (SearchPathW( NULL, name, NULL, buflen, buffer, NULL ))
231         {
232             TRACE( "Trying native/Unix binary %s\n", debugstr_w(buffer) );
233             if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ,
234                                         NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
235                 return TRUE;
236         }
237         return FALSE;
238     }
239
240     MODULE_GetLoadOrderW( loadorder, NULL, buffer, TRUE );
241
242     for(i = 0; i < LOADORDER_NTYPES; i++)
243     {
244         if (loadorder[i] == LOADORDER_INVALID) break;
245         switch(loadorder[i])
246         {
247         case LOADORDER_DLL:
248             TRACE( "Trying native exe %s\n", debugstr_w(buffer) );
249             if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ,
250                                         NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
251                 return TRUE;
252             if (GetLastError() != ERROR_FILE_NOT_FOUND) return TRUE;
253             break;
254         case LOADORDER_BI:
255             TRACE( "Trying built-in exe %s\n", debugstr_w(buffer) );
256             open_builtin_exe_file( buffer, NULL, 0, 1, &file_exists );
257             if (file_exists)
258             {
259                 *handle = 0;
260                 return TRUE;
261             }
262             break;
263         default:
264             break;
265         }
266     }
267     SetLastError( ERROR_FILE_NOT_FOUND );
268     return FALSE;
269 }
270
271
272 /**********************************************************************
273  *           load_pe_exe
274  *
275  * Load a PE format EXE file.
276  */
277 static HMODULE load_pe_exe( const WCHAR *name, HANDLE file )
278 {
279     IMAGE_NT_HEADERS *nt;
280     HANDLE mapping;
281     void *module;
282     OBJECT_ATTRIBUTES attr;
283     LARGE_INTEGER size;
284     DWORD len = 0;
285     UINT drive_type;
286
287     attr.Length                   = sizeof(attr);
288     attr.RootDirectory            = 0;
289     attr.ObjectName               = NULL;
290     attr.Attributes               = 0;
291     attr.SecurityDescriptor       = NULL;
292     attr.SecurityQualityOfService = NULL;
293     size.QuadPart = 0;
294
295     if (NtCreateSection( &mapping, STANDARD_RIGHTS_REQUIRED | SECTION_QUERY | SECTION_MAP_READ,
296                          &attr, &size, 0, SEC_IMAGE, file ) != STATUS_SUCCESS)
297         return NULL;
298
299     module = NULL;
300     if (NtMapViewOfSection( mapping, GetCurrentProcess(), &module, 0, 0, &size, &len,
301                             ViewShare, 0, PAGE_READONLY ) != STATUS_SUCCESS)
302         return NULL;
303
304     NtClose( mapping );
305
306     /* virus check */
307     nt = RtlImageNtHeader( module );
308     if (nt->OptionalHeader.AddressOfEntryPoint)
309     {
310         if (!RtlImageRvaToSection( nt, module, nt->OptionalHeader.AddressOfEntryPoint ))
311             MESSAGE("VIRUS WARNING: PE module %s has an invalid entrypoint (0x%08lx) "
312                     "outside all sections (possibly infected by Tchernobyl/SpaceFiller virus)!\n",
313                     debugstr_w(name), nt->OptionalHeader.AddressOfEntryPoint );
314     }
315
316     drive_type = GetDriveTypeW( name );
317     /* don't keep the file handle open on removable media */
318     if (drive_type == DRIVE_REMOVABLE || drive_type == DRIVE_CDROM)
319     {
320         CloseHandle( main_exe_file );
321         main_exe_file = 0;
322     }
323
324     return module;
325 }
326
327 /***********************************************************************
328  *           build_environment
329  *
330  * Build the Win32 environment from the Unix environment
331  */
332 static BOOL build_initial_environment(void)
333 {
334     extern char **environ;
335     ULONG size = 1;
336     char **e;
337     WCHAR *p, *endptr;
338     void *ptr;
339
340     /* Compute the total size of the Unix environment */
341     for (e = environ; *e; e++)
342     {
343         if (!memcmp(*e, "PATH=", 5)) continue;
344         size += MultiByteToWideChar( CP_UNIXCP, 0, *e, -1, NULL, 0 );
345     }
346     size *= sizeof(WCHAR);
347
348     /* Now allocate the environment */
349     if (NtAllocateVirtualMemory(NtCurrentProcess(), &ptr, 0, &size,
350                                 MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE) != STATUS_SUCCESS)
351         return FALSE;
352
353     NtCurrentTeb()->Peb->ProcessParameters->Environment = p = ptr;
354     endptr = p + size / sizeof(WCHAR);
355
356     /* And fill it with the Unix environment */
357     for (e = environ; *e; e++)
358     {
359         char *str = *e;
360         /* skip Unix PATH and store WINEPATH as PATH */
361         if (!memcmp(str, "PATH=", 5)) continue;
362         if (!memcmp(str, "WINEPATH=", 9 )) str += 4;
363         MultiByteToWideChar( CP_UNIXCP, 0, str, -1, p, endptr - p );
364         p += strlenW(p) + 1;
365     }
366     *p = 0;
367     return TRUE;
368 }
369
370
371 /***********************************************************************
372  *              set_library_wargv
373  *
374  * Set the Wine library Unicode argv global variables.
375  */
376 static void set_library_wargv( char **argv )
377 {
378     int argc;
379     WCHAR *p;
380     WCHAR **wargv;
381     DWORD total = 0;
382
383     for (argc = 0; argv[argc]; argc++)
384         total += MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, NULL, 0 );
385
386     wargv = RtlAllocateHeap( GetProcessHeap(), 0,
387                              total * sizeof(WCHAR) + (argc + 1) * sizeof(*wargv) );
388     p = (WCHAR *)(wargv + argc + 1);
389     for (argc = 0; argv[argc]; argc++)
390     {
391         DWORD reslen = MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, p, total );
392         wargv[argc] = p;
393         p += reslen;
394         total -= reslen;
395     }
396     wargv[argc] = NULL;
397     __wine_main_wargv = wargv;
398 }
399
400
401 /***********************************************************************
402  *           build_command_line
403  *
404  * Build the command line of a process from the argv array.
405  *
406  * Note that it does NOT necessarily include the file name.
407  * Sometimes we don't even have any command line options at all.
408  *
409  * We must quote and escape characters so that the argv array can be rebuilt
410  * from the command line:
411  * - spaces and tabs must be quoted
412  *   'a b'   -> '"a b"'
413  * - quotes must be escaped
414  *   '"'     -> '\"'
415  * - if '\'s are followed by a '"', they must be doubled and followed by '\"',
416  *   resulting in an odd number of '\' followed by a '"'
417  *   '\"'    -> '\\\"'
418  *   '\\"'   -> '\\\\\"'
419  * - '\'s that are not followed by a '"' can be left as is
420  *   'a\b'   == 'a\b'
421  *   'a\\b'  == 'a\\b'
422  */
423 static BOOL build_command_line( WCHAR **argv )
424 {
425     int len;
426     WCHAR **arg;
427     LPWSTR p;
428     RTL_USER_PROCESS_PARAMETERS* rupp = NtCurrentTeb()->Peb->ProcessParameters;
429
430     if (rupp->CommandLine.Buffer) return TRUE; /* already got it from the server */
431
432     len = 0;
433     for (arg = argv; *arg; arg++)
434     {
435         int has_space,bcount;
436         WCHAR* a;
437
438         has_space=0;
439         bcount=0;
440         a=*arg;
441         if( !*a ) has_space=1;
442         while (*a!='\0') {
443             if (*a=='\\') {
444                 bcount++;
445             } else {
446                 if (*a==' ' || *a=='\t') {
447                     has_space=1;
448                 } else if (*a=='"') {
449                     /* doubling of '\' preceeding a '"',
450                      * plus escaping of said '"'
451                      */
452                     len+=2*bcount+1;
453                 }
454                 bcount=0;
455             }
456             a++;
457         }
458         len+=(a-*arg)+1 /* for the separating space */;
459         if (has_space)
460             len+=2; /* for the quotes */
461     }
462
463     if (!(rupp->CommandLine.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, len * sizeof(WCHAR))))
464         return FALSE;
465
466     p = rupp->CommandLine.Buffer;
467     rupp->CommandLine.Length = (len - 1) * sizeof(WCHAR);
468     rupp->CommandLine.MaximumLength = len * sizeof(WCHAR);
469     for (arg = argv; *arg; arg++)
470     {
471         int has_space,has_quote;
472         WCHAR* a;
473
474         /* Check for quotes and spaces in this argument */
475         has_space=has_quote=0;
476         a=*arg;
477         if( !*a ) has_space=1;
478         while (*a!='\0') {
479             if (*a==' ' || *a=='\t') {
480                 has_space=1;
481                 if (has_quote)
482                     break;
483             } else if (*a=='"') {
484                 has_quote=1;
485                 if (has_space)
486                     break;
487             }
488             a++;
489         }
490
491         /* Now transfer it to the command line */
492         if (has_space)
493             *p++='"';
494         if (has_quote) {
495             int bcount;
496             WCHAR* a;
497
498             bcount=0;
499             a=*arg;
500             while (*a!='\0') {
501                 if (*a=='\\') {
502                     *p++=*a;
503                     bcount++;
504                 } else {
505                     if (*a=='"') {
506                         int i;
507
508                         /* Double all the '\\' preceeding this '"', plus one */
509                         for (i=0;i<=bcount;i++)
510                             *p++='\\';
511                         *p++='"';
512                     } else {
513                         *p++=*a;
514                     }
515                     bcount=0;
516                 }
517                 a++;
518             }
519         } else {
520             WCHAR* x = *arg;
521             while ((*p=*x++)) p++;
522         }
523         if (has_space)
524             *p++='"';
525         *p++=' ';
526     }
527     if (p > rupp->CommandLine.Buffer)
528         p--;  /* remove last space */
529     *p = '\0';
530
531     return TRUE;
532 }
533
534
535 /* make sure the unicode string doesn't point beyond the end pointer */
536 static inline void fix_unicode_string( UNICODE_STRING *str, char *end_ptr )
537 {
538     if ((char *)str->Buffer >= end_ptr)
539     {
540         str->Length = str->MaximumLength = 0;
541         str->Buffer = NULL;
542         return;
543     }
544     if ((char *)str->Buffer + str->MaximumLength > end_ptr)
545     {
546         str->MaximumLength = (end_ptr - (char *)str->Buffer) & ~(sizeof(WCHAR) - 1);
547     }
548     if (str->Length >= str->MaximumLength)
549     {
550         if (str->MaximumLength >= sizeof(WCHAR))
551             str->Length = str->MaximumLength - sizeof(WCHAR);
552         else
553             str->Length = str->MaximumLength = 0;
554     }
555 }
556
557
558 /***********************************************************************
559  *           init_user_process_params
560  *
561  * Fill the RTL_USER_PROCESS_PARAMETERS structure from the server.
562  */
563 static RTL_USER_PROCESS_PARAMETERS *init_user_process_params( size_t info_size )
564 {
565     void *ptr;
566     DWORD size;
567     NTSTATUS status;
568     RTL_USER_PROCESS_PARAMETERS *params;
569
570     size = info_size;
571     if ((status = NtAllocateVirtualMemory( NtCurrentProcess(), &ptr, NULL, &size,
572                                            MEM_COMMIT, PAGE_READWRITE )) != STATUS_SUCCESS)
573         return NULL;
574
575     SERVER_START_REQ( get_startup_info )
576     {
577         wine_server_set_reply( req, ptr, info_size );
578         wine_server_call( req );
579         info_size = wine_server_reply_size( reply );
580     }
581     SERVER_END_REQ;
582
583     params = ptr;
584     params->Size = info_size;
585     params->AllocationSize = size;
586
587     /* make sure the strings are valid */
588     fix_unicode_string( &params->CurrentDirectoryName, (char *)info_size );
589     fix_unicode_string( &params->DllPath, (char *)info_size );
590     fix_unicode_string( &params->ImagePathName, (char *)info_size );
591     fix_unicode_string( &params->CommandLine, (char *)info_size );
592     fix_unicode_string( &params->WindowTitle, (char *)info_size );
593     fix_unicode_string( &params->Desktop, (char *)info_size );
594     fix_unicode_string( &params->ShellInfo, (char *)info_size );
595     fix_unicode_string( &params->RuntimeInfo, (char *)info_size );
596
597     return RtlNormalizeProcessParams( params );
598 }
599
600
601 /***********************************************************************
602  *           process_init
603  *
604  * Main process initialisation code
605  */
606 static BOOL process_init( char *argv[] )
607 {
608     BOOL ret;
609     size_t info_size = 0;
610     RTL_USER_PROCESS_PARAMETERS *params;
611     PEB *peb = NtCurrentTeb()->Peb;
612     HANDLE hstdin, hstdout, hstderr;
613
614     setbuf(stdout,NULL);
615     setbuf(stderr,NULL);
616     setlocale(LC_CTYPE,"");
617
618     /* Retrieve startup info from the server */
619     SERVER_START_REQ( init_process )
620     {
621         req->ldt_copy  = &wine_ldt_copy;
622         if ((ret = !wine_server_call_err( req )))
623         {
624             main_exe_file     = reply->exe_file;
625             main_create_flags = reply->create_flags;
626             info_size         = reply->info_size;
627             server_startticks = reply->server_start;
628             hstdin            = reply->hstdin;
629             hstdout           = reply->hstdout;
630             hstderr           = reply->hstderr;
631         }
632     }
633     SERVER_END_REQ;
634     if (!ret) return FALSE;
635
636     if (info_size == 0)
637     {
638         params = peb->ProcessParameters;
639
640         /* This is wine specific: we have no parent (we're started from unix)
641          * so, create a simple console with bare handles to unix stdio 
642          * input & output streams (aka simple console)
643          */
644         wine_server_fd_to_handle( 0, GENERIC_READ|SYNCHRONIZE,  TRUE, &params->hStdInput );
645         wine_server_fd_to_handle( 1, GENERIC_WRITE|SYNCHRONIZE, TRUE, &params->hStdOutput );
646         wine_server_fd_to_handle( 2, GENERIC_WRITE|SYNCHRONIZE, TRUE, &params->hStdError );
647
648         /* <hack: to be changed later on> */
649         params->CurrentDirectoryName.Length = 3 * sizeof(WCHAR);
650         params->CurrentDirectoryName.MaximumLength = RtlGetLongestNtPathLength() * sizeof(WCHAR);
651         params->CurrentDirectoryName.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, params->CurrentDirectoryName.MaximumLength);
652         params->CurrentDirectoryName.Buffer[0] = 'C';
653         params->CurrentDirectoryName.Buffer[1] = ':';
654         params->CurrentDirectoryName.Buffer[2] = '\\';
655         params->CurrentDirectoryName.Buffer[3] = '\0';
656         /* </hack: to be changed later on> */
657     }
658     else
659     {
660         if (!(params = init_user_process_params( info_size ))) return FALSE;
661         peb->ProcessParameters = params;
662
663         /* convert value from server:
664          * + 0 => INVALID_HANDLE_VALUE
665          * + console handle need to be mapped
666          */
667         if (!hstdin)
668             hstdin = INVALID_HANDLE_VALUE;
669         else if (VerifyConsoleIoHandle(console_handle_map(hstdin)))
670             hstdin = console_handle_map(hstdin);
671
672         if (!hstdout)
673             hstdout = INVALID_HANDLE_VALUE;
674         else if (VerifyConsoleIoHandle(console_handle_map(hstdout)))
675             hstdout = console_handle_map(hstdout);
676
677         if (!hstderr)
678             hstderr = INVALID_HANDLE_VALUE;
679         else if (VerifyConsoleIoHandle(console_handle_map(hstderr)))
680             hstderr = console_handle_map(hstderr);
681
682         params->hStdInput  = hstdin;
683         params->hStdOutput = hstdout;
684         params->hStdError  = hstderr;
685     }
686
687     /* Copy the parent environment */
688     if (!build_initial_environment()) return FALSE;
689
690     /* Parse command line arguments */
691     OPTIONS_ParseOptions( !info_size ? argv : NULL );
692
693     /* initialise DOS drives */
694     if (!DRIVE_Init()) return FALSE;
695
696     /* initialise DOS directories */
697     if (!DIR_Init()) return FALSE;
698
699     /* registry initialisation */
700     SHELL_LoadRegistry();
701
702     /* global boot finished, the rest is process-local */
703     SERVER_START_REQ( boot_done )
704     {
705         req->debug_level = TRACE_ON(server);
706         wine_server_call( req );
707     }
708     SERVER_END_REQ;
709
710     return TRUE;
711 }
712
713
714 /***********************************************************************
715  *           start_process
716  *
717  * Startup routine of a new process. Runs on the new process stack.
718  */
719 static void start_process( void *arg )
720 {
721     __TRY
722     {
723         LdrInitializeThunk( main_exe_file, CreateFileW, 0, 0 );
724     }
725     __EXCEPT(UnhandledExceptionFilter)
726     {
727         TerminateThread( GetCurrentThread(), GetExceptionCode() );
728     }
729     __ENDTRY
730 }
731
732
733 /***********************************************************************
734  *           __wine_kernel_init
735  *
736  * Wine initialisation: load and start the main exe file.
737  */
738 void __wine_kernel_init(void)
739 {
740     WCHAR *main_exe_name, *p;
741     char error[1024];
742     DWORD stack_size = 0;
743     int file_exists;
744     PEB *peb = NtCurrentTeb()->Peb;
745
746     /* Initialize everything */
747     if (!process_init( __wine_main_argv )) exit(1);
748
749     __wine_main_argv++;  /* remove argv[0] (wine itself) */
750     __wine_main_argc--;
751
752     if (!(main_exe_name = peb->ProcessParameters->ImagePathName.Buffer))
753     {
754         WCHAR buffer[MAX_PATH];
755         WCHAR exe_nameW[MAX_PATH];
756
757         if (!__wine_main_argv[0]) OPTIONS_Usage();
758
759         /* FIXME: locale info not loaded yet */
760         MultiByteToWideChar( CP_UNIXCP, 0, __wine_main_argv[0], -1, exe_nameW, MAX_PATH );
761         if (!find_exe_file( exe_nameW, buffer, MAX_PATH, &main_exe_file ))
762         {
763             MESSAGE( "wine: cannot find '%s'\n", __wine_main_argv[0] );
764             ExitProcess(1);
765         }
766         if (main_exe_file == INVALID_HANDLE_VALUE)
767         {
768             MESSAGE( "wine: cannot open %s\n", debugstr_w(main_exe_name) );
769             ExitProcess(1);
770         }
771         RtlCreateUnicodeString( &peb->ProcessParameters->ImagePathName, buffer );
772         main_exe_name = peb->ProcessParameters->ImagePathName.Buffer;
773     }
774
775     TRACE( "starting process name=%s file=%p argv[0]=%s\n",
776            debugstr_w(main_exe_name), main_exe_file, debugstr_a(__wine_main_argv[0]) );
777
778     MODULE_InitLoadPath();
779     VERSION_Init( main_exe_name );
780
781     if (!main_exe_file)  /* no file handle -> Winelib app */
782     {
783         TRACE( "starting Winelib app %s\n", debugstr_w(main_exe_name) );
784         if (open_builtin_exe_file( main_exe_name, error, sizeof(error), 0, &file_exists ))
785             goto found;
786         MESSAGE( "wine: cannot open builtin library for %s: %s\n",
787                  debugstr_w(main_exe_name), error );
788         ExitProcess(1);
789     }
790
791     switch( MODULE_GetBinaryType( main_exe_file ))
792     {
793     case BINARY_PE_EXE:
794         TRACE( "starting Win32 binary %s\n", debugstr_w(main_exe_name) );
795         if ((peb->ImageBaseAddress = load_pe_exe( main_exe_name, main_exe_file )))
796             goto found;
797         MESSAGE( "wine: could not load %s as Win32 binary\n", debugstr_w(main_exe_name) );
798         ExitProcess(1);
799     case BINARY_PE_DLL:
800         MESSAGE( "wine: %s is a DLL, not an executable\n", debugstr_w(main_exe_name) );
801         ExitProcess(1);
802     case BINARY_UNKNOWN:
803         /* check for .com extension */
804         if (!(p = strrchrW( main_exe_name, '.' )) || strcmpiW( p, comW ))
805         {
806             MESSAGE( "wine: cannot determine executable type for %s\n",
807                      debugstr_w(main_exe_name) );
808             ExitProcess(1);
809         }
810         /* fall through */
811     case BINARY_WIN16:
812     case BINARY_DOS:
813         TRACE( "starting Win16/DOS binary %s\n", debugstr_w(main_exe_name) );
814         CloseHandle( main_exe_file );
815         main_exe_file = 0;
816         __wine_main_argv--;
817         __wine_main_argc++;
818         __wine_main_argv[0] = "winevdm.exe";
819         if (open_builtin_exe_file( winevdmW, error, sizeof(error), 0, &file_exists ))
820             goto found;
821         MESSAGE( "wine: trying to run %s, cannot open builtin library for 'winevdm.exe': %s\n",
822                  debugstr_w(main_exe_name), error );
823         ExitProcess(1);
824     case BINARY_OS216:
825         MESSAGE( "wine: %s is an OS/2 binary, not supported\n", debugstr_w(main_exe_name) );
826         ExitProcess(1);
827     case BINARY_UNIX_EXE:
828         MESSAGE( "wine: %s is a Unix binary, not supported\n", debugstr_w(main_exe_name) );
829         ExitProcess(1);
830     case BINARY_UNIX_LIB:
831         {
832             DOS_FULL_NAME full_name;
833
834             TRACE( "starting Winelib app %s\n", debugstr_w(main_exe_name) );
835             CloseHandle( main_exe_file );
836             main_exe_file = 0;
837             if (DOSFS_GetFullName( main_exe_name, TRUE, &full_name ) &&
838                 wine_dlopen( full_name.long_name, RTLD_NOW, error, sizeof(error) ))
839             {
840                 static const WCHAR soW[] = {'.','s','o',0};
841                 if ((p = strrchrW( main_exe_name, '.' )) && !strcmpW( p, soW ))
842                 {
843                     *p = 0;
844                     /* update the unicode string */
845                     RtlInitUnicodeString( &peb->ProcessParameters->ImagePathName, main_exe_name );
846                 }
847                 goto found;
848             }
849             MESSAGE( "wine: could not load %s: %s\n", debugstr_w(main_exe_name), error );
850             ExitProcess(1);
851         }
852     }
853
854  found:
855     /* build command line */
856     set_library_wargv( __wine_main_argv );
857     if (!build_command_line( __wine_main_wargv )) goto error;
858
859     stack_size = RtlImageNtHeader(peb->ImageBaseAddress)->OptionalHeader.SizeOfStackReserve;
860
861     /* allocate main thread stack */
862     if (!THREAD_InitStack( NtCurrentTeb(), stack_size )) goto error;
863
864     /* switch to the new stack */
865     wine_switch_to_stack( start_process, NULL, NtCurrentTeb()->Tib.StackBase );
866
867  error:
868     ExitProcess( GetLastError() );
869 }
870
871
872 /***********************************************************************
873  *           build_argv
874  *
875  * Build an argv array from a command-line.
876  * 'reserved' is the number of args to reserve before the first one.
877  */
878 static char **build_argv( const WCHAR *cmdlineW, int reserved )
879 {
880     int argc;
881     char** argv;
882     char *arg,*s,*d,*cmdline;
883     int in_quotes,bcount,len;
884
885     len = WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, NULL, 0, NULL, NULL );
886     if (!(cmdline = malloc(len))) return NULL;
887     WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, cmdline, len, NULL, NULL );
888
889     argc=reserved+1;
890     bcount=0;
891     in_quotes=0;
892     s=cmdline;
893     while (1) {
894         if (*s=='\0' || ((*s==' ' || *s=='\t') && !in_quotes)) {
895             /* space */
896             argc++;
897             /* skip the remaining spaces */
898             while (*s==' ' || *s=='\t') {
899                 s++;
900             }
901             if (*s=='\0')
902                 break;
903             bcount=0;
904             continue;
905         } else if (*s=='\\') {
906             /* '\', count them */
907             bcount++;
908         } else if ((*s=='"') && ((bcount & 1)==0)) {
909             /* unescaped '"' */
910             in_quotes=!in_quotes;
911             bcount=0;
912         } else {
913             /* a regular character */
914             bcount=0;
915         }
916         s++;
917     }
918     argv=malloc(argc*sizeof(*argv));
919     if (!argv)
920         return NULL;
921
922     arg=d=s=cmdline;
923     bcount=0;
924     in_quotes=0;
925     argc=reserved;
926     while (*s) {
927         if ((*s==' ' || *s=='\t') && !in_quotes) {
928             /* Close the argument and copy it */
929             *d=0;
930             argv[argc++]=arg;
931
932             /* skip the remaining spaces */
933             do {
934                 s++;
935             } while (*s==' ' || *s=='\t');
936
937             /* Start with a new argument */
938             arg=d=s;
939             bcount=0;
940         } else if (*s=='\\') {
941             /* '\\' */
942             *d++=*s++;
943             bcount++;
944         } else if (*s=='"') {
945             /* '"' */
946             if ((bcount & 1)==0) {
947                 /* Preceeded by an even number of '\', this is half that
948                  * number of '\', plus a '"' which we discard.
949                  */
950                 d-=bcount/2;
951                 s++;
952                 in_quotes=!in_quotes;
953             } else {
954                 /* Preceeded by an odd number of '\', this is half that
955                  * number of '\' followed by a '"'
956                  */
957                 d=d-bcount/2-1;
958                 *d++='"';
959                 s++;
960             }
961             bcount=0;
962         } else {
963             /* a regular character */
964             *d++=*s++;
965             bcount=0;
966         }
967     }
968     if (*arg) {
969         *d='\0';
970         argv[argc++]=arg;
971     }
972     argv[argc]=NULL;
973
974     return argv;
975 }
976
977
978 /***********************************************************************
979  *           build_envp
980  *
981  * Build the environment of a new child process.
982  */
983 static char **build_envp( const WCHAR *envW, const WCHAR *extra_envW )
984 {
985     const WCHAR *p;
986     char **envp;
987     char *env, *extra_env = NULL;
988     int count = 0, length;
989
990     if (extra_envW)
991     {
992         for (p = extra_envW; *p; count++) p += strlenW(p) + 1;
993         p++;
994         length = WideCharToMultiByte( CP_UNIXCP, 0, extra_envW, p - extra_envW,
995                                       NULL, 0, NULL, NULL );
996         if ((extra_env = malloc( length )))
997             WideCharToMultiByte( CP_UNIXCP, 0, extra_envW, p - extra_envW,
998                                  extra_env, length, NULL, NULL );
999     }
1000     for (p = envW; *p; count++) p += strlenW(p) + 1;
1001     p++;
1002     length = WideCharToMultiByte( CP_UNIXCP, 0, envW, p - envW, NULL, 0, NULL, NULL );
1003     if (!(env = malloc( length ))) return NULL;
1004     WideCharToMultiByte( CP_UNIXCP, 0, envW, p - envW, env, length, NULL, NULL );
1005
1006     count += 3;
1007
1008     if ((envp = malloc( count * sizeof(*envp) )))
1009     {
1010         extern char **environ;
1011         char **envptr = envp;
1012         char **unixptr = environ;
1013         char *p;
1014
1015         /* first the extra strings */
1016         if (extra_env) for (p = extra_env; *p; p += strlen(p) + 1) *envptr++ = p;
1017         /* then put PATH, HOME and WINEPREFIX from the unix env */
1018         for (unixptr = environ; unixptr && *unixptr; unixptr++)
1019             if (!memcmp( *unixptr, "PATH=", 5 ) ||
1020                 !memcmp( *unixptr, "HOME=", 5 ) ||
1021                 !memcmp( *unixptr, "WINEPREFIX=", 11 )) *envptr++ = *unixptr;
1022         /* now put the Windows environment strings */
1023         for (p = env; *p; p += strlen(p) + 1)
1024         {
1025             if (!memcmp( p, "PATH=", 5 ))  /* store PATH as WINEPATH */
1026             {
1027                 char *winepath = malloc( strlen(p) + 5 );
1028                 strcpy( winepath, "WINE" );
1029                 strcpy( winepath + 4, p );
1030                 *envptr++ = winepath;
1031             }
1032             else if (memcmp( p, "HOME=", 5 ) &&
1033                      memcmp( p, "WINEPATH=", 9 ) &&
1034                      memcmp( p, "WINEPREFIX=", 11 )) *envptr++ = p;
1035         }
1036         *envptr = 0;
1037     }
1038     return envp;
1039 }
1040
1041
1042 /***********************************************************************
1043  *           exec_wine_binary
1044  *
1045  * Locate the Wine binary to exec for a new Win32 process.
1046  */
1047 static void exec_wine_binary( char **argv, char **envp )
1048 {
1049     const char *path, *pos, *ptr;
1050
1051     /* first, try for a WINELOADER environment variable */
1052     argv[0] = getenv("WINELOADER");
1053     if (argv[0])
1054         execve( argv[0], argv, envp );
1055
1056     /* next, try bin directory */
1057     argv[0] = BINDIR "/wine";
1058     execve( argv[0], argv, envp );
1059
1060     /* now try the path of argv0 of the current binary */
1061     if ((path = wine_get_argv0_path()))
1062     {
1063         if (!(argv[0] = malloc( strlen(path) + sizeof("wine") ))) return;
1064         strcpy( argv[0], path );
1065         strcat( argv[0], "wine" );
1066         execve( argv[0], argv, envp );
1067         free( argv[0] );
1068     }
1069
1070     /* now search in the Unix path */
1071     if ((path = getenv( "PATH" )))
1072     {
1073         if (!(argv[0] = malloc( strlen(path) + 6 ))) return;
1074         pos = path;
1075         for (;;)
1076         {
1077             while (*pos == ':') pos++;
1078             if (!*pos) break;
1079             if (!(ptr = strchr( pos, ':' ))) ptr = pos + strlen(pos);
1080             memcpy( argv[0], pos, ptr - pos );
1081             strcpy( argv[0] + (ptr - pos), "/wine" );
1082             execve( argv[0], argv, envp );
1083             pos = ptr;
1084         }
1085     }
1086     free( argv[0] );
1087 }
1088
1089
1090 /***********************************************************************
1091  *           fork_and_exec
1092  *
1093  * Fork and exec a new Unix binary, checking for errors.
1094  */
1095 static int fork_and_exec( const char *filename, const WCHAR *cmdline,
1096                           const WCHAR *env, const char *newdir )
1097 {
1098     int fd[2];
1099     int pid, err;
1100
1101     if (!env) env = GetEnvironmentStringsW();
1102
1103     if (pipe(fd) == -1)
1104     {
1105         FILE_SetDosError();
1106         return -1;
1107     }
1108     fcntl( fd[1], F_SETFD, 1 );  /* set close on exec */
1109     if (!(pid = fork()))  /* child */
1110     {
1111         char **argv = build_argv( cmdline, 0 );
1112         char **envp = build_envp( env, NULL );
1113         close( fd[0] );
1114
1115         /* Reset signals that we previously set to SIG_IGN */
1116         signal( SIGPIPE, SIG_DFL );
1117         signal( SIGCHLD, SIG_DFL );
1118
1119         if (newdir) chdir(newdir);
1120
1121         if (argv && envp) execve( filename, argv, envp );
1122         err = errno;
1123         write( fd[1], &err, sizeof(err) );
1124         _exit(1);
1125     }
1126     close( fd[1] );
1127     if ((pid != -1) && (read( fd[0], &err, sizeof(err) ) > 0))  /* exec failed */
1128     {
1129         errno = err;
1130         pid = -1;
1131     }
1132     if (pid == -1) FILE_SetDosError();
1133     close( fd[0] );
1134     return pid;
1135 }
1136
1137
1138 /***********************************************************************
1139  *           create_user_params
1140  */
1141 static RTL_USER_PROCESS_PARAMETERS *create_user_params( LPCWSTR filename, LPCWSTR cmdline,
1142                                                         const STARTUPINFOW *startup )
1143 {
1144     RTL_USER_PROCESS_PARAMETERS *params;
1145     UNICODE_STRING image_str, cmdline_str, desktop, title;
1146     NTSTATUS status;
1147     WCHAR buffer[MAX_PATH];
1148
1149     if (GetLongPathNameW( filename, buffer, MAX_PATH ))
1150         RtlInitUnicodeString( &image_str, buffer );
1151     else
1152         RtlInitUnicodeString( &image_str, filename );
1153
1154     RtlInitUnicodeString( &cmdline_str, cmdline );
1155     if (startup->lpDesktop) RtlInitUnicodeString( &desktop, startup->lpDesktop );
1156     if (startup->lpTitle) RtlInitUnicodeString( &title, startup->lpTitle );
1157
1158     status = RtlCreateProcessParameters( &params, &image_str, NULL, NULL, &cmdline_str, NULL,
1159                                          startup->lpTitle ? &title : NULL,
1160                                          startup->lpDesktop ? &desktop : NULL,
1161                                          NULL, NULL );
1162     if (status != STATUS_SUCCESS)
1163     {
1164         SetLastError( RtlNtStatusToDosError(status) );
1165         return NULL;
1166     }
1167
1168     params->Environment     = NULL;  /* we pass it through the Unix environment */
1169     params->hStdInput       = startup->hStdInput;
1170     params->hStdOutput      = startup->hStdOutput;
1171     params->hStdError       = startup->hStdError;
1172     params->dwX             = startup->dwX;
1173     params->dwY             = startup->dwY;
1174     params->dwXSize         = startup->dwXSize;
1175     params->dwYSize         = startup->dwYSize;
1176     params->dwXCountChars   = startup->dwXCountChars;
1177     params->dwYCountChars   = startup->dwYCountChars;
1178     params->dwFillAttribute = startup->dwFillAttribute;
1179     params->dwFlags         = startup->dwFlags;
1180     params->wShowWindow     = startup->wShowWindow;
1181     return params;
1182 }
1183
1184
1185 /***********************************************************************
1186  *           create_process
1187  *
1188  * Create a new process. If hFile is a valid handle we have an exe
1189  * file, otherwise it is a Winelib app.
1190  */
1191 static BOOL create_process( HANDLE hFile, LPCWSTR filename, LPWSTR cmd_line, LPWSTR env,
1192                             LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1193                             BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1194                             LPPROCESS_INFORMATION info, LPCSTR unixdir )
1195 {
1196     BOOL ret, success = FALSE;
1197     HANDLE process_info;
1198     RTL_USER_PROCESS_PARAMETERS *params;
1199     WCHAR *extra_env = NULL;
1200     int startfd[2];
1201     int execfd[2];
1202     pid_t pid;
1203     int err;
1204     char dummy = 0;
1205
1206     if (!env)
1207     {
1208         env = GetEnvironmentStringsW();
1209         extra_env = DRIVE_BuildEnv();
1210     }
1211
1212     if (!(params = create_user_params( filename, cmd_line, startup )))
1213     {
1214         if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
1215         return FALSE;
1216     }
1217
1218     /* create the synchronization pipes */
1219
1220     if (pipe( startfd ) == -1)
1221     {
1222         FILE_SetDosError();
1223         RtlDestroyProcessParameters( params );
1224         if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
1225         return FALSE;
1226     }
1227     if (pipe( execfd ) == -1)
1228     {
1229         FILE_SetDosError();
1230         close( startfd[0] );
1231         close( startfd[1] );
1232         RtlDestroyProcessParameters( params );
1233         if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
1234         return FALSE;
1235     }
1236     fcntl( execfd[1], F_SETFD, 1 );  /* set close on exec */
1237
1238     /* create the child process */
1239
1240     if (!(pid = fork()))  /* child */
1241     {
1242         char **argv = build_argv( cmd_line, 1 );
1243         char **envp = build_envp( env, extra_env );
1244
1245         close( startfd[1] );
1246         close( execfd[0] );
1247
1248         /* wait for parent to tell us to start */
1249         if (read( startfd[0], &dummy, 1 ) != 1) _exit(1);
1250
1251         close( startfd[0] );
1252         /* Reset signals that we previously set to SIG_IGN */
1253         signal( SIGPIPE, SIG_DFL );
1254         signal( SIGCHLD, SIG_DFL );
1255
1256         if (unixdir) chdir(unixdir);
1257
1258         if (argv && envp) exec_wine_binary( argv, envp );
1259
1260         err = errno;
1261         write( execfd[1], &err, sizeof(err) );
1262         _exit(1);
1263     }
1264
1265     /* this is the parent */
1266
1267     close( startfd[0] );
1268     close( execfd[1] );
1269     if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
1270     if (pid == -1)
1271     {
1272         close( startfd[1] );
1273         close( execfd[0] );
1274         FILE_SetDosError();
1275         RtlDestroyProcessParameters( params );
1276         return FALSE;
1277     }
1278
1279     /* create the process on the server side */
1280
1281     SERVER_START_REQ( new_process )
1282     {
1283         req->inherit_all  = inherit;
1284         req->create_flags = flags;
1285         req->unix_pid     = pid;
1286         req->exe_file     = hFile;
1287         if (startup->dwFlags & STARTF_USESTDHANDLES)
1288         {
1289             req->hstdin  = startup->hStdInput;
1290             req->hstdout = startup->hStdOutput;
1291             req->hstderr = startup->hStdError;
1292         }
1293         else
1294         {
1295             req->hstdin  = GetStdHandle( STD_INPUT_HANDLE );
1296             req->hstdout = GetStdHandle( STD_OUTPUT_HANDLE );
1297             req->hstderr = GetStdHandle( STD_ERROR_HANDLE );
1298         }
1299
1300         if ((flags & (CREATE_NEW_CONSOLE | DETACHED_PROCESS)) != 0)
1301         {
1302             /* this is temporary (for console handles). We have no way to control that the handle is invalid in child process otherwise */
1303             if (is_console_handle(req->hstdin))  req->hstdin  = INVALID_HANDLE_VALUE;
1304             if (is_console_handle(req->hstdout)) req->hstdout = INVALID_HANDLE_VALUE;
1305             if (is_console_handle(req->hstderr)) req->hstderr = INVALID_HANDLE_VALUE;
1306         }
1307         else
1308         {
1309             if (is_console_handle(req->hstdin))  req->hstdin  = console_handle_unmap(req->hstdin);
1310             if (is_console_handle(req->hstdout)) req->hstdout = console_handle_unmap(req->hstdout);
1311             if (is_console_handle(req->hstderr)) req->hstderr = console_handle_unmap(req->hstderr);
1312         }
1313
1314         wine_server_add_data( req, params, params->Size );
1315         ret = !wine_server_call_err( req );
1316         process_info = reply->info;
1317     }
1318     SERVER_END_REQ;
1319
1320     RtlDestroyProcessParameters( params );
1321     if (!ret)
1322     {
1323         close( startfd[1] );
1324         close( execfd[0] );
1325         return FALSE;
1326     }
1327
1328     /* tell child to start and wait for it to exec */
1329
1330     write( startfd[1], &dummy, 1 );
1331     close( startfd[1] );
1332
1333     if (read( execfd[0], &err, sizeof(err) ) > 0) /* exec failed */
1334     {
1335         errno = err;
1336         FILE_SetDosError();
1337         close( execfd[0] );
1338         CloseHandle( process_info );
1339         return FALSE;
1340     }
1341
1342     /* wait for the new process info to be ready */
1343
1344     WaitForSingleObject( process_info, INFINITE );
1345     SERVER_START_REQ( get_new_process_info )
1346     {
1347         req->info     = process_info;
1348         req->pinherit = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle);
1349         req->tinherit = (tsa && (tsa->nLength >= sizeof(*tsa)) && tsa->bInheritHandle);
1350         if ((ret = !wine_server_call_err( req )))
1351         {
1352             info->dwProcessId = (DWORD)reply->pid;
1353             info->dwThreadId  = (DWORD)reply->tid;
1354             info->hProcess    = reply->phandle;
1355             info->hThread     = reply->thandle;
1356             success           = reply->success;
1357         }
1358     }
1359     SERVER_END_REQ;
1360
1361     if (ret && !success)  /* new process failed to start */
1362     {
1363         DWORD exitcode;
1364         if (GetExitCodeProcess( info->hProcess, &exitcode )) SetLastError( exitcode );
1365         CloseHandle( info->hThread );
1366         CloseHandle( info->hProcess );
1367         ret = FALSE;
1368     }
1369     CloseHandle( process_info );
1370     return ret;
1371 }
1372
1373
1374 /***********************************************************************
1375  *           create_vdm_process
1376  *
1377  * Create a new VDM process for a 16-bit or DOS application.
1378  */
1379 static BOOL create_vdm_process( LPCWSTR filename, LPWSTR cmd_line, LPWSTR env,
1380                                 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1381                                 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1382                                 LPPROCESS_INFORMATION info, LPCSTR unixdir )
1383 {
1384     static const WCHAR argsW[] = {'%','s',' ','-','-','a','p','p','-','n','a','m','e',' ','"','%','s','"',' ','%','s',0};
1385
1386     BOOL ret;
1387     LPWSTR new_cmd_line = HeapAlloc( GetProcessHeap(), 0,
1388                                      (strlenW(filename) + strlenW(cmd_line) + 30) * sizeof(WCHAR) );
1389
1390     if (!new_cmd_line)
1391     {
1392         SetLastError( ERROR_OUTOFMEMORY );
1393         return FALSE;
1394     }
1395     sprintfW( new_cmd_line, argsW, winevdmW, filename, cmd_line );
1396     ret = create_process( 0, winevdmW, new_cmd_line, env, psa, tsa, inherit,
1397                           flags, startup, info, unixdir );
1398     HeapFree( GetProcessHeap(), 0, new_cmd_line );
1399     return ret;
1400 }
1401
1402
1403 /***********************************************************************
1404  *           create_cmd_process
1405  *
1406  * Create a new cmd shell process for a .BAT file.
1407  */
1408 static BOOL create_cmd_process( LPCWSTR filename, LPWSTR cmd_line, LPVOID env,
1409                                 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1410                                 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1411                                 LPPROCESS_INFORMATION info, LPCWSTR cur_dir )
1412
1413 {
1414     static const WCHAR comspecW[] = {'C','O','M','S','P','E','C',0};
1415     static const WCHAR slashcW[] = {' ','/','c',' ',0};
1416     WCHAR comspec[MAX_PATH];
1417     WCHAR *newcmdline;
1418     BOOL ret;
1419
1420     if (!GetEnvironmentVariableW( comspecW, comspec, sizeof(comspec)/sizeof(WCHAR) ))
1421         return FALSE;
1422     if (!(newcmdline = HeapAlloc( GetProcessHeap(), 0,
1423                                   (strlenW(comspec) + 4 + strlenW(cmd_line) + 1) * sizeof(WCHAR))))
1424         return FALSE;
1425
1426     strcpyW( newcmdline, comspec );
1427     strcatW( newcmdline, slashcW );
1428     strcatW( newcmdline, cmd_line );
1429     ret = CreateProcessW( comspec, newcmdline, psa, tsa, inherit,
1430                           flags, env, cur_dir, startup, info );
1431     HeapFree( GetProcessHeap(), 0, newcmdline );
1432     return ret;
1433 }
1434
1435
1436 /*************************************************************************
1437  *               get_file_name
1438  *
1439  * Helper for CreateProcess: retrieve the file name to load from the
1440  * app name and command line. Store the file name in buffer, and
1441  * return a possibly modified command line.
1442  * Also returns a handle to the opened file if it's a Windows binary.
1443  */
1444 static LPWSTR get_file_name( LPCWSTR appname, LPWSTR cmdline, LPWSTR buffer,
1445                              int buflen, HANDLE *handle )
1446 {
1447     static const WCHAR quotesW[] = {'"','%','s','"',0};
1448
1449     WCHAR *name, *pos, *ret = NULL;
1450     const WCHAR *p;
1451
1452     /* if we have an app name, everything is easy */
1453
1454     if (appname)
1455     {
1456         /* use the unmodified app name as file name */
1457         lstrcpynW( buffer, appname, buflen );
1458         *handle = open_exe_file( buffer );
1459         if (!(ret = cmdline) || !cmdline[0])
1460         {
1461             /* no command-line, create one */
1462             if ((ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(appname) + 3) + sizeof(WCHAR) )))
1463                 sprintfW( ret, quotesW, appname );
1464         }
1465         return ret;
1466     }
1467
1468     if (!cmdline)
1469     {
1470         SetLastError( ERROR_INVALID_PARAMETER );
1471         return NULL;
1472     }
1473
1474     /* first check for a quoted file name */
1475
1476     if ((cmdline[0] == '"') && ((p = strchrW( cmdline + 1, '"' ))))
1477     {
1478         int len = p - cmdline - 1;
1479         /* extract the quoted portion as file name */
1480         if (!(name = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) ))) return NULL;
1481         memcpy( name, cmdline + 1, len * sizeof(WCHAR) );
1482         name[len] = 0;
1483
1484         if (find_exe_file( name, buffer, buflen, handle ))
1485             ret = cmdline;  /* no change necessary */
1486         goto done;
1487     }
1488
1489     /* now try the command-line word by word */
1490
1491     if (!(name = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 1) * sizeof(WCHAR) )))
1492         return NULL;
1493     pos = name;
1494     p = cmdline;
1495
1496     while (*p)
1497     {
1498         do *pos++ = *p++; while (*p && *p != ' ');
1499         *pos = 0;
1500         if (find_exe_file( name, buffer, buflen, handle ))
1501         {
1502             ret = cmdline;
1503             break;
1504         }
1505     }
1506
1507     if (!ret || !strchrW( name, ' ' )) goto done;  /* no change necessary */
1508
1509     /* now build a new command-line with quotes */
1510
1511     if (!(ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 3) * sizeof(WCHAR) )))
1512         goto done;
1513     sprintfW( ret, quotesW, name );
1514     strcatW( ret, p );
1515
1516  done:
1517     HeapFree( GetProcessHeap(), 0, name );
1518     return ret;
1519 }
1520
1521
1522 /**********************************************************************
1523  *       CreateProcessA          (KERNEL32.@)
1524  */
1525 BOOL WINAPI CreateProcessA( LPCSTR app_name, LPSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
1526                             LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit,
1527                             DWORD flags, LPVOID env, LPCSTR cur_dir,
1528                             LPSTARTUPINFOA startup_info, LPPROCESS_INFORMATION info )
1529 {
1530     BOOL ret;
1531     UNICODE_STRING app_nameW, cmd_lineW, cur_dirW, desktopW, titleW;
1532     STARTUPINFOW infoW;
1533
1534     if (app_name) RtlCreateUnicodeStringFromAsciiz( &app_nameW, app_name );
1535     else app_nameW.Buffer = NULL;
1536     if (cmd_line) RtlCreateUnicodeStringFromAsciiz( &cmd_lineW, cmd_line );
1537     else cmd_lineW.Buffer = NULL;
1538     if (cur_dir) RtlCreateUnicodeStringFromAsciiz( &cur_dirW, cur_dir );
1539     else cur_dirW.Buffer = NULL;
1540     if (startup_info->lpDesktop) RtlCreateUnicodeStringFromAsciiz( &desktopW, startup_info->lpDesktop );
1541     else desktopW.Buffer = NULL;
1542     if (startup_info->lpTitle) RtlCreateUnicodeStringFromAsciiz( &titleW, startup_info->lpTitle );
1543     else titleW.Buffer = NULL;
1544
1545     memcpy( &infoW, startup_info, sizeof(infoW) );
1546     infoW.lpDesktop = desktopW.Buffer;
1547     infoW.lpTitle = titleW.Buffer;
1548
1549     if (startup_info->lpReserved)
1550       FIXME("StartupInfo.lpReserved is used, please report (%s)\n",
1551             debugstr_a(startup_info->lpReserved));
1552
1553     ret = CreateProcessW( app_nameW.Buffer,  cmd_lineW.Buffer, process_attr, thread_attr,
1554                           inherit, flags, env, cur_dirW.Buffer, &infoW, info );
1555
1556     RtlFreeUnicodeString( &app_nameW );
1557     RtlFreeUnicodeString( &cmd_lineW );
1558     RtlFreeUnicodeString( &cur_dirW );
1559     RtlFreeUnicodeString( &desktopW );
1560     RtlFreeUnicodeString( &titleW );
1561     return ret;
1562 }
1563
1564
1565 /**********************************************************************
1566  *       CreateProcessW          (KERNEL32.@)
1567  */
1568 BOOL WINAPI CreateProcessW( LPCWSTR app_name, LPWSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
1569                             LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit, DWORD flags,
1570                             LPVOID env, LPCWSTR cur_dir, LPSTARTUPINFOW startup_info,
1571                             LPPROCESS_INFORMATION info )
1572 {
1573     BOOL retv = FALSE;
1574     HANDLE hFile = 0;
1575     const char *unixdir = NULL;
1576     DOS_FULL_NAME full_dir;
1577     WCHAR name[MAX_PATH];
1578     WCHAR *tidy_cmdline, *p, *envW = env;
1579
1580     /* Process the AppName and/or CmdLine to get module name and path */
1581
1582     TRACE("app %s cmdline %s\n", debugstr_w(app_name), debugstr_w(cmd_line) );
1583
1584     if (!(tidy_cmdline = get_file_name( app_name, cmd_line, name, sizeof(name), &hFile )))
1585         return FALSE;
1586     if (hFile == INVALID_HANDLE_VALUE) goto done;
1587
1588     /* Warn if unsupported features are used */
1589
1590     if (flags & (IDLE_PRIORITY_CLASS | HIGH_PRIORITY_CLASS | REALTIME_PRIORITY_CLASS |
1591                  CREATE_NEW_PROCESS_GROUP | CREATE_SEPARATE_WOW_VDM | CREATE_SHARED_WOW_VDM |
1592                  CREATE_DEFAULT_ERROR_MODE | CREATE_NO_WINDOW |
1593                  PROFILE_USER | PROFILE_KERNEL | PROFILE_SERVER))
1594         WARN("(%s,...): ignoring some flags in %lx\n", debugstr_w(name), flags);
1595
1596     if (cur_dir)
1597     {
1598         if (DOSFS_GetFullName( cur_dir, TRUE, &full_dir )) unixdir = full_dir.long_name;
1599     }
1600     else
1601     {
1602         WCHAR buf[MAX_PATH];
1603         if (GetCurrentDirectoryW(MAX_PATH, buf))
1604         {
1605             if (DOSFS_GetFullName( buf, TRUE, &full_dir )) unixdir = full_dir.long_name;
1606         }
1607     }
1608
1609     if (env && !(flags & CREATE_UNICODE_ENVIRONMENT))  /* convert environment to unicode */
1610     {
1611         char *p = env;
1612         DWORD lenW;
1613
1614         while (*p) p += strlen(p) + 1;
1615         p++;  /* final null */
1616         lenW = MultiByteToWideChar( CP_ACP, 0, env, p - (char*)env, NULL, 0 );
1617         envW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) );
1618         MultiByteToWideChar( CP_ACP, 0, env, p - (char*)env, envW, lenW );
1619         flags |= CREATE_UNICODE_ENVIRONMENT;
1620     }
1621
1622     info->hThread = info->hProcess = 0;
1623     info->dwProcessId = info->dwThreadId = 0;
1624
1625     /* Determine executable type */
1626
1627     if (!hFile)  /* builtin exe */
1628     {
1629         TRACE( "starting %s as Winelib app\n", debugstr_w(name) );
1630         retv = create_process( 0, name, tidy_cmdline, envW, process_attr, thread_attr,
1631                                inherit, flags, startup_info, info, unixdir );
1632         goto done;
1633     }
1634
1635     switch( MODULE_GetBinaryType( hFile ))
1636     {
1637     case BINARY_PE_EXE:
1638         TRACE( "starting %s as Win32 binary\n", debugstr_w(name) );
1639         retv = create_process( hFile, name, tidy_cmdline, envW, process_attr, thread_attr,
1640                                inherit, flags, startup_info, info, unixdir );
1641         break;
1642     case BINARY_WIN16:
1643     case BINARY_DOS:
1644         TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name) );
1645         retv = create_vdm_process( name, tidy_cmdline, envW, process_attr, thread_attr,
1646                                    inherit, flags, startup_info, info, unixdir );
1647         break;
1648     case BINARY_OS216:
1649         FIXME( "%s is OS/2 binary, not supported\n", debugstr_w(name) );
1650         SetLastError( ERROR_BAD_EXE_FORMAT );
1651         break;
1652     case BINARY_PE_DLL:
1653         TRACE( "not starting %s since it is a dll\n", debugstr_w(name) );
1654         SetLastError( ERROR_BAD_EXE_FORMAT );
1655         break;
1656     case BINARY_UNIX_LIB:
1657         TRACE( "%s is a Unix library, starting as Winelib app\n", debugstr_w(name) );
1658         retv = create_process( hFile, name, tidy_cmdline, envW, process_attr, thread_attr,
1659                                inherit, flags, startup_info, info, unixdir );
1660         break;
1661     case BINARY_UNKNOWN:
1662         /* check for .com or .bat extension */
1663         if ((p = strrchrW( name, '.' )))
1664         {
1665             if (!strcmpiW( p, comW ))
1666             {
1667                 TRACE( "starting %s as DOS binary\n", debugstr_w(name) );
1668                 retv = create_vdm_process( name, tidy_cmdline, envW, process_attr, thread_attr,
1669                                            inherit, flags, startup_info, info, unixdir );
1670                 break;
1671             }
1672             if (!strcmpiW( p, batW ))
1673             {
1674                 TRACE( "starting %s as batch binary\n", debugstr_w(name) );
1675                 retv = create_cmd_process( name, tidy_cmdline, envW, process_attr, thread_attr,
1676                                            inherit, flags, startup_info, info, cur_dir );
1677                 break;
1678             }
1679         }
1680         /* fall through */
1681     case BINARY_UNIX_EXE:
1682         {
1683             /* unknown file, try as unix executable */
1684             DOS_FULL_NAME full_name;
1685
1686             TRACE( "starting %s as Unix binary\n", debugstr_w(name) );
1687
1688             if (DOSFS_GetFullName( name, TRUE, &full_name ))
1689                 retv = (fork_and_exec( full_name.long_name, tidy_cmdline, envW, unixdir ) != -1);
1690         }
1691         break;
1692     }
1693     CloseHandle( hFile );
1694
1695  done:
1696     if (tidy_cmdline != cmd_line) HeapFree( GetProcessHeap(), 0, tidy_cmdline );
1697     if (envW != env) HeapFree( GetProcessHeap(), 0, envW );
1698     return retv;
1699 }
1700
1701
1702 /***********************************************************************
1703  *           wait_input_idle
1704  *
1705  * Wrapper to call WaitForInputIdle USER function
1706  */
1707 typedef DWORD (WINAPI *WaitForInputIdle_ptr)( HANDLE hProcess, DWORD dwTimeOut );
1708
1709 static DWORD wait_input_idle( HANDLE process, DWORD timeout )
1710 {
1711     HMODULE mod = GetModuleHandleA( "user32.dll" );
1712     if (mod)
1713     {
1714         WaitForInputIdle_ptr ptr = (WaitForInputIdle_ptr)GetProcAddress( mod, "WaitForInputIdle" );
1715         if (ptr) return ptr( process, timeout );
1716     }
1717     return 0;
1718 }
1719
1720
1721 /***********************************************************************
1722  *           WinExec   (KERNEL32.@)
1723  */
1724 UINT WINAPI WinExec( LPCSTR lpCmdLine, UINT nCmdShow )
1725 {
1726     PROCESS_INFORMATION info;
1727     STARTUPINFOA startup;
1728     char *cmdline;
1729     UINT ret;
1730
1731     memset( &startup, 0, sizeof(startup) );
1732     startup.cb = sizeof(startup);
1733     startup.dwFlags = STARTF_USESHOWWINDOW;
1734     startup.wShowWindow = nCmdShow;
1735
1736     /* cmdline needs to be writeable for CreateProcess */
1737     if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(lpCmdLine)+1 ))) return 0;
1738     strcpy( cmdline, lpCmdLine );
1739
1740     if (CreateProcessA( NULL, cmdline, NULL, NULL, FALSE,
1741                         0, NULL, NULL, &startup, &info ))
1742     {
1743         /* Give 30 seconds to the app to come up */
1744         if (wait_input_idle( info.hProcess, 30000 ) == 0xFFFFFFFF)
1745             WARN("WaitForInputIdle failed: Error %ld\n", GetLastError() );
1746         ret = 33;
1747         /* Close off the handles */
1748         CloseHandle( info.hThread );
1749         CloseHandle( info.hProcess );
1750     }
1751     else if ((ret = GetLastError()) >= 32)
1752     {
1753         FIXME("Strange error set by CreateProcess: %d\n", ret );
1754         ret = 11;
1755     }
1756     HeapFree( GetProcessHeap(), 0, cmdline );
1757     return ret;
1758 }
1759
1760
1761 /**********************************************************************
1762  *          LoadModule    (KERNEL32.@)
1763  */
1764 HINSTANCE WINAPI LoadModule( LPCSTR name, LPVOID paramBlock )
1765 {
1766     LOADPARAMS *params = (LOADPARAMS *)paramBlock;
1767     PROCESS_INFORMATION info;
1768     STARTUPINFOA startup;
1769     HINSTANCE hInstance;
1770     LPSTR cmdline, p;
1771     char filename[MAX_PATH];
1772     BYTE len;
1773
1774     if (!name) return (HINSTANCE)ERROR_FILE_NOT_FOUND;
1775
1776     if (!SearchPathA( NULL, name, ".exe", sizeof(filename), filename, NULL ) &&
1777         !SearchPathA( NULL, name, NULL, sizeof(filename), filename, NULL ))
1778         return (HINSTANCE)GetLastError();
1779
1780     len = (BYTE)params->lpCmdLine[0];
1781     if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(filename) + len + 2 )))
1782         return (HINSTANCE)ERROR_NOT_ENOUGH_MEMORY;
1783
1784     strcpy( cmdline, filename );
1785     p = cmdline + strlen(cmdline);
1786     *p++ = ' ';
1787     memcpy( p, params->lpCmdLine + 1, len );
1788     p[len] = 0;
1789
1790     memset( &startup, 0, sizeof(startup) );
1791     startup.cb = sizeof(startup);
1792     if (params->lpCmdShow)
1793     {
1794         startup.dwFlags = STARTF_USESHOWWINDOW;
1795         startup.wShowWindow = params->lpCmdShow[1];
1796     }
1797
1798     if (CreateProcessA( filename, cmdline, NULL, NULL, FALSE, 0,
1799                         params->lpEnvAddress, NULL, &startup, &info ))
1800     {
1801         /* Give 30 seconds to the app to come up */
1802         if (wait_input_idle( info.hProcess, 30000 ) ==  0xFFFFFFFF )
1803             WARN("WaitForInputIdle failed: Error %ld\n", GetLastError() );
1804         hInstance = (HINSTANCE)33;
1805         /* Close off the handles */
1806         CloseHandle( info.hThread );
1807         CloseHandle( info.hProcess );
1808     }
1809     else if ((hInstance = (HINSTANCE)GetLastError()) >= (HINSTANCE)32)
1810     {
1811         FIXME("Strange error set by CreateProcess: %p\n", hInstance );
1812         hInstance = (HINSTANCE)11;
1813     }
1814
1815     HeapFree( GetProcessHeap(), 0, cmdline );
1816     return hInstance;
1817 }
1818
1819
1820 /******************************************************************************
1821  *           TerminateProcess   (KERNEL32.@)
1822  */
1823 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
1824 {
1825     NTSTATUS status = NtTerminateProcess( handle, exit_code );
1826     if (status) SetLastError( RtlNtStatusToDosError(status) );
1827     return !status;
1828 }
1829
1830
1831 /***********************************************************************
1832  *           ExitProcess   (KERNEL32.@)
1833  */
1834 void WINAPI ExitProcess( DWORD status )
1835 {
1836     LdrShutdownProcess();
1837     SERVER_START_REQ( terminate_process )
1838     {
1839         /* send the exit code to the server */
1840         req->handle    = GetCurrentProcess();
1841         req->exit_code = status;
1842         wine_server_call( req );
1843     }
1844     SERVER_END_REQ;
1845     exit( status );
1846 }
1847
1848
1849 /***********************************************************************
1850  * GetExitCodeProcess [KERNEL32.@]
1851  *
1852  * Gets termination status of specified process
1853  *
1854  * RETURNS
1855  *   Success: TRUE
1856  *   Failure: FALSE
1857  */
1858 BOOL WINAPI GetExitCodeProcess(
1859     HANDLE hProcess,    /* [in] handle to the process */
1860     LPDWORD lpExitCode) /* [out] address to receive termination status */
1861 {
1862     BOOL ret;
1863     SERVER_START_REQ( get_process_info )
1864     {
1865         req->handle = hProcess;
1866         ret = !wine_server_call_err( req );
1867         if (ret && lpExitCode) *lpExitCode = reply->exit_code;
1868     }
1869     SERVER_END_REQ;
1870     return ret;
1871 }
1872
1873
1874 /***********************************************************************
1875  *           SetErrorMode   (KERNEL32.@)
1876  */
1877 UINT WINAPI SetErrorMode( UINT mode )
1878 {
1879     UINT old = process_error_mode;
1880     process_error_mode = mode;
1881     return old;
1882 }
1883
1884
1885 /**********************************************************************
1886  * TlsAlloc [KERNEL32.@]  Allocates a TLS index.
1887  *
1888  * Allocates a thread local storage index
1889  *
1890  * RETURNS
1891  *    Success: TLS Index
1892  *    Failure: 0xFFFFFFFF
1893  */
1894 DWORD WINAPI TlsAlloc( void )
1895 {
1896     DWORD index;
1897
1898     RtlAcquirePebLock();
1899     index = RtlFindClearBitsAndSet( NtCurrentTeb()->Peb->TlsBitmap, 1, 0 );
1900     if (index != ~0UL) NtCurrentTeb()->TlsSlots[index] = 0; /* clear the value */
1901     else SetLastError( ERROR_NO_MORE_ITEMS );
1902     RtlReleasePebLock();
1903     return index;
1904 }
1905
1906
1907 /**********************************************************************
1908  * TlsFree [KERNEL32.@]  Releases a TLS index.
1909  *
1910  * Releases a thread local storage index, making it available for reuse
1911  *
1912  * RETURNS
1913  *    Success: TRUE
1914  *    Failure: FALSE
1915  */
1916 BOOL WINAPI TlsFree(
1917     DWORD index) /* [in] TLS Index to free */
1918 {
1919     BOOL ret;
1920
1921     RtlAcquirePebLock();
1922     ret = RtlAreBitsSet( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
1923     if (ret)
1924     {
1925         RtlClearBits( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
1926         NtSetInformationThread( GetCurrentThread(), ThreadZeroTlsCell, &index, sizeof(index) );
1927     }
1928     else SetLastError( ERROR_INVALID_PARAMETER );
1929     RtlReleasePebLock();
1930     return TRUE;
1931 }
1932
1933
1934 /**********************************************************************
1935  * TlsGetValue [KERNEL32.@]  Gets value in a thread's TLS slot
1936  *
1937  * RETURNS
1938  *    Success: Value stored in calling thread's TLS slot for index
1939  *    Failure: 0 and GetLastError returns NO_ERROR
1940  */
1941 LPVOID WINAPI TlsGetValue(
1942     DWORD index) /* [in] TLS index to retrieve value for */
1943 {
1944     if (index >= NtCurrentTeb()->Peb->TlsBitmap->SizeOfBitMap)
1945     {
1946         SetLastError( ERROR_INVALID_PARAMETER );
1947         return NULL;
1948     }
1949     SetLastError( ERROR_SUCCESS );
1950     return NtCurrentTeb()->TlsSlots[index];
1951 }
1952
1953
1954 /**********************************************************************
1955  * TlsSetValue [KERNEL32.@]  Stores a value in the thread's TLS slot.
1956  *
1957  * RETURNS
1958  *    Success: TRUE
1959  *    Failure: FALSE
1960  */
1961 BOOL WINAPI TlsSetValue(
1962     DWORD index,  /* [in] TLS index to set value for */
1963     LPVOID value) /* [in] Value to be stored */
1964 {
1965     if (index >= NtCurrentTeb()->Peb->TlsBitmap->SizeOfBitMap)
1966     {
1967         SetLastError( ERROR_INVALID_PARAMETER );
1968         return FALSE;
1969     }
1970     NtCurrentTeb()->TlsSlots[index] = value;
1971     return TRUE;
1972 }
1973
1974
1975 /***********************************************************************
1976  *           GetProcessFlags    (KERNEL32.@)
1977  */
1978 DWORD WINAPI GetProcessFlags( DWORD processid )
1979 {
1980     IMAGE_NT_HEADERS *nt;
1981     DWORD flags = 0;
1982
1983     if (processid && processid != GetCurrentProcessId()) return 0;
1984
1985     if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
1986     {
1987         if (nt->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI)
1988             flags |= PDB32_CONSOLE_PROC;
1989     }
1990     if (!AreFileApisANSI()) flags |= PDB32_FILE_APIS_OEM;
1991     if (IsDebuggerPresent()) flags |= PDB32_DEBUGGED;
1992     return flags;
1993 }
1994
1995
1996 /***********************************************************************
1997  *           GetProcessDword    (KERNEL.485)
1998  *           GetProcessDword    (KERNEL32.18)
1999  * 'Of course you cannot directly access Windows internal structures'
2000  */
2001 DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
2002 {
2003     DWORD               x, y;
2004     STARTUPINFOW        siw;
2005
2006     TRACE("(%ld, %d)\n", dwProcessID, offset );
2007
2008     if (dwProcessID && dwProcessID != GetCurrentProcessId())
2009     {
2010         ERR("%d: process %lx not accessible\n", offset, dwProcessID);
2011         return 0;
2012     }
2013
2014     switch ( offset )
2015     {
2016     case GPD_APP_COMPAT_FLAGS:
2017         return GetAppCompatFlags16(0);
2018     case GPD_LOAD_DONE_EVENT:
2019         return 0;
2020     case GPD_HINSTANCE16:
2021         return GetTaskDS16();
2022     case GPD_WINDOWS_VERSION:
2023         return GetExeVersion16();
2024     case GPD_THDB:
2025         return (DWORD)NtCurrentTeb() - 0x10 /* FIXME */;
2026     case GPD_PDB:
2027         return (DWORD)NtCurrentTeb()->Peb;
2028     case GPD_STARTF_SHELLDATA: /* return stdoutput handle from startupinfo ??? */
2029         GetStartupInfoW(&siw);
2030         return (DWORD)siw.hStdOutput;
2031     case GPD_STARTF_HOTKEY: /* return stdinput handle from startupinfo ??? */
2032         GetStartupInfoW(&siw);
2033         return (DWORD)siw.hStdInput;
2034     case GPD_STARTF_SHOWWINDOW:
2035         GetStartupInfoW(&siw);
2036         return siw.wShowWindow;
2037     case GPD_STARTF_SIZE:
2038         GetStartupInfoW(&siw);
2039         x = siw.dwXSize;
2040         if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
2041         y = siw.dwYSize;
2042         if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
2043         return MAKELONG( x, y );
2044     case GPD_STARTF_POSITION:
2045         GetStartupInfoW(&siw);
2046         x = siw.dwX;
2047         if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
2048         y = siw.dwY;
2049         if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
2050         return MAKELONG( x, y );
2051     case GPD_STARTF_FLAGS:
2052         GetStartupInfoW(&siw);
2053         return siw.dwFlags;
2054     case GPD_PARENT:
2055         return 0;
2056     case GPD_FLAGS:
2057         return GetProcessFlags(0);
2058     case GPD_USERDATA:
2059         return process_dword;
2060     default:
2061         ERR("Unknown offset %d\n", offset );
2062         return 0;
2063     }
2064 }
2065
2066 /***********************************************************************
2067  *           SetProcessDword    (KERNEL.484)
2068  * 'Of course you cannot directly access Windows internal structures'
2069  */
2070 void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
2071 {
2072     TRACE("(%ld, %d)\n", dwProcessID, offset );
2073
2074     if (dwProcessID && dwProcessID != GetCurrentProcessId())
2075     {
2076         ERR("%d: process %lx not accessible\n", offset, dwProcessID);
2077         return;
2078     }
2079
2080     switch ( offset )
2081     {
2082     case GPD_APP_COMPAT_FLAGS:
2083     case GPD_LOAD_DONE_EVENT:
2084     case GPD_HINSTANCE16:
2085     case GPD_WINDOWS_VERSION:
2086     case GPD_THDB:
2087     case GPD_PDB:
2088     case GPD_STARTF_SHELLDATA:
2089     case GPD_STARTF_HOTKEY:
2090     case GPD_STARTF_SHOWWINDOW:
2091     case GPD_STARTF_SIZE:
2092     case GPD_STARTF_POSITION:
2093     case GPD_STARTF_FLAGS:
2094     case GPD_PARENT:
2095     case GPD_FLAGS:
2096         ERR("Not allowed to modify offset %d\n", offset );
2097         break;
2098     case GPD_USERDATA:
2099         process_dword = value;
2100         break;
2101     default:
2102         ERR("Unknown offset %d\n", offset );
2103         break;
2104     }
2105 }
2106
2107
2108 /***********************************************************************
2109  *           ExitProcess   (KERNEL.466)
2110  */
2111 void WINAPI ExitProcess16( WORD status )
2112 {
2113     DWORD count;
2114     ReleaseThunkLock( &count );
2115     ExitProcess( status );
2116 }
2117
2118
2119 /*********************************************************************
2120  *           OpenProcess   (KERNEL32.@)
2121  */
2122 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
2123 {
2124     HANDLE ret = 0;
2125     SERVER_START_REQ( open_process )
2126     {
2127         req->pid     = id;
2128         req->access  = access;
2129         req->inherit = inherit;
2130         if (!wine_server_call_err( req )) ret = reply->handle;
2131     }
2132     SERVER_END_REQ;
2133     return ret;
2134 }
2135
2136
2137 /*********************************************************************
2138  *           MapProcessHandle   (KERNEL.483)
2139  */
2140 DWORD WINAPI MapProcessHandle( HANDLE handle )
2141 {
2142     DWORD ret = 0;
2143     SERVER_START_REQ( get_process_info )
2144     {
2145         req->handle = handle;
2146         if (!wine_server_call_err( req )) ret = reply->pid;
2147     }
2148     SERVER_END_REQ;
2149     return ret;
2150 }
2151
2152
2153 /*********************************************************************
2154  *           CloseW32Handle (KERNEL.474)
2155  *           CloseHandle    (KERNEL32.@)
2156  */
2157 BOOL WINAPI CloseHandle( HANDLE handle )
2158 {
2159     NTSTATUS status;
2160
2161     /* stdio handles need special treatment */
2162     if ((handle == (HANDLE)STD_INPUT_HANDLE) ||
2163         (handle == (HANDLE)STD_OUTPUT_HANDLE) ||
2164         (handle == (HANDLE)STD_ERROR_HANDLE))
2165         handle = GetStdHandle( (DWORD)handle );
2166
2167     if (is_console_handle(handle))
2168         return CloseConsoleHandle(handle);
2169
2170     status = NtClose( handle );
2171     if (status) SetLastError( RtlNtStatusToDosError(status) );
2172     return !status;
2173 }
2174
2175
2176 /*********************************************************************
2177  *           GetHandleInformation   (KERNEL32.@)
2178  */
2179 BOOL WINAPI GetHandleInformation( HANDLE handle, LPDWORD flags )
2180 {
2181     BOOL ret;
2182     SERVER_START_REQ( set_handle_info )
2183     {
2184         req->handle = handle;
2185         req->flags  = 0;
2186         req->mask   = 0;
2187         req->fd     = -1;
2188         ret = !wine_server_call_err( req );
2189         if (ret && flags) *flags = reply->old_flags;
2190     }
2191     SERVER_END_REQ;
2192     return ret;
2193 }
2194
2195
2196 /*********************************************************************
2197  *           SetHandleInformation   (KERNEL32.@)
2198  */
2199 BOOL WINAPI SetHandleInformation( HANDLE handle, DWORD mask, DWORD flags )
2200 {
2201     BOOL ret;
2202     SERVER_START_REQ( set_handle_info )
2203     {
2204         req->handle = handle;
2205         req->flags  = flags;
2206         req->mask   = mask;
2207         req->fd     = -1;
2208         ret = !wine_server_call_err( req );
2209     }
2210     SERVER_END_REQ;
2211     return ret;
2212 }
2213
2214
2215 /*********************************************************************
2216  *           DuplicateHandle   (KERNEL32.@)
2217  */
2218 BOOL WINAPI DuplicateHandle( HANDLE source_process, HANDLE source,
2219                              HANDLE dest_process, HANDLE *dest,
2220                              DWORD access, BOOL inherit, DWORD options )
2221 {
2222     NTSTATUS status;
2223
2224     if (is_console_handle(source))
2225     {
2226         /* FIXME: this test is not sufficient, we need to test process ids, not handles */
2227         if (source_process != dest_process ||
2228             source_process != GetCurrentProcess())
2229         {
2230             SetLastError(ERROR_INVALID_PARAMETER);
2231             return FALSE;
2232         }
2233         *dest = DuplicateConsoleHandle( source, access, inherit, options );
2234         return (*dest != INVALID_HANDLE_VALUE);
2235     }
2236     status = NtDuplicateObject( source_process, source, dest_process, dest,
2237                                 access, inherit ? OBJ_INHERIT : 0, options );
2238     if (status) SetLastError( RtlNtStatusToDosError(status) );
2239     return !status;
2240 }
2241
2242
2243 /***********************************************************************
2244  *           ConvertToGlobalHandle   (KERNEL.476)
2245  *           ConvertToGlobalHandle  (KERNEL32.@)
2246  */
2247 HANDLE WINAPI ConvertToGlobalHandle(HANDLE hSrc)
2248 {
2249     HANDLE ret = INVALID_HANDLE_VALUE;
2250     DuplicateHandle( GetCurrentProcess(), hSrc, GetCurrentProcess(), &ret, 0, FALSE,
2251                      DUP_HANDLE_MAKE_GLOBAL | DUP_HANDLE_SAME_ACCESS | DUP_HANDLE_CLOSE_SOURCE );
2252     return ret;
2253 }
2254
2255
2256 /***********************************************************************
2257  *           SetHandleContext   (KERNEL32.@)
2258  */
2259 BOOL WINAPI SetHandleContext(HANDLE hnd,DWORD context)
2260 {
2261     FIXME("(%p,%ld), stub. In case this got called by WSOCK32/WS2_32: "
2262           "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd,context);
2263     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2264     return FALSE;
2265 }
2266
2267
2268 /***********************************************************************
2269  *           GetHandleContext   (KERNEL32.@)
2270  */
2271 DWORD WINAPI GetHandleContext(HANDLE hnd)
2272 {
2273     FIXME("(%p), stub. In case this got called by WSOCK32/WS2_32: "
2274           "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd);
2275     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2276     return 0;
2277 }
2278
2279
2280 /***********************************************************************
2281  *           CreateSocketHandle   (KERNEL32.@)
2282  */
2283 HANDLE WINAPI CreateSocketHandle(void)
2284 {
2285     FIXME("(), stub. In case this got called by WSOCK32/WS2_32: "
2286           "the external WINSOCK DLLs won't work with WINE, don't use them.\n");
2287     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2288     return INVALID_HANDLE_VALUE;
2289 }
2290
2291
2292 /***********************************************************************
2293  *           SetPriorityClass   (KERNEL32.@)
2294  */
2295 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
2296 {
2297     BOOL ret;
2298     SERVER_START_REQ( set_process_info )
2299     {
2300         req->handle   = hprocess;
2301         req->priority = priorityclass;
2302         req->mask     = SET_PROCESS_INFO_PRIORITY;
2303         ret = !wine_server_call_err( req );
2304     }
2305     SERVER_END_REQ;
2306     return ret;
2307 }
2308
2309
2310 /***********************************************************************
2311  *           GetPriorityClass   (KERNEL32.@)
2312  */
2313 DWORD WINAPI GetPriorityClass(HANDLE hprocess)
2314 {
2315     DWORD ret = 0;
2316     SERVER_START_REQ( get_process_info )
2317     {
2318         req->handle = hprocess;
2319         if (!wine_server_call_err( req )) ret = reply->priority;
2320     }
2321     SERVER_END_REQ;
2322     return ret;
2323 }
2324
2325
2326 /***********************************************************************
2327  *          SetProcessAffinityMask   (KERNEL32.@)
2328  */
2329 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD affmask )
2330 {
2331     BOOL ret;
2332     SERVER_START_REQ( set_process_info )
2333     {
2334         req->handle   = hProcess;
2335         req->affinity = affmask;
2336         req->mask     = SET_PROCESS_INFO_AFFINITY;
2337         ret = !wine_server_call_err( req );
2338     }
2339     SERVER_END_REQ;
2340     return ret;
2341 }
2342
2343
2344 /**********************************************************************
2345  *          GetProcessAffinityMask    (KERNEL32.@)
2346  */
2347 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess,
2348                                       LPDWORD lpProcessAffinityMask,
2349                                       LPDWORD lpSystemAffinityMask )
2350 {
2351     BOOL ret = FALSE;
2352     SERVER_START_REQ( get_process_info )
2353     {
2354         req->handle = hProcess;
2355         if (!wine_server_call_err( req ))
2356         {
2357             if (lpProcessAffinityMask) *lpProcessAffinityMask = reply->process_affinity;
2358             if (lpSystemAffinityMask) *lpSystemAffinityMask = reply->system_affinity;
2359             ret = TRUE;
2360         }
2361     }
2362     SERVER_END_REQ;
2363     return ret;
2364 }
2365
2366
2367 /***********************************************************************
2368  *           GetProcessVersion    (KERNEL32.@)
2369  */
2370 DWORD WINAPI GetProcessVersion( DWORD processid )
2371 {
2372     IMAGE_NT_HEADERS *nt;
2373
2374     if (processid && processid != GetCurrentProcessId())
2375     {
2376         FIXME("should use ReadProcessMemory\n");
2377         return 0;
2378     }
2379     if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
2380         return ((nt->OptionalHeader.MajorSubsystemVersion << 16) |
2381                 nt->OptionalHeader.MinorSubsystemVersion);
2382     return 0;
2383 }
2384
2385
2386 /***********************************************************************
2387  *              SetProcessWorkingSetSize        [KERNEL32.@]
2388  * Sets the min/max working set sizes for a specified process.
2389  *
2390  * PARAMS
2391  *    hProcess [I] Handle to the process of interest
2392  *    minset   [I] Specifies minimum working set size
2393  *    maxset   [I] Specifies maximum working set size
2394  *
2395  * RETURNS  STD
2396  */
2397 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess, SIZE_T minset,
2398                                      SIZE_T maxset)
2399 {
2400     FIXME("(%p,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
2401     if(( minset == (SIZE_T)-1) && (maxset == (SIZE_T)-1)) {
2402         /* Trim the working set to zero */
2403         /* Swap the process out of physical RAM */
2404     }
2405     return TRUE;
2406 }
2407
2408 /***********************************************************************
2409  *           GetProcessWorkingSetSize    (KERNEL32.@)
2410  */
2411 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess, PSIZE_T minset,
2412                                      PSIZE_T maxset)
2413 {
2414     FIXME("(%p,%p,%p): stub\n",hProcess,minset,maxset);
2415     /* 32 MB working set size */
2416     if (minset) *minset = 32*1024*1024;
2417     if (maxset) *maxset = 32*1024*1024;
2418     return TRUE;
2419 }
2420
2421
2422 /***********************************************************************
2423  *           SetProcessShutdownParameters    (KERNEL32.@)
2424  */
2425 BOOL WINAPI SetProcessShutdownParameters(DWORD level, DWORD flags)
2426 {
2427     FIXME("(%08lx, %08lx): partial stub.\n", level, flags);
2428     shutdown_flags = flags;
2429     shutdown_priority = level;
2430     return TRUE;
2431 }
2432
2433
2434 /***********************************************************************
2435  * GetProcessShutdownParameters                 (KERNEL32.@)
2436  *
2437  */
2438 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
2439 {
2440     *lpdwLevel = shutdown_priority;
2441     *lpdwFlags = shutdown_flags;
2442     return TRUE;
2443 }
2444
2445
2446 /***********************************************************************
2447  *           GetProcessPriorityBoost    (KERNEL32.@)
2448  */
2449 BOOL WINAPI GetProcessPriorityBoost(HANDLE hprocess,PBOOL pDisablePriorityBoost)
2450 {
2451     FIXME("(%p,%p): semi-stub\n", hprocess, pDisablePriorityBoost);
2452     
2453     /* Report that no boost is present.. */
2454     *pDisablePriorityBoost = FALSE;
2455     
2456     return TRUE;
2457 }
2458
2459 /***********************************************************************
2460  *           SetProcessPriorityBoost    (KERNEL32.@)
2461  */
2462 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
2463 {
2464     FIXME("(%p,%d): stub\n",hprocess,disableboost);
2465     /* Say we can do it. I doubt the program will notice that we don't. */
2466     return TRUE;
2467 }
2468
2469
2470 /***********************************************************************
2471  *              ReadProcessMemory (KERNEL32.@)
2472  */
2473 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, SIZE_T size,
2474                                SIZE_T *bytes_read )
2475 {
2476     NTSTATUS status = NtReadVirtualMemory( process, addr, buffer, size, bytes_read );
2477     if (status) SetLastError( RtlNtStatusToDosError(status) );
2478     return !status;
2479 }
2480
2481
2482 /***********************************************************************
2483  *           WriteProcessMemory                 (KERNEL32.@)
2484  */
2485 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPCVOID buffer, SIZE_T size,
2486                                 SIZE_T *bytes_written )
2487 {
2488     NTSTATUS status = NtWriteVirtualMemory( process, addr, buffer, size, bytes_written );
2489     if (status) SetLastError( RtlNtStatusToDosError(status) );
2490     return !status;
2491 }
2492
2493
2494 /****************************************************************************
2495  *              FlushInstructionCache (KERNEL32.@)
2496  */
2497 BOOL WINAPI FlushInstructionCache(HANDLE hProcess, LPCVOID lpBaseAddress, SIZE_T dwSize)
2498 {
2499     if (GetVersion() & 0x80000000) return TRUE; /* not NT, always TRUE */
2500     FIXME("(%p,%p,0x%08lx): stub\n",hProcess, lpBaseAddress, dwSize);
2501     return TRUE;
2502 }
2503
2504
2505 /******************************************************************
2506  *              GetProcessIoCounters (KERNEL32.@)
2507  */
2508 BOOL WINAPI GetProcessIoCounters(HANDLE hProcess, PIO_COUNTERS ioc)
2509 {
2510     NTSTATUS    status;
2511
2512     status = NtQueryInformationProcess(hProcess, ProcessIoCounters, 
2513                                        ioc, sizeof(*ioc), NULL);
2514     if (status) SetLastError( RtlNtStatusToDosError(status) );
2515     return !status;
2516 }
2517
2518 /***********************************************************************
2519  * ProcessIdToSessionId   (KERNEL32.@)
2520  * This function is available on Terminal Server 4SP4 and Windows 2000
2521  */
2522 BOOL WINAPI ProcessIdToSessionId( DWORD procid, DWORD *sessionid_ptr )
2523 {
2524     /* According to MSDN, if the calling process is not in a terminal
2525      * services environment, then the sessionid returned is zero.
2526      */
2527     *sessionid_ptr = 0;
2528     return TRUE;
2529 }
2530
2531
2532 /***********************************************************************
2533  *              RegisterServiceProcess (KERNEL.491)
2534  *              RegisterServiceProcess (KERNEL32.@)
2535  *
2536  * A service process calls this function to ensure that it continues to run
2537  * even after a user logged off.
2538  */
2539 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
2540 {
2541     /* I don't think that Wine needs to do anything in that function */
2542     return 1; /* success */
2543 }
2544
2545
2546 /**************************************************************************
2547  *              SetFileApisToOEM   (KERNEL32.@)
2548  */
2549 VOID WINAPI SetFileApisToOEM(void)
2550 {
2551     oem_file_apis = TRUE;
2552 }
2553
2554
2555 /**************************************************************************
2556  *              SetFileApisToANSI   (KERNEL32.@)
2557  */
2558 VOID WINAPI SetFileApisToANSI(void)
2559 {
2560     oem_file_apis = FALSE;
2561 }
2562
2563
2564 /******************************************************************************
2565  * AreFileApisANSI [KERNEL32.@]  Determines if file functions are using ANSI
2566  *
2567  * RETURNS
2568  *    TRUE:  Set of file functions is using ANSI code page
2569  *    FALSE: Set of file functions is using OEM code page
2570  */
2571 BOOL WINAPI AreFileApisANSI(void)
2572 {
2573     return !oem_file_apis;
2574 }
2575
2576
2577 /***********************************************************************
2578  *           GetTickCount       (KERNEL32.@)
2579  *
2580  * Returns the number of milliseconds, modulo 2^32, since the start
2581  * of the wineserver.
2582  */
2583 DWORD WINAPI GetTickCount(void)
2584 {
2585     struct timeval t;
2586     gettimeofday( &t, NULL );
2587     return ((t.tv_sec * 1000) + (t.tv_usec / 1000)) - server_startticks;
2588 }
2589
2590
2591 /***********************************************************************
2592  *           GetCurrentProcess   (KERNEL32.@)
2593  */
2594 #undef GetCurrentProcess
2595 HANDLE WINAPI GetCurrentProcess(void)
2596 {
2597     return (HANDLE)0xffffffff;
2598 }