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