wined3d: Volume textures fix.
[wine/hacks.git] / server / process.c
blob3e5ef97f161f1d272fad8e75d7bccab7c0285d14
1 /*
2 * Server-side process management
4 * Copyright (C) 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
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <limits.h>
26 #include <signal.h>
27 #include <string.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <sys/time.h>
32 #ifdef HAVE_SYS_SOCKET_H
33 # include <sys/socket.h>
34 #endif
35 #include <unistd.h>
36 #ifdef HAVE_POLL_H
37 #include <poll.h>
38 #endif
40 #include "ntstatus.h"
41 #define WIN32_NO_STATUS
42 #include "winternl.h"
44 #include "file.h"
45 #include "handle.h"
46 #include "process.h"
47 #include "thread.h"
48 #include "request.h"
49 #include "console.h"
50 #include "user.h"
51 #include "security.h"
53 /* process structure */
55 static struct list process_list = LIST_INIT(process_list);
56 static int running_processes;
58 /* process operations */
60 static void process_dump( struct object *obj, int verbose );
61 static int process_signaled( struct object *obj, struct thread *thread );
62 static unsigned int process_map_access( struct object *obj, unsigned int access );
63 static void process_poll_event( struct fd *fd, int event );
64 static void process_destroy( struct object *obj );
66 static const struct object_ops process_ops =
68 sizeof(struct process), /* size */
69 process_dump, /* dump */
70 add_queue, /* add_queue */
71 remove_queue, /* remove_queue */
72 process_signaled, /* signaled */
73 no_satisfied, /* satisfied */
74 no_signal, /* signal */
75 no_get_fd, /* get_fd */
76 process_map_access, /* map_access */
77 no_lookup_name, /* lookup_name */
78 no_close_handle, /* close_handle */
79 process_destroy /* destroy */
82 static const struct fd_ops process_fd_ops =
84 NULL, /* get_poll_events */
85 process_poll_event, /* poll_event */
86 no_flush, /* flush */
87 no_get_file_info, /* get_file_info */
88 no_queue_async, /* queue_async */
89 no_cancel_async /* cancel async */
92 /* process startup info */
94 struct startup_info
96 struct object obj; /* object header */
97 obj_handle_t hstdin; /* handle for stdin */
98 obj_handle_t hstdout; /* handle for stdout */
99 obj_handle_t hstderr; /* handle for stderr */
100 struct file *exe_file; /* file handle for main exe */
101 struct process *process; /* created process */
102 data_size_t data_size; /* size of startup data */
103 void *data; /* data for startup info */
106 static void startup_info_dump( struct object *obj, int verbose );
107 static int startup_info_signaled( struct object *obj, struct thread *thread );
108 static void startup_info_destroy( struct object *obj );
110 static const struct object_ops startup_info_ops =
112 sizeof(struct startup_info), /* size */
113 startup_info_dump, /* dump */
114 add_queue, /* add_queue */
115 remove_queue, /* remove_queue */
116 startup_info_signaled, /* signaled */
117 no_satisfied, /* satisfied */
118 no_signal, /* signal */
119 no_get_fd, /* get_fd */
120 no_map_access, /* map_access */
121 no_lookup_name, /* lookup_name */
122 no_close_handle, /* close_handle */
123 startup_info_destroy /* destroy */
127 struct ptid_entry
129 void *ptr; /* entry ptr */
130 unsigned int next; /* next free entry */
133 static struct ptid_entry *ptid_entries; /* array of ptid entries */
134 static unsigned int used_ptid_entries; /* number of entries in use */
135 static unsigned int alloc_ptid_entries; /* number of allocated entries */
136 static unsigned int next_free_ptid; /* next free entry */
137 static unsigned int last_free_ptid; /* last free entry */
139 #define PTID_OFFSET 8 /* offset for first ptid value */
141 /* allocate a new process or thread id */
142 unsigned int alloc_ptid( void *ptr )
144 struct ptid_entry *entry;
145 unsigned int id;
147 if (used_ptid_entries < alloc_ptid_entries)
149 id = used_ptid_entries + PTID_OFFSET;
150 entry = &ptid_entries[used_ptid_entries++];
152 else if (next_free_ptid)
154 id = next_free_ptid;
155 entry = &ptid_entries[id - PTID_OFFSET];
156 if (!(next_free_ptid = entry->next)) last_free_ptid = 0;
158 else /* need to grow the array */
160 unsigned int count = alloc_ptid_entries + (alloc_ptid_entries / 2);
161 if (!count) count = 64;
162 if (!(entry = realloc( ptid_entries, count * sizeof(*entry) )))
164 set_error( STATUS_NO_MEMORY );
165 return 0;
167 ptid_entries = entry;
168 alloc_ptid_entries = count;
169 id = used_ptid_entries + PTID_OFFSET;
170 entry = &ptid_entries[used_ptid_entries++];
173 entry->ptr = ptr;
174 return id;
177 /* free a process or thread id */
178 void free_ptid( unsigned int id )
180 struct ptid_entry *entry = &ptid_entries[id - PTID_OFFSET];
182 entry->ptr = NULL;
183 entry->next = 0;
185 /* append to end of free list so that we don't reuse it too early */
186 if (last_free_ptid) ptid_entries[last_free_ptid - PTID_OFFSET].next = id;
187 else next_free_ptid = id;
189 last_free_ptid = id;
192 /* retrieve the pointer corresponding to a process or thread id */
193 void *get_ptid_entry( unsigned int id )
195 if (id < PTID_OFFSET) return NULL;
196 if (id - PTID_OFFSET >= used_ptid_entries) return NULL;
197 return ptid_entries[id - PTID_OFFSET].ptr;
200 /* return the main thread of the process */
201 struct thread *get_process_first_thread( struct process *process )
203 struct list *ptr = list_head( &process->thread_list );
204 if (!ptr) return NULL;
205 return LIST_ENTRY( ptr, struct thread, proc_entry );
208 /* set the state of the process startup info */
209 static void set_process_startup_state( struct process *process, enum startup_state state )
211 if (process->startup_state == STARTUP_IN_PROGRESS) process->startup_state = state;
212 if (process->startup_info)
214 wake_up( &process->startup_info->obj, 0 );
215 release_object( process->startup_info );
216 process->startup_info = NULL;
220 /* create a new process and its main thread */
221 /* if the function fails the fd is closed */
222 struct thread *create_process( int fd, struct thread *parent_thread, int inherit_all )
224 struct process *process;
225 struct thread *thread = NULL;
226 int request_pipe[2];
228 if (!(process = alloc_object( &process_ops )))
230 close( fd );
231 goto error;
233 process->parent = NULL;
234 process->debugger = NULL;
235 process->handles = NULL;
236 process->msg_fd = NULL;
237 process->exit_code = STILL_ACTIVE;
238 process->running_threads = 0;
239 process->priority = PROCESS_PRIOCLASS_NORMAL;
240 process->affinity = 1;
241 process->suspend = 0;
242 process->create_flags = 0;
243 process->console = NULL;
244 process->startup_state = STARTUP_IN_PROGRESS;
245 process->startup_info = NULL;
246 process->idle_event = NULL;
247 process->queue = NULL;
248 process->peb = NULL;
249 process->ldt_copy = NULL;
250 process->winstation = 0;
251 process->desktop = 0;
252 process->token = token_create_admin();
253 list_init( &process->thread_list );
254 list_init( &process->locks );
255 list_init( &process->classes );
256 list_init( &process->dlls );
258 gettimeofday( &process->start_time, NULL );
259 process->end_time.tv_sec = process->end_time.tv_usec = 0;
260 list_add_head( &process_list, &process->entry );
262 if (!(process->id = process->group_id = alloc_ptid( process )))
264 close( fd );
265 goto error;
267 if (!(process->msg_fd = create_anonymous_fd( &process_fd_ops, fd, &process->obj ))) goto error;
269 /* create the handle table */
270 if (!parent_thread) process->handles = alloc_handle_table( process, 0 );
271 else
273 struct process *parent = parent_thread->process;
274 process->parent = (struct process *)grab_object( parent );
275 process->handles = inherit_all ? copy_handle_table( process, parent )
276 : alloc_handle_table( process, 0 );
278 if (!process->handles) goto error;
280 /* create the main thread */
281 if (pipe( request_pipe ) == -1)
283 file_set_error();
284 goto error;
286 if (send_client_fd( process, request_pipe[1], 0 ) == -1)
288 close( request_pipe[0] );
289 close( request_pipe[1] );
290 goto error;
292 close( request_pipe[1] );
293 if (!(thread = create_thread( request_pipe[0], process ))) goto error;
295 set_fd_events( process->msg_fd, POLLIN ); /* start listening to events */
296 release_object( process );
297 return thread;
299 error:
300 if (process) release_object( process );
301 /* if we failed to start our first process, close everything down */
302 if (!running_processes) close_master_socket();
303 return NULL;
306 /* initialize the current process and fill in the request */
307 data_size_t init_process( struct thread *thread )
309 struct process *process = thread->process;
310 struct startup_info *info = process->startup_info;
312 if (!info) return 0;
313 return info->data_size;
316 /* destroy a process when its refcount is 0 */
317 static void process_destroy( struct object *obj )
319 struct process *process = (struct process *)obj;
320 assert( obj->ops == &process_ops );
322 /* we can't have a thread remaining */
323 assert( list_empty( &process->thread_list ));
325 set_process_startup_state( process, STARTUP_ABORTED );
326 if (process->console) release_object( process->console );
327 if (process->parent) release_object( process->parent );
328 if (process->msg_fd) release_object( process->msg_fd );
329 list_remove( &process->entry );
330 if (process->idle_event) release_object( process->idle_event );
331 if (process->queue) release_object( process->queue );
332 if (process->id) free_ptid( process->id );
333 if (process->token) release_object( process->token );
336 /* dump a process on stdout for debugging purposes */
337 static void process_dump( struct object *obj, int verbose )
339 struct process *process = (struct process *)obj;
340 assert( obj->ops == &process_ops );
342 fprintf( stderr, "Process id=%04x handles=%p\n", process->id, process->handles );
345 static int process_signaled( struct object *obj, struct thread *thread )
347 struct process *process = (struct process *)obj;
348 return !process->running_threads;
351 static unsigned int process_map_access( struct object *obj, unsigned int access )
353 if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SYNCHRONIZE;
354 if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE | SYNCHRONIZE;
355 if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
356 if (access & GENERIC_ALL) access |= PROCESS_ALL_ACCESS;
357 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
360 static void process_poll_event( struct fd *fd, int event )
362 struct process *process = get_fd_user( fd );
363 assert( process->obj.ops == &process_ops );
365 if (event & (POLLERR | POLLHUP)) set_fd_events( fd, -1 );
366 else if (event & POLLIN) receive_fd( process );
369 static void startup_info_destroy( struct object *obj )
371 struct startup_info *info = (struct startup_info *)obj;
372 assert( obj->ops == &startup_info_ops );
373 if (info->data) free( info->data );
374 if (info->exe_file) release_object( info->exe_file );
375 if (info->process) release_object( info->process );
378 static void startup_info_dump( struct object *obj, int verbose )
380 struct startup_info *info = (struct startup_info *)obj;
381 assert( obj->ops == &startup_info_ops );
383 fprintf( stderr, "Startup info in=%p out=%p err=%p\n",
384 info->hstdin, info->hstdout, info->hstderr );
387 static int startup_info_signaled( struct object *obj, struct thread *thread )
389 struct startup_info *info = (struct startup_info *)obj;
390 return info->process && info->process->startup_state != STARTUP_IN_PROGRESS;
393 /* get a process from an id (and increment the refcount) */
394 struct process *get_process_from_id( process_id_t id )
396 struct object *obj = get_ptid_entry( id );
398 if (obj && obj->ops == &process_ops) return (struct process *)grab_object( obj );
399 set_error( STATUS_INVALID_PARAMETER );
400 return NULL;
403 /* get a process from a handle (and increment the refcount) */
404 struct process *get_process_from_handle( obj_handle_t handle, unsigned int access )
406 return (struct process *)get_handle_obj( current->process, handle,
407 access, &process_ops );
410 /* find a dll from its base address */
411 static inline struct process_dll *find_process_dll( struct process *process, void *base )
413 struct process_dll *dll;
415 LIST_FOR_EACH_ENTRY( dll, &process->dlls, struct process_dll, entry )
417 if (dll->base == base) return dll;
419 return NULL;
422 /* add a dll to a process list */
423 static struct process_dll *process_load_dll( struct process *process, struct file *file,
424 void *base, const WCHAR *filename, data_size_t name_len )
426 struct process_dll *dll;
428 /* make sure we don't already have one with the same base address */
429 if (find_process_dll( process, base ))
431 set_error( STATUS_INVALID_PARAMETER );
432 return NULL;
435 if ((dll = mem_alloc( sizeof(*dll) )))
437 dll->file = NULL;
438 dll->base = base;
439 dll->filename = NULL;
440 dll->namelen = name_len;
441 if (name_len && !(dll->filename = memdup( filename, name_len )))
443 free( dll );
444 return NULL;
446 if (file) dll->file = (struct file *)grab_object( file );
447 list_add_tail( &process->dlls, &dll->entry );
449 return dll;
452 /* remove a dll from a process list */
453 static void process_unload_dll( struct process *process, void *base )
455 struct process_dll *dll = find_process_dll( process, base );
457 if (dll && (&dll->entry != list_head( &process->dlls ))) /* main exe can't be unloaded */
459 if (dll->file) release_object( dll->file );
460 if (dll->filename) free( dll->filename );
461 list_remove( &dll->entry );
462 free( dll );
463 generate_debug_event( current, UNLOAD_DLL_DEBUG_EVENT, base );
465 else set_error( STATUS_INVALID_PARAMETER );
468 /* kill all processes */
469 void kill_all_processes( struct process *skip, int exit_code )
471 for (;;)
473 struct process *process;
475 LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
477 if (process == skip) continue;
478 if (process->running_threads) break;
480 if (&process->entry == &process_list) break; /* no process found */
481 kill_process( process, NULL, exit_code );
485 /* kill all processes being attached to a console renderer */
486 void kill_console_processes( struct thread *renderer, int exit_code )
488 for (;;) /* restart from the beginning of the list every time */
490 struct process *process;
492 /* find the first process being attached to 'renderer' and still running */
493 LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
495 if (process == renderer->process) continue;
496 if (!process->running_threads) continue;
497 if (process->console && process->console->renderer == renderer) break;
499 if (&process->entry == &process_list) break; /* no process found */
500 kill_process( process, NULL, exit_code );
504 /* a process has been killed (i.e. its last thread died) */
505 static void process_killed( struct process *process )
507 struct handle_table *handles;
508 struct list *ptr;
510 assert( list_empty( &process->thread_list ));
511 gettimeofday( &process->end_time, NULL );
512 close_process_desktop( process );
513 handles = process->handles;
514 process->handles = NULL;
515 if (handles) release_object( handles );
517 /* close the console attached to this process, if any */
518 free_console( process );
520 while ((ptr = list_head( &process->dlls )))
522 struct process_dll *dll = LIST_ENTRY( ptr, struct process_dll, entry );
523 if (dll->file) release_object( dll->file );
524 if (dll->filename) free( dll->filename );
525 list_remove( &dll->entry );
526 free( dll );
528 destroy_process_classes( process );
529 remove_process_locks( process );
530 set_process_startup_state( process, STARTUP_ABORTED );
531 wake_up( &process->obj, 0 );
532 if (!--running_processes) close_master_socket();
535 /* add a thread to a process running threads list */
536 void add_process_thread( struct process *process, struct thread *thread )
538 list_add_tail( &process->thread_list, &thread->proc_entry );
539 if (!process->running_threads++) running_processes++;
540 grab_object( thread );
543 /* remove a thread from a process running threads list */
544 void remove_process_thread( struct process *process, struct thread *thread )
546 assert( process->running_threads > 0 );
547 assert( !list_empty( &process->thread_list ));
549 list_remove( &thread->proc_entry );
551 if (!--process->running_threads)
553 /* we have removed the last running thread, exit the process */
554 process->exit_code = thread->exit_code;
555 generate_debug_event( thread, EXIT_PROCESS_DEBUG_EVENT, process );
556 process_killed( process );
558 else generate_debug_event( thread, EXIT_THREAD_DEBUG_EVENT, thread );
559 release_object( thread );
562 /* suspend all the threads of a process */
563 void suspend_process( struct process *process )
565 if (!process->suspend++)
567 struct list *ptr, *next;
569 LIST_FOR_EACH_SAFE( ptr, next, &process->thread_list )
571 struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
572 if (!thread->suspend) stop_thread( thread );
577 /* resume all the threads of a process */
578 void resume_process( struct process *process )
580 assert (process->suspend > 0);
581 if (!--process->suspend)
583 struct list *ptr, *next;
585 LIST_FOR_EACH_SAFE( ptr, next, &process->thread_list )
587 struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
588 if (!thread->suspend) wake_thread( thread );
593 /* kill a process on the spot */
594 void kill_process( struct process *process, struct thread *skip, int exit_code )
596 struct list *ptr, *next;
598 LIST_FOR_EACH_SAFE( ptr, next, &process->thread_list )
600 struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
602 if (exit_code) thread->exit_code = exit_code;
603 if (thread != skip) kill_thread( thread, 1 );
607 /* kill all processes being debugged by a given thread */
608 void kill_debugged_processes( struct thread *debugger, int exit_code )
610 for (;;) /* restart from the beginning of the list every time */
612 struct process *process;
614 /* find the first process being debugged by 'debugger' and still running */
615 LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
617 if (!process->running_threads) continue;
618 if (process->debugger == debugger) break;
620 if (&process->entry == &process_list) break; /* no process found */
621 process->debugger = NULL;
622 kill_process( process, NULL, exit_code );
627 /* trigger a breakpoint event in a given process */
628 void break_process( struct process *process )
630 struct thread *thread;
632 suspend_process( process );
634 LIST_FOR_EACH_ENTRY( thread, &process->thread_list, struct thread, proc_entry )
636 if (thread->context) /* inside an exception event already */
638 break_thread( thread );
639 goto done;
642 if ((thread = get_process_first_thread( process ))) thread->debug_break = 1;
643 else set_error( STATUS_ACCESS_DENIED );
644 done:
645 resume_process( process );
649 /* detach a debugger from all its debuggees */
650 void detach_debugged_processes( struct thread *debugger )
652 struct process *process;
654 LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
656 if (process->debugger == debugger && process->running_threads)
658 debugger_detach( process, debugger );
664 void enum_processes( int (*cb)(struct process*, void*), void *user )
666 struct list *ptr, *next;
668 LIST_FOR_EACH_SAFE( ptr, next, &process_list )
670 struct process *process = LIST_ENTRY( ptr, struct process, entry );
671 if ((cb)(process, user)) break;
675 /* set the debugged flag in the process PEB */
676 int set_process_debug_flag( struct process *process, int flag )
678 char data = (flag != 0);
680 /* BeingDebugged flag is the byte at offset 2 in the PEB */
681 return write_process_memory( process, (char *)process->peb + 2, 1, &data );
684 /* take a snapshot of currently running processes */
685 struct process_snapshot *process_snap( int *count )
687 struct process_snapshot *snapshot, *ptr;
688 struct process *process;
689 if (!running_processes) return NULL;
690 if (!(snapshot = mem_alloc( sizeof(*snapshot) * running_processes )))
691 return NULL;
692 ptr = snapshot;
693 LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
695 if (!process->running_threads) continue;
696 ptr->process = process;
697 ptr->threads = process->running_threads;
698 ptr->count = process->obj.refcount;
699 ptr->priority = process->priority;
700 ptr->handles = get_handle_table_count(process);
701 grab_object( process );
702 ptr++;
704 *count = running_processes;
705 return snapshot;
708 /* take a snapshot of the modules of a process */
709 struct module_snapshot *module_snap( struct process *process, int *count )
711 struct module_snapshot *snapshot, *ptr;
712 struct process_dll *dll;
713 int total = 0;
715 LIST_FOR_EACH_ENTRY( dll, &process->dlls, struct process_dll, entry ) total++;
716 if (!(snapshot = mem_alloc( sizeof(*snapshot) * total ))) return NULL;
718 ptr = snapshot;
719 LIST_FOR_EACH_ENTRY( dll, &process->dlls, struct process_dll, entry )
721 ptr->base = dll->base;
722 ptr->size = dll->size;
723 ptr->namelen = dll->namelen;
724 ptr->filename = memdup( dll->filename, dll->namelen );
725 ptr++;
727 *count = total;
728 return snapshot;
732 /* create a new process */
733 DECL_HANDLER(new_process)
735 struct startup_info *info;
736 struct thread *thread;
737 struct process *process;
738 struct process *parent = current->process;
739 int socket_fd = thread_get_inflight_fd( current, req->socket_fd );
741 if (socket_fd == -1)
743 set_error( STATUS_INVALID_PARAMETER );
744 return;
746 if (fcntl( socket_fd, F_SETFL, O_NONBLOCK ) == -1)
748 set_error( STATUS_INVALID_HANDLE );
749 close( socket_fd );
750 return;
753 /* build the startup info for a new process */
754 if (!(info = alloc_object( &startup_info_ops ))) return;
755 info->hstdin = req->hstdin;
756 info->hstdout = req->hstdout;
757 info->hstderr = req->hstderr;
758 info->exe_file = NULL;
759 info->process = NULL;
760 info->data_size = get_req_data_size();
761 info->data = NULL;
763 if (req->exe_file &&
764 !(info->exe_file = get_file_obj( current->process, req->exe_file, FILE_READ_DATA )))
765 goto done;
767 if (!(info->data = memdup( get_req_data(), info->data_size ))) goto done;
769 if (!(thread = create_process( socket_fd, current, req->inherit_all ))) goto done;
770 process = thread->process;
771 process->create_flags = req->create_flags;
772 process->startup_info = (struct startup_info *)grab_object( info );
774 /* connect to the window station */
775 connect_process_winstation( process, current );
777 /* thread will be actually suspended in init_done */
778 if (req->create_flags & CREATE_SUSPENDED) thread->suspend++;
780 /* set the process console */
781 if (!(req->create_flags & (DETACHED_PROCESS | CREATE_NEW_CONSOLE)))
783 /* FIXME: some better error checking should be done...
784 * like if hConOut and hConIn are console handles, then they should be on the same
785 * physical console
787 inherit_console( current, process, req->inherit_all ? req->hstdin : 0 );
790 if (!req->inherit_all && !(req->create_flags & CREATE_NEW_CONSOLE))
792 info->hstdin = duplicate_handle( parent, req->hstdin, process,
793 0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
794 info->hstdout = duplicate_handle( parent, req->hstdout, process,
795 0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
796 info->hstderr = duplicate_handle( parent, req->hstderr, process,
797 0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
798 /* some handles above may have been invalid; this is not an error */
799 if (get_error() == STATUS_INVALID_HANDLE ||
800 get_error() == STATUS_OBJECT_TYPE_MISMATCH) clear_error();
803 /* attach to the debugger if requested */
804 if (req->create_flags & (DEBUG_PROCESS | DEBUG_ONLY_THIS_PROCESS))
805 set_process_debugger( process, current );
806 else if (parent->debugger && !(parent->create_flags & DEBUG_ONLY_THIS_PROCESS))
807 set_process_debugger( process, parent->debugger );
809 if (!(req->create_flags & CREATE_NEW_PROCESS_GROUP))
810 process->group_id = parent->group_id;
812 info->process = (struct process *)grab_object( process );
813 reply->info = alloc_handle( current->process, info, SYNCHRONIZE, 0 );
814 reply->pid = get_process_id( process );
815 reply->tid = get_thread_id( thread );
816 reply->phandle = alloc_handle( parent, process, req->process_access, req->process_attr );
817 reply->thandle = alloc_handle( parent, thread, req->thread_access, req->thread_attr );
819 done:
820 release_object( info );
823 /* Retrieve information about a newly started process */
824 DECL_HANDLER(get_new_process_info)
826 struct startup_info *info;
828 if ((info = (struct startup_info *)get_handle_obj( current->process, req->info,
829 0, &startup_info_ops )))
831 reply->success = is_process_init_done( info->process );
832 reply->exit_code = info->process->exit_code;
833 release_object( info );
837 /* Retrieve the new process startup info */
838 DECL_HANDLER(get_startup_info)
840 struct process *process = current->process;
841 struct startup_info *info = process->startup_info;
842 data_size_t size;
844 if (!info) return;
846 if (info->exe_file &&
847 !(reply->exe_file = alloc_handle( process, info->exe_file, GENERIC_READ, 0 ))) return;
849 reply->hstdin = info->hstdin;
850 reply->hstdout = info->hstdout;
851 reply->hstderr = info->hstderr;
853 /* we return the data directly without making a copy so this can only be called once */
854 size = info->data_size;
855 if (size > get_reply_max_size()) size = get_reply_max_size();
856 set_reply_data_ptr( info->data, size );
857 info->data = NULL;
858 info->data_size = 0;
861 /* signal the end of the process initialization */
862 DECL_HANDLER(init_process_done)
864 struct process_dll *dll;
865 struct process *process = current->process;
867 if (is_process_init_done(process))
869 set_error( STATUS_INVALID_PARAMETER );
870 return;
872 if (!(dll = find_process_dll( process, req->module )))
874 set_error( STATUS_DLL_NOT_FOUND );
875 return;
878 /* main exe is the first in the dll list */
879 list_remove( &dll->entry );
880 list_add_head( &process->dlls, &dll->entry );
882 generate_startup_debug_events( process, req->entry );
883 set_process_startup_state( process, STARTUP_DONE );
885 if (req->gui) process->idle_event = create_event( NULL, NULL, 0, 1, 0 );
886 if (current->suspend + process->suspend > 0) stop_thread( current );
887 if (process->debugger) set_process_debug_flag( process, 1 );
890 /* open a handle to a process */
891 DECL_HANDLER(open_process)
893 struct process *process = get_process_from_id( req->pid );
894 reply->handle = 0;
895 if (process)
897 reply->handle = alloc_handle( current->process, process, req->access, req->attributes );
898 release_object( process );
902 /* terminate a process */
903 DECL_HANDLER(terminate_process)
905 struct process *process;
907 if ((process = get_process_from_handle( req->handle, PROCESS_TERMINATE )))
909 reply->self = (current->process == process);
910 kill_process( process, current, req->exit_code );
911 release_object( process );
915 /* fetch information about a process */
916 DECL_HANDLER(get_process_info)
918 struct process *process;
920 if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
922 reply->pid = get_process_id( process );
923 reply->ppid = process->parent ? get_process_id( process->parent ) : 0;
924 reply->exit_code = process->exit_code;
925 reply->priority = process->priority;
926 reply->affinity = process->affinity;
927 reply->peb = process->peb;
928 reply->start_time.sec = process->start_time.tv_sec;
929 reply->start_time.usec = process->start_time.tv_usec;
930 reply->end_time.sec = process->end_time.tv_sec;
931 reply->end_time.usec = process->end_time.tv_usec;
932 release_object( process );
936 /* set information about a process */
937 DECL_HANDLER(set_process_info)
939 struct process *process;
941 if ((process = get_process_from_handle( req->handle, PROCESS_SET_INFORMATION )))
943 if (req->mask & SET_PROCESS_INFO_PRIORITY) process->priority = req->priority;
944 if (req->mask & SET_PROCESS_INFO_AFFINITY)
946 if (req->affinity != 1) set_error( STATUS_INVALID_PARAMETER );
947 else process->affinity = req->affinity;
949 release_object( process );
953 /* read data from a process address space */
954 DECL_HANDLER(read_process_memory)
956 struct process *process;
957 data_size_t len = get_reply_max_size();
959 if (!(process = get_process_from_handle( req->handle, PROCESS_VM_READ ))) return;
961 if (len)
963 char *buffer = mem_alloc( len );
964 if (buffer)
966 if (read_process_memory( process, req->addr, len, buffer ))
967 set_reply_data_ptr( buffer, len );
968 else
969 free( buffer );
972 release_object( process );
975 /* write data to a process address space */
976 DECL_HANDLER(write_process_memory)
978 struct process *process;
980 if ((process = get_process_from_handle( req->handle, PROCESS_VM_WRITE )))
982 data_size_t len = get_req_data_size();
983 if (len) write_process_memory( process, req->addr, len, get_req_data() );
984 else set_error( STATUS_INVALID_PARAMETER );
985 release_object( process );
989 /* notify the server that a dll has been loaded */
990 DECL_HANDLER(load_dll)
992 struct process_dll *dll;
993 struct file *file = NULL;
995 if (req->handle && !(file = get_file_obj( current->process, req->handle, FILE_READ_DATA )))
996 return;
998 if ((dll = process_load_dll( current->process, file, req->base,
999 get_req_data(), get_req_data_size() )))
1001 dll->size = req->size;
1002 dll->dbg_offset = req->dbg_offset;
1003 dll->dbg_size = req->dbg_size;
1004 dll->name = req->name;
1005 /* only generate event if initialization is done */
1006 if (is_process_init_done( current->process ))
1007 generate_debug_event( current, LOAD_DLL_DEBUG_EVENT, dll );
1009 if (file) release_object( file );
1012 /* notify the server that a dll is being unloaded */
1013 DECL_HANDLER(unload_dll)
1015 process_unload_dll( current->process, req->base );
1018 /* retrieve information about a module in a process */
1019 DECL_HANDLER(get_dll_info)
1021 struct process *process;
1023 if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
1025 struct process_dll *dll = find_process_dll( process, req->base_address );
1027 if (dll)
1029 reply->size = dll->size;
1030 reply->entry_point = NULL; /* FIXME */
1031 if (dll->filename)
1033 data_size_t len = min( dll->namelen, get_reply_max_size() );
1034 set_reply_data( dll->filename, len );
1037 else
1038 set_error( STATUS_DLL_NOT_FOUND );
1040 release_object( process );
1044 /* retrieve the process idle event */
1045 DECL_HANDLER(get_process_idle_event)
1047 struct process *process;
1049 reply->event = 0;
1050 if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
1052 if (process->idle_event && process != current->process)
1053 reply->event = alloc_handle( current->process, process->idle_event,
1054 EVENT_ALL_ACCESS, 0 );
1055 release_object( process );