Release 1.5.29.
[wine] / server / process.c
1 /*
2  * Server-side process management
3  *
4  * Copyright (C) 1998 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <limits.h>
26 #include <signal.h>
27 #include <string.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <sys/time.h>
32 #ifdef HAVE_SYS_SOCKET_H
33 # include <sys/socket.h>
34 #endif
35 #include <unistd.h>
36 #ifdef HAVE_POLL_H
37 #include <poll.h>
38 #endif
39
40 #include "ntstatus.h"
41 #define WIN32_NO_STATUS
42 #include "winternl.h"
43
44 #include "file.h"
45 #include "handle.h"
46 #include "process.h"
47 #include "thread.h"
48 #include "request.h"
49 #include "user.h"
50 #include "security.h"
51
52 /* process structure */
53
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 */
59
60 /* process operations */
61
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 );
67
68 static const struct object_ops process_ops =
69 {
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 */
86 };
87
88 static const struct fd_ops process_fd_ops =
89 {
90     NULL,                        /* get_poll_events */
91     process_poll_event,          /* poll_event */
92     NULL,                        /* flush */
93     NULL,                        /* get_fd_type */
94     NULL,                        /* ioctl */
95     NULL,                        /* queue_async */
96     NULL,                        /* reselect_async */
97     NULL                         /* cancel async */
98 };
99
100 /* process startup info */
101
102 struct startup_info
103 {
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 */
110 };
111
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 );
115
116 static const struct object_ops startup_info_ops =
117 {
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 */
134 };
135
136
137 struct ptid_entry
138 {
139     void        *ptr;   /* entry ptr */
140     unsigned int next;  /* next free entry */
141 };
142
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 */
148
149 static void kill_all_processes(void);
150
151 #define PTID_OFFSET 8  /* offset for first ptid value */
152
153 /* allocate a new process or thread id */
154 unsigned int alloc_ptid( void *ptr )
155 {
156     struct ptid_entry *entry;
157     unsigned int id;
158
159     if (used_ptid_entries < alloc_ptid_entries)
160     {
161         id = used_ptid_entries + PTID_OFFSET;
162         entry = &ptid_entries[used_ptid_entries++];
163     }
164     else if (next_free_ptid)
165     {
166         id = next_free_ptid;
167         entry = &ptid_entries[id - PTID_OFFSET];
168         if (!(next_free_ptid = entry->next)) last_free_ptid = 0;
169     }
170     else  /* need to grow the array */
171     {
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) )))
175         {
176             set_error( STATUS_NO_MEMORY );
177             return 0;
178         }
179         ptid_entries = entry;
180         alloc_ptid_entries = count;
181         id = used_ptid_entries + PTID_OFFSET;
182         entry = &ptid_entries[used_ptid_entries++];
183     }
184
185     entry->ptr = ptr;
186     return id;
187 }
188
189 /* free a process or thread id */
190 void free_ptid( unsigned int id )
191 {
192     struct ptid_entry *entry = &ptid_entries[id - PTID_OFFSET];
193
194     entry->ptr  = NULL;
195     entry->next = 0;
196
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;
200
201     last_free_ptid = id;
202 }
203
204 /* retrieve the pointer corresponding to a process or thread id */
205 void *get_ptid_entry( unsigned int id )
206 {
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;
210 }
211
212 /* return the main thread of the process */
213 struct thread *get_process_first_thread( struct process *process )
214 {
215     struct list *ptr = list_head( &process->thread_list );
216     if (!ptr) return NULL;
217     return LIST_ENTRY( ptr, struct thread, proc_entry );
218 }
219
220 /* set the state of the process startup info */
221 static void set_process_startup_state( struct process *process, enum startup_state state )
222 {
223     if (process->startup_state == STARTUP_IN_PROGRESS) process->startup_state = state;
224     if (process->startup_info)
225     {
226         wake_up( &process->startup_info->obj, 0 );
227         release_object( process->startup_info );
228         process->startup_info = NULL;
229     }
230 }
231
232 /* callback for server shutdown */
233 static void server_shutdown_timeout( void *arg )
234 {
235     shutdown_timeout = NULL;
236     if (!running_processes)
237     {
238         close_master_socket( 0 );
239         return;
240     }
241     switch(++shutdown_stage)
242     {
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 );
248         break;
249     case 2:  /* now forcibly kill all processes (but still wait for SIGKILL timeouts) */
250         kill_all_processes();
251         break;
252     }
253 }
254
255 /* forced shutdown, used for wineserver -k */
256 void shutdown_master_socket(void)
257 {
258     kill_all_processes();
259     shutdown_stage = 2;
260     if (shutdown_timeout)
261     {
262         remove_timeout_user( shutdown_timeout );
263         shutdown_timeout = NULL;
264     }
265     close_master_socket( 2 * -TICKS_PER_SEC );  /* for SIGKILL timeouts */
266 }
267
268 /* final cleanup once we are sure a process is really dead */
269 static void process_died( struct process *process )
270 {
271     if (debug_level) fprintf( stderr, "%04x: *process killed*\n", process->id );
272     if (!process->is_system)
273     {
274         if (!--user_processes && !shutdown_stage && master_socket_timeout != TIMEOUT_INFINITE)
275             shutdown_timeout = add_timeout_user( master_socket_timeout, server_shutdown_timeout, NULL );
276     }
277     release_object( process );
278     if (!--running_processes && shutdown_stage) close_master_socket( 0 );
279 }
280
281 /* callback for process sigkill timeout */
282 static void process_sigkill( void *private )
283 {
284     struct process *process = private;
285
286     process->sigkill_timeout = NULL;
287     kill( process->unix_pid, SIGKILL );
288     process_died( process );
289 }
290
291 /* start the sigkill timer for a process upon exit */
292 static void start_sigkill_timer( struct process *process )
293 {
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 );
297     else
298         process_died( process );
299 }
300
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 )
304 {
305     struct process *process;
306     struct thread *thread = NULL;
307     int request_pipe[2];
308
309     if (!(process = alloc_object( &process_ops )))
310     {
311         close( fd );
312         goto error;
313     }
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->console         = NULL;
327     process->startup_state   = STARTUP_IN_PROGRESS;
328     process->startup_info    = NULL;
329     process->idle_event      = NULL;
330     process->peb             = 0;
331     process->ldt_copy        = 0;
332     process->winstation      = 0;
333     process->desktop         = 0;
334     process->token           = NULL;
335     process->trace_data      = 0;
336     process->rawinput_mouse  = NULL;
337     process->rawinput_kbd    = NULL;
338     list_init( &process->thread_list );
339     list_init( &process->locks );
340     list_init( &process->classes );
341     list_init( &process->dlls );
342     list_init( &process->rawinput_devices );
343
344     process->start_time = current_time;
345     process->end_time = 0;
346     list_add_tail( &process_list, &process->entry );
347
348     if (!(process->id = process->group_id = alloc_ptid( process )))
349     {
350         close( fd );
351         goto error;
352     }
353     if (!(process->msg_fd = create_anonymous_fd( &process_fd_ops, fd, &process->obj, 0 ))) goto error;
354
355     /* create the handle table */
356     if (!parent_thread)
357     {
358         process->handles = alloc_handle_table( process, 0 );
359         process->token = token_create_admin();
360         process->affinity = ~0;
361     }
362     else
363     {
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;
372     }
373     if (!process->handles || !process->token) goto error;
374
375     /* create the main thread */
376     if (pipe( request_pipe ) == -1)
377     {
378         file_set_error();
379         goto error;
380     }
381     if (send_client_fd( process, request_pipe[1], SERVER_PROTOCOL_VERSION ) == -1)
382     {
383         close( request_pipe[0] );
384         close( request_pipe[1] );
385         goto error;
386     }
387     close( request_pipe[1] );
388     if (!(thread = create_thread( request_pipe[0], process ))) goto error;
389
390     set_fd_events( process->msg_fd, POLLIN );  /* start listening to events */
391     release_object( process );
392     return thread;
393
394  error:
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 );
398     return NULL;
399 }
400
401 /* initialize the current process and fill in the request */
402 data_size_t init_process( struct thread *thread )
403 {
404     struct process *process = thread->process;
405     struct startup_info *info = process->startup_info;
406
407     init_process_tracing( process );
408     if (!info) return 0;
409     return info->data_size;
410 }
411
412 /* destroy a process when its refcount is 0 */
413 static void process_destroy( struct object *obj )
414 {
415     struct process *process = (struct process *)obj;
416     assert( obj->ops == &process_ops );
417
418     /* we can't have a thread remaining */
419     assert( list_empty( &process->thread_list ));
420
421     assert( !process->sigkill_timeout );  /* timeout should hold a reference to the process */
422
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 );
432 }
433
434 /* dump a process on stdout for debugging purposes */
435 static void process_dump( struct object *obj, int verbose )
436 {
437     struct process *process = (struct process *)obj;
438     assert( obj->ops == &process_ops );
439
440     fprintf( stderr, "Process id=%04x handles=%p\n", process->id, process->handles );
441 }
442
443 static int process_signaled( struct object *obj, struct thread *thread )
444 {
445     struct process *process = (struct process *)obj;
446     return !process->running_threads;
447 }
448
449 static unsigned int process_map_access( struct object *obj, unsigned int access )
450 {
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);
456 }
457
458 static void process_poll_event( struct fd *fd, int event )
459 {
460     struct process *process = get_fd_user( fd );
461     assert( process->obj.ops == &process_ops );
462
463     if (event & (POLLERR | POLLHUP)) kill_process( process, 0 );
464     else if (event & POLLIN) receive_fd( process );
465 }
466
467 static void startup_info_destroy( struct object *obj )
468 {
469     struct startup_info *info = (struct startup_info *)obj;
470     assert( obj->ops == &startup_info_ops );
471     free( info->data );
472     if (info->exe_file) release_object( info->exe_file );
473     if (info->process) release_object( info->process );
474 }
475
476 static void startup_info_dump( struct object *obj, int verbose )
477 {
478     struct startup_info *info = (struct startup_info *)obj;
479     assert( obj->ops == &startup_info_ops );
480
481     fprintf( stderr, "Startup info in=%04x out=%04x err=%04x\n",
482              info->data->hstdin, info->data->hstdout, info->data->hstderr );
483 }
484
485 static int startup_info_signaled( struct object *obj, struct thread *thread )
486 {
487     struct startup_info *info = (struct startup_info *)obj;
488     return info->process && info->process->startup_state != STARTUP_IN_PROGRESS;
489 }
490
491 /* get a process from an id (and increment the refcount) */
492 struct process *get_process_from_id( process_id_t id )
493 {
494     struct object *obj = get_ptid_entry( id );
495
496     if (obj && obj->ops == &process_ops) return (struct process *)grab_object( obj );
497     set_error( STATUS_INVALID_PARAMETER );
498     return NULL;
499 }
500
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 )
503 {
504     return (struct process *)get_handle_obj( current->process, handle,
505                                              access, &process_ops );
506 }
507
508 /* find a dll from its base address */
509 static inline struct process_dll *find_process_dll( struct process *process, mod_handle_t base )
510 {
511     struct process_dll *dll;
512
513     LIST_FOR_EACH_ENTRY( dll, &process->dlls, struct process_dll, entry )
514     {
515         if (dll->base == base) return dll;
516     }
517     return NULL;
518 }
519
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 )
524 {
525     struct process_dll *dll;
526
527     /* make sure we don't already have one with the same base address */
528     if (find_process_dll( process, base ))
529     {
530         set_error( STATUS_INVALID_PARAMETER );
531         return NULL;
532     }
533
534     if ((dll = mem_alloc( sizeof(*dll) )))
535     {
536         dll->mapping = NULL;
537         dll->base = base;
538         dll->filename = NULL;
539         dll->namelen  = name_len;
540         if (name_len && !(dll->filename = memdup( filename, name_len )))
541         {
542             free( dll );
543             return NULL;
544         }
545         if (mapping) dll->mapping = grab_mapping_unless_removable( mapping );
546         list_add_tail( &process->dlls, &dll->entry );
547     }
548     return dll;
549 }
550
551 /* remove a dll from a process list */
552 static void process_unload_dll( struct process *process, mod_handle_t base )
553 {
554     struct process_dll *dll = find_process_dll( process, base );
555
556     if (dll && (&dll->entry != list_head( &process->dlls )))  /* main exe can't be unloaded */
557     {
558         if (dll->mapping) release_object( dll->mapping );
559         free( dll->filename );
560         list_remove( &dll->entry );
561         free( dll );
562         generate_debug_event( current, UNLOAD_DLL_DEBUG_EVENT, &base );
563     }
564     else set_error( STATUS_INVALID_PARAMETER );
565 }
566
567 /* terminate a process with the given exit code */
568 static void terminate_process( struct process *process, struct thread *skip, int exit_code )
569 {
570     struct thread *thread;
571
572     grab_object( process );  /* make sure it doesn't get freed when threads die */
573 restart:
574     LIST_FOR_EACH_ENTRY( thread, &process->thread_list, struct thread, proc_entry )
575     {
576         if (exit_code) thread->exit_code = exit_code;
577         if (thread == skip) continue;
578         if (thread->state == TERMINATED) continue;
579         kill_thread( thread, 1 );
580         goto restart;
581     }
582     release_object( process );
583 }
584
585 /* kill all processes */
586 static void kill_all_processes(void)
587 {
588     for (;;)
589     {
590         struct process *process;
591
592         LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
593         {
594             if (process->running_threads) break;
595         }
596         if (&process->entry == &process_list) break;  /* no process found */
597         terminate_process( process, NULL, 1 );
598     }
599 }
600
601 /* kill all processes being attached to a console renderer */
602 void kill_console_processes( struct thread *renderer, int exit_code )
603 {
604     for (;;)  /* restart from the beginning of the list every time */
605     {
606         struct process *process;
607
608         /* find the first process being attached to 'renderer' and still running */
609         LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
610         {
611             if (process == renderer->process) continue;
612             if (!process->running_threads) continue;
613             if (process->console && console_get_renderer( process->console ) == renderer) break;
614         }
615         if (&process->entry == &process_list) break;  /* no process found */
616         terminate_process( process, NULL, exit_code );
617     }
618 }
619
620 /* a process has been killed (i.e. its last thread died) */
621 static void process_killed( struct process *process )
622 {
623     struct list *ptr;
624
625     assert( list_empty( &process->thread_list ));
626     process->end_time = current_time;
627     if (!process->is_system) close_process_desktop( process );
628     close_process_handles( process );
629     process->winstation = 0;
630     process->desktop = 0;
631     if (process->idle_event)
632     {
633         release_object( process->idle_event );
634         process->idle_event = NULL;
635     }
636
637     /* close the console attached to this process, if any */
638     free_console( process );
639
640     while ((ptr = list_head( &process->rawinput_devices )))
641     {
642         struct rawinput_device_entry *entry = LIST_ENTRY( ptr, struct rawinput_device_entry, entry );
643         list_remove( &entry->entry );
644         free( entry );
645     }
646     while ((ptr = list_head( &process->dlls )))
647     {
648         struct process_dll *dll = LIST_ENTRY( ptr, struct process_dll, entry );
649         if (dll->mapping) release_object( dll->mapping );
650         free( dll->filename );
651         list_remove( &dll->entry );
652         free( dll );
653     }
654     destroy_process_classes( process );
655     free_process_user_handles( process );
656     remove_process_locks( process );
657     set_process_startup_state( process, STARTUP_ABORTED );
658     finish_process_tracing( process );
659     start_sigkill_timer( process );
660     wake_up( &process->obj, 0 );
661 }
662
663 /* add a thread to a process running threads list */
664 void add_process_thread( struct process *process, struct thread *thread )
665 {
666     list_add_tail( &process->thread_list, &thread->proc_entry );
667     if (!process->running_threads++)
668     {
669         running_processes++;
670         if (!process->is_system)
671         {
672             if (!user_processes++ && shutdown_timeout)
673             {
674                 remove_timeout_user( shutdown_timeout );
675                 shutdown_timeout = NULL;
676             }
677         }
678     }
679     grab_object( thread );
680 }
681
682 /* remove a thread from a process running threads list */
683 void remove_process_thread( struct process *process, struct thread *thread )
684 {
685     assert( process->running_threads > 0 );
686     assert( !list_empty( &process->thread_list ));
687
688     list_remove( &thread->proc_entry );
689
690     if (!--process->running_threads)
691     {
692         /* we have removed the last running thread, exit the process */
693         process->exit_code = thread->exit_code;
694         generate_debug_event( thread, EXIT_PROCESS_DEBUG_EVENT, process );
695         process_killed( process );
696     }
697     else generate_debug_event( thread, EXIT_THREAD_DEBUG_EVENT, thread );
698     release_object( thread );
699 }
700
701 /* suspend all the threads of a process */
702 void suspend_process( struct process *process )
703 {
704     if (!process->suspend++)
705     {
706         struct list *ptr, *next;
707
708         LIST_FOR_EACH_SAFE( ptr, next, &process->thread_list )
709         {
710             struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
711             if (!thread->suspend) stop_thread( thread );
712         }
713     }
714 }
715
716 /* resume all the threads of a process */
717 void resume_process( struct process *process )
718 {
719     assert (process->suspend > 0);
720     if (!--process->suspend)
721     {
722         struct list *ptr, *next;
723
724         LIST_FOR_EACH_SAFE( ptr, next, &process->thread_list )
725         {
726             struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
727             if (!thread->suspend) wake_thread( thread );
728         }
729     }
730 }
731
732 /* kill a process on the spot */
733 void kill_process( struct process *process, int violent_death )
734 {
735     if (!violent_death && process->msg_fd)  /* normal termination on pipe close */
736     {
737         release_object( process->msg_fd );
738         process->msg_fd = NULL;
739     }
740
741     if (process->sigkill_timeout)  /* already waiting for it to die */
742     {
743         remove_timeout_user( process->sigkill_timeout );
744         process->sigkill_timeout = NULL;
745         process_died( process );
746         return;
747     }
748
749     if (violent_death) terminate_process( process, NULL, 1 );
750     else
751     {
752         struct list *ptr;
753
754         grab_object( process );  /* make sure it doesn't get freed when threads die */
755         while ((ptr = list_head( &process->thread_list )))
756         {
757             struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
758             kill_thread( thread, 0 );
759         }
760         release_object( process );
761     }
762 }
763
764 /* kill all processes being debugged by a given thread */
765 void kill_debugged_processes( struct thread *debugger, int exit_code )
766 {
767     for (;;)  /* restart from the beginning of the list every time */
768     {
769         struct process *process;
770
771         /* find the first process being debugged by 'debugger' and still running */
772         LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
773         {
774             if (!process->running_threads) continue;
775             if (process->debugger == debugger) break;
776         }
777         if (&process->entry == &process_list) break;  /* no process found */
778         process->debugger = NULL;
779         terminate_process( process, NULL, exit_code );
780     }
781 }
782
783
784 /* trigger a breakpoint event in a given process */
785 void break_process( struct process *process )
786 {
787     struct thread *thread;
788
789     suspend_process( process );
790
791     LIST_FOR_EACH_ENTRY( thread, &process->thread_list, struct thread, proc_entry )
792     {
793         if (thread->context)  /* inside an exception event already */
794         {
795             break_thread( thread );
796             goto done;
797         }
798     }
799     if ((thread = get_process_first_thread( process ))) thread->debug_break = 1;
800     else set_error( STATUS_ACCESS_DENIED );
801 done:
802     resume_process( process );
803 }
804
805
806 /* detach a debugger from all its debuggees */
807 void detach_debugged_processes( struct thread *debugger )
808 {
809     struct process *process;
810
811     LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
812     {
813         if (process->debugger == debugger && process->running_threads)
814         {
815             debugger_detach( process, debugger );
816         }
817     }
818 }
819
820
821 void enum_processes( int (*cb)(struct process*, void*), void *user )
822 {
823     struct list *ptr, *next;
824
825     LIST_FOR_EACH_SAFE( ptr, next, &process_list )
826     {
827         struct process *process = LIST_ENTRY( ptr, struct process, entry );
828         if ((cb)(process, user)) break;
829     }
830 }
831
832 /* set the debugged flag in the process PEB */
833 int set_process_debug_flag( struct process *process, int flag )
834 {
835     char data = (flag != 0);
836
837     /* BeingDebugged flag is the byte at offset 2 in the PEB */
838     return write_process_memory( process, process->peb + 2, 1, &data );
839 }
840
841 /* take a snapshot of currently running processes */
842 struct process_snapshot *process_snap( int *count )
843 {
844     struct process_snapshot *snapshot, *ptr;
845     struct process *process;
846
847     if (!running_processes) return NULL;
848     if (!(snapshot = mem_alloc( sizeof(*snapshot) * running_processes )))
849         return NULL;
850     ptr = snapshot;
851     LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
852     {
853         if (!process->running_threads) continue;
854         ptr->process  = process;
855         ptr->threads  = process->running_threads;
856         ptr->count    = process->obj.refcount;
857         ptr->priority = process->priority;
858         ptr->handles  = get_handle_table_count(process);
859         ptr->unix_pid = process->unix_pid;
860         grab_object( process );
861         ptr++;
862     }
863
864     if (!(*count = ptr - snapshot))
865     {
866         free( snapshot );
867         snapshot = NULL;
868     }
869     return snapshot;
870 }
871
872 /* create a new process */
873 DECL_HANDLER(new_process)
874 {
875     struct startup_info *info;
876     struct thread *thread;
877     struct process *process;
878     struct process *parent = current->process;
879     int socket_fd = thread_get_inflight_fd( current, req->socket_fd );
880
881     if (socket_fd == -1)
882     {
883         set_error( STATUS_INVALID_PARAMETER );
884         return;
885     }
886     if (fcntl( socket_fd, F_SETFL, O_NONBLOCK ) == -1)
887     {
888         set_error( STATUS_INVALID_HANDLE );
889         close( socket_fd );
890         return;
891     }
892     if (shutdown_stage)
893     {
894         set_error( STATUS_SHUTDOWN_IN_PROGRESS );
895         close( socket_fd );
896         return;
897     }
898
899     if (!req->info_size)  /* create an orphaned process */
900     {
901         create_process( socket_fd, NULL, 0 );
902         return;
903     }
904
905     /* build the startup info for a new process */
906     if (!(info = alloc_object( &startup_info_ops ))) return;
907     info->exe_file = NULL;
908     info->process  = NULL;
909     info->data     = NULL;
910
911     if (req->exe_file &&
912         !(info->exe_file = get_file_obj( current->process, req->exe_file, FILE_READ_DATA )))
913         goto done;
914
915     info->data_size = get_req_data_size();
916     info->info_size = min( req->info_size, info->data_size );
917
918     if (req->info_size < sizeof(*info->data))
919     {
920         /* make sure we have a full startup_info_t structure */
921         data_size_t env_size = info->data_size - info->info_size;
922         data_size_t info_size = min( req->info_size, FIELD_OFFSET( startup_info_t, curdir_len ));
923
924         if (!(info->data = mem_alloc( sizeof(*info->data) + env_size ))) goto done;
925         memcpy( info->data, get_req_data(), info_size );
926         memset( (char *)info->data + info_size, 0, sizeof(*info->data) - info_size );
927         memcpy( info->data + 1, (const char *)get_req_data() + req->info_size, env_size );
928         info->info_size = sizeof(startup_info_t);
929         info->data_size = info->info_size + env_size;
930     }
931     else
932     {
933         data_size_t pos = sizeof(*info->data);
934
935         if (!(info->data = memdup( get_req_data(), info->data_size ))) goto done;
936 #define FIXUP_LEN(len) do { (len) = min( (len), info->info_size - pos ); pos += (len); } while(0)
937         FIXUP_LEN( info->data->curdir_len );
938         FIXUP_LEN( info->data->dllpath_len );
939         FIXUP_LEN( info->data->imagepath_len );
940         FIXUP_LEN( info->data->cmdline_len );
941         FIXUP_LEN( info->data->title_len );
942         FIXUP_LEN( info->data->desktop_len );
943         FIXUP_LEN( info->data->shellinfo_len );
944         FIXUP_LEN( info->data->runtime_len );
945 #undef FIXUP_LEN
946     }
947
948     if (!(thread = create_process( socket_fd, current, req->inherit_all ))) goto done;
949     process = thread->process;
950     process->debug_children = !!(req->create_flags & DEBUG_PROCESS);
951     process->startup_info = (struct startup_info *)grab_object( info );
952
953     /* connect to the window station */
954     connect_process_winstation( process, current );
955
956     /* thread will be actually suspended in init_done */
957     if (req->create_flags & CREATE_SUSPENDED) thread->suspend++;
958
959     /* set the process console */
960     if (!(req->create_flags & (DETACHED_PROCESS | CREATE_NEW_CONSOLE)))
961     {
962         /* FIXME: some better error checking should be done...
963          * like if hConOut and hConIn are console handles, then they should be on the same
964          * physical console
965          */
966         inherit_console( current, process, req->inherit_all ? info->data->hstdin : 0 );
967     }
968
969     if (!req->inherit_all && !(req->create_flags & CREATE_NEW_CONSOLE))
970     {
971         info->data->hstdin  = duplicate_handle( parent, info->data->hstdin, process,
972                                                 0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
973         info->data->hstdout = duplicate_handle( parent, info->data->hstdout, process,
974                                                 0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
975         info->data->hstderr = duplicate_handle( parent, info->data->hstderr, process,
976                                                 0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
977         /* some handles above may have been invalid; this is not an error */
978         if (get_error() == STATUS_INVALID_HANDLE ||
979             get_error() == STATUS_OBJECT_TYPE_MISMATCH) clear_error();
980     }
981
982     /* attach to the debugger if requested */
983     if (req->create_flags & (DEBUG_PROCESS | DEBUG_ONLY_THIS_PROCESS))
984         set_process_debugger( process, current );
985     else if (parent->debugger && parent->debug_children)
986         set_process_debugger( process, parent->debugger );
987
988     if (!(req->create_flags & CREATE_NEW_PROCESS_GROUP))
989         process->group_id = parent->group_id;
990
991     info->process = (struct process *)grab_object( process );
992     reply->info = alloc_handle( current->process, info, SYNCHRONIZE, 0 );
993     reply->pid = get_process_id( process );
994     reply->tid = get_thread_id( thread );
995     reply->phandle = alloc_handle( parent, process, req->process_access, req->process_attr );
996     reply->thandle = alloc_handle( parent, thread, req->thread_access, req->thread_attr );
997
998  done:
999     release_object( info );
1000 }
1001
1002 /* Retrieve information about a newly started process */
1003 DECL_HANDLER(get_new_process_info)
1004 {
1005     struct startup_info *info;
1006
1007     if ((info = (struct startup_info *)get_handle_obj( current->process, req->info,
1008                                                        0, &startup_info_ops )))
1009     {
1010         reply->success = is_process_init_done( info->process );
1011         reply->exit_code = info->process->exit_code;
1012         release_object( info );
1013     }
1014 }
1015
1016 /* Retrieve the new process startup info */
1017 DECL_HANDLER(get_startup_info)
1018 {
1019     struct process *process = current->process;
1020     struct startup_info *info = process->startup_info;
1021     data_size_t size;
1022
1023     if (!info) return;
1024
1025     if (info->exe_file &&
1026         !(reply->exe_file = alloc_handle( process, info->exe_file, GENERIC_READ, 0 ))) return;
1027
1028     /* we return the data directly without making a copy so this can only be called once */
1029     reply->info_size = info->info_size;
1030     size = info->data_size;
1031     if (size > get_reply_max_size()) size = get_reply_max_size();
1032     set_reply_data_ptr( info->data, size );
1033     info->data = NULL;
1034     info->data_size = 0;
1035 }
1036
1037 /* signal the end of the process initialization */
1038 DECL_HANDLER(init_process_done)
1039 {
1040     struct process_dll *dll;
1041     struct process *process = current->process;
1042
1043     if (is_process_init_done(process))
1044     {
1045         set_error( STATUS_INVALID_PARAMETER );
1046         return;
1047     }
1048     if (!(dll = find_process_dll( process, req->module )))
1049     {
1050         set_error( STATUS_DLL_NOT_FOUND );
1051         return;
1052     }
1053
1054     /* main exe is the first in the dll list */
1055     list_remove( &dll->entry );
1056     list_add_head( &process->dlls, &dll->entry );
1057
1058     process->ldt_copy = req->ldt_copy;
1059
1060     generate_startup_debug_events( process, req->entry );
1061     set_process_startup_state( process, STARTUP_DONE );
1062
1063     if (req->gui) process->idle_event = create_event( NULL, NULL, 0, 1, 0, NULL );
1064     stop_thread_if_suspended( current );
1065     if (process->debugger) set_process_debug_flag( process, 1 );
1066 }
1067
1068 /* open a handle to a process */
1069 DECL_HANDLER(open_process)
1070 {
1071     struct process *process = get_process_from_id( req->pid );
1072     reply->handle = 0;
1073     if (process)
1074     {
1075         reply->handle = alloc_handle( current->process, process, req->access, req->attributes );
1076         release_object( process );
1077     }
1078 }
1079
1080 /* terminate a process */
1081 DECL_HANDLER(terminate_process)
1082 {
1083     struct process *process;
1084
1085     if (req->handle)
1086     {
1087         process = get_process_from_handle( req->handle, PROCESS_TERMINATE );
1088         if (!process) return;
1089     }
1090     else process = (struct process *)grab_object( current->process );
1091
1092     reply->self = (current->process == process);
1093     terminate_process( process, current, req->exit_code );
1094     release_object( process );
1095 }
1096
1097 /* fetch information about a process */
1098 DECL_HANDLER(get_process_info)
1099 {
1100     struct process *process;
1101
1102     if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
1103     {
1104         reply->pid              = get_process_id( process );
1105         reply->ppid             = process->parent ? get_process_id( process->parent ) : 0;
1106         reply->exit_code        = process->exit_code;
1107         reply->priority         = process->priority;
1108         reply->affinity         = process->affinity;
1109         reply->peb              = process->peb;
1110         reply->start_time       = process->start_time;
1111         reply->end_time         = process->end_time;
1112         reply->cpu              = process->cpu;
1113         reply->debugger_present = !!process->debugger;
1114         release_object( process );
1115     }
1116 }
1117
1118 static void set_process_affinity( struct process *process, affinity_t affinity )
1119 {
1120     struct thread *thread;
1121
1122     process->affinity = affinity;
1123
1124     LIST_FOR_EACH_ENTRY( thread, &process->thread_list, struct thread, proc_entry )
1125     {
1126         set_thread_affinity( thread, affinity );
1127     }
1128 }
1129
1130 /* set information about a process */
1131 DECL_HANDLER(set_process_info)
1132 {
1133     struct process *process;
1134
1135     if ((process = get_process_from_handle( req->handle, PROCESS_SET_INFORMATION )))
1136     {
1137         if (req->mask & SET_PROCESS_INFO_PRIORITY) process->priority = req->priority;
1138         if (req->mask & SET_PROCESS_INFO_AFFINITY) set_process_affinity( process, req->affinity );
1139         release_object( process );
1140     }
1141 }
1142
1143 /* read data from a process address space */
1144 DECL_HANDLER(read_process_memory)
1145 {
1146     struct process *process;
1147     data_size_t len = get_reply_max_size();
1148
1149     if (!(process = get_process_from_handle( req->handle, PROCESS_VM_READ ))) return;
1150
1151     if (len)
1152     {
1153         char *buffer = mem_alloc( len );
1154         if (buffer)
1155         {
1156             if (read_process_memory( process, req->addr, len, buffer ))
1157                 set_reply_data_ptr( buffer, len );
1158             else
1159                 free( buffer );
1160         }
1161     }
1162     release_object( process );
1163 }
1164
1165 /* write data to a process address space */
1166 DECL_HANDLER(write_process_memory)
1167 {
1168     struct process *process;
1169
1170     if ((process = get_process_from_handle( req->handle, PROCESS_VM_WRITE )))
1171     {
1172         data_size_t len = get_req_data_size();
1173         if (len) write_process_memory( process, req->addr, len, get_req_data() );
1174         else set_error( STATUS_INVALID_PARAMETER );
1175         release_object( process );
1176     }
1177 }
1178
1179 /* notify the server that a dll has been loaded */
1180 DECL_HANDLER(load_dll)
1181 {
1182     struct process_dll *dll;
1183     struct mapping *mapping = NULL;
1184
1185     if (req->mapping && !(mapping = get_mapping_obj( current->process, req->mapping, SECTION_QUERY )))
1186         return;
1187
1188     if ((dll = process_load_dll( current->process, mapping, req->base,
1189                                  get_req_data(), get_req_data_size() )))
1190     {
1191         dll->size       = req->size;
1192         dll->dbg_offset = req->dbg_offset;
1193         dll->dbg_size   = req->dbg_size;
1194         dll->name       = req->name;
1195         /* only generate event if initialization is done */
1196         if (is_process_init_done( current->process ))
1197             generate_debug_event( current, LOAD_DLL_DEBUG_EVENT, dll );
1198     }
1199     if (mapping) release_object( mapping );
1200 }
1201
1202 /* notify the server that a dll is being unloaded */
1203 DECL_HANDLER(unload_dll)
1204 {
1205     process_unload_dll( current->process, req->base );
1206 }
1207
1208 /* retrieve information about a module in a process */
1209 DECL_HANDLER(get_dll_info)
1210 {
1211     struct process *process;
1212
1213     if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
1214     {
1215         struct process_dll *dll;
1216
1217         if (req->base_address)
1218             dll = find_process_dll( process, req->base_address );
1219         else /* NULL means main module */
1220             dll = list_head( &process->dlls ) ?
1221                 LIST_ENTRY(list_head( &process->dlls ), struct process_dll, entry) : NULL;
1222
1223         if (dll)
1224         {
1225             reply->size = dll->size;
1226             reply->entry_point = 0; /* FIXME */
1227             reply->filename_len = dll->namelen;
1228             if (dll->filename)
1229             {
1230                 if (dll->namelen <= get_reply_max_size())
1231                     set_reply_data( dll->filename, dll->namelen );
1232                 else
1233                     set_error( STATUS_BUFFER_TOO_SMALL );
1234             }
1235         }
1236         else
1237             set_error( STATUS_DLL_NOT_FOUND );
1238
1239         release_object( process );
1240     }
1241 }
1242
1243 /* retrieve the process idle event */
1244 DECL_HANDLER(get_process_idle_event)
1245 {
1246     struct process *process;
1247
1248     reply->event = 0;
1249     if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
1250     {
1251         if (process->idle_event && process != current->process)
1252             reply->event = alloc_handle( current->process, process->idle_event,
1253                                          EVENT_ALL_ACCESS, 0 );
1254         release_object( process );
1255     }
1256 }
1257
1258 /* make the current process a system process */
1259 DECL_HANDLER(make_process_system)
1260 {
1261     struct process *process = current->process;
1262
1263     if (!shutdown_event)
1264     {
1265         if (!(shutdown_event = create_event( NULL, NULL, 0, 1, 0, NULL ))) return;
1266         make_object_static( (struct object *)shutdown_event );
1267     }
1268
1269     if (!(reply->event = alloc_handle( current->process, shutdown_event, SYNCHRONIZE, 0 )))
1270         return;
1271
1272     if (!process->is_system)
1273     {
1274         process->is_system = 1;
1275         close_process_desktop( process );
1276         if (!--user_processes && !shutdown_stage && master_socket_timeout != TIMEOUT_INFINITE)
1277             shutdown_timeout = add_timeout_user( master_socket_timeout, server_shutdown_timeout, NULL );
1278     }
1279 }