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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/port.h"
32 #ifdef HAVE_SYS_SOCKET_H
33 # include <sys/socket.h>
41 #define WIN32_NO_STATUS
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 void process_poll_event( struct fd
*fd
, int event
);
63 static void process_destroy( struct object
*obj
);
65 static const struct object_ops process_ops
=
67 sizeof(struct process
), /* size */
68 process_dump
, /* dump */
69 add_queue
, /* add_queue */
70 remove_queue
, /* remove_queue */
71 process_signaled
, /* signaled */
72 no_satisfied
, /* satisfied */
73 no_signal
, /* signal */
74 no_get_fd
, /* get_fd */
75 no_lookup_name
, /* lookup_name */
76 no_close_handle
, /* close_handle */
77 process_destroy
/* destroy */
80 static const struct fd_ops process_fd_ops
=
82 NULL
, /* get_poll_events */
83 process_poll_event
, /* poll_event */
85 no_get_file_info
, /* get_file_info */
86 no_queue_async
, /* queue_async */
87 no_cancel_async
/* cancel async */
90 /* process startup info */
94 struct object obj
; /* object header */
95 struct list entry
; /* entry in list of startup infos */
96 int inherit_all
; /* inherit all handles from parent */
97 unsigned int create_flags
; /* creation flags */
98 int unix_pid
; /* Unix pid of new process */
99 obj_handle_t hstdin
; /* handle for stdin */
100 obj_handle_t hstdout
; /* handle for stdout */
101 obj_handle_t hstderr
; /* handle for stderr */
102 struct file
*exe_file
; /* file handle for main exe */
103 struct thread
*owner
; /* owner thread (the one that created the new process) */
104 struct process
*process
; /* created process */
105 struct thread
*thread
; /* created thread */
106 size_t data_size
; /* size of startup data */
107 void *data
; /* data for startup info */
110 static void startup_info_dump( struct object
*obj
, int verbose
);
111 static int startup_info_signaled( struct object
*obj
, struct thread
*thread
);
112 static void startup_info_destroy( struct object
*obj
);
114 static const struct object_ops startup_info_ops
=
116 sizeof(struct startup_info
), /* size */
117 startup_info_dump
, /* dump */
118 add_queue
, /* add_queue */
119 remove_queue
, /* remove_queue */
120 startup_info_signaled
, /* signaled */
121 no_satisfied
, /* satisfied */
122 no_signal
, /* signal */
123 no_get_fd
, /* get_fd */
124 no_lookup_name
, /* lookup_name */
125 no_close_handle
, /* close_handle */
126 startup_info_destroy
/* destroy */
130 static struct list startup_info_list
= LIST_INIT(startup_info_list
);
134 void *ptr
; /* entry ptr */
135 unsigned int next
; /* next free entry */
138 static struct ptid_entry
*ptid_entries
; /* array of ptid entries */
139 static unsigned int used_ptid_entries
; /* number of entries in use */
140 static unsigned int alloc_ptid_entries
; /* number of allocated entries */
141 static unsigned int next_free_ptid
; /* next free entry */
142 static unsigned int last_free_ptid
; /* last free entry */
144 #define PTID_OFFSET 8 /* offset for first ptid value */
146 /* allocate a new process or thread id */
147 unsigned int alloc_ptid( void *ptr
)
149 struct ptid_entry
*entry
;
152 if (used_ptid_entries
< alloc_ptid_entries
)
154 id
= used_ptid_entries
+ PTID_OFFSET
;
155 entry
= &ptid_entries
[used_ptid_entries
++];
157 else if (next_free_ptid
)
160 entry
= &ptid_entries
[id
- PTID_OFFSET
];
161 if (!(next_free_ptid
= entry
->next
)) last_free_ptid
= 0;
163 else /* need to grow the array */
165 unsigned int count
= alloc_ptid_entries
+ (alloc_ptid_entries
/ 2);
166 if (!count
) count
= 64;
167 if (!(entry
= realloc( ptid_entries
, count
* sizeof(*entry
) )))
169 set_error( STATUS_NO_MEMORY
);
172 ptid_entries
= entry
;
173 alloc_ptid_entries
= count
;
174 id
= used_ptid_entries
+ PTID_OFFSET
;
175 entry
= &ptid_entries
[used_ptid_entries
++];
182 /* free a process or thread id */
183 void free_ptid( unsigned int id
)
185 struct ptid_entry
*entry
= &ptid_entries
[id
- PTID_OFFSET
];
190 /* append to end of free list so that we don't reuse it too early */
191 if (last_free_ptid
) ptid_entries
[last_free_ptid
- PTID_OFFSET
].next
= id
;
192 else next_free_ptid
= id
;
197 /* retrieve the pointer corresponding to a process or thread id */
198 void *get_ptid_entry( unsigned int id
)
200 if (id
< PTID_OFFSET
) return NULL
;
201 if (id
- PTID_OFFSET
>= used_ptid_entries
) return NULL
;
202 return ptid_entries
[id
- PTID_OFFSET
].ptr
;
205 /* return the main thread of the process */
206 struct thread
*get_process_first_thread( struct process
*process
)
208 struct list
*ptr
= list_head( &process
->thread_list
);
209 if (!ptr
) return NULL
;
210 return LIST_ENTRY( ptr
, struct thread
, proc_entry
);
213 /* set the state of the process startup info */
214 static void set_process_startup_state( struct process
*process
, enum startup_state state
)
216 if (process
->startup_state
== STARTUP_IN_PROGRESS
) process
->startup_state
= state
;
217 if (process
->startup_info
)
219 wake_up( &process
->startup_info
->obj
, 0 );
220 release_object( process
->startup_info
);
221 process
->startup_info
= NULL
;
225 /* create a new process and its main thread */
226 struct thread
*create_process( int fd
)
228 struct process
*process
;
229 struct thread
*thread
= NULL
;
232 if (!(process
= alloc_object( &process_ops
))) 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
;
249 process
->ldt_copy
= NULL
;
250 process
->winstation
= 0;
251 process
->desktop
= 0;
252 process
->exe
.file
= NULL
;
253 process
->exe
.dbg_offset
= 0;
254 process
->exe
.dbg_size
= 0;
255 process
->exe
.namelen
= 0;
256 process
->exe
.filename
= NULL
;
257 process
->token
= token_create_admin();
258 list_init( &process
->thread_list
);
259 list_init( &process
->locks
);
260 list_init( &process
->classes
);
261 list_init( &process
->dlls
);
263 gettimeofday( &process
->start_time
, NULL
);
264 list_add_head( &process_list
, &process
->entry
);
266 if (!(process
->id
= process
->group_id
= alloc_ptid( process
))) goto error
;
267 if (!(process
->msg_fd
= create_anonymous_fd( &process_fd_ops
, fd
, &process
->obj
))) goto error
;
269 /* create the main thread */
270 if (pipe( request_pipe
) == -1)
275 if (send_client_fd( process
, request_pipe
[1], 0 ) == -1)
277 close( request_pipe
[0] );
278 close( request_pipe
[1] );
281 close( request_pipe
[1] );
282 if (!(thread
= create_thread( request_pipe
[0], process
))) goto error
;
284 set_fd_events( process
->msg_fd
, POLLIN
); /* start listening to events */
285 release_object( process
);
289 if (process
) release_object( process
);
290 /* if we failed to start our first process, close everything down */
291 if (!running_processes
) close_master_socket();
295 /* find the startup info for a given Unix process */
296 inline static struct startup_info
*find_startup_info( int unix_pid
)
300 LIST_FOR_EACH( ptr
, &startup_info_list
)
302 struct startup_info
*info
= LIST_ENTRY( ptr
, struct startup_info
, entry
);
303 if (info
->unix_pid
== unix_pid
) return info
;
308 /* initialize the current process and fill in the request */
309 size_t init_process( struct thread
*thread
)
311 struct process
*process
= thread
->process
;
312 struct thread
*parent_thread
= NULL
;
313 struct process
*parent
= NULL
;
314 struct startup_info
*info
;
316 if (process
->startup_info
) return process
->startup_info
->data_size
; /* already initialized */
318 if ((info
= find_startup_info( thread
->unix_pid
)))
320 if (info
->thread
) return info
->data_size
; /* already initialized */
322 info
->thread
= (struct thread
*)grab_object( thread
);
323 info
->process
= (struct process
*)grab_object( process
);
324 process
->startup_info
= (struct startup_info
*)grab_object( info
);
326 parent_thread
= info
->owner
;
327 parent
= parent_thread
->process
;
328 process
->parent
= (struct process
*)grab_object( parent
);
330 /* set the process flags */
331 process
->create_flags
= info
->create_flags
;
333 if (info
->inherit_all
) process
->handles
= copy_handle_table( process
, parent
);
336 /* create the handle table */
337 if (!process
->handles
) process
->handles
= alloc_handle_table( process
, 0 );
338 if (!process
->handles
)
340 fatal_protocol_error( thread
, "Failed to allocate handle table\n" );
344 /* connect to the window station and desktop */
345 connect_process_winstation( process
, NULL
);
346 connect_process_desktop( process
, NULL
);
347 thread
->desktop
= process
->desktop
;
351 /* retrieve the main exe file */
352 if (info
->exe_file
) process
->exe
.file
= (struct file
*)grab_object( info
->exe_file
);
354 /* thread will be actually suspended in init_done */
355 if (info
->create_flags
& CREATE_SUSPENDED
) thread
->suspend
++;
357 /* set the process console */
358 if (!(info
->create_flags
& (DETACHED_PROCESS
| CREATE_NEW_CONSOLE
)))
360 /* FIXME: some better error checking should be done...
361 * like if hConOut and hConIn are console handles, then they should be on the same
364 inherit_console( parent_thread
, process
, info
->inherit_all
? info
->hstdin
: 0 );
367 /* attach to the debugger if requested */
368 if (process
->create_flags
& (DEBUG_PROCESS
| DEBUG_ONLY_THIS_PROCESS
))
369 set_process_debugger( process
, parent_thread
);
370 else if (parent
->debugger
&& !(parent
->create_flags
& DEBUG_ONLY_THIS_PROCESS
))
371 set_process_debugger( process
, parent
->debugger
);
373 if (!(process
->create_flags
& CREATE_NEW_PROCESS_GROUP
))
374 process
->group_id
= parent
->group_id
;
376 return info
->data_size
;
379 /* destroy a process when its refcount is 0 */
380 static void process_destroy( struct object
*obj
)
382 struct process
*process
= (struct process
*)obj
;
383 assert( obj
->ops
== &process_ops
);
385 /* we can't have a thread remaining */
386 assert( list_empty( &process
->thread_list
));
388 set_process_startup_state( process
, STARTUP_ABORTED
);
389 if (process
->console
) release_object( process
->console
);
390 if (process
->parent
) release_object( process
->parent
);
391 if (process
->msg_fd
) release_object( process
->msg_fd
);
392 list_remove( &process
->entry
);
393 if (process
->idle_event
) release_object( process
->idle_event
);
394 if (process
->queue
) release_object( process
->queue
);
395 if (process
->exe
.file
) release_object( process
->exe
.file
);
396 if (process
->exe
.filename
) free( process
->exe
.filename
);
397 if (process
->id
) free_ptid( process
->id
);
398 if (process
->token
) release_object( process
->token
);
401 /* dump a process on stdout for debugging purposes */
402 static void process_dump( struct object
*obj
, int verbose
)
404 struct process
*process
= (struct process
*)obj
;
405 assert( obj
->ops
== &process_ops
);
407 fprintf( stderr
, "Process id=%04x handles=%p\n", process
->id
, process
->handles
);
410 static int process_signaled( struct object
*obj
, struct thread
*thread
)
412 struct process
*process
= (struct process
*)obj
;
413 return !process
->running_threads
;
416 static void process_poll_event( struct fd
*fd
, int event
)
418 struct process
*process
= get_fd_user( fd
);
419 assert( process
->obj
.ops
== &process_ops
);
421 if (event
& (POLLERR
| POLLHUP
)) set_fd_events( fd
, -1 );
422 else if (event
& POLLIN
) receive_fd( process
);
425 static void startup_info_destroy( struct object
*obj
)
427 struct startup_info
*info
= (struct startup_info
*)obj
;
428 assert( obj
->ops
== &startup_info_ops
);
429 list_remove( &info
->entry
);
430 if (info
->data
) free( info
->data
);
431 if (info
->exe_file
) release_object( info
->exe_file
);
432 if (info
->process
) release_object( info
->process
);
433 if (info
->thread
) release_object( info
->thread
);
434 if (info
->owner
) release_object( info
->owner
);
437 static void startup_info_dump( struct object
*obj
, int verbose
)
439 struct startup_info
*info
= (struct startup_info
*)obj
;
440 assert( obj
->ops
== &startup_info_ops
);
442 fprintf( stderr
, "Startup info flags=%x in=%p out=%p err=%p\n",
443 info
->create_flags
, info
->hstdin
, info
->hstdout
, info
->hstderr
);
446 static int startup_info_signaled( struct object
*obj
, struct thread
*thread
)
448 struct startup_info
*info
= (struct startup_info
*)obj
;
449 return info
->process
&& is_process_init_done(info
->process
);
452 /* get a process from an id (and increment the refcount) */
453 struct process
*get_process_from_id( process_id_t id
)
455 struct object
*obj
= get_ptid_entry( id
);
457 if (obj
&& obj
->ops
== &process_ops
) return (struct process
*)grab_object( obj
);
458 set_error( STATUS_INVALID_PARAMETER
);
462 /* get a process from a handle (and increment the refcount) */
463 struct process
*get_process_from_handle( obj_handle_t handle
, unsigned int access
)
465 return (struct process
*)get_handle_obj( current
->process
, handle
,
466 access
, &process_ops
);
469 /* find a dll from its base address */
470 static inline struct process_dll
*find_process_dll( struct process
*process
, void *base
)
472 struct process_dll
*dll
;
474 if (process
->exe
.base
== base
) return &process
->exe
;
476 LIST_FOR_EACH_ENTRY( dll
, &process
->dlls
, struct process_dll
, entry
)
478 if (dll
->base
== base
) return dll
;
483 /* add a dll to a process list */
484 static struct process_dll
*process_load_dll( struct process
*process
, struct file
*file
,
485 void *base
, const WCHAR
*filename
, size_t name_len
)
487 struct process_dll
*dll
;
489 /* make sure we don't already have one with the same base address */
490 if (find_process_dll( process
, base
))
492 set_error( STATUS_INVALID_PARAMETER
);
496 if ((dll
= mem_alloc( sizeof(*dll
) )))
500 dll
->filename
= NULL
;
501 dll
->namelen
= name_len
;
502 if (name_len
&& !(dll
->filename
= memdup( filename
, name_len
)))
507 if (file
) dll
->file
= (struct file
*)grab_object( file
);
508 list_add_head( &process
->dlls
, &dll
->entry
);
513 /* remove a dll from a process list */
514 static void process_unload_dll( struct process
*process
, void *base
)
516 struct process_dll
*dll
= find_process_dll( process
, base
);
518 if (dll
&& dll
!= &process
->exe
)
520 if (dll
->file
) release_object( dll
->file
);
521 if (dll
->filename
) free( dll
->filename
);
522 list_remove( &dll
->entry
);
524 generate_debug_event( current
, UNLOAD_DLL_DEBUG_EVENT
, base
);
526 else set_error( STATUS_INVALID_PARAMETER
);
529 /* kill all processes */
530 void kill_all_processes( struct process
*skip
, int exit_code
)
534 struct process
*process
;
536 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
538 if (process
== skip
) continue;
539 if (process
->running_threads
) break;
541 if (&process
->entry
== &process_list
) break; /* no process found */
542 kill_process( process
, NULL
, exit_code
);
546 /* kill all processes being attached to a console renderer */
547 void kill_console_processes( struct thread
*renderer
, int exit_code
)
549 for (;;) /* restart from the beginning of the list every time */
551 struct process
*process
;
553 /* find the first process being attached to 'renderer' and still running */
554 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
556 if (process
== renderer
->process
) continue;
557 if (!process
->running_threads
) continue;
558 if (process
->console
&& process
->console
->renderer
== renderer
) break;
560 if (&process
->entry
== &process_list
) break; /* no process found */
561 kill_process( process
, NULL
, exit_code
);
565 /* a process has been killed (i.e. its last thread died) */
566 static void process_killed( struct process
*process
)
568 struct handle_table
*handles
;
571 assert( list_empty( &process
->thread_list
));
572 gettimeofday( &process
->end_time
, NULL
);
573 handles
= process
->handles
;
574 process
->handles
= NULL
;
575 if (handles
) release_object( handles
);
577 /* close the console attached to this process, if any */
578 free_console( process
);
580 while ((ptr
= list_head( &process
->dlls
)))
582 struct process_dll
*dll
= LIST_ENTRY( ptr
, struct process_dll
, entry
);
583 if (dll
->file
) release_object( dll
->file
);
584 if (dll
->filename
) free( dll
->filename
);
585 list_remove( &dll
->entry
);
588 destroy_process_classes( process
);
589 remove_process_locks( process
);
590 set_process_startup_state( process
, STARTUP_ABORTED
);
591 if (process
->exe
.file
) release_object( process
->exe
.file
);
592 process
->exe
.file
= NULL
;
593 wake_up( &process
->obj
, 0 );
594 if (!--running_processes
) close_master_socket();
597 /* add a thread to a process running threads list */
598 void add_process_thread( struct process
*process
, struct thread
*thread
)
600 list_add_head( &process
->thread_list
, &thread
->proc_entry
);
601 if (!process
->running_threads
++) running_processes
++;
602 grab_object( thread
);
605 /* remove a thread from a process running threads list */
606 void remove_process_thread( struct process
*process
, struct thread
*thread
)
608 assert( process
->running_threads
> 0 );
609 assert( !list_empty( &process
->thread_list
));
611 list_remove( &thread
->proc_entry
);
613 if (!--process
->running_threads
)
615 /* we have removed the last running thread, exit the process */
616 process
->exit_code
= thread
->exit_code
;
617 generate_debug_event( thread
, EXIT_PROCESS_DEBUG_EVENT
, process
);
618 process_killed( process
);
620 else generate_debug_event( thread
, EXIT_THREAD_DEBUG_EVENT
, thread
);
621 release_object( thread
);
624 /* suspend all the threads of a process */
625 void suspend_process( struct process
*process
)
627 if (!process
->suspend
++)
629 struct list
*ptr
, *next
;
631 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
633 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
634 if (!thread
->suspend
) stop_thread( thread
);
639 /* resume all the threads of a process */
640 void resume_process( struct process
*process
)
642 assert (process
->suspend
> 0);
643 if (!--process
->suspend
)
645 struct list
*ptr
, *next
;
647 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
649 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
650 if (!thread
->suspend
) wake_thread( thread
);
655 /* kill a process on the spot */
656 void kill_process( struct process
*process
, struct thread
*skip
, int exit_code
)
658 struct list
*ptr
, *next
;
660 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
662 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
664 thread
->exit_code
= exit_code
;
665 if (thread
!= skip
) kill_thread( thread
, 1 );
669 /* kill all processes being debugged by a given thread */
670 void kill_debugged_processes( struct thread
*debugger
, int exit_code
)
672 for (;;) /* restart from the beginning of the list every time */
674 struct process
*process
;
676 /* find the first process being debugged by 'debugger' and still running */
677 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
679 if (!process
->running_threads
) continue;
680 if (process
->debugger
== debugger
) break;
682 if (&process
->entry
== &process_list
) break; /* no process found */
683 process
->debugger
= NULL
;
684 kill_process( process
, NULL
, exit_code
);
689 /* detach a debugger from all its debuggees */
690 void detach_debugged_processes( struct thread
*debugger
)
692 struct process
*process
;
694 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
696 if (process
->debugger
== debugger
&& process
->running_threads
)
698 debugger_detach( process
, debugger
);
704 void enum_processes( int (*cb
)(struct process
*, void*), void *user
)
706 struct list
*ptr
, *next
;
708 LIST_FOR_EACH_SAFE( ptr
, next
, &process_list
)
710 struct process
*process
= LIST_ENTRY( ptr
, struct process
, entry
);
711 if ((cb
)(process
, user
)) break;
716 /* read data from a process memory space */
717 /* len is the total size (in ints) */
718 static int read_process_memory( struct process
*process
, const int *addr
, size_t len
, int *dest
)
720 struct thread
*thread
= get_process_first_thread( process
);
722 assert( !((unsigned int)addr
% sizeof(int)) ); /* address must be aligned */
724 if (!thread
) /* process is dead */
726 set_error( STATUS_ACCESS_DENIED
);
729 if (suspend_for_ptrace( thread
))
733 if (read_thread_int( thread
, addr
++, dest
++ ) == -1) break;
736 resume_after_ptrace( thread
);
741 /* make sure we can write to the whole address range */
742 /* len is the total size (in ints) */
743 static int check_process_write_access( struct thread
*thread
, int *addr
, size_t len
)
745 int page
= get_page_size() / sizeof(int);
749 if (write_thread_int( thread
, addr
, 0, 0 ) == -1) return 0;
750 if (len
<= page
) break;
754 return (write_thread_int( thread
, addr
+ len
- 1, 0, 0 ) != -1);
757 /* write data to a process memory space */
758 /* len is the total size (in ints), max is the size we can actually read from the input buffer */
759 /* we check the total size for write permissions */
760 static int write_process_memory( struct process
*process
, int *addr
, size_t len
,
761 unsigned int first_mask
, unsigned int last_mask
, const int *src
)
763 struct thread
*thread
= get_process_first_thread( process
);
766 assert( !((unsigned int)addr
% sizeof(int) )); /* address must be aligned */
768 if (!thread
) /* process is dead */
770 set_error( STATUS_ACCESS_DENIED
);
773 if (suspend_for_ptrace( thread
))
775 if (!check_process_write_access( thread
, addr
, len
))
777 set_error( STATUS_ACCESS_DENIED
);
780 /* first word is special */
783 if (write_thread_int( thread
, addr
++, *src
++, first_mask
) == -1) goto done
;
786 else last_mask
&= first_mask
;
790 if (write_thread_int( thread
, addr
++, *src
++, ~0 ) == -1) goto done
;
794 /* last word is special too */
795 if (write_thread_int( thread
, addr
, *src
, last_mask
) == -1) goto done
;
799 resume_after_ptrace( thread
);
804 /* set the debugged flag in the process PEB */
805 int set_process_debug_flag( struct process
*process
, int flag
)
807 int mask
= 0, data
= 0;
809 /* BeingDebugged flag is the byte at offset 2 in the PEB */
810 memset( (char *)&mask
+ 2, 0xff, 1 );
811 memset( (char *)&data
+ 2, flag
, 1 );
812 return write_process_memory( process
, process
->peb
, 1, mask
, mask
, &data
);
815 /* take a snapshot of currently running processes */
816 struct process_snapshot
*process_snap( int *count
)
818 struct process_snapshot
*snapshot
, *ptr
;
819 struct process
*process
;
820 if (!running_processes
) return NULL
;
821 if (!(snapshot
= mem_alloc( sizeof(*snapshot
) * running_processes
)))
824 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
826 if (!process
->running_threads
) continue;
827 ptr
->process
= process
;
828 ptr
->threads
= process
->running_threads
;
829 ptr
->count
= process
->obj
.refcount
;
830 ptr
->priority
= process
->priority
;
831 ptr
->handles
= get_handle_table_count(process
);
832 grab_object( process
);
835 *count
= running_processes
;
839 /* take a snapshot of the modules of a process */
840 struct module_snapshot
*module_snap( struct process
*process
, int *count
)
842 struct module_snapshot
*snapshot
, *ptr
;
843 struct process_dll
*dll
;
846 LIST_FOR_EACH_ENTRY( dll
, &process
->dlls
, struct process_dll
, entry
) total
++;
847 if (!(snapshot
= mem_alloc( sizeof(*snapshot
) * total
))) return NULL
;
849 /* first entry is main exe */
850 snapshot
->base
= process
->exe
.base
;
851 snapshot
->size
= process
->exe
.size
;
852 snapshot
->namelen
= process
->exe
.namelen
;
853 snapshot
->filename
= memdup( process
->exe
.filename
, process
->exe
.namelen
);
856 LIST_FOR_EACH_ENTRY( dll
, &process
->dlls
, struct process_dll
, entry
)
858 ptr
->base
= dll
->base
;
859 ptr
->size
= dll
->size
;
860 ptr
->namelen
= dll
->namelen
;
861 ptr
->filename
= memdup( dll
->filename
, dll
->namelen
);
869 /* create a new process */
870 DECL_HANDLER(new_process
)
872 struct startup_info
*info
;
874 /* build the startup info for a new process */
875 if (!(info
= alloc_object( &startup_info_ops
))) return;
876 list_add_head( &startup_info_list
, &info
->entry
);
877 info
->inherit_all
= req
->inherit_all
;
878 info
->create_flags
= req
->create_flags
;
879 info
->unix_pid
= req
->unix_pid
;
880 info
->hstdin
= req
->hstdin
;
881 info
->hstdout
= req
->hstdout
;
882 info
->hstderr
= req
->hstderr
;
883 info
->exe_file
= NULL
;
884 info
->owner
= (struct thread
*)grab_object( current
);
885 info
->process
= NULL
;
887 info
->data_size
= get_req_data_size();
891 !(info
->exe_file
= get_file_obj( current
->process
, req
->exe_file
, GENERIC_READ
)))
894 if (!(info
->data
= memdup( get_req_data(), info
->data_size
))) goto done
;
895 reply
->info
= alloc_handle( current
->process
, info
, SYNCHRONIZE
, FALSE
);
898 release_object( info
);
901 /* Retrieve information about a newly started process */
902 DECL_HANDLER(get_new_process_info
)
904 struct startup_info
*info
;
906 if ((info
= (struct startup_info
*)get_handle_obj( current
->process
, req
->info
,
907 0, &startup_info_ops
)))
909 reply
->pid
= get_process_id( info
->process
);
910 reply
->tid
= get_thread_id( info
->thread
);
911 reply
->phandle
= alloc_handle( current
->process
, info
->process
,
912 PROCESS_ALL_ACCESS
, req
->pinherit
);
913 reply
->thandle
= alloc_handle( current
->process
, info
->thread
,
914 THREAD_ALL_ACCESS
, req
->tinherit
);
915 reply
->success
= is_process_init_done( info
->process
);
916 release_object( info
);
928 /* Retrieve the new process startup info */
929 DECL_HANDLER(get_startup_info
)
931 struct process
*process
= current
->process
;
932 struct startup_info
*info
= process
->startup_info
;
937 reply
->create_flags
= info
->create_flags
;
939 if (info
->exe_file
&&
940 !(reply
->exe_file
= alloc_handle( process
, info
->exe_file
, GENERIC_READ
, 0 ))) return;
942 if (!info
->inherit_all
&& !(info
->create_flags
& CREATE_NEW_CONSOLE
))
944 struct process
*parent_process
= info
->owner
->process
;
945 reply
->hstdin
= duplicate_handle( parent_process
, info
->hstdin
, process
,
946 0, TRUE
, DUPLICATE_SAME_ACCESS
);
947 reply
->hstdout
= duplicate_handle( parent_process
, info
->hstdout
, process
,
948 0, TRUE
, DUPLICATE_SAME_ACCESS
);
949 reply
->hstderr
= duplicate_handle( parent_process
, info
->hstderr
, process
,
950 0, TRUE
, DUPLICATE_SAME_ACCESS
);
951 /* some handles above may have been invalid; this is not an error */
952 if (get_error() == STATUS_INVALID_HANDLE
||
953 get_error() == STATUS_OBJECT_TYPE_MISMATCH
) clear_error();
957 reply
->hstdin
= info
->hstdin
;
958 reply
->hstdout
= info
->hstdout
;
959 reply
->hstderr
= info
->hstderr
;
962 /* we return the data directly without making a copy so this can only be called once */
963 size
= info
->data_size
;
964 if (size
> get_reply_max_size()) size
= get_reply_max_size();
965 set_reply_data_ptr( info
->data
, size
);
970 /* signal the end of the process initialization */
971 DECL_HANDLER(init_process_done
)
973 struct file
*file
= NULL
;
974 struct process
*process
= current
->process
;
976 if (is_process_init_done(process
))
978 fatal_protocol_error( current
, "init_process_done: called twice\n" );
983 fatal_protocol_error( current
, "init_process_done: module base address cannot be 0\n" );
986 process
->exe
.base
= req
->module
;
987 process
->exe
.size
= req
->module_size
;
988 process
->exe
.name
= req
->name
;
990 if (req
->exe_file
) file
= get_file_obj( process
, req
->exe_file
, GENERIC_READ
);
991 if (process
->exe
.file
) release_object( process
->exe
.file
);
992 process
->exe
.file
= file
;
994 if ((process
->exe
.namelen
= get_req_data_size()))
995 process
->exe
.filename
= memdup( get_req_data(), process
->exe
.namelen
);
997 generate_startup_debug_events( process
, req
->entry
);
998 set_process_startup_state( process
, STARTUP_DONE
);
1000 if (req
->gui
) process
->idle_event
= create_event( NULL
, NULL
, 0, 1, 0 );
1001 if (current
->suspend
+ process
->suspend
> 0) stop_thread( current
);
1002 if (process
->debugger
) set_process_debug_flag( process
, 1 );
1005 /* open a handle to a process */
1006 DECL_HANDLER(open_process
)
1008 struct process
*process
= get_process_from_id( req
->pid
);
1012 reply
->handle
= alloc_handle( current
->process
, process
, req
->access
, req
->inherit
);
1013 release_object( process
);
1017 /* terminate a process */
1018 DECL_HANDLER(terminate_process
)
1020 struct process
*process
;
1022 if ((process
= get_process_from_handle( req
->handle
, PROCESS_TERMINATE
)))
1024 reply
->self
= (current
->process
== process
);
1025 kill_process( process
, current
, req
->exit_code
);
1026 release_object( process
);
1030 /* fetch information about a process */
1031 DECL_HANDLER(get_process_info
)
1033 struct process
*process
;
1035 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1037 reply
->pid
= get_process_id( process
);
1038 reply
->ppid
= process
->parent
? get_process_id( process
->parent
) : 0;
1039 reply
->exit_code
= process
->exit_code
;
1040 reply
->priority
= process
->priority
;
1041 reply
->affinity
= process
->affinity
;
1042 reply
->peb
= process
->peb
;
1043 release_object( process
);
1047 /* set information about a process */
1048 DECL_HANDLER(set_process_info
)
1050 struct process
*process
;
1052 if ((process
= get_process_from_handle( req
->handle
, PROCESS_SET_INFORMATION
)))
1054 if (req
->mask
& SET_PROCESS_INFO_PRIORITY
) process
->priority
= req
->priority
;
1055 if (req
->mask
& SET_PROCESS_INFO_AFFINITY
)
1057 if (req
->affinity
!= 1) set_error( STATUS_INVALID_PARAMETER
);
1058 else process
->affinity
= req
->affinity
;
1060 release_object( process
);
1064 /* read data from a process address space */
1065 DECL_HANDLER(read_process_memory
)
1067 struct process
*process
;
1068 size_t len
= get_reply_max_size();
1070 if (!(process
= get_process_from_handle( req
->handle
, PROCESS_VM_READ
))) return;
1074 unsigned int start_offset
= (unsigned int)req
->addr
% sizeof(int);
1075 unsigned int nb_ints
= (len
+ start_offset
+ sizeof(int) - 1) / sizeof(int);
1076 const int *start
= (int *)((char *)req
->addr
- start_offset
);
1077 int *buffer
= mem_alloc( nb_ints
* sizeof(int) );
1080 if (read_process_memory( process
, start
, nb_ints
, buffer
))
1082 /* move start of requested data to start of buffer */
1083 if (start_offset
) memmove( buffer
, (char *)buffer
+ start_offset
, len
);
1084 set_reply_data_ptr( buffer
, len
);
1089 release_object( process
);
1092 /* write data to a process address space */
1093 DECL_HANDLER(write_process_memory
)
1095 struct process
*process
;
1097 if ((process
= get_process_from_handle( req
->handle
, PROCESS_VM_WRITE
)))
1099 size_t len
= get_req_data_size();
1100 if ((len
% sizeof(int)) || ((unsigned int)req
->addr
% sizeof(int)))
1101 set_error( STATUS_INVALID_PARAMETER
);
1104 if (len
) write_process_memory( process
, req
->addr
, len
/ sizeof(int),
1105 req
->first_mask
, req
->last_mask
, get_req_data() );
1107 release_object( process
);
1111 /* notify the server that a dll has been loaded */
1112 DECL_HANDLER(load_dll
)
1114 struct process_dll
*dll
;
1115 struct file
*file
= NULL
;
1117 if (req
->handle
&& !(file
= get_file_obj( current
->process
, req
->handle
, GENERIC_READ
)))
1120 if ((dll
= process_load_dll( current
->process
, file
, req
->base
,
1121 get_req_data(), get_req_data_size() )))
1123 dll
->size
= req
->size
;
1124 dll
->dbg_offset
= req
->dbg_offset
;
1125 dll
->dbg_size
= req
->dbg_size
;
1126 dll
->name
= req
->name
;
1127 /* only generate event if initialization is done */
1128 if (is_process_init_done( current
->process
))
1129 generate_debug_event( current
, LOAD_DLL_DEBUG_EVENT
, dll
);
1131 if (file
) release_object( file
);
1134 /* notify the server that a dll is being unloaded */
1135 DECL_HANDLER(unload_dll
)
1137 process_unload_dll( current
->process
, req
->base
);
1140 /* retrieve information about a module in a process */
1141 DECL_HANDLER(get_dll_info
)
1143 struct process
*process
;
1145 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1147 struct process_dll
*dll
= find_process_dll( process
, req
->base_address
);
1151 reply
->size
= dll
->size
;
1152 reply
->entry_point
= NULL
; /* FIXME */
1155 size_t len
= min( dll
->namelen
, get_reply_max_size() );
1156 set_reply_data( dll
->filename
, len
);
1160 set_error( STATUS_DLL_NOT_FOUND
);
1162 release_object( process
);
1166 /* wait for a process to start waiting on input */
1167 /* FIXME: only returns event for now, wait is done in the client */
1168 DECL_HANDLER(wait_input_idle
)
1170 struct process
*process
;
1173 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1175 if (process
->idle_event
&& process
!= current
->process
)
1176 reply
->event
= alloc_handle( current
->process
, process
->idle_event
,
1177 EVENT_ALL_ACCESS
, 0 );
1178 release_object( process
);