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 #ifdef HAVE_VALGRIND_MEMCHECK_H
56 #include <valgrind/memcheck.h>
59 WINE_DEFAULT_DEBUG_CHANNEL(process);
60 WINE_DECLARE_DEBUG_CHANNEL(file);
61 WINE_DECLARE_DEBUG_CHANNEL(relay);
71 static UINT process_error_mode;
73 static DWORD shutdown_flags = 0;
74 static DWORD shutdown_priority = 0x280;
75 static DWORD process_dword;
77 HMODULE kernel32_handle = 0;
79 const WCHAR *DIR_Windows = NULL;
80 const WCHAR *DIR_System = NULL;
83 #define PDB32_DEBUGGED 0x0001 /* Process is being debugged */
84 #define PDB32_WIN16_PROC 0x0008 /* Win16 process */
85 #define PDB32_DOS_PROC 0x0010 /* Dos process */
86 #define PDB32_CONSOLE_PROC 0x0020 /* Console process */
87 #define PDB32_FILE_APIS_OEM 0x0040 /* File APIs are OEM */
88 #define PDB32_WIN32S_PROC 0x8000 /* Win32s process */
90 static const WCHAR comW[] = {'.','c','o','m',0};
91 static const WCHAR batW[] = {'.','b','a','t',0};
92 static const WCHAR cmdW[] = {'.','c','m','d',0};
93 static const WCHAR pifW[] = {'.','p','i','f',0};
94 static const WCHAR winevdmW[] = {'w','i','n','e','v','d','m','.','e','x','e',0};
96 static void exec_process( LPCWSTR name );
98 extern void SHELL_LoadRegistry(void);
101 /***********************************************************************
104 static inline int contains_path( LPCWSTR name )
106 return ((*name && (name[1] == ':')) || strchrW(name, '/') || strchrW(name, '\\'));
110 /***********************************************************************
113 * Check if an environment variable needs to be handled specially when
114 * passed through the Unix environment (i.e. prefixed with "WINE").
116 static inline int is_special_env_var( const char *var )
118 return (!strncmp( var, "PATH=", sizeof("PATH=")-1 ) ||
119 !strncmp( var, "HOME=", sizeof("HOME=")-1 ) ||
120 !strncmp( var, "TEMP=", sizeof("TEMP=")-1 ) ||
121 !strncmp( var, "TMP=", sizeof("TMP=")-1 ));
125 /***************************************************************************
128 * Get the path of a builtin module when the native file does not exist.
130 static BOOL get_builtin_path( const WCHAR *libname, const WCHAR *ext, WCHAR *filename, UINT size )
133 UINT len = strlenW( DIR_System );
135 if (contains_path( libname ))
137 if (RtlGetFullPathName_U( libname, size * sizeof(WCHAR),
138 filename, &file_part ) > size * sizeof(WCHAR))
139 return FALSE; /* too long */
141 if (strncmpiW( filename, DIR_System, len ) || filename[len] != '\\')
143 while (filename[len] == '\\') len++;
144 if (filename + len != file_part) return FALSE;
148 if (strlenW(libname) + len + 2 >= size) return FALSE; /* too long */
149 memcpy( filename, DIR_System, len * sizeof(WCHAR) );
150 file_part = filename + len;
151 if (file_part > filename && file_part[-1] != '\\') *file_part++ = '\\';
152 strcpyW( file_part, libname );
154 if (ext && !strchrW( file_part, '.' ))
156 if (file_part + strlenW(file_part) + strlenW(ext) + 1 > filename + size)
157 return FALSE; /* too long */
158 strcatW( file_part, ext );
164 /***********************************************************************
165 * open_builtin_exe_file
167 * Open an exe file for a builtin exe.
169 static void *open_builtin_exe_file( const WCHAR *name, char *error, int error_size,
170 int test_only, int *file_exists )
172 char exename[MAX_PATH];
177 if ((p = strrchrW( name, '/' ))) name = p + 1;
178 if ((p = strrchrW( name, '\\' ))) name = p + 1;
180 /* we don't want to depend on the current codepage here */
181 len = strlenW( name ) + 1;
182 if (len >= sizeof(exename)) return NULL;
183 for (i = 0; i < len; i++)
185 if (name[i] > 127) return NULL;
186 exename[i] = (char)name[i];
187 if (exename[i] >= 'A' && exename[i] <= 'Z') exename[i] += 'a' - 'A';
189 return wine_dll_load_main_exe( exename, error, error_size, test_only, file_exists );
193 /***********************************************************************
196 * Open a specific exe file, taking load order into account.
197 * Returns the file handle or 0 for a builtin exe.
199 static HANDLE open_exe_file( const WCHAR *name )
203 TRACE("looking for %s\n", debugstr_w(name) );
205 if ((handle = CreateFileW( name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_DELETE,
206 NULL, OPEN_EXISTING, 0, 0 )) == INVALID_HANDLE_VALUE)
208 WCHAR buffer[MAX_PATH];
209 /* file doesn't exist, check for builtin */
210 if (!contains_path( name )) goto error;
211 if (!get_builtin_path( name, NULL, buffer, sizeof(buffer) )) goto error;
217 SetLastError( ERROR_FILE_NOT_FOUND );
218 return INVALID_HANDLE_VALUE;
222 /***********************************************************************
225 * Open an exe file, and return the full name and file handle.
226 * Returns FALSE if file could not be found.
227 * If file exists but cannot be opened, returns TRUE and set handle to INVALID_HANDLE_VALUE.
228 * If file is a builtin exe, returns TRUE and sets handle to 0.
230 static BOOL find_exe_file( const WCHAR *name, WCHAR *buffer, int buflen, HANDLE *handle )
232 static const WCHAR exeW[] = {'.','e','x','e',0};
235 TRACE("looking for %s\n", debugstr_w(name) );
237 if (!SearchPathW( NULL, name, exeW, buflen, buffer, NULL ) &&
238 !get_builtin_path( name, exeW, buffer, buflen ))
240 /* no builtin found, try native without extension in case it is a Unix app */
242 if (SearchPathW( NULL, name, NULL, buflen, buffer, NULL ))
244 TRACE( "Trying native/Unix binary %s\n", debugstr_w(buffer) );
245 if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_DELETE,
246 NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
252 TRACE( "Trying native exe %s\n", debugstr_w(buffer) );
253 if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_DELETE,
254 NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
257 TRACE( "Trying built-in exe %s\n", debugstr_w(buffer) );
258 open_builtin_exe_file( buffer, NULL, 0, 1, &file_exists );
269 /***********************************************************************
270 * build_initial_environment
272 * Build the Win32 environment from the Unix environment
274 static BOOL build_initial_environment( char **environ )
281 /* Compute the total size of the Unix environment */
282 for (e = environ; *e; e++)
284 if (is_special_env_var( *e )) continue;
285 size += MultiByteToWideChar( CP_UNIXCP, 0, *e, -1, NULL, 0 );
287 size *= sizeof(WCHAR);
289 /* Now allocate the environment */
291 if (NtAllocateVirtualMemory(NtCurrentProcess(), &ptr, 0, &size,
292 MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE) != STATUS_SUCCESS)
295 NtCurrentTeb()->Peb->ProcessParameters->Environment = p = ptr;
296 endptr = p + size / sizeof(WCHAR);
298 /* And fill it with the Unix environment */
299 for (e = environ; *e; e++)
303 /* skip Unix special variables and use the Wine variants instead */
304 if (!strncmp( str, "WINE", 4 ))
306 if (is_special_env_var( str + 4 )) str += 4;
307 else if (!strncmp( str, "WINEPRELOADRESERVE=", 19 )) continue; /* skip it */
309 else if (is_special_env_var( str )) continue; /* skip it */
311 MultiByteToWideChar( CP_UNIXCP, 0, str, -1, p, endptr - p );
319 /***********************************************************************
320 * set_registry_variables
322 * Set environment variables by enumerating the values of a key;
323 * helper for set_registry_environment().
324 * Note that Windows happily truncates the value if it's too big.
326 static void set_registry_variables( HANDLE hkey, ULONG type )
328 UNICODE_STRING env_name, env_value;
332 char buffer[1024*sizeof(WCHAR) + sizeof(KEY_VALUE_FULL_INFORMATION)];
333 KEY_VALUE_FULL_INFORMATION *info = (KEY_VALUE_FULL_INFORMATION *)buffer;
335 for (index = 0; ; index++)
337 status = NtEnumerateValueKey( hkey, index, KeyValueFullInformation,
338 buffer, sizeof(buffer), &size );
339 if (status != STATUS_SUCCESS && status != STATUS_BUFFER_OVERFLOW)
341 if (info->Type != type)
343 env_name.Buffer = info->Name;
344 env_name.Length = env_name.MaximumLength = info->NameLength;
345 env_value.Buffer = (WCHAR *)(buffer + info->DataOffset);
346 env_value.Length = env_value.MaximumLength = info->DataLength;
347 if (env_value.Length && !env_value.Buffer[env_value.Length/sizeof(WCHAR)-1])
348 env_value.Length -= sizeof(WCHAR); /* don't count terminating null if any */
349 if (info->Type == REG_EXPAND_SZ)
351 WCHAR buf_expanded[1024];
352 UNICODE_STRING env_expanded;
353 env_expanded.Length = env_expanded.MaximumLength = sizeof(buf_expanded);
354 env_expanded.Buffer=buf_expanded;
355 status = RtlExpandEnvironmentStrings_U(NULL, &env_value, &env_expanded, NULL);
356 if (status == STATUS_SUCCESS || status == STATUS_BUFFER_OVERFLOW)
357 RtlSetEnvironmentVariable( NULL, &env_name, &env_expanded );
361 RtlSetEnvironmentVariable( NULL, &env_name, &env_value );
367 /***********************************************************************
368 * set_registry_environment
370 * Set the environment variables specified in the registry.
372 * Note: Windows handles REG_SZ and REG_EXPAND_SZ in one pass with the
373 * consequence that REG_EXPAND_SZ cannot be used reliably as it depends
374 * on the order in which the variables are processed. But on Windows it
375 * does not really matter since they only use %SystemDrive% and
376 * %SystemRoot% which are predefined. But Wine defines these in the
377 * registry, so we need two passes.
379 static void set_registry_environment(void)
381 static const WCHAR env_keyW[] = {'M','a','c','h','i','n','e','\\',
382 'S','y','s','t','e','m','\\',
383 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
384 'C','o','n','t','r','o','l','\\',
385 'S','e','s','s','i','o','n',' ','M','a','n','a','g','e','r','\\',
386 'E','n','v','i','r','o','n','m','e','n','t',0};
387 static const WCHAR envW[] = {'E','n','v','i','r','o','n','m','e','n','t',0};
389 OBJECT_ATTRIBUTES attr;
390 UNICODE_STRING nameW;
393 attr.Length = sizeof(attr);
394 attr.RootDirectory = 0;
395 attr.ObjectName = &nameW;
397 attr.SecurityDescriptor = NULL;
398 attr.SecurityQualityOfService = NULL;
400 /* first the system environment variables */
401 RtlInitUnicodeString( &nameW, env_keyW );
402 if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr ) == STATUS_SUCCESS)
404 set_registry_variables( hkey, REG_SZ );
405 set_registry_variables( hkey, REG_EXPAND_SZ );
409 /* then the ones for the current user */
410 if (RtlOpenCurrentUser( KEY_ALL_ACCESS, &attr.RootDirectory ) != STATUS_SUCCESS) return;
411 RtlInitUnicodeString( &nameW, envW );
412 if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr ) == STATUS_SUCCESS)
414 set_registry_variables( hkey, REG_SZ );
415 set_registry_variables( hkey, REG_EXPAND_SZ );
418 NtClose( attr.RootDirectory );
421 /***********************************************************************
422 * set_additional_environment
424 * Set some additional environment variables not specified in the registry.
426 static void set_additional_environment(void)
428 static const WCHAR usernameW[] = {'U','S','E','R','N','A','M','E',0};
429 const char *name = wine_get_user_name();
430 DWORD len = MultiByteToWideChar( CP_UNIXCP, 0, name, -1, NULL, 0 );
433 LPWSTR nameW = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
434 MultiByteToWideChar( CP_UNIXCP, 0, name, -1, nameW, len );
435 SetEnvironmentVariableW( usernameW, nameW );
436 HeapFree( GetProcessHeap(), 0, nameW );
440 /***********************************************************************
443 * Set the Wine library Unicode argv global variables.
445 static void set_library_wargv( char **argv )
453 for (argc = 0; argv[argc]; argc++)
454 total += MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, NULL, 0 );
456 wargv = RtlAllocateHeap( GetProcessHeap(), 0,
457 total * sizeof(WCHAR) + (argc + 1) * sizeof(*wargv) );
458 p = (WCHAR *)(wargv + argc + 1);
459 for (argc = 0; argv[argc]; argc++)
461 DWORD reslen = MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, p, total );
468 /* convert argv back from Unicode since it has to be in the Ansi codepage not the Unix one */
470 for (argc = 0; wargv[argc]; argc++)
471 total += WideCharToMultiByte( CP_ACP, 0, wargv[argc], -1, NULL, 0, NULL, NULL );
473 argv = RtlAllocateHeap( GetProcessHeap(), 0, total + (argc + 1) * sizeof(*argv) );
474 q = (char *)(argv + argc + 1);
475 for (argc = 0; wargv[argc]; argc++)
477 DWORD reslen = WideCharToMultiByte( CP_ACP, 0, wargv[argc], -1, q, total, NULL, NULL );
484 __wine_main_argc = argc;
485 __wine_main_argv = argv;
486 __wine_main_wargv = wargv;
490 /***********************************************************************
493 * Build the command line of a process from the argv array.
495 * Note that it does NOT necessarily include the file name.
496 * Sometimes we don't even have any command line options at all.
498 * We must quote and escape characters so that the argv array can be rebuilt
499 * from the command line:
500 * - spaces and tabs must be quoted
502 * - quotes must be escaped
504 * - if '\'s are followed by a '"', they must be doubled and followed by '\"',
505 * resulting in an odd number of '\' followed by a '"'
508 * - '\'s that are not followed by a '"' can be left as is
512 static BOOL build_command_line( WCHAR **argv )
517 RTL_USER_PROCESS_PARAMETERS* rupp = NtCurrentTeb()->Peb->ProcessParameters;
519 if (rupp->CommandLine.Buffer) return TRUE; /* already got it from the server */
522 for (arg = argv; *arg; arg++)
524 int has_space,bcount;
530 if( !*a ) has_space=1;
535 if (*a==' ' || *a=='\t') {
537 } else if (*a=='"') {
538 /* doubling of '\' preceding a '"',
539 * plus escaping of said '"'
547 len+=(a-*arg)+1 /* for the separating space */;
549 len+=2; /* for the quotes */
552 if (!(rupp->CommandLine.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, len * sizeof(WCHAR))))
555 p = rupp->CommandLine.Buffer;
556 rupp->CommandLine.Length = (len - 1) * sizeof(WCHAR);
557 rupp->CommandLine.MaximumLength = len * sizeof(WCHAR);
558 for (arg = argv; *arg; arg++)
560 int has_space,has_quote;
563 /* Check for quotes and spaces in this argument */
564 has_space=has_quote=0;
566 if( !*a ) has_space=1;
568 if (*a==' ' || *a=='\t') {
572 } else if (*a=='"') {
580 /* Now transfer it to the command line */
597 /* Double all the '\\' preceding this '"', plus one */
598 for (i=0;i<=bcount;i++)
610 while ((*p=*x++)) p++;
616 if (p > rupp->CommandLine.Buffer)
617 p--; /* remove last space */
624 /***********************************************************************
625 * init_current_directory
627 * Initialize the current directory from the Unix cwd or the parent info.
629 static void init_current_directory( CURDIR *cur_dir )
631 UNICODE_STRING dir_str;
635 /* if we received a cur dir from the parent, try this first */
637 if (cur_dir->DosPath.Length)
639 if (RtlSetCurrentDirectory_U( &cur_dir->DosPath ) == STATUS_SUCCESS) goto done;
642 /* now try to get it from the Unix cwd */
644 for (size = 256; ; size *= 2)
646 if (!(cwd = HeapAlloc( GetProcessHeap(), 0, size ))) break;
647 if (getcwd( cwd, size )) break;
648 HeapFree( GetProcessHeap(), 0, cwd );
649 if (errno == ERANGE) continue;
657 int lenW = MultiByteToWideChar( CP_UNIXCP, 0, cwd, -1, NULL, 0 );
658 if ((dirW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) )))
660 MultiByteToWideChar( CP_UNIXCP, 0, cwd, -1, dirW, lenW );
661 RtlInitUnicodeString( &dir_str, dirW );
662 RtlSetCurrentDirectory_U( &dir_str );
663 RtlFreeUnicodeString( &dir_str );
667 if (!cur_dir->DosPath.Length) /* still not initialized */
669 MESSAGE("Warning: could not find DOS drive for current working directory '%s', "
670 "starting in the Windows directory.\n", cwd ? cwd : "" );
671 RtlInitUnicodeString( &dir_str, DIR_Windows );
672 RtlSetCurrentDirectory_U( &dir_str );
674 HeapFree( GetProcessHeap(), 0, cwd );
677 if (!cur_dir->Handle) chdir("/"); /* change to root directory so as not to lock cdroms */
678 TRACE( "starting in %s %p\n", debugstr_w( cur_dir->DosPath.Buffer ), cur_dir->Handle );
682 /***********************************************************************
685 * Initialize the windows and system directories from the environment.
687 static void init_windows_dirs(void)
689 extern void __wine_init_windows_dir( const WCHAR *windir, const WCHAR *sysdir );
691 static const WCHAR windirW[] = {'w','i','n','d','i','r',0};
692 static const WCHAR winsysdirW[] = {'w','i','n','s','y','s','d','i','r',0};
693 static const WCHAR default_windirW[] = {'c',':','\\','w','i','n','d','o','w','s',0};
694 static const WCHAR default_sysdirW[] = {'\\','s','y','s','t','e','m','3','2',0};
699 if ((len = GetEnvironmentVariableW( windirW, NULL, 0 )))
701 buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
702 GetEnvironmentVariableW( windirW, buffer, len );
703 DIR_Windows = buffer;
705 else DIR_Windows = default_windirW;
707 if ((len = GetEnvironmentVariableW( winsysdirW, NULL, 0 )))
709 buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
710 GetEnvironmentVariableW( winsysdirW, buffer, len );
715 len = strlenW( DIR_Windows );
716 buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) + sizeof(default_sysdirW) );
717 memcpy( buffer, DIR_Windows, len * sizeof(WCHAR) );
718 memcpy( buffer + len, default_sysdirW, sizeof(default_sysdirW) );
722 if (GetFileAttributesW( DIR_Windows ) == INVALID_FILE_ATTRIBUTES)
723 MESSAGE( "Warning: the specified Windows directory %s is not accessible.\n",
724 debugstr_w(DIR_Windows) );
725 if (GetFileAttributesW( DIR_System ) == INVALID_FILE_ATTRIBUTES)
726 MESSAGE( "Warning: the specified System directory %s is not accessible.\n",
727 debugstr_w(DIR_System) );
729 TRACE_(file)( "WindowsDir = %s\n", debugstr_w(DIR_Windows) );
730 TRACE_(file)( "SystemDir = %s\n", debugstr_w(DIR_System) );
732 /* set the directories in ntdll too */
733 __wine_init_windows_dir( DIR_Windows, DIR_System );
737 /***********************************************************************
740 * Main process initialisation code
742 static BOOL process_init(void)
744 static const WCHAR kernel32W[] = {'k','e','r','n','e','l','3','2',0};
745 PEB *peb = NtCurrentTeb()->Peb;
746 RTL_USER_PROCESS_PARAMETERS *params = peb->ProcessParameters;
753 kernel32_handle = GetModuleHandleW(kernel32W);
757 if (!params->Environment)
759 /* Copy the parent environment */
760 if (!build_initial_environment( __wine_main_environ )) return FALSE;
762 /* convert old configuration to new format */
763 convert_old_config();
765 set_registry_environment();
766 set_additional_environment();
770 init_current_directory( ¶ms->CurrentDirectory );
776 /***********************************************************************
779 * Allocate the stack of new process.
781 static void *init_stack(void)
784 SIZE_T stack_size, page_size = getpagesize();
785 IMAGE_NT_HEADERS *nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress );
787 stack_size = max( nt->OptionalHeader.SizeOfStackReserve, nt->OptionalHeader.SizeOfStackCommit );
788 stack_size += page_size; /* for the guard page */
789 stack_size = (stack_size + 0xffff) & ~0xffff; /* round to 64K boundary */
790 if (stack_size < 1024 * 1024) stack_size = 1024 * 1024; /* Xlib needs a large stack */
792 if (!(base = VirtualAlloc( NULL, stack_size, MEM_COMMIT, PAGE_READWRITE )))
794 ERR( "failed to allocate main process stack\n" );
798 /* note: limit is lower than base since the stack grows down */
799 NtCurrentTeb()->DeallocationStack = base;
800 NtCurrentTeb()->Tib.StackBase = (char *)base + stack_size;
801 NtCurrentTeb()->Tib.StackLimit = (char *)base + page_size;
803 #ifdef VALGRIND_STACK_REGISTER
804 /* no need to de-register the stack as it's the one of the main thread */
805 VALGRIND_STACK_REGISTER(NtCurrentTeb()->Tib.StackLimit, NtCurrentTeb()->Tib.StackBase);
808 /* setup guard page */
809 VirtualProtect( base, page_size, PAGE_NOACCESS, NULL );
810 return NtCurrentTeb()->Tib.StackBase;
814 /***********************************************************************
817 * Startup routine of a new process. Runs on the new process stack.
819 static void start_process( void *arg )
823 PEB *peb = NtCurrentTeb()->Peb;
824 IMAGE_NT_HEADERS *nt;
825 LPTHREAD_START_ROUTINE entry;
827 LdrInitializeThunk( 0, 0, 0, 0 );
829 nt = RtlImageNtHeader( peb->ImageBaseAddress );
830 entry = (LPTHREAD_START_ROUTINE)((char *)peb->ImageBaseAddress +
831 nt->OptionalHeader.AddressOfEntryPoint);
834 DPRINTF( "%04x:Starting process %s (entryproc=%p)\n", GetCurrentThreadId(),
835 debugstr_w(peb->ProcessParameters->ImagePathName.Buffer), entry );
837 SetLastError( 0 ); /* clear error code */
838 if (peb->BeingDebugged) DbgBreakPoint();
839 ExitThread( entry( peb ) );
841 __EXCEPT(UnhandledExceptionFilter)
843 TerminateThread( GetCurrentThread(), GetExceptionCode() );
849 /***********************************************************************
852 * Change the process name in the ps output.
854 static void set_process_name( int argc, char *argv[] )
858 char *p, *prctl_name = argv[1];
859 char *end = argv[argc-1] + strlen(argv[argc-1]) + 1;
862 # define PR_SET_NAME 15
865 if ((p = strrchr( prctl_name, '\\' ))) prctl_name = p + 1;
866 if ((p = strrchr( prctl_name, '/' ))) prctl_name = p + 1;
868 if (prctl( PR_SET_NAME, prctl_name ) != -1)
870 offset = argv[1] - argv[0];
871 memmove( argv[1] - offset, argv[1], end - argv[1] );
872 memset( end - offset, 0, offset );
873 for (i = 1; i < argc; i++) argv[i-1] = argv[i] - offset;
877 #endif /* HAVE_PRCTL */
880 memmove( argv, argv + 1, argc * sizeof(argv[0]) );
885 /***********************************************************************
888 * Wine initialisation: load and start the main exe file.
890 void __wine_kernel_init(void)
892 static const WCHAR dotW[] = {'.',0};
893 static const WCHAR exeW[] = {'.','e','x','e',0};
895 WCHAR *p, main_exe_name[MAX_PATH+1];
896 PEB *peb = NtCurrentTeb()->Peb;
898 /* Initialize everything */
899 if (!process_init()) exit(1);
900 set_process_name( __wine_main_argc, __wine_main_argv );
901 set_library_wargv( __wine_main_argv );
903 if (peb->ProcessParameters->ImagePathName.Buffer)
905 strcpyW( main_exe_name, peb->ProcessParameters->ImagePathName.Buffer );
909 if (!SearchPathW( NULL, __wine_main_wargv[0], exeW, MAX_PATH, main_exe_name, NULL ) &&
910 !get_builtin_path( __wine_main_wargv[0], exeW, main_exe_name, MAX_PATH ))
912 MESSAGE( "wine: cannot find '%s'\n", __wine_main_argv[0] );
913 ExitProcess( GetLastError() );
915 if (!build_command_line( __wine_main_wargv )) goto error;
918 /* if there's no extension, append a dot to prevent LoadLibrary from appending .dll */
919 p = strrchrW( main_exe_name, '.' );
920 if (!p || strchrW( p, '/' ) || strchrW( p, '\\' )) strcatW( main_exe_name, dotW );
922 TRACE( "starting process name=%s argv[0]=%s\n",
923 debugstr_w(main_exe_name), debugstr_w(__wine_main_wargv[0]) );
925 RtlInitUnicodeString( &NtCurrentTeb()->Peb->ProcessParameters->DllPath,
926 MODULE_get_dll_load_path(main_exe_name) );
928 if (!(peb->ImageBaseAddress = LoadLibraryExW( main_exe_name, 0, DONT_RESOLVE_DLL_REFERENCES )))
931 DWORD error = GetLastError();
933 /* if Win16/DOS format, or unavailable address, exec a new process with the proper setup */
934 if (error == ERROR_BAD_EXE_FORMAT ||
935 error == ERROR_INVALID_ADDRESS ||
936 error == ERROR_NOT_ENOUGH_MEMORY)
938 if (!getenv("WINEPRELOADRESERVE")) exec_process( main_exe_name );
939 /* if we get back here, it failed */
942 FormatMessageA( FORMAT_MESSAGE_FROM_SYSTEM, NULL, error, 0, msg, sizeof(msg), NULL );
943 MESSAGE( "wine: could not load %s: %s", debugstr_w(main_exe_name), msg );
944 ExitProcess( error );
947 /* switch to the new stack */
948 wine_switch_to_stack( start_process, NULL, init_stack() );
951 ExitProcess( GetLastError() );
955 /***********************************************************************
958 * Build an argv array from a command-line.
959 * 'reserved' is the number of args to reserve before the first one.
961 static char **build_argv( const WCHAR *cmdlineW, int reserved )
965 char *arg,*s,*d,*cmdline;
966 int in_quotes,bcount,len;
968 len = WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, NULL, 0, NULL, NULL );
969 if (!(cmdline = malloc(len))) return NULL;
970 WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, cmdline, len, NULL, NULL );
977 if (*s=='\0' || ((*s==' ' || *s=='\t') && !in_quotes)) {
980 /* skip the remaining spaces */
981 while (*s==' ' || *s=='\t') {
988 } else if (*s=='\\') {
989 /* '\', count them */
991 } else if ((*s=='"') && ((bcount & 1)==0)) {
993 in_quotes=!in_quotes;
996 /* a regular character */
1001 argv=malloc(argc*sizeof(*argv));
1010 if ((*s==' ' || *s=='\t') && !in_quotes) {
1011 /* Close the argument and copy it */
1015 /* skip the remaining spaces */
1018 } while (*s==' ' || *s=='\t');
1020 /* Start with a new argument */
1023 } else if (*s=='\\') {
1027 } else if (*s=='"') {
1029 if ((bcount & 1)==0) {
1030 /* Preceded by an even number of '\', this is half that
1031 * number of '\', plus a '"' which we discard.
1035 in_quotes=!in_quotes;
1037 /* Preceded by an odd number of '\', this is half that
1038 * number of '\' followed by a '"'
1046 /* a regular character */
1061 /***********************************************************************
1064 * Allocate an environment string; helper for build_envp
1066 static char *alloc_env_string( const char *name, const char *value )
1068 char *ret = malloc( strlen(name) + strlen(value) + 1 );
1069 strcpy( ret, name );
1070 strcat( ret, value );
1074 /***********************************************************************
1077 * Build the environment of a new child process.
1079 static char **build_envp( const WCHAR *envW )
1084 int count = 0, length;
1086 for (end = envW; *end; count++) end += strlenW(end) + 1;
1088 length = WideCharToMultiByte( CP_UNIXCP, 0, envW, end - envW, NULL, 0, NULL, NULL );
1089 if (!(env = malloc( length ))) return NULL;
1090 WideCharToMultiByte( CP_UNIXCP, 0, envW, end - envW, env, length, NULL, NULL );
1094 if ((envp = malloc( count * sizeof(*envp) )))
1096 char **envptr = envp;
1098 /* some variables must not be modified, so we get them directly from the unix env */
1099 if ((p = getenv("PATH"))) *envptr++ = alloc_env_string( "PATH=", p );
1100 if ((p = getenv("TEMP"))) *envptr++ = alloc_env_string( "TEMP=", p );
1101 if ((p = getenv("TMP"))) *envptr++ = alloc_env_string( "TMP=", p );
1102 if ((p = getenv("HOME"))) *envptr++ = alloc_env_string( "HOME=", p );
1103 /* now put the Windows environment strings */
1104 for (p = env; *p; p += strlen(p) + 1)
1106 if (*p == '=') continue; /* skip drive curdirs, this crashes some unix apps */
1107 if (!strncmp( p, "WINEPRELOADRESERVE=", sizeof("WINEPRELOADRESERVE=")-1 )) continue;
1108 if (!strncmp( p, "WINESERVERSOCKET=", sizeof("WINESERVERSOCKET=")-1 )) continue;
1109 if (is_special_env_var( p )) /* prefix it with "WINE" */
1110 *envptr++ = alloc_env_string( "WINE", p );
1120 /***********************************************************************
1123 * Fork and exec a new Unix binary, checking for errors.
1125 static int fork_and_exec( const char *filename, const WCHAR *cmdline,
1126 const WCHAR *env, const char *newdir, DWORD flags )
1131 if (!env) env = GetEnvironmentStringsW();
1135 SetLastError( ERROR_TOO_MANY_OPEN_FILES );
1138 fcntl( fd[1], F_SETFD, 1 ); /* set close on exec */
1139 if (!(pid = fork())) /* child */
1141 char **argv = build_argv( cmdline, 0 );
1142 char **envp = build_envp( env );
1145 if (flags & (CREATE_NEW_PROCESS_GROUP | CREATE_NEW_CONSOLE | DETACHED_PROCESS)) setsid();
1147 /* Reset signals that we previously set to SIG_IGN */
1148 signal( SIGPIPE, SIG_DFL );
1149 signal( SIGCHLD, SIG_DFL );
1151 if (newdir) chdir(newdir);
1153 if (argv && envp) execve( filename, argv, envp );
1155 write( fd[1], &err, sizeof(err) );
1159 if ((pid != -1) && (read( fd[0], &err, sizeof(err) ) > 0)) /* exec failed */
1164 if (pid == -1) FILE_SetDosError();
1170 /***********************************************************************
1171 * create_user_params
1173 static RTL_USER_PROCESS_PARAMETERS *create_user_params( LPCWSTR filename, LPCWSTR cmdline,
1174 LPCWSTR cur_dir, LPWSTR env, DWORD flags,
1175 const STARTUPINFOW *startup )
1177 RTL_USER_PROCESS_PARAMETERS *params;
1178 UNICODE_STRING image_str, cmdline_str, curdir_str, desktop, title, runtime, newdir;
1180 WCHAR buffer[MAX_PATH];
1182 if(!GetLongPathNameW( filename, buffer, MAX_PATH ))
1183 lstrcpynW( buffer, filename, MAX_PATH );
1184 if(!GetFullPathNameW( buffer, MAX_PATH, buffer, NULL ))
1185 lstrcpynW( buffer, filename, MAX_PATH );
1186 RtlInitUnicodeString( &image_str, buffer );
1188 RtlInitUnicodeString( &cmdline_str, cmdline );
1189 newdir.Buffer = NULL;
1192 if (RtlDosPathNameToNtPathName_U( cur_dir, &newdir, NULL, NULL ))
1194 /* skip \??\ prefix */
1195 curdir_str.Buffer = newdir.Buffer + 4;
1196 curdir_str.Length = newdir.Length - 4 * sizeof(WCHAR);
1197 curdir_str.MaximumLength = newdir.MaximumLength - 4 * sizeof(WCHAR);
1199 else cur_dir = NULL;
1201 if (startup->lpDesktop) RtlInitUnicodeString( &desktop, startup->lpDesktop );
1202 if (startup->lpTitle) RtlInitUnicodeString( &title, startup->lpTitle );
1203 if (startup->lpReserved2 && startup->cbReserved2)
1206 runtime.MaximumLength = startup->cbReserved2;
1207 runtime.Buffer = (WCHAR*)startup->lpReserved2;
1210 status = RtlCreateProcessParameters( ¶ms, &image_str, NULL,
1211 cur_dir ? &curdir_str : NULL,
1213 startup->lpTitle ? &title : NULL,
1214 startup->lpDesktop ? &desktop : NULL,
1216 (startup->lpReserved2 && startup->cbReserved2) ? &runtime : NULL );
1217 RtlFreeUnicodeString( &newdir );
1218 if (status != STATUS_SUCCESS)
1220 SetLastError( RtlNtStatusToDosError(status) );
1224 if (flags & CREATE_NEW_PROCESS_GROUP) params->ConsoleFlags = 1;
1225 if (flags & CREATE_NEW_CONSOLE) params->ConsoleHandle = (HANDLE)1; /* FIXME: cf. kernel_main.c */
1227 if (startup->dwFlags & STARTF_USESTDHANDLES)
1229 params->hStdInput = startup->hStdInput;
1230 params->hStdOutput = startup->hStdOutput;
1231 params->hStdError = startup->hStdError;
1235 params->hStdInput = GetStdHandle( STD_INPUT_HANDLE );
1236 params->hStdOutput = GetStdHandle( STD_OUTPUT_HANDLE );
1237 params->hStdError = GetStdHandle( STD_ERROR_HANDLE );
1239 params->dwX = startup->dwX;
1240 params->dwY = startup->dwY;
1241 params->dwXSize = startup->dwXSize;
1242 params->dwYSize = startup->dwYSize;
1243 params->dwXCountChars = startup->dwXCountChars;
1244 params->dwYCountChars = startup->dwYCountChars;
1245 params->dwFillAttribute = startup->dwFillAttribute;
1246 params->dwFlags = startup->dwFlags;
1247 params->wShowWindow = startup->wShowWindow;
1252 /***********************************************************************
1255 * Create a new process. If hFile is a valid handle we have an exe
1256 * file, otherwise it is a Winelib app.
1258 static BOOL create_process( HANDLE hFile, LPCWSTR filename, LPWSTR cmd_line, LPWSTR env,
1259 LPCWSTR cur_dir, LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1260 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1261 LPPROCESS_INFORMATION info, LPCSTR unixdir,
1262 void *res_start, void *res_end, int exec_only )
1264 BOOL ret, success = FALSE;
1265 HANDLE process_info;
1267 char *winedebug = NULL;
1268 RTL_USER_PROCESS_PARAMETERS *params;
1273 if (!env) RtlAcquirePebLock();
1275 if (!(params = create_user_params( filename, cmd_line, cur_dir, env, flags, startup )))
1277 if (!env) RtlReleasePebLock();
1280 env_end = params->Environment;
1283 static const WCHAR WINEDEBUG[] = {'W','I','N','E','D','E','B','U','G','=',0};
1284 if (!winedebug && !strncmpW( env_end, WINEDEBUG, sizeof(WINEDEBUG)/sizeof(WCHAR) - 1 ))
1286 DWORD len = WideCharToMultiByte( CP_UNIXCP, 0, env_end, -1, NULL, 0, NULL, NULL );
1287 if ((winedebug = HeapAlloc( GetProcessHeap(), 0, len )))
1288 WideCharToMultiByte( CP_UNIXCP, 0, env_end, -1, winedebug, len, NULL, NULL );
1290 env_end += strlenW(env_end) + 1;
1294 /* create the socket for the new process */
1296 if (socketpair( PF_UNIX, SOCK_STREAM, 0, socketfd ) == -1)
1298 if (!env) RtlReleasePebLock();
1299 HeapFree( GetProcessHeap(), 0, winedebug );
1300 RtlDestroyProcessParameters( params );
1301 SetLastError( ERROR_TOO_MANY_OPEN_FILES );
1304 wine_server_send_fd( socketfd[1] );
1305 close( socketfd[1] );
1307 /* create the process on the server side */
1309 SERVER_START_REQ( new_process )
1311 req->inherit_all = inherit;
1312 req->create_flags = flags;
1313 req->socket_fd = socketfd[1];
1314 req->exe_file = hFile;
1315 req->process_access = PROCESS_ALL_ACCESS;
1316 req->process_attr = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle) ? OBJ_INHERIT : 0;
1317 req->thread_access = THREAD_ALL_ACCESS;
1318 req->thread_attr = (tsa && (tsa->nLength >= sizeof(*tsa)) && tsa->bInheritHandle) ? OBJ_INHERIT : 0;
1319 req->hstdin = params->hStdInput;
1320 req->hstdout = params->hStdOutput;
1321 req->hstderr = params->hStdError;
1323 if ((flags & (CREATE_NEW_CONSOLE | DETACHED_PROCESS)) != 0)
1325 /* this is temporary (for console handles). We have no way to control that the handle is invalid in child process otherwise */
1326 if (is_console_handle(req->hstdin)) req->hstdin = INVALID_HANDLE_VALUE;
1327 if (is_console_handle(req->hstdout)) req->hstdout = INVALID_HANDLE_VALUE;
1328 if (is_console_handle(req->hstderr)) req->hstderr = INVALID_HANDLE_VALUE;
1332 if (is_console_handle(req->hstdin)) req->hstdin = console_handle_unmap(req->hstdin);
1333 if (is_console_handle(req->hstdout)) req->hstdout = console_handle_unmap(req->hstdout);
1334 if (is_console_handle(req->hstderr)) req->hstderr = console_handle_unmap(req->hstderr);
1337 wine_server_add_data( req, params, params->Size );
1338 wine_server_add_data( req, params->Environment, (env_end-params->Environment)*sizeof(WCHAR) );
1339 if ((ret = !wine_server_call_err( req )))
1341 info->dwProcessId = (DWORD)reply->pid;
1342 info->dwThreadId = (DWORD)reply->tid;
1343 info->hProcess = reply->phandle;
1344 info->hThread = reply->thandle;
1346 process_info = reply->info;
1350 if (!env) RtlReleasePebLock();
1351 RtlDestroyProcessParameters( params );
1354 close( socketfd[0] );
1355 HeapFree( GetProcessHeap(), 0, winedebug );
1359 /* create the child process */
1361 if (exec_only || !(pid = fork())) /* child */
1363 char preloader_reserve[64], socket_env[64];
1364 char **argv = build_argv( cmd_line, 1 );
1366 if (flags & (CREATE_NEW_PROCESS_GROUP | CREATE_NEW_CONSOLE | DETACHED_PROCESS)) setsid();
1368 /* Reset signals that we previously set to SIG_IGN */
1369 signal( SIGPIPE, SIG_DFL );
1370 signal( SIGCHLD, SIG_DFL );
1372 sprintf( socket_env, "WINESERVERSOCKET=%u", socketfd[0] );
1373 sprintf( preloader_reserve, "WINEPRELOADRESERVE=%lx-%lx",
1374 (unsigned long)res_start, (unsigned long)res_end );
1376 putenv( preloader_reserve );
1377 putenv( socket_env );
1378 if (winedebug) putenv( winedebug );
1379 if (unixdir) chdir(unixdir);
1381 if (argv) wine_exec_wine_binary( NULL, argv, getenv("WINELOADER") );
1385 /* this is the parent */
1387 close( socketfd[0] );
1388 HeapFree( GetProcessHeap(), 0, winedebug );
1395 /* wait for the new process info to be ready */
1397 WaitForSingleObject( process_info, INFINITE );
1398 SERVER_START_REQ( get_new_process_info )
1400 req->info = process_info;
1401 wine_server_call( req );
1402 success = reply->success;
1403 err = reply->exit_code;
1409 SetLastError( err ? err : ERROR_INTERNAL_ERROR );
1412 CloseHandle( process_info );
1416 CloseHandle( process_info );
1417 CloseHandle( info->hProcess );
1418 CloseHandle( info->hThread );
1419 info->hProcess = info->hThread = 0;
1420 info->dwProcessId = info->dwThreadId = 0;
1425 /***********************************************************************
1426 * create_vdm_process
1428 * Create a new VDM process for a 16-bit or DOS application.
1430 static BOOL create_vdm_process( LPCWSTR filename, LPWSTR cmd_line, LPWSTR env, LPCWSTR cur_dir,
1431 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1432 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1433 LPPROCESS_INFORMATION info, LPCSTR unixdir, int exec_only )
1435 static const WCHAR argsW[] = {'%','s',' ','-','-','a','p','p','-','n','a','m','e',' ','"','%','s','"',' ','%','s',0};
1438 LPWSTR new_cmd_line = HeapAlloc( GetProcessHeap(), 0,
1439 (strlenW(filename) + strlenW(cmd_line) + 30) * sizeof(WCHAR) );
1443 SetLastError( ERROR_OUTOFMEMORY );
1446 sprintfW( new_cmd_line, argsW, winevdmW, filename, cmd_line );
1447 ret = create_process( 0, winevdmW, new_cmd_line, env, cur_dir, psa, tsa, inherit,
1448 flags, startup, info, unixdir, NULL, NULL, exec_only );
1449 HeapFree( GetProcessHeap(), 0, new_cmd_line );
1454 /***********************************************************************
1455 * create_cmd_process
1457 * Create a new cmd shell process for a .BAT file.
1459 static BOOL create_cmd_process( LPCWSTR filename, LPWSTR cmd_line, LPVOID env, LPCWSTR cur_dir,
1460 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1461 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1462 LPPROCESS_INFORMATION info )
1465 static const WCHAR comspecW[] = {'C','O','M','S','P','E','C',0};
1466 static const WCHAR slashcW[] = {' ','/','c',' ',0};
1467 WCHAR comspec[MAX_PATH];
1471 if (!GetEnvironmentVariableW( comspecW, comspec, sizeof(comspec)/sizeof(WCHAR) ))
1473 if (!(newcmdline = HeapAlloc( GetProcessHeap(), 0,
1474 (strlenW(comspec) + 4 + strlenW(cmd_line) + 1) * sizeof(WCHAR))))
1477 strcpyW( newcmdline, comspec );
1478 strcatW( newcmdline, slashcW );
1479 strcatW( newcmdline, cmd_line );
1480 ret = CreateProcessW( comspec, newcmdline, psa, tsa, inherit,
1481 flags, env, cur_dir, startup, info );
1482 HeapFree( GetProcessHeap(), 0, newcmdline );
1487 /*************************************************************************
1490 * Helper for CreateProcess: retrieve the file name to load from the
1491 * app name and command line. Store the file name in buffer, and
1492 * return a possibly modified command line.
1493 * Also returns a handle to the opened file if it's a Windows binary.
1495 static LPWSTR get_file_name( LPCWSTR appname, LPWSTR cmdline, LPWSTR buffer,
1496 int buflen, HANDLE *handle )
1498 static const WCHAR quotesW[] = {'"','%','s','"',0};
1500 WCHAR *name, *pos, *ret = NULL;
1504 /* if we have an app name, everything is easy */
1508 /* use the unmodified app name as file name */
1509 lstrcpynW( buffer, appname, buflen );
1510 *handle = open_exe_file( buffer );
1511 if (!(ret = cmdline) || !cmdline[0])
1513 /* no command-line, create one */
1514 if ((ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(appname) + 3) * sizeof(WCHAR) )))
1515 sprintfW( ret, quotesW, appname );
1522 SetLastError( ERROR_INVALID_PARAMETER );
1526 /* first check for a quoted file name */
1528 if ((cmdline[0] == '"') && ((p = strchrW( cmdline + 1, '"' ))))
1530 int len = p - cmdline - 1;
1531 /* extract the quoted portion as file name */
1532 if (!(name = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) ))) return NULL;
1533 memcpy( name, cmdline + 1, len * sizeof(WCHAR) );
1536 if (find_exe_file( name, buffer, buflen, handle ))
1537 ret = cmdline; /* no change necessary */
1541 /* now try the command-line word by word */
1543 if (!(name = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 1) * sizeof(WCHAR) )))
1551 do *pos++ = *p++; while (*p && *p != ' ' && *p != '\t');
1553 if (find_exe_file( name, buffer, buflen, handle ))
1558 if (*p) got_space = TRUE;
1561 if (ret && got_space) /* now build a new command-line with quotes */
1563 if (!(ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 3) * sizeof(WCHAR) )))
1565 sprintfW( ret, quotesW, name );
1570 HeapFree( GetProcessHeap(), 0, name );
1575 /**********************************************************************
1576 * CreateProcessA (KERNEL32.@)
1578 BOOL WINAPI CreateProcessA( LPCSTR app_name, LPSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
1579 LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit,
1580 DWORD flags, LPVOID env, LPCSTR cur_dir,
1581 LPSTARTUPINFOA startup_info, LPPROCESS_INFORMATION info )
1584 WCHAR *app_nameW = NULL, *cmd_lineW = NULL, *cur_dirW = NULL;
1585 UNICODE_STRING desktopW, titleW;
1588 desktopW.Buffer = NULL;
1589 titleW.Buffer = NULL;
1590 if (app_name && !(app_nameW = FILE_name_AtoW( app_name, TRUE ))) goto done;
1591 if (cmd_line && !(cmd_lineW = FILE_name_AtoW( cmd_line, TRUE ))) goto done;
1592 if (cur_dir && !(cur_dirW = FILE_name_AtoW( cur_dir, TRUE ))) goto done;
1594 if (startup_info->lpDesktop) RtlCreateUnicodeStringFromAsciiz( &desktopW, startup_info->lpDesktop );
1595 if (startup_info->lpTitle) RtlCreateUnicodeStringFromAsciiz( &titleW, startup_info->lpTitle );
1597 memcpy( &infoW, startup_info, sizeof(infoW) );
1598 infoW.lpDesktop = desktopW.Buffer;
1599 infoW.lpTitle = titleW.Buffer;
1601 if (startup_info->lpReserved)
1602 FIXME("StartupInfo.lpReserved is used, please report (%s)\n",
1603 debugstr_a(startup_info->lpReserved));
1605 ret = CreateProcessW( app_nameW, cmd_lineW, process_attr, thread_attr,
1606 inherit, flags, env, cur_dirW, &infoW, info );
1608 HeapFree( GetProcessHeap(), 0, app_nameW );
1609 HeapFree( GetProcessHeap(), 0, cmd_lineW );
1610 HeapFree( GetProcessHeap(), 0, cur_dirW );
1611 RtlFreeUnicodeString( &desktopW );
1612 RtlFreeUnicodeString( &titleW );
1617 /**********************************************************************
1618 * CreateProcessW (KERNEL32.@)
1620 BOOL WINAPI CreateProcessW( LPCWSTR app_name, LPWSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
1621 LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit, DWORD flags,
1622 LPVOID env, LPCWSTR cur_dir, LPSTARTUPINFOW startup_info,
1623 LPPROCESS_INFORMATION info )
1627 char *unixdir = NULL;
1628 WCHAR name[MAX_PATH];
1629 WCHAR *tidy_cmdline, *p, *envW = env;
1630 void *res_start, *res_end;
1632 /* Process the AppName and/or CmdLine to get module name and path */
1634 TRACE("app %s cmdline %s\n", debugstr_w(app_name), debugstr_w(cmd_line) );
1636 if (!(tidy_cmdline = get_file_name( app_name, cmd_line, name, sizeof(name)/sizeof(WCHAR), &hFile )))
1638 if (hFile == INVALID_HANDLE_VALUE) goto done;
1640 /* Warn if unsupported features are used */
1642 if (flags & (IDLE_PRIORITY_CLASS | HIGH_PRIORITY_CLASS | REALTIME_PRIORITY_CLASS |
1643 CREATE_NEW_PROCESS_GROUP | CREATE_SEPARATE_WOW_VDM | CREATE_SHARED_WOW_VDM |
1644 CREATE_DEFAULT_ERROR_MODE | CREATE_NO_WINDOW |
1645 PROFILE_USER | PROFILE_KERNEL | PROFILE_SERVER))
1646 WARN("(%s,...): ignoring some flags in %x\n", debugstr_w(name), flags);
1650 if (!(unixdir = wine_get_unix_file_name( cur_dir )))
1652 SetLastError(ERROR_DIRECTORY);
1658 WCHAR buf[MAX_PATH];
1659 if (GetCurrentDirectoryW(MAX_PATH, buf)) unixdir = wine_get_unix_file_name( buf );
1662 if (env && !(flags & CREATE_UNICODE_ENVIRONMENT)) /* convert environment to unicode */
1667 while (*p) p += strlen(p) + 1;
1668 p++; /* final null */
1669 lenW = MultiByteToWideChar( CP_ACP, 0, env, p - (char*)env, NULL, 0 );
1670 envW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) );
1671 MultiByteToWideChar( CP_ACP, 0, env, p - (char*)env, envW, lenW );
1672 flags |= CREATE_UNICODE_ENVIRONMENT;
1675 info->hThread = info->hProcess = 0;
1676 info->dwProcessId = info->dwThreadId = 0;
1678 /* Determine executable type */
1680 if (!hFile) /* builtin exe */
1682 TRACE( "starting %s as Winelib app\n", debugstr_w(name) );
1683 retv = create_process( 0, name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1684 inherit, flags, startup_info, info, unixdir, NULL, NULL, FALSE );
1688 switch( MODULE_GetBinaryType( hFile, &res_start, &res_end ))
1691 TRACE( "starting %s as Win32 binary (%p-%p)\n", debugstr_w(name), res_start, res_end );
1692 retv = create_process( hFile, name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1693 inherit, flags, startup_info, info, unixdir, res_start, res_end, FALSE );
1698 TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name) );
1699 retv = create_vdm_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1700 inherit, flags, startup_info, info, unixdir, FALSE );
1703 TRACE( "not starting %s since it is a dll\n", debugstr_w(name) );
1704 SetLastError( ERROR_BAD_EXE_FORMAT );
1706 case BINARY_UNIX_LIB:
1707 TRACE( "%s is a Unix library, starting as Winelib app\n", debugstr_w(name) );
1708 retv = create_process( hFile, name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1709 inherit, flags, startup_info, info, unixdir, NULL, NULL, FALSE );
1711 case BINARY_UNKNOWN:
1712 /* check for .com or .bat extension */
1713 if ((p = strrchrW( name, '.' )))
1715 if (!strcmpiW( p, comW ) || !strcmpiW( p, pifW ))
1717 TRACE( "starting %s as DOS binary\n", debugstr_w(name) );
1718 retv = create_vdm_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1719 inherit, flags, startup_info, info, unixdir, FALSE );
1722 if (!strcmpiW( p, batW ) || !strcmpiW( p, cmdW ) )
1724 TRACE( "starting %s as batch binary\n", debugstr_w(name) );
1725 retv = create_cmd_process( name, tidy_cmdline, envW, cur_dir, process_attr, thread_attr,
1726 inherit, flags, startup_info, info );
1731 case BINARY_UNIX_EXE:
1733 /* unknown file, try as unix executable */
1736 TRACE( "starting %s as Unix binary\n", debugstr_w(name) );
1738 if ((unix_name = wine_get_unix_file_name( name )))
1740 retv = (fork_and_exec( unix_name, tidy_cmdline, envW, unixdir, flags ) != -1);
1741 HeapFree( GetProcessHeap(), 0, unix_name );
1746 CloseHandle( hFile );
1749 if (tidy_cmdline != cmd_line) HeapFree( GetProcessHeap(), 0, tidy_cmdline );
1750 if (envW != env) HeapFree( GetProcessHeap(), 0, envW );
1751 HeapFree( GetProcessHeap(), 0, unixdir );
1756 /**********************************************************************
1759 static void exec_process( LPCWSTR name )
1763 void *res_start, *res_end;
1764 STARTUPINFOW startup_info;
1765 PROCESS_INFORMATION info;
1767 hFile = open_exe_file( name );
1768 if (!hFile || hFile == INVALID_HANDLE_VALUE) return;
1770 memset( &startup_info, 0, sizeof(startup_info) );
1771 startup_info.cb = sizeof(startup_info);
1773 /* Determine executable type */
1775 switch( MODULE_GetBinaryType( hFile, &res_start, &res_end ))
1778 TRACE( "starting %s as Win32 binary (%p-%p)\n", debugstr_w(name), res_start, res_end );
1779 create_process( hFile, name, GetCommandLineW(), NULL, NULL, NULL, NULL,
1780 FALSE, 0, &startup_info, &info, NULL, res_start, res_end, TRUE );
1782 case BINARY_UNIX_LIB:
1783 TRACE( "%s is a Unix library, starting as Winelib app\n", debugstr_w(name) );
1784 create_process( hFile, name, GetCommandLineW(), NULL, NULL, NULL, NULL,
1785 FALSE, 0, &startup_info, &info, NULL, NULL, NULL, TRUE );
1787 case BINARY_UNKNOWN:
1788 /* check for .com or .pif extension */
1789 if (!(p = strrchrW( name, '.' ))) break;
1790 if (strcmpiW( p, comW ) && strcmpiW( p, pifW )) break;
1795 TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name) );
1796 create_vdm_process( name, GetCommandLineW(), NULL, NULL, NULL, NULL,
1797 FALSE, 0, &startup_info, &info, NULL, TRUE );
1802 CloseHandle( hFile );
1806 /***********************************************************************
1809 * Wrapper to call WaitForInputIdle USER function
1811 typedef DWORD (WINAPI *WaitForInputIdle_ptr)( HANDLE hProcess, DWORD dwTimeOut );
1813 static DWORD wait_input_idle( HANDLE process, DWORD timeout )
1815 HMODULE mod = GetModuleHandleA( "user32.dll" );
1818 WaitForInputIdle_ptr ptr = (WaitForInputIdle_ptr)GetProcAddress( mod, "WaitForInputIdle" );
1819 if (ptr) return ptr( process, timeout );
1825 /***********************************************************************
1826 * WinExec (KERNEL32.@)
1828 UINT WINAPI WinExec( LPCSTR lpCmdLine, UINT nCmdShow )
1830 PROCESS_INFORMATION info;
1831 STARTUPINFOA startup;
1835 memset( &startup, 0, sizeof(startup) );
1836 startup.cb = sizeof(startup);
1837 startup.dwFlags = STARTF_USESHOWWINDOW;
1838 startup.wShowWindow = nCmdShow;
1840 /* cmdline needs to be writable for CreateProcess */
1841 if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(lpCmdLine)+1 ))) return 0;
1842 strcpy( cmdline, lpCmdLine );
1844 if (CreateProcessA( NULL, cmdline, NULL, NULL, FALSE,
1845 0, NULL, NULL, &startup, &info ))
1847 /* Give 30 seconds to the app to come up */
1848 if (wait_input_idle( info.hProcess, 30000 ) == WAIT_FAILED)
1849 WARN("WaitForInputIdle failed: Error %d\n", GetLastError() );
1851 /* Close off the handles */
1852 CloseHandle( info.hThread );
1853 CloseHandle( info.hProcess );
1855 else if ((ret = GetLastError()) >= 32)
1857 FIXME("Strange error set by CreateProcess: %d\n", ret );
1860 HeapFree( GetProcessHeap(), 0, cmdline );
1865 /**********************************************************************
1866 * LoadModule (KERNEL32.@)
1868 HINSTANCE WINAPI LoadModule( LPCSTR name, LPVOID paramBlock )
1870 LOADPARMS32 *params = paramBlock;
1871 PROCESS_INFORMATION info;
1872 STARTUPINFOA startup;
1873 HINSTANCE hInstance;
1875 char filename[MAX_PATH];
1878 if (!name) return (HINSTANCE)ERROR_FILE_NOT_FOUND;
1880 if (!SearchPathA( NULL, name, ".exe", sizeof(filename), filename, NULL ) &&
1881 !SearchPathA( NULL, name, NULL, sizeof(filename), filename, NULL ))
1882 return ULongToHandle(GetLastError());
1884 len = (BYTE)params->lpCmdLine[0];
1885 if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(filename) + len + 2 )))
1886 return (HINSTANCE)ERROR_NOT_ENOUGH_MEMORY;
1888 strcpy( cmdline, filename );
1889 p = cmdline + strlen(cmdline);
1891 memcpy( p, params->lpCmdLine + 1, len );
1894 memset( &startup, 0, sizeof(startup) );
1895 startup.cb = sizeof(startup);
1896 if (params->lpCmdShow)
1898 startup.dwFlags = STARTF_USESHOWWINDOW;
1899 startup.wShowWindow = ((WORD *)params->lpCmdShow)[1];
1902 if (CreateProcessA( filename, cmdline, NULL, NULL, FALSE, 0,
1903 params->lpEnvAddress, NULL, &startup, &info ))
1905 /* Give 30 seconds to the app to come up */
1906 if (wait_input_idle( info.hProcess, 30000 ) == WAIT_FAILED)
1907 WARN("WaitForInputIdle failed: Error %d\n", GetLastError() );
1908 hInstance = (HINSTANCE)33;
1909 /* Close off the handles */
1910 CloseHandle( info.hThread );
1911 CloseHandle( info.hProcess );
1913 else if ((hInstance = ULongToHandle(GetLastError())) >= (HINSTANCE)32)
1915 FIXME("Strange error set by CreateProcess: %p\n", hInstance );
1916 hInstance = (HINSTANCE)11;
1919 HeapFree( GetProcessHeap(), 0, cmdline );
1924 /******************************************************************************
1925 * TerminateProcess (KERNEL32.@)
1927 * Terminates a process.
1930 * handle [I] Process to terminate.
1931 * exit_code [I] Exit code.
1935 * Failure: FALSE, check GetLastError().
1937 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
1939 NTSTATUS status = NtTerminateProcess( handle, exit_code );
1940 if (status) SetLastError( RtlNtStatusToDosError(status) );
1945 /***********************************************************************
1946 * ExitProcess (KERNEL32.@)
1948 * Exits the current process.
1951 * status [I] Status code to exit with.
1956 void WINAPI ExitProcess( DWORD status )
1958 LdrShutdownProcess();
1959 NtTerminateProcess(GetCurrentProcess(), status);
1964 /***********************************************************************
1965 * GetExitCodeProcess [KERNEL32.@]
1967 * Gets termination status of specified process.
1970 * hProcess [in] Handle to the process.
1971 * lpExitCode [out] Address to receive termination status.
1977 BOOL WINAPI GetExitCodeProcess( HANDLE hProcess, LPDWORD lpExitCode )
1980 PROCESS_BASIC_INFORMATION pbi;
1982 status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
1984 if (status == STATUS_SUCCESS)
1986 if (lpExitCode) *lpExitCode = pbi.ExitStatus;
1989 SetLastError( RtlNtStatusToDosError(status) );
1994 /***********************************************************************
1995 * SetErrorMode (KERNEL32.@)
1997 UINT WINAPI SetErrorMode( UINT mode )
1999 UINT old = process_error_mode;
2000 process_error_mode = mode;
2005 /**********************************************************************
2006 * TlsAlloc [KERNEL32.@]
2008 * Allocates a thread local storage index.
2011 * Success: TLS index.
2012 * Failure: 0xFFFFFFFF
2014 DWORD WINAPI TlsAlloc( void )
2017 PEB * const peb = NtCurrentTeb()->Peb;
2019 RtlAcquirePebLock();
2020 index = RtlFindClearBitsAndSet( peb->TlsBitmap, 1, 0 );
2021 if (index != ~0U) NtCurrentTeb()->TlsSlots[index] = 0; /* clear the value */
2024 index = RtlFindClearBitsAndSet( peb->TlsExpansionBitmap, 1, 0 );
2027 if (!NtCurrentTeb()->TlsExpansionSlots &&
2028 !(NtCurrentTeb()->TlsExpansionSlots = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
2029 8 * sizeof(peb->TlsExpansionBitmapBits) * sizeof(void*) )))
2031 RtlClearBits( peb->TlsExpansionBitmap, index, 1 );
2033 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
2037 NtCurrentTeb()->TlsExpansionSlots[index] = 0; /* clear the value */
2038 index += TLS_MINIMUM_AVAILABLE;
2041 else SetLastError( ERROR_NO_MORE_ITEMS );
2043 RtlReleasePebLock();
2048 /**********************************************************************
2049 * TlsFree [KERNEL32.@]
2051 * Releases a thread local storage index, making it available for reuse.
2054 * index [in] TLS index to free.
2060 BOOL WINAPI TlsFree( DWORD index )
2064 RtlAcquirePebLock();
2065 if (index >= TLS_MINIMUM_AVAILABLE)
2067 ret = RtlAreBitsSet( NtCurrentTeb()->Peb->TlsExpansionBitmap, index - TLS_MINIMUM_AVAILABLE, 1 );
2068 if (ret) RtlClearBits( NtCurrentTeb()->Peb->TlsExpansionBitmap, index - TLS_MINIMUM_AVAILABLE, 1 );
2072 ret = RtlAreBitsSet( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
2073 if (ret) RtlClearBits( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
2075 if (ret) NtSetInformationThread( GetCurrentThread(), ThreadZeroTlsCell, &index, sizeof(index) );
2076 else SetLastError( ERROR_INVALID_PARAMETER );
2077 RtlReleasePebLock();
2082 /**********************************************************************
2083 * TlsGetValue [KERNEL32.@]
2085 * Gets value in a thread's TLS slot.
2088 * index [in] TLS index to retrieve value for.
2091 * Success: Value stored in calling thread's TLS slot for index.
2092 * Failure: 0 and GetLastError() returns NO_ERROR.
2094 LPVOID WINAPI TlsGetValue( DWORD index )
2098 if (index < TLS_MINIMUM_AVAILABLE)
2100 ret = NtCurrentTeb()->TlsSlots[index];
2104 index -= TLS_MINIMUM_AVAILABLE;
2105 if (index >= 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits))
2107 SetLastError( ERROR_INVALID_PARAMETER );
2110 if (!NtCurrentTeb()->TlsExpansionSlots) ret = NULL;
2111 else ret = NtCurrentTeb()->TlsExpansionSlots[index];
2113 SetLastError( ERROR_SUCCESS );
2118 /**********************************************************************
2119 * TlsSetValue [KERNEL32.@]
2121 * Stores a value in the thread's TLS slot.
2124 * index [in] TLS index to set value for.
2125 * value [in] Value to be stored.
2131 BOOL WINAPI TlsSetValue( DWORD index, LPVOID value )
2133 if (index < TLS_MINIMUM_AVAILABLE)
2135 NtCurrentTeb()->TlsSlots[index] = value;
2139 index -= TLS_MINIMUM_AVAILABLE;
2140 if (index >= 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits))
2142 SetLastError( ERROR_INVALID_PARAMETER );
2145 if (!NtCurrentTeb()->TlsExpansionSlots &&
2146 !(NtCurrentTeb()->TlsExpansionSlots = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
2147 8 * sizeof(NtCurrentTeb()->Peb->TlsExpansionBitmapBits) * sizeof(void*) )))
2149 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
2152 NtCurrentTeb()->TlsExpansionSlots[index] = value;
2158 /***********************************************************************
2159 * GetProcessFlags (KERNEL32.@)
2161 DWORD WINAPI GetProcessFlags( DWORD processid )
2163 IMAGE_NT_HEADERS *nt;
2166 if (processid && processid != GetCurrentProcessId()) return 0;
2168 if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
2170 if (nt->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI)
2171 flags |= PDB32_CONSOLE_PROC;
2173 if (!AreFileApisANSI()) flags |= PDB32_FILE_APIS_OEM;
2174 if (IsDebuggerPresent()) flags |= PDB32_DEBUGGED;
2179 /***********************************************************************
2180 * GetProcessDword (KERNEL.485)
2181 * GetProcessDword (KERNEL32.18)
2182 * 'Of course you cannot directly access Windows internal structures'
2184 DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
2189 TRACE("(%d, %d)\n", dwProcessID, offset );
2191 if (dwProcessID && dwProcessID != GetCurrentProcessId())
2193 ERR("%d: process %x not accessible\n", offset, dwProcessID);
2199 case GPD_APP_COMPAT_FLAGS:
2200 return GetAppCompatFlags16(0);
2201 case GPD_LOAD_DONE_EVENT:
2203 case GPD_HINSTANCE16:
2204 return GetTaskDS16();
2205 case GPD_WINDOWS_VERSION:
2206 return GetExeVersion16();
2208 return (DWORD_PTR)NtCurrentTeb() - 0x10 /* FIXME */;
2210 return (DWORD_PTR)NtCurrentTeb()->Peb; /* FIXME: truncating a pointer */
2211 case GPD_STARTF_SHELLDATA: /* return stdoutput handle from startupinfo ??? */
2212 GetStartupInfoW(&siw);
2213 return HandleToULong(siw.hStdOutput);
2214 case GPD_STARTF_HOTKEY: /* return stdinput handle from startupinfo ??? */
2215 GetStartupInfoW(&siw);
2216 return HandleToULong(siw.hStdInput);
2217 case GPD_STARTF_SHOWWINDOW:
2218 GetStartupInfoW(&siw);
2219 return siw.wShowWindow;
2220 case GPD_STARTF_SIZE:
2221 GetStartupInfoW(&siw);
2223 if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
2225 if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
2226 return MAKELONG( x, y );
2227 case GPD_STARTF_POSITION:
2228 GetStartupInfoW(&siw);
2230 if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
2232 if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
2233 return MAKELONG( x, y );
2234 case GPD_STARTF_FLAGS:
2235 GetStartupInfoW(&siw);
2240 return GetProcessFlags(0);
2242 return process_dword;
2244 ERR("Unknown offset %d\n", offset );
2249 /***********************************************************************
2250 * SetProcessDword (KERNEL.484)
2251 * 'Of course you cannot directly access Windows internal structures'
2253 void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
2255 TRACE("(%d, %d)\n", dwProcessID, offset );
2257 if (dwProcessID && dwProcessID != GetCurrentProcessId())
2259 ERR("%d: process %x not accessible\n", offset, dwProcessID);
2265 case GPD_APP_COMPAT_FLAGS:
2266 case GPD_LOAD_DONE_EVENT:
2267 case GPD_HINSTANCE16:
2268 case GPD_WINDOWS_VERSION:
2271 case GPD_STARTF_SHELLDATA:
2272 case GPD_STARTF_HOTKEY:
2273 case GPD_STARTF_SHOWWINDOW:
2274 case GPD_STARTF_SIZE:
2275 case GPD_STARTF_POSITION:
2276 case GPD_STARTF_FLAGS:
2279 ERR("Not allowed to modify offset %d\n", offset );
2282 process_dword = value;
2285 ERR("Unknown offset %d\n", offset );
2291 /***********************************************************************
2292 * ExitProcess (KERNEL.466)
2294 void WINAPI ExitProcess16( WORD status )
2297 ReleaseThunkLock( &count );
2298 ExitProcess( status );
2302 /*********************************************************************
2303 * OpenProcess (KERNEL32.@)
2305 * Opens a handle to a process.
2308 * access [I] Desired access rights assigned to the returned handle.
2309 * inherit [I] Determines whether or not child processes will inherit the handle.
2310 * id [I] Process identifier of the process to get a handle to.
2313 * Success: Valid handle to the specified process.
2314 * Failure: NULL, check GetLastError().
2316 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
2320 OBJECT_ATTRIBUTES attr;
2323 cid.UniqueProcess = ULongToHandle(id);
2324 cid.UniqueThread = 0; /* FIXME ? */
2326 attr.Length = sizeof(OBJECT_ATTRIBUTES);
2327 attr.RootDirectory = NULL;
2328 attr.Attributes = inherit ? OBJ_INHERIT : 0;
2329 attr.SecurityDescriptor = NULL;
2330 attr.SecurityQualityOfService = NULL;
2331 attr.ObjectName = NULL;
2333 if (GetVersion() & 0x80000000) access = PROCESS_ALL_ACCESS;
2335 status = NtOpenProcess(&handle, access, &attr, &cid);
2336 if (status != STATUS_SUCCESS)
2338 SetLastError( RtlNtStatusToDosError(status) );
2345 /*********************************************************************
2346 * MapProcessHandle (KERNEL.483)
2347 * GetProcessId (KERNEL32.@)
2349 * Gets the a unique identifier of a process.
2352 * hProcess [I] Handle to the process.
2356 * Failure: FALSE, check GetLastError().
2360 * The identifier is unique only on the machine and only until the process
2361 * exits (including system shutdown).
2363 DWORD WINAPI GetProcessId( HANDLE hProcess )
2366 PROCESS_BASIC_INFORMATION pbi;
2368 status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
2370 if (status == STATUS_SUCCESS) return pbi.UniqueProcessId;
2371 SetLastError( RtlNtStatusToDosError(status) );
2376 /*********************************************************************
2377 * CloseW32Handle (KERNEL.474)
2378 * CloseHandle (KERNEL32.@)
2383 * handle [I] Handle to close.
2387 * Failure: FALSE, check GetLastError().
2389 BOOL WINAPI CloseHandle( HANDLE handle )
2393 /* stdio handles need special treatment */
2394 if ((handle == (HANDLE)STD_INPUT_HANDLE) ||
2395 (handle == (HANDLE)STD_OUTPUT_HANDLE) ||
2396 (handle == (HANDLE)STD_ERROR_HANDLE))
2397 handle = GetStdHandle( HandleToULong(handle) );
2399 if (is_console_handle(handle))
2400 return CloseConsoleHandle(handle);
2402 status = NtClose( handle );
2403 if (status) SetLastError( RtlNtStatusToDosError(status) );
2408 /*********************************************************************
2409 * GetHandleInformation (KERNEL32.@)
2411 BOOL WINAPI GetHandleInformation( HANDLE handle, LPDWORD flags )
2413 OBJECT_DATA_INFORMATION info;
2414 NTSTATUS status = NtQueryObject( handle, ObjectDataInformation, &info, sizeof(info), NULL );
2416 if (status) SetLastError( RtlNtStatusToDosError(status) );
2420 if (info.InheritHandle) *flags |= HANDLE_FLAG_INHERIT;
2421 if (info.ProtectFromClose) *flags |= HANDLE_FLAG_PROTECT_FROM_CLOSE;
2427 /*********************************************************************
2428 * SetHandleInformation (KERNEL32.@)
2430 BOOL WINAPI SetHandleInformation( HANDLE handle, DWORD mask, DWORD flags )
2432 OBJECT_DATA_INFORMATION info;
2435 /* if not setting both fields, retrieve current value first */
2436 if ((mask & (HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE)) !=
2437 (HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE))
2439 if ((status = NtQueryObject( handle, ObjectDataInformation, &info, sizeof(info), NULL )))
2441 SetLastError( RtlNtStatusToDosError(status) );
2445 if (mask & HANDLE_FLAG_INHERIT)
2446 info.InheritHandle = (flags & HANDLE_FLAG_INHERIT) != 0;
2447 if (mask & HANDLE_FLAG_PROTECT_FROM_CLOSE)
2448 info.ProtectFromClose = (flags & HANDLE_FLAG_PROTECT_FROM_CLOSE) != 0;
2450 status = NtSetInformationObject( handle, ObjectDataInformation, &info, sizeof(info) );
2451 if (status) SetLastError( RtlNtStatusToDosError(status) );
2456 /*********************************************************************
2457 * DuplicateHandle (KERNEL32.@)
2459 BOOL WINAPI DuplicateHandle( HANDLE source_process, HANDLE source,
2460 HANDLE dest_process, HANDLE *dest,
2461 DWORD access, BOOL inherit, DWORD options )
2465 if (is_console_handle(source))
2467 /* FIXME: this test is not sufficient, we need to test process ids, not handles */
2468 if (source_process != dest_process ||
2469 source_process != GetCurrentProcess())
2471 SetLastError(ERROR_INVALID_PARAMETER);
2474 *dest = DuplicateConsoleHandle( source, access, inherit, options );
2475 return (*dest != INVALID_HANDLE_VALUE);
2477 status = NtDuplicateObject( source_process, source, dest_process, dest,
2478 access, inherit ? OBJ_INHERIT : 0, options );
2479 if (status) SetLastError( RtlNtStatusToDosError(status) );
2484 /***********************************************************************
2485 * ConvertToGlobalHandle (KERNEL.476)
2486 * ConvertToGlobalHandle (KERNEL32.@)
2488 HANDLE WINAPI ConvertToGlobalHandle(HANDLE hSrc)
2490 HANDLE ret = INVALID_HANDLE_VALUE;
2491 DuplicateHandle( GetCurrentProcess(), hSrc, GetCurrentProcess(), &ret, 0, FALSE,
2492 DUP_HANDLE_MAKE_GLOBAL | DUP_HANDLE_SAME_ACCESS | DUP_HANDLE_CLOSE_SOURCE );
2497 /***********************************************************************
2498 * SetHandleContext (KERNEL32.@)
2500 BOOL WINAPI SetHandleContext(HANDLE hnd,DWORD context)
2502 FIXME("(%p,%d), stub. In case this got called by WSOCK32/WS2_32: "
2503 "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd,context);
2504 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2509 /***********************************************************************
2510 * GetHandleContext (KERNEL32.@)
2512 DWORD WINAPI GetHandleContext(HANDLE hnd)
2514 FIXME("(%p), stub. In case this got called by WSOCK32/WS2_32: "
2515 "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd);
2516 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2521 /***********************************************************************
2522 * CreateSocketHandle (KERNEL32.@)
2524 HANDLE WINAPI CreateSocketHandle(void)
2526 FIXME("(), stub. In case this got called by WSOCK32/WS2_32: "
2527 "the external WINSOCK DLLs won't work with WINE, don't use them.\n");
2528 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2529 return INVALID_HANDLE_VALUE;
2533 /***********************************************************************
2534 * SetPriorityClass (KERNEL32.@)
2536 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
2539 PROCESS_PRIORITY_CLASS ppc;
2541 ppc.Foreground = FALSE;
2542 switch (priorityclass)
2544 case IDLE_PRIORITY_CLASS:
2545 ppc.PriorityClass = PROCESS_PRIOCLASS_IDLE; break;
2546 case BELOW_NORMAL_PRIORITY_CLASS:
2547 ppc.PriorityClass = PROCESS_PRIOCLASS_BELOW_NORMAL; break;
2548 case NORMAL_PRIORITY_CLASS:
2549 ppc.PriorityClass = PROCESS_PRIOCLASS_NORMAL; break;
2550 case ABOVE_NORMAL_PRIORITY_CLASS:
2551 ppc.PriorityClass = PROCESS_PRIOCLASS_ABOVE_NORMAL; break;
2552 case HIGH_PRIORITY_CLASS:
2553 ppc.PriorityClass = PROCESS_PRIOCLASS_HIGH; break;
2554 case REALTIME_PRIORITY_CLASS:
2555 ppc.PriorityClass = PROCESS_PRIOCLASS_REALTIME; break;
2557 SetLastError(ERROR_INVALID_PARAMETER);
2561 status = NtSetInformationProcess(hprocess, ProcessPriorityClass,
2564 if (status != STATUS_SUCCESS)
2566 SetLastError( RtlNtStatusToDosError(status) );
2573 /***********************************************************************
2574 * GetPriorityClass (KERNEL32.@)
2576 DWORD WINAPI GetPriorityClass(HANDLE hProcess)
2579 PROCESS_BASIC_INFORMATION pbi;
2581 status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi,
2583 if (status != STATUS_SUCCESS)
2585 SetLastError( RtlNtStatusToDosError(status) );
2588 switch (pbi.BasePriority)
2590 case PROCESS_PRIOCLASS_IDLE: return IDLE_PRIORITY_CLASS;
2591 case PROCESS_PRIOCLASS_BELOW_NORMAL: return BELOW_NORMAL_PRIORITY_CLASS;
2592 case PROCESS_PRIOCLASS_NORMAL: return NORMAL_PRIORITY_CLASS;
2593 case PROCESS_PRIOCLASS_ABOVE_NORMAL: return ABOVE_NORMAL_PRIORITY_CLASS;
2594 case PROCESS_PRIOCLASS_HIGH: return HIGH_PRIORITY_CLASS;
2595 case PROCESS_PRIOCLASS_REALTIME: return REALTIME_PRIORITY_CLASS;
2597 SetLastError( ERROR_INVALID_PARAMETER );
2602 /***********************************************************************
2603 * SetProcessAffinityMask (KERNEL32.@)
2605 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD_PTR affmask )
2609 status = NtSetInformationProcess(hProcess, ProcessAffinityMask,
2610 &affmask, sizeof(DWORD_PTR));
2613 SetLastError( RtlNtStatusToDosError(status) );
2620 /**********************************************************************
2621 * GetProcessAffinityMask (KERNEL32.@)
2623 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess,
2624 PDWORD_PTR lpProcessAffinityMask,
2625 PDWORD_PTR lpSystemAffinityMask )
2627 PROCESS_BASIC_INFORMATION pbi;
2630 status = NtQueryInformationProcess(hProcess,
2631 ProcessBasicInformation,
2632 &pbi, sizeof(pbi), NULL);
2635 SetLastError( RtlNtStatusToDosError(status) );
2638 if (lpProcessAffinityMask) *lpProcessAffinityMask = pbi.AffinityMask;
2640 if (lpSystemAffinityMask) *lpSystemAffinityMask = 1;
2645 /***********************************************************************
2646 * GetProcessVersion (KERNEL32.@)
2648 DWORD WINAPI GetProcessVersion( DWORD processid )
2650 IMAGE_NT_HEADERS *nt;
2652 if (processid && processid != GetCurrentProcessId())
2654 FIXME("should use ReadProcessMemory\n");
2657 if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
2658 return ((nt->OptionalHeader.MajorSubsystemVersion << 16) |
2659 nt->OptionalHeader.MinorSubsystemVersion);
2664 /***********************************************************************
2665 * SetProcessWorkingSetSize [KERNEL32.@]
2666 * Sets the min/max working set sizes for a specified process.
2669 * hProcess [I] Handle to the process of interest
2670 * minset [I] Specifies minimum working set size
2671 * maxset [I] Specifies maximum working set size
2677 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess, SIZE_T minset,
2680 WARN("(%p,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
2681 if(( minset == (SIZE_T)-1) && (maxset == (SIZE_T)-1)) {
2682 /* Trim the working set to zero */
2683 /* Swap the process out of physical RAM */
2688 /***********************************************************************
2689 * GetProcessWorkingSetSize (KERNEL32.@)
2691 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess, PSIZE_T minset,
2694 FIXME("(%p,%p,%p): stub\n",hProcess,minset,maxset);
2695 /* 32 MB working set size */
2696 if (minset) *minset = 32*1024*1024;
2697 if (maxset) *maxset = 32*1024*1024;
2702 /***********************************************************************
2703 * SetProcessShutdownParameters (KERNEL32.@)
2705 BOOL WINAPI SetProcessShutdownParameters(DWORD level, DWORD flags)
2707 FIXME("(%08x, %08x): partial stub.\n", level, flags);
2708 shutdown_flags = flags;
2709 shutdown_priority = level;
2714 /***********************************************************************
2715 * GetProcessShutdownParameters (KERNEL32.@)
2718 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
2720 *lpdwLevel = shutdown_priority;
2721 *lpdwFlags = shutdown_flags;
2726 /***********************************************************************
2727 * GetProcessPriorityBoost (KERNEL32.@)
2729 BOOL WINAPI GetProcessPriorityBoost(HANDLE hprocess,PBOOL pDisablePriorityBoost)
2731 FIXME("(%p,%p): semi-stub\n", hprocess, pDisablePriorityBoost);
2733 /* Report that no boost is present.. */
2734 *pDisablePriorityBoost = FALSE;
2739 /***********************************************************************
2740 * SetProcessPriorityBoost (KERNEL32.@)
2742 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
2744 FIXME("(%p,%d): stub\n",hprocess,disableboost);
2745 /* Say we can do it. I doubt the program will notice that we don't. */
2750 /***********************************************************************
2751 * ReadProcessMemory (KERNEL32.@)
2753 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, SIZE_T size,
2754 SIZE_T *bytes_read )
2756 NTSTATUS status = NtReadVirtualMemory( process, addr, buffer, size, bytes_read );
2757 if (status) SetLastError( RtlNtStatusToDosError(status) );
2762 /***********************************************************************
2763 * WriteProcessMemory (KERNEL32.@)
2765 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPCVOID buffer, SIZE_T size,
2766 SIZE_T *bytes_written )
2768 NTSTATUS status = NtWriteVirtualMemory( process, addr, buffer, size, bytes_written );
2769 if (status) SetLastError( RtlNtStatusToDosError(status) );
2774 /****************************************************************************
2775 * FlushInstructionCache (KERNEL32.@)
2777 BOOL WINAPI FlushInstructionCache(HANDLE hProcess, LPCVOID lpBaseAddress, SIZE_T dwSize)
2780 status = NtFlushInstructionCache( hProcess, lpBaseAddress, dwSize );
2781 if (status) SetLastError( RtlNtStatusToDosError(status) );
2786 /******************************************************************
2787 * GetProcessIoCounters (KERNEL32.@)
2789 BOOL WINAPI GetProcessIoCounters(HANDLE hProcess, PIO_COUNTERS ioc)
2793 status = NtQueryInformationProcess(hProcess, ProcessIoCounters,
2794 ioc, sizeof(*ioc), NULL);
2795 if (status) SetLastError( RtlNtStatusToDosError(status) );
2799 /******************************************************************
2800 * GetProcessHandleCount (KERNEL32.@)
2802 BOOL WINAPI GetProcessHandleCount(HANDLE hProcess, DWORD *cnt)
2806 status = NtQueryInformationProcess(hProcess, ProcessHandleCount,
2807 cnt, sizeof(*cnt), NULL);
2808 if (status) SetLastError( RtlNtStatusToDosError(status) );
2812 /***********************************************************************
2813 * ProcessIdToSessionId (KERNEL32.@)
2814 * This function is available on Terminal Server 4SP4 and Windows 2000
2816 BOOL WINAPI ProcessIdToSessionId( DWORD procid, DWORD *sessionid_ptr )
2818 /* According to MSDN, if the calling process is not in a terminal
2819 * services environment, then the sessionid returned is zero.
2826 /***********************************************************************
2827 * RegisterServiceProcess (KERNEL.491)
2828 * RegisterServiceProcess (KERNEL32.@)
2830 * A service process calls this function to ensure that it continues to run
2831 * even after a user logged off.
2833 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
2835 /* I don't think that Wine needs to do anything in this function */
2836 return 1; /* success */
2840 /**********************************************************************
2841 * IsWow64Process (KERNEL32.@)
2843 BOOL WINAPI IsWow64Process(HANDLE hProcess, PBOOL Wow64Process)
2845 FIXME("(%p %p) stub!\n", hProcess, Wow64Process);
2846 *Wow64Process = FALSE;
2851 /***********************************************************************
2852 * GetCurrentProcess (KERNEL32.@)
2854 * Get a handle to the current process.
2860 * A handle representing the current process.
2862 #undef GetCurrentProcess
2863 HANDLE WINAPI GetCurrentProcess(void)
2865 return (HANDLE)0xffffffff;
2868 /***********************************************************************
2869 * CmdBatNotification (KERNEL32.@)
2871 * Notifies the system that a batch file has started or finished.
2874 * bBatchRunning [I] TRUE if a batch file has started or
2875 * FALSE if a batch file has finished executing.
2880 BOOL WINAPI CmdBatNotification( BOOL bBatchRunning )
2882 FIXME("%d\n", bBatchRunning);