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