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 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 */
87 no_get_file_info
, /* get_file_info */
88 no_queue_async
, /* queue_async */
89 no_cancel_async
/* cancel async */
92 /* process startup info */
96 struct object obj
; /* object header */
97 struct list entry
; /* entry in list of startup infos */
98 int inherit_all
; /* inherit all handles from parent */
99 unsigned int create_flags
; /* creation flags */
100 int unix_pid
; /* Unix pid of new process */
101 obj_handle_t hstdin
; /* handle for stdin */
102 obj_handle_t hstdout
; /* handle for stdout */
103 obj_handle_t hstderr
; /* handle for stderr */
104 struct file
*exe_file
; /* file handle for main exe */
105 struct thread
*owner
; /* owner thread (the one that created the new process) */
106 struct process
*process
; /* created process */
107 struct thread
*thread
; /* created thread */
108 size_t data_size
; /* size of startup data */
109 void *data
; /* data for startup info */
112 static void startup_info_dump( struct object
*obj
, int verbose
);
113 static int startup_info_signaled( struct object
*obj
, struct thread
*thread
);
114 static void startup_info_destroy( struct object
*obj
);
116 static const struct object_ops startup_info_ops
=
118 sizeof(struct startup_info
), /* size */
119 startup_info_dump
, /* dump */
120 add_queue
, /* add_queue */
121 remove_queue
, /* remove_queue */
122 startup_info_signaled
, /* signaled */
123 no_satisfied
, /* satisfied */
124 no_signal
, /* signal */
125 no_get_fd
, /* get_fd */
126 no_map_access
, /* map_access */
127 no_lookup_name
, /* lookup_name */
128 no_close_handle
, /* close_handle */
129 startup_info_destroy
/* destroy */
133 static struct list startup_info_list
= LIST_INIT(startup_info_list
);
137 void *ptr
; /* entry ptr */
138 unsigned int next
; /* next free entry */
141 static struct ptid_entry
*ptid_entries
; /* array of ptid entries */
142 static unsigned int used_ptid_entries
; /* number of entries in use */
143 static unsigned int alloc_ptid_entries
; /* number of allocated entries */
144 static unsigned int next_free_ptid
; /* next free entry */
145 static unsigned int last_free_ptid
; /* last free entry */
147 #define PTID_OFFSET 8 /* offset for first ptid value */
149 /* allocate a new process or thread id */
150 unsigned int alloc_ptid( void *ptr
)
152 struct ptid_entry
*entry
;
155 if (used_ptid_entries
< alloc_ptid_entries
)
157 id
= used_ptid_entries
+ PTID_OFFSET
;
158 entry
= &ptid_entries
[used_ptid_entries
++];
160 else if (next_free_ptid
)
163 entry
= &ptid_entries
[id
- PTID_OFFSET
];
164 if (!(next_free_ptid
= entry
->next
)) last_free_ptid
= 0;
166 else /* need to grow the array */
168 unsigned int count
= alloc_ptid_entries
+ (alloc_ptid_entries
/ 2);
169 if (!count
) count
= 64;
170 if (!(entry
= realloc( ptid_entries
, count
* sizeof(*entry
) )))
172 set_error( STATUS_NO_MEMORY
);
175 ptid_entries
= entry
;
176 alloc_ptid_entries
= count
;
177 id
= used_ptid_entries
+ PTID_OFFSET
;
178 entry
= &ptid_entries
[used_ptid_entries
++];
185 /* free a process or thread id */
186 void free_ptid( unsigned int id
)
188 struct ptid_entry
*entry
= &ptid_entries
[id
- PTID_OFFSET
];
193 /* append to end of free list so that we don't reuse it too early */
194 if (last_free_ptid
) ptid_entries
[last_free_ptid
- PTID_OFFSET
].next
= id
;
195 else next_free_ptid
= id
;
200 /* retrieve the pointer corresponding to a process or thread id */
201 void *get_ptid_entry( unsigned int id
)
203 if (id
< PTID_OFFSET
) return NULL
;
204 if (id
- PTID_OFFSET
>= used_ptid_entries
) return NULL
;
205 return ptid_entries
[id
- PTID_OFFSET
].ptr
;
208 /* return the main thread of the process */
209 struct thread
*get_process_first_thread( struct process
*process
)
211 struct list
*ptr
= list_head( &process
->thread_list
);
212 if (!ptr
) return NULL
;
213 return LIST_ENTRY( ptr
, struct thread
, proc_entry
);
216 /* set the state of the process startup info */
217 static void set_process_startup_state( struct process
*process
, enum startup_state state
)
219 if (process
->startup_state
== STARTUP_IN_PROGRESS
) process
->startup_state
= state
;
220 if (process
->startup_info
)
222 wake_up( &process
->startup_info
->obj
, 0 );
223 release_object( process
->startup_info
);
224 process
->startup_info
= NULL
;
228 /* create a new process and its main thread */
229 struct thread
*create_process( int fd
)
231 struct process
*process
;
232 struct thread
*thread
= NULL
;
235 if (!(process
= alloc_object( &process_ops
))) goto error
;
236 process
->parent
= NULL
;
237 process
->debugger
= NULL
;
238 process
->handles
= NULL
;
239 process
->msg_fd
= NULL
;
240 process
->exit_code
= STILL_ACTIVE
;
241 process
->running_threads
= 0;
242 process
->priority
= PROCESS_PRIOCLASS_NORMAL
;
243 process
->affinity
= 1;
244 process
->suspend
= 0;
245 process
->create_flags
= 0;
246 process
->console
= NULL
;
247 process
->startup_state
= STARTUP_IN_PROGRESS
;
248 process
->startup_info
= NULL
;
249 process
->idle_event
= NULL
;
250 process
->queue
= NULL
;
252 process
->ldt_copy
= NULL
;
253 process
->winstation
= 0;
254 process
->desktop
= 0;
255 process
->token
= token_create_admin();
256 list_init( &process
->thread_list
);
257 list_init( &process
->locks
);
258 list_init( &process
->classes
);
259 list_init( &process
->dlls
);
261 gettimeofday( &process
->start_time
, NULL
);
262 list_add_head( &process_list
, &process
->entry
);
264 if (!(process
->id
= process
->group_id
= alloc_ptid( process
))) goto error
;
265 if (!(process
->msg_fd
= create_anonymous_fd( &process_fd_ops
, fd
, &process
->obj
))) goto error
;
267 /* create the main thread */
268 if (pipe( request_pipe
) == -1)
273 if (send_client_fd( process
, request_pipe
[1], 0 ) == -1)
275 close( request_pipe
[0] );
276 close( request_pipe
[1] );
279 close( request_pipe
[1] );
280 if (!(thread
= create_thread( request_pipe
[0], process
))) goto error
;
282 set_fd_events( process
->msg_fd
, POLLIN
); /* start listening to events */
283 release_object( process
);
287 if (process
) release_object( process
);
288 /* if we failed to start our first process, close everything down */
289 if (!running_processes
) close_master_socket();
293 /* find the startup info for a given Unix process */
294 inline static struct startup_info
*find_startup_info( int unix_pid
)
298 LIST_FOR_EACH( ptr
, &startup_info_list
)
300 struct startup_info
*info
= LIST_ENTRY( ptr
, struct startup_info
, entry
);
301 if (info
->unix_pid
== unix_pid
) return info
;
306 /* initialize the current process and fill in the request */
307 size_t init_process( struct thread
*thread
)
309 struct process
*process
= thread
->process
;
310 struct thread
*parent_thread
= NULL
;
311 struct process
*parent
= NULL
;
312 struct startup_info
*info
;
314 if (process
->startup_info
) return process
->startup_info
->data_size
; /* already initialized */
316 if ((info
= find_startup_info( thread
->unix_pid
)))
318 if (info
->thread
) return info
->data_size
; /* already initialized */
320 info
->thread
= (struct thread
*)grab_object( thread
);
321 info
->process
= (struct process
*)grab_object( process
);
322 process
->startup_info
= (struct startup_info
*)grab_object( info
);
324 parent_thread
= info
->owner
;
325 parent
= parent_thread
->process
;
326 process
->parent
= (struct process
*)grab_object( parent
);
328 /* set the process flags */
329 process
->create_flags
= info
->create_flags
;
331 if (info
->inherit_all
) process
->handles
= copy_handle_table( process
, parent
);
334 /* create the handle table */
335 if (!process
->handles
) process
->handles
= alloc_handle_table( process
, 0 );
336 if (!process
->handles
)
338 fatal_protocol_error( thread
, "Failed to allocate handle table\n" );
342 /* connect to the window station and desktop */
343 connect_process_winstation( process
, NULL
);
344 connect_process_desktop( process
, NULL
);
345 thread
->desktop
= process
->desktop
;
349 /* thread will be actually suspended in init_done */
350 if (info
->create_flags
& CREATE_SUSPENDED
) thread
->suspend
++;
352 /* set the process console */
353 if (!(info
->create_flags
& (DETACHED_PROCESS
| CREATE_NEW_CONSOLE
)))
355 /* FIXME: some better error checking should be done...
356 * like if hConOut and hConIn are console handles, then they should be on the same
359 inherit_console( parent_thread
, process
, info
->inherit_all
? info
->hstdin
: 0 );
362 /* attach to the debugger if requested */
363 if (process
->create_flags
& (DEBUG_PROCESS
| DEBUG_ONLY_THIS_PROCESS
))
364 set_process_debugger( process
, parent_thread
);
365 else if (parent
->debugger
&& !(parent
->create_flags
& DEBUG_ONLY_THIS_PROCESS
))
366 set_process_debugger( process
, parent
->debugger
);
368 if (!(process
->create_flags
& CREATE_NEW_PROCESS_GROUP
))
369 process
->group_id
= parent
->group_id
;
371 return info
->data_size
;
374 /* destroy a process when its refcount is 0 */
375 static void process_destroy( struct object
*obj
)
377 struct process
*process
= (struct process
*)obj
;
378 assert( obj
->ops
== &process_ops
);
380 /* we can't have a thread remaining */
381 assert( list_empty( &process
->thread_list
));
383 set_process_startup_state( process
, STARTUP_ABORTED
);
384 if (process
->console
) release_object( process
->console
);
385 if (process
->parent
) release_object( process
->parent
);
386 if (process
->msg_fd
) release_object( process
->msg_fd
);
387 list_remove( &process
->entry
);
388 if (process
->idle_event
) release_object( process
->idle_event
);
389 if (process
->queue
) release_object( process
->queue
);
390 if (process
->id
) free_ptid( process
->id
);
391 if (process
->token
) release_object( process
->token
);
394 /* dump a process on stdout for debugging purposes */
395 static void process_dump( struct object
*obj
, int verbose
)
397 struct process
*process
= (struct process
*)obj
;
398 assert( obj
->ops
== &process_ops
);
400 fprintf( stderr
, "Process id=%04x handles=%p\n", process
->id
, process
->handles
);
403 static int process_signaled( struct object
*obj
, struct thread
*thread
)
405 struct process
*process
= (struct process
*)obj
;
406 return !process
->running_threads
;
409 static unsigned int process_map_access( struct object
*obj
, unsigned int access
)
411 if (access
& GENERIC_READ
) access
|= STANDARD_RIGHTS_READ
| SYNCHRONIZE
;
412 if (access
& GENERIC_WRITE
) access
|= STANDARD_RIGHTS_WRITE
| SYNCHRONIZE
;
413 if (access
& GENERIC_EXECUTE
) access
|= STANDARD_RIGHTS_EXECUTE
;
414 if (access
& GENERIC_ALL
) access
|= PROCESS_ALL_ACCESS
;
415 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
418 static void process_poll_event( struct fd
*fd
, int event
)
420 struct process
*process
= get_fd_user( fd
);
421 assert( process
->obj
.ops
== &process_ops
);
423 if (event
& (POLLERR
| POLLHUP
)) set_fd_events( fd
, -1 );
424 else if (event
& POLLIN
) receive_fd( process
);
427 static void startup_info_destroy( struct object
*obj
)
429 struct startup_info
*info
= (struct startup_info
*)obj
;
430 assert( obj
->ops
== &startup_info_ops
);
431 list_remove( &info
->entry
);
432 if (info
->data
) free( info
->data
);
433 if (info
->exe_file
) release_object( info
->exe_file
);
434 if (info
->process
) release_object( info
->process
);
435 if (info
->thread
) release_object( info
->thread
);
436 if (info
->owner
) release_object( info
->owner
);
439 static void startup_info_dump( struct object
*obj
, int verbose
)
441 struct startup_info
*info
= (struct startup_info
*)obj
;
442 assert( obj
->ops
== &startup_info_ops
);
444 fprintf( stderr
, "Startup info flags=%x in=%p out=%p err=%p\n",
445 info
->create_flags
, info
->hstdin
, info
->hstdout
, info
->hstderr
);
448 static int startup_info_signaled( struct object
*obj
, struct thread
*thread
)
450 struct startup_info
*info
= (struct startup_info
*)obj
;
451 return info
->process
&& is_process_init_done(info
->process
);
454 /* get a process from an id (and increment the refcount) */
455 struct process
*get_process_from_id( process_id_t id
)
457 struct object
*obj
= get_ptid_entry( id
);
459 if (obj
&& obj
->ops
== &process_ops
) return (struct process
*)grab_object( obj
);
460 set_error( STATUS_INVALID_PARAMETER
);
464 /* get a process from a handle (and increment the refcount) */
465 struct process
*get_process_from_handle( obj_handle_t handle
, unsigned int access
)
467 return (struct process
*)get_handle_obj( current
->process
, handle
,
468 access
, &process_ops
);
471 /* find a dll from its base address */
472 static inline struct process_dll
*find_process_dll( struct process
*process
, void *base
)
474 struct process_dll
*dll
;
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_tail( &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
->entry
!= list_head( &process
->dlls
))) /* main exe can't be unloaded */
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 wake_up( &process
->obj
, 0 );
592 if (!--running_processes
) close_master_socket();
595 /* add a thread to a process running threads list */
596 void add_process_thread( struct process
*process
, struct thread
*thread
)
598 list_add_head( &process
->thread_list
, &thread
->proc_entry
);
599 if (!process
->running_threads
++) running_processes
++;
600 grab_object( thread
);
603 /* remove a thread from a process running threads list */
604 void remove_process_thread( struct process
*process
, struct thread
*thread
)
606 assert( process
->running_threads
> 0 );
607 assert( !list_empty( &process
->thread_list
));
609 list_remove( &thread
->proc_entry
);
611 if (!--process
->running_threads
)
613 /* we have removed the last running thread, exit the process */
614 process
->exit_code
= thread
->exit_code
;
615 generate_debug_event( thread
, EXIT_PROCESS_DEBUG_EVENT
, process
);
616 process_killed( process
);
618 else generate_debug_event( thread
, EXIT_THREAD_DEBUG_EVENT
, thread
);
619 release_object( thread
);
622 /* suspend all the threads of a process */
623 void suspend_process( struct process
*process
)
625 if (!process
->suspend
++)
627 struct list
*ptr
, *next
;
629 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
631 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
632 if (!thread
->suspend
) stop_thread( thread
);
637 /* resume all the threads of a process */
638 void resume_process( struct process
*process
)
640 assert (process
->suspend
> 0);
641 if (!--process
->suspend
)
643 struct list
*ptr
, *next
;
645 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
647 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
648 if (!thread
->suspend
) wake_thread( thread
);
653 /* kill a process on the spot */
654 void kill_process( struct process
*process
, struct thread
*skip
, int exit_code
)
656 struct list
*ptr
, *next
;
658 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
660 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
662 thread
->exit_code
= exit_code
;
663 if (thread
!= skip
) kill_thread( thread
, 1 );
667 /* kill all processes being debugged by a given thread */
668 void kill_debugged_processes( struct thread
*debugger
, int exit_code
)
670 for (;;) /* restart from the beginning of the list every time */
672 struct process
*process
;
674 /* find the first process being debugged by 'debugger' and still running */
675 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
677 if (!process
->running_threads
) continue;
678 if (process
->debugger
== debugger
) break;
680 if (&process
->entry
== &process_list
) break; /* no process found */
681 process
->debugger
= NULL
;
682 kill_process( process
, NULL
, exit_code
);
687 /* detach a debugger from all its debuggees */
688 void detach_debugged_processes( struct thread
*debugger
)
690 struct process
*process
;
692 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
694 if (process
->debugger
== debugger
&& process
->running_threads
)
696 debugger_detach( process
, debugger
);
702 void enum_processes( int (*cb
)(struct process
*, void*), void *user
)
704 struct list
*ptr
, *next
;
706 LIST_FOR_EACH_SAFE( ptr
, next
, &process_list
)
708 struct process
*process
= LIST_ENTRY( ptr
, struct process
, entry
);
709 if ((cb
)(process
, user
)) break;
714 /* read data from a process memory space */
715 /* len is the total size (in ints) */
716 static int read_process_memory( struct process
*process
, const int *addr
, size_t len
, int *dest
)
718 struct thread
*thread
= get_process_first_thread( process
);
720 assert( !((unsigned int)addr
% sizeof(int)) ); /* address must be aligned */
722 if (!thread
) /* process is dead */
724 set_error( STATUS_ACCESS_DENIED
);
727 if (suspend_for_ptrace( thread
))
731 if (read_thread_int( thread
, addr
++, dest
++ ) == -1) break;
734 resume_after_ptrace( thread
);
739 /* make sure we can write to the whole address range */
740 /* len is the total size (in ints) */
741 static int check_process_write_access( struct thread
*thread
, int *addr
, size_t len
)
743 int page
= get_page_size() / sizeof(int);
747 if (write_thread_int( thread
, addr
, 0, 0 ) == -1) return 0;
748 if (len
<= page
) break;
752 return (write_thread_int( thread
, addr
+ len
- 1, 0, 0 ) != -1);
755 /* write data to a process memory space */
756 /* len is the total size (in ints), max is the size we can actually read from the input buffer */
757 /* we check the total size for write permissions */
758 static int write_process_memory( struct process
*process
, int *addr
, size_t len
,
759 unsigned int first_mask
, unsigned int last_mask
, const int *src
)
761 struct thread
*thread
= get_process_first_thread( process
);
764 assert( !((unsigned int)addr
% sizeof(int) )); /* address must be aligned */
766 if (!thread
) /* process is dead */
768 set_error( STATUS_ACCESS_DENIED
);
771 if (suspend_for_ptrace( thread
))
773 if (!check_process_write_access( thread
, addr
, len
))
775 set_error( STATUS_ACCESS_DENIED
);
778 /* first word is special */
781 if (write_thread_int( thread
, addr
++, *src
++, first_mask
) == -1) goto done
;
784 else last_mask
&= first_mask
;
788 if (write_thread_int( thread
, addr
++, *src
++, ~0 ) == -1) goto done
;
792 /* last word is special too */
793 if (write_thread_int( thread
, addr
, *src
, last_mask
) == -1) goto done
;
797 resume_after_ptrace( thread
);
802 /* set the debugged flag in the process PEB */
803 int set_process_debug_flag( struct process
*process
, int flag
)
805 int mask
= 0, data
= 0;
807 /* BeingDebugged flag is the byte at offset 2 in the PEB */
808 memset( (char *)&mask
+ 2, 0xff, 1 );
809 memset( (char *)&data
+ 2, flag
, 1 );
810 return write_process_memory( process
, process
->peb
, 1, mask
, mask
, &data
);
813 /* take a snapshot of currently running processes */
814 struct process_snapshot
*process_snap( int *count
)
816 struct process_snapshot
*snapshot
, *ptr
;
817 struct process
*process
;
818 if (!running_processes
) return NULL
;
819 if (!(snapshot
= mem_alloc( sizeof(*snapshot
) * running_processes
)))
822 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
824 if (!process
->running_threads
) continue;
825 ptr
->process
= process
;
826 ptr
->threads
= process
->running_threads
;
827 ptr
->count
= process
->obj
.refcount
;
828 ptr
->priority
= process
->priority
;
829 ptr
->handles
= get_handle_table_count(process
);
830 grab_object( process
);
833 *count
= running_processes
;
837 /* take a snapshot of the modules of a process */
838 struct module_snapshot
*module_snap( struct process
*process
, int *count
)
840 struct module_snapshot
*snapshot
, *ptr
;
841 struct process_dll
*dll
;
844 LIST_FOR_EACH_ENTRY( dll
, &process
->dlls
, struct process_dll
, entry
) total
++;
845 if (!(snapshot
= mem_alloc( sizeof(*snapshot
) * total
))) return NULL
;
848 LIST_FOR_EACH_ENTRY( dll
, &process
->dlls
, struct process_dll
, entry
)
850 ptr
->base
= dll
->base
;
851 ptr
->size
= dll
->size
;
852 ptr
->namelen
= dll
->namelen
;
853 ptr
->filename
= memdup( dll
->filename
, dll
->namelen
);
861 /* create a new process */
862 DECL_HANDLER(new_process
)
864 struct startup_info
*info
;
866 /* build the startup info for a new process */
867 if (!(info
= alloc_object( &startup_info_ops
))) return;
868 list_add_head( &startup_info_list
, &info
->entry
);
869 info
->inherit_all
= req
->inherit_all
;
870 info
->create_flags
= req
->create_flags
;
871 info
->unix_pid
= req
->unix_pid
;
872 info
->hstdin
= req
->hstdin
;
873 info
->hstdout
= req
->hstdout
;
874 info
->hstderr
= req
->hstderr
;
875 info
->exe_file
= NULL
;
876 info
->owner
= (struct thread
*)grab_object( current
);
877 info
->process
= NULL
;
879 info
->data_size
= get_req_data_size();
883 !(info
->exe_file
= get_file_obj( current
->process
, req
->exe_file
, FILE_READ_DATA
)))
886 if (!(info
->data
= memdup( get_req_data(), info
->data_size
))) goto done
;
887 reply
->info
= alloc_handle( current
->process
, info
, SYNCHRONIZE
, 0 );
890 release_object( info
);
893 /* Retrieve information about a newly started process */
894 DECL_HANDLER(get_new_process_info
)
896 struct startup_info
*info
;
898 if ((info
= (struct startup_info
*)get_handle_obj( current
->process
, req
->info
,
899 0, &startup_info_ops
)))
901 reply
->pid
= get_process_id( info
->process
);
902 reply
->tid
= get_thread_id( info
->thread
);
903 reply
->phandle
= alloc_handle( current
->process
, info
->process
,
904 req
->process_access
, req
->process_attr
);
905 reply
->thandle
= alloc_handle( current
->process
, info
->thread
,
906 req
->thread_access
, req
->thread_attr
);
907 reply
->success
= is_process_init_done( info
->process
);
908 release_object( info
);
920 /* Retrieve the new process startup info */
921 DECL_HANDLER(get_startup_info
)
923 struct process
*process
= current
->process
;
924 struct startup_info
*info
= process
->startup_info
;
929 if (info
->exe_file
&&
930 !(reply
->exe_file
= alloc_handle( process
, info
->exe_file
, GENERIC_READ
, 0 ))) return;
932 if (!info
->inherit_all
&& !(info
->create_flags
& CREATE_NEW_CONSOLE
))
934 struct process
*parent_process
= info
->owner
->process
;
935 reply
->hstdin
= duplicate_handle( parent_process
, info
->hstdin
, process
,
936 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
937 reply
->hstdout
= duplicate_handle( parent_process
, info
->hstdout
, process
,
938 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
939 reply
->hstderr
= duplicate_handle( parent_process
, info
->hstderr
, process
,
940 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
941 /* some handles above may have been invalid; this is not an error */
942 if (get_error() == STATUS_INVALID_HANDLE
||
943 get_error() == STATUS_OBJECT_TYPE_MISMATCH
) clear_error();
947 reply
->hstdin
= info
->hstdin
;
948 reply
->hstdout
= info
->hstdout
;
949 reply
->hstderr
= info
->hstderr
;
952 /* we return the data directly without making a copy so this can only be called once */
953 size
= info
->data_size
;
954 if (size
> get_reply_max_size()) size
= get_reply_max_size();
955 set_reply_data_ptr( info
->data
, size
);
960 /* signal the end of the process initialization */
961 DECL_HANDLER(init_process_done
)
963 struct process_dll
*dll
;
964 struct process
*process
= current
->process
;
966 if (is_process_init_done(process
))
968 fatal_protocol_error( current
, "init_process_done: called twice\n" );
973 fatal_protocol_error( current
, "init_process_done: module base address cannot be 0\n" );
977 /* check if main exe has been registered as a dll already */
978 if (!(dll
= find_process_dll( process
, req
->module
)))
980 if (!(dll
= process_load_dll( process
, NULL
, req
->module
,
981 get_req_data(), get_req_data_size() ))) return;
982 dll
->size
= req
->module_size
;
985 dll
->name
= req
->name
;
988 /* main exe is the first in the dll list */
989 list_remove( &dll
->entry
);
990 list_add_head( &process
->dlls
, &dll
->entry
);
992 generate_startup_debug_events( process
, req
->entry
);
993 set_process_startup_state( process
, STARTUP_DONE
);
995 if (req
->gui
) process
->idle_event
= create_event( NULL
, NULL
, 0, 1, 0 );
996 if (current
->suspend
+ process
->suspend
> 0) stop_thread( current
);
997 if (process
->debugger
) set_process_debug_flag( process
, 1 );
1000 /* open a handle to a process */
1001 DECL_HANDLER(open_process
)
1003 struct process
*process
= get_process_from_id( req
->pid
);
1007 reply
->handle
= alloc_handle( current
->process
, process
, req
->access
, req
->attributes
);
1008 release_object( process
);
1012 /* terminate a process */
1013 DECL_HANDLER(terminate_process
)
1015 struct process
*process
;
1017 if ((process
= get_process_from_handle( req
->handle
, PROCESS_TERMINATE
)))
1019 reply
->self
= (current
->process
== process
);
1020 kill_process( process
, current
, req
->exit_code
);
1021 release_object( process
);
1025 /* fetch information about a process */
1026 DECL_HANDLER(get_process_info
)
1028 struct process
*process
;
1030 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1032 reply
->pid
= get_process_id( process
);
1033 reply
->ppid
= process
->parent
? get_process_id( process
->parent
) : 0;
1034 reply
->exit_code
= process
->exit_code
;
1035 reply
->priority
= process
->priority
;
1036 reply
->affinity
= process
->affinity
;
1037 reply
->peb
= process
->peb
;
1038 release_object( process
);
1042 /* set information about a process */
1043 DECL_HANDLER(set_process_info
)
1045 struct process
*process
;
1047 if ((process
= get_process_from_handle( req
->handle
, PROCESS_SET_INFORMATION
)))
1049 if (req
->mask
& SET_PROCESS_INFO_PRIORITY
) process
->priority
= req
->priority
;
1050 if (req
->mask
& SET_PROCESS_INFO_AFFINITY
)
1052 if (req
->affinity
!= 1) set_error( STATUS_INVALID_PARAMETER
);
1053 else process
->affinity
= req
->affinity
;
1055 release_object( process
);
1059 /* read data from a process address space */
1060 DECL_HANDLER(read_process_memory
)
1062 struct process
*process
;
1063 size_t len
= get_reply_max_size();
1065 if (!(process
= get_process_from_handle( req
->handle
, PROCESS_VM_READ
))) return;
1069 unsigned int start_offset
= (unsigned int)req
->addr
% sizeof(int);
1070 unsigned int nb_ints
= (len
+ start_offset
+ sizeof(int) - 1) / sizeof(int);
1071 const int *start
= (int *)((char *)req
->addr
- start_offset
);
1072 int *buffer
= mem_alloc( nb_ints
* sizeof(int) );
1075 if (read_process_memory( process
, start
, nb_ints
, buffer
))
1077 /* move start of requested data to start of buffer */
1078 if (start_offset
) memmove( buffer
, (char *)buffer
+ start_offset
, len
);
1079 set_reply_data_ptr( buffer
, len
);
1084 release_object( process
);
1087 /* write data to a process address space */
1088 DECL_HANDLER(write_process_memory
)
1090 struct process
*process
;
1092 if ((process
= get_process_from_handle( req
->handle
, PROCESS_VM_WRITE
)))
1094 size_t len
= get_req_data_size();
1095 if ((len
% sizeof(int)) || ((unsigned int)req
->addr
% sizeof(int)))
1096 set_error( STATUS_INVALID_PARAMETER
);
1099 if (len
) write_process_memory( process
, req
->addr
, len
/ sizeof(int),
1100 req
->first_mask
, req
->last_mask
, get_req_data() );
1102 release_object( process
);
1106 /* notify the server that a dll has been loaded */
1107 DECL_HANDLER(load_dll
)
1109 struct process_dll
*dll
;
1110 struct file
*file
= NULL
;
1112 if (req
->handle
&& !(file
= get_file_obj( current
->process
, req
->handle
, FILE_READ_DATA
)))
1115 if ((dll
= process_load_dll( current
->process
, file
, req
->base
,
1116 get_req_data(), get_req_data_size() )))
1118 dll
->size
= req
->size
;
1119 dll
->dbg_offset
= req
->dbg_offset
;
1120 dll
->dbg_size
= req
->dbg_size
;
1121 dll
->name
= req
->name
;
1122 /* only generate event if initialization is done */
1123 if (is_process_init_done( current
->process
))
1124 generate_debug_event( current
, LOAD_DLL_DEBUG_EVENT
, dll
);
1126 if (file
) release_object( file
);
1129 /* notify the server that a dll is being unloaded */
1130 DECL_HANDLER(unload_dll
)
1132 process_unload_dll( current
->process
, req
->base
);
1135 /* retrieve information about a module in a process */
1136 DECL_HANDLER(get_dll_info
)
1138 struct process
*process
;
1140 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1142 struct process_dll
*dll
= find_process_dll( process
, req
->base_address
);
1146 reply
->size
= dll
->size
;
1147 reply
->entry_point
= NULL
; /* FIXME */
1150 size_t len
= min( dll
->namelen
, get_reply_max_size() );
1151 set_reply_data( dll
->filename
, len
);
1155 set_error( STATUS_DLL_NOT_FOUND
);
1157 release_object( process
);
1161 /* wait for a process to start waiting on input */
1162 /* FIXME: only returns event for now, wait is done in the client */
1163 DECL_HANDLER(wait_input_idle
)
1165 struct process
*process
;
1168 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1170 if (process
->idle_event
&& process
!= current
->process
)
1171 reply
->event
= alloc_handle( current
->process
, process
->idle_event
,
1172 EVENT_ALL_ACCESS
, 0 );
1173 release_object( process
);