No longer directly accessing debuggee memory.
[wine] / scheduler / process.c
1 /*
2  * Win32 processes
3  *
4  * Copyright 1996, 1998 Alexandre Julliard
5  */
6
7 #include <assert.h>
8 #include <fcntl.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <unistd.h>
12 #include "wine/winbase16.h"
13 #include "wine/exception.h"
14 #include "process.h"
15 #include "module.h"
16 #include "neexe.h"
17 #include "file.h"
18 #include "global.h"
19 #include "heap.h"
20 #include "task.h"
21 #include "ldt.h"
22 #include "syslevel.h"
23 #include "thread.h"
24 #include "winerror.h"
25 #include "pe_image.h"
26 #include "server.h"
27 #include "options.h"
28 #include "callback.h"
29 #include "debugtools.h"
30
31 DEFAULT_DEBUG_CHANNEL(process)
32 DECLARE_DEBUG_CHANNEL(relay)
33 DECLARE_DEBUG_CHANNEL(win32)
34
35
36 /* The initial process PDB */
37 static PDB initial_pdb;
38
39 static PDB *PROCESS_First = &initial_pdb;
40
41
42 /***********************************************************************
43  *           PROCESS_WalkProcess
44  */
45 void PROCESS_WalkProcess(void)
46 {
47     PDB  *pdb;
48     char *name;
49
50     pdb = PROCESS_First;
51     MESSAGE( " pid        PDB         #th  modref     module \n" );
52     while(pdb)
53     {
54         if (pdb == &initial_pdb)
55             name = "initial PDB";
56         else
57             name = (pdb->exe_modref) ? pdb->exe_modref->filename : "";
58
59         MESSAGE( " %8p %8p %5d  %8p %s\n", pdb->server_pid, pdb,
60                pdb->threads, pdb->exe_modref, name);
61         pdb = pdb->next;
62     }
63     return;
64 }
65
66 /***********************************************************************
67  *           PROCESS_IsCurrent
68  *
69  * Check if a handle is to the current process
70  */
71 BOOL PROCESS_IsCurrent( HANDLE handle )
72 {
73     struct get_process_info_request *req = get_req_buffer();
74     req->handle = handle;
75     return (!server_call( REQ_GET_PROCESS_INFO ) &&
76             (req->pid == PROCESS_Current()->server_pid));
77 }
78
79
80 /***********************************************************************
81  *           PROCESS_IdToPDB
82  *
83  * Convert a process id to a PDB, making sure it is valid.
84  */
85 PDB *PROCESS_IdToPDB( DWORD pid )
86 {
87     PDB *pdb;
88
89     if (!pid) return PROCESS_Current();
90     pdb = PROCESS_First;
91     while (pdb)
92     {
93         if ((DWORD)pdb->server_pid == pid) return pdb;
94         pdb = pdb->next;
95     }
96     SetLastError( ERROR_INVALID_PARAMETER );
97     return NULL;
98 }
99
100
101 /***********************************************************************
102  *           PROCESS_CallUserSignalProc
103  *
104  * FIXME:  Some of the signals aren't sent correctly!
105  *
106  * The exact meaning of the USER signals is undocumented, but this 
107  * should cover the basic idea:
108  *
109  * USIG_DLL_UNLOAD_WIN16
110  *     This is sent when a 16-bit module is unloaded.
111  *
112  * USIG_DLL_UNLOAD_WIN32
113  *     This is sent when a 32-bit module is unloaded.
114  *
115  * USIG_DLL_UNLOAD_ORPHANS
116  *     This is sent after the last Win3.1 module is unloaded,
117  *     to allow removal of orphaned menus.
118  *
119  * USIG_FAULT_DIALOG_PUSH
120  * USIG_FAULT_DIALOG_POP
121  *     These are called to allow USER to prepare for displaying a
122  *     fault dialog, even though the fault might have happened while
123  *     inside a USER critical section.
124  *
125  * USIG_THREAD_INIT
126  *     This is called from the context of a new thread, as soon as it
127  *     has started to run.
128  *
129  * USIG_THREAD_EXIT
130  *     This is called, still in its context, just before a thread is
131  *     about to terminate.
132  *
133  * USIG_PROCESS_CREATE
134  *     This is called, in the parent process context, after a new process
135  *     has been created.
136  *
137  * USIG_PROCESS_INIT
138  *     This is called in the new process context, just after the main thread
139  *     has started execution (after the main thread's USIG_THREAD_INIT has
140  *     been sent).
141  *
142  * USIG_PROCESS_LOADED
143  *     This is called after the executable file has been loaded into the
144  *     new process context.
145  *
146  * USIG_PROCESS_RUNNING
147  *     This is called immediately before the main entry point is called.
148  *
149  * USIG_PROCESS_EXIT
150  *     This is called in the context of a process that is about to
151  *     terminate (but before the last thread's USIG_THREAD_EXIT has
152  *     been sent).
153  *
154  * USIG_PROCESS_DESTROY
155  *     This is called after a process has terminated.
156  *
157  *
158  * The meaning of the dwFlags bits is as follows:
159  *
160  * USIG_FLAGS_WIN32
161  *     Current process is 32-bit.
162  *
163  * USIG_FLAGS_GUI
164  *     Current process is a (Win32) GUI process.
165  *
166  * USIG_FLAGS_FEEDBACK 
167  *     Current process needs 'feedback' (determined from the STARTUPINFO
168  *     flags STARTF_FORCEONFEEDBACK / STARTF_FORCEOFFFEEDBACK).
169  *
170  * USIG_FLAGS_FAULT
171  *     The signal is being sent due to a fault.
172  */
173 void PROCESS_CallUserSignalProc( UINT uCode, DWORD dwThreadId, HMODULE hModule )
174 {
175     DWORD flags = PROCESS_Current()->flags;
176     DWORD startup_flags = PROCESS_Current()->env_db->startup_info->dwFlags;
177     DWORD dwFlags = 0;
178
179     /* Determine dwFlags */
180
181     if ( !(flags & PDB32_WIN16_PROC) ) dwFlags |= USIG_FLAGS_WIN32;
182
183     if ( !(flags & PDB32_CONSOLE_PROC) ) dwFlags |= USIG_FLAGS_GUI;
184
185     if ( dwFlags & USIG_FLAGS_GUI )
186     {
187         /* Feedback defaults to ON */
188         if ( !(startup_flags & STARTF_FORCEOFFFEEDBACK) )
189             dwFlags |= USIG_FLAGS_FEEDBACK;
190     }
191     else
192     {
193         /* Feedback defaults to OFF */
194         if (startup_flags & STARTF_FORCEONFEEDBACK)
195             dwFlags |= USIG_FLAGS_FEEDBACK;
196     }
197
198     /* Convert module handle to 16-bit */
199
200     if ( HIWORD( hModule ) )
201         hModule = MapHModuleLS( hModule );
202
203     /* Call USER signal proc */
204
205     if ( Callout.UserSignalProc )
206     {
207         if ( uCode == USIG_THREAD_INIT || uCode == USIG_THREAD_EXIT )
208             Callout.UserSignalProc( uCode, dwThreadId, dwFlags, hModule );
209         else
210             Callout.UserSignalProc( uCode, GetCurrentProcessId(), dwFlags, hModule );
211     }
212 }
213
214 /***********************************************************************
215  *           PROCESS_CreateEnvDB
216  *
217  * Create the env DB for a newly started process.
218  */
219 static BOOL PROCESS_CreateEnvDB(void)
220 {
221     struct init_process_request *req = get_req_buffer();
222     STARTUPINFOA *startup;
223     ENVDB *env_db;
224     char cmd_line[4096];
225     PDB *pdb = PROCESS_Current();
226
227     /* Allocate the env DB */
228
229     if (!(env_db = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(ENVDB) )))
230         return FALSE;
231     pdb->env_db = env_db;
232     InitializeCriticalSection( &env_db->section );
233
234     /* Allocate and fill the startup info */
235     if (!(startup = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(STARTUPINFOA) )))
236         return FALSE;
237     env_db->startup_info = startup;
238
239     /* Retrieve startup info from the server */
240
241     req->ldt_copy  = ldt_copy;
242     req->ldt_flags = ldt_flags_copy;
243     if (server_call( REQ_INIT_PROCESS )) return FALSE;
244     pdb->exe_file        = req->exe_file;
245     startup->dwFlags     = req->start_flags;
246     startup->wShowWindow = req->cmd_show;
247     env_db->hStdin  = startup->hStdInput  = req->hstdin;
248     env_db->hStdout = startup->hStdOutput = req->hstdout;
249     env_db->hStderr = startup->hStdError  = req->hstderr;
250     lstrcpynA( cmd_line, req->cmdline, sizeof(cmd_line) );
251
252     /* Copy the parent environment */
253
254     if (!ENV_InheritEnvironment( req->env_ptr )) return FALSE;
255
256     /* Copy the command line */
257
258     if (!(pdb->env_db->cmd_line = HEAP_strdupA( GetProcessHeap(), 0, cmd_line )))
259         return FALSE;
260
261     return TRUE;
262 }
263
264
265 /***********************************************************************
266  *           PROCESS_FreePDB
267  *
268  * Free a PDB and all associated storage.
269  */
270 void PROCESS_FreePDB( PDB *pdb )
271 {
272     PDB **pptr = &PROCESS_First;
273
274     ENV_FreeEnvironment( pdb );
275     while (*pptr && (*pptr != pdb)) pptr = &(*pptr)->next;
276     if (*pptr) *pptr = pdb->next;
277     HeapFree( SystemHeap, 0, pdb );
278 }
279
280
281 /***********************************************************************
282  *           PROCESS_CreatePDB
283  *
284  * Allocate and fill a PDB structure.
285  * Runs in the context of the parent process.
286  */
287 static PDB *PROCESS_CreatePDB( PDB *parent, BOOL inherit )
288 {
289     PDB *pdb = HeapAlloc( SystemHeap, HEAP_ZERO_MEMORY, sizeof(PDB) );
290
291     if (!pdb) return NULL;
292     pdb->exit_code       = STILL_ACTIVE;
293     pdb->threads         = 1;
294     pdb->running_threads = 1;
295     pdb->ring0_threads   = 1;
296     pdb->parent          = parent;
297     pdb->group           = pdb;
298     pdb->priority        = 8;  /* Normal */
299     pdb->next            = PROCESS_First;
300     pdb->winver          = 0xffff; /* to be determined */
301     pdb->main_queue      = INVALID_HANDLE_VALUE16;
302     PROCESS_First = pdb;
303     return pdb;
304 }
305
306
307 /***********************************************************************
308  *           PROCESS_Init
309  */
310 BOOL PROCESS_Init( BOOL win32 )
311 {
312     TEB *teb;
313     int server_fd;
314
315     /* Start the server */
316     server_fd = CLIENT_InitServer();
317
318     /* Fill the initial process structure */
319     initial_pdb.exit_code       = STILL_ACTIVE;
320     initial_pdb.threads         = 1;
321     initial_pdb.running_threads = 1;
322     initial_pdb.ring0_threads   = 1;
323     initial_pdb.group           = &initial_pdb;
324     initial_pdb.priority        = 8;  /* Normal */
325     initial_pdb.flags           = win32? 0 : PDB32_WIN16_PROC;
326     initial_pdb.winver          = 0xffff; /* to be determined */
327     initial_pdb.main_queue      = INVALID_HANDLE_VALUE16;
328
329     /* Initialize virtual memory management */
330     if (!VIRTUAL_Init()) return FALSE;
331
332     /* Create the initial thread structure and socket pair */
333     if (!(teb = THREAD_CreateInitialThread( &initial_pdb, server_fd ))) return FALSE;
334
335     /* Remember TEB selector of initial process for emergency use */
336     SYSLEVEL_EmergencyTeb = teb->teb_sel;
337
338     /* Create the system and process heaps */
339     if (!HEAP_CreateSystemHeap()) return FALSE;
340     initial_pdb.heap = HeapCreate( HEAP_GROWABLE, 0, 0 );
341
342     /* Create the idle event for the initial process
343        FIXME 1: Shouldn't we call UserSignalProc for the initial process too?
344        FIXME 2: It seems to me that the initial pdb becomes never freed, so I don't now
345                 where to release the idle event for the initial process.
346     */
347     initial_pdb.idle_event = CreateEventA ( NULL, TRUE, FALSE, NULL );
348     initial_pdb.idle_event = ConvertToGlobalHandle ( initial_pdb.idle_event );
349
350     /* Initialize signal handling */
351     if (!SIGNAL_Init()) return FALSE;
352
353     /* Create the environment DB of the first process */
354     if (!PROCESS_CreateEnvDB()) return FALSE;
355
356     /* Create the SEGPTR heap */
357     if (!(SegptrHeap = HeapCreate( HEAP_WINE_SEGPTR, 0, 0 ))) return FALSE;
358
359     /* Initialize the first process critical section */
360     InitializeCriticalSection( &initial_pdb.crit_section );
361
362     return TRUE;
363 }
364
365
366 /***********************************************************************
367  *           PROCESS_Start
368  *
369  * Startup routine of a new process. Called in the context of the new process.
370  */
371 void PROCESS_Start(void)
372 {
373     struct init_process_done_request *req = get_req_buffer();
374     int debugged;
375     UINT cmdShow = SW_SHOWNORMAL;
376     LPTHREAD_START_ROUTINE entry = NULL;
377     PDB *pdb = PROCESS_Current();
378     NE_MODULE *pModule = NE_GetPtr( pdb->module );
379     LPCSTR filename = ((OFSTRUCT *)((char*)(pModule) + (pModule)->fileinfo))->szPathName;
380     IMAGE_OPTIONAL_HEADER *header = !pModule->module32? NULL :
381                                     &PE_HEADER(pModule->module32)->OptionalHeader;
382
383     /* Get process type */
384     enum { PROC_DOS, PROC_WIN16, PROC_WIN32 } type;
385     if ( pdb->flags & PDB32_DOS_PROC )
386         type = PROC_DOS;
387     else if ( pdb->flags & PDB32_WIN16_PROC )
388         type = PROC_WIN16;
389     else
390         type = PROC_WIN32;
391
392     /* Initialize the critical section */
393     InitializeCriticalSection( &pdb->crit_section );
394
395     /* Create the heap */
396     if (!(pdb->heap = GetProcessHeap()))
397     {
398         if (!(pdb->heap = HeapCreate( HEAP_GROWABLE, 
399                                       header? header->SizeOfHeapReserve : 0x10000,
400                                       header? header->SizeOfHeapCommit  : 0 ))) 
401             goto error;
402     }
403
404     /* Create the environment db */
405     if (!PROCESS_CreateEnvDB()) goto error;
406
407     /* Create a task for this process */
408     if (pdb->env_db->startup_info->dwFlags & STARTF_USESHOWWINDOW)
409         cmdShow = pdb->env_db->startup_info->wShowWindow;
410     if (!TASK_Create( pModule, cmdShow ))
411         goto error;
412
413     /* Load all process modules */
414     switch ( type )
415     {
416     case PROC_WIN16:
417         if ( !NE_InitProcess( pModule ) )
418             goto error;
419         break;
420
421     case PROC_WIN32:
422         /* Create 32-bit MODREF */
423         if ( !PE_CreateModule( pModule->module32, filename, 0, FALSE ) ) 
424             goto error;
425
426         /* Increment EXE refcount */
427         assert( pdb->exe_modref );
428         pdb->exe_modref->refCount++;
429
430         /* Retrieve entry point address */
431         entry = (LPTHREAD_START_ROUTINE)RVA_PTR(pModule->module32,
432                                                 OptionalHeader.AddressOfEntryPoint);
433         break;
434
435     case PROC_DOS:
436         /* FIXME: move DOS startup code here */
437         break;
438     }
439
440
441     /* Note: The USIG_PROCESS_CREATE signal is supposed to be sent in the
442      *       context of the parent process.  Actually, the USER signal proc
443      *       doesn't really care about that, but it *does* require that the
444      *       startup parameters are correctly set up, so that GetProcessDword
445      *       works.  Furthermore, before calling the USER signal proc the 
446      *       16-bit stack must be set up, which it is only after TASK_Create
447      *       in the case of a 16-bit process. Thus, we send the signal here.
448      */
449
450     PROCESS_CallUserSignalProc( USIG_PROCESS_CREATE, 0, 0 );
451     PROCESS_CallUserSignalProc( USIG_THREAD_INIT, GetCurrentThreadId(), 0 );
452     PROCESS_CallUserSignalProc( USIG_PROCESS_INIT, 0, 0 );
453     PROCESS_CallUserSignalProc( USIG_PROCESS_LOADED, 0, 0 );
454
455     /* Signal the parent process to continue */
456     req->module = (void *)pModule->module32;
457     req->entry  = entry;
458     server_call( REQ_INIT_PROCESS_DONE );
459     debugged = req->debugged;
460
461     /* Send all required start-up debugger events */
462     if (type == PROC_WIN32 && debugged)
463     {
464         EnterCriticalSection( &pdb->crit_section );
465         MODULE_SendLoadDLLEvents();
466         LeaveCriticalSection( &pdb->crit_section );
467     }
468
469     if ( (pdb->flags & PDB32_CONSOLE_PROC) || (pdb->flags & PDB32_DOS_PROC) )
470         AllocConsole();
471
472     /* Perform Win32 specific process initialization */
473     if ( type == PROC_WIN32 )
474     {
475         EnterCriticalSection( &pdb->crit_section );
476
477         PE_InitTls();
478         MODULE_DllProcessAttach( pdb->exe_modref, (LPVOID)1 );
479
480         LeaveCriticalSection( &pdb->crit_section );
481     }
482
483     /* Call UserSignalProc ( USIG_PROCESS_RUNNING ... ) only for non-GUI win32 apps */
484     if ( type != PROC_WIN16 && (pdb->flags & PDB32_CONSOLE_PROC))
485         PROCESS_CallUserSignalProc( USIG_PROCESS_RUNNING, 0, 0 );
486
487     switch ( type )
488     {
489     case PROC_DOS:
490         TRACE_(relay)( "Starting DOS process\n" );
491         DOSVM_Enter( NULL );
492         ERR_(relay)( "DOSVM_Enter returned; should not happen!\n" );
493         ExitProcess( 0 );
494
495     case PROC_WIN16:
496         TRACE_(relay)( "Starting Win16 process\n" );
497         TASK_CallToStart();
498         ERR_(relay)( "TASK_CallToStart returned; should not happen!\n" );
499         ExitProcess( 0 );
500
501     case PROC_WIN32:
502         TRACE_(relay)( "Starting Win32 process (entryproc=%p)\n", entry );
503         if (debugged) DbgBreakPoint();
504         /* FIXME: should use _PEB as parameter for NT 3.5 programs !
505          * Dunno about other OSs */
506         ExitProcess( entry(NULL) );
507     }
508
509  error:
510     ExitProcess( GetLastError() );
511 }
512
513
514 /***********************************************************************
515  *           PROCESS_Create
516  *
517  * Create a new process database and associated info.
518  */
519 PDB *PROCESS_Create( NE_MODULE *pModule, HFILE hFile, LPCSTR cmd_line, LPCSTR env,
520                      LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
521                      BOOL inherit, DWORD flags, STARTUPINFOA *startup,
522                      PROCESS_INFORMATION *info )
523 {
524     HANDLE handles[2], load_done_evt = 0;
525     DWORD exitcode, size;
526     BOOL alloc_stack16;
527     int server_thandle, fd = -1;
528     struct new_process_request *req = get_req_buffer();
529     TEB *teb = NULL;
530     PDB *parent = PROCESS_Current();
531     PDB *pdb = PROCESS_CreatePDB( parent, inherit );
532
533     if (!pdb) return NULL;
534     info->hThread = info->hProcess = INVALID_HANDLE_VALUE;
535     if (!(load_done_evt = CreateEventA( NULL, TRUE, FALSE, NULL ))) goto error;
536     
537     /* Create the process on the server side */
538
539     req->inherit      = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle);
540     req->inherit_all  = inherit;
541     req->create_flags = flags;
542     req->start_flags  = startup->dwFlags;
543     req->exe_file     = hFile;
544     req->event        = load_done_evt;
545     if (startup->dwFlags & STARTF_USESTDHANDLES)
546     {
547         req->hstdin  = startup->hStdInput;
548         req->hstdout = startup->hStdOutput;
549         req->hstderr = startup->hStdError;
550     }
551     else
552     {
553         req->hstdin  = GetStdHandle( STD_INPUT_HANDLE );
554         req->hstdout = GetStdHandle( STD_OUTPUT_HANDLE );
555         req->hstderr = GetStdHandle( STD_ERROR_HANDLE );
556     }
557     req->cmd_show = startup->wShowWindow;
558     req->env_ptr = (void*)env;  /* FIXME: hack */
559     lstrcpynA( req->cmdline, cmd_line, server_remaining(req->cmdline) );
560     if (server_call_fd( REQ_NEW_PROCESS, -1, &fd )) goto error;
561     fcntl( fd, F_SETFD, 1 ); /* set close on exec flag */
562     pdb->server_pid   = req->pid;
563     info->hProcess    = req->phandle;
564     info->dwProcessId = (DWORD)req->pid;
565     info->hThread     = req->thandle;
566     info->dwThreadId  = (DWORD)req->tid;
567
568     if (pModule->module32)   /* Win32 process */
569     {
570         IMAGE_OPTIONAL_HEADER *header = &PE_HEADER(pModule->module32)->OptionalHeader;
571         size = header->SizeOfStackReserve;
572         if (header->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI) 
573             pdb->flags |= PDB32_CONSOLE_PROC;
574         alloc_stack16 = TRUE;
575     }
576     else if (!pModule->dos_image) /* Win16 process */
577     {
578         alloc_stack16 = FALSE;
579         size = 0;
580         pdb->flags |= PDB32_WIN16_PROC;
581     }
582     else  /* DOS process */
583     {
584         alloc_stack16 = FALSE;
585         size = 0;
586         pdb->flags |= PDB32_DOS_PROC;
587     }
588
589     /* Create the main thread */
590
591     if (!(teb = THREAD_Create( pdb, fd, flags & CREATE_SUSPENDED, size,
592                                alloc_stack16, tsa, &server_thandle ))) goto error;
593     teb->tid = (void *)info->dwThreadId;
594     teb->startup = PROCESS_Start;
595     fd = -1;  /* don't close it */
596
597     /* Pass module to new process (FIXME: hack) */
598     pdb->module = pModule->self;
599     SYSDEPS_SpawnThread( teb );
600
601     /* Wait until process is initialized (or initialization failed) */
602     handles[0] = info->hProcess;
603     handles[1] = load_done_evt;
604
605     switch ( WaitForMultipleObjects( 2, handles, FALSE, INFINITE ) )
606     {
607     default: 
608         ERR( "WaitForMultipleObjects failed\n" );
609         break;
610
611     case 0:
612         /* Child initialization code returns error condition as exitcode */
613         if ( GetExitCodeProcess( info->hProcess, &exitcode ) )
614             SetLastError( exitcode );
615         goto error;
616
617     case 1:
618         /* Get 16-bit task up and running */
619         if ( pdb->flags & PDB32_WIN16_PROC )
620         {
621             /* Post event to start the task */
622             PostEvent16( pdb->task );
623
624             /* If we ourselves are a 16-bit task, we Yield() directly. */
625             if ( parent->flags & PDB32_WIN16_PROC )
626                 OldYield16();
627         }
628         break;
629     } 
630
631     CloseHandle( load_done_evt );
632     load_done_evt = 0;
633
634     return pdb;
635
636 error:
637     if (load_done_evt) CloseHandle( load_done_evt );
638     if (info->hThread != INVALID_HANDLE_VALUE) CloseHandle( info->hThread );
639     if (info->hProcess != INVALID_HANDLE_VALUE) CloseHandle( info->hProcess );
640     PROCESS_FreePDB( pdb );
641     if (fd != -1) close( fd );
642     return NULL;
643 }
644
645
646 /***********************************************************************
647  *           ExitProcess   (KERNEL32.100)
648  */
649 void WINAPI ExitProcess( DWORD status )
650 {
651     EnterCriticalSection( &PROCESS_Current()->crit_section );
652     MODULE_DllProcessDetach( TRUE, (LPVOID)1 );
653     LeaveCriticalSection( &PROCESS_Current()->crit_section );
654
655     TASK_KillTask( 0 );
656     TerminateProcess( GetCurrentProcess(), status );
657 }
658
659 /***********************************************************************
660  *           ExitProcess16   (KERNEL.466)
661  */
662 void WINAPI ExitProcess16( WORD status )
663 {
664     SYSLEVEL_ReleaseWin16Lock();
665     ExitProcess( status );
666 }
667
668 /******************************************************************************
669  *           TerminateProcess   (KERNEL32.684)
670  */
671 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
672 {
673     struct terminate_process_request *req = get_req_buffer();
674     req->handle    = handle;
675     req->exit_code = exit_code;
676     return !server_call( REQ_TERMINATE_PROCESS );
677 }
678
679
680 /***********************************************************************
681  *           GetProcessDword    (KERNEL32.18) (KERNEL.485)
682  * 'Of course you cannot directly access Windows internal structures'
683  */
684 DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
685 {
686     PDB *process = PROCESS_IdToPDB( dwProcessID );
687     TDB *pTask;
688     DWORD x, y;
689
690     TRACE_(win32)("(%ld, %d)\n", dwProcessID, offset );
691     if ( !process ) return 0;
692
693     switch ( offset ) 
694     {
695     case GPD_APP_COMPAT_FLAGS:
696         pTask = (TDB *)GlobalLock16( process->task );
697         return pTask? pTask->compat_flags : 0;
698
699     case GPD_LOAD_DONE_EVENT:
700         return process->load_done_evt;
701
702     case GPD_HINSTANCE16:
703         pTask = (TDB *)GlobalLock16( process->task );
704         return pTask? pTask->hInstance : 0;
705
706     case GPD_WINDOWS_VERSION:
707         pTask = (TDB *)GlobalLock16( process->task );
708         return pTask? pTask->version : 0;
709
710     case GPD_THDB:
711         if ( process != PROCESS_Current() ) return 0;
712         return (DWORD)NtCurrentTeb() - 0x10 /* FIXME */;
713
714     case GPD_PDB:
715         return (DWORD)process;
716
717     case GPD_STARTF_SHELLDATA: /* return stdoutput handle from startupinfo ??? */
718         return process->env_db->startup_info->hStdOutput;
719
720     case GPD_STARTF_HOTKEY: /* return stdinput handle from startupinfo ??? */
721         return process->env_db->startup_info->hStdInput;
722
723     case GPD_STARTF_SHOWWINDOW:
724         return process->env_db->startup_info->wShowWindow;
725
726     case GPD_STARTF_SIZE:
727         x = process->env_db->startup_info->dwXSize;
728         if ( x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
729         y = process->env_db->startup_info->dwYSize;
730         if ( y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
731         return MAKELONG( x, y );
732
733     case GPD_STARTF_POSITION:
734         x = process->env_db->startup_info->dwX;
735         if ( x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
736         y = process->env_db->startup_info->dwY;
737         if ( y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
738         return MAKELONG( x, y );
739
740     case GPD_STARTF_FLAGS:
741         return process->env_db->startup_info->dwFlags;
742
743     case GPD_PARENT:
744         return process->parent? (DWORD)process->parent->server_pid : 0;
745
746     case GPD_FLAGS:
747         return process->flags;
748
749     case GPD_USERDATA:
750         return process->process_dword;
751
752     default:
753         ERR_(win32)("Unknown offset %d\n", offset );
754         return 0;
755     }
756 }
757
758 /***********************************************************************
759  *           SetProcessDword    (KERNEL.484)
760  * 'Of course you cannot directly access Windows internal structures'
761  */
762 void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
763 {
764     PDB *process = PROCESS_IdToPDB( dwProcessID );
765
766     TRACE_(win32)("(%ld, %d)\n", dwProcessID, offset );
767     if ( !process ) return;
768
769     switch ( offset ) 
770     {
771     case GPD_APP_COMPAT_FLAGS:
772     case GPD_LOAD_DONE_EVENT:
773     case GPD_HINSTANCE16:
774     case GPD_WINDOWS_VERSION:
775     case GPD_THDB:
776     case GPD_PDB:
777     case GPD_STARTF_SHELLDATA:
778     case GPD_STARTF_HOTKEY:
779     case GPD_STARTF_SHOWWINDOW:
780     case GPD_STARTF_SIZE:
781     case GPD_STARTF_POSITION:
782     case GPD_STARTF_FLAGS:
783     case GPD_PARENT:
784     case GPD_FLAGS:
785         ERR_(win32)("Not allowed to modify offset %d\n", offset );
786         break;
787
788     case GPD_USERDATA:
789         process->process_dword = value; 
790         break;
791
792     default:
793         ERR_(win32)("Unknown offset %d\n", offset );
794         break;
795     }
796 }
797
798
799 /***********************************************************************
800  *           GetCurrentProcess   (KERNEL32.198)
801  */
802 HANDLE WINAPI GetCurrentProcess(void)
803 {
804     return CURRENT_PROCESS_PSEUDOHANDLE;
805 }
806
807
808 /*********************************************************************
809  *           OpenProcess   (KERNEL32.543)
810  */
811 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
812 {
813     HANDLE ret = 0;
814     struct open_process_request *req = get_req_buffer();
815
816     req->pid     = (void *)id;
817     req->access  = access;
818     req->inherit = inherit;
819     if (!server_call( REQ_OPEN_PROCESS )) ret = req->handle;
820     return ret;
821 }                             
822
823 /*********************************************************************
824  *           MapProcessHandle   (KERNEL.483)
825  */
826 DWORD WINAPI MapProcessHandle( HANDLE handle )
827 {
828     DWORD ret = 0;
829     struct get_process_info_request *req = get_req_buffer();
830     req->handle = handle;
831     if (!server_call( REQ_GET_PROCESS_INFO )) ret = (DWORD)req->pid;
832     return ret;
833 }
834
835 /***********************************************************************
836  *           GetCurrentProcessId   (KERNEL32.199)
837  */
838 DWORD WINAPI GetCurrentProcessId(void)
839 {
840     return (DWORD)PROCESS_Current()->server_pid;
841 }
842
843
844 /***********************************************************************
845  *           GetThreadLocale    (KERNEL32.295)
846  */
847 LCID WINAPI GetThreadLocale(void)
848 {
849     return PROCESS_Current()->locale;
850 }
851
852
853 /***********************************************************************
854  *           SetPriorityClass   (KERNEL32.503)
855  */
856 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
857 {
858     struct set_process_info_request *req = get_req_buffer();
859     req->handle   = hprocess;
860     req->priority = priorityclass;
861     req->mask     = SET_PROCESS_INFO_PRIORITY;
862     return !server_call( REQ_SET_PROCESS_INFO );
863 }
864
865
866 /***********************************************************************
867  *           GetPriorityClass   (KERNEL32.250)
868  */
869 DWORD WINAPI GetPriorityClass(HANDLE hprocess)
870 {
871     DWORD ret = 0;
872     struct get_process_info_request *req = get_req_buffer();
873     req->handle = hprocess;
874     if (!server_call( REQ_GET_PROCESS_INFO )) ret = req->priority;
875     return ret;
876 }
877
878
879 /***********************************************************************
880  *          SetProcessAffinityMask   (KERNEL32.662)
881  */
882 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD affmask )
883 {
884     struct set_process_info_request *req = get_req_buffer();
885     req->handle   = hProcess;
886     req->affinity = affmask;
887     req->mask     = SET_PROCESS_INFO_AFFINITY;
888     return !server_call( REQ_SET_PROCESS_INFO );
889 }
890
891 /**********************************************************************
892  *          GetProcessAffinityMask    (KERNEL32.373)
893  */
894 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess,
895                                       LPDWORD lpProcessAffinityMask,
896                                       LPDWORD lpSystemAffinityMask )
897 {
898     BOOL ret = FALSE;
899     struct get_process_info_request *req = get_req_buffer();
900     req->handle = hProcess;
901     if (!server_call( REQ_GET_PROCESS_INFO ))
902     {
903         if (lpProcessAffinityMask) *lpProcessAffinityMask = req->process_affinity;
904         if (lpSystemAffinityMask) *lpSystemAffinityMask = req->system_affinity;
905         ret = TRUE;
906     }
907     return ret;
908 }
909
910
911 /***********************************************************************
912  *           GetStdHandle    (KERNEL32.276)
913  */
914 HANDLE WINAPI GetStdHandle( DWORD std_handle )
915 {
916     PDB *pdb = PROCESS_Current();
917
918     switch(std_handle)
919     {
920     case STD_INPUT_HANDLE:  return pdb->env_db->hStdin;
921     case STD_OUTPUT_HANDLE: return pdb->env_db->hStdout;
922     case STD_ERROR_HANDLE:  return pdb->env_db->hStderr;
923     }
924     SetLastError( ERROR_INVALID_PARAMETER );
925     return INVALID_HANDLE_VALUE;
926 }
927
928
929 /***********************************************************************
930  *           SetStdHandle    (KERNEL32.506)
931  */
932 BOOL WINAPI SetStdHandle( DWORD std_handle, HANDLE handle )
933 {
934     PDB *pdb = PROCESS_Current();
935     /* FIXME: should we close the previous handle? */
936     switch(std_handle)
937     {
938     case STD_INPUT_HANDLE:
939         pdb->env_db->hStdin = handle;
940         return TRUE;
941     case STD_OUTPUT_HANDLE:
942         pdb->env_db->hStdout = handle;
943         return TRUE;
944     case STD_ERROR_HANDLE:
945         pdb->env_db->hStderr = handle;
946         return TRUE;
947     }
948     SetLastError( ERROR_INVALID_PARAMETER );
949     return FALSE;
950 }
951
952 /***********************************************************************
953  *           GetProcessVersion    (KERNEL32)
954  */
955 DWORD WINAPI GetProcessVersion( DWORD processid )
956 {
957     TDB *pTask;
958     PDB *pdb = PROCESS_IdToPDB( processid );
959
960     if (!pdb) return 0;
961     if (!(pTask = (TDB *)GlobalLock16( pdb->task ))) return 0;
962     return (pTask->version&0xff) | (((pTask->version >>8) & 0xff)<<16);
963 }
964
965 /***********************************************************************
966  *           GetProcessFlags    (KERNEL32)
967  */
968 DWORD WINAPI GetProcessFlags( DWORD processid )
969 {
970     PDB *pdb = PROCESS_IdToPDB( processid );
971     if (!pdb) return 0;
972     return pdb->flags;
973 }
974
975 /***********************************************************************
976  *              SetProcessWorkingSetSize        [KERNEL32.662]
977  * Sets the min/max working set sizes for a specified process.
978  *
979  * PARAMS
980  *    hProcess [I] Handle to the process of interest
981  *    minset   [I] Specifies minimum working set size
982  *    maxset   [I] Specifies maximum working set size
983  *
984  * RETURNS  STD
985  */
986 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess,DWORD minset,
987                                        DWORD maxset)
988 {
989     FIXME("(0x%08x,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
990     if(( minset == -1) && (maxset == -1)) {
991         /* Trim the working set to zero */
992         /* Swap the process out of physical RAM */
993     }
994     return TRUE;
995 }
996
997 /***********************************************************************
998  *           GetProcessWorkingSetSize    (KERNEL32)
999  */
1000 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess,LPDWORD minset,
1001                                        LPDWORD maxset)
1002 {
1003         FIXME("(0x%08x,%p,%p): stub\n",hProcess,minset,maxset);
1004         /* 32 MB working set size */
1005         if (minset) *minset = 32*1024*1024;
1006         if (maxset) *maxset = 32*1024*1024;
1007         return TRUE;
1008 }
1009
1010 /***********************************************************************
1011  *           SetProcessShutdownParameters    (KERNEL32)
1012  *
1013  * CHANGED - James Sutherland (JamesSutherland@gmx.de)
1014  * Now tracks changes made (but does not act on these changes)
1015  * NOTE: the definition for SHUTDOWN_NORETRY was done on guesswork.
1016  * It really shouldn't be here, but I'll move it when it's been checked!
1017  */
1018 #define SHUTDOWN_NORETRY 1
1019 static unsigned int shutdown_noretry = 0;
1020 static unsigned int shutdown_priority = 0x280L;
1021 BOOL WINAPI SetProcessShutdownParameters(DWORD level,DWORD flags)
1022 {
1023     if (flags & SHUTDOWN_NORETRY)
1024       shutdown_noretry = 1;
1025     else
1026       shutdown_noretry = 0;
1027     if (level > 0x100L && level < 0x3FFL)
1028       shutdown_priority = level;
1029     else
1030       {
1031         ERR("invalid priority level 0x%08lx\n", level);
1032         return FALSE;
1033       }
1034     return TRUE;
1035 }
1036
1037
1038 /***********************************************************************
1039  * GetProcessShutdownParameters                 (KERNEL32)
1040  *
1041  */
1042 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel,
1043                                             LPDWORD lpdwFlags )
1044 {
1045   (*lpdwLevel) = shutdown_priority;
1046   (*lpdwFlags) = (shutdown_noretry * SHUTDOWN_NORETRY);
1047   return TRUE;
1048 }
1049 /***********************************************************************
1050  *           SetProcessPriorityBoost    (KERNEL32)
1051  */
1052 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
1053 {
1054     FIXME("(%d,%d): stub\n",hprocess,disableboost);
1055     /* Say we can do it. I doubt the program will notice that we don't. */
1056     return TRUE;
1057 }
1058
1059
1060 /***********************************************************************
1061  *           ReadProcessMemory                  (KERNEL32)
1062  */
1063 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, DWORD size,
1064                                LPDWORD bytes_read )
1065 {
1066     struct read_process_memory_request *req = get_req_buffer();
1067     unsigned int offset = (unsigned int)addr % sizeof(int);
1068     unsigned int max = server_remaining( req->data );  /* max length in one request */
1069     unsigned int pos;
1070
1071     if (bytes_read) *bytes_read = size;
1072
1073     /* first time, read total length to check for permissions */
1074     req->handle = process;
1075     req->addr   = (char *)addr - offset;
1076     req->len    = (size + offset + sizeof(int) - 1) / sizeof(int);
1077     if (server_call( REQ_READ_PROCESS_MEMORY )) goto error;
1078
1079     if (size <= max - offset)
1080     {
1081         memcpy( buffer, (char *)req->data + offset, size );
1082         return TRUE;
1083     }
1084
1085     /* now take care of the remaining data */
1086     memcpy( buffer, (char *)req->data + offset, max - offset );
1087     pos = max - offset;
1088     size -= pos;
1089     while (size)
1090     {
1091         if (max > size) max = size;
1092         req->handle = process;
1093         req->addr   = (char *)addr + pos;
1094         req->len    = (max + sizeof(int) - 1) / sizeof(int);
1095         if (server_call( REQ_READ_PROCESS_MEMORY )) goto error;
1096         memcpy( (char *)buffer + pos, (char *)req->data, max );
1097         size -= max;
1098         pos += max;
1099     }
1100     return TRUE;
1101
1102  error:
1103     if (bytes_read) *bytes_read = 0;
1104     return FALSE;
1105 }
1106
1107
1108 /***********************************************************************
1109  *           WriteProcessMemory                 (KERNEL32)
1110  */
1111 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPVOID buffer, DWORD size,
1112                                 LPDWORD bytes_written )
1113 {
1114     unsigned int first_offset, last_offset;
1115     struct write_process_memory_request *req = get_req_buffer();
1116     unsigned int max = server_remaining( req->data );  /* max length in one request */
1117     unsigned int pos, last_mask;
1118
1119     if (!size)
1120     {
1121         SetLastError( ERROR_INVALID_PARAMETER );
1122         return FALSE;
1123     }
1124     if (bytes_written) *bytes_written = size;
1125
1126     /* compute the mask for the first int */
1127     req->first_mask = ~0;
1128     first_offset = (unsigned int)addr % sizeof(int);
1129     memset( &req->first_mask, 0, first_offset );
1130
1131     /* compute the mask for the last int */
1132     last_offset = (size + first_offset) % sizeof(int);
1133     last_mask = 0;
1134     memset( &last_mask, 0xff, last_offset ? last_offset : sizeof(int) );
1135
1136     req->handle = process;
1137     req->addr = (char *)addr - first_offset;
1138     /* for the first request, use the total length */
1139     req->len = (size + first_offset + sizeof(int) - 1) / sizeof(int);
1140
1141     if (size + first_offset < max)  /* we can do it in one round */
1142     {
1143         memcpy( (char *)req->data + first_offset, buffer, size );
1144         req->last_mask = last_mask;
1145         if (server_call( REQ_WRITE_PROCESS_MEMORY )) goto error;
1146         return TRUE;
1147     }
1148
1149     /* needs multiple server calls */
1150
1151     memcpy( (char *)req->data + first_offset, buffer, max - first_offset );
1152     req->last_mask = ~0;
1153     if (server_call( REQ_WRITE_PROCESS_MEMORY )) goto error;
1154     pos = max - first_offset;
1155     size -= pos;
1156     while (size)
1157     {
1158         if (size <= max)  /* last one */
1159         {
1160             req->last_mask = last_mask;
1161             max = size;
1162         }
1163         req->handle = process;
1164         req->addr = (char *)addr + pos;
1165         req->len = (max + sizeof(int) - 1) / sizeof(int);
1166         req->first_mask = ~0;
1167         memcpy( req->data, (char *) buffer + pos, max );
1168         if (server_call( REQ_WRITE_PROCESS_MEMORY )) goto error;
1169         pos += max;
1170         size -= max;
1171     }
1172     return TRUE;
1173
1174  error:
1175     if (bytes_written) *bytes_written = 0;
1176     return FALSE;
1177
1178 }
1179
1180
1181 /***********************************************************************
1182  *           RegisterServiceProcess             (KERNEL, KERNEL32)
1183  *
1184  * A service process calls this function to ensure that it continues to run
1185  * even after a user logged off.
1186  */
1187 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
1188 {
1189         /* I don't think that Wine needs to do anything in that function */
1190         return 1; /* success */
1191 }
1192
1193 /***********************************************************************
1194  * GetExitCodeProcess [KERNEL32.325]
1195  *
1196  * Gets termination status of specified process
1197  * 
1198  * RETURNS
1199  *   Success: TRUE
1200  *   Failure: FALSE
1201  */
1202 BOOL WINAPI GetExitCodeProcess(
1203     HANDLE hProcess,  /* [I] handle to the process */
1204     LPDWORD lpExitCode) /* [O] address to receive termination status */
1205 {
1206     BOOL ret = FALSE;
1207     struct get_process_info_request *req = get_req_buffer();
1208     req->handle = hProcess;
1209     if (!server_call( REQ_GET_PROCESS_INFO ))
1210     {
1211         if (lpExitCode) *lpExitCode = req->exit_code;
1212         ret = TRUE;
1213     }
1214     return ret;
1215 }
1216
1217
1218 /***********************************************************************
1219  *           SetErrorMode   (KERNEL32.486)
1220  */
1221 UINT WINAPI SetErrorMode( UINT mode )
1222 {
1223     UINT old = PROCESS_Current()->error_mode;
1224     PROCESS_Current()->error_mode = mode;
1225     return old;
1226 }