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
22 #include "wine/port.h"
32 #ifdef HAVE_SYS_SOCKET_H
33 # include <sys/socket.h>
41 #define WIN32_NO_STATUS
52 /* process structure */
54 static struct list process_list
= LIST_INIT(process_list
);
55 static int running_processes
, user_processes
;
56 static struct event
*shutdown_event
; /* signaled when shutdown starts */
57 static struct timeout_user
*shutdown_timeout
; /* timeout for server shutdown */
58 static int shutdown_stage
; /* current stage in the shutdown process */
60 /* process operations */
62 static void process_dump( struct object
*obj
, int verbose
);
63 static int process_signaled( struct object
*obj
, struct wait_queue_entry
*entry
);
64 static unsigned int process_map_access( struct object
*obj
, unsigned int access
);
65 static void process_poll_event( struct fd
*fd
, int event
);
66 static void process_destroy( struct object
*obj
);
68 static const struct object_ops process_ops
=
70 sizeof(struct process
), /* size */
71 process_dump
, /* dump */
72 no_get_type
, /* get_type */
73 add_queue
, /* add_queue */
74 remove_queue
, /* remove_queue */
75 process_signaled
, /* signaled */
76 no_satisfied
, /* satisfied */
77 no_signal
, /* signal */
78 no_get_fd
, /* get_fd */
79 process_map_access
, /* map_access */
80 default_get_sd
, /* get_sd */
81 default_set_sd
, /* set_sd */
82 no_lookup_name
, /* lookup_name */
83 no_open_file
, /* open_file */
84 no_close_handle
, /* close_handle */
85 process_destroy
/* destroy */
88 static const struct fd_ops process_fd_ops
=
90 NULL
, /* get_poll_events */
91 process_poll_event
, /* poll_event */
93 NULL
, /* get_fd_type */
95 NULL
, /* queue_async */
96 NULL
, /* reselect_async */
97 NULL
/* cancel async */
100 /* process startup info */
104 struct object obj
; /* object header */
105 struct file
*exe_file
; /* file handle for main exe */
106 struct process
*process
; /* created process */
107 data_size_t info_size
; /* size of startup info */
108 data_size_t data_size
; /* size of whole startup data */
109 startup_info_t
*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 wait_queue_entry
*entry
);
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 no_get_type
, /* get_type */
121 add_queue
, /* add_queue */
122 remove_queue
, /* remove_queue */
123 startup_info_signaled
, /* signaled */
124 no_satisfied
, /* satisfied */
125 no_signal
, /* signal */
126 no_get_fd
, /* get_fd */
127 no_map_access
, /* map_access */
128 default_get_sd
, /* get_sd */
129 default_set_sd
, /* set_sd */
130 no_lookup_name
, /* lookup_name */
131 no_open_file
, /* open_file */
132 no_close_handle
, /* close_handle */
133 startup_info_destroy
/* destroy */
139 void *ptr
; /* entry ptr */
140 unsigned int next
; /* next free entry */
143 static struct ptid_entry
*ptid_entries
; /* array of ptid entries */
144 static unsigned int used_ptid_entries
; /* number of entries in use */
145 static unsigned int alloc_ptid_entries
; /* number of allocated entries */
146 static unsigned int next_free_ptid
; /* next free entry */
147 static unsigned int last_free_ptid
; /* last free entry */
149 static void kill_all_processes(void);
151 #define PTID_OFFSET 8 /* offset for first ptid value */
153 /* allocate a new process or thread id */
154 unsigned int alloc_ptid( void *ptr
)
156 struct ptid_entry
*entry
;
159 if (used_ptid_entries
< alloc_ptid_entries
)
161 id
= used_ptid_entries
+ PTID_OFFSET
;
162 entry
= &ptid_entries
[used_ptid_entries
++];
164 else if (next_free_ptid
)
167 entry
= &ptid_entries
[id
- PTID_OFFSET
];
168 if (!(next_free_ptid
= entry
->next
)) last_free_ptid
= 0;
170 else /* need to grow the array */
172 unsigned int count
= alloc_ptid_entries
+ (alloc_ptid_entries
/ 2);
173 if (!count
) count
= 64;
174 if (!(entry
= realloc( ptid_entries
, count
* sizeof(*entry
) )))
176 set_error( STATUS_NO_MEMORY
);
179 ptid_entries
= entry
;
180 alloc_ptid_entries
= count
;
181 id
= used_ptid_entries
+ PTID_OFFSET
;
182 entry
= &ptid_entries
[used_ptid_entries
++];
189 /* free a process or thread id */
190 void free_ptid( unsigned int id
)
192 struct ptid_entry
*entry
= &ptid_entries
[id
- PTID_OFFSET
];
197 /* append to end of free list so that we don't reuse it too early */
198 if (last_free_ptid
) ptid_entries
[last_free_ptid
- PTID_OFFSET
].next
= id
;
199 else next_free_ptid
= id
;
204 /* retrieve the pointer corresponding to a process or thread id */
205 void *get_ptid_entry( unsigned int id
)
207 if (id
< PTID_OFFSET
) return NULL
;
208 if (id
- PTID_OFFSET
>= used_ptid_entries
) return NULL
;
209 return ptid_entries
[id
- PTID_OFFSET
].ptr
;
212 /* return the main thread of the process */
213 struct thread
*get_process_first_thread( struct process
*process
)
215 struct list
*ptr
= list_head( &process
->thread_list
);
216 if (!ptr
) return NULL
;
217 return LIST_ENTRY( ptr
, struct thread
, proc_entry
);
220 /* set the state of the process startup info */
221 static void set_process_startup_state( struct process
*process
, enum startup_state state
)
223 if (process
->startup_state
== STARTUP_IN_PROGRESS
) process
->startup_state
= state
;
224 if (process
->startup_info
)
226 wake_up( &process
->startup_info
->obj
, 0 );
227 release_object( process
->startup_info
);
228 process
->startup_info
= NULL
;
232 /* callback for server shutdown */
233 static void server_shutdown_timeout( void *arg
)
235 shutdown_timeout
= NULL
;
236 if (!running_processes
)
238 close_master_socket( 0 );
241 switch(++shutdown_stage
)
243 case 1: /* signal system processes to exit */
244 if (debug_level
) fprintf( stderr
, "wineserver: shutting down\n" );
245 if (shutdown_event
) set_event( shutdown_event
);
246 shutdown_timeout
= add_timeout_user( 2 * -TICKS_PER_SEC
, server_shutdown_timeout
, NULL
);
247 close_master_socket( 4 * -TICKS_PER_SEC
);
249 case 2: /* now forcibly kill all processes (but still wait for SIGKILL timeouts) */
250 kill_all_processes();
255 /* forced shutdown, used for wineserver -k */
256 void shutdown_master_socket(void)
258 kill_all_processes();
260 if (shutdown_timeout
)
262 remove_timeout_user( shutdown_timeout
);
263 shutdown_timeout
= NULL
;
265 close_master_socket( 2 * -TICKS_PER_SEC
); /* for SIGKILL timeouts */
268 /* final cleanup once we are sure a process is really dead */
269 static void process_died( struct process
*process
)
271 if (debug_level
) fprintf( stderr
, "%04x: *process killed*\n", process
->id
);
272 if (!process
->is_system
)
274 if (!--user_processes
&& !shutdown_stage
&& master_socket_timeout
!= TIMEOUT_INFINITE
)
275 shutdown_timeout
= add_timeout_user( master_socket_timeout
, server_shutdown_timeout
, NULL
);
277 release_object( process
);
278 if (!--running_processes
&& shutdown_stage
) close_master_socket( 0 );
281 /* callback for process sigkill timeout */
282 static void process_sigkill( void *private )
284 struct process
*process
= private;
286 process
->sigkill_timeout
= NULL
;
287 kill( process
->unix_pid
, SIGKILL
);
288 process_died( process
);
291 /* start the sigkill timer for a process upon exit */
292 static void start_sigkill_timer( struct process
*process
)
294 grab_object( process
);
295 if (process
->unix_pid
!= -1 && process
->msg_fd
)
296 process
->sigkill_timeout
= add_timeout_user( -TICKS_PER_SEC
, process_sigkill
, process
);
298 process_died( process
);
301 /* create a new process and its main thread */
302 /* if the function fails the fd is closed */
303 struct thread
*create_process( int fd
, struct thread
*parent_thread
, int inherit_all
)
305 struct process
*process
;
306 struct thread
*thread
= NULL
;
309 if (!(process
= alloc_object( &process_ops
)))
314 process
->parent
= NULL
;
315 process
->debugger
= NULL
;
316 process
->handles
= NULL
;
317 process
->msg_fd
= NULL
;
318 process
->sigkill_timeout
= NULL
;
319 process
->unix_pid
= -1;
320 process
->exit_code
= STILL_ACTIVE
;
321 process
->running_threads
= 0;
322 process
->priority
= PROCESS_PRIOCLASS_NORMAL
;
323 process
->suspend
= 0;
324 process
->is_system
= 0;
325 process
->debug_children
= 0;
326 process
->is_terminating
= 0;
327 process
->console
= NULL
;
328 process
->startup_state
= STARTUP_IN_PROGRESS
;
329 process
->startup_info
= NULL
;
330 process
->idle_event
= NULL
;
332 process
->ldt_copy
= 0;
333 process
->winstation
= 0;
334 process
->desktop
= 0;
335 process
->token
= NULL
;
336 process
->trace_data
= 0;
337 process
->rawinput_mouse
= NULL
;
338 process
->rawinput_kbd
= NULL
;
339 list_init( &process
->thread_list
);
340 list_init( &process
->locks
);
341 list_init( &process
->classes
);
342 list_init( &process
->dlls
);
343 list_init( &process
->rawinput_devices
);
345 process
->end_time
= 0;
346 list_add_tail( &process_list
, &process
->entry
);
348 if (!(process
->id
= process
->group_id
= alloc_ptid( process
)))
353 if (!(process
->msg_fd
= create_anonymous_fd( &process_fd_ops
, fd
, &process
->obj
, 0 ))) goto error
;
355 /* create the handle table */
358 process
->handles
= alloc_handle_table( process
, 0 );
359 process
->token
= token_create_admin();
360 process
->affinity
= ~0;
364 struct process
*parent
= parent_thread
->process
;
365 process
->parent
= (struct process
*)grab_object( parent
);
366 process
->handles
= inherit_all
? copy_handle_table( process
, parent
)
367 : alloc_handle_table( process
, 0 );
368 /* Note: for security reasons, starting a new process does not attempt
369 * to use the current impersonation token for the new process */
370 process
->token
= token_duplicate( parent
->token
, TRUE
, 0 );
371 process
->affinity
= parent
->affinity
;
373 if (!process
->handles
|| !process
->token
) goto error
;
375 /* create the main thread */
376 if (pipe( request_pipe
) == -1)
381 if (send_client_fd( process
, request_pipe
[1], SERVER_PROTOCOL_VERSION
) == -1)
383 close( request_pipe
[0] );
384 close( request_pipe
[1] );
387 close( request_pipe
[1] );
388 if (!(thread
= create_thread( request_pipe
[0], process
))) goto error
;
390 set_fd_events( process
->msg_fd
, POLLIN
); /* start listening to events */
391 release_object( process
);
395 if (process
) release_object( process
);
396 /* if we failed to start our first process, close everything down */
397 if (!running_processes
) close_master_socket( 0 );
401 /* initialize the current process and fill in the request */
402 data_size_t
init_process( struct thread
*thread
)
404 struct process
*process
= thread
->process
;
405 struct startup_info
*info
= process
->startup_info
;
407 init_process_tracing( process
);
409 return info
->data_size
;
412 /* destroy a process when its refcount is 0 */
413 static void process_destroy( struct object
*obj
)
415 struct process
*process
= (struct process
*)obj
;
416 assert( obj
->ops
== &process_ops
);
418 /* we can't have a thread remaining */
419 assert( list_empty( &process
->thread_list
));
421 assert( !process
->sigkill_timeout
); /* timeout should hold a reference to the process */
423 close_process_handles( process
);
424 set_process_startup_state( process
, STARTUP_ABORTED
);
425 if (process
->console
) release_object( process
->console
);
426 if (process
->parent
) release_object( process
->parent
);
427 if (process
->msg_fd
) release_object( process
->msg_fd
);
428 list_remove( &process
->entry
);
429 if (process
->idle_event
) release_object( process
->idle_event
);
430 if (process
->id
) free_ptid( process
->id
);
431 if (process
->token
) release_object( process
->token
);
434 /* dump a process on stdout for debugging purposes */
435 static void process_dump( struct object
*obj
, int verbose
)
437 struct process
*process
= (struct process
*)obj
;
438 assert( obj
->ops
== &process_ops
);
440 fprintf( stderr
, "Process id=%04x handles=%p\n", process
->id
, process
->handles
);
443 static int process_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
445 struct process
*process
= (struct process
*)obj
;
446 return !process
->running_threads
;
449 static unsigned int process_map_access( struct object
*obj
, unsigned int access
)
451 if (access
& GENERIC_READ
) access
|= STANDARD_RIGHTS_READ
| SYNCHRONIZE
;
452 if (access
& GENERIC_WRITE
) access
|= STANDARD_RIGHTS_WRITE
| SYNCHRONIZE
;
453 if (access
& GENERIC_EXECUTE
) access
|= STANDARD_RIGHTS_EXECUTE
;
454 if (access
& GENERIC_ALL
) access
|= PROCESS_ALL_ACCESS
;
455 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
458 static void process_poll_event( struct fd
*fd
, int event
)
460 struct process
*process
= get_fd_user( fd
);
461 assert( process
->obj
.ops
== &process_ops
);
463 if (event
& (POLLERR
| POLLHUP
)) kill_process( process
, 0 );
464 else if (event
& POLLIN
) receive_fd( process
);
467 static void startup_info_destroy( struct object
*obj
)
469 struct startup_info
*info
= (struct startup_info
*)obj
;
470 assert( obj
->ops
== &startup_info_ops
);
472 if (info
->exe_file
) release_object( info
->exe_file
);
473 if (info
->process
) release_object( info
->process
);
476 static void startup_info_dump( struct object
*obj
, int verbose
)
478 struct startup_info
*info
= (struct startup_info
*)obj
;
479 assert( obj
->ops
== &startup_info_ops
);
481 fprintf( stderr
, "Startup info in=%04x out=%04x err=%04x\n",
482 info
->data
->hstdin
, info
->data
->hstdout
, info
->data
->hstderr
);
485 static int startup_info_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
487 struct startup_info
*info
= (struct startup_info
*)obj
;
488 return info
->process
&& info
->process
->startup_state
!= STARTUP_IN_PROGRESS
;
491 /* get a process from an id (and increment the refcount) */
492 struct process
*get_process_from_id( process_id_t id
)
494 struct object
*obj
= get_ptid_entry( id
);
496 if (obj
&& obj
->ops
== &process_ops
) return (struct process
*)grab_object( obj
);
497 set_error( STATUS_INVALID_PARAMETER
);
501 /* get a process from a handle (and increment the refcount) */
502 struct process
*get_process_from_handle( obj_handle_t handle
, unsigned int access
)
504 return (struct process
*)get_handle_obj( current
->process
, handle
,
505 access
, &process_ops
);
508 /* find a dll from its base address */
509 static inline struct process_dll
*find_process_dll( struct process
*process
, mod_handle_t base
)
511 struct process_dll
*dll
;
513 LIST_FOR_EACH_ENTRY( dll
, &process
->dlls
, struct process_dll
, entry
)
515 if (dll
->base
== base
) return dll
;
520 /* add a dll to a process list */
521 static struct process_dll
*process_load_dll( struct process
*process
, struct mapping
*mapping
,
522 mod_handle_t base
, const WCHAR
*filename
,
523 data_size_t name_len
)
525 struct process_dll
*dll
;
527 /* make sure we don't already have one with the same base address */
528 if (find_process_dll( process
, base
))
530 set_error( STATUS_INVALID_PARAMETER
);
534 if ((dll
= mem_alloc( sizeof(*dll
) )))
538 dll
->filename
= NULL
;
539 dll
->namelen
= name_len
;
540 if (name_len
&& !(dll
->filename
= memdup( filename
, name_len
)))
545 if (mapping
) dll
->mapping
= grab_mapping_unless_removable( mapping
);
546 list_add_tail( &process
->dlls
, &dll
->entry
);
551 /* remove a dll from a process list */
552 static void process_unload_dll( struct process
*process
, mod_handle_t base
)
554 struct process_dll
*dll
= find_process_dll( process
, base
);
556 if (dll
&& (&dll
->entry
!= list_head( &process
->dlls
))) /* main exe can't be unloaded */
558 if (dll
->mapping
) release_object( dll
->mapping
);
559 free( dll
->filename
);
560 list_remove( &dll
->entry
);
562 generate_debug_event( current
, UNLOAD_DLL_DEBUG_EVENT
, &base
);
564 else set_error( STATUS_INVALID_PARAMETER
);
567 /* terminate a process with the given exit code */
568 static void terminate_process( struct process
*process
, struct thread
*skip
, int exit_code
)
570 struct thread
*thread
;
572 grab_object( process
); /* make sure it doesn't get freed when threads die */
573 process
->is_terminating
= 1;
576 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
578 if (exit_code
) thread
->exit_code
= exit_code
;
579 if (thread
== skip
) continue;
580 if (thread
->state
== TERMINATED
) continue;
581 kill_thread( thread
, 1 );
584 release_object( process
);
587 /* kill all processes */
588 static void kill_all_processes(void)
592 struct process
*process
;
594 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
596 if (process
->running_threads
) break;
598 if (&process
->entry
== &process_list
) break; /* no process found */
599 terminate_process( process
, NULL
, 1 );
603 /* kill all processes being attached to a console renderer */
604 void kill_console_processes( struct thread
*renderer
, int exit_code
)
606 for (;;) /* restart from the beginning of the list every time */
608 struct process
*process
;
610 /* find the first process being attached to 'renderer' and still running */
611 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
613 if (process
== renderer
->process
) continue;
614 if (!process
->running_threads
) continue;
615 if (process
->console
&& console_get_renderer( process
->console
) == renderer
) break;
617 if (&process
->entry
== &process_list
) break; /* no process found */
618 terminate_process( process
, NULL
, exit_code
);
622 /* a process has been killed (i.e. its last thread died) */
623 static void process_killed( struct process
*process
)
627 assert( list_empty( &process
->thread_list
));
628 process
->end_time
= current_time
;
629 if (!process
->is_system
) close_process_desktop( process
);
630 process
->winstation
= 0;
631 process
->desktop
= 0;
632 close_process_handles( process
);
633 if (process
->idle_event
)
635 release_object( process
->idle_event
);
636 process
->idle_event
= NULL
;
639 /* close the console attached to this process, if any */
640 free_console( process
);
642 while ((ptr
= list_head( &process
->rawinput_devices
)))
644 struct rawinput_device_entry
*entry
= LIST_ENTRY( ptr
, struct rawinput_device_entry
, entry
);
645 list_remove( &entry
->entry
);
648 while ((ptr
= list_head( &process
->dlls
)))
650 struct process_dll
*dll
= LIST_ENTRY( ptr
, struct process_dll
, entry
);
651 if (dll
->mapping
) release_object( dll
->mapping
);
652 free( dll
->filename
);
653 list_remove( &dll
->entry
);
656 destroy_process_classes( process
);
657 free_process_user_handles( process
);
658 remove_process_locks( process
);
659 set_process_startup_state( process
, STARTUP_ABORTED
);
660 finish_process_tracing( process
);
661 start_sigkill_timer( process
);
662 wake_up( &process
->obj
, 0 );
665 /* add a thread to a process running threads list */
666 void add_process_thread( struct process
*process
, struct thread
*thread
)
668 list_add_tail( &process
->thread_list
, &thread
->proc_entry
);
669 if (!process
->running_threads
++)
672 if (!process
->is_system
)
674 if (!user_processes
++ && shutdown_timeout
)
676 remove_timeout_user( shutdown_timeout
);
677 shutdown_timeout
= NULL
;
681 grab_object( thread
);
684 /* remove a thread from a process running threads list */
685 void remove_process_thread( struct process
*process
, struct thread
*thread
)
687 assert( process
->running_threads
> 0 );
688 assert( !list_empty( &process
->thread_list
));
690 list_remove( &thread
->proc_entry
);
692 if (!--process
->running_threads
)
694 /* we have removed the last running thread, exit the process */
695 process
->exit_code
= thread
->exit_code
;
696 generate_debug_event( thread
, EXIT_PROCESS_DEBUG_EVENT
, process
);
697 process_killed( process
);
699 else generate_debug_event( thread
, EXIT_THREAD_DEBUG_EVENT
, thread
);
700 release_object( thread
);
703 /* suspend all the threads of a process */
704 void suspend_process( struct process
*process
)
706 if (!process
->suspend
++)
708 struct list
*ptr
, *next
;
710 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
712 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
713 if (!thread
->suspend
) stop_thread( thread
);
718 /* resume all the threads of a process */
719 void resume_process( struct process
*process
)
721 assert (process
->suspend
> 0);
722 if (!--process
->suspend
)
724 struct list
*ptr
, *next
;
726 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
728 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
729 if (!thread
->suspend
) wake_thread( thread
);
734 /* kill a process on the spot */
735 void kill_process( struct process
*process
, int violent_death
)
737 if (!violent_death
&& process
->msg_fd
) /* normal termination on pipe close */
739 release_object( process
->msg_fd
);
740 process
->msg_fd
= NULL
;
743 if (process
->sigkill_timeout
) /* already waiting for it to die */
745 remove_timeout_user( process
->sigkill_timeout
);
746 process
->sigkill_timeout
= NULL
;
747 process_died( process
);
751 if (violent_death
) terminate_process( process
, NULL
, 1 );
756 grab_object( process
); /* make sure it doesn't get freed when threads die */
757 while ((ptr
= list_head( &process
->thread_list
)))
759 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
760 kill_thread( thread
, 0 );
762 release_object( process
);
766 /* kill all processes being debugged by a given thread */
767 void kill_debugged_processes( struct thread
*debugger
, int exit_code
)
769 for (;;) /* restart from the beginning of the list every time */
771 struct process
*process
;
773 /* find the first process being debugged by 'debugger' and still running */
774 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
776 if (!process
->running_threads
) continue;
777 if (process
->debugger
== debugger
) break;
779 if (&process
->entry
== &process_list
) break; /* no process found */
780 process
->debugger
= NULL
;
781 terminate_process( process
, NULL
, exit_code
);
786 /* trigger a breakpoint event in a given process */
787 void break_process( struct process
*process
)
789 struct thread
*thread
;
791 suspend_process( process
);
793 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
795 if (thread
->context
) /* inside an exception event already */
797 break_thread( thread
);
801 if ((thread
= get_process_first_thread( process
))) thread
->debug_break
= 1;
802 else set_error( STATUS_ACCESS_DENIED
);
804 resume_process( process
);
808 /* detach a debugger from all its debuggees */
809 void detach_debugged_processes( struct thread
*debugger
)
811 struct process
*process
;
813 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
815 if (process
->debugger
== debugger
&& process
->running_threads
)
817 debugger_detach( process
, debugger
);
823 void enum_processes( int (*cb
)(struct process
*, void*), void *user
)
825 struct list
*ptr
, *next
;
827 LIST_FOR_EACH_SAFE( ptr
, next
, &process_list
)
829 struct process
*process
= LIST_ENTRY( ptr
, struct process
, entry
);
830 if ((cb
)(process
, user
)) break;
834 /* set the debugged flag in the process PEB */
835 int set_process_debug_flag( struct process
*process
, int flag
)
837 char data
= (flag
!= 0);
839 /* BeingDebugged flag is the byte at offset 2 in the PEB */
840 return write_process_memory( process
, process
->peb
+ 2, 1, &data
);
843 /* take a snapshot of currently running processes */
844 struct process_snapshot
*process_snap( int *count
)
846 struct process_snapshot
*snapshot
, *ptr
;
847 struct process
*process
;
849 if (!running_processes
) return NULL
;
850 if (!(snapshot
= mem_alloc( sizeof(*snapshot
) * running_processes
)))
853 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
855 if (!process
->running_threads
) continue;
856 ptr
->process
= process
;
857 ptr
->threads
= process
->running_threads
;
858 ptr
->count
= process
->obj
.refcount
;
859 ptr
->priority
= process
->priority
;
860 ptr
->handles
= get_handle_table_count(process
);
861 ptr
->unix_pid
= process
->unix_pid
;
862 grab_object( process
);
866 if (!(*count
= ptr
- snapshot
))
874 /* create a new process */
875 DECL_HANDLER(new_process
)
877 struct startup_info
*info
;
878 struct thread
*thread
;
879 struct process
*process
;
880 struct process
*parent
= current
->process
;
881 int socket_fd
= thread_get_inflight_fd( current
, req
->socket_fd
);
885 set_error( STATUS_INVALID_PARAMETER
);
888 if (fcntl( socket_fd
, F_SETFL
, O_NONBLOCK
) == -1)
890 set_error( STATUS_INVALID_HANDLE
);
896 set_error( STATUS_SHUTDOWN_IN_PROGRESS
);
900 if (!is_cpu_supported( req
->cpu
))
906 if (!req
->info_size
) /* create an orphaned process */
908 create_process( socket_fd
, NULL
, 0 );
912 /* build the startup info for a new process */
913 if (!(info
= alloc_object( &startup_info_ops
))) return;
914 info
->exe_file
= NULL
;
915 info
->process
= NULL
;
919 !(info
->exe_file
= get_file_obj( current
->process
, req
->exe_file
, FILE_READ_DATA
)))
922 info
->data_size
= get_req_data_size();
923 info
->info_size
= min( req
->info_size
, info
->data_size
);
925 if (req
->info_size
< sizeof(*info
->data
))
927 /* make sure we have a full startup_info_t structure */
928 data_size_t env_size
= info
->data_size
- info
->info_size
;
929 data_size_t info_size
= min( req
->info_size
, FIELD_OFFSET( startup_info_t
, curdir_len
));
931 if (!(info
->data
= mem_alloc( sizeof(*info
->data
) + env_size
))) goto done
;
932 memcpy( info
->data
, get_req_data(), info_size
);
933 memset( (char *)info
->data
+ info_size
, 0, sizeof(*info
->data
) - info_size
);
934 memcpy( info
->data
+ 1, (const char *)get_req_data() + req
->info_size
, env_size
);
935 info
->info_size
= sizeof(startup_info_t
);
936 info
->data_size
= info
->info_size
+ env_size
;
940 data_size_t pos
= sizeof(*info
->data
);
942 if (!(info
->data
= memdup( get_req_data(), info
->data_size
))) goto done
;
943 #define FIXUP_LEN(len) do { (len) = min( (len), info->info_size - pos ); pos += (len); } while(0)
944 FIXUP_LEN( info
->data
->curdir_len
);
945 FIXUP_LEN( info
->data
->dllpath_len
);
946 FIXUP_LEN( info
->data
->imagepath_len
);
947 FIXUP_LEN( info
->data
->cmdline_len
);
948 FIXUP_LEN( info
->data
->title_len
);
949 FIXUP_LEN( info
->data
->desktop_len
);
950 FIXUP_LEN( info
->data
->shellinfo_len
);
951 FIXUP_LEN( info
->data
->runtime_len
);
955 if (!(thread
= create_process( socket_fd
, current
, req
->inherit_all
))) goto done
;
956 process
= thread
->process
;
957 process
->debug_children
= !!(req
->create_flags
& DEBUG_PROCESS
);
958 process
->startup_info
= (struct startup_info
*)grab_object( info
);
960 /* connect to the window station */
961 connect_process_winstation( process
, current
);
963 /* thread will be actually suspended in init_done */
964 if (req
->create_flags
& CREATE_SUSPENDED
) thread
->suspend
++;
966 /* set the process console */
967 if (!(req
->create_flags
& (DETACHED_PROCESS
| CREATE_NEW_CONSOLE
)))
969 /* FIXME: some better error checking should be done...
970 * like if hConOut and hConIn are console handles, then they should be on the same
973 inherit_console( current
, process
, req
->inherit_all
? info
->data
->hstdin
: 0 );
976 if (!req
->inherit_all
&& !(req
->create_flags
& CREATE_NEW_CONSOLE
))
978 info
->data
->hstdin
= duplicate_handle( parent
, info
->data
->hstdin
, process
,
979 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
980 info
->data
->hstdout
= duplicate_handle( parent
, info
->data
->hstdout
, process
,
981 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
982 info
->data
->hstderr
= duplicate_handle( parent
, info
->data
->hstderr
, process
,
983 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
984 /* some handles above may have been invalid; this is not an error */
985 if (get_error() == STATUS_INVALID_HANDLE
||
986 get_error() == STATUS_OBJECT_TYPE_MISMATCH
) clear_error();
989 /* attach to the debugger if requested */
990 if (req
->create_flags
& (DEBUG_PROCESS
| DEBUG_ONLY_THIS_PROCESS
))
991 set_process_debugger( process
, current
);
992 else if (parent
->debugger
&& parent
->debug_children
)
993 set_process_debugger( process
, parent
->debugger
);
995 if (!(req
->create_flags
& CREATE_NEW_PROCESS_GROUP
))
996 process
->group_id
= parent
->group_id
;
998 info
->process
= (struct process
*)grab_object( process
);
999 reply
->info
= alloc_handle( current
->process
, info
, SYNCHRONIZE
, 0 );
1000 reply
->pid
= get_process_id( process
);
1001 reply
->tid
= get_thread_id( thread
);
1002 reply
->phandle
= alloc_handle( parent
, process
, req
->process_access
, req
->process_attr
);
1003 reply
->thandle
= alloc_handle( parent
, thread
, req
->thread_access
, req
->thread_attr
);
1006 release_object( info
);
1009 /* Retrieve information about a newly started process */
1010 DECL_HANDLER(get_new_process_info
)
1012 struct startup_info
*info
;
1014 if ((info
= (struct startup_info
*)get_handle_obj( current
->process
, req
->info
,
1015 0, &startup_info_ops
)))
1017 reply
->success
= is_process_init_done( info
->process
);
1018 reply
->exit_code
= info
->process
->exit_code
;
1019 release_object( info
);
1023 /* Retrieve the new process startup info */
1024 DECL_HANDLER(get_startup_info
)
1026 struct process
*process
= current
->process
;
1027 struct startup_info
*info
= process
->startup_info
;
1032 if (info
->exe_file
&&
1033 !(reply
->exe_file
= alloc_handle( process
, info
->exe_file
, GENERIC_READ
, 0 ))) return;
1035 /* we return the data directly without making a copy so this can only be called once */
1036 reply
->info_size
= info
->info_size
;
1037 size
= info
->data_size
;
1038 if (size
> get_reply_max_size()) size
= get_reply_max_size();
1039 set_reply_data_ptr( info
->data
, size
);
1041 info
->data_size
= 0;
1044 /* signal the end of the process initialization */
1045 DECL_HANDLER(init_process_done
)
1047 struct process_dll
*dll
;
1048 struct process
*process
= current
->process
;
1050 if (is_process_init_done(process
))
1052 set_error( STATUS_INVALID_PARAMETER
);
1055 if (!(dll
= find_process_dll( process
, req
->module
)))
1057 set_error( STATUS_DLL_NOT_FOUND
);
1061 /* main exe is the first in the dll list */
1062 list_remove( &dll
->entry
);
1063 list_add_head( &process
->dlls
, &dll
->entry
);
1065 process
->ldt_copy
= req
->ldt_copy
;
1066 process
->start_time
= current_time
;
1068 generate_startup_debug_events( process
, req
->entry
);
1069 set_process_startup_state( process
, STARTUP_DONE
);
1071 if (req
->gui
) process
->idle_event
= create_event( NULL
, NULL
, 0, 1, 0, NULL
);
1072 stop_thread_if_suspended( current
);
1073 if (process
->debugger
) set_process_debug_flag( process
, 1 );
1076 /* open a handle to a process */
1077 DECL_HANDLER(open_process
)
1079 struct process
*process
= get_process_from_id( req
->pid
);
1083 reply
->handle
= alloc_handle( current
->process
, process
, req
->access
, req
->attributes
);
1084 release_object( process
);
1088 /* terminate a process */
1089 DECL_HANDLER(terminate_process
)
1091 struct process
*process
;
1095 process
= get_process_from_handle( req
->handle
, PROCESS_TERMINATE
);
1096 if (!process
) return;
1098 else process
= (struct process
*)grab_object( current
->process
);
1100 reply
->self
= (current
->process
== process
);
1101 terminate_process( process
, current
, req
->exit_code
);
1102 release_object( process
);
1105 /* fetch information about a process */
1106 DECL_HANDLER(get_process_info
)
1108 struct process
*process
;
1110 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1112 reply
->pid
= get_process_id( process
);
1113 reply
->ppid
= process
->parent
? get_process_id( process
->parent
) : 0;
1114 reply
->exit_code
= process
->exit_code
;
1115 reply
->priority
= process
->priority
;
1116 reply
->affinity
= process
->affinity
;
1117 reply
->peb
= process
->peb
;
1118 reply
->start_time
= process
->start_time
;
1119 reply
->end_time
= process
->end_time
;
1120 reply
->cpu
= process
->cpu
;
1121 reply
->debugger_present
= !!process
->debugger
;
1122 release_object( process
);
1126 static void set_process_affinity( struct process
*process
, affinity_t affinity
)
1128 struct thread
*thread
;
1130 if (!process
->running_threads
)
1132 set_error( STATUS_PROCESS_IS_TERMINATING
);
1136 process
->affinity
= affinity
;
1138 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
1140 set_thread_affinity( thread
, affinity
);
1144 /* set information about a process */
1145 DECL_HANDLER(set_process_info
)
1147 struct process
*process
;
1149 if ((process
= get_process_from_handle( req
->handle
, PROCESS_SET_INFORMATION
)))
1151 if (req
->mask
& SET_PROCESS_INFO_PRIORITY
) process
->priority
= req
->priority
;
1152 if (req
->mask
& SET_PROCESS_INFO_AFFINITY
) set_process_affinity( process
, req
->affinity
);
1153 release_object( process
);
1157 /* read data from a process address space */
1158 DECL_HANDLER(read_process_memory
)
1160 struct process
*process
;
1161 data_size_t len
= get_reply_max_size();
1163 if (!(process
= get_process_from_handle( req
->handle
, PROCESS_VM_READ
))) return;
1167 char *buffer
= mem_alloc( len
);
1170 if (read_process_memory( process
, req
->addr
, len
, buffer
))
1171 set_reply_data_ptr( buffer
, len
);
1176 release_object( process
);
1179 /* write data to a process address space */
1180 DECL_HANDLER(write_process_memory
)
1182 struct process
*process
;
1184 if ((process
= get_process_from_handle( req
->handle
, PROCESS_VM_WRITE
)))
1186 data_size_t len
= get_req_data_size();
1187 if (len
) write_process_memory( process
, req
->addr
, len
, get_req_data() );
1188 else set_error( STATUS_INVALID_PARAMETER
);
1189 release_object( process
);
1193 /* notify the server that a dll has been loaded */
1194 DECL_HANDLER(load_dll
)
1196 struct process_dll
*dll
;
1197 struct mapping
*mapping
= NULL
;
1199 if (req
->mapping
&& !(mapping
= get_mapping_obj( current
->process
, req
->mapping
, SECTION_QUERY
)))
1202 if ((dll
= process_load_dll( current
->process
, mapping
, req
->base
,
1203 get_req_data(), get_req_data_size() )))
1205 dll
->size
= req
->size
;
1206 dll
->dbg_offset
= req
->dbg_offset
;
1207 dll
->dbg_size
= req
->dbg_size
;
1208 dll
->name
= req
->name
;
1209 /* only generate event if initialization is done */
1210 if (is_process_init_done( current
->process
))
1211 generate_debug_event( current
, LOAD_DLL_DEBUG_EVENT
, dll
);
1213 if (mapping
) release_object( mapping
);
1216 /* notify the server that a dll is being unloaded */
1217 DECL_HANDLER(unload_dll
)
1219 process_unload_dll( current
->process
, req
->base
);
1222 /* retrieve information about a module in a process */
1223 DECL_HANDLER(get_dll_info
)
1225 struct process
*process
;
1227 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1229 struct process_dll
*dll
;
1231 if (req
->base_address
)
1232 dll
= find_process_dll( process
, req
->base_address
);
1233 else /* NULL means main module */
1234 dll
= list_head( &process
->dlls
) ?
1235 LIST_ENTRY(list_head( &process
->dlls
), struct process_dll
, entry
) : NULL
;
1239 reply
->size
= dll
->size
;
1240 reply
->entry_point
= 0; /* FIXME */
1241 reply
->filename_len
= dll
->namelen
;
1244 if (dll
->namelen
<= get_reply_max_size())
1245 set_reply_data( dll
->filename
, dll
->namelen
);
1247 set_error( STATUS_BUFFER_TOO_SMALL
);
1251 set_error( STATUS_DLL_NOT_FOUND
);
1253 release_object( process
);
1257 /* retrieve the process idle event */
1258 DECL_HANDLER(get_process_idle_event
)
1260 struct process
*process
;
1263 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1265 if (process
->idle_event
&& process
!= current
->process
)
1266 reply
->event
= alloc_handle( current
->process
, process
->idle_event
,
1267 EVENT_ALL_ACCESS
, 0 );
1268 release_object( process
);
1272 /* make the current process a system process */
1273 DECL_HANDLER(make_process_system
)
1275 struct process
*process
= current
->process
;
1277 if (!shutdown_event
)
1279 if (!(shutdown_event
= create_event( NULL
, NULL
, 0, 1, 0, NULL
))) return;
1280 make_object_static( (struct object
*)shutdown_event
);
1283 if (!(reply
->event
= alloc_handle( current
->process
, shutdown_event
, SYNCHRONIZE
, 0 )))
1286 if (!process
->is_system
)
1288 process
->is_system
= 1;
1289 close_process_desktop( process
);
1290 if (!--user_processes
&& !shutdown_stage
&& master_socket_timeout
!= TIMEOUT_INFINITE
)
1291 shutdown_timeout
= add_timeout_user( master_socket_timeout
, server_shutdown_timeout
, NULL
);