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 thread
*thread
);
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 */
96 NULL
, /* queue_async */
97 NULL
, /* async_event */
98 NULL
, /* async_terminated */
99 NULL
/* cancel async */
102 /* process startup info */
106 struct object obj
; /* object header */
107 struct file
*exe_file
; /* file handle for main exe */
108 struct process
*process
; /* created process */
109 data_size_t info_size
; /* size of startup info */
110 data_size_t data_size
; /* size of whole startup data */
111 startup_info_t
*data
; /* data for startup info */
114 static void startup_info_dump( struct object
*obj
, int verbose
);
115 static int startup_info_signaled( struct object
*obj
, struct thread
*thread
);
116 static void startup_info_destroy( struct object
*obj
);
118 static const struct object_ops startup_info_ops
=
120 sizeof(struct startup_info
), /* size */
121 startup_info_dump
, /* dump */
122 no_get_type
, /* get_type */
123 add_queue
, /* add_queue */
124 remove_queue
, /* remove_queue */
125 startup_info_signaled
, /* signaled */
126 no_satisfied
, /* satisfied */
127 no_signal
, /* signal */
128 no_get_fd
, /* get_fd */
129 no_map_access
, /* map_access */
130 default_get_sd
, /* get_sd */
131 default_set_sd
, /* set_sd */
132 no_lookup_name
, /* lookup_name */
133 no_open_file
, /* open_file */
134 no_close_handle
, /* close_handle */
135 startup_info_destroy
/* destroy */
141 void *ptr
; /* entry ptr */
142 unsigned int next
; /* next free entry */
145 static struct ptid_entry
*ptid_entries
; /* array of ptid entries */
146 static unsigned int used_ptid_entries
; /* number of entries in use */
147 static unsigned int alloc_ptid_entries
; /* number of allocated entries */
148 static unsigned int next_free_ptid
; /* next free entry */
149 static unsigned int last_free_ptid
; /* last free entry */
151 static void kill_all_processes(void);
153 #define PTID_OFFSET 8 /* offset for first ptid value */
155 /* allocate a new process or thread id */
156 unsigned int alloc_ptid( void *ptr
)
158 struct ptid_entry
*entry
;
161 if (used_ptid_entries
< alloc_ptid_entries
)
163 id
= used_ptid_entries
+ PTID_OFFSET
;
164 entry
= &ptid_entries
[used_ptid_entries
++];
166 else if (next_free_ptid
)
169 entry
= &ptid_entries
[id
- PTID_OFFSET
];
170 if (!(next_free_ptid
= entry
->next
)) last_free_ptid
= 0;
172 else /* need to grow the array */
174 unsigned int count
= alloc_ptid_entries
+ (alloc_ptid_entries
/ 2);
175 if (!count
) count
= 64;
176 if (!(entry
= realloc( ptid_entries
, count
* sizeof(*entry
) )))
178 set_error( STATUS_NO_MEMORY
);
181 ptid_entries
= entry
;
182 alloc_ptid_entries
= count
;
183 id
= used_ptid_entries
+ PTID_OFFSET
;
184 entry
= &ptid_entries
[used_ptid_entries
++];
191 /* free a process or thread id */
192 void free_ptid( unsigned int id
)
194 struct ptid_entry
*entry
= &ptid_entries
[id
- PTID_OFFSET
];
199 /* append to end of free list so that we don't reuse it too early */
200 if (last_free_ptid
) ptid_entries
[last_free_ptid
- PTID_OFFSET
].next
= id
;
201 else next_free_ptid
= id
;
206 /* retrieve the pointer corresponding to a process or thread id */
207 void *get_ptid_entry( unsigned int id
)
209 if (id
< PTID_OFFSET
) return NULL
;
210 if (id
- PTID_OFFSET
>= used_ptid_entries
) return NULL
;
211 return ptid_entries
[id
- PTID_OFFSET
].ptr
;
214 /* return the main thread of the process */
215 struct thread
*get_process_first_thread( struct process
*process
)
217 struct list
*ptr
= list_head( &process
->thread_list
);
218 if (!ptr
) return NULL
;
219 return LIST_ENTRY( ptr
, struct thread
, proc_entry
);
222 /* set the state of the process startup info */
223 static void set_process_startup_state( struct process
*process
, enum startup_state state
)
225 if (process
->startup_state
== STARTUP_IN_PROGRESS
) process
->startup_state
= state
;
226 if (process
->startup_info
)
228 wake_up( &process
->startup_info
->obj
, 0 );
229 release_object( process
->startup_info
);
230 process
->startup_info
= NULL
;
234 /* callback for server shutdown */
235 static void server_shutdown_timeout( void *arg
)
237 shutdown_timeout
= NULL
;
238 if (!running_processes
)
240 close_master_socket( 0 );
243 switch(++shutdown_stage
)
245 case 1: /* signal system processes to exit */
246 if (debug_level
) fprintf( stderr
, "wineserver: shutting down\n" );
247 if (shutdown_event
) set_event( shutdown_event
);
248 shutdown_timeout
= add_timeout_user( 2 * -TICKS_PER_SEC
, server_shutdown_timeout
, NULL
);
249 close_master_socket( 4 * -TICKS_PER_SEC
);
251 case 2: /* now forcibly kill all processes (but still wait for SIGKILL timeouts) */
252 kill_all_processes();
257 /* forced shutdown, used for wineserver -k */
258 void shutdown_master_socket(void)
260 kill_all_processes();
262 if (shutdown_timeout
)
264 remove_timeout_user( shutdown_timeout
);
265 shutdown_timeout
= NULL
;
267 close_master_socket( 2 * -TICKS_PER_SEC
); /* for SIGKILL timeouts */
270 /* final cleanup once we are sure a process is really dead */
271 static void process_died( struct process
*process
)
273 if (debug_level
) fprintf( stderr
, "%04x: *process killed*\n", process
->id
);
274 if (!process
->is_system
)
276 if (!--user_processes
&& !shutdown_stage
&& master_socket_timeout
!= TIMEOUT_INFINITE
)
277 shutdown_timeout
= add_timeout_user( master_socket_timeout
, server_shutdown_timeout
, NULL
);
279 release_object( process
);
280 if (!--running_processes
&& shutdown_stage
) close_master_socket( 0 );
283 /* callback for process sigkill timeout */
284 static void process_sigkill( void *private )
286 struct process
*process
= private;
288 process
->sigkill_timeout
= NULL
;
289 kill( process
->unix_pid
, SIGKILL
);
290 process_died( process
);
293 /* start the sigkill timer for a process upon exit */
294 static void start_sigkill_timer( struct process
*process
)
296 grab_object( process
);
297 if (process
->unix_pid
!= -1 && process
->msg_fd
)
298 process
->sigkill_timeout
= add_timeout_user( -TICKS_PER_SEC
, process_sigkill
, process
);
300 process_died( process
);
303 /* create a new process and its main thread */
304 /* if the function fails the fd is closed */
305 struct thread
*create_process( int fd
, struct thread
*parent_thread
, int inherit_all
)
307 struct process
*process
;
308 struct thread
*thread
= NULL
;
311 if (!(process
= alloc_object( &process_ops
)))
316 process
->parent
= NULL
;
317 process
->debugger
= NULL
;
318 process
->handles
= NULL
;
319 process
->msg_fd
= NULL
;
320 process
->sigkill_timeout
= NULL
;
321 process
->unix_pid
= -1;
322 process
->exit_code
= STILL_ACTIVE
;
323 process
->running_threads
= 0;
324 process
->priority
= PROCESS_PRIOCLASS_NORMAL
;
325 process
->affinity
= ~0;
326 process
->suspend
= 0;
327 process
->is_system
= 0;
328 process
->create_flags
= 0;
329 process
->console
= NULL
;
330 process
->startup_state
= STARTUP_IN_PROGRESS
;
331 process
->startup_info
= NULL
;
332 process
->idle_event
= NULL
;
334 process
->ldt_copy
= 0;
335 process
->winstation
= 0;
336 process
->desktop
= 0;
337 process
->token
= NULL
;
338 process
->trace_data
= 0;
339 list_init( &process
->thread_list
);
340 list_init( &process
->locks
);
341 list_init( &process
->classes
);
342 list_init( &process
->dlls
);
344 process
->start_time
= current_time
;
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();
363 struct process
*parent
= parent_thread
->process
;
364 process
->parent
= (struct process
*)grab_object( parent
);
365 process
->handles
= inherit_all
? copy_handle_table( process
, parent
)
366 : alloc_handle_table( process
, 0 );
367 /* Note: for security reasons, starting a new process does not attempt
368 * to use the current impersonation token for the new process */
369 process
->token
= token_duplicate( parent
->token
, TRUE
, 0 );
371 if (!process
->handles
|| !process
->token
) goto error
;
373 /* create the main thread */
374 if (pipe( request_pipe
) == -1)
379 if (send_client_fd( process
, request_pipe
[1], SERVER_PROTOCOL_VERSION
) == -1)
381 close( request_pipe
[0] );
382 close( request_pipe
[1] );
385 close( request_pipe
[1] );
386 if (!(thread
= create_thread( request_pipe
[0], process
))) goto error
;
388 set_fd_events( process
->msg_fd
, POLLIN
); /* start listening to events */
389 release_object( process
);
393 if (process
) release_object( process
);
394 /* if we failed to start our first process, close everything down */
395 if (!running_processes
) close_master_socket( 0 );
399 /* initialize the current process and fill in the request */
400 data_size_t
init_process( struct thread
*thread
)
402 struct process
*process
= thread
->process
;
403 struct startup_info
*info
= process
->startup_info
;
405 init_process_tracing( process
);
407 return info
->data_size
;
410 /* destroy a process when its refcount is 0 */
411 static void process_destroy( struct object
*obj
)
413 struct process
*process
= (struct process
*)obj
;
414 assert( obj
->ops
== &process_ops
);
416 /* we can't have a thread remaining */
417 assert( list_empty( &process
->thread_list
));
419 assert( !process
->sigkill_timeout
); /* timeout should hold a reference to the process */
421 set_process_startup_state( process
, STARTUP_ABORTED
);
422 if (process
->console
) release_object( process
->console
);
423 if (process
->parent
) release_object( process
->parent
);
424 if (process
->msg_fd
) release_object( process
->msg_fd
);
425 list_remove( &process
->entry
);
426 if (process
->idle_event
) release_object( process
->idle_event
);
427 if (process
->id
) free_ptid( process
->id
);
428 if (process
->token
) release_object( process
->token
);
431 /* dump a process on stdout for debugging purposes */
432 static void process_dump( struct object
*obj
, int verbose
)
434 struct process
*process
= (struct process
*)obj
;
435 assert( obj
->ops
== &process_ops
);
437 fprintf( stderr
, "Process id=%04x handles=%p\n", process
->id
, process
->handles
);
440 static int process_signaled( struct object
*obj
, struct thread
*thread
)
442 struct process
*process
= (struct process
*)obj
;
443 return !process
->running_threads
;
446 static unsigned int process_map_access( struct object
*obj
, unsigned int access
)
448 if (access
& GENERIC_READ
) access
|= STANDARD_RIGHTS_READ
| SYNCHRONIZE
;
449 if (access
& GENERIC_WRITE
) access
|= STANDARD_RIGHTS_WRITE
| SYNCHRONIZE
;
450 if (access
& GENERIC_EXECUTE
) access
|= STANDARD_RIGHTS_EXECUTE
;
451 if (access
& GENERIC_ALL
) access
|= PROCESS_ALL_ACCESS
;
452 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
455 static void process_poll_event( struct fd
*fd
, int event
)
457 struct process
*process
= get_fd_user( fd
);
458 assert( process
->obj
.ops
== &process_ops
);
460 if (event
& (POLLERR
| POLLHUP
)) kill_process( process
, 0 );
461 else if (event
& POLLIN
) receive_fd( process
);
464 static void startup_info_destroy( struct object
*obj
)
466 struct startup_info
*info
= (struct startup_info
*)obj
;
467 assert( obj
->ops
== &startup_info_ops
);
469 if (info
->exe_file
) release_object( info
->exe_file
);
470 if (info
->process
) release_object( info
->process
);
473 static void startup_info_dump( struct object
*obj
, int verbose
)
475 struct startup_info
*info
= (struct startup_info
*)obj
;
476 assert( obj
->ops
== &startup_info_ops
);
478 fprintf( stderr
, "Startup info in=%04x out=%04x err=%04x\n",
479 info
->data
->hstdin
, info
->data
->hstdout
, info
->data
->hstderr
);
482 static int startup_info_signaled( struct object
*obj
, struct thread
*thread
)
484 struct startup_info
*info
= (struct startup_info
*)obj
;
485 return info
->process
&& info
->process
->startup_state
!= STARTUP_IN_PROGRESS
;
488 /* get a process from an id (and increment the refcount) */
489 struct process
*get_process_from_id( process_id_t id
)
491 struct object
*obj
= get_ptid_entry( id
);
493 if (obj
&& obj
->ops
== &process_ops
) return (struct process
*)grab_object( obj
);
494 set_error( STATUS_INVALID_PARAMETER
);
498 /* get a process from a handle (and increment the refcount) */
499 struct process
*get_process_from_handle( obj_handle_t handle
, unsigned int access
)
501 return (struct process
*)get_handle_obj( current
->process
, handle
,
502 access
, &process_ops
);
505 /* find a dll from its base address */
506 static inline struct process_dll
*find_process_dll( struct process
*process
, mod_handle_t base
)
508 struct process_dll
*dll
;
510 LIST_FOR_EACH_ENTRY( dll
, &process
->dlls
, struct process_dll
, entry
)
512 if (dll
->base
== base
) return dll
;
517 /* add a dll to a process list */
518 static struct process_dll
*process_load_dll( struct process
*process
, struct file
*file
,
519 mod_handle_t base
, const WCHAR
*filename
,
520 data_size_t name_len
)
522 struct process_dll
*dll
;
524 /* make sure we don't already have one with the same base address */
525 if (find_process_dll( process
, base
))
527 set_error( STATUS_INVALID_PARAMETER
);
531 if ((dll
= mem_alloc( sizeof(*dll
) )))
535 dll
->filename
= NULL
;
536 dll
->namelen
= name_len
;
537 if (name_len
&& !(dll
->filename
= memdup( filename
, name_len
)))
542 if (file
) dll
->file
= grab_file_unless_removable( file
);
543 list_add_tail( &process
->dlls
, &dll
->entry
);
548 /* remove a dll from a process list */
549 static void process_unload_dll( struct process
*process
, mod_handle_t base
)
551 struct process_dll
*dll
= find_process_dll( process
, base
);
553 if (dll
&& (&dll
->entry
!= list_head( &process
->dlls
))) /* main exe can't be unloaded */
555 if (dll
->file
) release_object( dll
->file
);
556 free( dll
->filename
);
557 list_remove( &dll
->entry
);
559 generate_debug_event( current
, UNLOAD_DLL_DEBUG_EVENT
, &base
);
561 else set_error( STATUS_INVALID_PARAMETER
);
564 /* terminate a process with the given exit code */
565 static void terminate_process( struct process
*process
, struct thread
*skip
, int exit_code
)
567 struct thread
*thread
;
569 grab_object( process
); /* make sure it doesn't get freed when threads die */
571 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
573 if (exit_code
) thread
->exit_code
= exit_code
;
574 if (thread
== skip
) continue;
575 if (thread
->state
== TERMINATED
) continue;
576 kill_thread( thread
, 1 );
579 release_object( process
);
582 /* kill all processes */
583 static void kill_all_processes(void)
587 struct process
*process
;
589 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
591 if (process
->running_threads
) break;
593 if (&process
->entry
== &process_list
) break; /* no process found */
594 terminate_process( process
, NULL
, 1 );
598 /* kill all processes being attached to a console renderer */
599 void kill_console_processes( struct thread
*renderer
, int exit_code
)
601 for (;;) /* restart from the beginning of the list every time */
603 struct process
*process
;
605 /* find the first process being attached to 'renderer' and still running */
606 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
608 if (process
== renderer
->process
) continue;
609 if (!process
->running_threads
) continue;
610 if (process
->console
&& console_get_renderer( process
->console
) == renderer
) break;
612 if (&process
->entry
== &process_list
) break; /* no process found */
613 terminate_process( process
, NULL
, exit_code
);
617 /* a process has been killed (i.e. its last thread died) */
618 static void process_killed( struct process
*process
)
620 struct handle_table
*handles
;
623 assert( list_empty( &process
->thread_list
));
624 process
->end_time
= current_time
;
625 if (!process
->is_system
) close_process_desktop( process
);
626 handles
= process
->handles
;
627 process
->handles
= NULL
;
628 if (handles
) release_object( handles
);
629 process
->winstation
= 0;
630 process
->desktop
= 0;
631 if (process
->idle_event
)
633 release_object( process
->idle_event
);
634 process
->idle_event
= NULL
;
637 /* close the console attached to this process, if any */
638 free_console( process
);
640 while ((ptr
= list_head( &process
->dlls
)))
642 struct process_dll
*dll
= LIST_ENTRY( ptr
, struct process_dll
, entry
);
643 if (dll
->file
) release_object( dll
->file
);
644 free( dll
->filename
);
645 list_remove( &dll
->entry
);
648 destroy_process_classes( process
);
649 free_process_user_handles( process
);
650 remove_process_locks( process
);
651 set_process_startup_state( process
, STARTUP_ABORTED
);
652 finish_process_tracing( process
);
653 start_sigkill_timer( process
);
654 wake_up( &process
->obj
, 0 );
657 /* add a thread to a process running threads list */
658 void add_process_thread( struct process
*process
, struct thread
*thread
)
660 list_add_tail( &process
->thread_list
, &thread
->proc_entry
);
661 if (!process
->running_threads
++)
664 if (!process
->is_system
)
666 if (!user_processes
++ && shutdown_timeout
)
668 remove_timeout_user( shutdown_timeout
);
669 shutdown_timeout
= NULL
;
673 grab_object( thread
);
676 /* remove a thread from a process running threads list */
677 void remove_process_thread( struct process
*process
, struct thread
*thread
)
679 assert( process
->running_threads
> 0 );
680 assert( !list_empty( &process
->thread_list
));
682 list_remove( &thread
->proc_entry
);
684 if (!--process
->running_threads
)
686 /* we have removed the last running thread, exit the process */
687 process
->exit_code
= thread
->exit_code
;
688 generate_debug_event( thread
, EXIT_PROCESS_DEBUG_EVENT
, process
);
689 process_killed( process
);
691 else generate_debug_event( thread
, EXIT_THREAD_DEBUG_EVENT
, thread
);
692 release_object( thread
);
695 /* suspend all the threads of a process */
696 void suspend_process( struct process
*process
)
698 if (!process
->suspend
++)
700 struct list
*ptr
, *next
;
702 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
704 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
705 if (!thread
->suspend
) stop_thread( thread
);
710 /* resume all the threads of a process */
711 void resume_process( struct process
*process
)
713 assert (process
->suspend
> 0);
714 if (!--process
->suspend
)
716 struct list
*ptr
, *next
;
718 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
720 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
721 if (!thread
->suspend
) wake_thread( thread
);
726 /* kill a process on the spot */
727 void kill_process( struct process
*process
, int violent_death
)
729 if (!violent_death
&& process
->msg_fd
) /* normal termination on pipe close */
731 release_object( process
->msg_fd
);
732 process
->msg_fd
= NULL
;
735 if (process
->sigkill_timeout
) /* already waiting for it to die */
737 remove_timeout_user( process
->sigkill_timeout
);
738 process
->sigkill_timeout
= NULL
;
739 process_died( process
);
743 if (violent_death
) terminate_process( process
, NULL
, 1 );
748 grab_object( process
); /* make sure it doesn't get freed when threads die */
749 while ((ptr
= list_head( &process
->thread_list
)))
751 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
752 kill_thread( thread
, 0 );
754 release_object( process
);
758 /* kill all processes being debugged by a given thread */
759 void kill_debugged_processes( struct thread
*debugger
, int exit_code
)
761 for (;;) /* restart from the beginning of the list every time */
763 struct process
*process
;
765 /* find the first process being debugged by 'debugger' and still running */
766 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
768 if (!process
->running_threads
) continue;
769 if (process
->debugger
== debugger
) break;
771 if (&process
->entry
== &process_list
) break; /* no process found */
772 process
->debugger
= NULL
;
773 terminate_process( process
, NULL
, exit_code
);
778 /* trigger a breakpoint event in a given process */
779 void break_process( struct process
*process
)
781 struct thread
*thread
;
783 suspend_process( process
);
785 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
787 if (thread
->context
) /* inside an exception event already */
789 break_thread( thread
);
793 if ((thread
= get_process_first_thread( process
))) thread
->debug_break
= 1;
794 else set_error( STATUS_ACCESS_DENIED
);
796 resume_process( process
);
800 /* detach a debugger from all its debuggees */
801 void detach_debugged_processes( struct thread
*debugger
)
803 struct process
*process
;
805 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
807 if (process
->debugger
== debugger
&& process
->running_threads
)
809 debugger_detach( process
, debugger
);
815 void enum_processes( int (*cb
)(struct process
*, void*), void *user
)
817 struct list
*ptr
, *next
;
819 LIST_FOR_EACH_SAFE( ptr
, next
, &process_list
)
821 struct process
*process
= LIST_ENTRY( ptr
, struct process
, entry
);
822 if ((cb
)(process
, user
)) break;
826 /* set the debugged flag in the process PEB */
827 int set_process_debug_flag( struct process
*process
, int flag
)
829 char data
= (flag
!= 0);
831 /* BeingDebugged flag is the byte at offset 2 in the PEB */
832 return write_process_memory( process
, process
->peb
+ 2, 1, &data
);
835 /* take a snapshot of currently running processes */
836 struct process_snapshot
*process_snap( int *count
)
838 struct process_snapshot
*snapshot
, *ptr
;
839 struct process
*process
;
841 if (!running_processes
) return NULL
;
842 if (!(snapshot
= mem_alloc( sizeof(*snapshot
) * running_processes
)))
845 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
847 if (!process
->running_threads
) continue;
848 ptr
->process
= process
;
849 ptr
->threads
= process
->running_threads
;
850 ptr
->count
= process
->obj
.refcount
;
851 ptr
->priority
= process
->priority
;
852 ptr
->handles
= get_handle_table_count(process
);
853 grab_object( process
);
857 if (!(*count
= ptr
- snapshot
))
865 /* create a new process */
866 DECL_HANDLER(new_process
)
868 struct startup_info
*info
;
869 struct thread
*thread
;
870 struct process
*process
;
871 struct process
*parent
= current
->process
;
872 int socket_fd
= thread_get_inflight_fd( current
, req
->socket_fd
);
876 set_error( STATUS_INVALID_PARAMETER
);
879 if (fcntl( socket_fd
, F_SETFL
, O_NONBLOCK
) == -1)
881 set_error( STATUS_INVALID_HANDLE
);
887 set_error( STATUS_SHUTDOWN_IN_PROGRESS
);
892 /* build the startup info for a new process */
893 if (!(info
= alloc_object( &startup_info_ops
))) return;
894 info
->exe_file
= NULL
;
895 info
->process
= NULL
;
899 !(info
->exe_file
= get_file_obj( current
->process
, req
->exe_file
, FILE_READ_DATA
)))
902 info
->data_size
= get_req_data_size();
903 info
->info_size
= min( req
->info_size
, info
->data_size
);
905 if (req
->info_size
< sizeof(*info
->data
))
907 /* make sure we have a full startup_info_t structure */
908 data_size_t env_size
= info
->data_size
- info
->info_size
;
909 data_size_t info_size
= min( req
->info_size
, FIELD_OFFSET( startup_info_t
, curdir_len
));
911 if (!(info
->data
= mem_alloc( sizeof(*info
->data
) + env_size
))) goto done
;
912 memcpy( info
->data
, get_req_data(), info_size
);
913 memset( (char *)info
->data
+ info_size
, 0, sizeof(*info
->data
) - info_size
);
914 memcpy( info
->data
+ 1, (const char *)get_req_data() + req
->info_size
, env_size
);
915 info
->info_size
= sizeof(startup_info_t
);
916 info
->data_size
= info
->info_size
+ env_size
;
920 data_size_t pos
= sizeof(*info
->data
);
922 if (!(info
->data
= memdup( get_req_data(), info
->data_size
))) goto done
;
923 #define FIXUP_LEN(len) do { (len) = min( (len), info->info_size - pos ); pos += (len); } while(0)
924 FIXUP_LEN( info
->data
->curdir_len
);
925 FIXUP_LEN( info
->data
->dllpath_len
);
926 FIXUP_LEN( info
->data
->imagepath_len
);
927 FIXUP_LEN( info
->data
->cmdline_len
);
928 FIXUP_LEN( info
->data
->title_len
);
929 FIXUP_LEN( info
->data
->desktop_len
);
930 FIXUP_LEN( info
->data
->shellinfo_len
);
931 FIXUP_LEN( info
->data
->runtime_len
);
935 if (!(thread
= create_process( socket_fd
, current
, req
->inherit_all
))) goto done
;
936 process
= thread
->process
;
937 process
->create_flags
= req
->create_flags
;
938 process
->startup_info
= (struct startup_info
*)grab_object( info
);
940 /* connect to the window station */
941 connect_process_winstation( process
, current
);
943 /* thread will be actually suspended in init_done */
944 if (req
->create_flags
& CREATE_SUSPENDED
) thread
->suspend
++;
946 /* set the process console */
947 if (!(req
->create_flags
& (DETACHED_PROCESS
| CREATE_NEW_CONSOLE
)))
949 /* FIXME: some better error checking should be done...
950 * like if hConOut and hConIn are console handles, then they should be on the same
953 inherit_console( current
, process
, req
->inherit_all
? info
->data
->hstdin
: 0 );
956 if (!req
->inherit_all
&& !(req
->create_flags
& CREATE_NEW_CONSOLE
))
958 info
->data
->hstdin
= duplicate_handle( parent
, info
->data
->hstdin
, process
,
959 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
960 info
->data
->hstdout
= duplicate_handle( parent
, info
->data
->hstdout
, process
,
961 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
962 info
->data
->hstderr
= duplicate_handle( parent
, info
->data
->hstderr
, process
,
963 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
964 /* some handles above may have been invalid; this is not an error */
965 if (get_error() == STATUS_INVALID_HANDLE
||
966 get_error() == STATUS_OBJECT_TYPE_MISMATCH
) clear_error();
969 /* attach to the debugger if requested */
970 if (req
->create_flags
& (DEBUG_PROCESS
| DEBUG_ONLY_THIS_PROCESS
))
971 set_process_debugger( process
, current
);
972 else if (parent
->debugger
&& !(parent
->create_flags
& DEBUG_ONLY_THIS_PROCESS
))
973 set_process_debugger( process
, parent
->debugger
);
975 if (!(req
->create_flags
& CREATE_NEW_PROCESS_GROUP
))
976 process
->group_id
= parent
->group_id
;
978 info
->process
= (struct process
*)grab_object( process
);
979 reply
->info
= alloc_handle( current
->process
, info
, SYNCHRONIZE
, 0 );
980 reply
->pid
= get_process_id( process
);
981 reply
->tid
= get_thread_id( thread
);
982 reply
->phandle
= alloc_handle( parent
, process
, req
->process_access
, req
->process_attr
);
983 reply
->thandle
= alloc_handle( parent
, thread
, req
->thread_access
, req
->thread_attr
);
986 release_object( info
);
989 /* Retrieve information about a newly started process */
990 DECL_HANDLER(get_new_process_info
)
992 struct startup_info
*info
;
994 if ((info
= (struct startup_info
*)get_handle_obj( current
->process
, req
->info
,
995 0, &startup_info_ops
)))
997 reply
->success
= is_process_init_done( info
->process
);
998 reply
->exit_code
= info
->process
->exit_code
;
999 release_object( info
);
1003 /* Retrieve the new process startup info */
1004 DECL_HANDLER(get_startup_info
)
1006 struct process
*process
= current
->process
;
1007 struct startup_info
*info
= process
->startup_info
;
1012 if (info
->exe_file
&&
1013 !(reply
->exe_file
= alloc_handle( process
, info
->exe_file
, GENERIC_READ
, 0 ))) return;
1015 /* we return the data directly without making a copy so this can only be called once */
1016 reply
->info_size
= info
->info_size
;
1017 size
= info
->data_size
;
1018 if (size
> get_reply_max_size()) size
= get_reply_max_size();
1019 set_reply_data_ptr( info
->data
, size
);
1021 info
->data_size
= 0;
1024 /* signal the end of the process initialization */
1025 DECL_HANDLER(init_process_done
)
1027 struct process_dll
*dll
;
1028 struct process
*process
= current
->process
;
1030 if (is_process_init_done(process
))
1032 set_error( STATUS_INVALID_PARAMETER
);
1035 if (!(dll
= find_process_dll( process
, req
->module
)))
1037 set_error( STATUS_DLL_NOT_FOUND
);
1041 /* main exe is the first in the dll list */
1042 list_remove( &dll
->entry
);
1043 list_add_head( &process
->dlls
, &dll
->entry
);
1045 process
->ldt_copy
= req
->ldt_copy
;
1047 generate_startup_debug_events( process
, req
->entry
);
1048 set_process_startup_state( process
, STARTUP_DONE
);
1050 if (req
->gui
) process
->idle_event
= create_event( NULL
, NULL
, 0, 1, 0, NULL
);
1051 if (current
->suspend
+ process
->suspend
> 0) stop_thread( current
);
1052 if (process
->debugger
) set_process_debug_flag( process
, 1 );
1055 /* open a handle to a process */
1056 DECL_HANDLER(open_process
)
1058 struct process
*process
= get_process_from_id( req
->pid
);
1062 reply
->handle
= alloc_handle( current
->process
, process
, req
->access
, req
->attributes
);
1063 release_object( process
);
1067 /* terminate a process */
1068 DECL_HANDLER(terminate_process
)
1070 struct process
*process
;
1072 if ((process
= get_process_from_handle( req
->handle
, PROCESS_TERMINATE
)))
1074 reply
->self
= (current
->process
== process
);
1075 terminate_process( process
, current
, req
->exit_code
);
1076 release_object( process
);
1080 /* fetch information about a process */
1081 DECL_HANDLER(get_process_info
)
1083 struct process
*process
;
1085 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1087 reply
->pid
= get_process_id( process
);
1088 reply
->ppid
= process
->parent
? get_process_id( process
->parent
) : 0;
1089 reply
->exit_code
= process
->exit_code
;
1090 reply
->priority
= process
->priority
;
1091 reply
->affinity
= process
->affinity
;
1092 reply
->peb
= process
->peb
;
1093 reply
->start_time
= process
->start_time
;
1094 reply
->end_time
= process
->end_time
;
1095 reply
->cpu
= process
->cpu
;
1096 reply
->debugger_present
= !!process
->debugger
;
1097 release_object( process
);
1101 static void set_process_affinity( struct process
*process
, affinity_t affinity
)
1103 struct thread
*thread
;
1105 process
->affinity
= affinity
;
1107 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
1109 set_thread_affinity( thread
, affinity
);
1113 /* set information about a process */
1114 DECL_HANDLER(set_process_info
)
1116 struct process
*process
;
1118 if ((process
= get_process_from_handle( req
->handle
, PROCESS_SET_INFORMATION
)))
1120 if (req
->mask
& SET_PROCESS_INFO_PRIORITY
) process
->priority
= req
->priority
;
1121 if (req
->mask
& SET_PROCESS_INFO_AFFINITY
) set_process_affinity( process
, req
->affinity
);
1122 release_object( process
);
1126 /* read data from a process address space */
1127 DECL_HANDLER(read_process_memory
)
1129 struct process
*process
;
1130 data_size_t len
= get_reply_max_size();
1132 if (!(process
= get_process_from_handle( req
->handle
, PROCESS_VM_READ
))) return;
1136 char *buffer
= mem_alloc( len
);
1139 if (read_process_memory( process
, req
->addr
, len
, buffer
))
1140 set_reply_data_ptr( buffer
, len
);
1145 release_object( process
);
1148 /* write data to a process address space */
1149 DECL_HANDLER(write_process_memory
)
1151 struct process
*process
;
1153 if ((process
= get_process_from_handle( req
->handle
, PROCESS_VM_WRITE
)))
1155 data_size_t len
= get_req_data_size();
1156 if (len
) write_process_memory( process
, req
->addr
, len
, get_req_data() );
1157 else set_error( STATUS_INVALID_PARAMETER
);
1158 release_object( process
);
1162 /* notify the server that a dll has been loaded */
1163 DECL_HANDLER(load_dll
)
1165 struct process_dll
*dll
;
1166 struct file
*file
= NULL
;
1168 if (req
->handle
&& !(file
= get_file_obj( current
->process
, req
->handle
, FILE_READ_DATA
)))
1171 if ((dll
= process_load_dll( current
->process
, file
, req
->base
,
1172 get_req_data(), get_req_data_size() )))
1174 dll
->size
= req
->size
;
1175 dll
->dbg_offset
= req
->dbg_offset
;
1176 dll
->dbg_size
= req
->dbg_size
;
1177 dll
->name
= req
->name
;
1178 /* only generate event if initialization is done */
1179 if (is_process_init_done( current
->process
))
1180 generate_debug_event( current
, LOAD_DLL_DEBUG_EVENT
, dll
);
1182 if (file
) release_object( file
);
1185 /* notify the server that a dll is being unloaded */
1186 DECL_HANDLER(unload_dll
)
1188 process_unload_dll( current
->process
, req
->base
);
1191 /* retrieve information about a module in a process */
1192 DECL_HANDLER(get_dll_info
)
1194 struct process
*process
;
1196 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1198 struct process_dll
*dll
;
1200 if (req
->base_address
)
1201 dll
= find_process_dll( process
, req
->base_address
);
1202 else /* NULL means main module */
1203 dll
= list_head( &process
->dlls
) ?
1204 LIST_ENTRY(list_head( &process
->dlls
), struct process_dll
, entry
) : NULL
;
1208 reply
->size
= dll
->size
;
1209 reply
->entry_point
= 0; /* FIXME */
1210 reply
->filename_len
= dll
->namelen
;
1213 if (dll
->namelen
<= get_reply_max_size())
1214 set_reply_data( dll
->filename
, dll
->namelen
);
1216 set_error( STATUS_BUFFER_TOO_SMALL
);
1220 set_error( STATUS_DLL_NOT_FOUND
);
1222 release_object( process
);
1226 /* retrieve the process idle event */
1227 DECL_HANDLER(get_process_idle_event
)
1229 struct process
*process
;
1232 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1234 if (process
->idle_event
&& process
!= current
->process
)
1235 reply
->event
= alloc_handle( current
->process
, process
->idle_event
,
1236 EVENT_ALL_ACCESS
, 0 );
1237 release_object( process
);
1241 /* make the current process a system process */
1242 DECL_HANDLER(make_process_system
)
1244 struct process
*process
= current
->process
;
1246 if (!shutdown_event
)
1248 if (!(shutdown_event
= create_event( NULL
, NULL
, 0, 1, 0, NULL
))) return;
1249 make_object_static( (struct object
*)shutdown_event
);
1252 if (!(reply
->event
= alloc_handle( current
->process
, shutdown_event
, SYNCHRONIZE
, 0 )))
1255 if (!process
->is_system
)
1257 process
->is_system
= 1;
1258 close_process_desktop( process
);
1259 if (!--user_processes
&& !shutdown_stage
&& master_socket_timeout
!= TIMEOUT_INFINITE
)
1260 shutdown_timeout
= add_timeout_user( master_socket_timeout
, server_shutdown_timeout
, NULL
);