4 * Copyright 1996, 1998 Alexandre Julliard
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.
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.
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
22 #include "wine/port.h"
30 #ifdef HAVE_SYS_TIME_H
31 # include <sys/time.h>
33 #ifdef HAVE_SYS_IOCTL_H
34 #include <sys/ioctl.h>
36 #ifdef HAVE_SYS_SOCKET_H
37 #include <sys/socket.h>
39 #ifdef HAVE_SYS_PRCTL_H
40 # include <sys/prctl.h>
42 #include <sys/types.h>
45 #define WIN32_NO_STATUS
46 #include "wine/winbase16.h"
47 #include "wine/winuser16.h"
49 #include "kernel_private.h"
50 #include "wine/exception.h"
51 #include "wine/server.h"
52 #include "wine/unicode.h"
53 #include "wine/debug.h"
55 WINE_DEFAULT_DEBUG_CHANNEL(process);
56 WINE_DECLARE_DEBUG_CHANNEL(file);
57 WINE_DECLARE_DEBUG_CHANNEL(relay);
67 static UINT process_error_mode;
69 static DWORD shutdown_flags = 0;
70 static DWORD shutdown_priority = 0x280;
71 static DWORD process_dword;
73 HMODULE kernel32_handle = 0;
75 const WCHAR *DIR_Windows = NULL;
76 const WCHAR *DIR_System = NULL;
79 #define PDB32_DEBUGGED 0x0001 /* Process is being debugged */
80 #define PDB32_WIN16_PROC 0x0008 /* Win16 process */
81 #define PDB32_DOS_PROC 0x0010 /* Dos process */
82 #define PDB32_CONSOLE_PROC 0x0020 /* Console process */
83 #define PDB32_FILE_APIS_OEM 0x0040 /* File APIs are OEM */
84 #define PDB32_WIN32S_PROC 0x8000 /* Win32s process */
86 static const WCHAR comW[] = {'.','c','o','m',0};
87 static const WCHAR batW[] = {'.','b','a','t',0};
88 static const WCHAR cmdW[] = {'.','c','m','d',0};
89 static const WCHAR pifW[] = {'.','p','i','f',0};
90 static const WCHAR winevdmW[] = {'w','i','n','e','v','d','m','.','e','x','e',0};
92 static void exec_process( LPCWSTR name );
94 extern void SHELL_LoadRegistry(void);
97 /***********************************************************************
100 static inline int contains_path( LPCWSTR name )
102 return ((*name && (name[1] == ':')) || strchrW(name, '/') || strchrW(name, '\\'));
106 /***********************************************************************
109 * Check if an environment variable needs to be handled specially when
110 * passed through the Unix environment (i.e. prefixed with "WINE").
112 static inline int is_special_env_var( const char *var )
114 return (!strncmp( var, "PATH=", sizeof("PATH=")-1 ) ||
115 !strncmp( var, "HOME=", sizeof("HOME=")-1 ) ||
116 !strncmp( var, "TEMP=", sizeof("TEMP=")-1 ) ||
117 !strncmp( var, "TMP=", sizeof("TMP=")-1 ));
121 /***************************************************************************
124 * Get the path of a builtin module when the native file does not exist.
126 static BOOL get_builtin_path( const WCHAR *libname, const WCHAR *ext, WCHAR *filename, UINT size )
129 UINT len = strlenW( DIR_System );
131 if (contains_path( libname ))
133 if (RtlGetFullPathName_U( libname, size * sizeof(WCHAR),
134 filename, &file_part ) > size * sizeof(WCHAR))
135 return FALSE; /* too long */
137 if (strncmpiW( filename, DIR_System, len ) || filename[len] != '\\')
139 while (filename[len] == '\\') len++;
140 if (filename + len != file_part) return FALSE;
144 if (strlenW(libname) + len + 2 >= size) return FALSE; /* too long */
145 memcpy( filename, DIR_System, len * sizeof(WCHAR) );
146 file_part = filename + len;
147 if (file_part > filename && file_part[-1] != '\\') *file_part++ = '\\';
148 strcpyW( file_part, libname );
150 if (ext && !strchrW( file_part, '.' ))
152 if (file_part + strlenW(file_part) + strlenW(ext) + 1 > filename + size)
153 return FALSE; /* too long */
154 strcatW( file_part, ext );
160 /***********************************************************************
161 * open_builtin_exe_file
163 * Open an exe file for a builtin exe.
165 static void *open_builtin_exe_file( const WCHAR *name, char *error, int error_size,
166 int test_only, int *file_exists )
168 char exename[MAX_PATH];
173 if ((p = strrchrW( name, '/' ))) name = p + 1;
174 if ((p = strrchrW( name, '\\' ))) name = p + 1;
176 /* we don't want to depend on the current codepage here */
177 len = strlenW( name ) + 1;
178 if (len >= sizeof(exename)) return NULL;
179 for (i = 0; i < len; i++)
181 if (name[i] > 127) return NULL;
182 exename[i] = (char)name[i];
183 if (exename[i] >= 'A' && exename[i] <= 'Z') exename[i] += 'a' - 'A';
185 return wine_dll_load_main_exe( exename, error, error_size, test_only, file_exists );
189 /***********************************************************************
192 * Open a specific exe file, taking load order into account.
193 * Returns the file handle or 0 for a builtin exe.
195 static HANDLE open_exe_file( const WCHAR *name )
199 TRACE("looking for %s\n", debugstr_w(name) );
201 if ((handle = CreateFileW( name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_DELETE,
202 NULL, OPEN_EXISTING, 0, 0 )) == INVALID_HANDLE_VALUE)
204 WCHAR buffer[MAX_PATH];
205 /* file doesn't exist, check for builtin */
206 if (!contains_path( name )) goto error;
207 if (!get_builtin_path( name, NULL, buffer, sizeof(buffer) )) goto error;
213 SetLastError( ERROR_FILE_NOT_FOUND );
214 return INVALID_HANDLE_VALUE;
218 /***********************************************************************
221 * Open an exe file, and return the full name and file handle.
222 * Returns FALSE if file could not be found.
223 * If file exists but cannot be opened, returns TRUE and set handle to INVALID_HANDLE_VALUE.
224 * If file is a builtin exe, returns TRUE and sets handle to 0.
226 static BOOL find_exe_file( const WCHAR *name, WCHAR *buffer, int buflen, HANDLE *handle )
228 static const WCHAR exeW[] = {'.','e','x','e',0};
231 TRACE("looking for %s\n", debugstr_w(name) );
233 if (!SearchPathW( NULL, name, exeW, buflen, buffer, NULL ) &&
234 !get_builtin_path( name, exeW, buffer, buflen ))
236 /* no builtin found, try native without extension in case it is a Unix app */
238 if (SearchPathW( NULL, name, NULL, buflen, buffer, NULL ))
240 TRACE( "Trying native/Unix binary %s\n", debugstr_w(buffer) );
241 if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_DELETE,
242 NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
248 TRACE( "Trying native exe %s\n", debugstr_w(buffer) );
249 if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_DELETE,
250 NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
253 TRACE( "Trying built-in exe %s\n", debugstr_w(buffer) );
254 open_builtin_exe_file( buffer, NULL, 0, 1, &file_exists );
265 /***********************************************************************
266 * build_initial_environment
268 * Build the Win32 environment from the Unix environment
270 static BOOL build_initial_environment( char **environ )
277 /* Compute the total size of the Unix environment */
278 for (e = environ; *e; e++)
280 if (is_special_env_var( *e )) continue;
281 size += MultiByteToWideChar( CP_UNIXCP, 0, *e, -1, NULL, 0 );
283 size *= sizeof(WCHAR);
285 /* Now allocate the environment */
287 if (NtAllocateVirtualMemory(NtCurrentProcess(), &ptr, 0, &size,
288 MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE) != STATUS_SUCCESS)
291 NtCurrentTeb()->Peb->ProcessParameters->Environment = p = ptr;
292 endptr = p + size / sizeof(WCHAR);
294 /* And fill it with the Unix environment */
295 for (e = environ; *e; e++)
299 /* skip Unix special variables and use the Wine variants instead */
300 if (!strncmp( str, "WINE", 4 ))
302 if (is_special_env_var( str + 4 )) str += 4;
303 else if (!strncmp( str, "WINEPRELOADRESERVE=", 19 )) continue; /* skip it */
305 else if (is_special_env_var( str )) continue; /* skip it */
307 MultiByteToWideChar( CP_UNIXCP, 0, str, -1, p, endptr - p );
315 /***********************************************************************
316 * set_registry_variables
318 * Set environment variables by enumerating the values of a key;
319 * helper for set_registry_environment().
320 * Note that Windows happily truncates the value if it's too big.
322 static void set_registry_variables( HANDLE hkey, ULONG type )
324 UNICODE_STRING env_name, env_value;
328 char buffer[1024*sizeof(WCHAR) + sizeof(KEY_VALUE_FULL_INFORMATION)];
329 KEY_VALUE_FULL_INFORMATION *info = (KEY_VALUE_FULL_INFORMATION *)buffer;
331 for (index = 0; ; index++)
333 status = NtEnumerateValueKey( hkey, index, KeyValueFullInformation,
334 buffer, sizeof(buffer), &size );
335 if (status != STATUS_SUCCESS && status != STATUS_BUFFER_OVERFLOW)
337 if (info->Type != type)
339 env_name.Buffer = info->Name;
340 env_name.Length = env_name.MaximumLength = info->NameLength;
341 env_value.Buffer = (WCHAR *)(buffer + info->DataOffset);
342 env_value.Length = env_value.MaximumLength = info->DataLength;
343 if (env_value.Length && !env_value.Buffer[env_value.Length/sizeof(WCHAR)-1])
344 env_value.Length -= sizeof(WCHAR); /* don't count terminating null if any */
345 if (info->Type == REG_EXPAND_SZ)
347 WCHAR buf_expanded[1024];
348 UNICODE_STRING env_expanded;
349 env_expanded.Length = env_expanded.MaximumLength = sizeof(buf_expanded);
350 env_expanded.Buffer=buf_expanded;
351 status = RtlExpandEnvironmentStrings_U(NULL, &env_value, &env_expanded, NULL);
352 if (status == STATUS_SUCCESS || status == STATUS_BUFFER_OVERFLOW)
353 RtlSetEnvironmentVariable( NULL, &env_name, &env_expanded );
357 RtlSetEnvironmentVariable( NULL, &env_name, &env_value );
363 /***********************************************************************
364 * set_registry_environment
366 * Set the environment variables specified in the registry.
368 * Note: Windows handles REG_SZ and REG_EXPAND_SZ in one pass with the
369 * consequence that REG_EXPAND_SZ cannot be used reliably as it depends
370 * on the order in which the variables are processed. But on Windows it
371 * does not really matter since they only use %SystemDrive% and
372 * %SystemRoot% which are predefined. But Wine defines these in the
373 * registry, so we need two passes.
375 static BOOL set_registry_environment(void)
377 static const WCHAR env_keyW[] = {'M','a','c','h','i','n','e','\\',
378 'S','y','s','t','e','m','\\',
379 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
380 'C','o','n','t','r','o','l','\\',
381 'S','e','s','s','i','o','n',' ','M','a','n','a','g','e','r','\\',
382 'E','n','v','i','r','o','n','m','e','n','t',0};
383 static const WCHAR envW[] = {'E','n','v','i','r','o','n','m','e','n','t',0};
385 OBJECT_ATTRIBUTES attr;
386 UNICODE_STRING nameW;
390 attr.Length = sizeof(attr);
391 attr.RootDirectory = 0;
392 attr.ObjectName = &nameW;
394 attr.SecurityDescriptor = NULL;
395 attr.SecurityQualityOfService = NULL;
397 /* first the system environment variables */
398 RtlInitUnicodeString( &nameW, env_keyW );
399 if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr ) == STATUS_SUCCESS)
401 set_registry_variables( hkey, REG_SZ );
402 set_registry_variables( hkey, REG_EXPAND_SZ );
407 /* then the ones for the current user */
408 if (RtlOpenCurrentUser( KEY_ALL_ACCESS, &attr.RootDirectory ) != STATUS_SUCCESS) return ret;
409 RtlInitUnicodeString( &nameW, envW );
410 if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr ) == STATUS_SUCCESS)
412 set_registry_variables( hkey, REG_SZ );
413 set_registry_variables( hkey, REG_EXPAND_SZ );
416 NtClose( attr.RootDirectory );
421 /***********************************************************************
424 static WCHAR *get_reg_value( HKEY hkey, const WCHAR *name )
426 char buffer[1024 * sizeof(WCHAR) + sizeof(KEY_VALUE_PARTIAL_INFORMATION)];
427 KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)buffer;
428 DWORD len, size = sizeof(buffer);
430 UNICODE_STRING nameW;
432 RtlInitUnicodeString( &nameW, name );
433 if (NtQueryValueKey( hkey, &nameW, KeyValuePartialInformation, buffer, size, &size ))
436 if (size <= FIELD_OFFSET( KEY_VALUE_PARTIAL_INFORMATION, Data )) return NULL;
437 len = (size - FIELD_OFFSET( KEY_VALUE_PARTIAL_INFORMATION, Data )) / sizeof(WCHAR);
439 if (info->Type == REG_EXPAND_SZ)
441 UNICODE_STRING value, expanded;
443 value.MaximumLength = len * sizeof(WCHAR);
444 value.Buffer = (WCHAR *)info->Data;
445 if (!value.Buffer[len - 1]) len--; /* don't count terminating null if any */
446 value.Length = len * sizeof(WCHAR);
447 expanded.Length = expanded.MaximumLength = 1024 * sizeof(WCHAR);
448 if (!(expanded.Buffer = HeapAlloc( GetProcessHeap(), 0, expanded.MaximumLength ))) return NULL;
449 if (!RtlExpandEnvironmentStrings_U( NULL, &value, &expanded, NULL )) ret = expanded.Buffer;
450 else RtlFreeUnicodeString( &expanded );
452 else if (info->Type == REG_SZ)
454 if ((ret = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) )))
456 memcpy( ret, info->Data, len * sizeof(WCHAR) );
464 /***********************************************************************
465 * set_additional_environment
467 * Set some additional environment variables not specified in the registry.
469 static void set_additional_environment(void)
471 static const WCHAR profile_keyW[] = {'M','a','c','h','i','n','e','\\',
472 'S','o','f','t','w','a','r','e','\\',
473 'M','i','c','r','o','s','o','f','t','\\',
474 'W','i','n','d','o','w','s',' ','N','T','\\',
475 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
476 'P','r','o','f','i','l','e','L','i','s','t',0};
477 static const WCHAR profiles_valueW[] = {'P','r','o','f','i','l','e','s','D','i','r','e','c','t','o','r','y',0};
478 static const WCHAR all_users_valueW[] = {'A','l','l','U','s','e','r','s','P','r','o','f','i','l','e','\0'};
479 static const WCHAR usernameW[] = {'U','S','E','R','N','A','M','E',0};
480 static const WCHAR userprofileW[] = {'U','S','E','R','P','R','O','F','I','L','E',0};
481 static const WCHAR allusersW[] = {'A','L','L','U','S','E','R','S','P','R','O','F','I','L','E',0};
482 OBJECT_ATTRIBUTES attr;
483 UNICODE_STRING nameW;
484 WCHAR *user_name = NULL, *profile_dir = NULL, *all_users_dir = NULL;
486 const char *name = wine_get_user_name();
489 /* set the USERNAME variable */
491 len = MultiByteToWideChar( CP_UNIXCP, 0, name, -1, NULL, 0 );
494 user_name = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
495 MultiByteToWideChar( CP_UNIXCP, 0, name, -1, user_name, len );
496 SetEnvironmentVariableW( usernameW, user_name );
498 else WARN( "user name %s not convertible.\n", debugstr_a(name) );
500 /* set the USERPROFILE and ALLUSERSPROFILE variables */
502 attr.Length = sizeof(attr);
503 attr.RootDirectory = 0;
504 attr.ObjectName = &nameW;
506 attr.SecurityDescriptor = NULL;
507 attr.SecurityQualityOfService = NULL;
508 RtlInitUnicodeString( &nameW, profile_keyW );
509 if (!NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr ))
511 profile_dir = get_reg_value( hkey, profiles_valueW );
512 all_users_dir = get_reg_value( hkey, all_users_valueW );
520 if (all_users_dir) len = max( len, strlenW(all_users_dir) + 1 );
521 len += strlenW(profile_dir) + 1;
522 value = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
523 strcpyW( value, profile_dir );
524 p = value + strlenW(value);
525 if (p > value && p[-1] != '\\') *p++ = '\\';
527 strcpyW( p, user_name );
528 SetEnvironmentVariableW( userprofileW, value );
532 strcpyW( p, all_users_dir );
533 SetEnvironmentVariableW( allusersW, value );
535 HeapFree( GetProcessHeap(), 0, value );
538 HeapFree( GetProcessHeap(), 0, all_users_dir );
539 HeapFree( GetProcessHeap(), 0, profile_dir );
540 HeapFree( GetProcessHeap(), 0, user_name );
543 /***********************************************************************
546 * Set the Wine library Unicode argv global variables.
548 static void set_library_wargv( char **argv )
556 for (argc = 0; argv[argc]; argc++)
557 total += MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, NULL, 0 );
559 wargv = RtlAllocateHeap( GetProcessHeap(), 0,
560 total * sizeof(WCHAR) + (argc + 1) * sizeof(*wargv) );
561 p = (WCHAR *)(wargv + argc + 1);
562 for (argc = 0; argv[argc]; argc++)
564 DWORD reslen = MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, p, total );
571 /* convert argv back from Unicode since it has to be in the Ansi codepage not the Unix one */
573 for (argc = 0; wargv[argc]; argc++)
574 total += WideCharToMultiByte( CP_ACP, 0, wargv[argc], -1, NULL, 0, NULL, NULL );
576 argv = RtlAllocateHeap( GetProcessHeap(), 0, total + (argc + 1) * sizeof(*argv) );
577 q = (char *)(argv + argc + 1);
578 for (argc = 0; wargv[argc]; argc++)
580 DWORD reslen = WideCharToMultiByte( CP_ACP, 0, wargv[argc], -1, q, total, NULL, NULL );
587 __wine_main_argc = argc;
588 __wine_main_argv = argv;
589 __wine_main_wargv = wargv;
593 /***********************************************************************
596 * Build the command line of a process from the argv array.
598 * Note that it does NOT necessarily include the file name.
599 * Sometimes we don't even have any command line options at all.
601 * We must quote and escape characters so that the argv array can be rebuilt
602 * from the command line:
603 * - spaces and tabs must be quoted
605 * - quotes must be escaped
607 * - if '\'s are followed by a '"', they must be doubled and followed by '\"',
608 * resulting in an odd number of '\' followed by a '"'
611 * - '\'s that are not followed by a '"' can be left as is
615 static BOOL build_command_line( WCHAR **argv )
620 RTL_USER_PROCESS_PARAMETERS* rupp = NtCurrentTeb()->Peb->ProcessParameters;
622 if (rupp->CommandLine.Buffer) return TRUE; /* already got it from the server */
625 for (arg = argv; *arg; arg++)
627 int has_space,bcount;
633 if( !*a ) has_space=1;
638 if (*a==' ' || *a=='\t') {
640 } else if (*a=='"') {
641 /* doubling of '\' preceding a '"',
642 * plus escaping of said '"'
650 len+=(a-*arg)+1 /* for the separating space */;
652 len+=2; /* for the quotes */
655 if (!(rupp->CommandLine.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, len * sizeof(WCHAR))))
658 p = rupp->CommandLine.Buffer;
659 rupp->CommandLine.Length = (len - 1) * sizeof(WCHAR);
660 rupp->CommandLine.MaximumLength = len * sizeof(WCHAR);
661 for (arg = argv; *arg; arg++)
663 int has_space,has_quote;
666 /* Check for quotes and spaces in this argument */
667 has_space=has_quote=0;
669 if( !*a ) has_space=1;
671 if (*a==' ' || *a=='\t') {
675 } else if (*a=='"') {
683 /* Now transfer it to the command line */
700 /* Double all the '\\' preceding this '"', plus one */
701 for (i=0;i<=bcount;i++)
713 while ((*p=*x++)) p++;
719 if (p > rupp->CommandLine.Buffer)
720 p--; /* remove last space */
727 /***********************************************************************
728 * init_current_directory
730 * Initialize the current directory from the Unix cwd or the parent info.
732 static void init_current_directory( CURDIR *cur_dir )
734 UNICODE_STRING dir_str;
738 /* if we received a cur dir from the parent, try this first */
740 if (cur_dir->DosPath.Length)
742 if (RtlSetCurrentDirectory_U( &cur_dir->DosPath ) == STATUS_SUCCESS) goto done;
745 /* now try to get it from the Unix cwd */
747 for (size = 256; ; size *= 2)
749 if (!(cwd = HeapAlloc( GetProcessHeap(), 0, size ))) break;
750 if (getcwd( cwd, size )) break;
751 HeapFree( GetProcessHeap(), 0, cwd );
752 if (errno == ERANGE) continue;
760 int lenW = MultiByteToWideChar( CP_UNIXCP, 0, cwd, -1, NULL, 0 );
761 if ((dirW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) )))
763 MultiByteToWideChar( CP_UNIXCP, 0, cwd, -1, dirW, lenW );
764 RtlInitUnicodeString( &dir_str, dirW );
765 RtlSetCurrentDirectory_U( &dir_str );
766 RtlFreeUnicodeString( &dir_str );
770 if (!cur_dir->DosPath.Length) /* still not initialized */
772 MESSAGE("Warning: could not find DOS drive for current working directory '%s', "
773 "starting in the Windows directory.\n", cwd ? cwd : "" );
774 RtlInitUnicodeString( &dir_str, DIR_Windows );
775 RtlSetCurrentDirectory_U( &dir_str );
777 HeapFree( GetProcessHeap(), 0, cwd );
780 if (!cur_dir->Handle) chdir("/"); /* change to root directory so as not to lock cdroms */
781 TRACE( "starting in %s %p\n", debugstr_w( cur_dir->DosPath.Buffer ), cur_dir->Handle );
785 /***********************************************************************
788 * Initialize the windows and system directories from the environment.
790 static void init_windows_dirs(void)
792 extern void CDECL __wine_init_windows_dir( const WCHAR *windir, const WCHAR *sysdir );
794 static const WCHAR windirW[] = {'w','i','n','d','i','r',0};
795 static const WCHAR winsysdirW[] = {'w','i','n','s','y','s','d','i','r',0};
796 static const WCHAR default_windirW[] = {'C',':','\\','w','i','n','d','o','w','s',0};
797 static const WCHAR default_sysdirW[] = {'\\','s','y','s','t','e','m','3','2',0};
802 if ((len = GetEnvironmentVariableW( windirW, NULL, 0 )))
804 buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
805 GetEnvironmentVariableW( windirW, buffer, len );
806 DIR_Windows = buffer;
808 else DIR_Windows = default_windirW;
810 if ((len = GetEnvironmentVariableW( winsysdirW, NULL, 0 )))
812 buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
813 GetEnvironmentVariableW( winsysdirW, buffer, len );
818 len = strlenW( DIR_Windows );
819 buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) + sizeof(default_sysdirW) );
820 memcpy( buffer, DIR_Windows, len * sizeof(WCHAR) );
821 memcpy( buffer + len, default_sysdirW, sizeof(default_sysdirW) );
825 if (!CreateDirectoryW( DIR_Windows, NULL ) && GetLastError() != ERROR_ALREADY_EXISTS)
826 ERR( "directory %s could not be created, error %u\n",
827 debugstr_w(DIR_Windows), GetLastError() );
828 if (!CreateDirectoryW( DIR_System, NULL ) && GetLastError() != ERROR_ALREADY_EXISTS)
829 ERR( "directory %s could not be created, error %u\n",
830 debugstr_w(DIR_System), GetLastError() );
832 TRACE_(file)( "WindowsDir = %s\n", debugstr_w(DIR_Windows) );
833 TRACE_(file)( "SystemDir = %s\n", debugstr_w(DIR_System) );
835 /* set the directories in ntdll too */
836 __wine_init_windows_dir( DIR_Windows, DIR_System );
840 /***********************************************************************
843 * Start the wineboot process if necessary. Return the event to wait on.
845 static HANDLE start_wineboot(void)
847 static const WCHAR wineboot_eventW[] = {'_','_','w','i','n','e','b','o','o','t','_','e','v','e','n','t',0};
850 if (!(event = CreateEventW( NULL, TRUE, FALSE, wineboot_eventW )))
852 ERR( "failed to create wineboot event, expect trouble\n" );
855 if (GetLastError() != ERROR_ALREADY_EXISTS) /* we created it */
857 static const WCHAR command_line[] = {'\\','w','i','n','e','b','o','o','t','.','e','x','e',' ','-','-','i','n','i','t',0};
859 PROCESS_INFORMATION pi;
860 WCHAR cmdline[MAX_PATH + sizeof(command_line)/sizeof(WCHAR)];
862 memset( &si, 0, sizeof(si) );
864 si.dwFlags = STARTF_USESTDHANDLES;
867 si.hStdError = GetStdHandle( STD_ERROR_HANDLE );
869 GetSystemDirectoryW( cmdline, MAX_PATH );
870 lstrcatW( cmdline, command_line );
871 if (CreateProcessW( NULL, cmdline, NULL, NULL, FALSE, DETACHED_PROCESS, NULL, NULL, &si, &pi ))
873 TRACE( "started wineboot pid %04x tid %04x\n", pi.dwProcessId, pi.dwThreadId );
874 CloseHandle( pi.hThread );
875 CloseHandle( pi.hProcess );
878 else ERR( "failed to start wineboot, err %u\n", GetLastError() );
884 /***********************************************************************
887 * Startup routine of a new process. Runs on the new process stack.
889 static void start_process( void *arg )
893 PEB *peb = NtCurrentTeb()->Peb;
894 IMAGE_NT_HEADERS *nt;
895 LPTHREAD_START_ROUTINE entry;
897 nt = RtlImageNtHeader( peb->ImageBaseAddress );
898 entry = (LPTHREAD_START_ROUTINE)((char *)peb->ImageBaseAddress +
899 nt->OptionalHeader.AddressOfEntryPoint);
902 DPRINTF( "%04x:Starting process %s (entryproc=%p)\n", GetCurrentThreadId(),
903 debugstr_w(peb->ProcessParameters->ImagePathName.Buffer), entry );
905 SetLastError( 0 ); /* clear error code */
906 if (peb->BeingDebugged) DbgBreakPoint();
907 ExitThread( entry( peb ) );
909 __EXCEPT(UnhandledExceptionFilter)
911 TerminateThread( GetCurrentThread(), GetExceptionCode() );
917 /***********************************************************************
920 * Change the process name in the ps output.
922 static void set_process_name( int argc, char *argv[] )
924 #ifdef HAVE_SETPROCTITLE
925 setproctitle("-%s", argv[1]);
930 char *p, *prctl_name = argv[1];
931 char *end = argv[argc-1] + strlen(argv[argc-1]) + 1;
934 # define PR_SET_NAME 15
937 if ((p = strrchr( prctl_name, '\\' ))) prctl_name = p + 1;
938 if ((p = strrchr( prctl_name, '/' ))) prctl_name = p + 1;
940 if (prctl( PR_SET_NAME, prctl_name ) != -1)
942 offset = argv[1] - argv[0];
943 memmove( argv[1] - offset, argv[1], end - argv[1] );
944 memset( end - offset, 0, offset );
945 for (i = 1; i < argc; i++) argv[i-1] = argv[i] - offset;
949 #endif /* HAVE_PRCTL */
952 memmove( argv, argv + 1, argc * sizeof(argv[0]) );
957 /***********************************************************************
960 * Wine initialisation: load and start the main exe file.
962 void CDECL __wine_kernel_init(void)
964 static const WCHAR kernel32W[] = {'k','e','r','n','e','l','3','2',0};
965 static const WCHAR dotW[] = {'.',0};
966 static const WCHAR exeW[] = {'.','e','x','e',0};
968 WCHAR *p, main_exe_name[MAX_PATH+1];
969 PEB *peb = NtCurrentTeb()->Peb;
970 RTL_USER_PROCESS_PARAMETERS *params = peb->ProcessParameters;
971 HANDLE boot_event = 0;
972 BOOL got_environment = TRUE;
974 /* Initialize everything */
978 kernel32_handle = GetModuleHandleW(kernel32W);
982 if (!params->Environment)
984 /* Copy the parent environment */
985 if (!build_initial_environment( __wine_main_environ )) exit(1);
987 /* convert old configuration to new format */
988 convert_old_config();
990 got_environment = set_registry_environment();
991 set_additional_environment();
995 init_current_directory( ¶ms->CurrentDirectory );
997 set_process_name( __wine_main_argc, __wine_main_argv );
998 set_library_wargv( __wine_main_argv );
1000 if (peb->ProcessParameters->ImagePathName.Buffer)
1002 strcpyW( main_exe_name, peb->ProcessParameters->ImagePathName.Buffer );
1006 if (!SearchPathW( NULL, __wine_main_wargv[0], exeW, MAX_PATH, main_exe_name, NULL ) &&
1007 !get_builtin_path( __wine_main_wargv[0], exeW, main_exe_name, MAX_PATH ))
1009 MESSAGE( "wine: cannot find '%s'\n", __wine_main_argv[0] );
1010 ExitProcess( GetLastError() );
1012 if (!build_command_line( __wine_main_wargv )) goto error;
1013 boot_event = start_wineboot();
1016 /* if there's no extension, append a dot to prevent LoadLibrary from appending .dll */
1017 p = strrchrW( main_exe_name, '.' );
1018 if (!p || strchrW( p, '/' ) || strchrW( p, '\\' )) strcatW( main_exe_name, dotW );
1020 TRACE( "starting process name=%s argv[0]=%s\n",
1021 debugstr_w(main_exe_name), debugstr_w(__wine_main_wargv[0]) );
1023 RtlInitUnicodeString( &NtCurrentTeb()->Peb->ProcessParameters->DllPath,
1024 MODULE_get_dll_load_path(main_exe_name) );
1028 if (WaitForSingleObject( boot_event, 30000 )) ERR( "boot event wait timed out\n" );
1029 CloseHandle( boot_event );
1030 /* if we didn't find environment section, try again now that wineboot has run */
1031 if (!got_environment)
1033 set_registry_environment();
1034 set_additional_environment();
1038 if (!(peb->ImageBaseAddress = LoadLibraryExW( main_exe_name, 0, DONT_RESOLVE_DLL_REFERENCES )))
1041 DWORD error = GetLastError();
1043 /* if Win16/DOS format, or unavailable address, exec a new process with the proper setup */
1044 if (error == ERROR_BAD_EXE_FORMAT ||
1045 error == ERROR_INVALID_ADDRESS ||
1046 error == ERROR_NOT_ENOUGH_MEMORY)
1048 if (!getenv("WINEPRELOADRESERVE")) exec_process( main_exe_name );
1049 /* if we get back here, it failed */
1052 FormatMessageA( FORMAT_MESSAGE_FROM_SYSTEM, NULL, error, 0, msg, sizeof(msg), NULL );
1053 MESSAGE( "wine: could not load %s: %s", debugstr_w(main_exe_name), msg );
1054 ExitProcess( error );
1057 LdrInitializeThunk( 0, 0, 0, 0 );
1058 /* switch to the new stack */
1059 wine_switch_to_stack( start_process, NULL, NtCurrentTeb()->Tib.StackBase );
1062 ExitProcess( GetLastError() );
1066 /***********************************************************************
1069 * Build an argv array from a command-line.
1070 * 'reserved' is the number of args to reserve before the first one.
1072 static char **build_argv( const WCHAR *cmdlineW, int reserved )
1076 char *arg,*s,*d,*cmdline;
1077 int in_quotes,bcount,len;
1079 len = WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, NULL, 0, NULL, NULL );
1080 if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, len ))) return NULL;
1081 WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, cmdline, len, NULL, NULL );
1088 if (*s=='\0' || ((*s==' ' || *s=='\t') && !in_quotes)) {
1091 /* skip the remaining spaces */
1092 while (*s==' ' || *s=='\t') {
1099 } else if (*s=='\\') {
1100 /* '\', count them */
1102 } else if ((*s=='"') && ((bcount & 1)==0)) {
1104 in_quotes=!in_quotes;
1107 /* a regular character */
1112 if (!(argv = HeapAlloc( GetProcessHeap(), 0, argc*sizeof(*argv) + len )))
1114 HeapFree( GetProcessHeap(), 0, cmdline );
1118 arg = d = s = (char *)(argv + argc);
1119 memcpy( d, cmdline, len );
1124 if ((*s==' ' || *s=='\t') && !in_quotes) {
1125 /* Close the argument and copy it */
1129 /* skip the remaining spaces */
1132 } while (*s==' ' || *s=='\t');
1134 /* Start with a new argument */
1137 } else if (*s=='\\') {
1141 } else if (*s=='"') {
1143 if ((bcount & 1)==0) {
1144 /* Preceded by an even number of '\', this is half that
1145 * number of '\', plus a '"' which we discard.
1149 in_quotes=!in_quotes;
1151 /* Preceded by an odd number of '\', this is half that
1152 * number of '\' followed by a '"'
1160 /* a regular character */
1171 HeapFree( GetProcessHeap(), 0, cmdline );
1176 /***********************************************************************
1179 * Build the environment of a new child process.
1181 static char **build_envp( const WCHAR *envW )
1183 static const char * const unix_vars[] = { "PATH", "TEMP", "TMP", "HOME" };
1188 int count = 0, length;
1191 for (end = envW; *end; count++) end += strlenW(end) + 1;
1193 length = WideCharToMultiByte( CP_UNIXCP, 0, envW, end - envW, NULL, 0, NULL, NULL );
1194 if (!(env = HeapAlloc( GetProcessHeap(), 0, length ))) return NULL;
1195 WideCharToMultiByte( CP_UNIXCP, 0, envW, end - envW, env, length, NULL, NULL );
1197 for (p = env; *p; p += strlen(p) + 1)
1198 if (is_special_env_var( p )) length += 4; /* prefix it with "WINE" */
1200 for (i = 0; i < sizeof(unix_vars)/sizeof(unix_vars[0]); i++)
1202 if (!(p = getenv(unix_vars[i]))) continue;
1203 length += strlen(unix_vars[i]) + strlen(p) + 2;
1207 if ((envp = HeapAlloc( GetProcessHeap(), 0, count * sizeof(*envp) + length )))
1209 char **envptr = envp;
1210 char *dst = (char *)(envp + count);
1212 /* some variables must not be modified, so we get them directly from the unix env */
1213 for (i = 0; i < sizeof(unix_vars)/sizeof(unix_vars[0]); i++)
1215 if (!(p = getenv(unix_vars[i]))) continue;
1216 *envptr++ = strcpy( dst, unix_vars[i] );
1219 dst += strlen(dst) + 1;
1222 /* now put the Windows environment strings */
1223 for (p = env; *p; p += strlen(p) + 1)
1225 if (*p == '=') continue; /* skip drive curdirs, this crashes some unix apps */
1226 if (!strncmp( p, "WINEPRELOADRESERVE=", sizeof("WINEPRELOADRESERVE=")-1 )) continue;
1227 if (!strncmp( p, "WINESERVERSOCKET=", sizeof("WINESERVERSOCKET=")-1 )) continue;
1228 if (is_special_env_var( p )) /* prefix it with "WINE" */
1230 *envptr++ = strcpy( dst, "WINE" );
1235 *envptr++ = strcpy( dst, p );
1237 dst += strlen(dst) + 1;
1241 HeapFree( GetProcessHeap(), 0, env );
1246 /***********************************************************************
1249 * Fork and exec a new Unix binary, checking for errors.
1251 static int fork_and_exec( const char *filename, const WCHAR *cmdline, const WCHAR *env,
1252 const char *newdir, DWORD flags, STARTUPINFOW *startup )
1254 int fd[2], stdin_fd = -1, stdout_fd = -1;
1256 char **argv, **envp;
1258 if (!env) env = GetEnvironmentStringsW();
1262 SetLastError( ERROR_TOO_MANY_OPEN_FILES );
1265 fcntl( fd[1], F_SETFD, 1 ); /* set close on exec */
1267 if (!(flags & (CREATE_NEW_PROCESS_GROUP | CREATE_NEW_CONSOLE | DETACHED_PROCESS)))
1269 HANDLE hstdin, hstdout;
1271 if (startup->dwFlags & STARTF_USESTDHANDLES)
1273 hstdin = startup->hStdInput;
1274 hstdout = startup->hStdOutput;
1278 hstdin = GetStdHandle(STD_INPUT_HANDLE);
1279 hstdout = GetStdHandle(STD_OUTPUT_HANDLE);
1282 if (is_console_handle( hstdin ))
1283 hstdin = wine_server_ptr_handle( console_handle_unmap( hstdin ));
1284 if (is_console_handle( hstdout ))
1285 hstdout = wine_server_ptr_handle( console_handle_unmap( hstdout ));
1286 wine_server_handle_to_fd( hstdin, FILE_READ_DATA, &stdin_fd, NULL );
1287 wine_server_handle_to_fd( hstdout, FILE_WRITE_DATA, &stdout_fd, NULL );
1290 argv = build_argv( cmdline, 0 );
1291 envp = build_envp( env );
1293 if (!(pid = fork())) /* child */
1297 if (flags & (CREATE_NEW_PROCESS_GROUP | CREATE_NEW_CONSOLE | DETACHED_PROCESS))
1300 if (!(pid = fork()))
1302 int fd = open( "/dev/null", O_RDWR );
1304 /* close stdin and stdout */
1312 else if (pid != -1) _exit(0); /* parent */
1318 dup2( stdin_fd, 0 );
1321 if (stdout_fd != -1)
1323 dup2( stdout_fd, 1 );
1328 /* Reset signals that we previously set to SIG_IGN */
1329 signal( SIGPIPE, SIG_DFL );
1330 signal( SIGCHLD, SIG_DFL );
1332 if (newdir) chdir(newdir);
1334 if (argv && envp) execve( filename, argv, envp );
1336 write( fd[1], &err, sizeof(err) );
1339 HeapFree( GetProcessHeap(), 0, argv );
1340 HeapFree( GetProcessHeap(), 0, envp );
1341 if (stdin_fd != -1) close( stdin_fd );
1342 if (stdout_fd != -1) close( stdout_fd );
1344 if ((pid != -1) && (read( fd[0], &err, sizeof(err) ) > 0)) /* exec failed */
1349 if (pid == -1) FILE_SetDosError();
1355 /***********************************************************************
1356 * create_user_params
1358 static RTL_USER_PROCESS_PARAMETERS *create_user_params( LPCWSTR filename, LPCWSTR cmdline,
1359 LPCWSTR cur_dir, LPWSTR env, DWORD flags,
1360 const STARTUPINFOW *startup )
1362 RTL_USER_PROCESS_PARAMETERS *params;
1363 UNICODE_STRING image_str, cmdline_str, curdir_str, desktop, title, runtime, newdir;
1365 WCHAR buffer[MAX_PATH];
1367 if(!GetLongPathNameW( filename, buffer, MAX_PATH ))
1368 lstrcpynW( buffer, filename, MAX_PATH );
1369 if(!GetFullPathNameW( buffer, MAX_PATH, buffer, NULL ))
1370 lstrcpynW( buffer, filename, MAX_PATH );
1371 RtlInitUnicodeString( &image_str, buffer );
1373 RtlInitUnicodeString( &cmdline_str, cmdline );
1374 newdir.Buffer = NULL;
1377 if (RtlDosPathNameToNtPathName_U( cur_dir, &newdir, NULL, NULL ))
1379 /* skip \??\ prefix */
1380 curdir_str.Buffer = newdir.Buffer + 4;
1381 curdir_str.Length = newdir.Length - 4 * sizeof(WCHAR);
1382 curdir_str.MaximumLength = newdir.MaximumLength - 4 * sizeof(WCHAR);
1384 else cur_dir = NULL;
1386 if (startup->lpDesktop) RtlInitUnicodeString( &desktop, startup->lpDesktop );
1387 if (startup->lpTitle) RtlInitUnicodeString( &title, startup->lpTitle );
1388 if (startup->lpReserved2 && startup->cbReserved2)
1391 runtime.MaximumLength = startup->cbReserved2;
1392 runtime.Buffer = (WCHAR*)startup->lpReserved2;
1395 status = RtlCreateProcessParameters( ¶ms, &image_str, NULL,
1396 cur_dir ? &curdir_str : NULL,
1398 startup->lpTitle ? &title : NULL,
1399 startup->lpDesktop ? &desktop : NULL,
1401 (startup->lpReserved2 && startup->cbReserved2) ? &runtime : NULL );
1402 RtlFreeUnicodeString( &newdir );
1403 if (status != STATUS_SUCCESS)
1405 SetLastError( RtlNtStatusToDosError(status) );
1409 if (flags & CREATE_NEW_PROCESS_GROUP) params->ConsoleFlags = 1;
1410 if (flags & CREATE_NEW_CONSOLE) params->ConsoleHandle = (HANDLE)1; /* FIXME: cf. kernel_main.c */
1412 if (startup->dwFlags & STARTF_USESTDHANDLES)
1414 params->hStdInput = startup->hStdInput;
1415 params->hStdOutput = startup->hStdOutput;
1416 params->hStdError = startup->hStdError;
1420 params->hStdInput = GetStdHandle( STD_INPUT_HANDLE );
1421 params->hStdOutput = GetStdHandle( STD_OUTPUT_HANDLE );
1422 params->hStdError = GetStdHandle( STD_ERROR_HANDLE );
1424 params->dwX = startup->dwX;
1425 params->dwY = startup->dwY;
1426 params->dwXSize = startup->dwXSize;
1427 params->dwYSize = startup->dwYSize;
1428 params->dwXCountChars = startup->dwXCountChars;
1429 params->dwYCountChars = startup->dwYCountChars;
1430 params->dwFillAttribute = startup->dwFillAttribute;
1431 params->dwFlags = startup->dwFlags;
1432 params->wShowWindow = startup->wShowWindow;
1437 /***********************************************************************
1440 * Create a new process. If hFile is a valid handle we have an exe
1441 * file, otherwise it is a Winelib app.
1443 static BOOL create_process( HANDLE hFile, LPCWSTR filename, LPWSTR cmd_line, LPWSTR env,
1444 LPCWSTR cur_dir, LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1445 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1446 LPPROCESS_INFORMATION info, LPCSTR unixdir,
1447 void *res_start, void *res_end, int exec_only )
1449 BOOL ret, success = FALSE;
1450 HANDLE process_info, hstdin, hstdout;
1452 char *winedebug = NULL;
1454 RTL_USER_PROCESS_PARAMETERS *params;
1455 int socketfd[2], stdin_fd = -1, stdout_fd = -1;
1459 if (!env) RtlAcquirePebLock();
1461 if (!(params = create_user_params( filename, cmd_line, cur_dir, env, flags, startup )))
1463 if (!env) RtlReleasePebLock();
1466 env_end = params->Environment;
1469 static const WCHAR WINEDEBUG[] = {'W','I','N','E','D','E','B','U','G','=',0};
1470 if (!winedebug && !strncmpW( env_end, WINEDEBUG, sizeof(WINEDEBUG)/sizeof(WCHAR) - 1 ))
1472 DWORD len = WideCharToMultiByte( CP_UNIXCP, 0, env_end, -1, NULL, 0, NULL, NULL );
1473 if ((winedebug = HeapAlloc( GetProcessHeap(), 0, len )))
1474 WideCharToMultiByte( CP_UNIXCP, 0, env_end, -1, winedebug, len, NULL, NULL );
1476 env_end += strlenW(env_end) + 1;
1480 /* create the socket for the new process */
1482 if (socketpair( PF_UNIX, SOCK_STREAM, 0, socketfd ) == -1)
1484 if (!env) RtlReleasePebLock();
1485 HeapFree( GetProcessHeap(), 0, winedebug );
1486 RtlDestroyProcessParameters( params );
1487 SetLastError( ERROR_TOO_MANY_OPEN_FILES );
1490 wine_server_send_fd( socketfd[1] );
1491 close( socketfd[1] );
1493 /* create the process on the server side */
1495 SERVER_START_REQ( new_process )
1497 req->inherit_all = inherit;
1498 req->create_flags = flags;
1499 req->socket_fd = socketfd[1];
1500 req->exe_file = wine_server_obj_handle( hFile );
1501 req->process_access = PROCESS_ALL_ACCESS;
1502 req->process_attr = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle) ? OBJ_INHERIT : 0;
1503 req->thread_access = THREAD_ALL_ACCESS;
1504 req->thread_attr = (tsa && (tsa->nLength >= sizeof(*tsa)) && tsa->bInheritHandle) ? OBJ_INHERIT : 0;
1505 req->hstdin = wine_server_obj_handle( params->hStdInput );
1506 req->hstdout = wine_server_obj_handle( params->hStdOutput );
1507 req->hstderr = wine_server_obj_handle( params->hStdError );
1509 if ((flags & (CREATE_NEW_CONSOLE | DETACHED_PROCESS)) != 0)
1511 /* this is temporary (for console handles). We have no way to control that the handle is invalid in child process otherwise */
1512 if (is_console_handle(params->hStdInput)) req->hstdin = wine_server_obj_handle( INVALID_HANDLE_VALUE );
1513 if (is_console_handle(params->hStdOutput)) req->hstdout = wine_server_obj_handle( INVALID_HANDLE_VALUE );
1514 if (is_console_handle(params->hStdError)) req->hstderr = wine_server_obj_handle( INVALID_HANDLE_VALUE );
1515 hstdin = hstdout = 0;
1519 if (is_console_handle(params->hStdInput)) req->hstdin = console_handle_unmap(params->hStdInput);
1520 if (is_console_handle(params->hStdOutput)) req->hstdout = console_handle_unmap(params->hStdOutput);
1521 if (is_console_handle(params->hStdError)) req->hstderr = console_handle_unmap(params->hStdError);
1522 hstdin = wine_server_ptr_handle( req->hstdin );
1523 hstdout = wine_server_ptr_handle( req->hstdout );
1526 wine_server_add_data( req, params, params->Size );
1527 wine_server_add_data( req, params->Environment, (env_end-params->Environment)*sizeof(WCHAR) );
1528 if ((ret = !wine_server_call_err( req )))
1530 info->dwProcessId = (DWORD)reply->pid;
1531 info->dwThreadId = (DWORD)reply->tid;
1532 info->hProcess = wine_server_ptr_handle( reply->phandle );
1533 info->hThread = wine_server_ptr_handle( reply->thandle );
1535 process_info = wine_server_ptr_handle( reply->info );
1539 if (!env) RtlReleasePebLock();
1540 RtlDestroyProcessParameters( params );
1543 close( socketfd[0] );
1544 HeapFree( GetProcessHeap(), 0, winedebug );
1548 if (hstdin) wine_server_handle_to_fd( hstdin, FILE_READ_DATA, &stdin_fd, NULL );
1549 if (hstdout) wine_server_handle_to_fd( hstdout, FILE_WRITE_DATA, &stdout_fd, NULL );
1551 /* create the child process */
1552 argv = build_argv( cmd_line, 1 );
1554 if (exec_only || !(pid = fork())) /* child */
1556 char preloader_reserve[64], socket_env[64];
1558 if (flags & (CREATE_NEW_PROCESS_GROUP | CREATE_NEW_CONSOLE | DETACHED_PROCESS))
1560 if (!(pid = fork()))
1562 int fd = open( "/dev/null", O_RDWR );
1564 /* close stdin and stdout */
1572 else if (pid != -1) _exit(0); /* parent */
1576 if (stdin_fd != -1) dup2( stdin_fd, 0 );
1577 if (stdout_fd != -1) dup2( stdout_fd, 1 );
1580 if (stdin_fd != -1) close( stdin_fd );
1581 if (stdout_fd != -1) close( stdout_fd );
1583 /* Reset signals that we previously set to SIG_IGN */
1584 signal( SIGPIPE, SIG_DFL );
1585 signal( SIGCHLD, SIG_DFL );
1587 sprintf( socket_env, "WINESERVERSOCKET=%u", socketfd[0] );
1588 sprintf( preloader_reserve, "WINEPRELOADRESERVE=%lx-%lx",
1589 (unsigned long)res_start, (unsigned long)res_end );
1591 putenv( preloader_reserve );
1592 putenv( socket_env );
1593 if (winedebug) putenv( winedebug );
1594 if (unixdir) chdir(unixdir);
1596 if (argv) wine_exec_wine_binary( NULL, argv, getenv("WINELOADER") );
1600 /* this is the parent */
1602 if (stdin_fd != -1) close( stdin_fd );
1603 if (stdout_fd != -1) close( stdout_fd );
1604 close( socketfd[0] );
1605 HeapFree( GetProcessHeap(), 0, argv );
1606 HeapFree( GetProcessHeap(), 0, winedebug );
1613 /* wait for the new process info to be ready */
1615 WaitForSingleObject( process_info, INFINITE );
1616 SERVER_START_REQ( get_new_process_info )
1618 req->info = wine_server_obj_handle( process_info );
1619 wine_server_call( req );
1620 success = reply->success;
1621 err = reply->exit_code;
1627 SetLastError( err ? err : ERROR_INTERNAL_ERROR );
1630 CloseHandle( process_info );
1634 CloseHandle( process_info );
1635 CloseHandle( info->hProcess );
1636 CloseHandle( info->hThread );
1637 info->hProcess = info->hThread = 0;
1638 info->dwProcessId = info->dwThreadId = 0;
1643 /***********************************************************************
1644 * create_vdm_process
1646 * Create a new VDM process for a 16-bit or DOS application.
1648 static BOOL create_vdm_process( LPCWSTR filename, LPWSTR cmd_line, LPWSTR env, LPCWSTR cur_dir,
1649 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1650 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1651 LPPROCESS_INFORMATION info, LPCSTR unixdir, int exec_only )
1653 static const WCHAR argsW[] = {'%','s',' ','-','-','a','p','p','-','n','a','m','e',' ','"','%','s','"',' ','%','s',0};
1656 LPWSTR new_cmd_line = HeapAlloc( GetProcessHeap(), 0,
1657 (strlenW(filename) + strlenW(cmd_line) + 30) * sizeof(WCHAR) );
1661 SetLastError( ERROR_OUTOFMEMORY );
1664 sprintfW( new_cmd_line, argsW, winevdmW, filename, cmd_line );
1665 ret = create_process( 0, winevdmW, new_cmd_line, env, cur_dir, psa, tsa, inherit,
1666 flags, startup, info, unixdir, NULL, NULL, exec_only );
1667 HeapFree( GetProcessHeap(), 0, new_cmd_line );
1672 /***********************************************************************
1673 * create_cmd_process
1675 * Create a new cmd shell process for a .BAT file.
1677 static BOOL create_cmd_process( LPCWSTR filename, LPWSTR cmd_line, LPVOID env, LPCWSTR cur_dir,
1678 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1679 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1680 LPPROCESS_INFORMATION info )
1683 static const WCHAR comspecW[] = {'C','O','M','S','P','E','C',0};
1684 static const WCHAR slashcW[] = {' ','/','c',' ',0};
1685 WCHAR comspec[MAX_PATH];
1689 if (!GetEnvironmentVariableW( comspecW, comspec, sizeof(comspec)/sizeof(WCHAR) ))
1691 if (!(newcmdline = HeapAlloc( GetProcessHeap(), 0,
1692 (strlenW(comspec) + 4 + strlenW(cmd_line) + 1) * sizeof(WCHAR))))
1695 strcpyW( newcmdline, comspec );
1696 strcatW( newcmdline, slashcW );
1697 strcatW( newcmdline, cmd_line );
1698 ret = CreateProcessW( comspec, newcmdline, psa, tsa, inherit,
1699 flags, env, cur_dir, startup, info );
1700 HeapFree( GetProcessHeap(), 0, newcmdline );
1705 /*************************************************************************
1708 * Helper for CreateProcess: retrieve the file name to load from the
1709 * app name and command line. Store the file name in buffer, and
1710 * return a possibly modified command line.
1711 * Also returns a handle to the opened file if it's a Windows binary.
1713 static LPWSTR get_file_name( LPCWSTR appname, LPWSTR cmdline, LPWSTR buffer,
1714 int buflen, HANDLE *handle )
1716 static const WCHAR quotesW[] = {'"','%','s','"',0};
1718 WCHAR *name, *pos, *ret = NULL;
1722 /* if we have an app name, everything is easy */
1726 /* use the unmodified app name as file name */
1727 lstrcpynW( buffer, appname, buflen );
1728 *handle = open_exe_file( buffer );
1729 if (!(ret = cmdline) || !cmdline[0])
1731 /* no command-line, create one */
1732 if ((ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(appname) + 3) * sizeof(WCHAR) )))
1733 sprintfW( ret, quotesW, appname );
1740 SetLastError( ERROR_INVALID_PARAMETER );
1744 /* first check for a quoted file name */
1746 if ((cmdline[0] == '"') && ((p = strchrW( cmdline + 1, '"' ))))
1748 int len = p - cmdline - 1;
1749 /* extract the quoted portion as file name */
1750 if (!(name = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) ))) return NULL;
1751 memcpy( name, cmdline + 1, len * sizeof(WCHAR) );
1754 if (find_exe_file( name, buffer, buflen, handle ))
1755 ret = cmdline; /* no change necessary */
1759 /* now try the command-line word by word */
1761 if (!(name = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 1) * sizeof(WCHAR) )))
1769 do *pos++ = *p++; while (*p && *p != ' ' && *p != '\t');
1771 if (find_exe_file( name, buffer, buflen, handle ))
1776 if (*p) got_space = TRUE;
1779 if (ret && got_space) /* now build a new command-line with quotes */
1781 if (!(ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 3) * sizeof(WCHAR) )))
1783 sprintfW( ret, quotesW, name );
1788 HeapFree( GetProcessHeap(), 0, name );
1793 /**********************************************************************
1794 * CreateProcessA (KERNEL32.@)
1796 BOOL WINAPI CreateProcessA( LPCSTR app_name, LPSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
1797 LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit,
1798 DWORD flags, LPVOID env, LPCSTR cur_dir,
1799 LPSTARTUPINFOA startup_info, LPPROCESS_INFORMATION info )
1802 WCHAR *app_nameW = NULL, *cmd_lineW = NULL, *cur_dirW = NULL;
1803 UNICODE_STRING desktopW, titleW;
1806 desktopW.Buffer = NULL;
1807 titleW.Buffer = NULL;
1808 if (app_name && !(app_nameW = FILE_name_AtoW( app_name, TRUE ))) goto done;
1809 if (cmd_line && !(cmd_lineW = FILE_name_AtoW( cmd_line, TRUE ))) goto done;
1810 if (cur_dir && !(cur_dirW = FILE_name_AtoW( cur_dir, TRUE ))) goto done;
1812 if (startup_info->lpDesktop) RtlCreateUnicodeStringFromAsciiz( &desktopW, startup_info->lpDesktop );
1813 if (startup_info->lpTitle) RtlCreateUnicodeStringFromAsciiz( &titleW, startup_info->lpTitle );
1815 memcpy( &infoW, startup_info, sizeof(infoW) );
1816 infoW.lpDesktop = desktopW.Buffer;
1817 infoW.lpTitle = titleW.Buffer;
1819 if (startup_info->lpReserved)
1820 FIXME("StartupInfo.lpReserved is used, please report (%s)\n",
1821 debugstr_a(startup_info->lpReserved));
1823 ret = CreateProcessW( app_nameW, cmd_lineW, process_attr, thread_attr,
1824 inherit, flags, env, cur_dirW, &infoW, info );
1826 HeapFree( GetProcessHeap(), 0, app_nameW );
1827 HeapFree( GetProcessHeap(), 0, cmd_lineW );
1828 HeapFree( GetProcessHeap(), 0, cur_dirW );
1829 RtlFreeUnicodeString( &desktopW );
1830 RtlFreeUnicodeString( &titleW );
1835 /**********************************************************************
1836 * CreateProcessW (KERNEL32.@)
1838 BOOL WINAPI CreateProcessW( LPCWSTR app_name, LPWSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
1839 LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit, DWORD flags,
1840 LPVOID env, LPCWSTR cur_dir, LPSTARTUPINFOW startup_info,
1841 LPPROCESS_INFORMATION info )
1845 char *unixdir = NULL;
1846 WCHAR name[MAX_PATH];
1847 WCHAR *tidy_cmdline, *p, *envW = env;
1848 void *res_start, *res_end;
1850 /* Process the AppName and/or CmdLine to get module name and path */
1852 TRACE("app %s cmdline %s\n", debugstr_w(app_name), debugstr_w(cmd_line) );
1854 if (!(tidy_cmdline = get_file_name( app_name, cmd_line, name, sizeof(name)/sizeof(WCHAR), &hFile )))
1856 if (hFile == INVALID_HANDLE_VALUE) goto done;
1858 /* Warn if unsupported features are used */
1860 if (flags & (IDLE_PRIORITY_CLASS | HIGH_PRIORITY_CLASS | REALTIME_PRIORITY_CLASS |
1861 CREATE_NEW_PROCESS_GROUP | CREATE_SEPARATE_WOW_VDM | CREATE_SHARED_WOW_VDM |
1862 CREATE_DEFAULT_ERROR_MODE | CREATE_NO_WINDOW |
1863 PROFILE_USER | PROFILE_KERNEL | PROFILE_SERVER))
1864 WARN("(%s,...): ignoring some flags in %x\n", debugstr_w(name), flags);
1868 if (!(unixdir = wine_get_unix_file_name( cur_dir )))
1870 SetLastError(ERROR_DIRECTORY);
1876 WCHAR buf[MAX_PATH];
1877 if (GetCurrentDirectoryW(MAX_PATH, buf)) unixdir = wine_get_unix_file_name( buf );
1880 if (env && !(flags & CREATE_UNICODE_ENVIRONMENT)) /* convert environment to unicode */
1885 while (*p) p += strlen(p) + 1;
1886 p++; /* final null */
1887 lenW = MultiByteToWideChar( CP_ACP, 0, env, p - (char*)env, NULL, 0 );
1888 envW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) );
1889 MultiByteToWideChar( CP_ACP, 0, env, p - (char*)env, envW, lenW );
1890 flags |= CREATE_UNICODE_ENVIRONMENT;
1893 info->hThread = info->hProcess = 0;
1894 info->dwProcessId = info->dwThreadId = 0;
1896 /* Determine executable type */
1898 if (!hFile) /* builtin exe */
1900 TRACE( "starting %s as Winelib app\n", debugstr_w(name) );
1901 retv = create_process( 0, name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1902 inherit, flags, startup_info, info, unixdir, NULL, NULL, FALSE );
1906 switch( MODULE_GetBinaryType( hFile, &res_start, &res_end ))
1909 TRACE( "starting %s as Win32 binary (%p-%p)\n", debugstr_w(name), res_start, res_end );
1910 retv = create_process( hFile, name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1911 inherit, flags, startup_info, info, unixdir, res_start, res_end, FALSE );
1916 TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name) );
1917 retv = create_vdm_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1918 inherit, flags, startup_info, info, unixdir, FALSE );
1921 TRACE( "not starting %s since it is a dll\n", debugstr_w(name) );
1922 SetLastError( ERROR_BAD_EXE_FORMAT );
1924 case BINARY_UNIX_LIB:
1925 TRACE( "%s is a Unix library, starting as Winelib app\n", debugstr_w(name) );
1926 retv = create_process( hFile, name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1927 inherit, flags, startup_info, info, unixdir, NULL, NULL, FALSE );
1929 case BINARY_UNKNOWN:
1930 /* check for .com or .bat extension */
1931 if ((p = strrchrW( name, '.' )))
1933 if (!strcmpiW( p, comW ) || !strcmpiW( p, pifW ))
1935 TRACE( "starting %s as DOS binary\n", debugstr_w(name) );
1936 retv = create_vdm_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1937 inherit, flags, startup_info, info, unixdir, FALSE );
1940 if (!strcmpiW( p, batW ) || !strcmpiW( p, cmdW ) )
1942 TRACE( "starting %s as batch binary\n", debugstr_w(name) );
1943 retv = create_cmd_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1944 inherit, flags, startup_info, info );
1949 case BINARY_UNIX_EXE:
1951 /* unknown file, try as unix executable */
1954 TRACE( "starting %s as Unix binary\n", debugstr_w(name) );
1956 if ((unix_name = wine_get_unix_file_name( name )))
1958 retv = (fork_and_exec( unix_name, tidy_cmdline, envW, unixdir, flags, startup_info ) != -1);
1959 HeapFree( GetProcessHeap(), 0, unix_name );
1964 CloseHandle( hFile );
1967 if (tidy_cmdline != cmd_line) HeapFree( GetProcessHeap(), 0, tidy_cmdline );
1968 if (envW != env) HeapFree( GetProcessHeap(), 0, envW );
1969 HeapFree( GetProcessHeap(), 0, unixdir );
1971 TRACE( "started process pid %04x tid %04x\n", info->dwProcessId, info->dwThreadId );
1976 /**********************************************************************
1979 static void exec_process( LPCWSTR name )
1983 void *res_start, *res_end;
1984 STARTUPINFOW startup_info;
1985 PROCESS_INFORMATION info;
1987 hFile = open_exe_file( name );
1988 if (!hFile || hFile == INVALID_HANDLE_VALUE) return;
1990 memset( &startup_info, 0, sizeof(startup_info) );
1991 startup_info.cb = sizeof(startup_info);
1993 /* Determine executable type */
1995 switch( MODULE_GetBinaryType( hFile, &res_start, &res_end ))
1998 TRACE( "starting %s as Win32 binary (%p-%p)\n", debugstr_w(name), res_start, res_end );
1999 create_process( hFile, name, GetCommandLineW(), NULL, NULL, NULL, NULL,
2000 FALSE, 0, &startup_info, &info, NULL, res_start, res_end, TRUE );
2002 case BINARY_UNIX_LIB:
2003 TRACE( "%s is a Unix library, starting as Winelib app\n", debugstr_w(name) );
2004 create_process( hFile, name, GetCommandLineW(), NULL, NULL, NULL, NULL,
2005 FALSE, 0, &startup_info, &info, NULL, NULL, NULL, TRUE );
2007 case BINARY_UNKNOWN:
2008 /* check for .com or .pif extension */
2009 if (!(p = strrchrW( name, '.' ))) break;
2010 if (strcmpiW( p, comW ) && strcmpiW( p, pifW )) break;
2015 TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name) );
2016 create_vdm_process( name, GetCommandLineW(), NULL, NULL, NULL, NULL,
2017 FALSE, 0, &startup_info, &info, NULL, TRUE );
2022 CloseHandle( hFile );
2026 /***********************************************************************
2029 * Wrapper to call WaitForInputIdle USER function
2031 typedef DWORD (WINAPI *WaitForInputIdle_ptr)( HANDLE hProcess, DWORD dwTimeOut );
2033 static DWORD wait_input_idle( HANDLE process, DWORD timeout )
2035 HMODULE mod = GetModuleHandleA( "user32.dll" );
2038 WaitForInputIdle_ptr ptr = (WaitForInputIdle_ptr)GetProcAddress( mod, "WaitForInputIdle" );
2039 if (ptr) return ptr( process, timeout );
2045 /***********************************************************************
2046 * WinExec (KERNEL32.@)
2048 UINT WINAPI WinExec( LPCSTR lpCmdLine, UINT nCmdShow )
2050 PROCESS_INFORMATION info;
2051 STARTUPINFOA startup;
2055 memset( &startup, 0, sizeof(startup) );
2056 startup.cb = sizeof(startup);
2057 startup.dwFlags = STARTF_USESHOWWINDOW;
2058 startup.wShowWindow = nCmdShow;
2060 /* cmdline needs to be writable for CreateProcess */
2061 if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(lpCmdLine)+1 ))) return 0;
2062 strcpy( cmdline, lpCmdLine );
2064 if (CreateProcessA( NULL, cmdline, NULL, NULL, FALSE,
2065 0, NULL, NULL, &startup, &info ))
2067 /* Give 30 seconds to the app to come up */
2068 if (wait_input_idle( info.hProcess, 30000 ) == WAIT_FAILED)
2069 WARN("WaitForInputIdle failed: Error %d\n", GetLastError() );
2071 /* Close off the handles */
2072 CloseHandle( info.hThread );
2073 CloseHandle( info.hProcess );
2075 else if ((ret = GetLastError()) >= 32)
2077 FIXME("Strange error set by CreateProcess: %d\n", ret );
2080 HeapFree( GetProcessHeap(), 0, cmdline );
2085 /**********************************************************************
2086 * LoadModule (KERNEL32.@)
2088 HINSTANCE WINAPI LoadModule( LPCSTR name, LPVOID paramBlock )
2090 LOADPARMS32 *params = paramBlock;
2091 PROCESS_INFORMATION info;
2092 STARTUPINFOA startup;
2093 HINSTANCE hInstance;
2095 char filename[MAX_PATH];
2098 if (!name) return (HINSTANCE)ERROR_FILE_NOT_FOUND;
2100 if (!SearchPathA( NULL, name, ".exe", sizeof(filename), filename, NULL ) &&
2101 !SearchPathA( NULL, name, NULL, sizeof(filename), filename, NULL ))
2102 return ULongToHandle(GetLastError());
2104 len = (BYTE)params->lpCmdLine[0];
2105 if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(filename) + len + 2 )))
2106 return (HINSTANCE)ERROR_NOT_ENOUGH_MEMORY;
2108 strcpy( cmdline, filename );
2109 p = cmdline + strlen(cmdline);
2111 memcpy( p, params->lpCmdLine + 1, len );
2114 memset( &startup, 0, sizeof(startup) );
2115 startup.cb = sizeof(startup);
2116 if (params->lpCmdShow)
2118 startup.dwFlags = STARTF_USESHOWWINDOW;
2119 startup.wShowWindow = ((WORD *)params->lpCmdShow)[1];
2122 if (CreateProcessA( filename, cmdline, NULL, NULL, FALSE, 0,
2123 params->lpEnvAddress, NULL, &startup, &info ))
2125 /* Give 30 seconds to the app to come up */
2126 if (wait_input_idle( info.hProcess, 30000 ) == WAIT_FAILED)
2127 WARN("WaitForInputIdle failed: Error %d\n", GetLastError() );
2128 hInstance = (HINSTANCE)33;
2129 /* Close off the handles */
2130 CloseHandle( info.hThread );
2131 CloseHandle( info.hProcess );
2133 else if ((hInstance = ULongToHandle(GetLastError())) >= (HINSTANCE)32)
2135 FIXME("Strange error set by CreateProcess: %p\n", hInstance );
2136 hInstance = (HINSTANCE)11;
2139 HeapFree( GetProcessHeap(), 0, cmdline );
2144 /******************************************************************************
2145 * TerminateProcess (KERNEL32.@)
2147 * Terminates a process.
2150 * handle [I] Process to terminate.
2151 * exit_code [I] Exit code.
2155 * Failure: FALSE, check GetLastError().
2157 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
2159 NTSTATUS status = NtTerminateProcess( handle, exit_code );
2160 if (status) SetLastError( RtlNtStatusToDosError(status) );
2164 /***********************************************************************
2165 * ExitProcess (KERNEL32.@)
2167 * Exits the current process.
2170 * status [I] Status code to exit with.
2176 __ASM_GLOBAL_FUNC( ExitProcess, /* Shrinker depend on this particular ExitProcess implementation */
2178 ".byte 0x8B, 0xEC\n\t" /* movl %esp, %ebp */
2179 ".byte 0x6A, 0x00\n\t" /* pushl $0 */
2180 ".byte 0x68, 0x00, 0x00, 0x00, 0x00\n\t" /* pushl $0 - 4 bytes immediate */
2182 "call " __ASM_NAME("process_ExitProcess") "\n\t"
2186 void WINAPI process_ExitProcess( DWORD status )
2188 LdrShutdownProcess();
2189 NtTerminateProcess(GetCurrentProcess(), status);
2195 void WINAPI ExitProcess( DWORD status )
2197 LdrShutdownProcess();
2198 NtTerminateProcess(GetCurrentProcess(), status);
2204 /***********************************************************************
2205 * GetExitCodeProcess [KERNEL32.@]
2207 * Gets termination status of specified process.
2210 * hProcess [in] Handle to the process.
2211 * lpExitCode [out] Address to receive termination status.
2217 BOOL WINAPI GetExitCodeProcess( HANDLE hProcess, LPDWORD lpExitCode )
2220 PROCESS_BASIC_INFORMATION pbi;
2222 status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
2224 if (status == STATUS_SUCCESS)
2226 if (lpExitCode) *lpExitCode = pbi.ExitStatus;
2229 SetLastError( RtlNtStatusToDosError(status) );
2234 /***********************************************************************
2235 * SetErrorMode (KERNEL32.@)
2237 UINT WINAPI SetErrorMode( UINT mode )
2239 UINT old = process_error_mode;
2240 process_error_mode = mode;
2244 /***********************************************************************
2245 * GetErrorMode (KERNEL32.@)
2247 UINT WINAPI GetErrorMode( void )
2249 return process_error_mode;
2252 /**********************************************************************
2253 * TlsAlloc [KERNEL32.@]
2255 * Allocates a thread local storage index.
2258 * Success: TLS index.
2259 * Failure: 0xFFFFFFFF
2261 DWORD WINAPI TlsAlloc( void )
2264 PEB * const peb = NtCurrentTeb()->Peb;
2266 RtlAcquirePebLock();
2267 index = RtlFindClearBitsAndSet( peb->TlsBitmap, 1, 0 );
2268 if (index != ~0U) NtCurrentTeb()->TlsSlots[index] = 0; /* clear the value */
2271 index = RtlFindClearBitsAndSet( peb->TlsExpansionBitmap, 1, 0 );
2274 if (!NtCurrentTeb()->TlsExpansionSlots &&
2275 !(NtCurrentTeb()->TlsExpansionSlots = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
2276 8 * sizeof(peb->TlsExpansionBitmapBits) * sizeof(void*) )))
2278 RtlClearBits( peb->TlsExpansionBitmap, index, 1 );
2280 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
2284 NtCurrentTeb()->TlsExpansionSlots[index] = 0; /* clear the value */
2285 index += TLS_MINIMUM_AVAILABLE;
2288 else SetLastError( ERROR_NO_MORE_ITEMS );
2290 RtlReleasePebLock();
2295 /**********************************************************************
2296 * TlsFree [KERNEL32.@]
2298 * Releases a thread local storage index, making it available for reuse.
2301 * index [in] TLS index to free.
2307 BOOL WINAPI TlsFree( DWORD index )
2311 RtlAcquirePebLock();
2312 if (index >= TLS_MINIMUM_AVAILABLE)
2314 ret = RtlAreBitsSet( NtCurrentTeb()->Peb->TlsExpansionBitmap, index - TLS_MINIMUM_AVAILABLE, 1 );
2315 if (ret) RtlClearBits( NtCurrentTeb()->Peb->TlsExpansionBitmap, index - TLS_MINIMUM_AVAILABLE, 1 );
2319 ret = RtlAreBitsSet( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
2320 if (ret) RtlClearBits( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
2322 if (ret) NtSetInformationThread( GetCurrentThread(), ThreadZeroTlsCell, &index, sizeof(index) );
2323 else SetLastError( ERROR_INVALID_PARAMETER );
2324 RtlReleasePebLock();
2329 /**********************************************************************
2330 * TlsGetValue [KERNEL32.@]
2332 * Gets value in a thread's TLS slot.
2335 * index [in] TLS index to retrieve value for.
2338 * Success: Value stored in calling thread's TLS slot for index.
2339 * Failure: 0 and GetLastError() returns NO_ERROR.
2341 LPVOID WINAPI TlsGetValue( DWORD index )
2345 if (index < TLS_MINIMUM_AVAILABLE)
2347 ret = NtCurrentTeb()->TlsSlots[index];
2351 index -= TLS_MINIMUM_AVAILABLE;
2352 if (index >= 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits))
2354 SetLastError( ERROR_INVALID_PARAMETER );
2357 if (!NtCurrentTeb()->TlsExpansionSlots) ret = NULL;
2358 else ret = NtCurrentTeb()->TlsExpansionSlots[index];
2360 SetLastError( ERROR_SUCCESS );
2365 /**********************************************************************
2366 * TlsSetValue [KERNEL32.@]
2368 * Stores a value in the thread's TLS slot.
2371 * index [in] TLS index to set value for.
2372 * value [in] Value to be stored.
2378 BOOL WINAPI TlsSetValue( DWORD index, LPVOID value )
2380 if (index < TLS_MINIMUM_AVAILABLE)
2382 NtCurrentTeb()->TlsSlots[index] = value;
2386 index -= TLS_MINIMUM_AVAILABLE;
2387 if (index >= 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits))
2389 SetLastError( ERROR_INVALID_PARAMETER );
2392 if (!NtCurrentTeb()->TlsExpansionSlots &&
2393 !(NtCurrentTeb()->TlsExpansionSlots = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
2394 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits) * sizeof(void*) )))
2396 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
2399 NtCurrentTeb()->TlsExpansionSlots[index] = value;
2405 /***********************************************************************
2406 * GetProcessFlags (KERNEL32.@)
2408 DWORD WINAPI GetProcessFlags( DWORD processid )
2410 IMAGE_NT_HEADERS *nt;
2413 if (processid && processid != GetCurrentProcessId()) return 0;
2415 if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
2417 if (nt->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI)
2418 flags |= PDB32_CONSOLE_PROC;
2420 if (!AreFileApisANSI()) flags |= PDB32_FILE_APIS_OEM;
2421 if (IsDebuggerPresent()) flags |= PDB32_DEBUGGED;
2426 /***********************************************************************
2427 * GetProcessDword (KERNEL.485)
2428 * GetProcessDword (KERNEL32.18)
2429 * 'Of course you cannot directly access Windows internal structures'
2431 DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
2436 TRACE("(%d, %d)\n", dwProcessID, offset );
2438 if (dwProcessID && dwProcessID != GetCurrentProcessId())
2440 ERR("%d: process %x not accessible\n", offset, dwProcessID);
2446 case GPD_APP_COMPAT_FLAGS:
2447 return GetAppCompatFlags16(0);
2448 case GPD_LOAD_DONE_EVENT:
2450 case GPD_HINSTANCE16:
2451 return GetTaskDS16();
2452 case GPD_WINDOWS_VERSION:
2453 return GetExeVersion16();
2455 return (DWORD_PTR)NtCurrentTeb() - 0x10 /* FIXME */;
2457 return (DWORD_PTR)NtCurrentTeb()->Peb; /* FIXME: truncating a pointer */
2458 case GPD_STARTF_SHELLDATA: /* return stdoutput handle from startupinfo ??? */
2459 GetStartupInfoW(&siw);
2460 return HandleToULong(siw.hStdOutput);
2461 case GPD_STARTF_HOTKEY: /* return stdinput handle from startupinfo ??? */
2462 GetStartupInfoW(&siw);
2463 return HandleToULong(siw.hStdInput);
2464 case GPD_STARTF_SHOWWINDOW:
2465 GetStartupInfoW(&siw);
2466 return siw.wShowWindow;
2467 case GPD_STARTF_SIZE:
2468 GetStartupInfoW(&siw);
2470 if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
2472 if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
2473 return MAKELONG( x, y );
2474 case GPD_STARTF_POSITION:
2475 GetStartupInfoW(&siw);
2477 if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
2479 if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
2480 return MAKELONG( x, y );
2481 case GPD_STARTF_FLAGS:
2482 GetStartupInfoW(&siw);
2487 return GetProcessFlags(0);
2489 return process_dword;
2491 ERR("Unknown offset %d\n", offset );
2496 /***********************************************************************
2497 * SetProcessDword (KERNEL.484)
2498 * 'Of course you cannot directly access Windows internal structures'
2500 void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
2502 TRACE("(%d, %d)\n", dwProcessID, offset );
2504 if (dwProcessID && dwProcessID != GetCurrentProcessId())
2506 ERR("%d: process %x not accessible\n", offset, dwProcessID);
2512 case GPD_APP_COMPAT_FLAGS:
2513 case GPD_LOAD_DONE_EVENT:
2514 case GPD_HINSTANCE16:
2515 case GPD_WINDOWS_VERSION:
2518 case GPD_STARTF_SHELLDATA:
2519 case GPD_STARTF_HOTKEY:
2520 case GPD_STARTF_SHOWWINDOW:
2521 case GPD_STARTF_SIZE:
2522 case GPD_STARTF_POSITION:
2523 case GPD_STARTF_FLAGS:
2526 ERR("Not allowed to modify offset %d\n", offset );
2529 process_dword = value;
2532 ERR("Unknown offset %d\n", offset );
2538 /***********************************************************************
2539 * ExitProcess (KERNEL.466)
2541 void WINAPI ExitProcess16( WORD status )
2544 ReleaseThunkLock( &count );
2545 ExitProcess( status );
2549 /*********************************************************************
2550 * OpenProcess (KERNEL32.@)
2552 * Opens a handle to a process.
2555 * access [I] Desired access rights assigned to the returned handle.
2556 * inherit [I] Determines whether or not child processes will inherit the handle.
2557 * id [I] Process identifier of the process to get a handle to.
2560 * Success: Valid handle to the specified process.
2561 * Failure: NULL, check GetLastError().
2563 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
2567 OBJECT_ATTRIBUTES attr;
2570 cid.UniqueProcess = ULongToHandle(id);
2571 cid.UniqueThread = 0; /* FIXME ? */
2573 attr.Length = sizeof(OBJECT_ATTRIBUTES);
2574 attr.RootDirectory = NULL;
2575 attr.Attributes = inherit ? OBJ_INHERIT : 0;
2576 attr.SecurityDescriptor = NULL;
2577 attr.SecurityQualityOfService = NULL;
2578 attr.ObjectName = NULL;
2580 if (GetVersion() & 0x80000000) access = PROCESS_ALL_ACCESS;
2582 status = NtOpenProcess(&handle, access, &attr, &cid);
2583 if (status != STATUS_SUCCESS)
2585 SetLastError( RtlNtStatusToDosError(status) );
2592 /*********************************************************************
2593 * MapProcessHandle (KERNEL.483)
2594 * GetProcessId (KERNEL32.@)
2596 * Gets the a unique identifier of a process.
2599 * hProcess [I] Handle to the process.
2603 * Failure: FALSE, check GetLastError().
2607 * The identifier is unique only on the machine and only until the process
2608 * exits (including system shutdown).
2610 DWORD WINAPI GetProcessId( HANDLE hProcess )
2613 PROCESS_BASIC_INFORMATION pbi;
2615 status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
2617 if (status == STATUS_SUCCESS) return pbi.UniqueProcessId;
2618 SetLastError( RtlNtStatusToDosError(status) );
2623 /*********************************************************************
2624 * CloseW32Handle (KERNEL.474)
2625 * CloseHandle (KERNEL32.@)
2630 * handle [I] Handle to close.
2634 * Failure: FALSE, check GetLastError().
2636 BOOL WINAPI CloseHandle( HANDLE handle )
2640 /* stdio handles need special treatment */
2641 if ((handle == (HANDLE)STD_INPUT_HANDLE) ||
2642 (handle == (HANDLE)STD_OUTPUT_HANDLE) ||
2643 (handle == (HANDLE)STD_ERROR_HANDLE))
2644 handle = GetStdHandle( HandleToULong(handle) );
2646 if (is_console_handle(handle))
2647 return CloseConsoleHandle(handle);
2649 status = NtClose( handle );
2650 if (status) SetLastError( RtlNtStatusToDosError(status) );
2655 /*********************************************************************
2656 * GetHandleInformation (KERNEL32.@)
2658 BOOL WINAPI GetHandleInformation( HANDLE handle, LPDWORD flags )
2660 OBJECT_DATA_INFORMATION info;
2661 NTSTATUS status = NtQueryObject( handle, ObjectDataInformation, &info, sizeof(info), NULL );
2663 if (status) SetLastError( RtlNtStatusToDosError(status) );
2667 if (info.InheritHandle) *flags |= HANDLE_FLAG_INHERIT;
2668 if (info.ProtectFromClose) *flags |= HANDLE_FLAG_PROTECT_FROM_CLOSE;
2674 /*********************************************************************
2675 * SetHandleInformation (KERNEL32.@)
2677 BOOL WINAPI SetHandleInformation( HANDLE handle, DWORD mask, DWORD flags )
2679 OBJECT_DATA_INFORMATION info;
2682 /* if not setting both fields, retrieve current value first */
2683 if ((mask & (HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE)) !=
2684 (HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE))
2686 if ((status = NtQueryObject( handle, ObjectDataInformation, &info, sizeof(info), NULL )))
2688 SetLastError( RtlNtStatusToDosError(status) );
2692 if (mask & HANDLE_FLAG_INHERIT)
2693 info.InheritHandle = (flags & HANDLE_FLAG_INHERIT) != 0;
2694 if (mask & HANDLE_FLAG_PROTECT_FROM_CLOSE)
2695 info.ProtectFromClose = (flags & HANDLE_FLAG_PROTECT_FROM_CLOSE) != 0;
2697 status = NtSetInformationObject( handle, ObjectDataInformation, &info, sizeof(info) );
2698 if (status) SetLastError( RtlNtStatusToDosError(status) );
2703 /*********************************************************************
2704 * DuplicateHandle (KERNEL32.@)
2706 BOOL WINAPI DuplicateHandle( HANDLE source_process, HANDLE source,
2707 HANDLE dest_process, HANDLE *dest,
2708 DWORD access, BOOL inherit, DWORD options )
2712 if (is_console_handle(source))
2714 /* FIXME: this test is not sufficient, we need to test process ids, not handles */
2715 if (source_process != dest_process ||
2716 source_process != GetCurrentProcess())
2718 SetLastError(ERROR_INVALID_PARAMETER);
2721 *dest = DuplicateConsoleHandle( source, access, inherit, options );
2722 return (*dest != INVALID_HANDLE_VALUE);
2724 status = NtDuplicateObject( source_process, source, dest_process, dest,
2725 access, inherit ? OBJ_INHERIT : 0, options );
2726 if (status) SetLastError( RtlNtStatusToDosError(status) );
2731 /***********************************************************************
2732 * ConvertToGlobalHandle (KERNEL.476)
2733 * ConvertToGlobalHandle (KERNEL32.@)
2735 HANDLE WINAPI ConvertToGlobalHandle(HANDLE hSrc)
2737 HANDLE ret = INVALID_HANDLE_VALUE;
2738 DuplicateHandle( GetCurrentProcess(), hSrc, GetCurrentProcess(), &ret, 0, FALSE,
2739 DUP_HANDLE_MAKE_GLOBAL | DUP_HANDLE_SAME_ACCESS | DUP_HANDLE_CLOSE_SOURCE );
2744 /***********************************************************************
2745 * SetHandleContext (KERNEL32.@)
2747 BOOL WINAPI SetHandleContext(HANDLE hnd,DWORD context)
2749 FIXME("(%p,%d), stub. In case this got called by WSOCK32/WS2_32: "
2750 "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd,context);
2751 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2756 /***********************************************************************
2757 * GetHandleContext (KERNEL32.@)
2759 DWORD WINAPI GetHandleContext(HANDLE hnd)
2761 FIXME("(%p), stub. In case this got called by WSOCK32/WS2_32: "
2762 "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd);
2763 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2768 /***********************************************************************
2769 * CreateSocketHandle (KERNEL32.@)
2771 HANDLE WINAPI CreateSocketHandle(void)
2773 FIXME("(), stub. In case this got called by WSOCK32/WS2_32: "
2774 "the external WINSOCK DLLs won't work with WINE, don't use them.\n");
2775 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2776 return INVALID_HANDLE_VALUE;
2780 /***********************************************************************
2781 * SetPriorityClass (KERNEL32.@)
2783 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
2786 PROCESS_PRIORITY_CLASS ppc;
2788 ppc.Foreground = FALSE;
2789 switch (priorityclass)
2791 case IDLE_PRIORITY_CLASS:
2792 ppc.PriorityClass = PROCESS_PRIOCLASS_IDLE; break;
2793 case BELOW_NORMAL_PRIORITY_CLASS:
2794 ppc.PriorityClass = PROCESS_PRIOCLASS_BELOW_NORMAL; break;
2795 case NORMAL_PRIORITY_CLASS:
2796 ppc.PriorityClass = PROCESS_PRIOCLASS_NORMAL; break;
2797 case ABOVE_NORMAL_PRIORITY_CLASS:
2798 ppc.PriorityClass = PROCESS_PRIOCLASS_ABOVE_NORMAL; break;
2799 case HIGH_PRIORITY_CLASS:
2800 ppc.PriorityClass = PROCESS_PRIOCLASS_HIGH; break;
2801 case REALTIME_PRIORITY_CLASS:
2802 ppc.PriorityClass = PROCESS_PRIOCLASS_REALTIME; break;
2804 SetLastError(ERROR_INVALID_PARAMETER);
2808 status = NtSetInformationProcess(hprocess, ProcessPriorityClass,
2811 if (status != STATUS_SUCCESS)
2813 SetLastError( RtlNtStatusToDosError(status) );
2820 /***********************************************************************
2821 * GetPriorityClass (KERNEL32.@)
2823 DWORD WINAPI GetPriorityClass(HANDLE hProcess)
2826 PROCESS_BASIC_INFORMATION pbi;
2828 status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
2830 if (status != STATUS_SUCCESS)
2832 SetLastError( RtlNtStatusToDosError(status) );
2835 switch (pbi.BasePriority)
2837 case PROCESS_PRIOCLASS_IDLE: return IDLE_PRIORITY_CLASS;
2838 case PROCESS_PRIOCLASS_BELOW_NORMAL: return BELOW_NORMAL_PRIORITY_CLASS;
2839 case PROCESS_PRIOCLASS_NORMAL: return NORMAL_PRIORITY_CLASS;
2840 case PROCESS_PRIOCLASS_ABOVE_NORMAL: return ABOVE_NORMAL_PRIORITY_CLASS;
2841 case PROCESS_PRIOCLASS_HIGH: return HIGH_PRIORITY_CLASS;
2842 case PROCESS_PRIOCLASS_REALTIME: return REALTIME_PRIORITY_CLASS;
2844 SetLastError( ERROR_INVALID_PARAMETER );
2849 /***********************************************************************
2850 * SetProcessAffinityMask (KERNEL32.@)
2852 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD_PTR affmask )
2856 status = NtSetInformationProcess(hProcess, ProcessAffinityMask,
2857 &affmask, sizeof(DWORD_PTR));
2860 SetLastError( RtlNtStatusToDosError(status) );
2867 /**********************************************************************
2868 * GetProcessAffinityMask (KERNEL32.@)
2870 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess,
2871 PDWORD_PTR lpProcessAffinityMask,
2872 PDWORD_PTR lpSystemAffinityMask )
2874 PROCESS_BASIC_INFORMATION pbi;
2877 status = NtQueryInformationProcess(hProcess,
2878 ProcessBasicInformation,
2879 &pbi, sizeof(pbi), NULL);
2882 SetLastError( RtlNtStatusToDosError(status) );
2885 if (lpProcessAffinityMask) *lpProcessAffinityMask = pbi.AffinityMask;
2886 if (lpSystemAffinityMask) *lpSystemAffinityMask = (1 << NtCurrentTeb()->Peb->NumberOfProcessors) - 1;
2891 /***********************************************************************
2892 * GetProcessVersion (KERNEL32.@)
2894 DWORD WINAPI GetProcessVersion( DWORD pid )
2898 PROCESS_BASIC_INFORMATION pbi;
2901 IMAGE_DOS_HEADER dos;
2902 IMAGE_NT_HEADERS nt;
2905 if (!pid || pid == GetCurrentProcessId())
2907 IMAGE_NT_HEADERS *nt;
2909 if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
2910 return ((nt->OptionalHeader.MajorSubsystemVersion << 16) |
2911 nt->OptionalHeader.MinorSubsystemVersion);
2915 process = OpenProcess(PROCESS_VM_READ | PROCESS_QUERY_INFORMATION, FALSE, pid);
2916 if (!process) return 0;
2918 status = NtQueryInformationProcess(process, ProcessBasicInformation, &pbi, sizeof(pbi), NULL);
2919 if (status) goto err;
2921 status = NtReadVirtualMemory(process, pbi.PebBaseAddress, &peb, sizeof(peb), &count);
2922 if (status || count != sizeof(peb)) goto err;
2924 memset(&dos, 0, sizeof(dos));
2925 status = NtReadVirtualMemory(process, peb.ImageBaseAddress, &dos, sizeof(dos), &count);
2926 if (status || count != sizeof(dos)) goto err;
2927 if (dos.e_magic != IMAGE_DOS_SIGNATURE) goto err;
2929 memset(&nt, 0, sizeof(nt));
2930 status = NtReadVirtualMemory(process, (char *)peb.ImageBaseAddress + dos.e_lfanew, &nt, sizeof(nt), &count);
2931 if (status || count != sizeof(nt)) goto err;
2932 if (nt.Signature != IMAGE_NT_SIGNATURE) goto err;
2934 ver = MAKELONG(nt.OptionalHeader.MinorSubsystemVersion, nt.OptionalHeader.MajorSubsystemVersion);
2937 CloseHandle(process);
2939 if (status != STATUS_SUCCESS)
2940 SetLastError(RtlNtStatusToDosError(status));
2946 /***********************************************************************
2947 * SetProcessWorkingSetSize [KERNEL32.@]
2948 * Sets the min/max working set sizes for a specified process.
2951 * hProcess [I] Handle to the process of interest
2952 * minset [I] Specifies minimum working set size
2953 * maxset [I] Specifies maximum working set size
2959 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess, SIZE_T minset,
2962 WARN("(%p,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
2963 if(( minset == (SIZE_T)-1) && (maxset == (SIZE_T)-1)) {
2964 /* Trim the working set to zero */
2965 /* Swap the process out of physical RAM */
2970 /***********************************************************************
2971 * GetProcessWorkingSetSize (KERNEL32.@)
2973 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess, PSIZE_T minset,
2976 FIXME("(%p,%p,%p): stub\n",hProcess,minset,maxset);
2977 /* 32 MB working set size */
2978 if (minset) *minset = 32*1024*1024;
2979 if (maxset) *maxset = 32*1024*1024;
2984 /***********************************************************************
2985 * SetProcessShutdownParameters (KERNEL32.@)
2987 BOOL WINAPI SetProcessShutdownParameters(DWORD level, DWORD flags)
2989 FIXME("(%08x, %08x): partial stub.\n", level, flags);
2990 shutdown_flags = flags;
2991 shutdown_priority = level;
2996 /***********************************************************************
2997 * GetProcessShutdownParameters (KERNEL32.@)
3000 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
3002 *lpdwLevel = shutdown_priority;
3003 *lpdwFlags = shutdown_flags;
3008 /***********************************************************************
3009 * GetProcessPriorityBoost (KERNEL32.@)
3011 BOOL WINAPI GetProcessPriorityBoost(HANDLE hprocess,PBOOL pDisablePriorityBoost)
3013 FIXME("(%p,%p): semi-stub\n", hprocess, pDisablePriorityBoost);
3015 /* Report that no boost is present.. */
3016 *pDisablePriorityBoost = FALSE;
3021 /***********************************************************************
3022 * SetProcessPriorityBoost (KERNEL32.@)
3024 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
3026 FIXME("(%p,%d): stub\n",hprocess,disableboost);
3027 /* Say we can do it. I doubt the program will notice that we don't. */
3032 /***********************************************************************
3033 * ReadProcessMemory (KERNEL32.@)
3035 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, SIZE_T size,
3036 SIZE_T *bytes_read )
3038 NTSTATUS status = NtReadVirtualMemory( process, addr, buffer, size, bytes_read );
3039 if (status) SetLastError( RtlNtStatusToDosError(status) );
3044 /***********************************************************************
3045 * WriteProcessMemory (KERNEL32.@)
3047 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPCVOID buffer, SIZE_T size,
3048 SIZE_T *bytes_written )
3050 NTSTATUS status = NtWriteVirtualMemory( process, addr, buffer, size, bytes_written );
3051 if (status) SetLastError( RtlNtStatusToDosError(status) );
3056 /****************************************************************************
3057 * FlushInstructionCache (KERNEL32.@)
3059 BOOL WINAPI FlushInstructionCache(HANDLE hProcess, LPCVOID lpBaseAddress, SIZE_T dwSize)
3062 status = NtFlushInstructionCache( hProcess, lpBaseAddress, dwSize );
3063 if (status) SetLastError( RtlNtStatusToDosError(status) );
3068 /******************************************************************
3069 * GetProcessIoCounters (KERNEL32.@)
3071 BOOL WINAPI GetProcessIoCounters(HANDLE hProcess, PIO_COUNTERS ioc)
3075 status = NtQueryInformationProcess(hProcess, ProcessIoCounters,
3076 ioc, sizeof(*ioc), NULL);
3077 if (status) SetLastError( RtlNtStatusToDosError(status) );
3081 /******************************************************************
3082 * GetProcessHandleCount (KERNEL32.@)
3084 BOOL WINAPI GetProcessHandleCount(HANDLE hProcess, DWORD *cnt)
3088 status = NtQueryInformationProcess(hProcess, ProcessHandleCount,
3089 cnt, sizeof(*cnt), NULL);
3090 if (status) SetLastError( RtlNtStatusToDosError(status) );
3094 /***********************************************************************
3095 * ProcessIdToSessionId (KERNEL32.@)
3096 * This function is available on Terminal Server 4SP4 and Windows 2000
3098 BOOL WINAPI ProcessIdToSessionId( DWORD procid, DWORD *sessionid_ptr )
3100 /* According to MSDN, if the calling process is not in a terminal
3101 * services environment, then the sessionid returned is zero.
3108 /***********************************************************************
3109 * RegisterServiceProcess (KERNEL.491)
3110 * RegisterServiceProcess (KERNEL32.@)
3112 * A service process calls this function to ensure that it continues to run
3113 * even after a user logged off.
3115 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
3117 /* I don't think that Wine needs to do anything in this function */
3118 return 1; /* success */
3122 /**********************************************************************
3123 * IsWow64Process (KERNEL32.@)
3125 BOOL WINAPI IsWow64Process(HANDLE hProcess, PBOOL Wow64Process)
3130 status = NtQueryInformationProcess( hProcess, ProcessWow64Information, &pbi, sizeof(pbi), NULL );
3132 if (status != STATUS_SUCCESS)
3134 SetLastError( RtlNtStatusToDosError( status ) );
3137 *Wow64Process = (pbi != 0);
3142 /***********************************************************************
3143 * GetCurrentProcess (KERNEL32.@)
3145 * Get a handle to the current process.
3151 * A handle representing the current process.
3153 #undef GetCurrentProcess
3154 HANDLE WINAPI GetCurrentProcess(void)
3156 return (HANDLE)~(ULONG_PTR)0;
3159 /***********************************************************************
3160 * CmdBatNotification (KERNEL32.@)
3162 * Notifies the system that a batch file has started or finished.
3165 * bBatchRunning [I] TRUE if a batch file has started or
3166 * FALSE if a batch file has finished executing.
3171 BOOL WINAPI CmdBatNotification( BOOL bBatchRunning )
3173 FIXME("%d\n", bBatchRunning);
3178 /***********************************************************************
3179 * RegisterApplicationRestart (KERNEL32.@)
3181 HRESULT WINAPI RegisterApplicationRestart(PCWSTR pwzCommandLine, DWORD dwFlags)
3183 FIXME("(%s,%d)\n", debugstr_w(pwzCommandLine), dwFlags);