4 * Copyright 1996, 1998 Alexandre Julliard
15 #include "wine/winbase16.h"
16 #include "wine/exception.h"
17 #include "wine/library.h"
27 #include "debugtools.h"
29 DEFAULT_DEBUG_CHANNEL(process
);
30 DECLARE_DEBUG_CHANNEL(relay
);
31 DECLARE_DEBUG_CHANNEL(win32
);
35 /* Win32 process database */
38 LONG header
[2]; /* 00 Kernel object header */
39 HMODULE module
; /* 08 Main exe module (NT) */
40 void *event
; /* 0c Pointer to an event object (unused) */
41 DWORD exit_code
; /* 10 Process exit code */
42 DWORD unknown2
; /* 14 Unknown */
43 HANDLE heap
; /* 18 Default process heap */
44 HANDLE mem_context
; /* 1c Process memory context */
45 DWORD flags
; /* 20 Flags */
46 void *pdb16
; /* 24 DOS PSP */
47 WORD PSP_sel
; /* 28 Selector to DOS PSP */
48 WORD imte
; /* 2a IMTE for the process module */
49 WORD threads
; /* 2c Number of threads */
50 WORD running_threads
; /* 2e Number of running threads */
51 WORD free_lib_count
; /* 30 Recursion depth of FreeLibrary calls */
52 WORD ring0_threads
; /* 32 Number of ring 0 threads */
53 HANDLE system_heap
; /* 34 System heap to allocate handles */
54 HTASK task
; /* 38 Win16 task */
55 void *mem_map_files
; /* 3c Pointer to mem-mapped files */
56 struct _ENVDB
*env_db
; /* 40 Environment database */
57 void *handle_table
; /* 44 Handle table */
58 struct _PDB
*parent
; /* 48 Parent process */
59 void *modref_list
; /* 4c MODREF list */
60 void *thread_list
; /* 50 List of threads */
61 void *debuggee_CB
; /* 54 Debuggee context block */
62 void *local_heap_free
; /* 58 Head of local heap free list */
63 DWORD unknown4
; /* 5c Unknown */
64 CRITICAL_SECTION crit_section
; /* 60 Critical section */
65 DWORD unknown5
[3]; /* 78 Unknown */
66 void *console
; /* 84 Console */
67 DWORD tls_bits
[2]; /* 88 TLS in-use bits */
68 DWORD process_dword
; /* 90 Unknown */
69 struct _PDB
*group
; /* 94 Process group */
70 void *exe_modref
; /* 98 MODREF for the process EXE */
71 void *top_filter
; /* 9c Top exception filter */
72 DWORD priority
; /* a0 Priority level */
73 HANDLE heap_list
; /* a4 Head of process heap list */
74 void *heap_handles
; /* a8 Head of heap handles list */
75 DWORD unknown6
; /* ac Unknown */
76 void *console_provider
; /* b0 Console provider (??) */
77 WORD env_selector
; /* b4 Selector to process environment */
78 WORD error_mode
; /* b6 Error mode */
79 HANDLE load_done_evt
; /* b8 Event for process loading done */
80 void *UTState
; /* bc Head of Univeral Thunk list */
81 DWORD unknown8
; /* c0 Unknown (NT) */
82 LCID locale
; /* c4 Locale to be queried by GetThreadLocale (NT) */
88 #define PDB32_DEBUGGED 0x0001 /* Process is being debugged */
89 #define PDB32_WIN16_PROC 0x0008 /* Win16 process */
90 #define PDB32_DOS_PROC 0x0010 /* Dos process */
91 #define PDB32_CONSOLE_PROC 0x0020 /* Console process */
92 #define PDB32_FILE_APIS_OEM 0x0040 /* File APIs are OEM */
93 #define PDB32_WIN32S_PROC 0x8000 /* Win32s process */
95 static char **main_exe_argv
;
96 static char main_exe_name
[MAX_PATH
];
97 static HANDLE main_exe_file
;
99 unsigned int server_startticks
;
101 /* memory/environ.c */
102 extern struct _ENVDB
*ENV_BuildEnvironment(void);
103 extern BOOL
ENV_BuildCommandLine( char **argv
);
104 extern STARTUPINFOA current_startupinfo
;
106 extern BOOL
MAIN_MainInit(void);
109 /***********************************************************************
110 * PROCESS_CallUserSignalProc
112 * FIXME: Some of the signals aren't sent correctly!
114 * The exact meaning of the USER signals is undocumented, but this
115 * should cover the basic idea:
117 * USIG_DLL_UNLOAD_WIN16
118 * This is sent when a 16-bit module is unloaded.
120 * USIG_DLL_UNLOAD_WIN32
121 * This is sent when a 32-bit module is unloaded.
123 * USIG_DLL_UNLOAD_ORPHANS
124 * This is sent after the last Win3.1 module is unloaded,
125 * to allow removal of orphaned menus.
127 * USIG_FAULT_DIALOG_PUSH
128 * USIG_FAULT_DIALOG_POP
129 * These are called to allow USER to prepare for displaying a
130 * fault dialog, even though the fault might have happened while
131 * inside a USER critical section.
134 * This is called from the context of a new thread, as soon as it
135 * has started to run.
138 * This is called, still in its context, just before a thread is
139 * about to terminate.
141 * USIG_PROCESS_CREATE
142 * This is called, in the parent process context, after a new process
146 * This is called in the new process context, just after the main thread
147 * has started execution (after the main thread's USIG_THREAD_INIT has
150 * USIG_PROCESS_LOADED
151 * This is called after the executable file has been loaded into the
152 * new process context.
154 * USIG_PROCESS_RUNNING
155 * This is called immediately before the main entry point is called.
158 * This is called in the context of a process that is about to
159 * terminate (but before the last thread's USIG_THREAD_EXIT has
162 * USIG_PROCESS_DESTROY
163 * This is called after a process has terminated.
166 * The meaning of the dwFlags bits is as follows:
169 * Current process is 32-bit.
172 * Current process is a (Win32) GUI process.
174 * USIG_FLAGS_FEEDBACK
175 * Current process needs 'feedback' (determined from the STARTUPINFO
176 * flags STARTF_FORCEONFEEDBACK / STARTF_FORCEOFFFEEDBACK).
179 * The signal is being sent due to a fault.
181 void PROCESS_CallUserSignalProc( UINT uCode
, HMODULE hModule
)
183 DWORD flags
= current_process
.flags
;
184 DWORD startup_flags
= current_startupinfo
.dwFlags
;
187 /* Determine dwFlags */
189 if ( !(flags
& PDB32_WIN16_PROC
) ) dwFlags
|= USIG_FLAGS_WIN32
;
191 if ( !(flags
& PDB32_CONSOLE_PROC
) ) dwFlags
|= USIG_FLAGS_GUI
;
193 if ( dwFlags
& USIG_FLAGS_GUI
)
195 /* Feedback defaults to ON */
196 if ( !(startup_flags
& STARTF_FORCEOFFFEEDBACK
) )
197 dwFlags
|= USIG_FLAGS_FEEDBACK
;
201 /* Feedback defaults to OFF */
202 if (startup_flags
& STARTF_FORCEONFEEDBACK
)
203 dwFlags
|= USIG_FLAGS_FEEDBACK
;
206 /* Convert module handle to 16-bit */
208 if ( HIWORD( hModule
) )
209 hModule
= MapHModuleLS( hModule
);
211 /* Call USER signal proc */
213 if ( Callout
.UserSignalProc
)
215 if ( uCode
== USIG_THREAD_INIT
|| uCode
== USIG_THREAD_EXIT
)
216 Callout
.UserSignalProc( uCode
, GetCurrentThreadId(), dwFlags
, hModule
);
218 Callout
.UserSignalProc( uCode
, GetCurrentProcessId(), dwFlags
, hModule
);
223 /***********************************************************************
226 * Main process initialisation code
228 static BOOL
process_init( char *argv
[] )
232 /* store the program name */
234 main_exe_argv
= argv
;
236 /* Fill the initial process structure */
237 current_process
.exit_code
= STILL_ACTIVE
;
238 current_process
.threads
= 1;
239 current_process
.running_threads
= 1;
240 current_process
.ring0_threads
= 1;
241 current_process
.group
= ¤t_process
;
242 current_process
.priority
= 8; /* Normal */
244 /* Setup the server connection */
245 NtCurrentTeb()->socket
= CLIENT_InitServer();
246 if (CLIENT_InitThread()) return FALSE
;
248 /* Retrieve startup info from the server */
251 struct init_process_request
*req
= server_alloc_req( sizeof(*req
),
252 sizeof(main_exe_name
)-1 );
254 req
->ldt_copy
= &wine_ldt_copy
;
255 req
->ppid
= getppid();
256 if ((ret
= !server_call( REQ_INIT_PROCESS
)))
258 size_t len
= server_data_size( req
);
259 memcpy( main_exe_name
, server_data_ptr(req
), len
);
260 main_exe_name
[len
] = 0;
261 main_exe_file
= req
->exe_file
;
262 current_startupinfo
.dwFlags
= req
->start_flags
;
263 server_startticks
= req
->server_start
;
264 current_startupinfo
.wShowWindow
= req
->cmd_show
;
265 current_startupinfo
.hStdInput
= req
->hstdin
;
266 current_startupinfo
.hStdOutput
= req
->hstdout
;
267 current_startupinfo
.hStdError
= req
->hstderr
;
268 SetStdHandle( STD_INPUT_HANDLE
, current_startupinfo
.hStdInput
);
269 SetStdHandle( STD_OUTPUT_HANDLE
, current_startupinfo
.hStdOutput
);
270 SetStdHandle( STD_ERROR_HANDLE
, current_startupinfo
.hStdError
);
274 if (!ret
) return FALSE
;
276 /* Create the system and process heaps */
277 if (!HEAP_CreateSystemHeap()) return FALSE
;
278 current_process
.heap
= HeapCreate( HEAP_GROWABLE
, 0, 0 );
280 /* Copy the parent environment */
281 if (!(current_process
.env_db
= ENV_BuildEnvironment())) return FALSE
;
283 /* Parse command line arguments */
284 OPTIONS_ParseOptions( argv
);
286 return MAIN_MainInit();
290 /***********************************************************************
293 * Startup routine of a new process. Runs on the new process stack.
295 static void start_process(void)
297 int debugged
, console_app
;
298 LPTHREAD_START_ROUTINE entry
;
301 /* build command line */
302 if (!ENV_BuildCommandLine( main_exe_argv
)) goto error
;
304 /* create 32-bit module for main exe */
305 if (!(current_process
.module
= BUILTIN32_LoadExeModule( current_process
.module
))) goto error
;
307 /* use original argv[0] as name for the main module */
308 if (!main_exe_name
[0])
310 if (!GetLongPathNameA( full_argv0
, main_exe_name
, sizeof(main_exe_name
) ))
311 lstrcpynA( main_exe_name
, full_argv0
, sizeof(main_exe_name
) );
314 /* Retrieve entry point address */
315 entry
= (LPTHREAD_START_ROUTINE
)((char*)current_process
.module
+
316 PE_HEADER(current_process
.module
)->OptionalHeader
.AddressOfEntryPoint
);
317 console_app
= (PE_HEADER(current_process
.module
)->OptionalHeader
.Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_CUI
);
318 if (console_app
) current_process
.flags
|= PDB32_CONSOLE_PROC
;
320 /* Signal the parent process to continue */
323 struct init_process_done_request
*req
= server_alloc_req( sizeof(*req
), 0 );
324 req
->module
= (void *)current_process
.module
;
326 req
->name
= main_exe_name
;
327 req
->exe_file
= main_exe_file
;
328 req
->gui
= !console_app
;
329 server_call( REQ_INIT_PROCESS_DONE
);
330 debugged
= req
->debugged
;
334 /* Install signal handlers; this cannot be done before, since we cannot
335 * send exceptions to the debugger before the create process event that
336 * is sent by REQ_INIT_PROCESS_DONE */
337 if (!SIGNAL_Init()) goto error
;
339 /* create the main modref and load dependencies */
340 if (!(wm
= PE_CreateModule( current_process
.module
, main_exe_name
, 0, 0, FALSE
)))
346 MODULE_DllProcessAttach( NULL
, (LPVOID
)1 );
349 /* Get pointers to USER routines called by KERNEL */
352 /* Call FinalUserInit routine */
353 if (Callout
.FinalUserInit16
) Callout
.FinalUserInit16();
355 /* Note: The USIG_PROCESS_CREATE signal is supposed to be sent in the
356 * context of the parent process. Actually, the USER signal proc
357 * doesn't really care about that, but it *does* require that the
358 * startup parameters are correctly set up, so that GetProcessDword
359 * works. Furthermore, before calling the USER signal proc the
360 * 16-bit stack must be set up, which it is only after TASK_Create
361 * in the case of a 16-bit process. Thus, we send the signal here.
363 PROCESS_CallUserSignalProc( USIG_PROCESS_CREATE
, 0 );
364 PROCESS_CallUserSignalProc( USIG_THREAD_INIT
, 0 );
365 PROCESS_CallUserSignalProc( USIG_PROCESS_INIT
, 0 );
366 PROCESS_CallUserSignalProc( USIG_PROCESS_LOADED
, 0 );
367 /* Call UserSignalProc ( USIG_PROCESS_RUNNING ... ) only for non-GUI win32 apps */
368 if (console_app
) PROCESS_CallUserSignalProc( USIG_PROCESS_RUNNING
, 0 );
370 TRACE_(relay
)( "Starting Win32 process %s (entryproc=%p)\n", main_exe_name
, entry
);
371 if (debugged
) DbgBreakPoint();
372 /* FIXME: should use _PEB as parameter for NT 3.5 programs !
373 * Dunno about other OSs */
374 SetLastError(0); /* clear error code */
375 ExitThread( entry(NULL
) );
378 ExitProcess( GetLastError() );
382 /***********************************************************************
385 * Try to open the Winelib app .so file based on argv[0] or WINEPRELOAD.
387 void *open_winelib_app( char *argv
[] )
393 if ((name
= getenv( "WINEPRELOAD" )))
395 if (!(ret
= wine_dll_load_main_exe( name
, 0 )))
397 MESSAGE( "%s: could not load '%s' as specified in the WINEPRELOAD environment variable\n",
404 const char *argv0
= main_exe_name
;
407 /* if argv[0] is "wine", don't try to load anything */
409 if (!(name
= strrchr( argv0
, '/' ))) name
= argv0
;
411 if (!strcmp( name
, "wine" )) return NULL
;
414 /* now try argv[0] with ".so" appended */
415 if ((tmp
= HeapAlloc( GetProcessHeap(), 0, strlen(argv0
) + 4 )))
417 strcpy( tmp
, argv0
);
418 strcat( tmp
, ".so" );
419 /* search in PATH only if there was no '/' in argv[0] */
420 ret
= wine_dll_load_main_exe( tmp
, (name
== argv0
) );
421 if (!ret
&& !argv
[1])
423 /* if no argv[1], this will be better than displaying usage */
424 MESSAGE( "%s: could not load library '%s' as Winelib application\n",
428 HeapFree( GetProcessHeap(), 0, tmp
);
434 /***********************************************************************
437 * Wine initialisation: load and start the main exe file.
439 void PROCESS_InitWine( int argc
, char *argv
[], LPSTR win16_exe_name
, HANDLE
*win16_exe_file
)
441 DWORD stack_size
= 0;
443 /* Initialize everything */
444 if (!process_init( argv
)) exit(1);
446 if (open_winelib_app( argv
)) goto found
; /* try to open argv[0] as a winelib app */
448 main_exe_argv
= ++argv
; /* remove argv[0] (wine itself) */
450 if (!main_exe_name
[0])
452 if (!argv
[0]) OPTIONS_Usage();
454 /* open the exe file */
455 if (!SearchPathA( NULL
, argv
[0], ".exe", sizeof(main_exe_name
), main_exe_name
, NULL
) &&
456 !SearchPathA( NULL
, argv
[0], NULL
, sizeof(main_exe_name
), main_exe_name
, NULL
))
458 MESSAGE( "%s: cannot find '%s'\n", argv0
, argv
[0] );
465 if ((main_exe_file
= CreateFileA( main_exe_name
, GENERIC_READ
, FILE_SHARE_READ
,
466 NULL
, OPEN_EXISTING
, 0, 0)) == INVALID_HANDLE_VALUE
)
468 MESSAGE( "%s: cannot open '%s'\n", argv0
, main_exe_name
);
473 /* first try Win32 format; this will fail if the file is not a PE binary */
474 if ((current_process
.module
= PE_LoadImage( main_exe_file
, main_exe_name
, 0 )))
476 if (PE_HEADER(current_process
.module
)->FileHeader
.Characteristics
& IMAGE_FILE_DLL
)
477 ExitProcess( ERROR_BAD_EXE_FORMAT
);
478 stack_size
= PE_HEADER(current_process
.module
)->OptionalHeader
.SizeOfStackReserve
;
482 /* it must be 16-bit or DOS format */
483 NtCurrentTeb()->tibflags
&= ~TEBF_WIN32
;
484 current_process
.flags
|= PDB32_WIN16_PROC
;
485 strcpy( win16_exe_name
, main_exe_name
);
486 main_exe_name
[0] = 0;
487 *win16_exe_file
= main_exe_file
;
492 /* allocate main thread stack */
493 if (!THREAD_InitStack( NtCurrentTeb(), stack_size
, TRUE
)) goto error
;
495 /* switch to the new stack */
496 SYSDEPS_SwitchToThreadStack( start_process
);
499 ExitProcess( GetLastError() );
503 /***********************************************************************
504 * PROCESS_InitWinelib
506 * Initialisation of a new Winelib process.
508 void PROCESS_InitWinelib( int argc
, char *argv
[] )
510 if (!process_init( argv
)) exit(1);
512 /* allocate main thread stack */
513 if (!THREAD_InitStack( NtCurrentTeb(), 0, TRUE
)) ExitProcess( GetLastError() );
515 /* switch to the new stack */
516 SYSDEPS_SwitchToThreadStack( start_process
);
520 /***********************************************************************
523 * Build an argv array from a command-line.
524 * The command-line is modified to insert nulls.
525 * 'reserved' is the number of args to reserve before the first one.
527 static char **build_argv( char *cmdline
, int reserved
)
530 int count
= reserved
+ 1;
533 /* if first word is quoted store it as a single arg */
534 if (*cmdline
== '\"')
536 if ((p
= strchr( cmdline
+ 1, '\"' )))
545 while (*p
&& isspace(*p
)) p
++;
548 while (*p
&& !isspace(*p
)) p
++;
551 if ((argv
= malloc( count
* sizeof(*argv
) )))
553 char **argvptr
= argv
+ reserved
;
555 if (*cmdline
== '\"')
557 if ((p
= strchr( cmdline
+ 1, '\"' )))
559 *argvptr
++ = cmdline
+ 1;
566 while (*p
&& isspace(*p
)) *p
++ = 0;
569 while (*p
&& !isspace(*p
)) p
++;
577 /***********************************************************************
580 * Build the environment of a new child process.
582 static char **build_envp( const char *env
, const char *extra_env
)
588 if (extra_env
) for (p
= extra_env
; *p
; count
++) p
+= strlen(p
) + 1;
589 for (p
= env
; *p
; count
++) p
+= strlen(p
) + 1;
592 if ((envp
= malloc( count
* sizeof(*envp
) )))
594 extern char **environ
;
595 char **envptr
= envp
;
596 char **unixptr
= environ
;
597 /* first the extra strings */
598 if (extra_env
) for (p
= extra_env
; *p
; p
+= strlen(p
) + 1) *envptr
++ = (char *)p
;
599 /* then put PATH, HOME and WINEPREFIX from the unix env */
600 for (unixptr
= environ
; unixptr
&& *unixptr
; unixptr
++)
601 if (!memcmp( *unixptr
, "PATH=", 5 ) ||
602 !memcmp( *unixptr
, "HOME=", 5 ) ||
603 !memcmp( *unixptr
, "WINEPREFIX=", 11 )) *envptr
++ = *unixptr
;
604 /* now put the Windows environment strings */
605 for (p
= env
; *p
; p
+= strlen(p
) + 1)
607 if (memcmp( p
, "PATH=", 5 ) &&
608 memcmp( p
, "HOME=", 5 ) &&
609 memcmp( p
, "WINEPRELOAD=", 12 ) &&
610 memcmp( p
, "WINEPREFIX=", 11 )) *envptr
++ = (char *)p
;
618 /***********************************************************************
621 * Locate the Wine binary to exec for a new Win32 process.
623 static void exec_wine_binary( char **argv
, char **envp
)
625 const char *path
, *pos
, *ptr
;
627 /* first, try for a WINELOADER environment variable */
628 argv
[0] = getenv("WINELOADER");
630 execve( argv
[0], argv
, envp
);
632 /* next, try bin directory */
633 argv
[0] = BINDIR
"/wine";
634 execve( argv
[0], argv
, envp
);
636 /* now try the path of argv0 of the current binary */
637 if (!(argv
[0] = malloc( strlen(full_argv0
) + 6 ))) return;
638 if ((ptr
= strrchr( full_argv0
, '/' )))
640 memcpy( argv
[0], full_argv0
, ptr
- full_argv0
);
641 strcpy( argv
[0] + (ptr
- full_argv0
), "/wine" );
642 execve( argv
[0], argv
, envp
);
646 /* now search in the Unix path */
647 if ((path
= getenv( "PATH" )))
649 if (!(argv
[0] = malloc( strlen(path
) + 6 ))) return;
653 while (*pos
== ':') pos
++;
655 if (!(ptr
= strchr( pos
, ':' ))) ptr
= pos
+ strlen(pos
);
656 memcpy( argv
[0], pos
, ptr
- pos
);
657 strcpy( argv
[0] + (ptr
- pos
), "/wine" );
658 execve( argv
[0], argv
, envp
);
664 /* finally try the current directory */
666 execve( argv
[0], argv
, envp
);
670 /***********************************************************************
673 * Fork and exec a new Unix process, checking for errors.
675 static int fork_and_exec( const char *filename
, char *cmdline
,
676 const char *env
, const char *newdir
)
680 char *extra_env
= NULL
;
684 env
= GetEnvironmentStringsA();
685 extra_env
= DRIVE_BuildEnv();
693 fcntl( fd
[1], F_SETFD
, 1 ); /* set close on exec */
694 if (!(pid
= fork())) /* child */
696 char **argv
= build_argv( cmdline
, filename
? 0 : 2 );
697 char **envp
= build_envp( env
, extra_env
);
700 if (newdir
) chdir(newdir
);
707 exec_wine_binary( argv
, envp
);
709 else execve( filename
, argv
, envp
);
712 write( fd
[1], &err
, sizeof(err
) );
716 if ((pid
!= -1) && (read( fd
[0], &err
, sizeof(err
) ) > 0)) /* exec failed */
721 if (pid
== -1) FILE_SetDosError();
723 if (extra_env
) HeapFree( GetProcessHeap(), 0, extra_env
);
728 /***********************************************************************
731 * Create a new process. If hFile is a valid handle we have an exe
732 * file, and we exec a new copy of wine to load it; otherwise we
733 * simply exec the specified filename as a Unix process.
735 BOOL
PROCESS_Create( HANDLE hFile
, LPCSTR filename
, LPSTR cmd_line
, LPCSTR env
,
736 LPSECURITY_ATTRIBUTES psa
, LPSECURITY_ATTRIBUTES tsa
,
737 BOOL inherit
, DWORD flags
, LPSTARTUPINFOA startup
,
738 LPPROCESS_INFORMATION info
, LPCSTR lpCurrentDirectory
)
742 const char *unixfilename
= NULL
;
743 const char *unixdir
= NULL
;
744 DOS_FULL_NAME full_dir
, full_name
;
745 HANDLE load_done_evt
= 0;
747 info
->hThread
= info
->hProcess
= 0;
749 if (lpCurrentDirectory
)
751 if (DOSFS_GetFullName( lpCurrentDirectory
, TRUE
, &full_dir
))
752 unixdir
= full_dir
.long_name
;
757 if (GetCurrentDirectoryA(sizeof(buf
),buf
))
759 if (DOSFS_GetFullName( buf
, TRUE
, &full_dir
))
760 unixdir
= full_dir
.long_name
;
764 /* create the process on the server side */
768 struct new_process_request
*req
= server_alloc_req( sizeof(*req
), MAX_PATH
);
769 req
->inherit_all
= inherit
;
770 req
->create_flags
= flags
;
771 req
->start_flags
= startup
->dwFlags
;
772 req
->exe_file
= hFile
;
773 if (startup
->dwFlags
& STARTF_USESTDHANDLES
)
775 req
->hstdin
= startup
->hStdInput
;
776 req
->hstdout
= startup
->hStdOutput
;
777 req
->hstderr
= startup
->hStdError
;
781 req
->hstdin
= GetStdHandle( STD_INPUT_HANDLE
);
782 req
->hstdout
= GetStdHandle( STD_OUTPUT_HANDLE
);
783 req
->hstderr
= GetStdHandle( STD_ERROR_HANDLE
);
785 req
->cmd_show
= startup
->wShowWindow
;
787 if (!hFile
) /* unix process */
789 unixfilename
= filename
;
790 if (DOSFS_GetFullName( filename
, TRUE
, &full_name
))
791 unixfilename
= full_name
.long_name
;
792 lstrcpynA( server_data_ptr(req
), unixfilename
, MAX_PATH
);
794 else /* new wine process */
796 if (!GetLongPathNameA( filename
, server_data_ptr(req
), MAX_PATH
))
797 lstrcpynA( server_data_ptr(req
), filename
, MAX_PATH
);
799 ret
= !server_call( REQ_NEW_PROCESS
);
802 if (!ret
) return FALSE
;
804 /* fork and execute */
806 pid
= fork_and_exec( unixfilename
, cmd_line
, env
, unixdir
);
810 struct wait_process_request
*req
= server_alloc_req( sizeof(*req
), 0 );
811 req
->cancel
= (pid
== -1);
812 req
->pinherit
= (psa
&& (psa
->nLength
>= sizeof(*psa
)) && psa
->bInheritHandle
);
813 req
->tinherit
= (tsa
&& (tsa
->nLength
>= sizeof(*tsa
)) && tsa
->bInheritHandle
);
815 if ((ret
= !server_call( REQ_WAIT_PROCESS
)) && (pid
!= -1))
817 info
->dwProcessId
= (DWORD
)req
->pid
;
818 info
->dwThreadId
= (DWORD
)req
->tid
;
819 info
->hProcess
= req
->phandle
;
820 info
->hThread
= req
->thandle
;
821 load_done_evt
= req
->event
;
825 if (!ret
|| (pid
== -1)) goto error
;
827 /* Wait until process is initialized (or initialization failed) */
833 handles
[0] = info
->hProcess
;
834 handles
[1] = load_done_evt
;
835 res
= WaitForMultipleObjects( 2, handles
, FALSE
, INFINITE
);
836 CloseHandle( load_done_evt
);
837 if (res
== STATUS_WAIT_0
) /* the process died */
840 if (GetExitCodeProcess( info
->hProcess
, &exitcode
)) SetLastError( exitcode
);
841 CloseHandle( info
->hThread
);
842 CloseHandle( info
->hProcess
);
849 if (load_done_evt
) CloseHandle( load_done_evt
);
850 if (info
->hThread
) CloseHandle( info
->hThread
);
851 if (info
->hProcess
) CloseHandle( info
->hProcess
);
856 /***********************************************************************
857 * ExitProcess (KERNEL32.100)
859 void WINAPI
ExitProcess( DWORD status
)
861 MODULE_DllProcessDetach( TRUE
, (LPVOID
)1 );
864 struct terminate_process_request
*req
= server_alloc_req( sizeof(*req
), 0 );
865 /* send the exit code to the server */
866 req
->handle
= GetCurrentProcess();
867 req
->exit_code
= status
;
868 server_call( REQ_TERMINATE_PROCESS
);
874 /***********************************************************************
875 * ExitProcess16 (KERNEL.466)
877 void WINAPI
ExitProcess16( WORD status
)
880 ReleaseThunkLock( &count
);
881 ExitProcess( status
);
884 /******************************************************************************
885 * TerminateProcess (KERNEL32.684)
887 BOOL WINAPI
TerminateProcess( HANDLE handle
, DWORD exit_code
)
889 NTSTATUS status
= NtTerminateProcess( handle
, exit_code
);
890 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
895 /***********************************************************************
896 * GetProcessDword (KERNEL32.18) (KERNEL.485)
897 * 'Of course you cannot directly access Windows internal structures'
899 DWORD WINAPI
GetProcessDword( DWORD dwProcessID
, INT offset
)
903 TRACE_(win32
)("(%ld, %d)\n", dwProcessID
, offset
);
905 if (dwProcessID
&& dwProcessID
!= GetCurrentProcessId())
907 ERR("%d: process %lx not accessible\n", offset
, dwProcessID
);
913 case GPD_APP_COMPAT_FLAGS
:
914 return GetAppCompatFlags16(0);
916 case GPD_LOAD_DONE_EVENT
:
917 return current_process
.load_done_evt
;
919 case GPD_HINSTANCE16
:
920 return GetTaskDS16();
922 case GPD_WINDOWS_VERSION
:
923 return GetExeVersion16();
926 return (DWORD
)NtCurrentTeb() - 0x10 /* FIXME */;
929 return (DWORD
)¤t_process
;
931 case GPD_STARTF_SHELLDATA
: /* return stdoutput handle from startupinfo ??? */
932 return current_startupinfo
.hStdOutput
;
934 case GPD_STARTF_HOTKEY
: /* return stdinput handle from startupinfo ??? */
935 return current_startupinfo
.hStdInput
;
937 case GPD_STARTF_SHOWWINDOW
:
938 return current_startupinfo
.wShowWindow
;
940 case GPD_STARTF_SIZE
:
941 x
= current_startupinfo
.dwXSize
;
942 if ( (INT
)x
== CW_USEDEFAULT
) x
= CW_USEDEFAULT16
;
943 y
= current_startupinfo
.dwYSize
;
944 if ( (INT
)y
== CW_USEDEFAULT
) y
= CW_USEDEFAULT16
;
945 return MAKELONG( x
, y
);
947 case GPD_STARTF_POSITION
:
948 x
= current_startupinfo
.dwX
;
949 if ( (INT
)x
== CW_USEDEFAULT
) x
= CW_USEDEFAULT16
;
950 y
= current_startupinfo
.dwY
;
951 if ( (INT
)y
== CW_USEDEFAULT
) y
= CW_USEDEFAULT16
;
952 return MAKELONG( x
, y
);
954 case GPD_STARTF_FLAGS
:
955 return current_startupinfo
.dwFlags
;
961 return current_process
.flags
;
964 return current_process
.process_dword
;
967 ERR_(win32
)("Unknown offset %d\n", offset
);
972 /***********************************************************************
973 * SetProcessDword (KERNEL.484)
974 * 'Of course you cannot directly access Windows internal structures'
976 void WINAPI
SetProcessDword( DWORD dwProcessID
, INT offset
, DWORD value
)
978 TRACE_(win32
)("(%ld, %d)\n", dwProcessID
, offset
);
980 if (dwProcessID
&& dwProcessID
!= GetCurrentProcessId())
982 ERR("%d: process %lx not accessible\n", offset
, dwProcessID
);
988 case GPD_APP_COMPAT_FLAGS
:
989 case GPD_LOAD_DONE_EVENT
:
990 case GPD_HINSTANCE16
:
991 case GPD_WINDOWS_VERSION
:
994 case GPD_STARTF_SHELLDATA
:
995 case GPD_STARTF_HOTKEY
:
996 case GPD_STARTF_SHOWWINDOW
:
997 case GPD_STARTF_SIZE
:
998 case GPD_STARTF_POSITION
:
999 case GPD_STARTF_FLAGS
:
1002 ERR_(win32
)("Not allowed to modify offset %d\n", offset
);
1006 current_process
.process_dword
= value
;
1010 ERR_(win32
)("Unknown offset %d\n", offset
);
1016 /*********************************************************************
1017 * OpenProcess (KERNEL32.543)
1019 HANDLE WINAPI
OpenProcess( DWORD access
, BOOL inherit
, DWORD id
)
1024 struct open_process_request
*req
= server_alloc_req( sizeof(*req
), 0 );
1026 req
->pid
= (void *)id
;
1027 req
->access
= access
;
1028 req
->inherit
= inherit
;
1029 if (!server_call( REQ_OPEN_PROCESS
)) ret
= req
->handle
;
1035 /*********************************************************************
1036 * MapProcessHandle (KERNEL.483)
1038 DWORD WINAPI
MapProcessHandle( HANDLE handle
)
1043 struct get_process_info_request
*req
= server_alloc_req( sizeof(*req
), 0 );
1044 req
->handle
= handle
;
1045 if (!server_call( REQ_GET_PROCESS_INFO
)) ret
= (DWORD
)req
->pid
;
1051 /***********************************************************************
1052 * SetPriorityClass (KERNEL32.503)
1054 BOOL WINAPI
SetPriorityClass( HANDLE hprocess
, DWORD priorityclass
)
1059 struct set_process_info_request
*req
= server_alloc_req( sizeof(*req
), 0 );
1060 req
->handle
= hprocess
;
1061 req
->priority
= priorityclass
;
1062 req
->mask
= SET_PROCESS_INFO_PRIORITY
;
1063 ret
= !server_call( REQ_SET_PROCESS_INFO
);
1070 /***********************************************************************
1071 * GetPriorityClass (KERNEL32.250)
1073 DWORD WINAPI
GetPriorityClass(HANDLE hprocess
)
1078 struct get_process_info_request
*req
= server_alloc_req( sizeof(*req
), 0 );
1079 req
->handle
= hprocess
;
1080 if (!server_call( REQ_GET_PROCESS_INFO
)) ret
= req
->priority
;
1087 /***********************************************************************
1088 * SetProcessAffinityMask (KERNEL32.662)
1090 BOOL WINAPI
SetProcessAffinityMask( HANDLE hProcess
, DWORD affmask
)
1095 struct set_process_info_request
*req
= server_alloc_req( sizeof(*req
), 0 );
1096 req
->handle
= hProcess
;
1097 req
->affinity
= affmask
;
1098 req
->mask
= SET_PROCESS_INFO_AFFINITY
;
1099 ret
= !server_call( REQ_SET_PROCESS_INFO
);
1105 /**********************************************************************
1106 * GetProcessAffinityMask (KERNEL32.373)
1108 BOOL WINAPI
GetProcessAffinityMask( HANDLE hProcess
,
1109 LPDWORD lpProcessAffinityMask
,
1110 LPDWORD lpSystemAffinityMask
)
1115 struct get_process_info_request
*req
= server_alloc_req( sizeof(*req
), 0 );
1116 req
->handle
= hProcess
;
1117 if (!server_call( REQ_GET_PROCESS_INFO
))
1119 if (lpProcessAffinityMask
) *lpProcessAffinityMask
= req
->process_affinity
;
1120 if (lpSystemAffinityMask
) *lpSystemAffinityMask
= req
->system_affinity
;
1129 /***********************************************************************
1130 * GetProcessVersion (KERNEL32)
1132 DWORD WINAPI
GetProcessVersion( DWORD processid
)
1134 IMAGE_NT_HEADERS
*nt
;
1136 if (processid
&& processid
!= GetCurrentProcessId())
1138 FIXME("should use ReadProcessMemory\n");
1141 if ((nt
= RtlImageNtHeader( current_process
.module
)))
1142 return ((nt
->OptionalHeader
.MajorSubsystemVersion
<< 16) |
1143 nt
->OptionalHeader
.MinorSubsystemVersion
);
1147 /***********************************************************************
1148 * GetProcessFlags (KERNEL32)
1150 DWORD WINAPI
GetProcessFlags( DWORD processid
)
1152 if (processid
&& processid
!= GetCurrentProcessId()) return 0;
1153 return current_process
.flags
;
1157 /***********************************************************************
1158 * SetProcessWorkingSetSize [KERNEL32.662]
1159 * Sets the min/max working set sizes for a specified process.
1162 * hProcess [I] Handle to the process of interest
1163 * minset [I] Specifies minimum working set size
1164 * maxset [I] Specifies maximum working set size
1168 BOOL WINAPI
SetProcessWorkingSetSize(HANDLE hProcess
,DWORD minset
,
1171 FIXME("(0x%08x,%ld,%ld): stub - harmless\n",hProcess
,minset
,maxset
);
1172 if(( minset
== (DWORD
)-1) && (maxset
== (DWORD
)-1)) {
1173 /* Trim the working set to zero */
1174 /* Swap the process out of physical RAM */
1179 /***********************************************************************
1180 * GetProcessWorkingSetSize (KERNEL32)
1182 BOOL WINAPI
GetProcessWorkingSetSize(HANDLE hProcess
,LPDWORD minset
,
1185 FIXME("(0x%08x,%p,%p): stub\n",hProcess
,minset
,maxset
);
1186 /* 32 MB working set size */
1187 if (minset
) *minset
= 32*1024*1024;
1188 if (maxset
) *maxset
= 32*1024*1024;
1192 /***********************************************************************
1193 * SetProcessShutdownParameters (KERNEL32)
1195 * CHANGED - James Sutherland (JamesSutherland@gmx.de)
1196 * Now tracks changes made (but does not act on these changes)
1198 static DWORD shutdown_flags
= 0;
1199 static DWORD shutdown_priority
= 0x280;
1201 BOOL WINAPI
SetProcessShutdownParameters(DWORD level
, DWORD flags
)
1203 FIXME("(%08lx, %08lx): partial stub.\n", level
, flags
);
1204 shutdown_flags
= flags
;
1205 shutdown_priority
= level
;
1210 /***********************************************************************
1211 * GetProcessShutdownParameters (KERNEL32)
1214 BOOL WINAPI
GetProcessShutdownParameters( LPDWORD lpdwLevel
, LPDWORD lpdwFlags
)
1216 *lpdwLevel
= shutdown_priority
;
1217 *lpdwFlags
= shutdown_flags
;
1222 /***********************************************************************
1223 * SetProcessPriorityBoost (KERNEL32)
1225 BOOL WINAPI
SetProcessPriorityBoost(HANDLE hprocess
,BOOL disableboost
)
1227 FIXME("(%d,%d): stub\n",hprocess
,disableboost
);
1228 /* Say we can do it. I doubt the program will notice that we don't. */
1233 /***********************************************************************
1234 * ReadProcessMemory (KERNEL32)
1236 BOOL WINAPI
ReadProcessMemory( HANDLE process
, LPCVOID addr
, LPVOID buffer
, DWORD size
,
1237 LPDWORD bytes_read
)
1239 unsigned int offset
= (unsigned int)addr
% sizeof(int);
1240 unsigned int pos
= 0, len
, max
;
1243 if (bytes_read
) *bytes_read
= size
;
1245 /* first time, read total length to check for permissions */
1246 len
= (size
+ offset
+ sizeof(int) - 1) / sizeof(int);
1247 max
= min( REQUEST_MAX_VAR_SIZE
, len
* sizeof(int) );
1253 struct read_process_memory_request
*req
= server_alloc_req( sizeof(*req
), max
);
1254 req
->handle
= process
;
1255 req
->addr
= (char *)addr
+ pos
- offset
;
1257 if (!(res
= server_call( REQ_READ_PROCESS_MEMORY
)))
1259 size_t result
= server_data_size( req
);
1260 if (result
> size
+ offset
) result
= size
+ offset
;
1261 memcpy( (char *)buffer
+ pos
, server_data_ptr(req
) + offset
, result
- offset
);
1262 size
-= result
- offset
;
1263 pos
+= result
- offset
;
1269 if (bytes_read
) *bytes_read
= 0;
1272 if (!size
) return TRUE
;
1273 max
= min( REQUEST_MAX_VAR_SIZE
, size
);
1274 len
= (max
+ sizeof(int) - 1) / sizeof(int);
1280 /***********************************************************************
1281 * WriteProcessMemory (KERNEL32)
1283 BOOL WINAPI
WriteProcessMemory( HANDLE process
, LPVOID addr
, LPVOID buffer
, DWORD size
,
1284 LPDWORD bytes_written
)
1286 unsigned int first_offset
, last_offset
;
1287 unsigned int pos
= 0, len
, max
, first_mask
, last_mask
;
1292 SetLastError( ERROR_INVALID_PARAMETER
);
1295 if (bytes_written
) *bytes_written
= size
;
1297 /* compute the mask for the first int */
1299 first_offset
= (unsigned int)addr
% sizeof(int);
1300 memset( &first_mask
, 0, first_offset
);
1302 /* compute the mask for the last int */
1303 last_offset
= (size
+ first_offset
) % sizeof(int);
1305 memset( &last_mask
, 0xff, last_offset
? last_offset
: sizeof(int) );
1307 /* for the first request, use the total length */
1308 len
= (size
+ first_offset
+ sizeof(int) - 1) / sizeof(int);
1309 max
= min( REQUEST_MAX_VAR_SIZE
, len
* sizeof(int) );
1315 struct write_process_memory_request
*req
= server_alloc_req( sizeof(*req
), max
);
1316 req
->handle
= process
;
1317 req
->addr
= (char *)addr
- first_offset
+ pos
;
1319 req
->first_mask
= (!pos
) ? first_mask
: ~0;
1320 if (size
+ first_offset
<= max
) /* last round */
1322 req
->last_mask
= last_mask
;
1323 max
= size
+ first_offset
;
1325 else req
->last_mask
= ~0;
1327 memcpy( (char *)server_data_ptr(req
) + first_offset
, (char *)buffer
+ pos
,
1328 max
- first_offset
);
1329 if (!(res
= server_call( REQ_WRITE_PROCESS_MEMORY
)))
1331 pos
+= max
- first_offset
;
1332 size
-= max
- first_offset
;
1338 if (bytes_written
) *bytes_written
= 0;
1341 if (!size
) return TRUE
;
1343 len
= min( size
+ sizeof(int) - 1, REQUEST_MAX_VAR_SIZE
) / sizeof(int);
1344 max
= len
* sizeof(int);
1349 /***********************************************************************
1350 * RegisterServiceProcess (KERNEL, KERNEL32)
1352 * A service process calls this function to ensure that it continues to run
1353 * even after a user logged off.
1355 DWORD WINAPI
RegisterServiceProcess(DWORD dwProcessId
, DWORD dwType
)
1357 /* I don't think that Wine needs to do anything in that function */
1358 return 1; /* success */
1361 /***********************************************************************
1362 * GetExitCodeProcess [KERNEL32.325]
1364 * Gets termination status of specified process
1370 BOOL WINAPI
GetExitCodeProcess(
1371 HANDLE hProcess
, /* [in] handle to the process */
1372 LPDWORD lpExitCode
) /* [out] address to receive termination status */
1377 struct get_process_info_request
*req
= server_alloc_req( sizeof(*req
), 0 );
1378 req
->handle
= hProcess
;
1379 ret
= !server_call( REQ_GET_PROCESS_INFO
);
1380 if (ret
&& lpExitCode
) *lpExitCode
= req
->exit_code
;
1387 /***********************************************************************
1388 * SetErrorMode (KERNEL32.486)
1390 UINT WINAPI
SetErrorMode( UINT mode
)
1392 UINT old
= current_process
.error_mode
;
1393 current_process
.error_mode
= mode
;
1398 /**********************************************************************
1399 * TlsAlloc [KERNEL32.530] Allocates a TLS index.
1401 * Allocates a thread local storage index
1404 * Success: TLS Index
1405 * Failure: 0xFFFFFFFF
1407 DWORD WINAPI
TlsAlloc( void )
1409 DWORD i
, mask
, ret
= 0;
1410 DWORD
*bits
= current_process
.tls_bits
;
1411 RtlAcquirePebLock();
1412 if (*bits
== 0xffffffff)
1416 if (*bits
== 0xffffffff)
1418 RtlReleasePebLock();
1419 SetLastError( ERROR_NO_MORE_ITEMS
);
1423 for (i
= 0, mask
= 1; i
< 32; i
++, mask
<<= 1) if (!(*bits
& mask
)) break;
1425 RtlReleasePebLock();
1430 /**********************************************************************
1431 * TlsFree [KERNEL32.531] Releases a TLS index.
1433 * Releases a thread local storage index, making it available for reuse
1439 BOOL WINAPI
TlsFree(
1440 DWORD index
) /* [in] TLS Index to free */
1442 DWORD mask
= (1 << (index
& 31));
1443 DWORD
*bits
= current_process
.tls_bits
;
1446 SetLastError( ERROR_INVALID_PARAMETER
);
1449 if (index
>= 32) bits
++;
1450 RtlAcquirePebLock();
1451 if (!(*bits
& mask
)) /* already free? */
1453 RtlReleasePebLock();
1454 SetLastError( ERROR_INVALID_PARAMETER
);
1458 NtCurrentTeb()->tls_array
[index
] = 0;
1459 /* FIXME: should zero all other thread values */
1460 RtlReleasePebLock();
1465 /**********************************************************************
1466 * TlsGetValue [KERNEL32.532] Gets value in a thread's TLS slot
1469 * Success: Value stored in calling thread's TLS slot for index
1470 * Failure: 0 and GetLastError returns NO_ERROR
1472 LPVOID WINAPI
TlsGetValue(
1473 DWORD index
) /* [in] TLS index to retrieve value for */
1477 SetLastError( ERROR_INVALID_PARAMETER
);
1480 SetLastError( ERROR_SUCCESS
);
1481 return NtCurrentTeb()->tls_array
[index
];
1485 /**********************************************************************
1486 * TlsSetValue [KERNEL32.533] Stores a value in the thread's TLS slot.
1492 BOOL WINAPI
TlsSetValue(
1493 DWORD index
, /* [in] TLS index to set value for */
1494 LPVOID value
) /* [in] Value to be stored */
1498 SetLastError( ERROR_INVALID_PARAMETER
);
1501 NtCurrentTeb()->tls_array
[index
] = value
;
1506 /***********************************************************************
1507 * GetCurrentProcess (KERNEL32.198)
1509 #undef GetCurrentProcess
1510 HANDLE WINAPI
GetCurrentProcess(void)