Release 1.5.29.
[wine] / dlls / kernel32 / 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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 <signal.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <time.h>
31 #ifdef HAVE_SYS_TIME_H
32 # include <sys/time.h>
33 #endif
34 #ifdef HAVE_SYS_IOCTL_H
35 #include <sys/ioctl.h>
36 #endif
37 #ifdef HAVE_SYS_SOCKET_H
38 #include <sys/socket.h>
39 #endif
40 #ifdef HAVE_SYS_PRCTL_H
41 # include <sys/prctl.h>
42 #endif
43 #include <sys/types.h>
44 #ifdef HAVE_SYS_WAIT_H
45 # include <sys/wait.h>
46 #endif
47 #ifdef HAVE_UNISTD_H
48 # include <unistd.h>
49 #endif
50 #ifdef __APPLE__
51 #include <CoreFoundation/CoreFoundation.h>
52 #include <pthread.h>
53 #endif
54
55 #include "ntstatus.h"
56 #define WIN32_NO_STATUS
57 #include "winternl.h"
58 #include "kernel_private.h"
59 #include "psapi.h"
60 #include "wine/library.h"
61 #include "wine/server.h"
62 #include "wine/unicode.h"
63 #include "wine/debug.h"
64
65 WINE_DEFAULT_DEBUG_CHANNEL(process);
66 WINE_DECLARE_DEBUG_CHANNEL(file);
67 WINE_DECLARE_DEBUG_CHANNEL(relay);
68
69 #ifdef __APPLE__
70 extern char **__wine_get_main_environment(void);
71 #else
72 extern char **__wine_main_environ;
73 static char **__wine_get_main_environment(void) { return __wine_main_environ; }
74 #endif
75
76 typedef struct
77 {
78     LPSTR lpEnvAddress;
79     LPSTR lpCmdLine;
80     LPSTR lpCmdShow;
81     DWORD dwReserved;
82 } LOADPARMS32;
83
84 static DWORD shutdown_flags = 0;
85 static DWORD shutdown_priority = 0x280;
86 static BOOL is_wow64;
87 static const int is_win64 = (sizeof(void *) > sizeof(int));
88
89 HMODULE kernel32_handle = 0;
90 SYSTEM_BASIC_INFORMATION system_info = { 0 };
91
92 const WCHAR *DIR_Windows = NULL;
93 const WCHAR *DIR_System = NULL;
94 const WCHAR *DIR_SysWow64 = NULL;
95
96 /* Process flags */
97 #define PDB32_DEBUGGED      0x0001  /* Process is being debugged */
98 #define PDB32_WIN16_PROC    0x0008  /* Win16 process */
99 #define PDB32_DOS_PROC      0x0010  /* Dos process */
100 #define PDB32_CONSOLE_PROC  0x0020  /* Console process */
101 #define PDB32_FILE_APIS_OEM 0x0040  /* File APIs are OEM */
102 #define PDB32_WIN32S_PROC   0x8000  /* Win32s process */
103
104 static const WCHAR exeW[] = {'.','e','x','e',0};
105 static const WCHAR comW[] = {'.','c','o','m',0};
106 static const WCHAR batW[] = {'.','b','a','t',0};
107 static const WCHAR cmdW[] = {'.','c','m','d',0};
108 static const WCHAR pifW[] = {'.','p','i','f',0};
109 static const WCHAR winevdmW[] = {'w','i','n','e','v','d','m','.','e','x','e',0};
110
111 static void exec_process( LPCWSTR name );
112
113 extern void SHELL_LoadRegistry(void);
114
115
116 /***********************************************************************
117  *           contains_path
118  */
119 static inline int contains_path( LPCWSTR name )
120 {
121     return ((*name && (name[1] == ':')) || strchrW(name, '/') || strchrW(name, '\\'));
122 }
123
124
125 /***********************************************************************
126  *           is_special_env_var
127  *
128  * Check if an environment variable needs to be handled specially when
129  * passed through the Unix environment (i.e. prefixed with "WINE").
130  */
131 static inline int is_special_env_var( const char *var )
132 {
133     return (!strncmp( var, "PATH=", sizeof("PATH=")-1 ) ||
134             !strncmp( var, "PWD=", sizeof("PWD=")-1 ) ||
135             !strncmp( var, "HOME=", sizeof("HOME=")-1 ) ||
136             !strncmp( var, "TEMP=", sizeof("TEMP=")-1 ) ||
137             !strncmp( var, "TMP=", sizeof("TMP=")-1 ));
138 }
139
140
141 /***********************************************************************
142  *           is_path_prefix
143  */
144 static inline unsigned int is_path_prefix( const WCHAR *prefix, const WCHAR *filename )
145 {
146     unsigned int len = strlenW( prefix );
147
148     if (strncmpiW( filename, prefix, len ) || filename[len] != '\\') return 0;
149     while (filename[len] == '\\') len++;
150     return len;
151 }
152
153
154 /***************************************************************************
155  *      get_builtin_path
156  *
157  * Get the path of a builtin module when the native file does not exist.
158  */
159 static BOOL get_builtin_path( const WCHAR *libname, const WCHAR *ext, WCHAR *filename,
160                               UINT size, struct binary_info *binary_info )
161 {
162     WCHAR *file_part;
163     UINT len;
164     void *redir_disabled = 0;
165     unsigned int flags = (sizeof(void*) > sizeof(int) ? BINARY_FLAG_64BIT : 0);
166
167     /* builtin names cannot be empty or contain spaces */
168     if (!libname[0] || strchrW( libname, ' ' ) || strchrW( libname, '\t' )) return FALSE;
169
170     if (is_wow64 && Wow64DisableWow64FsRedirection( &redir_disabled ))
171         Wow64RevertWow64FsRedirection( redir_disabled );
172
173     if (contains_path( libname ))
174     {
175         if (RtlGetFullPathName_U( libname, size * sizeof(WCHAR),
176                                   filename, &file_part ) > size * sizeof(WCHAR))
177             return FALSE;  /* too long */
178
179         if ((len = is_path_prefix( DIR_System, filename )))
180         {
181             if (is_wow64 && redir_disabled) flags = BINARY_FLAG_64BIT;
182         }
183         else if (DIR_SysWow64 && (len = is_path_prefix( DIR_SysWow64, filename )))
184         {
185             flags = 0;
186         }
187         else return FALSE;
188
189         if (filename + len != file_part) return FALSE;
190     }
191     else
192     {
193         len = strlenW( DIR_System );
194         if (strlenW(libname) + len + 2 >= size) return FALSE;  /* too long */
195         memcpy( filename, DIR_System, len * sizeof(WCHAR) );
196         file_part = filename + len;
197         if (file_part > filename && file_part[-1] != '\\') *file_part++ = '\\';
198         strcpyW( file_part, libname );
199         if (is_wow64 && redir_disabled) flags = BINARY_FLAG_64BIT;
200     }
201     if (ext && !strchrW( file_part, '.' ))
202     {
203         if (file_part + strlenW(file_part) + strlenW(ext) + 1 > filename + size)
204             return FALSE;  /* too long */
205         strcatW( file_part, ext );
206     }
207     binary_info->type = BINARY_UNIX_LIB;
208     binary_info->flags = flags;
209     binary_info->res_start = NULL;
210     binary_info->res_end = NULL;
211     return TRUE;
212 }
213
214
215 /***********************************************************************
216  *           open_exe_file
217  *
218  * Open a specific exe file, taking load order into account.
219  * Returns the file handle or 0 for a builtin exe.
220  */
221 static HANDLE open_exe_file( const WCHAR *name, struct binary_info *binary_info )
222 {
223     HANDLE handle;
224
225     TRACE("looking for %s\n", debugstr_w(name) );
226
227     if ((handle = CreateFileW( name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_DELETE,
228                                NULL, OPEN_EXISTING, 0, 0 )) == INVALID_HANDLE_VALUE)
229     {
230         WCHAR buffer[MAX_PATH];
231         /* file doesn't exist, check for builtin */
232         if (contains_path( name ) && get_builtin_path( name, NULL, buffer, sizeof(buffer), binary_info ))
233             handle = 0;
234     }
235     else MODULE_get_binary_info( handle, binary_info );
236
237     return handle;
238 }
239
240
241 /***********************************************************************
242  *           find_exe_file
243  *
244  * Open an exe file, and return the full name and file handle.
245  * Returns FALSE if file could not be found.
246  */
247 static BOOL find_exe_file( const WCHAR *name, WCHAR *buffer, int buflen,
248                            HANDLE *handle, struct binary_info *binary_info )
249 {
250     TRACE("looking for %s\n", debugstr_w(name) );
251
252     if (!SearchPathW( NULL, name, exeW, buflen, buffer, NULL ) &&
253         /* no builtin found, try native without extension in case it is a Unix app */
254         !SearchPathW( NULL, name, NULL, buflen, buffer, NULL )) return FALSE;
255
256     TRACE( "Trying native exe %s\n", debugstr_w(buffer) );
257     if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_DELETE,
258                                 NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
259     {
260         MODULE_get_binary_info( *handle, binary_info );
261         return TRUE;
262     }
263     return FALSE;
264 }
265
266
267 /***********************************************************************
268  *           build_initial_environment
269  *
270  * Build the Win32 environment from the Unix environment
271  */
272 static BOOL build_initial_environment(void)
273 {
274     SIZE_T size = 1;
275     char **e;
276     WCHAR *p, *endptr;
277     void *ptr;
278     char **env = __wine_get_main_environment();
279
280     /* Compute the total size of the Unix environment */
281     for (e = env; *e; e++)
282     {
283         if (is_special_env_var( *e )) continue;
284         size += MultiByteToWideChar( CP_UNIXCP, 0, *e, -1, NULL, 0 );
285     }
286     size *= sizeof(WCHAR);
287
288     /* Now allocate the environment */
289     ptr = NULL;
290     if (NtAllocateVirtualMemory(NtCurrentProcess(), &ptr, 0, &size,
291                                 MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE) != STATUS_SUCCESS)
292         return FALSE;
293
294     NtCurrentTeb()->Peb->ProcessParameters->Environment = p = ptr;
295     endptr = p + size / sizeof(WCHAR);
296
297     /* And fill it with the Unix environment */
298     for (e = env; *e; e++)
299     {
300         char *str = *e;
301
302         /* skip Unix special variables and use the Wine variants instead */
303         if (!strncmp( str, "WINE", 4 ))
304         {
305             if (is_special_env_var( str + 4 )) str += 4;
306             else if (!strncmp( str, "WINEPRELOADRESERVE=", 19 )) continue;  /* skip it */
307         }
308         else if (is_special_env_var( str )) continue;  /* skip it */
309
310         MultiByteToWideChar( CP_UNIXCP, 0, str, -1, p, endptr - p );
311         p += strlenW(p) + 1;
312     }
313     *p = 0;
314     return TRUE;
315 }
316
317
318 /***********************************************************************
319  *           set_registry_variables
320  *
321  * Set environment variables by enumerating the values of a key;
322  * helper for set_registry_environment().
323  * Note that Windows happily truncates the value if it's too big.
324  */
325 static void set_registry_variables( HANDLE hkey, ULONG type )
326 {
327     static const WCHAR pathW[] = {'P','A','T','H'};
328     static const WCHAR sep[] = {';',0};
329     UNICODE_STRING env_name, env_value;
330     NTSTATUS status;
331     DWORD size;
332     int index;
333     char buffer[1024*sizeof(WCHAR) + sizeof(KEY_VALUE_FULL_INFORMATION)];
334     WCHAR tmpbuf[1024];
335     UNICODE_STRING tmp;
336     KEY_VALUE_FULL_INFORMATION *info = (KEY_VALUE_FULL_INFORMATION *)buffer;
337
338     tmp.Buffer = tmpbuf;
339     tmp.MaximumLength = sizeof(tmpbuf);
340
341     for (index = 0; ; index++)
342     {
343         status = NtEnumerateValueKey( hkey, index, KeyValueFullInformation,
344                                       buffer, sizeof(buffer), &size );
345         if (status != STATUS_SUCCESS && status != STATUS_BUFFER_OVERFLOW)
346             break;
347         if (info->Type != type)
348             continue;
349         env_name.Buffer = info->Name;
350         env_name.Length = env_name.MaximumLength = info->NameLength;
351         env_value.Buffer = (WCHAR *)(buffer + info->DataOffset);
352         env_value.Length = info->DataLength;
353         env_value.MaximumLength = sizeof(buffer) - info->DataOffset;
354         if (env_value.Length && !env_value.Buffer[env_value.Length/sizeof(WCHAR)-1])
355             env_value.Length -= sizeof(WCHAR);  /* don't count terminating null if any */
356         if (!env_value.Length) continue;
357         if (info->Type == REG_EXPAND_SZ)
358         {
359             status = RtlExpandEnvironmentStrings_U( NULL, &env_value, &tmp, NULL );
360             if (status != STATUS_SUCCESS && status != STATUS_BUFFER_OVERFLOW) continue;
361             RtlCopyUnicodeString( &env_value, &tmp );
362         }
363         /* PATH is magic */
364         if (env_name.Length == sizeof(pathW) &&
365             !memicmpW( env_name.Buffer, pathW, sizeof(pathW)/sizeof(WCHAR) ) &&
366             !RtlQueryEnvironmentVariable_U( NULL, &env_name, &tmp ))
367         {
368             RtlAppendUnicodeToString( &tmp, sep );
369             if (RtlAppendUnicodeStringToString( &tmp, &env_value )) continue;
370             RtlCopyUnicodeString( &env_value, &tmp );
371         }
372         RtlSetEnvironmentVariable( NULL, &env_name, &env_value );
373     }
374 }
375
376
377 /***********************************************************************
378  *           set_registry_environment
379  *
380  * Set the environment variables specified in the registry.
381  *
382  * Note: Windows handles REG_SZ and REG_EXPAND_SZ in one pass with the
383  * consequence that REG_EXPAND_SZ cannot be used reliably as it depends
384  * on the order in which the variables are processed. But on Windows it
385  * does not really matter since they only use %SystemDrive% and
386  * %SystemRoot% which are predefined. But Wine defines these in the
387  * registry, so we need two passes.
388  */
389 static BOOL set_registry_environment( BOOL volatile_only )
390 {
391     static const WCHAR env_keyW[] = {'M','a','c','h','i','n','e','\\',
392                                      'S','y','s','t','e','m','\\',
393                                      'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
394                                      'C','o','n','t','r','o','l','\\',
395                                      'S','e','s','s','i','o','n',' ','M','a','n','a','g','e','r','\\',
396                                      'E','n','v','i','r','o','n','m','e','n','t',0};
397     static const WCHAR envW[] = {'E','n','v','i','r','o','n','m','e','n','t',0};
398     static const WCHAR volatile_envW[] = {'V','o','l','a','t','i','l','e',' ','E','n','v','i','r','o','n','m','e','n','t',0};
399
400     OBJECT_ATTRIBUTES attr;
401     UNICODE_STRING nameW;
402     HANDLE hkey;
403     BOOL ret = FALSE;
404
405     attr.Length = sizeof(attr);
406     attr.RootDirectory = 0;
407     attr.ObjectName = &nameW;
408     attr.Attributes = 0;
409     attr.SecurityDescriptor = NULL;
410     attr.SecurityQualityOfService = NULL;
411
412     /* first the system environment variables */
413     RtlInitUnicodeString( &nameW, env_keyW );
414     if (!volatile_only && NtOpenKey( &hkey, KEY_READ, &attr ) == STATUS_SUCCESS)
415     {
416         set_registry_variables( hkey, REG_SZ );
417         set_registry_variables( hkey, REG_EXPAND_SZ );
418         NtClose( hkey );
419         ret = TRUE;
420     }
421
422     /* then the ones for the current user */
423     if (RtlOpenCurrentUser( KEY_READ, &attr.RootDirectory ) != STATUS_SUCCESS) return ret;
424     RtlInitUnicodeString( &nameW, envW );
425     if (!volatile_only && NtOpenKey( &hkey, KEY_READ, &attr ) == STATUS_SUCCESS)
426     {
427         set_registry_variables( hkey, REG_SZ );
428         set_registry_variables( hkey, REG_EXPAND_SZ );
429         NtClose( hkey );
430     }
431
432     RtlInitUnicodeString( &nameW, volatile_envW );
433     if (NtOpenKey( &hkey, KEY_READ, &attr ) == STATUS_SUCCESS)
434     {
435         set_registry_variables( hkey, REG_SZ );
436         set_registry_variables( hkey, REG_EXPAND_SZ );
437         NtClose( hkey );
438     }
439
440     NtClose( attr.RootDirectory );
441     return ret;
442 }
443
444
445 /***********************************************************************
446  *           get_reg_value
447  */
448 static WCHAR *get_reg_value( HKEY hkey, const WCHAR *name )
449 {
450     char buffer[1024 * sizeof(WCHAR) + sizeof(KEY_VALUE_PARTIAL_INFORMATION)];
451     KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)buffer;
452     DWORD len, size = sizeof(buffer);
453     WCHAR *ret = NULL;
454     UNICODE_STRING nameW;
455
456     RtlInitUnicodeString( &nameW, name );
457     if (NtQueryValueKey( hkey, &nameW, KeyValuePartialInformation, buffer, size, &size ))
458         return NULL;
459
460     if (size <= FIELD_OFFSET( KEY_VALUE_PARTIAL_INFORMATION, Data )) return NULL;
461     len = (size - FIELD_OFFSET( KEY_VALUE_PARTIAL_INFORMATION, Data )) / sizeof(WCHAR);
462
463     if (info->Type == REG_EXPAND_SZ)
464     {
465         UNICODE_STRING value, expanded;
466
467         value.MaximumLength = len * sizeof(WCHAR);
468         value.Buffer = (WCHAR *)info->Data;
469         if (!value.Buffer[len - 1]) len--;  /* don't count terminating null if any */
470         value.Length = len * sizeof(WCHAR);
471         expanded.Length = expanded.MaximumLength = 1024 * sizeof(WCHAR);
472         if (!(expanded.Buffer = HeapAlloc( GetProcessHeap(), 0, expanded.MaximumLength ))) return NULL;
473         if (!RtlExpandEnvironmentStrings_U( NULL, &value, &expanded, NULL )) ret = expanded.Buffer;
474         else RtlFreeUnicodeString( &expanded );
475     }
476     else if (info->Type == REG_SZ)
477     {
478         if ((ret = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) )))
479         {
480             memcpy( ret, info->Data, len * sizeof(WCHAR) );
481             ret[len] = 0;
482         }
483     }
484     return ret;
485 }
486
487
488 /***********************************************************************
489  *           set_additional_environment
490  *
491  * Set some additional environment variables not specified in the registry.
492  */
493 static void set_additional_environment(void)
494 {
495     static const WCHAR profile_keyW[] = {'M','a','c','h','i','n','e','\\',
496                                          'S','o','f','t','w','a','r','e','\\',
497                                          'M','i','c','r','o','s','o','f','t','\\',
498                                          'W','i','n','d','o','w','s',' ','N','T','\\',
499                                          'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
500                                          'P','r','o','f','i','l','e','L','i','s','t',0};
501     static const WCHAR profiles_valueW[] = {'P','r','o','f','i','l','e','s','D','i','r','e','c','t','o','r','y',0};
502     static const WCHAR all_users_valueW[] = {'A','l','l','U','s','e','r','s','P','r','o','f','i','l','e','\0'};
503     static const WCHAR allusersW[] = {'A','L','L','U','S','E','R','S','P','R','O','F','I','L','E',0};
504     OBJECT_ATTRIBUTES attr;
505     UNICODE_STRING nameW;
506     WCHAR *profile_dir = NULL, *all_users_dir = NULL;
507     HANDLE hkey;
508     DWORD len;
509
510     /* set the ALLUSERSPROFILE variables */
511
512     attr.Length = sizeof(attr);
513     attr.RootDirectory = 0;
514     attr.ObjectName = &nameW;
515     attr.Attributes = 0;
516     attr.SecurityDescriptor = NULL;
517     attr.SecurityQualityOfService = NULL;
518     RtlInitUnicodeString( &nameW, profile_keyW );
519     if (!NtOpenKey( &hkey, KEY_READ, &attr ))
520     {
521         profile_dir = get_reg_value( hkey, profiles_valueW );
522         all_users_dir = get_reg_value( hkey, all_users_valueW );
523         NtClose( hkey );
524     }
525
526     if (profile_dir && all_users_dir)
527     {
528         WCHAR *value, *p;
529
530         len = strlenW(profile_dir) + strlenW(all_users_dir) + 2;
531         value = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
532         strcpyW( value, profile_dir );
533         p = value + strlenW(value);
534         if (p > value && p[-1] != '\\') *p++ = '\\';
535         strcpyW( p, all_users_dir );
536         SetEnvironmentVariableW( allusersW, value );
537         HeapFree( GetProcessHeap(), 0, value );
538     }
539
540     HeapFree( GetProcessHeap(), 0, all_users_dir );
541     HeapFree( GetProcessHeap(), 0, profile_dir );
542 }
543
544 /***********************************************************************
545  *           set_wow64_environment
546  *
547  * Set the environment variables that change across 32/64/Wow64.
548  */
549 static void set_wow64_environment(void)
550 {
551     static const WCHAR archW[]    = {'P','R','O','C','E','S','S','O','R','_','A','R','C','H','I','T','E','C','T','U','R','E',0};
552     static const WCHAR arch6432W[] = {'P','R','O','C','E','S','S','O','R','_','A','R','C','H','I','T','E','W','6','4','3','2',0};
553     static const WCHAR x86W[] = {'x','8','6',0};
554     static const WCHAR versionW[] = {'M','a','c','h','i','n','e','\\',
555                                      'S','o','f','t','w','a','r','e','\\',
556                                      'M','i','c','r','o','s','o','f','t','\\',
557                                      'W','i','n','d','o','w','s','\\',
558                                      'C','u','r','r','e','n','t','V','e','r','s','i','o','n',0};
559     static const WCHAR progdirW[]   = {'P','r','o','g','r','a','m','F','i','l','e','s','D','i','r',0};
560     static const WCHAR progdir86W[] = {'P','r','o','g','r','a','m','F','i','l','e','s','D','i','r',' ','(','x','8','6',')',0};
561     static const WCHAR progfilesW[] = {'P','r','o','g','r','a','m','F','i','l','e','s',0};
562     static const WCHAR progw6432W[] = {'P','r','o','g','r','a','m','W','6','4','3','2',0};
563     static const WCHAR commondirW[]   = {'C','o','m','m','o','n','F','i','l','e','s','D','i','r',0};
564     static const WCHAR commondir86W[] = {'C','o','m','m','o','n','F','i','l','e','s','D','i','r',' ','(','x','8','6',')',0};
565     static const WCHAR commonfilesW[] = {'C','o','m','m','o','n','P','r','o','g','r','a','m','F','i','l','e','s',0};
566     static const WCHAR commonw6432W[] = {'C','o','m','m','o','n','P','r','o','g','r','a','m','W','6','4','3','2',0};
567
568     OBJECT_ATTRIBUTES attr;
569     UNICODE_STRING nameW;
570     WCHAR arch[64];
571     WCHAR *value;
572     HANDLE hkey;
573
574     /* set the PROCESSOR_ARCHITECTURE variable */
575
576     if (GetEnvironmentVariableW( arch6432W, arch, sizeof(arch)/sizeof(WCHAR) ))
577     {
578         if (is_win64)
579         {
580             SetEnvironmentVariableW( archW, arch );
581             SetEnvironmentVariableW( arch6432W, NULL );
582         }
583     }
584     else if (GetEnvironmentVariableW( archW, arch, sizeof(arch)/sizeof(WCHAR) ))
585     {
586         if (is_wow64)
587         {
588             SetEnvironmentVariableW( arch6432W, arch );
589             SetEnvironmentVariableW( archW, x86W );
590         }
591     }
592
593     attr.Length = sizeof(attr);
594     attr.RootDirectory = 0;
595     attr.ObjectName = &nameW;
596     attr.Attributes = 0;
597     attr.SecurityDescriptor = NULL;
598     attr.SecurityQualityOfService = NULL;
599     RtlInitUnicodeString( &nameW, versionW );
600     if (NtOpenKey( &hkey, KEY_READ | KEY_WOW64_64KEY, &attr )) return;
601
602     /* set the ProgramFiles variables */
603
604     if ((value = get_reg_value( hkey, progdirW )))
605     {
606         if (is_win64 || is_wow64) SetEnvironmentVariableW( progw6432W, value );
607         if (is_win64 || !is_wow64) SetEnvironmentVariableW( progfilesW, value );
608         HeapFree( GetProcessHeap(), 0, value );
609     }
610     if (is_wow64 && (value = get_reg_value( hkey, progdir86W )))
611     {
612         SetEnvironmentVariableW( progfilesW, value );
613         HeapFree( GetProcessHeap(), 0, value );
614     }
615
616     /* set the CommonProgramFiles variables */
617
618     if ((value = get_reg_value( hkey, commondirW )))
619     {
620         if (is_win64 || is_wow64) SetEnvironmentVariableW( commonw6432W, value );
621         if (is_win64 || !is_wow64) SetEnvironmentVariableW( commonfilesW, value );
622         HeapFree( GetProcessHeap(), 0, value );
623     }
624     if (is_wow64 && (value = get_reg_value( hkey, commondir86W )))
625     {
626         SetEnvironmentVariableW( commonfilesW, value );
627         HeapFree( GetProcessHeap(), 0, value );
628     }
629
630     NtClose( hkey );
631 }
632
633 /***********************************************************************
634  *              set_library_wargv
635  *
636  * Set the Wine library Unicode argv global variables.
637  */
638 static void set_library_wargv( char **argv )
639 {
640     int argc;
641     char *q;
642     WCHAR *p;
643     WCHAR **wargv;
644     DWORD total = 0;
645
646     for (argc = 0; argv[argc]; argc++)
647         total += MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, NULL, 0 );
648
649     wargv = RtlAllocateHeap( GetProcessHeap(), 0,
650                              total * sizeof(WCHAR) + (argc + 1) * sizeof(*wargv) );
651     p = (WCHAR *)(wargv + argc + 1);
652     for (argc = 0; argv[argc]; argc++)
653     {
654         DWORD reslen = MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, p, total );
655         wargv[argc] = p;
656         p += reslen;
657         total -= reslen;
658     }
659     wargv[argc] = NULL;
660
661     /* convert argv back from Unicode since it has to be in the Ansi codepage not the Unix one */
662
663     for (argc = 0; wargv[argc]; argc++)
664         total += WideCharToMultiByte( CP_ACP, 0, wargv[argc], -1, NULL, 0, NULL, NULL );
665
666     argv = RtlAllocateHeap( GetProcessHeap(), 0, total + (argc + 1) * sizeof(*argv) );
667     q = (char *)(argv + argc + 1);
668     for (argc = 0; wargv[argc]; argc++)
669     {
670         DWORD reslen = WideCharToMultiByte( CP_ACP, 0, wargv[argc], -1, q, total, NULL, NULL );
671         argv[argc] = q;
672         q += reslen;
673         total -= reslen;
674     }
675     argv[argc] = NULL;
676
677     __wine_main_argc = argc;
678     __wine_main_argv = argv;
679     __wine_main_wargv = wargv;
680 }
681
682
683 /***********************************************************************
684  *              update_library_argv0
685  *
686  * Update the argv[0] global variable with the binary we have found.
687  */
688 static void update_library_argv0( const WCHAR *argv0 )
689 {
690     DWORD len = strlenW( argv0 );
691
692     if (len > strlenW( __wine_main_wargv[0] ))
693     {
694         __wine_main_wargv[0] = RtlAllocateHeap( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) );
695     }
696     strcpyW( __wine_main_wargv[0], argv0 );
697
698     len = WideCharToMultiByte( CP_ACP, 0, argv0, -1, NULL, 0, NULL, NULL );
699     if (len > strlen( __wine_main_argv[0] ) + 1)
700     {
701         __wine_main_argv[0] = RtlAllocateHeap( GetProcessHeap(), 0, len );
702     }
703     WideCharToMultiByte( CP_ACP, 0, argv0, -1, __wine_main_argv[0], len, NULL, NULL );
704 }
705
706
707 /***********************************************************************
708  *           build_command_line
709  *
710  * Build the command line of a process from the argv array.
711  *
712  * Note that it does NOT necessarily include the file name.
713  * Sometimes we don't even have any command line options at all.
714  *
715  * We must quote and escape characters so that the argv array can be rebuilt
716  * from the command line:
717  * - spaces and tabs must be quoted
718  *   'a b'   -> '"a b"'
719  * - quotes must be escaped
720  *   '"'     -> '\"'
721  * - if '\'s are followed by a '"', they must be doubled and followed by '\"',
722  *   resulting in an odd number of '\' followed by a '"'
723  *   '\"'    -> '\\\"'
724  *   '\\"'   -> '\\\\\"'
725  * - '\'s that are not followed by a '"' can be left as is
726  *   'a\b'   == 'a\b'
727  *   'a\\b'  == 'a\\b'
728  */
729 static BOOL build_command_line( WCHAR **argv )
730 {
731     int len;
732     WCHAR **arg;
733     LPWSTR p;
734     RTL_USER_PROCESS_PARAMETERS* rupp = NtCurrentTeb()->Peb->ProcessParameters;
735
736     if (rupp->CommandLine.Buffer) return TRUE; /* already got it from the server */
737
738     len = 0;
739     for (arg = argv; *arg; arg++)
740     {
741         int has_space,bcount;
742         WCHAR* a;
743
744         has_space=0;
745         bcount=0;
746         a=*arg;
747         if( !*a ) has_space=1;
748         while (*a!='\0') {
749             if (*a=='\\') {
750                 bcount++;
751             } else {
752                 if (*a==' ' || *a=='\t') {
753                     has_space=1;
754                 } else if (*a=='"') {
755                     /* doubling of '\' preceding a '"',
756                      * plus escaping of said '"'
757                      */
758                     len+=2*bcount+1;
759                 }
760                 bcount=0;
761             }
762             a++;
763         }
764         len+=(a-*arg)+1 /* for the separating space */;
765         if (has_space)
766             len+=2; /* for the quotes */
767     }
768
769     if (!(rupp->CommandLine.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, len * sizeof(WCHAR))))
770         return FALSE;
771
772     p = rupp->CommandLine.Buffer;
773     rupp->CommandLine.Length = (len - 1) * sizeof(WCHAR);
774     rupp->CommandLine.MaximumLength = len * sizeof(WCHAR);
775     for (arg = argv; *arg; arg++)
776     {
777         int has_space,has_quote;
778         WCHAR* a;
779
780         /* Check for quotes and spaces in this argument */
781         has_space=has_quote=0;
782         a=*arg;
783         if( !*a ) has_space=1;
784         while (*a!='\0') {
785             if (*a==' ' || *a=='\t') {
786                 has_space=1;
787                 if (has_quote)
788                     break;
789             } else if (*a=='"') {
790                 has_quote=1;
791                 if (has_space)
792                     break;
793             }
794             a++;
795         }
796
797         /* Now transfer it to the command line */
798         if (has_space)
799             *p++='"';
800         if (has_quote) {
801             int bcount;
802
803             bcount=0;
804             a=*arg;
805             while (*a!='\0') {
806                 if (*a=='\\') {
807                     *p++=*a;
808                     bcount++;
809                 } else {
810                     if (*a=='"') {
811                         int i;
812
813                         /* Double all the '\\' preceding this '"', plus one */
814                         for (i=0;i<=bcount;i++)
815                             *p++='\\';
816                         *p++='"';
817                     } else {
818                         *p++=*a;
819                     }
820                     bcount=0;
821                 }
822                 a++;
823             }
824         } else {
825             WCHAR* x = *arg;
826             while ((*p=*x++)) p++;
827         }
828         if (has_space)
829             *p++='"';
830         *p++=' ';
831     }
832     if (p > rupp->CommandLine.Buffer)
833         p--;  /* remove last space */
834     *p = '\0';
835
836     return TRUE;
837 }
838
839
840 /***********************************************************************
841  *           init_current_directory
842  *
843  * Initialize the current directory from the Unix cwd or the parent info.
844  */
845 static void init_current_directory( CURDIR *cur_dir )
846 {
847     UNICODE_STRING dir_str;
848     const char *pwd;
849     char *cwd;
850     int size;
851
852     /* if we received a cur dir from the parent, try this first */
853
854     if (cur_dir->DosPath.Length)
855     {
856         if (RtlSetCurrentDirectory_U( &cur_dir->DosPath ) == STATUS_SUCCESS) goto done;
857     }
858
859     /* now try to get it from the Unix cwd */
860
861     for (size = 256; ; size *= 2)
862     {
863         if (!(cwd = HeapAlloc( GetProcessHeap(), 0, size ))) break;
864         if (getcwd( cwd, size )) break;
865         HeapFree( GetProcessHeap(), 0, cwd );
866         if (errno == ERANGE) continue;
867         cwd = NULL;
868         break;
869     }
870
871     /* try to use PWD if it is valid, so that we don't resolve symlinks */
872
873     pwd = getenv( "PWD" );
874     if (cwd)
875     {
876         struct stat st1, st2;
877
878         if (!pwd || stat( pwd, &st1 ) == -1 ||
879             (!stat( cwd, &st2 ) && (st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino)))
880             pwd = cwd;
881     }
882
883     if (pwd)
884     {
885         ANSI_STRING unix_name;
886         UNICODE_STRING nt_name;
887         RtlInitAnsiString( &unix_name, pwd );
888         if (!wine_unix_to_nt_file_name( &unix_name, &nt_name ))
889         {
890             UNICODE_STRING dos_path;
891             /* skip the \??\ prefix, nt_name is 0 terminated */
892             RtlInitUnicodeString( &dos_path, nt_name.Buffer + 4 );
893             RtlSetCurrentDirectory_U( &dos_path );
894             RtlFreeUnicodeString( &nt_name );
895         }
896     }
897
898     if (!cur_dir->DosPath.Length)  /* still not initialized */
899     {
900         MESSAGE("Warning: could not find DOS drive for current working directory '%s', "
901                 "starting in the Windows directory.\n", cwd ? cwd : "" );
902         RtlInitUnicodeString( &dir_str, DIR_Windows );
903         RtlSetCurrentDirectory_U( &dir_str );
904     }
905     HeapFree( GetProcessHeap(), 0, cwd );
906
907 done:
908     TRACE( "starting in %s %p\n", debugstr_w( cur_dir->DosPath.Buffer ), cur_dir->Handle );
909 }
910
911
912 /***********************************************************************
913  *           init_windows_dirs
914  *
915  * Initialize the windows and system directories from the environment.
916  */
917 static void init_windows_dirs(void)
918 {
919     extern void CDECL __wine_init_windows_dir( const WCHAR *windir, const WCHAR *sysdir );
920
921     static const WCHAR windirW[] = {'w','i','n','d','i','r',0};
922     static const WCHAR winsysdirW[] = {'w','i','n','s','y','s','d','i','r',0};
923     static const WCHAR default_windirW[] = {'C',':','\\','w','i','n','d','o','w','s',0};
924     static const WCHAR default_sysdirW[] = {'\\','s','y','s','t','e','m','3','2',0};
925     static const WCHAR default_syswow64W[] = {'\\','s','y','s','w','o','w','6','4',0};
926
927     DWORD len;
928     WCHAR *buffer;
929
930     if ((len = GetEnvironmentVariableW( windirW, NULL, 0 )))
931     {
932         buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
933         GetEnvironmentVariableW( windirW, buffer, len );
934         DIR_Windows = buffer;
935     }
936     else DIR_Windows = default_windirW;
937
938     if ((len = GetEnvironmentVariableW( winsysdirW, NULL, 0 )))
939     {
940         buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
941         GetEnvironmentVariableW( winsysdirW, buffer, len );
942         DIR_System = buffer;
943     }
944     else
945     {
946         len = strlenW( DIR_Windows );
947         buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) + sizeof(default_sysdirW) );
948         memcpy( buffer, DIR_Windows, len * sizeof(WCHAR) );
949         memcpy( buffer + len, default_sysdirW, sizeof(default_sysdirW) );
950         DIR_System = buffer;
951     }
952
953     if (!CreateDirectoryW( DIR_Windows, NULL ) && GetLastError() != ERROR_ALREADY_EXISTS)
954         ERR( "directory %s could not be created, error %u\n",
955              debugstr_w(DIR_Windows), GetLastError() );
956     if (!CreateDirectoryW( DIR_System, NULL ) && GetLastError() != ERROR_ALREADY_EXISTS)
957         ERR( "directory %s could not be created, error %u\n",
958              debugstr_w(DIR_System), GetLastError() );
959
960     if (is_win64 || is_wow64)   /* SysWow64 is always defined on 64-bit */
961     {
962         len = strlenW( DIR_Windows );
963         buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) + sizeof(default_syswow64W) );
964         memcpy( buffer, DIR_Windows, len * sizeof(WCHAR) );
965         memcpy( buffer + len, default_syswow64W, sizeof(default_syswow64W) );
966         DIR_SysWow64 = buffer;
967         if (!CreateDirectoryW( DIR_SysWow64, NULL ) && GetLastError() != ERROR_ALREADY_EXISTS)
968             ERR( "directory %s could not be created, error %u\n",
969                  debugstr_w(DIR_SysWow64), GetLastError() );
970     }
971
972     TRACE_(file)( "WindowsDir = %s\n", debugstr_w(DIR_Windows) );
973     TRACE_(file)( "SystemDir  = %s\n", debugstr_w(DIR_System) );
974
975     /* set the directories in ntdll too */
976     __wine_init_windows_dir( DIR_Windows, DIR_System );
977 }
978
979
980 /***********************************************************************
981  *           start_wineboot
982  *
983  * Start the wineboot process if necessary. Return the handles to wait on.
984  */
985 static void start_wineboot( HANDLE handles[2] )
986 {
987     static const WCHAR wineboot_eventW[] = {'_','_','w','i','n','e','b','o','o','t','_','e','v','e','n','t',0};
988
989     handles[1] = 0;
990     if (!(handles[0] = CreateEventW( NULL, TRUE, FALSE, wineboot_eventW )))
991     {
992         ERR( "failed to create wineboot event, expect trouble\n" );
993         return;
994     }
995     if (GetLastError() != ERROR_ALREADY_EXISTS)  /* we created it */
996     {
997         static const WCHAR wineboot[] = {'\\','w','i','n','e','b','o','o','t','.','e','x','e',0};
998         static const WCHAR args[] = {' ','-','-','i','n','i','t',0};
999         STARTUPINFOW si;
1000         PROCESS_INFORMATION pi;
1001         void *redir;
1002         WCHAR app[MAX_PATH];
1003         WCHAR cmdline[MAX_PATH + (sizeof(wineboot) + sizeof(args)) / sizeof(WCHAR)];
1004
1005         memset( &si, 0, sizeof(si) );
1006         si.cb = sizeof(si);
1007         si.dwFlags = STARTF_USESTDHANDLES;
1008         si.hStdInput  = 0;
1009         si.hStdOutput = 0;
1010         si.hStdError  = GetStdHandle( STD_ERROR_HANDLE );
1011
1012         GetSystemDirectoryW( app, MAX_PATH - sizeof(wineboot)/sizeof(WCHAR) );
1013         lstrcatW( app, wineboot );
1014
1015         Wow64DisableWow64FsRedirection( &redir );
1016         strcpyW( cmdline, app );
1017         strcatW( cmdline, args );
1018         if (CreateProcessW( app, cmdline, NULL, NULL, FALSE, DETACHED_PROCESS, NULL, NULL, &si, &pi ))
1019         {
1020             TRACE( "started wineboot pid %04x tid %04x\n", pi.dwProcessId, pi.dwThreadId );
1021             CloseHandle( pi.hThread );
1022             handles[1] = pi.hProcess;
1023         }
1024         else
1025         {
1026             ERR( "failed to start wineboot, err %u\n", GetLastError() );
1027             CloseHandle( handles[0] );
1028             handles[0] = 0;
1029         }
1030         Wow64RevertWow64FsRedirection( redir );
1031     }
1032 }
1033
1034
1035 #ifdef __i386__
1036 extern DWORD call_process_entry( PEB *peb, LPTHREAD_START_ROUTINE entry );
1037 __ASM_GLOBAL_FUNC( call_process_entry,
1038                     "pushl %ebp\n\t"
1039                     __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
1040                     __ASM_CFI(".cfi_rel_offset %ebp,0\n\t")
1041                     "movl %esp,%ebp\n\t"
1042                     __ASM_CFI(".cfi_def_cfa_register %ebp\n\t")
1043                     "subl $12,%esp\n\t"  /* deliberately mis-align the stack by 8, Doom 3 needs this */
1044                     "pushl 8(%ebp)\n\t"
1045                     "call *12(%ebp)\n\t"
1046                     "leave\n\t"
1047                     __ASM_CFI(".cfi_def_cfa %esp,4\n\t")
1048                     __ASM_CFI(".cfi_same_value %ebp\n\t")
1049                     "ret" )
1050 #else
1051 static inline DWORD call_process_entry( PEB *peb, LPTHREAD_START_ROUTINE entry )
1052 {
1053     return entry( peb );
1054 }
1055 #endif
1056
1057 /***********************************************************************
1058  *           start_process
1059  *
1060  * Startup routine of a new process. Runs on the new process stack.
1061  */
1062 static DWORD WINAPI start_process( PEB *peb )
1063 {
1064     IMAGE_NT_HEADERS *nt;
1065     LPTHREAD_START_ROUTINE entry;
1066
1067     nt = RtlImageNtHeader( peb->ImageBaseAddress );
1068     entry = (LPTHREAD_START_ROUTINE)((char *)peb->ImageBaseAddress +
1069                                      nt->OptionalHeader.AddressOfEntryPoint);
1070
1071     if (!nt->OptionalHeader.AddressOfEntryPoint)
1072     {
1073         ERR( "%s doesn't have an entry point, it cannot be executed\n",
1074              debugstr_w(peb->ProcessParameters->ImagePathName.Buffer) );
1075         ExitThread( 1 );
1076     }
1077
1078     if (TRACE_ON(relay))
1079         DPRINTF( "%04x:Starting process %s (entryproc=%p)\n", GetCurrentThreadId(),
1080                  debugstr_w(peb->ProcessParameters->ImagePathName.Buffer), entry );
1081
1082     SetLastError( 0 );  /* clear error code */
1083     if (peb->BeingDebugged) DbgBreakPoint();
1084     return call_process_entry( peb, entry );
1085 }
1086
1087
1088 /***********************************************************************
1089  *           set_process_name
1090  *
1091  * Change the process name in the ps output.
1092  */
1093 static void set_process_name( int argc, char *argv[] )
1094 {
1095 #ifdef HAVE_SETPROCTITLE
1096     setproctitle("-%s", argv[1]);
1097 #endif
1098
1099 #ifdef HAVE_PRCTL
1100     int i, offset;
1101     char *p, *prctl_name = argv[1];
1102     char *end = argv[argc-1] + strlen(argv[argc-1]) + 1;
1103
1104 #ifndef PR_SET_NAME
1105 # define PR_SET_NAME 15
1106 #endif
1107
1108     if ((p = strrchr( prctl_name, '\\' ))) prctl_name = p + 1;
1109     if ((p = strrchr( prctl_name, '/' ))) prctl_name = p + 1;
1110
1111     if (prctl( PR_SET_NAME, prctl_name ) != -1)
1112     {
1113         offset = argv[1] - argv[0];
1114         memmove( argv[1] - offset, argv[1], end - argv[1] );
1115         memset( end - offset, 0, offset );
1116         for (i = 1; i < argc; i++) argv[i-1] = argv[i] - offset;
1117         argv[i-1] = NULL;
1118     }
1119     else
1120 #endif  /* HAVE_PRCTL */
1121     {
1122         /* remove argv[0] */
1123         memmove( argv, argv + 1, argc * sizeof(argv[0]) );
1124     }
1125 }
1126
1127
1128 /***********************************************************************
1129  *           __wine_kernel_init
1130  *
1131  * Wine initialisation: load and start the main exe file.
1132  */
1133 void CDECL __wine_kernel_init(void)
1134 {
1135     static const WCHAR kernel32W[] = {'k','e','r','n','e','l','3','2',0};
1136     static const WCHAR dotW[] = {'.',0};
1137
1138     WCHAR *p, main_exe_name[MAX_PATH+1];
1139     PEB *peb = NtCurrentTeb()->Peb;
1140     RTL_USER_PROCESS_PARAMETERS *params = peb->ProcessParameters;
1141     HANDLE boot_events[2];
1142     BOOL got_environment = TRUE;
1143
1144     /* Initialize everything */
1145
1146     setbuf(stdout,NULL);
1147     setbuf(stderr,NULL);
1148     kernel32_handle = GetModuleHandleW(kernel32W);
1149     IsWow64Process( GetCurrentProcess(), &is_wow64 );
1150
1151     LOCALE_Init();
1152
1153     if (!params->Environment)
1154     {
1155         /* Copy the parent environment */
1156         if (!build_initial_environment()) exit(1);
1157
1158         /* convert old configuration to new format */
1159         convert_old_config();
1160
1161         got_environment = set_registry_environment( FALSE );
1162         set_additional_environment();
1163     }
1164
1165     init_windows_dirs();
1166     init_current_directory( &params->CurrentDirectory );
1167
1168     set_process_name( __wine_main_argc, __wine_main_argv );
1169     set_library_wargv( __wine_main_argv );
1170     boot_events[0] = boot_events[1] = 0;
1171
1172     if (peb->ProcessParameters->ImagePathName.Buffer)
1173     {
1174         strcpyW( main_exe_name, peb->ProcessParameters->ImagePathName.Buffer );
1175     }
1176     else
1177     {
1178         struct binary_info binary_info;
1179
1180         if (!SearchPathW( NULL, __wine_main_wargv[0], exeW, MAX_PATH, main_exe_name, NULL ) &&
1181             !get_builtin_path( __wine_main_wargv[0], exeW, main_exe_name, MAX_PATH, &binary_info ))
1182         {
1183             MESSAGE( "wine: cannot find '%s'\n", __wine_main_argv[0] );
1184             ExitProcess( GetLastError() );
1185         }
1186         update_library_argv0( main_exe_name );
1187         if (!build_command_line( __wine_main_wargv )) goto error;
1188         start_wineboot( boot_events );
1189     }
1190
1191     /* if there's no extension, append a dot to prevent LoadLibrary from appending .dll */
1192     p = strrchrW( main_exe_name, '.' );
1193     if (!p || strchrW( p, '/' ) || strchrW( p, '\\' )) strcatW( main_exe_name, dotW );
1194
1195     TRACE( "starting process name=%s argv[0]=%s\n",
1196            debugstr_w(main_exe_name), debugstr_w(__wine_main_wargv[0]) );
1197
1198     RtlInitUnicodeString( &NtCurrentTeb()->Peb->ProcessParameters->DllPath,
1199                           MODULE_get_dll_load_path(main_exe_name) );
1200
1201     if (boot_events[0])
1202     {
1203         DWORD timeout = 2 * 60 * 1000, count = 1;
1204
1205         if (boot_events[1]) count++;
1206         if (!got_environment) timeout = 5 * 60 * 1000;  /* initial prefix creation can take longer */
1207         if (WaitForMultipleObjects( count, boot_events, FALSE, timeout ) == WAIT_TIMEOUT)
1208             ERR( "boot event wait timed out\n" );
1209         CloseHandle( boot_events[0] );
1210         if (boot_events[1]) CloseHandle( boot_events[1] );
1211         /* reload environment now that wineboot has run */
1212         set_registry_environment( got_environment );
1213         set_additional_environment();
1214     }
1215     set_wow64_environment();
1216
1217     if (!(peb->ImageBaseAddress = LoadLibraryExW( main_exe_name, 0, DONT_RESOLVE_DLL_REFERENCES )))
1218     {
1219         DWORD_PTR args[1];
1220         WCHAR msgW[1024];
1221         char msg[1024];
1222         DWORD error = GetLastError();
1223
1224         /* if Win16/DOS format, or unavailable address, exec a new process with the proper setup */
1225         if (error == ERROR_BAD_EXE_FORMAT ||
1226             error == ERROR_INVALID_ADDRESS ||
1227             error == ERROR_NOT_ENOUGH_MEMORY)
1228         {
1229             if (!getenv("WINEPRELOADRESERVE")) exec_process( main_exe_name );
1230             /* if we get back here, it failed */
1231         }
1232         else if (error == ERROR_MOD_NOT_FOUND)
1233         {
1234             if ((p = strrchrW( main_exe_name, '\\' ))) p++;
1235             else p = main_exe_name;
1236             if (!strcmpiW( p, winevdmW ) && __wine_main_argc > 3)
1237             {
1238                 /* args 1 and 2 are --app-name full_path */
1239                 MESSAGE( "wine: could not run %s: 16-bit/DOS support missing\n",
1240                          debugstr_w(__wine_main_wargv[3]) );
1241                 ExitProcess( ERROR_BAD_EXE_FORMAT );
1242             }
1243             MESSAGE( "wine: cannot find %s\n", debugstr_w(main_exe_name) );
1244             ExitProcess( ERROR_FILE_NOT_FOUND );
1245         }
1246         args[0] = (DWORD_PTR)main_exe_name;
1247         FormatMessageW( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ARGUMENT_ARRAY,
1248                         NULL, error, 0, msgW, sizeof(msgW)/sizeof(WCHAR), (__ms_va_list *)args );
1249         WideCharToMultiByte( CP_UNIXCP, 0, msgW, -1, msg, sizeof(msg), NULL, NULL );
1250         MESSAGE( "wine: %s", msg );
1251         ExitProcess( error );
1252     }
1253
1254     if (!params->CurrentDirectory.Handle) chdir("/"); /* avoid locking removable devices */
1255
1256     LdrInitializeThunk( start_process, 0, 0, 0 );
1257
1258  error:
1259     ExitProcess( GetLastError() );
1260 }
1261
1262
1263 /***********************************************************************
1264  *           build_argv
1265  *
1266  * Build an argv array from a command-line.
1267  * 'reserved' is the number of args to reserve before the first one.
1268  */
1269 static char **build_argv( const WCHAR *cmdlineW, int reserved )
1270 {
1271     int argc;
1272     char** argv;
1273     char *arg,*s,*d,*cmdline;
1274     int in_quotes,bcount,len;
1275
1276     len = WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, NULL, 0, NULL, NULL );
1277     if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, len ))) return NULL;
1278     WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, cmdline, len, NULL, NULL );
1279
1280     argc=reserved+1;
1281     bcount=0;
1282     in_quotes=0;
1283     s=cmdline;
1284     while (1) {
1285         if (*s=='\0' || ((*s==' ' || *s=='\t') && !in_quotes)) {
1286             /* space */
1287             argc++;
1288             /* skip the remaining spaces */
1289             while (*s==' ' || *s=='\t') {
1290                 s++;
1291             }
1292             if (*s=='\0')
1293                 break;
1294             bcount=0;
1295             continue;
1296         } else if (*s=='\\') {
1297             /* '\', count them */
1298             bcount++;
1299         } else if ((*s=='"') && ((bcount & 1)==0)) {
1300             /* unescaped '"' */
1301             in_quotes=!in_quotes;
1302             bcount=0;
1303         } else {
1304             /* a regular character */
1305             bcount=0;
1306         }
1307         s++;
1308     }
1309     if (!(argv = HeapAlloc( GetProcessHeap(), 0, argc*sizeof(*argv) + len )))
1310     {
1311         HeapFree( GetProcessHeap(), 0, cmdline );
1312         return NULL;
1313     }
1314
1315     arg = d = s = (char *)(argv + argc);
1316     memcpy( d, cmdline, len );
1317     bcount=0;
1318     in_quotes=0;
1319     argc=reserved;
1320     while (*s) {
1321         if ((*s==' ' || *s=='\t') && !in_quotes) {
1322             /* Close the argument and copy it */
1323             *d=0;
1324             argv[argc++]=arg;
1325
1326             /* skip the remaining spaces */
1327             do {
1328                 s++;
1329             } while (*s==' ' || *s=='\t');
1330
1331             /* Start with a new argument */
1332             arg=d=s;
1333             bcount=0;
1334         } else if (*s=='\\') {
1335             /* '\\' */
1336             *d++=*s++;
1337             bcount++;
1338         } else if (*s=='"') {
1339             /* '"' */
1340             if ((bcount & 1)==0) {
1341                 /* Preceded by an even number of '\', this is half that
1342                  * number of '\', plus a '"' which we discard.
1343                  */
1344                 d-=bcount/2;
1345                 s++;
1346                 in_quotes=!in_quotes;
1347             } else {
1348                 /* Preceded by an odd number of '\', this is half that
1349                  * number of '\' followed by a '"'
1350                  */
1351                 d=d-bcount/2-1;
1352                 *d++='"';
1353                 s++;
1354             }
1355             bcount=0;
1356         } else {
1357             /* a regular character */
1358             *d++=*s++;
1359             bcount=0;
1360         }
1361     }
1362     if (*arg) {
1363         *d='\0';
1364         argv[argc++]=arg;
1365     }
1366     argv[argc]=NULL;
1367
1368     HeapFree( GetProcessHeap(), 0, cmdline );
1369     return argv;
1370 }
1371
1372
1373 /***********************************************************************
1374  *           build_envp
1375  *
1376  * Build the environment of a new child process.
1377  */
1378 static char **build_envp( const WCHAR *envW )
1379 {
1380     static const char * const unix_vars[] = { "PATH", "TEMP", "TMP", "HOME" };
1381
1382     const WCHAR *end;
1383     char **envp;
1384     char *env, *p;
1385     int count = 1, length;
1386     unsigned int i;
1387
1388     for (end = envW; *end; count++) end += strlenW(end) + 1;
1389     end++;
1390     length = WideCharToMultiByte( CP_UNIXCP, 0, envW, end - envW, NULL, 0, NULL, NULL );
1391     if (!(env = HeapAlloc( GetProcessHeap(), 0, length ))) return NULL;
1392     WideCharToMultiByte( CP_UNIXCP, 0, envW, end - envW, env, length, NULL, NULL );
1393
1394     for (p = env; *p; p += strlen(p) + 1)
1395         if (is_special_env_var( p )) length += 4; /* prefix it with "WINE" */
1396
1397     for (i = 0; i < sizeof(unix_vars)/sizeof(unix_vars[0]); i++)
1398     {
1399         if (!(p = getenv(unix_vars[i]))) continue;
1400         length += strlen(unix_vars[i]) + strlen(p) + 2;
1401         count++;
1402     }
1403
1404     if ((envp = HeapAlloc( GetProcessHeap(), 0, count * sizeof(*envp) + length )))
1405     {
1406         char **envptr = envp;
1407         char *dst = (char *)(envp + count);
1408
1409         /* some variables must not be modified, so we get them directly from the unix env */
1410         for (i = 0; i < sizeof(unix_vars)/sizeof(unix_vars[0]); i++)
1411         {
1412             if (!(p = getenv(unix_vars[i]))) continue;
1413             *envptr++ = strcpy( dst, unix_vars[i] );
1414             strcat( dst, "=" );
1415             strcat( dst, p );
1416             dst += strlen(dst) + 1;
1417         }
1418
1419         /* now put the Windows environment strings */
1420         for (p = env; *p; p += strlen(p) + 1)
1421         {
1422             if (*p == '=') continue;  /* skip drive curdirs, this crashes some unix apps */
1423             if (!strncmp( p, "WINEPRELOADRESERVE=", sizeof("WINEPRELOADRESERVE=")-1 )) continue;
1424             if (!strncmp( p, "WINELOADERNOEXEC=", sizeof("WINELOADERNOEXEC=")-1 )) continue;
1425             if (!strncmp( p, "WINESERVERSOCKET=", sizeof("WINESERVERSOCKET=")-1 )) continue;
1426             if (is_special_env_var( p ))  /* prefix it with "WINE" */
1427             {
1428                 *envptr++ = strcpy( dst, "WINE" );
1429                 strcat( dst, p );
1430             }
1431             else
1432             {
1433                 *envptr++ = strcpy( dst, p );
1434             }
1435             dst += strlen(dst) + 1;
1436         }
1437         *envptr = 0;
1438     }
1439     HeapFree( GetProcessHeap(), 0, env );
1440     return envp;
1441 }
1442
1443
1444 /***********************************************************************
1445  *           fork_and_exec
1446  *
1447  * Fork and exec a new Unix binary, checking for errors.
1448  */
1449 static int fork_and_exec( const char *filename, const WCHAR *cmdline, const WCHAR *env,
1450                           const char *newdir, DWORD flags, STARTUPINFOW *startup )
1451 {
1452     int fd[2], stdin_fd = -1, stdout_fd = -1, stderr_fd = -1;
1453     int pid, err;
1454     char **argv, **envp;
1455
1456     if (!env) env = GetEnvironmentStringsW();
1457
1458 #ifdef HAVE_PIPE2
1459     if (pipe2( fd, O_CLOEXEC ) == -1)
1460 #endif
1461     {
1462         if (pipe(fd) == -1)
1463         {
1464             SetLastError( ERROR_TOO_MANY_OPEN_FILES );
1465             return -1;
1466         }
1467         fcntl( fd[0], F_SETFD, FD_CLOEXEC );
1468         fcntl( fd[1], F_SETFD, FD_CLOEXEC );
1469     }
1470
1471     if (!(flags & (CREATE_NEW_PROCESS_GROUP | CREATE_NEW_CONSOLE | DETACHED_PROCESS)))
1472     {
1473         HANDLE hstdin, hstdout, hstderr;
1474
1475         if (startup->dwFlags & STARTF_USESTDHANDLES)
1476         {
1477             hstdin = startup->hStdInput;
1478             hstdout = startup->hStdOutput;
1479             hstderr = startup->hStdError;
1480         }
1481         else
1482         {
1483             hstdin = GetStdHandle(STD_INPUT_HANDLE);
1484             hstdout = GetStdHandle(STD_OUTPUT_HANDLE);
1485             hstderr = GetStdHandle(STD_ERROR_HANDLE);
1486         }
1487
1488         if (is_console_handle( hstdin ))
1489             hstdin = wine_server_ptr_handle( console_handle_unmap( hstdin ));
1490         if (is_console_handle( hstdout ))
1491             hstdout = wine_server_ptr_handle( console_handle_unmap( hstdout ));
1492         if (is_console_handle( hstderr ))
1493             hstderr = wine_server_ptr_handle( console_handle_unmap( hstderr ));
1494         wine_server_handle_to_fd( hstdin, FILE_READ_DATA, &stdin_fd, NULL );
1495         wine_server_handle_to_fd( hstdout, FILE_WRITE_DATA, &stdout_fd, NULL );
1496         wine_server_handle_to_fd( hstderr, FILE_WRITE_DATA, &stderr_fd, NULL );
1497     }
1498
1499     argv = build_argv( cmdline, 0 );
1500     envp = build_envp( env );
1501
1502     if (!(pid = fork()))  /* child */
1503     {
1504         if (!(pid = fork()))  /* grandchild */
1505         {
1506             close( fd[0] );
1507
1508             if (flags & (CREATE_NEW_PROCESS_GROUP | CREATE_NEW_CONSOLE | DETACHED_PROCESS))
1509             {
1510                 int nullfd = open( "/dev/null", O_RDWR );
1511                 setsid();
1512                 /* close stdin and stdout */
1513                 if (nullfd != -1)
1514                 {
1515                     dup2( nullfd, 0 );
1516                     dup2( nullfd, 1 );
1517                     close( nullfd );
1518                 }
1519             }
1520             else
1521             {
1522                 if (stdin_fd != -1)
1523                 {
1524                     dup2( stdin_fd, 0 );
1525                     close( stdin_fd );
1526                 }
1527                 if (stdout_fd != -1)
1528                 {
1529                     dup2( stdout_fd, 1 );
1530                     close( stdout_fd );
1531                 }
1532                 if (stderr_fd != -1)
1533                 {
1534                     dup2( stderr_fd, 2 );
1535                     close( stderr_fd );
1536                 }
1537             }
1538
1539             /* Reset signals that we previously set to SIG_IGN */
1540             signal( SIGPIPE, SIG_DFL );
1541
1542             if (newdir) chdir(newdir);
1543
1544             if (argv && envp) execve( filename, argv, envp );
1545         }
1546
1547         if (pid <= 0)  /* grandchild if exec failed or child if fork failed */
1548         {
1549             err = errno;
1550             write( fd[1], &err, sizeof(err) );
1551             _exit(1);
1552         }
1553
1554         _exit(0); /* child if fork succeeded */
1555     }
1556     HeapFree( GetProcessHeap(), 0, argv );
1557     HeapFree( GetProcessHeap(), 0, envp );
1558     if (stdin_fd != -1) close( stdin_fd );
1559     if (stdout_fd != -1) close( stdout_fd );
1560     if (stderr_fd != -1) close( stderr_fd );
1561     close( fd[1] );
1562     if (pid != -1)
1563     {
1564         /* reap child */
1565         do {
1566             err = waitpid(pid, NULL, 0);
1567         } while (err < 0 && errno == EINTR);
1568
1569         if (read( fd[0], &err, sizeof(err) ) > 0)  /* exec or second fork failed */
1570         {
1571             errno = err;
1572             pid = -1;
1573         }
1574     }
1575     if (pid == -1) FILE_SetDosError();
1576     close( fd[0] );
1577     return pid;
1578 }
1579
1580
1581 static inline DWORD append_string( void **ptr, const WCHAR *str )
1582 {
1583     DWORD len = strlenW( str );
1584     memcpy( *ptr, str, len * sizeof(WCHAR) );
1585     *ptr = (WCHAR *)*ptr + len;
1586     return len * sizeof(WCHAR);
1587 }
1588
1589 /***********************************************************************
1590  *           create_startup_info
1591  */
1592 static startup_info_t *create_startup_info( LPCWSTR filename, LPCWSTR cmdline,
1593                                             LPCWSTR cur_dir, LPWSTR env, DWORD flags,
1594                                             const STARTUPINFOW *startup, DWORD *info_size )
1595 {
1596     const RTL_USER_PROCESS_PARAMETERS *cur_params;
1597     const WCHAR *title;
1598     startup_info_t *info;
1599     DWORD size;
1600     void *ptr;
1601     UNICODE_STRING newdir;
1602     WCHAR imagepath[MAX_PATH];
1603     HANDLE hstdin, hstdout, hstderr;
1604
1605     if(!GetLongPathNameW( filename, imagepath, MAX_PATH ))
1606         lstrcpynW( imagepath, filename, MAX_PATH );
1607     if(!GetFullPathNameW( imagepath, MAX_PATH, imagepath, NULL ))
1608         lstrcpynW( imagepath, filename, MAX_PATH );
1609
1610     cur_params = NtCurrentTeb()->Peb->ProcessParameters;
1611
1612     newdir.Buffer = NULL;
1613     if (cur_dir)
1614     {
1615         if (RtlDosPathNameToNtPathName_U( cur_dir, &newdir, NULL, NULL ))
1616             cur_dir = newdir.Buffer + 4;  /* skip \??\ prefix */
1617         else
1618             cur_dir = NULL;
1619     }
1620     if (!cur_dir)
1621     {
1622         if (NtCurrentTeb()->Tib.SubSystemTib)  /* FIXME: hack */
1623             cur_dir = ((WIN16_SUBSYSTEM_TIB *)NtCurrentTeb()->Tib.SubSystemTib)->curdir.DosPath.Buffer;
1624         else
1625             cur_dir = cur_params->CurrentDirectory.DosPath.Buffer;
1626     }
1627     title = startup->lpTitle ? startup->lpTitle : imagepath;
1628
1629     size = sizeof(*info);
1630     size += strlenW( cur_dir ) * sizeof(WCHAR);
1631     size += cur_params->DllPath.Length;
1632     size += strlenW( imagepath ) * sizeof(WCHAR);
1633     size += strlenW( cmdline ) * sizeof(WCHAR);
1634     size += strlenW( title ) * sizeof(WCHAR);
1635     if (startup->lpDesktop) size += strlenW( startup->lpDesktop ) * sizeof(WCHAR);
1636     /* FIXME: shellinfo */
1637     if (startup->lpReserved2 && startup->cbReserved2) size += startup->cbReserved2;
1638     size = (size + 1) & ~1;
1639     *info_size = size;
1640
1641     if (!(info = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size ))) goto done;
1642
1643     info->console_flags = cur_params->ConsoleFlags;
1644     if (flags & CREATE_NEW_PROCESS_GROUP) info->console_flags = 1;
1645     if (flags & CREATE_NEW_CONSOLE) info->console = wine_server_obj_handle(KERNEL32_CONSOLE_ALLOC);
1646
1647     if (startup->dwFlags & STARTF_USESTDHANDLES)
1648     {
1649         hstdin  = startup->hStdInput;
1650         hstdout = startup->hStdOutput;
1651         hstderr = startup->hStdError;
1652     }
1653     else
1654     {
1655         hstdin  = GetStdHandle( STD_INPUT_HANDLE );
1656         hstdout = GetStdHandle( STD_OUTPUT_HANDLE );
1657         hstderr = GetStdHandle( STD_ERROR_HANDLE );
1658     }
1659     info->hstdin  = wine_server_obj_handle( hstdin );
1660     info->hstdout = wine_server_obj_handle( hstdout );
1661     info->hstderr = wine_server_obj_handle( hstderr );
1662     if ((flags & (CREATE_NEW_CONSOLE | DETACHED_PROCESS)) != 0)
1663     {
1664         /* this is temporary (for console handles). We have no way to control that the handle is invalid in child process otherwise */
1665         if (is_console_handle(hstdin))  info->hstdin  = wine_server_obj_handle( INVALID_HANDLE_VALUE );
1666         if (is_console_handle(hstdout)) info->hstdout = wine_server_obj_handle( INVALID_HANDLE_VALUE );
1667         if (is_console_handle(hstderr)) info->hstderr = wine_server_obj_handle( INVALID_HANDLE_VALUE );
1668     }
1669     else
1670     {
1671         if (is_console_handle(hstdin))  info->hstdin  = console_handle_unmap(hstdin);
1672         if (is_console_handle(hstdout)) info->hstdout = console_handle_unmap(hstdout);
1673         if (is_console_handle(hstderr)) info->hstderr = console_handle_unmap(hstderr);
1674     }
1675
1676     info->x         = startup->dwX;
1677     info->y         = startup->dwY;
1678     info->xsize     = startup->dwXSize;
1679     info->ysize     = startup->dwYSize;
1680     info->xchars    = startup->dwXCountChars;
1681     info->ychars    = startup->dwYCountChars;
1682     info->attribute = startup->dwFillAttribute;
1683     info->flags     = startup->dwFlags;
1684     info->show      = startup->wShowWindow;
1685
1686     ptr = info + 1;
1687     info->curdir_len = append_string( &ptr, cur_dir );
1688     info->dllpath_len = cur_params->DllPath.Length;
1689     memcpy( ptr, cur_params->DllPath.Buffer, cur_params->DllPath.Length );
1690     ptr = (char *)ptr + cur_params->DllPath.Length;
1691     info->imagepath_len = append_string( &ptr, imagepath );
1692     info->cmdline_len = append_string( &ptr, cmdline );
1693     info->title_len = append_string( &ptr, title );
1694     if (startup->lpDesktop) info->desktop_len = append_string( &ptr, startup->lpDesktop );
1695     if (startup->lpReserved2 && startup->cbReserved2)
1696     {
1697         info->runtime_len = startup->cbReserved2;
1698         memcpy( ptr, startup->lpReserved2, startup->cbReserved2 );
1699     }
1700
1701 done:
1702     RtlFreeUnicodeString( &newdir );
1703     return info;
1704 }
1705
1706 /***********************************************************************
1707  *           get_alternate_loader
1708  *
1709  * Get the name of the alternate (32 or 64 bit) Wine loader.
1710  */
1711 static const char *get_alternate_loader( char **ret_env )
1712 {
1713     char *env;
1714     const char *loader = NULL;
1715     const char *loader_env = getenv( "WINELOADER" );
1716
1717     *ret_env = NULL;
1718
1719     if (wine_get_build_dir()) loader = is_win64 ? "loader/wine" : "server/../loader/wine64";
1720
1721     if (loader_env)
1722     {
1723         int len = strlen( loader_env );
1724         if (!is_win64)
1725         {
1726             if (!(env = HeapAlloc( GetProcessHeap(), 0, sizeof("WINELOADER=") + len + 2 ))) return NULL;
1727             strcpy( env, "WINELOADER=" );
1728             strcat( env, loader_env );
1729             strcat( env, "64" );
1730         }
1731         else
1732         {
1733             if (!(env = HeapAlloc( GetProcessHeap(), 0, sizeof("WINELOADER=") + len ))) return NULL;
1734             strcpy( env, "WINELOADER=" );
1735             strcat( env, loader_env );
1736             len += sizeof("WINELOADER=") - 1;
1737             if (!strcmp( env + len - 2, "64" )) env[len - 2] = 0;
1738         }
1739         if (!loader)
1740         {
1741             if ((loader = strrchr( env, '/' ))) loader++;
1742             else loader = env;
1743         }
1744         *ret_env = env;
1745     }
1746     if (!loader) loader = is_win64 ? "wine" : "wine64";
1747     return loader;
1748 }
1749
1750 #ifdef __APPLE__
1751 /***********************************************************************
1752  *           terminate_main_thread
1753  *
1754  * On some versions of Mac OS X, the execve system call fails with
1755  * ENOTSUP if the process has multiple threads.  Wine is always multi-
1756  * threaded on Mac OS X because it specifically reserves the main thread
1757  * for use by the system frameworks (see apple_main_thread() in
1758  * libs/wine/loader.c).  So, when we need to exec without first forking,
1759  * we need to terminate the main thread first.  We do this by installing
1760  * a custom run loop source onto the main run loop and signaling it.
1761  * The source's "perform" callback is pthread_exit and it will be
1762  * executed on the main thread, terminating it.
1763  *
1764  * Returns TRUE if there's still hope the main thread has terminated or
1765  * will soon.  Return FALSE if we've given up.
1766  */
1767 static BOOL terminate_main_thread(void)
1768 {
1769     static int delayms;
1770
1771     if (!delayms)
1772     {
1773         CFRunLoopSourceContext source_context = { 0 };
1774         CFRunLoopSourceRef source;
1775
1776         source_context.perform = pthread_exit;
1777         if (!(source = CFRunLoopSourceCreate( NULL, 0, &source_context )))
1778             return FALSE;
1779
1780         CFRunLoopAddSource( CFRunLoopGetMain(), source, kCFRunLoopCommonModes );
1781         CFRunLoopSourceSignal( source );
1782         CFRunLoopWakeUp( CFRunLoopGetMain() );
1783         CFRelease( source );
1784
1785         delayms = 20;
1786     }
1787
1788     if (delayms > 1000)
1789         return FALSE;
1790
1791     usleep(delayms * 1000);
1792     delayms *= 2;
1793
1794     return TRUE;
1795 }
1796 #endif
1797
1798 /***********************************************************************
1799  *           exec_loader
1800  */
1801 static pid_t exec_loader( LPCWSTR cmd_line, unsigned int flags, int socketfd,
1802                           int stdin_fd, int stdout_fd, const char *unixdir, char *winedebug,
1803                           const struct binary_info *binary_info, int exec_only )
1804 {
1805     pid_t pid;
1806     char *wineloader = NULL;
1807     const char *loader = NULL;
1808     char **argv;
1809
1810     argv = build_argv( cmd_line, 1 );
1811
1812     if (!is_win64 ^ !(binary_info->flags & BINARY_FLAG_64BIT))
1813         loader = get_alternate_loader( &wineloader );
1814
1815     if (exec_only || !(pid = fork()))  /* child */
1816     {
1817         if (exec_only || !(pid = fork()))  /* grandchild */
1818         {
1819             char preloader_reserve[64], socket_env[64];
1820
1821             if (flags & (CREATE_NEW_PROCESS_GROUP | CREATE_NEW_CONSOLE | DETACHED_PROCESS))
1822             {
1823                 int fd = open( "/dev/null", O_RDWR );
1824                 setsid();
1825                 /* close stdin and stdout */
1826                 if (fd != -1)
1827                 {
1828                     dup2( fd, 0 );
1829                     dup2( fd, 1 );
1830                     close( fd );
1831                 }
1832             }
1833             else
1834             {
1835                 if (stdin_fd != -1) dup2( stdin_fd, 0 );
1836                 if (stdout_fd != -1) dup2( stdout_fd, 1 );
1837             }
1838
1839             if (stdin_fd != -1) close( stdin_fd );
1840             if (stdout_fd != -1) close( stdout_fd );
1841
1842             /* Reset signals that we previously set to SIG_IGN */
1843             signal( SIGPIPE, SIG_DFL );
1844
1845             sprintf( socket_env, "WINESERVERSOCKET=%u", socketfd );
1846             sprintf( preloader_reserve, "WINEPRELOADRESERVE=%lx-%lx",
1847                      (unsigned long)binary_info->res_start, (unsigned long)binary_info->res_end );
1848
1849             putenv( preloader_reserve );
1850             putenv( socket_env );
1851             if (winedebug) putenv( winedebug );
1852             if (wineloader) putenv( wineloader );
1853             if (unixdir) chdir(unixdir);
1854
1855             if (argv)
1856             {
1857                 do
1858                 {
1859                     wine_exec_wine_binary( loader, argv, getenv("WINELOADER") );
1860                 }
1861 #ifdef __APPLE__
1862                 while (errno == ENOTSUP && exec_only && terminate_main_thread());
1863 #else
1864                 while (0);
1865 #endif
1866             }
1867             _exit(1);
1868         }
1869
1870         _exit(pid == -1);
1871     }
1872
1873     if (pid != -1)
1874     {
1875         /* reap child */
1876         pid_t wret;
1877         do {
1878             wret = waitpid(pid, NULL, 0);
1879         } while (wret < 0 && errno == EINTR);
1880     }
1881
1882     HeapFree( GetProcessHeap(), 0, wineloader );
1883     HeapFree( GetProcessHeap(), 0, argv );
1884     return pid;
1885 }
1886
1887 /***********************************************************************
1888  *           create_process
1889  *
1890  * Create a new process. If hFile is a valid handle we have an exe
1891  * file, otherwise it is a Winelib app.
1892  */
1893 static BOOL create_process( HANDLE hFile, LPCWSTR filename, LPWSTR cmd_line, LPWSTR env,
1894                             LPCWSTR cur_dir, LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1895                             BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1896                             LPPROCESS_INFORMATION info, LPCSTR unixdir,
1897                             const struct binary_info *binary_info, int exec_only )
1898 {
1899     BOOL ret, success = FALSE;
1900     HANDLE process_info;
1901     WCHAR *env_end;
1902     char *winedebug = NULL;
1903     startup_info_t *startup_info;
1904     DWORD startup_info_size;
1905     int socketfd[2], stdin_fd = -1, stdout_fd = -1;
1906     pid_t pid;
1907     int err;
1908
1909     if (!is_win64 && !is_wow64 && (binary_info->flags & BINARY_FLAG_64BIT))
1910     {
1911         ERR( "starting 64-bit process %s not supported in 32-bit wineprefix\n", debugstr_w(filename) );
1912         SetLastError( ERROR_BAD_EXE_FORMAT );
1913         return FALSE;
1914     }
1915
1916     /* create the socket for the new process */
1917
1918     if (socketpair( PF_UNIX, SOCK_STREAM, 0, socketfd ) == -1)
1919     {
1920         SetLastError( ERROR_TOO_MANY_OPEN_FILES );
1921         return FALSE;
1922     }
1923 #ifdef SO_PASSCRED
1924     else
1925     {
1926         int enable = 1;
1927         setsockopt( socketfd[0], SOL_SOCKET, SO_PASSCRED, &enable, sizeof(enable) );
1928     }
1929 #endif
1930
1931     if (exec_only)  /* things are much simpler in this case */
1932     {
1933         wine_server_send_fd( socketfd[1] );
1934         close( socketfd[1] );
1935         SERVER_START_REQ( new_process )
1936         {
1937             req->create_flags   = flags;
1938             req->socket_fd      = socketfd[1];
1939             req->exe_file       = wine_server_obj_handle( hFile );
1940             ret = !wine_server_call_err( req );
1941         }
1942         SERVER_END_REQ;
1943
1944         if (ret) exec_loader( cmd_line, flags, socketfd[0], stdin_fd, stdout_fd, unixdir,
1945                               winedebug, binary_info, TRUE );
1946
1947         close( socketfd[0] );
1948         return FALSE;
1949     }
1950
1951     RtlAcquirePebLock();
1952
1953     if (!(startup_info = create_startup_info( filename, cmd_line, cur_dir, env, flags, startup,
1954                                               &startup_info_size )))
1955     {
1956         RtlReleasePebLock();
1957         close( socketfd[0] );
1958         close( socketfd[1] );
1959         return FALSE;
1960     }
1961     if (!env) env = NtCurrentTeb()->Peb->ProcessParameters->Environment;
1962     env_end = env;
1963     while (*env_end)
1964     {
1965         static const WCHAR WINEDEBUG[] = {'W','I','N','E','D','E','B','U','G','=',0};
1966         if (!winedebug && !strncmpW( env_end, WINEDEBUG, sizeof(WINEDEBUG)/sizeof(WCHAR) - 1 ))
1967         {
1968             DWORD len = WideCharToMultiByte( CP_UNIXCP, 0, env_end, -1, NULL, 0, NULL, NULL );
1969             if ((winedebug = HeapAlloc( GetProcessHeap(), 0, len )))
1970                 WideCharToMultiByte( CP_UNIXCP, 0, env_end, -1, winedebug, len, NULL, NULL );
1971         }
1972         env_end += strlenW(env_end) + 1;
1973     }
1974     env_end++;
1975
1976     wine_server_send_fd( socketfd[1] );
1977     close( socketfd[1] );
1978
1979     /* create the process on the server side */
1980
1981     SERVER_START_REQ( new_process )
1982     {
1983         req->inherit_all    = inherit;
1984         req->create_flags   = flags;
1985         req->socket_fd      = socketfd[1];
1986         req->exe_file       = wine_server_obj_handle( hFile );
1987         req->process_access = PROCESS_ALL_ACCESS;
1988         req->process_attr   = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle) ? OBJ_INHERIT : 0;
1989         req->thread_access  = THREAD_ALL_ACCESS;
1990         req->thread_attr    = (tsa && (tsa->nLength >= sizeof(*tsa)) && tsa->bInheritHandle) ? OBJ_INHERIT : 0;
1991         req->info_size      = startup_info_size;
1992
1993         wine_server_add_data( req, startup_info, startup_info_size );
1994         wine_server_add_data( req, env, (env_end - env) * sizeof(WCHAR) );
1995         if ((ret = !wine_server_call_err( req )))
1996         {
1997             info->dwProcessId = (DWORD)reply->pid;
1998             info->dwThreadId  = (DWORD)reply->tid;
1999             info->hProcess    = wine_server_ptr_handle( reply->phandle );
2000             info->hThread     = wine_server_ptr_handle( reply->thandle );
2001         }
2002         process_info = wine_server_ptr_handle( reply->info );
2003     }
2004     SERVER_END_REQ;
2005
2006     RtlReleasePebLock();
2007     if (!ret)
2008     {
2009         close( socketfd[0] );
2010         HeapFree( GetProcessHeap(), 0, startup_info );
2011         HeapFree( GetProcessHeap(), 0, winedebug );
2012         return FALSE;
2013     }
2014
2015     if (!(flags & (CREATE_NEW_CONSOLE | DETACHED_PROCESS)))
2016     {
2017         if (startup_info->hstdin)
2018             wine_server_handle_to_fd( wine_server_ptr_handle(startup_info->hstdin),
2019                                       FILE_READ_DATA, &stdin_fd, NULL );
2020         if (startup_info->hstdout)
2021             wine_server_handle_to_fd( wine_server_ptr_handle(startup_info->hstdout),
2022                                       FILE_WRITE_DATA, &stdout_fd, NULL );
2023     }
2024     HeapFree( GetProcessHeap(), 0, startup_info );
2025
2026     /* create the child process */
2027
2028     pid = exec_loader( cmd_line, flags, socketfd[0], stdin_fd, stdout_fd, unixdir,
2029                        winedebug, binary_info, FALSE );
2030
2031     if (stdin_fd != -1) close( stdin_fd );
2032     if (stdout_fd != -1) close( stdout_fd );
2033     close( socketfd[0] );
2034     HeapFree( GetProcessHeap(), 0, winedebug );
2035     if (pid == -1)
2036     {
2037         FILE_SetDosError();
2038         goto error;
2039     }
2040
2041     /* wait for the new process info to be ready */
2042
2043     WaitForSingleObject( process_info, INFINITE );
2044     SERVER_START_REQ( get_new_process_info )
2045     {
2046         req->info = wine_server_obj_handle( process_info );
2047         wine_server_call( req );
2048         success = reply->success;
2049         err = reply->exit_code;
2050     }
2051     SERVER_END_REQ;
2052
2053     if (!success)
2054     {
2055         SetLastError( err ? err : ERROR_INTERNAL_ERROR );
2056         goto error;
2057     }
2058     CloseHandle( process_info );
2059     return success;
2060
2061 error:
2062     CloseHandle( process_info );
2063     CloseHandle( info->hProcess );
2064     CloseHandle( info->hThread );
2065     info->hProcess = info->hThread = 0;
2066     info->dwProcessId = info->dwThreadId = 0;
2067     return FALSE;
2068 }
2069
2070
2071 /***********************************************************************
2072  *           create_vdm_process
2073  *
2074  * Create a new VDM process for a 16-bit or DOS application.
2075  */
2076 static BOOL create_vdm_process( LPCWSTR filename, LPWSTR cmd_line, LPWSTR env, LPCWSTR cur_dir,
2077                                 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
2078                                 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
2079                                 LPPROCESS_INFORMATION info, LPCSTR unixdir,
2080                                 const struct binary_info *binary_info, int exec_only )
2081 {
2082     static const WCHAR argsW[] = {'%','s',' ','-','-','a','p','p','-','n','a','m','e',' ','"','%','s','"',' ','%','s',0};
2083
2084     BOOL ret;
2085     LPWSTR new_cmd_line = HeapAlloc( GetProcessHeap(), 0,
2086                                      (strlenW(filename) + strlenW(cmd_line) + 30) * sizeof(WCHAR) );
2087
2088     if (!new_cmd_line)
2089     {
2090         SetLastError( ERROR_OUTOFMEMORY );
2091         return FALSE;
2092     }
2093     sprintfW( new_cmd_line, argsW, winevdmW, filename, cmd_line );
2094     ret = create_process( 0, winevdmW, new_cmd_line, env, cur_dir, psa, tsa, inherit,
2095                           flags, startup, info, unixdir, binary_info, exec_only );
2096     HeapFree( GetProcessHeap(), 0, new_cmd_line );
2097     return ret;
2098 }
2099
2100
2101 /***********************************************************************
2102  *           create_cmd_process
2103  *
2104  * Create a new cmd shell process for a .BAT file.
2105  */
2106 static BOOL create_cmd_process( LPCWSTR filename, LPWSTR cmd_line, LPVOID env, LPCWSTR cur_dir,
2107                                 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
2108                                 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
2109                                 LPPROCESS_INFORMATION info )
2110
2111 {
2112     static const WCHAR comspecW[] = {'C','O','M','S','P','E','C',0};
2113     static const WCHAR slashcW[] = {' ','/','c',' ',0};
2114     WCHAR comspec[MAX_PATH];
2115     WCHAR *newcmdline;
2116     BOOL ret;
2117
2118     if (!GetEnvironmentVariableW( comspecW, comspec, sizeof(comspec)/sizeof(WCHAR) ))
2119         return FALSE;
2120     if (!(newcmdline = HeapAlloc( GetProcessHeap(), 0,
2121                                   (strlenW(comspec) + 4 + strlenW(cmd_line) + 1) * sizeof(WCHAR))))
2122         return FALSE;
2123
2124     strcpyW( newcmdline, comspec );
2125     strcatW( newcmdline, slashcW );
2126     strcatW( newcmdline, cmd_line );
2127     ret = CreateProcessW( comspec, newcmdline, psa, tsa, inherit,
2128                           flags, env, cur_dir, startup, info );
2129     HeapFree( GetProcessHeap(), 0, newcmdline );
2130     return ret;
2131 }
2132
2133
2134 /*************************************************************************
2135  *               get_file_name
2136  *
2137  * Helper for CreateProcess: retrieve the file name to load from the
2138  * app name and command line. Store the file name in buffer, and
2139  * return a possibly modified command line.
2140  * Also returns a handle to the opened file if it's a Windows binary.
2141  */
2142 static LPWSTR get_file_name( LPCWSTR appname, LPWSTR cmdline, LPWSTR buffer,
2143                              int buflen, HANDLE *handle, struct binary_info *binary_info )
2144 {
2145     static const WCHAR quotesW[] = {'"','%','s','"',0};
2146
2147     WCHAR *name, *pos, *first_space, *ret = NULL;
2148     const WCHAR *p;
2149
2150     /* if we have an app name, everything is easy */
2151
2152     if (appname)
2153     {
2154         /* use the unmodified app name as file name */
2155         lstrcpynW( buffer, appname, buflen );
2156         *handle = open_exe_file( buffer, binary_info );
2157         if (!(ret = cmdline) || !cmdline[0])
2158         {
2159             /* no command-line, create one */
2160             if ((ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(appname) + 3) * sizeof(WCHAR) )))
2161                 sprintfW( ret, quotesW, appname );
2162         }
2163         return ret;
2164     }
2165
2166     /* first check for a quoted file name */
2167
2168     if ((cmdline[0] == '"') && ((p = strchrW( cmdline + 1, '"' ))))
2169     {
2170         int len = p - cmdline - 1;
2171         /* extract the quoted portion as file name */
2172         if (!(name = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) ))) return NULL;
2173         memcpy( name, cmdline + 1, len * sizeof(WCHAR) );
2174         name[len] = 0;
2175
2176         if (!find_exe_file( name, buffer, buflen, handle, binary_info )) goto done;
2177         ret = cmdline;  /* no change necessary */
2178         goto done;
2179     }
2180
2181     /* now try the command-line word by word */
2182
2183     if (!(name = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 1) * sizeof(WCHAR) )))
2184         return NULL;
2185     pos = name;
2186     p = cmdline;
2187     first_space = NULL;
2188
2189     for (;;)
2190     {
2191         while (*p && *p != ' ' && *p != '\t') *pos++ = *p++;
2192         *pos = 0;
2193         if (find_exe_file( name, buffer, buflen, handle, binary_info ))
2194         {
2195             ret = cmdline;
2196             break;
2197         }
2198         if (!first_space) first_space = pos;
2199         if (!(*pos++ = *p++)) break;
2200     }
2201
2202     if (!ret)
2203     {
2204         SetLastError( ERROR_FILE_NOT_FOUND );
2205     }
2206     else if (first_space)  /* build a new command-line with quotes */
2207     {
2208         if (!(ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 3) * sizeof(WCHAR) )))
2209             goto done;
2210         sprintfW( ret, quotesW, name );
2211         strcatW( ret, p );
2212     }
2213
2214  done:
2215     HeapFree( GetProcessHeap(), 0, name );
2216     return ret;
2217 }
2218
2219
2220 /* Steam hotpatches CreateProcessA and W, so to prevent it from crashing use an internal function */
2221 static BOOL create_process_impl( LPCWSTR app_name, LPWSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
2222                                  LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit, DWORD flags,
2223                                  LPVOID env, LPCWSTR cur_dir, LPSTARTUPINFOW startup_info,
2224                                  LPPROCESS_INFORMATION info )
2225 {
2226     BOOL retv = FALSE;
2227     HANDLE hFile = 0;
2228     char *unixdir = NULL;
2229     WCHAR name[MAX_PATH];
2230     WCHAR *tidy_cmdline, *p, *envW = env;
2231     struct binary_info binary_info;
2232
2233     /* Process the AppName and/or CmdLine to get module name and path */
2234
2235     TRACE("app %s cmdline %s\n", debugstr_w(app_name), debugstr_w(cmd_line) );
2236
2237     if (!(tidy_cmdline = get_file_name( app_name, cmd_line, name, sizeof(name)/sizeof(WCHAR),
2238                                         &hFile, &binary_info )))
2239         return FALSE;
2240     if (hFile == INVALID_HANDLE_VALUE) goto done;
2241
2242     /* Warn if unsupported features are used */
2243
2244     if (flags & (IDLE_PRIORITY_CLASS | HIGH_PRIORITY_CLASS | REALTIME_PRIORITY_CLASS |
2245                  CREATE_NEW_PROCESS_GROUP | CREATE_SEPARATE_WOW_VDM | CREATE_SHARED_WOW_VDM |
2246                  CREATE_DEFAULT_ERROR_MODE | CREATE_NO_WINDOW |
2247                  PROFILE_USER | PROFILE_KERNEL | PROFILE_SERVER))
2248         WARN("(%s,...): ignoring some flags in %x\n", debugstr_w(name), flags);
2249
2250     if (cur_dir)
2251     {
2252         if (!(unixdir = wine_get_unix_file_name( cur_dir )))
2253         {
2254             SetLastError(ERROR_DIRECTORY);
2255             goto done;
2256         }
2257     }
2258     else
2259     {
2260         WCHAR buf[MAX_PATH];
2261         if (GetCurrentDirectoryW(MAX_PATH, buf)) unixdir = wine_get_unix_file_name( buf );
2262     }
2263
2264     if (env && !(flags & CREATE_UNICODE_ENVIRONMENT))  /* convert environment to unicode */
2265     {
2266         char *e = env;
2267         DWORD lenW;
2268
2269         while (*e) e += strlen(e) + 1;
2270         e++;  /* final null */
2271         lenW = MultiByteToWideChar( CP_ACP, 0, env, e - (char*)env, NULL, 0 );
2272         envW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) );
2273         MultiByteToWideChar( CP_ACP, 0, env, e - (char*)env, envW, lenW );
2274         flags |= CREATE_UNICODE_ENVIRONMENT;
2275     }
2276
2277     info->hThread = info->hProcess = 0;
2278     info->dwProcessId = info->dwThreadId = 0;
2279
2280     if (binary_info.flags & BINARY_FLAG_DLL)
2281     {
2282         TRACE( "not starting %s since it is a dll\n", debugstr_w(name) );
2283         SetLastError( ERROR_BAD_EXE_FORMAT );
2284     }
2285     else switch (binary_info.type)
2286     {
2287     case BINARY_PE:
2288         TRACE( "starting %s as Win%d binary (%p-%p)\n",
2289                debugstr_w(name), (binary_info.flags & BINARY_FLAG_64BIT) ? 64 : 32,
2290                binary_info.res_start, binary_info.res_end );
2291         retv = create_process( hFile, name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
2292                                inherit, flags, startup_info, info, unixdir, &binary_info, FALSE );
2293         break;
2294     case BINARY_OS216:
2295     case BINARY_WIN16:
2296     case BINARY_DOS:
2297         TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name) );
2298         retv = create_vdm_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
2299                                    inherit, flags, startup_info, info, unixdir, &binary_info, FALSE );
2300         break;
2301     case BINARY_UNIX_LIB:
2302         TRACE( "starting %s as %d-bit Winelib app\n",
2303                debugstr_w(name), (binary_info.flags & BINARY_FLAG_64BIT) ? 64 : 32 );
2304         retv = create_process( hFile, name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
2305                                inherit, flags, startup_info, info, unixdir, &binary_info, FALSE );
2306         break;
2307     case BINARY_UNKNOWN:
2308         /* check for .com or .bat extension */
2309         if ((p = strrchrW( name, '.' )))
2310         {
2311             if (!strcmpiW( p, comW ) || !strcmpiW( p, pifW ))
2312             {
2313                 TRACE( "starting %s as DOS binary\n", debugstr_w(name) );
2314                 retv = create_vdm_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
2315                                            inherit, flags, startup_info, info, unixdir,
2316                                            &binary_info, FALSE );
2317                 break;
2318             }
2319             if (!strcmpiW( p, batW ) || !strcmpiW( p, cmdW ) )
2320             {
2321                 TRACE( "starting %s as batch binary\n", debugstr_w(name) );
2322                 retv = create_cmd_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
2323                                            inherit, flags, startup_info, info );
2324                 break;
2325             }
2326         }
2327         /* fall through */
2328     case BINARY_UNIX_EXE:
2329         {
2330             /* unknown file, try as unix executable */
2331             char *unix_name;
2332
2333             TRACE( "starting %s as Unix binary\n", debugstr_w(name) );
2334
2335             if ((unix_name = wine_get_unix_file_name( name )))
2336             {
2337                 retv = (fork_and_exec( unix_name, tidy_cmdline, envW, unixdir, flags, startup_info ) != -1);
2338                 HeapFree( GetProcessHeap(), 0, unix_name );
2339             }
2340         }
2341         break;
2342     }
2343     if (hFile) CloseHandle( hFile );
2344
2345  done:
2346     if (tidy_cmdline != cmd_line) HeapFree( GetProcessHeap(), 0, tidy_cmdline );
2347     if (envW != env) HeapFree( GetProcessHeap(), 0, envW );
2348     HeapFree( GetProcessHeap(), 0, unixdir );
2349     if (retv)
2350         TRACE( "started process pid %04x tid %04x\n", info->dwProcessId, info->dwThreadId );
2351     return retv;
2352 }
2353
2354
2355 /**********************************************************************
2356  *       CreateProcessA          (KERNEL32.@)
2357  */
2358 BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessA( LPCSTR app_name, LPSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
2359                                               LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit,
2360                                               DWORD flags, LPVOID env, LPCSTR cur_dir,
2361                                               LPSTARTUPINFOA startup_info, LPPROCESS_INFORMATION info )
2362 {
2363     BOOL ret = FALSE;
2364     WCHAR *app_nameW = NULL, *cmd_lineW = NULL, *cur_dirW = NULL;
2365     UNICODE_STRING desktopW, titleW;
2366     STARTUPINFOW infoW;
2367
2368     desktopW.Buffer = NULL;
2369     titleW.Buffer = NULL;
2370     if (app_name && !(app_nameW = FILE_name_AtoW( app_name, TRUE ))) goto done;
2371     if (cmd_line && !(cmd_lineW = FILE_name_AtoW( cmd_line, TRUE ))) goto done;
2372     if (cur_dir && !(cur_dirW = FILE_name_AtoW( cur_dir, TRUE ))) goto done;
2373
2374     if (startup_info->lpDesktop) RtlCreateUnicodeStringFromAsciiz( &desktopW, startup_info->lpDesktop );
2375     if (startup_info->lpTitle) RtlCreateUnicodeStringFromAsciiz( &titleW, startup_info->lpTitle );
2376
2377     memcpy( &infoW, startup_info, sizeof(infoW) );
2378     infoW.lpDesktop = desktopW.Buffer;
2379     infoW.lpTitle = titleW.Buffer;
2380
2381     if (startup_info->lpReserved)
2382       FIXME("StartupInfo.lpReserved is used, please report (%s)\n",
2383             debugstr_a(startup_info->lpReserved));
2384
2385     ret = create_process_impl( app_nameW, cmd_lineW, process_attr, thread_attr,
2386                                inherit, flags, env, cur_dirW, &infoW, info );
2387 done:
2388     HeapFree( GetProcessHeap(), 0, app_nameW );
2389     HeapFree( GetProcessHeap(), 0, cmd_lineW );
2390     HeapFree( GetProcessHeap(), 0, cur_dirW );
2391     RtlFreeUnicodeString( &desktopW );
2392     RtlFreeUnicodeString( &titleW );
2393     return ret;
2394 }
2395
2396
2397 /**********************************************************************
2398  *       CreateProcessW          (KERNEL32.@)
2399  */
2400 BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessW( LPCWSTR app_name, LPWSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
2401                                               LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit, DWORD flags,
2402                                               LPVOID env, LPCWSTR cur_dir, LPSTARTUPINFOW startup_info,
2403                                               LPPROCESS_INFORMATION info )
2404 {
2405     return create_process_impl( app_name, cmd_line, process_attr, thread_attr,
2406                                 inherit, flags, env, cur_dir, startup_info, info);
2407 }
2408
2409
2410 /**********************************************************************
2411  *       exec_process
2412  */
2413 static void exec_process( LPCWSTR name )
2414 {
2415     HANDLE hFile;
2416     WCHAR *p;
2417     STARTUPINFOW startup_info;
2418     PROCESS_INFORMATION info;
2419     struct binary_info binary_info;
2420
2421     hFile = open_exe_file( name, &binary_info );
2422     if (!hFile || hFile == INVALID_HANDLE_VALUE) return;
2423
2424     memset( &startup_info, 0, sizeof(startup_info) );
2425     startup_info.cb = sizeof(startup_info);
2426
2427     /* Determine executable type */
2428
2429     if (binary_info.flags & BINARY_FLAG_DLL) return;
2430     switch (binary_info.type)
2431     {
2432     case BINARY_PE:
2433         TRACE( "starting %s as Win%d binary (%p-%p)\n",
2434                debugstr_w(name), (binary_info.flags & BINARY_FLAG_64BIT) ? 64 : 32,
2435                binary_info.res_start, binary_info.res_end );
2436         create_process( hFile, name, GetCommandLineW(), NULL, NULL, NULL, NULL,
2437                         FALSE, 0, &startup_info, &info, NULL, &binary_info, TRUE );
2438         break;
2439     case BINARY_UNIX_LIB:
2440         TRACE( "%s is a Unix library, starting as Winelib app\n", debugstr_w(name) );
2441         create_process( hFile, name, GetCommandLineW(), NULL, NULL, NULL, NULL,
2442                         FALSE, 0, &startup_info, &info, NULL, &binary_info, TRUE );
2443         break;
2444     case BINARY_UNKNOWN:
2445         /* check for .com or .pif extension */
2446         if (!(p = strrchrW( name, '.' ))) break;
2447         if (strcmpiW( p, comW ) && strcmpiW( p, pifW )) break;
2448         /* fall through */
2449     case BINARY_OS216:
2450     case BINARY_WIN16:
2451     case BINARY_DOS:
2452         TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name) );
2453         create_vdm_process( name, GetCommandLineW(), NULL, NULL, NULL, NULL,
2454                             FALSE, 0, &startup_info, &info, NULL, &binary_info, TRUE );
2455         break;
2456     default:
2457         break;
2458     }
2459     CloseHandle( hFile );
2460 }
2461
2462
2463 /***********************************************************************
2464  *           wait_input_idle
2465  *
2466  * Wrapper to call WaitForInputIdle USER function
2467  */
2468 typedef DWORD (WINAPI *WaitForInputIdle_ptr)( HANDLE hProcess, DWORD dwTimeOut );
2469
2470 static DWORD wait_input_idle( HANDLE process, DWORD timeout )
2471 {
2472     HMODULE mod = GetModuleHandleA( "user32.dll" );
2473     if (mod)
2474     {
2475         WaitForInputIdle_ptr ptr = (WaitForInputIdle_ptr)GetProcAddress( mod, "WaitForInputIdle" );
2476         if (ptr) return ptr( process, timeout );
2477     }
2478     return 0;
2479 }
2480
2481
2482 /***********************************************************************
2483  *           WinExec   (KERNEL32.@)
2484  */
2485 UINT WINAPI WinExec( LPCSTR lpCmdLine, UINT nCmdShow )
2486 {
2487     PROCESS_INFORMATION info;
2488     STARTUPINFOA startup;
2489     char *cmdline;
2490     UINT ret;
2491
2492     memset( &startup, 0, sizeof(startup) );
2493     startup.cb = sizeof(startup);
2494     startup.dwFlags = STARTF_USESHOWWINDOW;
2495     startup.wShowWindow = nCmdShow;
2496
2497     /* cmdline needs to be writable for CreateProcess */
2498     if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(lpCmdLine)+1 ))) return 0;
2499     strcpy( cmdline, lpCmdLine );
2500
2501     if (CreateProcessA( NULL, cmdline, NULL, NULL, FALSE,
2502                         0, NULL, NULL, &startup, &info ))
2503     {
2504         /* Give 30 seconds to the app to come up */
2505         if (wait_input_idle( info.hProcess, 30000 ) == WAIT_FAILED)
2506             WARN("WaitForInputIdle failed: Error %d\n", GetLastError() );
2507         ret = 33;
2508         /* Close off the handles */
2509         CloseHandle( info.hThread );
2510         CloseHandle( info.hProcess );
2511     }
2512     else if ((ret = GetLastError()) >= 32)
2513     {
2514         FIXME("Strange error set by CreateProcess: %d\n", ret );
2515         ret = 11;
2516     }
2517     HeapFree( GetProcessHeap(), 0, cmdline );
2518     return ret;
2519 }
2520
2521
2522 /**********************************************************************
2523  *          LoadModule    (KERNEL32.@)
2524  */
2525 DWORD WINAPI LoadModule( LPCSTR name, LPVOID paramBlock )
2526 {
2527     LOADPARMS32 *params = paramBlock;
2528     PROCESS_INFORMATION info;
2529     STARTUPINFOA startup;
2530     DWORD ret;
2531     LPSTR cmdline, p;
2532     char filename[MAX_PATH];
2533     BYTE len;
2534
2535     if (!name) return ERROR_FILE_NOT_FOUND;
2536
2537     if (!SearchPathA( NULL, name, ".exe", sizeof(filename), filename, NULL ) &&
2538         !SearchPathA( NULL, name, NULL, sizeof(filename), filename, NULL ))
2539         return GetLastError();
2540
2541     len = (BYTE)params->lpCmdLine[0];
2542     if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(filename) + len + 2 )))
2543         return ERROR_NOT_ENOUGH_MEMORY;
2544
2545     strcpy( cmdline, filename );
2546     p = cmdline + strlen(cmdline);
2547     *p++ = ' ';
2548     memcpy( p, params->lpCmdLine + 1, len );
2549     p[len] = 0;
2550
2551     memset( &startup, 0, sizeof(startup) );
2552     startup.cb = sizeof(startup);
2553     if (params->lpCmdShow)
2554     {
2555         startup.dwFlags = STARTF_USESHOWWINDOW;
2556         startup.wShowWindow = ((WORD *)params->lpCmdShow)[1];
2557     }
2558
2559     if (CreateProcessA( filename, cmdline, NULL, NULL, FALSE, 0,
2560                         params->lpEnvAddress, NULL, &startup, &info ))
2561     {
2562         /* Give 30 seconds to the app to come up */
2563         if (wait_input_idle( info.hProcess, 30000 ) == WAIT_FAILED)
2564             WARN("WaitForInputIdle failed: Error %d\n", GetLastError() );
2565         ret = 33;
2566         /* Close off the handles */
2567         CloseHandle( info.hThread );
2568         CloseHandle( info.hProcess );
2569     }
2570     else if ((ret = GetLastError()) >= 32)
2571     {
2572         FIXME("Strange error set by CreateProcess: %u\n", ret );
2573         ret = 11;
2574     }
2575
2576     HeapFree( GetProcessHeap(), 0, cmdline );
2577     return ret;
2578 }
2579
2580
2581 /******************************************************************************
2582  *           TerminateProcess   (KERNEL32.@)
2583  *
2584  * Terminates a process.
2585  *
2586  * PARAMS
2587  *  handle    [I] Process to terminate.
2588  *  exit_code [I] Exit code.
2589  *
2590  * RETURNS
2591  *  Success: TRUE.
2592  *  Failure: FALSE, check GetLastError().
2593  */
2594 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
2595 {
2596     NTSTATUS status;
2597
2598     if (!handle)
2599     {
2600         SetLastError( ERROR_INVALID_HANDLE );
2601         return FALSE;
2602     }
2603
2604     status = NtTerminateProcess( handle, exit_code );
2605     if (status) SetLastError( RtlNtStatusToDosError(status) );
2606     return !status;
2607 }
2608
2609 /***********************************************************************
2610  *           ExitProcess   (KERNEL32.@)
2611  *
2612  * Exits the current process.
2613  *
2614  * PARAMS
2615  *  status [I] Status code to exit with.
2616  *
2617  * RETURNS
2618  *  Nothing.
2619  */
2620 #ifdef __i386__
2621 __ASM_STDCALL_FUNC( ExitProcess, 4, /* Shrinker depend on this particular ExitProcess implementation */
2622                    "pushl %ebp\n\t"
2623                    ".byte 0x8B, 0xEC\n\t" /* movl %esp, %ebp */
2624                    ".byte 0x6A, 0x00\n\t" /* pushl $0 */
2625                    ".byte 0x68, 0x00, 0x00, 0x00, 0x00\n\t" /* pushl $0 - 4 bytes immediate */
2626                    "pushl 8(%ebp)\n\t"
2627                    "call " __ASM_NAME("process_ExitProcess") __ASM_STDCALL(4) "\n\t"
2628                    "leave\n\t"
2629                    "ret $4" )
2630
2631 void WINAPI process_ExitProcess( DWORD status )
2632 {
2633     LdrShutdownProcess();
2634     NtTerminateProcess(GetCurrentProcess(), status);
2635     exit(status);
2636 }
2637
2638 #else
2639
2640 void WINAPI ExitProcess( DWORD status )
2641 {
2642     LdrShutdownProcess();
2643     NtTerminateProcess(GetCurrentProcess(), status);
2644     exit(status);
2645 }
2646
2647 #endif
2648
2649 /***********************************************************************
2650  * GetExitCodeProcess           [KERNEL32.@]
2651  *
2652  * Gets termination status of specified process.
2653  *
2654  * PARAMS
2655  *   hProcess   [in]  Handle to the process.
2656  *   lpExitCode [out] Address to receive termination status.
2657  *
2658  * RETURNS
2659  *   Success: TRUE
2660  *   Failure: FALSE
2661  */
2662 BOOL WINAPI GetExitCodeProcess( HANDLE hProcess, LPDWORD lpExitCode )
2663 {
2664     NTSTATUS status;
2665     PROCESS_BASIC_INFORMATION pbi;
2666
2667     status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
2668                                        sizeof(pbi), NULL);
2669     if (status == STATUS_SUCCESS)
2670     {
2671         if (lpExitCode) *lpExitCode = pbi.ExitStatus;
2672         return TRUE;
2673     }
2674     SetLastError( RtlNtStatusToDosError(status) );
2675     return FALSE;
2676 }
2677
2678
2679 /***********************************************************************
2680  *           SetErrorMode   (KERNEL32.@)
2681  */
2682 UINT WINAPI SetErrorMode( UINT mode )
2683 {
2684     UINT old;
2685
2686     NtQueryInformationProcess( GetCurrentProcess(), ProcessDefaultHardErrorMode,
2687                                &old, sizeof(old), NULL );
2688     NtSetInformationProcess( GetCurrentProcess(), ProcessDefaultHardErrorMode,
2689                              &mode, sizeof(mode) );
2690     return old;
2691 }
2692
2693 /***********************************************************************
2694  *           GetErrorMode   (KERNEL32.@)
2695  */
2696 UINT WINAPI GetErrorMode( void )
2697 {
2698     UINT mode;
2699
2700     NtQueryInformationProcess( GetCurrentProcess(), ProcessDefaultHardErrorMode,
2701                                &mode, sizeof(mode), NULL );
2702     return mode;
2703 }
2704
2705 /**********************************************************************
2706  * TlsAlloc             [KERNEL32.@]
2707  *
2708  * Allocates a thread local storage index.
2709  *
2710  * RETURNS
2711  *    Success: TLS index.
2712  *    Failure: 0xFFFFFFFF
2713  */
2714 DWORD WINAPI TlsAlloc( void )
2715 {
2716     DWORD index;
2717     PEB * const peb = NtCurrentTeb()->Peb;
2718
2719     RtlAcquirePebLock();
2720     index = RtlFindClearBitsAndSet( peb->TlsBitmap, 1, 0 );
2721     if (index != ~0U) NtCurrentTeb()->TlsSlots[index] = 0; /* clear the value */
2722     else
2723     {
2724         index = RtlFindClearBitsAndSet( peb->TlsExpansionBitmap, 1, 0 );
2725         if (index != ~0U)
2726         {
2727             if (!NtCurrentTeb()->TlsExpansionSlots &&
2728                 !(NtCurrentTeb()->TlsExpansionSlots = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
2729                                          8 * sizeof(peb->TlsExpansionBitmapBits) * sizeof(void*) )))
2730             {
2731                 RtlClearBits( peb->TlsExpansionBitmap, index, 1 );
2732                 index = ~0U;
2733                 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
2734             }
2735             else
2736             {
2737                 NtCurrentTeb()->TlsExpansionSlots[index] = 0; /* clear the value */
2738                 index += TLS_MINIMUM_AVAILABLE;
2739             }
2740         }
2741         else SetLastError( ERROR_NO_MORE_ITEMS );
2742     }
2743     RtlReleasePebLock();
2744     return index;
2745 }
2746
2747
2748 /**********************************************************************
2749  * TlsFree              [KERNEL32.@]
2750  *
2751  * Releases a thread local storage index, making it available for reuse.
2752  *
2753  * PARAMS
2754  *    index [in] TLS index to free.
2755  *
2756  * RETURNS
2757  *    Success: TRUE
2758  *    Failure: FALSE
2759  */
2760 BOOL WINAPI TlsFree( DWORD index )
2761 {
2762     BOOL ret;
2763
2764     RtlAcquirePebLock();
2765     if (index >= TLS_MINIMUM_AVAILABLE)
2766     {
2767         ret = RtlAreBitsSet( NtCurrentTeb()->Peb->TlsExpansionBitmap, index - TLS_MINIMUM_AVAILABLE, 1 );
2768         if (ret) RtlClearBits( NtCurrentTeb()->Peb->TlsExpansionBitmap, index - TLS_MINIMUM_AVAILABLE, 1 );
2769     }
2770     else
2771     {
2772         ret = RtlAreBitsSet( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
2773         if (ret) RtlClearBits( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
2774     }
2775     if (ret) NtSetInformationThread( GetCurrentThread(), ThreadZeroTlsCell, &index, sizeof(index) );
2776     else SetLastError( ERROR_INVALID_PARAMETER );
2777     RtlReleasePebLock();
2778     return ret;
2779 }
2780
2781
2782 /**********************************************************************
2783  * TlsGetValue          [KERNEL32.@]
2784  *
2785  * Gets value in a thread's TLS slot.
2786  *
2787  * PARAMS
2788  *    index [in] TLS index to retrieve value for.
2789  *
2790  * RETURNS
2791  *    Success: Value stored in calling thread's TLS slot for index.
2792  *    Failure: 0 and GetLastError() returns NO_ERROR.
2793  */
2794 LPVOID WINAPI TlsGetValue( DWORD index )
2795 {
2796     LPVOID ret;
2797
2798     if (index < TLS_MINIMUM_AVAILABLE)
2799     {
2800         ret = NtCurrentTeb()->TlsSlots[index];
2801     }
2802     else
2803     {
2804         index -= TLS_MINIMUM_AVAILABLE;
2805         if (index >= 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits))
2806         {
2807             SetLastError( ERROR_INVALID_PARAMETER );
2808             return NULL;
2809         }
2810         if (!NtCurrentTeb()->TlsExpansionSlots) ret = NULL;
2811         else ret = NtCurrentTeb()->TlsExpansionSlots[index];
2812     }
2813     SetLastError( ERROR_SUCCESS );
2814     return ret;
2815 }
2816
2817
2818 /**********************************************************************
2819  * TlsSetValue          [KERNEL32.@]
2820  *
2821  * Stores a value in the thread's TLS slot.
2822  *
2823  * PARAMS
2824  *    index [in] TLS index to set value for.
2825  *    value [in] Value to be stored.
2826  *
2827  * RETURNS
2828  *    Success: TRUE
2829  *    Failure: FALSE
2830  */
2831 BOOL WINAPI TlsSetValue( DWORD index, LPVOID value )
2832 {
2833     if (index < TLS_MINIMUM_AVAILABLE)
2834     {
2835         NtCurrentTeb()->TlsSlots[index] = value;
2836     }
2837     else
2838     {
2839         index -= TLS_MINIMUM_AVAILABLE;
2840         if (index >= 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits))
2841         {
2842             SetLastError( ERROR_INVALID_PARAMETER );
2843             return FALSE;
2844         }
2845         if (!NtCurrentTeb()->TlsExpansionSlots &&
2846             !(NtCurrentTeb()->TlsExpansionSlots = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
2847                          8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits) * sizeof(void*) )))
2848         {
2849             SetLastError( ERROR_NOT_ENOUGH_MEMORY );
2850             return FALSE;
2851         }
2852         NtCurrentTeb()->TlsExpansionSlots[index] = value;
2853     }
2854     return TRUE;
2855 }
2856
2857
2858 /***********************************************************************
2859  *           GetProcessFlags    (KERNEL32.@)
2860  */
2861 DWORD WINAPI GetProcessFlags( DWORD processid )
2862 {
2863     IMAGE_NT_HEADERS *nt;
2864     DWORD flags = 0;
2865
2866     if (processid && processid != GetCurrentProcessId()) return 0;
2867
2868     if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
2869     {
2870         if (nt->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI)
2871             flags |= PDB32_CONSOLE_PROC;
2872     }
2873     if (!AreFileApisANSI()) flags |= PDB32_FILE_APIS_OEM;
2874     if (IsDebuggerPresent()) flags |= PDB32_DEBUGGED;
2875     return flags;
2876 }
2877
2878
2879 /*********************************************************************
2880  *           OpenProcess   (KERNEL32.@)
2881  *
2882  * Opens a handle to a process.
2883  *
2884  * PARAMS
2885  *  access  [I] Desired access rights assigned to the returned handle.
2886  *  inherit [I] Determines whether or not child processes will inherit the handle.
2887  *  id      [I] Process identifier of the process to get a handle to.
2888  *
2889  * RETURNS
2890  *  Success: Valid handle to the specified process.
2891  *  Failure: NULL, check GetLastError().
2892  */
2893 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
2894 {
2895     NTSTATUS            status;
2896     HANDLE              handle;
2897     OBJECT_ATTRIBUTES   attr;
2898     CLIENT_ID           cid;
2899
2900     cid.UniqueProcess = ULongToHandle(id);
2901     cid.UniqueThread = 0; /* FIXME ? */
2902
2903     attr.Length = sizeof(OBJECT_ATTRIBUTES);
2904     attr.RootDirectory = NULL;
2905     attr.Attributes = inherit ? OBJ_INHERIT : 0;
2906     attr.SecurityDescriptor = NULL;
2907     attr.SecurityQualityOfService = NULL;
2908     attr.ObjectName = NULL;
2909
2910     if (GetVersion() & 0x80000000) access = PROCESS_ALL_ACCESS;
2911
2912     status = NtOpenProcess(&handle, access, &attr, &cid);
2913     if (status != STATUS_SUCCESS)
2914     {
2915         SetLastError( RtlNtStatusToDosError(status) );
2916         return NULL;
2917     }
2918     return handle;
2919 }
2920
2921
2922 /*********************************************************************
2923  *           GetProcessId       (KERNEL32.@)
2924  *
2925  * Gets the a unique identifier of a process.
2926  *
2927  * PARAMS
2928  *  hProcess [I] Handle to the process.
2929  *
2930  * RETURNS
2931  *  Success: TRUE.
2932  *  Failure: FALSE, check GetLastError().
2933  *
2934  * NOTES
2935  *
2936  * The identifier is unique only on the machine and only until the process
2937  * exits (including system shutdown).
2938  */
2939 DWORD WINAPI GetProcessId( HANDLE hProcess )
2940 {
2941     NTSTATUS status;
2942     PROCESS_BASIC_INFORMATION pbi;
2943
2944     status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
2945                                        sizeof(pbi), NULL);
2946     if (status == STATUS_SUCCESS) return pbi.UniqueProcessId;
2947     SetLastError( RtlNtStatusToDosError(status) );
2948     return 0;
2949 }
2950
2951
2952 /*********************************************************************
2953  *           CloseHandle    (KERNEL32.@)
2954  *
2955  * Closes a handle.
2956  *
2957  * PARAMS
2958  *  handle [I] Handle to close.
2959  *
2960  * RETURNS
2961  *  Success: TRUE.
2962  *  Failure: FALSE, check GetLastError().
2963  */
2964 BOOL WINAPI CloseHandle( HANDLE handle )
2965 {
2966     NTSTATUS status;
2967
2968     /* stdio handles need special treatment */
2969     if (handle == (HANDLE)STD_INPUT_HANDLE)
2970         handle = InterlockedExchangePointer( &NtCurrentTeb()->Peb->ProcessParameters->hStdInput, 0 );
2971     else if (handle == (HANDLE)STD_OUTPUT_HANDLE)
2972         handle = InterlockedExchangePointer( &NtCurrentTeb()->Peb->ProcessParameters->hStdOutput, 0 );
2973     else if (handle == (HANDLE)STD_ERROR_HANDLE)
2974         handle = InterlockedExchangePointer( &NtCurrentTeb()->Peb->ProcessParameters->hStdError, 0 );
2975
2976     if (is_console_handle(handle))
2977         return CloseConsoleHandle(handle);
2978
2979     status = NtClose( handle );
2980     if (status) SetLastError( RtlNtStatusToDosError(status) );
2981     return !status;
2982 }
2983
2984
2985 /*********************************************************************
2986  *           GetHandleInformation   (KERNEL32.@)
2987  */
2988 BOOL WINAPI GetHandleInformation( HANDLE handle, LPDWORD flags )
2989 {
2990     OBJECT_DATA_INFORMATION info;
2991     NTSTATUS status = NtQueryObject( handle, ObjectDataInformation, &info, sizeof(info), NULL );
2992
2993     if (status) SetLastError( RtlNtStatusToDosError(status) );
2994     else if (flags)
2995     {
2996         *flags = 0;
2997         if (info.InheritHandle) *flags |= HANDLE_FLAG_INHERIT;
2998         if (info.ProtectFromClose) *flags |= HANDLE_FLAG_PROTECT_FROM_CLOSE;
2999     }
3000     return !status;
3001 }
3002
3003
3004 /*********************************************************************
3005  *           SetHandleInformation   (KERNEL32.@)
3006  */
3007 BOOL WINAPI SetHandleInformation( HANDLE handle, DWORD mask, DWORD flags )
3008 {
3009     OBJECT_DATA_INFORMATION info;
3010     NTSTATUS status;
3011
3012     /* if not setting both fields, retrieve current value first */
3013     if ((mask & (HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE)) !=
3014         (HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE))
3015     {
3016         if ((status = NtQueryObject( handle, ObjectDataInformation, &info, sizeof(info), NULL )))
3017         {
3018             SetLastError( RtlNtStatusToDosError(status) );
3019             return FALSE;
3020         }
3021     }
3022     if (mask & HANDLE_FLAG_INHERIT)
3023         info.InheritHandle = (flags & HANDLE_FLAG_INHERIT) != 0;
3024     if (mask & HANDLE_FLAG_PROTECT_FROM_CLOSE)
3025         info.ProtectFromClose = (flags & HANDLE_FLAG_PROTECT_FROM_CLOSE) != 0;
3026
3027     status = NtSetInformationObject( handle, ObjectDataInformation, &info, sizeof(info) );
3028     if (status) SetLastError( RtlNtStatusToDosError(status) );
3029     return !status;
3030 }
3031
3032
3033 /*********************************************************************
3034  *           DuplicateHandle   (KERNEL32.@)
3035  */
3036 BOOL WINAPI DuplicateHandle( HANDLE source_process, HANDLE source,
3037                              HANDLE dest_process, HANDLE *dest,
3038                              DWORD access, BOOL inherit, DWORD options )
3039 {
3040     NTSTATUS status;
3041
3042     if (is_console_handle(source))
3043     {
3044         /* FIXME: this test is not sufficient, we need to test process ids, not handles */
3045         if (source_process != dest_process ||
3046             source_process != GetCurrentProcess())
3047         {
3048             SetLastError(ERROR_INVALID_PARAMETER);
3049             return FALSE;
3050         }
3051         *dest = DuplicateConsoleHandle( source, access, inherit, options );
3052         return (*dest != INVALID_HANDLE_VALUE);
3053     }
3054     status = NtDuplicateObject( source_process, source, dest_process, dest,
3055                                 access, inherit ? OBJ_INHERIT : 0, options );
3056     if (status) SetLastError( RtlNtStatusToDosError(status) );
3057     return !status;
3058 }
3059
3060
3061 /***********************************************************************
3062  *           ConvertToGlobalHandle  (KERNEL32.@)
3063  */
3064 HANDLE WINAPI ConvertToGlobalHandle(HANDLE hSrc)
3065 {
3066     HANDLE ret = INVALID_HANDLE_VALUE;
3067     DuplicateHandle( GetCurrentProcess(), hSrc, GetCurrentProcess(), &ret, 0, FALSE,
3068                      DUP_HANDLE_MAKE_GLOBAL | DUP_HANDLE_SAME_ACCESS | DUP_HANDLE_CLOSE_SOURCE );
3069     return ret;
3070 }
3071
3072
3073 /***********************************************************************
3074  *           SetHandleContext   (KERNEL32.@)
3075  */
3076 BOOL WINAPI SetHandleContext(HANDLE hnd,DWORD context)
3077 {
3078     FIXME("(%p,%d), stub. In case this got called by WSOCK32/WS2_32: "
3079           "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd,context);
3080     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3081     return FALSE;
3082 }
3083
3084
3085 /***********************************************************************
3086  *           GetHandleContext   (KERNEL32.@)
3087  */
3088 DWORD WINAPI GetHandleContext(HANDLE hnd)
3089 {
3090     FIXME("(%p), stub. In case this got called by WSOCK32/WS2_32: "
3091           "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd);
3092     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3093     return 0;
3094 }
3095
3096
3097 /***********************************************************************
3098  *           CreateSocketHandle   (KERNEL32.@)
3099  */
3100 HANDLE WINAPI CreateSocketHandle(void)
3101 {
3102     FIXME("(), stub. In case this got called by WSOCK32/WS2_32: "
3103           "the external WINSOCK DLLs won't work with WINE, don't use them.\n");
3104     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3105     return INVALID_HANDLE_VALUE;
3106 }
3107
3108
3109 /***********************************************************************
3110  *           SetPriorityClass   (KERNEL32.@)
3111  */
3112 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
3113 {
3114     NTSTATUS                    status;
3115     PROCESS_PRIORITY_CLASS      ppc;
3116
3117     ppc.Foreground = FALSE;
3118     switch (priorityclass)
3119     {
3120     case IDLE_PRIORITY_CLASS:
3121         ppc.PriorityClass = PROCESS_PRIOCLASS_IDLE; break;
3122     case BELOW_NORMAL_PRIORITY_CLASS:
3123         ppc.PriorityClass = PROCESS_PRIOCLASS_BELOW_NORMAL; break;
3124     case NORMAL_PRIORITY_CLASS:
3125         ppc.PriorityClass = PROCESS_PRIOCLASS_NORMAL; break;
3126     case ABOVE_NORMAL_PRIORITY_CLASS:
3127         ppc.PriorityClass = PROCESS_PRIOCLASS_ABOVE_NORMAL; break;
3128     case HIGH_PRIORITY_CLASS:
3129         ppc.PriorityClass = PROCESS_PRIOCLASS_HIGH; break;
3130     case REALTIME_PRIORITY_CLASS:
3131         ppc.PriorityClass = PROCESS_PRIOCLASS_REALTIME; break;
3132     default:
3133         SetLastError(ERROR_INVALID_PARAMETER);
3134         return FALSE;
3135     }
3136
3137     status = NtSetInformationProcess(hprocess, ProcessPriorityClass,
3138                                      &ppc, sizeof(ppc));
3139
3140     if (status != STATUS_SUCCESS)
3141     {
3142         SetLastError( RtlNtStatusToDosError(status) );
3143         return FALSE;
3144     }
3145     return TRUE;
3146 }
3147
3148
3149 /***********************************************************************
3150  *           GetPriorityClass   (KERNEL32.@)
3151  */
3152 DWORD WINAPI GetPriorityClass(HANDLE hProcess)
3153 {
3154     NTSTATUS status;
3155     PROCESS_BASIC_INFORMATION pbi;
3156
3157     status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
3158                                        sizeof(pbi), NULL);
3159     if (status != STATUS_SUCCESS)
3160     {
3161         SetLastError( RtlNtStatusToDosError(status) );
3162         return 0;
3163     }
3164     switch (pbi.BasePriority)
3165     {
3166     case PROCESS_PRIOCLASS_IDLE: return IDLE_PRIORITY_CLASS;
3167     case PROCESS_PRIOCLASS_BELOW_NORMAL: return BELOW_NORMAL_PRIORITY_CLASS;
3168     case PROCESS_PRIOCLASS_NORMAL: return NORMAL_PRIORITY_CLASS;
3169     case PROCESS_PRIOCLASS_ABOVE_NORMAL: return ABOVE_NORMAL_PRIORITY_CLASS;
3170     case PROCESS_PRIOCLASS_HIGH: return HIGH_PRIORITY_CLASS;
3171     case PROCESS_PRIOCLASS_REALTIME: return REALTIME_PRIORITY_CLASS;
3172     }
3173     SetLastError( ERROR_INVALID_PARAMETER );
3174     return 0;
3175 }
3176
3177
3178 /***********************************************************************
3179  *          SetProcessAffinityMask   (KERNEL32.@)
3180  */
3181 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD_PTR affmask )
3182 {
3183     NTSTATUS status;
3184
3185     status = NtSetInformationProcess(hProcess, ProcessAffinityMask,
3186                                      &affmask, sizeof(DWORD_PTR));
3187     if (status)
3188     {
3189         SetLastError( RtlNtStatusToDosError(status) );
3190         return FALSE;
3191     }
3192     return TRUE;
3193 }
3194
3195
3196 /**********************************************************************
3197  *          GetProcessAffinityMask    (KERNEL32.@)
3198  */
3199 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess, PDWORD_PTR process_mask, PDWORD_PTR system_mask )
3200 {
3201     NTSTATUS status = STATUS_SUCCESS;
3202
3203     if (system_mask) *system_mask = (1 << NtCurrentTeb()->Peb->NumberOfProcessors) - 1;
3204     if (process_mask)
3205     {
3206         if ((status = NtQueryInformationProcess( hProcess, ProcessAffinityMask,
3207                                                  process_mask, sizeof(*process_mask), NULL )))
3208             SetLastError( RtlNtStatusToDosError(status) );
3209     }
3210     return !status;
3211 }
3212
3213
3214 /***********************************************************************
3215  *           GetProcessVersion    (KERNEL32.@)
3216  */
3217 DWORD WINAPI GetProcessVersion( DWORD pid )
3218 {
3219     HANDLE process;
3220     NTSTATUS status;
3221     PROCESS_BASIC_INFORMATION pbi;
3222     SIZE_T count;
3223     PEB peb;
3224     IMAGE_DOS_HEADER dos;
3225     IMAGE_NT_HEADERS nt;
3226     DWORD ver = 0;
3227
3228     if (!pid || pid == GetCurrentProcessId())
3229     {
3230         IMAGE_NT_HEADERS *pnt;
3231
3232         if ((pnt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
3233             return ((pnt->OptionalHeader.MajorSubsystemVersion << 16) |
3234                     pnt->OptionalHeader.MinorSubsystemVersion);
3235         return 0;
3236     }
3237
3238     process = OpenProcess(PROCESS_VM_READ | PROCESS_QUERY_INFORMATION, FALSE, pid);
3239     if (!process) return 0;
3240
3241     status = NtQueryInformationProcess(process, ProcessBasicInformation, &pbi, sizeof(pbi), NULL);
3242     if (status) goto err;
3243
3244     status = NtReadVirtualMemory(process, pbi.PebBaseAddress, &peb, sizeof(peb), &count);
3245     if (status || count != sizeof(peb)) goto err;
3246
3247     memset(&dos, 0, sizeof(dos));
3248     status = NtReadVirtualMemory(process, peb.ImageBaseAddress, &dos, sizeof(dos), &count);
3249     if (status || count != sizeof(dos)) goto err;
3250     if (dos.e_magic != IMAGE_DOS_SIGNATURE) goto err;
3251
3252     memset(&nt, 0, sizeof(nt));
3253     status = NtReadVirtualMemory(process, (char *)peb.ImageBaseAddress + dos.e_lfanew, &nt, sizeof(nt), &count);
3254     if (status || count != sizeof(nt)) goto err;
3255     if (nt.Signature != IMAGE_NT_SIGNATURE) goto err;
3256
3257     ver = MAKELONG(nt.OptionalHeader.MinorSubsystemVersion, nt.OptionalHeader.MajorSubsystemVersion);
3258
3259 err:
3260     CloseHandle(process);
3261
3262     if (status != STATUS_SUCCESS)
3263         SetLastError(RtlNtStatusToDosError(status));
3264
3265     return ver;
3266 }
3267
3268
3269 /***********************************************************************
3270  *              SetProcessWorkingSetSize        [KERNEL32.@]
3271  * Sets the min/max working set sizes for a specified process.
3272  *
3273  * PARAMS
3274  *    hProcess [I] Handle to the process of interest
3275  *    minset   [I] Specifies minimum working set size
3276  *    maxset   [I] Specifies maximum working set size
3277  *
3278  * RETURNS
3279  *  Success: TRUE
3280  *  Failure: FALSE
3281  */
3282 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess, SIZE_T minset,
3283                                      SIZE_T maxset)
3284 {
3285     WARN("(%p,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
3286     if(( minset == (SIZE_T)-1) && (maxset == (SIZE_T)-1)) {
3287         /* Trim the working set to zero */
3288         /* Swap the process out of physical RAM */
3289     }
3290     return TRUE;
3291 }
3292
3293 /***********************************************************************
3294  *           K32EmptyWorkingSet (KERNEL32.@)
3295  */
3296 BOOL WINAPI K32EmptyWorkingSet(HANDLE hProcess)
3297 {
3298     return SetProcessWorkingSetSize(hProcess, (SIZE_T)-1, (SIZE_T)-1);
3299 }
3300
3301 /***********************************************************************
3302  *           GetProcessWorkingSetSize    (KERNEL32.@)
3303  */
3304 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess, PSIZE_T minset,
3305                                      PSIZE_T maxset)
3306 {
3307     FIXME("(%p,%p,%p): stub\n",hProcess,minset,maxset);
3308     /* 32 MB working set size */
3309     if (minset) *minset = 32*1024*1024;
3310     if (maxset) *maxset = 32*1024*1024;
3311     return TRUE;
3312 }
3313
3314
3315 /***********************************************************************
3316  *           SetProcessShutdownParameters    (KERNEL32.@)
3317  */
3318 BOOL WINAPI SetProcessShutdownParameters(DWORD level, DWORD flags)
3319 {
3320     FIXME("(%08x, %08x): partial stub.\n", level, flags);
3321     shutdown_flags = flags;
3322     shutdown_priority = level;
3323     return TRUE;
3324 }
3325
3326
3327 /***********************************************************************
3328  * GetProcessShutdownParameters                 (KERNEL32.@)
3329  *
3330  */
3331 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
3332 {
3333     *lpdwLevel = shutdown_priority;
3334     *lpdwFlags = shutdown_flags;
3335     return TRUE;
3336 }
3337
3338
3339 /***********************************************************************
3340  *           GetProcessPriorityBoost    (KERNEL32.@)
3341  */
3342 BOOL WINAPI GetProcessPriorityBoost(HANDLE hprocess,PBOOL pDisablePriorityBoost)
3343 {
3344     FIXME("(%p,%p): semi-stub\n", hprocess, pDisablePriorityBoost);
3345     
3346     /* Report that no boost is present.. */
3347     *pDisablePriorityBoost = FALSE;
3348     
3349     return TRUE;
3350 }
3351
3352 /***********************************************************************
3353  *           SetProcessPriorityBoost    (KERNEL32.@)
3354  */
3355 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
3356 {
3357     FIXME("(%p,%d): stub\n",hprocess,disableboost);
3358     /* Say we can do it. I doubt the program will notice that we don't. */
3359     return TRUE;
3360 }
3361
3362
3363 /***********************************************************************
3364  *              ReadProcessMemory (KERNEL32.@)
3365  */
3366 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, SIZE_T size,
3367                                SIZE_T *bytes_read )
3368 {
3369     NTSTATUS status = NtReadVirtualMemory( process, addr, buffer, size, bytes_read );
3370     if (status) SetLastError( RtlNtStatusToDosError(status) );
3371     return !status;
3372 }
3373
3374
3375 /***********************************************************************
3376  *           WriteProcessMemory                 (KERNEL32.@)
3377  */
3378 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPCVOID buffer, SIZE_T size,
3379                                 SIZE_T *bytes_written )
3380 {
3381     NTSTATUS status = NtWriteVirtualMemory( process, addr, buffer, size, bytes_written );
3382     if (status) SetLastError( RtlNtStatusToDosError(status) );
3383     return !status;
3384 }
3385
3386
3387 /****************************************************************************
3388  *              FlushInstructionCache (KERNEL32.@)
3389  */
3390 BOOL WINAPI FlushInstructionCache(HANDLE hProcess, LPCVOID lpBaseAddress, SIZE_T dwSize)
3391 {
3392     NTSTATUS status;
3393     status = NtFlushInstructionCache( hProcess, lpBaseAddress, dwSize );
3394     if (status) SetLastError( RtlNtStatusToDosError(status) );
3395     return !status;
3396 }
3397
3398
3399 /******************************************************************
3400  *              GetProcessIoCounters (KERNEL32.@)
3401  */
3402 BOOL WINAPI GetProcessIoCounters(HANDLE hProcess, PIO_COUNTERS ioc)
3403 {
3404     NTSTATUS    status;
3405
3406     status = NtQueryInformationProcess(hProcess, ProcessIoCounters, 
3407                                        ioc, sizeof(*ioc), NULL);
3408     if (status) SetLastError( RtlNtStatusToDosError(status) );
3409     return !status;
3410 }
3411
3412 /******************************************************************
3413  *              GetProcessHandleCount (KERNEL32.@)
3414  */
3415 BOOL WINAPI GetProcessHandleCount(HANDLE hProcess, DWORD *cnt)
3416 {
3417     NTSTATUS status;
3418
3419     status = NtQueryInformationProcess(hProcess, ProcessHandleCount,
3420                                        cnt, sizeof(*cnt), NULL);
3421     if (status) SetLastError( RtlNtStatusToDosError(status) );
3422     return !status;
3423 }
3424
3425 /******************************************************************
3426  *              QueryFullProcessImageNameA (KERNEL32.@)
3427  */
3428 BOOL WINAPI QueryFullProcessImageNameA(HANDLE hProcess, DWORD dwFlags, LPSTR lpExeName, PDWORD pdwSize)
3429 {
3430     BOOL retval;
3431     DWORD pdwSizeW = *pdwSize;
3432     LPWSTR lpExeNameW = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, *pdwSize * sizeof(WCHAR));
3433
3434     retval = QueryFullProcessImageNameW(hProcess, dwFlags, lpExeNameW, &pdwSizeW);
3435
3436     if(retval)
3437         retval = (0 != WideCharToMultiByte(CP_ACP, 0, lpExeNameW, -1,
3438                                lpExeName, *pdwSize, NULL, NULL));
3439     if(retval)
3440         *pdwSize = strlen(lpExeName);
3441
3442     HeapFree(GetProcessHeap(), 0, lpExeNameW);
3443     return retval;
3444 }
3445
3446 /******************************************************************
3447  *              QueryFullProcessImageNameW (KERNEL32.@)
3448  */
3449 BOOL WINAPI QueryFullProcessImageNameW(HANDLE hProcess, DWORD dwFlags, LPWSTR lpExeName, PDWORD pdwSize)
3450 {
3451     BYTE buffer[sizeof(UNICODE_STRING) + MAX_PATH*sizeof(WCHAR)];  /* this buffer should be enough */
3452     UNICODE_STRING *dynamic_buffer = NULL;
3453     UNICODE_STRING *result = NULL;
3454     NTSTATUS status;
3455     DWORD needed;
3456
3457     /* FIXME: On Windows, ProcessImageFileName return an NT path. In Wine it
3458      * is a DOS path and we depend on this. */
3459     status = NtQueryInformationProcess(hProcess, ProcessImageFileName, buffer,
3460                                        sizeof(buffer) - sizeof(WCHAR), &needed);
3461     if (status == STATUS_INFO_LENGTH_MISMATCH)
3462     {
3463         dynamic_buffer = HeapAlloc(GetProcessHeap(), 0, needed + sizeof(WCHAR));
3464         status = NtQueryInformationProcess(hProcess, ProcessImageFileName, (LPBYTE)dynamic_buffer, needed, &needed);
3465         result = dynamic_buffer;
3466     }
3467     else
3468         result = (PUNICODE_STRING)buffer;
3469
3470     if (status) goto cleanup;
3471
3472     if (dwFlags & PROCESS_NAME_NATIVE)
3473     {
3474         WCHAR drive[3];
3475         WCHAR device[1024];
3476         DWORD ntlen, devlen;
3477
3478         if (result->Buffer[1] != ':' || result->Buffer[0] < 'A' || result->Buffer[0] > 'Z')
3479         {
3480             /* We cannot convert it to an NT device path so fail */
3481             status = STATUS_NO_SUCH_DEVICE;
3482             goto cleanup;
3483         }
3484
3485         /* Find this drive's NT device path */
3486         drive[0] = result->Buffer[0];
3487         drive[1] = ':';
3488         drive[2] = 0;
3489         if (!QueryDosDeviceW(drive, device, sizeof(device)/sizeof(*device)))
3490         {
3491             status = STATUS_NO_SUCH_DEVICE;
3492             goto cleanup;
3493         }
3494
3495         devlen = lstrlenW(device);
3496         ntlen = devlen + (result->Length/sizeof(WCHAR) - 2);
3497         if (ntlen + 1 > *pdwSize)
3498         {
3499             SetLastError(ERROR_INSUFFICIENT_BUFFER);
3500             return 0;
3501         }
3502         *pdwSize = ntlen;
3503
3504         memcpy(lpExeName, device, devlen * sizeof(*device));
3505         memcpy(lpExeName + devlen, result->Buffer + 2, result->Length - 2 * sizeof(WCHAR));
3506         lpExeName[*pdwSize] = 0;
3507         TRACE("NT path: %s\n", debugstr_w(lpExeName));
3508     }
3509     else
3510     {
3511         if (result->Length/sizeof(WCHAR) + 1 > *pdwSize)
3512         {
3513             status = STATUS_BUFFER_TOO_SMALL;
3514             goto cleanup;
3515         }
3516
3517         *pdwSize = result->Length/sizeof(WCHAR);
3518         memcpy( lpExeName, result->Buffer, result->Length );
3519         lpExeName[*pdwSize] = 0;
3520     }
3521
3522 cleanup:
3523     HeapFree(GetProcessHeap(), 0, dynamic_buffer);
3524     if (status) SetLastError( RtlNtStatusToDosError(status) );
3525     return !status;
3526 }
3527
3528 /***********************************************************************
3529  *           K32GetProcessImageFileNameA (KERNEL32.@)
3530  */
3531 DWORD WINAPI K32GetProcessImageFileNameA( HANDLE process, LPSTR file, DWORD size )
3532 {
3533     return QueryFullProcessImageNameA(process, PROCESS_NAME_NATIVE, file, &size) ? size : 0;
3534 }
3535
3536 /***********************************************************************
3537  *           K32GetProcessImageFileNameW (KERNEL32.@)
3538  */
3539 DWORD WINAPI K32GetProcessImageFileNameW( HANDLE process, LPWSTR file, DWORD size )
3540 {
3541     return QueryFullProcessImageNameW(process, PROCESS_NAME_NATIVE, file, &size) ? size : 0;
3542 }
3543
3544 /***********************************************************************
3545  *           K32EnumProcesses (KERNEL32.@)
3546  */
3547 BOOL WINAPI K32EnumProcesses(DWORD *lpdwProcessIDs, DWORD cb, DWORD *lpcbUsed)
3548 {
3549     SYSTEM_PROCESS_INFORMATION *spi;
3550     ULONG size = 0x4000;
3551     void *buf = NULL;
3552     NTSTATUS status;
3553
3554     do {
3555         size *= 2;
3556         HeapFree(GetProcessHeap(), 0, buf);
3557         buf = HeapAlloc(GetProcessHeap(), 0, size);
3558         if (!buf)
3559             return FALSE;
3560
3561         status = NtQuerySystemInformation(SystemProcessInformation, buf, size, NULL);
3562     } while(status == STATUS_INFO_LENGTH_MISMATCH);
3563
3564     if (status != STATUS_SUCCESS)
3565     {
3566         HeapFree(GetProcessHeap(), 0, buf);
3567         SetLastError(RtlNtStatusToDosError(status));
3568         return FALSE;
3569     }
3570
3571     spi = buf;
3572
3573     for (*lpcbUsed = 0; cb >= sizeof(DWORD); cb -= sizeof(DWORD))
3574     {
3575         *lpdwProcessIDs++ = HandleToUlong(spi->UniqueProcessId);
3576         *lpcbUsed += sizeof(DWORD);
3577
3578         if (spi->NextEntryOffset == 0)
3579             break;
3580
3581         spi = (SYSTEM_PROCESS_INFORMATION *)(((PCHAR)spi) + spi->NextEntryOffset);
3582     }
3583
3584     HeapFree(GetProcessHeap(), 0, buf);
3585     return TRUE;
3586 }
3587
3588 /***********************************************************************
3589  *           K32QueryWorkingSet (KERNEL32.@)
3590  */
3591 BOOL WINAPI K32QueryWorkingSet( HANDLE process, LPVOID buffer, DWORD size )
3592 {
3593     NTSTATUS status;
3594
3595     TRACE( "(%p, %p, %d)\n", process, buffer, size );
3596
3597     status = NtQueryVirtualMemory( process, NULL, MemoryWorkingSetList, buffer, size, NULL );
3598
3599     if (status)
3600     {
3601         SetLastError( RtlNtStatusToDosError( status ) );
3602         return FALSE;
3603     }
3604     return TRUE;
3605 }
3606
3607 /***********************************************************************
3608  *           K32QueryWorkingSetEx (KERNEL32.@)
3609  */
3610 BOOL WINAPI K32QueryWorkingSetEx( HANDLE process, LPVOID buffer, DWORD size )
3611 {
3612     NTSTATUS status;
3613
3614     TRACE( "(%p, %p, %d)\n", process, buffer, size );
3615
3616     status = NtQueryVirtualMemory( process, NULL, MemoryWorkingSetList, buffer,  size, NULL );
3617
3618     if (status)
3619     {
3620         SetLastError( RtlNtStatusToDosError( status ) );
3621         return FALSE;
3622     }
3623     return TRUE;
3624 }
3625
3626 /***********************************************************************
3627  *           K32GetProcessMemoryInfo (KERNEL32.@)
3628  *
3629  * Retrieve memory usage information for a given process
3630  *
3631  */
3632 BOOL WINAPI K32GetProcessMemoryInfo(HANDLE process,
3633                                     PPROCESS_MEMORY_COUNTERS pmc, DWORD cb)
3634 {
3635     NTSTATUS status;
3636     VM_COUNTERS vmc;
3637
3638     if (cb < sizeof(PROCESS_MEMORY_COUNTERS))
3639     {
3640         SetLastError(ERROR_INSUFFICIENT_BUFFER);
3641         return FALSE;
3642     }
3643
3644     status = NtQueryInformationProcess(process, ProcessVmCounters,
3645                                        &vmc, sizeof(vmc), NULL);
3646
3647     if (status)
3648     {
3649         SetLastError(RtlNtStatusToDosError(status));
3650         return FALSE;
3651     }
3652
3653     pmc->cb = sizeof(PROCESS_MEMORY_COUNTERS);
3654     pmc->PageFaultCount = vmc.PageFaultCount;
3655     pmc->PeakWorkingSetSize = vmc.PeakWorkingSetSize;
3656     pmc->WorkingSetSize = vmc.WorkingSetSize;
3657     pmc->QuotaPeakPagedPoolUsage = vmc.QuotaPeakPagedPoolUsage;
3658     pmc->QuotaPagedPoolUsage = vmc.QuotaPagedPoolUsage;
3659     pmc->QuotaPeakNonPagedPoolUsage = vmc.QuotaPeakNonPagedPoolUsage;
3660     pmc->QuotaNonPagedPoolUsage = vmc.QuotaNonPagedPoolUsage;
3661     pmc->PagefileUsage = vmc.PagefileUsage;
3662     pmc->PeakPagefileUsage = vmc.PeakPagefileUsage;
3663
3664     return TRUE;
3665 }
3666
3667 /***********************************************************************
3668  * ProcessIdToSessionId   (KERNEL32.@)
3669  * This function is available on Terminal Server 4SP4 and Windows 2000
3670  */
3671 BOOL WINAPI ProcessIdToSessionId( DWORD procid, DWORD *sessionid_ptr )
3672 {
3673     /* According to MSDN, if the calling process is not in a terminal
3674      * services environment, then the sessionid returned is zero.
3675      */
3676     *sessionid_ptr = 0;
3677     return TRUE;
3678 }
3679
3680
3681 /***********************************************************************
3682  *              RegisterServiceProcess (KERNEL32.@)
3683  *
3684  * A service process calls this function to ensure that it continues to run
3685  * even after a user logged off.
3686  */
3687 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
3688 {
3689     /* I don't think that Wine needs to do anything in this function */
3690     return 1; /* success */
3691 }
3692
3693
3694 /**********************************************************************
3695  *           IsWow64Process         (KERNEL32.@)
3696  */
3697 BOOL WINAPI IsWow64Process(HANDLE hProcess, PBOOL Wow64Process)
3698 {
3699     ULONG pbi;
3700     NTSTATUS status;
3701
3702     status = NtQueryInformationProcess( hProcess, ProcessWow64Information, &pbi, sizeof(pbi), NULL );
3703
3704     if (status != STATUS_SUCCESS)
3705     {
3706         SetLastError( RtlNtStatusToDosError( status ) );
3707         return FALSE;
3708     }
3709     *Wow64Process = (pbi != 0);
3710     return TRUE;
3711 }
3712
3713
3714 /***********************************************************************
3715  *           GetCurrentProcess   (KERNEL32.@)
3716  *
3717  * Get a handle to the current process.
3718  *
3719  * PARAMS
3720  *  None.
3721  *
3722  * RETURNS
3723  *  A handle representing the current process.
3724  */
3725 #undef GetCurrentProcess
3726 HANDLE WINAPI GetCurrentProcess(void)
3727 {
3728     return (HANDLE)~(ULONG_PTR)0;
3729 }
3730
3731 /***********************************************************************
3732  *           GetLogicalProcessorInformation     (KERNEL32.@)
3733  */
3734 BOOL WINAPI GetLogicalProcessorInformation(PSYSTEM_LOGICAL_PROCESSOR_INFORMATION buffer, PDWORD pBufLen)
3735 {
3736     NTSTATUS status;
3737
3738     TRACE("(%p,%p)\n", buffer, pBufLen);
3739
3740     if(!pBufLen)
3741     {
3742         SetLastError(ERROR_INVALID_PARAMETER);
3743         return FALSE;
3744     }
3745
3746     status = NtQuerySystemInformation( SystemLogicalProcessorInformation, buffer, *pBufLen, pBufLen);
3747
3748     if (status == STATUS_INFO_LENGTH_MISMATCH)
3749     {
3750         SetLastError( ERROR_INSUFFICIENT_BUFFER );
3751         return FALSE;
3752     }
3753     if (status != STATUS_SUCCESS)
3754     {
3755         SetLastError( RtlNtStatusToDosError( status ) );
3756         return FALSE;
3757     }
3758     return TRUE;
3759 }
3760
3761 /***********************************************************************
3762  *           GetLogicalProcessorInformationEx   (KERNEL32.@)
3763  */
3764 BOOL WINAPI GetLogicalProcessorInformationEx(LOGICAL_PROCESSOR_RELATIONSHIP relationship, PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX buffer, PDWORD pBufLen)
3765 {
3766     FIXME("(%u,%p,%p): stub\n", relationship, buffer, pBufLen);
3767     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3768     return FALSE;
3769 }
3770
3771 /***********************************************************************
3772  *           CmdBatNotification   (KERNEL32.@)
3773  *
3774  * Notifies the system that a batch file has started or finished.
3775  *
3776  * PARAMS
3777  *  bBatchRunning [I]  TRUE if a batch file has started or 
3778  *                     FALSE if a batch file has finished executing.
3779  *
3780  * RETURNS
3781  *  Unknown.
3782  */
3783 BOOL WINAPI CmdBatNotification( BOOL bBatchRunning )
3784 {
3785     FIXME("%d\n", bBatchRunning);
3786     return FALSE;
3787 }
3788
3789
3790 /***********************************************************************
3791  *           RegisterApplicationRestart       (KERNEL32.@)
3792  */
3793 HRESULT WINAPI RegisterApplicationRestart(PCWSTR pwzCommandLine, DWORD dwFlags)
3794 {
3795     FIXME("(%s,%d)\n", debugstr_w(pwzCommandLine), dwFlags);
3796
3797     return S_OK;
3798 }
3799
3800 /**********************************************************************
3801  *           WTSGetActiveConsoleSessionId     (KERNEL32.@)
3802  */
3803 DWORD WINAPI WTSGetActiveConsoleSessionId(void)
3804 {
3805     FIXME("stub\n");
3806     return 0;
3807 }
3808
3809 /**********************************************************************
3810  *           GetSystemDEPPolicy     (KERNEL32.@)
3811  */
3812 DEP_SYSTEM_POLICY_TYPE WINAPI GetSystemDEPPolicy(void)
3813 {
3814     FIXME("stub\n");
3815     return OptIn;
3816 }
3817
3818 /**********************************************************************
3819  *           SetProcessDEPPolicy     (KERNEL32.@)
3820  */
3821 BOOL WINAPI SetProcessDEPPolicy(DWORD newDEP)
3822 {
3823     FIXME("(%d): stub\n", newDEP);
3824     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3825     return FALSE;
3826 }
3827
3828 /**********************************************************************
3829  *           ApplicationRecoveryFinished     (KERNEL32.@)
3830  */
3831 VOID WINAPI ApplicationRecoveryFinished(BOOL success)
3832 {
3833     FIXME(": stub\n");
3834     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3835 }
3836
3837 /**********************************************************************
3838  *           ApplicationRecoveryInProgress     (KERNEL32.@)
3839  */
3840 HRESULT WINAPI ApplicationRecoveryInProgress(PBOOL canceled)
3841 {
3842     FIXME(":%p stub\n", canceled);
3843     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3844     return E_FAIL;
3845 }
3846
3847 /**********************************************************************
3848  *           RegisterApplicationRecoveryCallback     (KERNEL32.@)
3849  */
3850 HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK callback, PVOID param, DWORD pingint, DWORD flags)
3851 {
3852     FIXME("%p, %p, %d, %d: stub\n", callback, param, pingint, flags);
3853     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3854     return E_FAIL;
3855 }
3856
3857 /**********************************************************************
3858  *           GetNumaHighestNodeNumber     (KERNEL32.@)
3859  */
3860 BOOL WINAPI GetNumaHighestNodeNumber(PULONG highestnode)
3861 {
3862     FIXME("(%p): stub\n", highestnode);
3863     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3864     return FALSE;
3865 }
3866
3867 /**********************************************************************
3868  *           GetNumaNodeProcessorMask     (KERNEL32.@)
3869  */
3870 BOOL WINAPI GetNumaNodeProcessorMask(UCHAR node, PULONGLONG mask)
3871 {
3872     FIXME("(%c %p): stub\n", node, mask);
3873     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3874     return FALSE;
3875 }
3876
3877 /**********************************************************************
3878  *           GetNumaAvailableMemoryNode     (KERNEL32.@)
3879  */
3880 BOOL WINAPI GetNumaAvailableMemoryNode(UCHAR node, PULONGLONG available_bytes)
3881 {
3882     FIXME("(%c %p): stub\n", node, available_bytes);
3883     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3884     return FALSE;
3885 }
3886
3887 /**********************************************************************
3888  *           GetProcessDEPPolicy     (KERNEL32.@)
3889  */
3890 BOOL WINAPI GetProcessDEPPolicy(HANDLE process, LPDWORD flags, PBOOL permanent)
3891 {
3892     FIXME("(%p %p %p): stub\n", process, flags, permanent);
3893     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3894     return FALSE;
3895 }
3896
3897 /**********************************************************************
3898  *           FlushProcessWriteBuffers     (KERNEL32.@)
3899  */
3900 VOID WINAPI FlushProcessWriteBuffers(void)
3901 {
3902     static int once = 0;
3903
3904     if (!once++)
3905         FIXME(": stub\n");
3906 }