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