cryptnet: Get cache entry expire time from HTTP expires header.
[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 *user_process_event;  /* signaled when all user processes have exited */
57
58 /* process operations */
59
60 static void process_dump( struct object *obj, int verbose );
61 static int process_signaled( struct object *obj, struct thread *thread );
62 static unsigned int process_map_access( struct object *obj, unsigned int access );
63 static void process_poll_event( struct fd *fd, int event );
64 static void process_destroy( struct object *obj );
65
66 static const struct object_ops process_ops =
67 {
68     sizeof(struct process),      /* size */
69     process_dump,                /* dump */
70     add_queue,                   /* add_queue */
71     remove_queue,                /* remove_queue */
72     process_signaled,            /* signaled */
73     no_satisfied,                /* satisfied */
74     no_signal,                   /* signal */
75     no_get_fd,                   /* get_fd */
76     process_map_access,          /* map_access */
77     default_get_sd,              /* get_sd */
78     default_set_sd,              /* set_sd */
79     no_lookup_name,              /* lookup_name */
80     no_open_file,                /* open_file */
81     no_close_handle,             /* close_handle */
82     process_destroy              /* destroy */
83 };
84
85 static const struct fd_ops process_fd_ops =
86 {
87     NULL,                        /* get_poll_events */
88     process_poll_event,          /* poll_event */
89     NULL,                        /* flush */
90     NULL,                        /* get_fd_type */
91     NULL,                        /* ioctl */
92     NULL,                        /* queue_async */
93     NULL,                        /* reselect_async */
94     NULL                         /* cancel async */
95 };
96
97 /* process startup info */
98
99 struct startup_info
100 {
101     struct object       obj;          /* object header */
102     obj_handle_t        hstdin;       /* handle for stdin */
103     obj_handle_t        hstdout;      /* handle for stdout */
104     obj_handle_t        hstderr;      /* handle for stderr */
105     struct file        *exe_file;     /* file handle for main exe */
106     struct process     *process;      /* created process */
107     data_size_t         data_size;    /* size of startup data */
108     void               *data;         /* data for startup info */
109 };
110
111 static void startup_info_dump( struct object *obj, int verbose );
112 static int startup_info_signaled( struct object *obj, struct thread *thread );
113 static void startup_info_destroy( struct object *obj );
114
115 static const struct object_ops startup_info_ops =
116 {
117     sizeof(struct startup_info),   /* size */
118     startup_info_dump,             /* dump */
119     add_queue,                     /* add_queue */
120     remove_queue,                  /* remove_queue */
121     startup_info_signaled,         /* signaled */
122     no_satisfied,                  /* satisfied */
123     no_signal,                     /* signal */
124     no_get_fd,                     /* get_fd */
125     no_map_access,                 /* map_access */
126     default_get_sd,                /* get_sd */
127     default_set_sd,                /* set_sd */
128     no_lookup_name,                /* lookup_name */
129     no_open_file,                  /* open_file */
130     no_close_handle,               /* close_handle */
131     startup_info_destroy           /* destroy */
132 };
133
134
135 struct ptid_entry
136 {
137     void        *ptr;   /* entry ptr */
138     unsigned int next;  /* next free entry */
139 };
140
141 static struct ptid_entry *ptid_entries;     /* array of ptid entries */
142 static unsigned int used_ptid_entries;      /* number of entries in use */
143 static unsigned int alloc_ptid_entries;     /* number of allocated entries */
144 static unsigned int next_free_ptid;         /* next free entry */
145 static unsigned int last_free_ptid;         /* last free entry */
146
147 #define PTID_OFFSET 8  /* offset for first ptid value */
148
149 /* allocate a new process or thread id */
150 unsigned int alloc_ptid( void *ptr )
151 {
152     struct ptid_entry *entry;
153     unsigned int id;
154
155     if (used_ptid_entries < alloc_ptid_entries)
156     {
157         id = used_ptid_entries + PTID_OFFSET;
158         entry = &ptid_entries[used_ptid_entries++];
159     }
160     else if (next_free_ptid)
161     {
162         id = next_free_ptid;
163         entry = &ptid_entries[id - PTID_OFFSET];
164         if (!(next_free_ptid = entry->next)) last_free_ptid = 0;
165     }
166     else  /* need to grow the array */
167     {
168         unsigned int count = alloc_ptid_entries + (alloc_ptid_entries / 2);
169         if (!count) count = 64;
170         if (!(entry = realloc( ptid_entries, count * sizeof(*entry) )))
171         {
172             set_error( STATUS_NO_MEMORY );
173             return 0;
174         }
175         ptid_entries = entry;
176         alloc_ptid_entries = count;
177         id = used_ptid_entries + PTID_OFFSET;
178         entry = &ptid_entries[used_ptid_entries++];
179     }
180
181     entry->ptr = ptr;
182     return id;
183 }
184
185 /* free a process or thread id */
186 void free_ptid( unsigned int id )
187 {
188     struct ptid_entry *entry = &ptid_entries[id - PTID_OFFSET];
189
190     entry->ptr  = NULL;
191     entry->next = 0;
192
193     /* append to end of free list so that we don't reuse it too early */
194     if (last_free_ptid) ptid_entries[last_free_ptid - PTID_OFFSET].next = id;
195     else next_free_ptid = id;
196
197     last_free_ptid = id;
198 }
199
200 /* retrieve the pointer corresponding to a process or thread id */
201 void *get_ptid_entry( unsigned int id )
202 {
203     if (id < PTID_OFFSET) return NULL;
204     if (id - PTID_OFFSET >= used_ptid_entries) return NULL;
205     return ptid_entries[id - PTID_OFFSET].ptr;
206 }
207
208 /* return the main thread of the process */
209 struct thread *get_process_first_thread( struct process *process )
210 {
211     struct list *ptr = list_head( &process->thread_list );
212     if (!ptr) return NULL;
213     return LIST_ENTRY( ptr, struct thread, proc_entry );
214 }
215
216 /* set the state of the process startup info */
217 static void set_process_startup_state( struct process *process, enum startup_state state )
218 {
219     if (process->startup_state == STARTUP_IN_PROGRESS) process->startup_state = state;
220     if (process->startup_info)
221     {
222         wake_up( &process->startup_info->obj, 0 );
223         release_object( process->startup_info );
224         process->startup_info = NULL;
225     }
226 }
227
228 /* final cleanup once we are sure a process is really dead */
229 static void process_died( struct process *process )
230 {
231     if (debug_level) fprintf( stderr, "%04x: *process killed*\n", process->id );
232     if (!process->is_system)
233     {
234         if (!--user_processes && user_process_event)
235             set_event( user_process_event );
236     }
237     release_object( process );
238     if (!--running_processes) close_master_socket();
239 }
240
241 /* callback for process sigkill timeout */
242 static void process_sigkill( void *private )
243 {
244     struct process *process = private;
245
246     process->sigkill_timeout = NULL;
247     kill( process->unix_pid, SIGKILL );
248     process_died( process );
249 }
250
251 /* start the sigkill timer for a process upon exit */
252 static void start_sigkill_timer( struct process *process )
253 {
254     grab_object( process );
255     if (process->unix_pid != -1 && process->msg_fd)
256         process->sigkill_timeout = add_timeout_user( -TICKS_PER_SEC, process_sigkill, process );
257     else
258         process_died( process );
259 }
260
261 /* create a new process and its main thread */
262 /* if the function fails the fd is closed */
263 struct thread *create_process( int fd, struct thread *parent_thread, int inherit_all )
264 {
265     struct process *process;
266     struct thread *thread = NULL;
267     int request_pipe[2];
268
269     if (!(process = alloc_object( &process_ops )))
270     {
271         close( fd );
272         goto error;
273     }
274     process->parent          = NULL;
275     process->debugger        = NULL;
276     process->handles         = NULL;
277     process->msg_fd          = NULL;
278     process->sigkill_timeout = NULL;
279     process->unix_pid        = -1;
280     process->exit_code       = STILL_ACTIVE;
281     process->running_threads = 0;
282     process->priority        = PROCESS_PRIOCLASS_NORMAL;
283     process->affinity        = 1;
284     process->suspend         = 0;
285     process->is_system       = 0;
286     process->create_flags    = 0;
287     process->console         = NULL;
288     process->startup_state   = STARTUP_IN_PROGRESS;
289     process->startup_info    = NULL;
290     process->idle_event      = NULL;
291     process->queue           = NULL;
292     process->peb             = NULL;
293     process->ldt_copy        = NULL;
294     process->winstation      = 0;
295     process->desktop         = 0;
296     process->token           = NULL;
297     process->trace_data      = 0;
298     list_init( &process->thread_list );
299     list_init( &process->locks );
300     list_init( &process->classes );
301     list_init( &process->dlls );
302
303     process->start_time = current_time;
304     process->end_time = 0;
305     list_add_head( &process_list, &process->entry );
306
307     if (!(process->id = process->group_id = alloc_ptid( process )))
308     {
309         close( fd );
310         goto error;
311     }
312     if (!(process->msg_fd = create_anonymous_fd( &process_fd_ops, fd, &process->obj, 0 ))) goto error;
313
314     /* create the handle table */
315     if (!parent_thread)
316     {
317         process->handles = alloc_handle_table( process, 0 );
318         process->token = token_create_admin();
319     }
320     else
321     {
322         struct process *parent = parent_thread->process;
323         process->parent = (struct process *)grab_object( parent );
324         process->handles = inherit_all ? copy_handle_table( process, parent )
325                                        : alloc_handle_table( process, 0 );
326         /* Note: for security reasons, starting a new process does not attempt
327          * to use the current impersonation token for the new process */
328         process->token = token_duplicate( parent->token, TRUE, 0 );
329     }
330     if (!process->handles || !process->token) goto error;
331
332     /* create the main thread */
333     if (pipe( request_pipe ) == -1)
334     {
335         file_set_error();
336         goto error;
337     }
338     if (send_client_fd( process, request_pipe[1], 0 ) == -1)
339     {
340         close( request_pipe[0] );
341         close( request_pipe[1] );
342         goto error;
343     }
344     close( request_pipe[1] );
345     if (!(thread = create_thread( request_pipe[0], process ))) goto error;
346
347     set_fd_events( process->msg_fd, POLLIN );  /* start listening to events */
348     release_object( process );
349     return thread;
350
351  error:
352     if (process) release_object( process );
353     /* if we failed to start our first process, close everything down */
354     if (!running_processes) close_master_socket();
355     return NULL;
356 }
357
358 /* initialize the current process and fill in the request */
359 data_size_t init_process( struct thread *thread )
360 {
361     struct process *process = thread->process;
362     struct startup_info *info = process->startup_info;
363
364     init_process_tracing( process );
365     if (!info) return 0;
366     return info->data_size;
367 }
368
369 /* destroy a process when its refcount is 0 */
370 static void process_destroy( struct object *obj )
371 {
372     struct process *process = (struct process *)obj;
373     assert( obj->ops == &process_ops );
374
375     /* we can't have a thread remaining */
376     assert( list_empty( &process->thread_list ));
377
378     assert( !process->sigkill_timeout );  /* timeout should hold a reference to the process */
379
380     set_process_startup_state( process, STARTUP_ABORTED );
381     if (process->console) release_object( process->console );
382     if (process->parent) release_object( process->parent );
383     if (process->msg_fd) release_object( process->msg_fd );
384     list_remove( &process->entry );
385     if (process->idle_event) release_object( process->idle_event );
386     if (process->queue) release_object( process->queue );
387     if (process->id) free_ptid( process->id );
388     if (process->token) release_object( process->token );
389 }
390
391 /* dump a process on stdout for debugging purposes */
392 static void process_dump( struct object *obj, int verbose )
393 {
394     struct process *process = (struct process *)obj;
395     assert( obj->ops == &process_ops );
396
397     fprintf( stderr, "Process id=%04x handles=%p\n", process->id, process->handles );
398 }
399
400 static int process_signaled( struct object *obj, struct thread *thread )
401 {
402     struct process *process = (struct process *)obj;
403     return !process->running_threads;
404 }
405
406 static unsigned int process_map_access( struct object *obj, unsigned int access )
407 {
408     if (access & GENERIC_READ)    access |= STANDARD_RIGHTS_READ | SYNCHRONIZE;
409     if (access & GENERIC_WRITE)   access |= STANDARD_RIGHTS_WRITE | SYNCHRONIZE;
410     if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
411     if (access & GENERIC_ALL)     access |= PROCESS_ALL_ACCESS;
412     return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
413 }
414
415 static void process_poll_event( struct fd *fd, int event )
416 {
417     struct process *process = get_fd_user( fd );
418     assert( process->obj.ops == &process_ops );
419
420     if (event & (POLLERR | POLLHUP))
421     {
422         release_object( process->msg_fd );
423         process->msg_fd = NULL;
424         if (process->sigkill_timeout)  /* already waiting for it to die */
425         {
426             remove_timeout_user( process->sigkill_timeout );
427             process->sigkill_timeout = NULL;
428             process_died( process );
429         }
430         else kill_process( process, 0 );
431     }
432     else if (event & POLLIN) receive_fd( process );
433 }
434
435 static void startup_info_destroy( struct object *obj )
436 {
437     struct startup_info *info = (struct startup_info *)obj;
438     assert( obj->ops == &startup_info_ops );
439     free( info->data );
440     if (info->exe_file) release_object( info->exe_file );
441     if (info->process) release_object( info->process );
442 }
443
444 static void startup_info_dump( struct object *obj, int verbose )
445 {
446     struct startup_info *info = (struct startup_info *)obj;
447     assert( obj->ops == &startup_info_ops );
448
449     fprintf( stderr, "Startup info in=%p out=%p err=%p\n",
450              info->hstdin, info->hstdout, info->hstderr );
451 }
452
453 static int startup_info_signaled( struct object *obj, struct thread *thread )
454 {
455     struct startup_info *info = (struct startup_info *)obj;
456     return info->process && info->process->startup_state != STARTUP_IN_PROGRESS;
457 }
458
459 /* get a process from an id (and increment the refcount) */
460 struct process *get_process_from_id( process_id_t id )
461 {
462     struct object *obj = get_ptid_entry( id );
463
464     if (obj && obj->ops == &process_ops) return (struct process *)grab_object( obj );
465     set_error( STATUS_INVALID_PARAMETER );
466     return NULL;
467 }
468
469 /* get a process from a handle (and increment the refcount) */
470 struct process *get_process_from_handle( obj_handle_t handle, unsigned int access )
471 {
472     return (struct process *)get_handle_obj( current->process, handle,
473                                              access, &process_ops );
474 }
475
476 /* find a dll from its base address */
477 static inline struct process_dll *find_process_dll( struct process *process, void *base )
478 {
479     struct process_dll *dll;
480
481     LIST_FOR_EACH_ENTRY( dll, &process->dlls, struct process_dll, entry )
482     {
483         if (dll->base == base) return dll;
484     }
485     return NULL;
486 }
487
488 /* add a dll to a process list */
489 static struct process_dll *process_load_dll( struct process *process, struct file *file,
490                                              void *base, const WCHAR *filename, data_size_t name_len )
491 {
492     struct process_dll *dll;
493
494     /* make sure we don't already have one with the same base address */
495     if (find_process_dll( process, base ))
496     {
497         set_error( STATUS_INVALID_PARAMETER );
498         return NULL;
499     }
500
501     if ((dll = mem_alloc( sizeof(*dll) )))
502     {
503         dll->file = NULL;
504         dll->base = base;
505         dll->filename = NULL;
506         dll->namelen  = name_len;
507         if (name_len && !(dll->filename = memdup( filename, name_len )))
508         {
509             free( dll );
510             return NULL;
511         }
512         if (file) dll->file = grab_file_unless_removable( file );
513         list_add_tail( &process->dlls, &dll->entry );
514     }
515     return dll;
516 }
517
518 /* remove a dll from a process list */
519 static void process_unload_dll( struct process *process, void *base )
520 {
521     struct process_dll *dll = find_process_dll( process, base );
522
523     if (dll && (&dll->entry != list_head( &process->dlls )))  /* main exe can't be unloaded */
524     {
525         if (dll->file) release_object( dll->file );
526         free( dll->filename );
527         list_remove( &dll->entry );
528         free( dll );
529         generate_debug_event( current, UNLOAD_DLL_DEBUG_EVENT, base );
530     }
531     else set_error( STATUS_INVALID_PARAMETER );
532 }
533
534 /* terminate a process with the given exit code */
535 static void terminate_process( struct process *process, struct thread *skip, int exit_code )
536 {
537     struct list *ptr;
538
539     if (skip && skip->process == process)  /* move it to the end of the list */
540     {
541         assert( skip->state != TERMINATED );
542         list_remove( &skip->proc_entry );
543         list_add_tail( &process->thread_list, &skip->proc_entry );
544     }
545
546     grab_object( process );  /* make sure it doesn't get freed when threads die */
547     while ((ptr = list_head( &process->thread_list )))
548     {
549         struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
550
551         if (exit_code) thread->exit_code = exit_code;
552         if (thread == skip) break;
553         kill_thread( thread, 1 );
554     }
555     release_object( process );
556 }
557
558 /* kill all processes */
559 void kill_all_processes( struct process *skip, int exit_code )
560 {
561     for (;;)
562     {
563         struct process *process;
564
565         LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
566         {
567             if (process == skip) continue;
568             if (process->running_threads) break;
569         }
570         if (&process->entry == &process_list) break;  /* no process found */
571         terminate_process( process, NULL, exit_code );
572     }
573 }
574
575 /* kill all processes being attached to a console renderer */
576 void kill_console_processes( struct thread *renderer, int exit_code )
577 {
578     for (;;)  /* restart from the beginning of the list every time */
579     {
580         struct process *process;
581
582         /* find the first process being attached to 'renderer' and still running */
583         LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
584         {
585             if (process == renderer->process) continue;
586             if (!process->running_threads) continue;
587             if (process->console && console_get_renderer( process->console ) == renderer) break;
588         }
589         if (&process->entry == &process_list) break;  /* no process found */
590         terminate_process( process, NULL, exit_code );
591     }
592 }
593
594 /* a process has been killed (i.e. its last thread died) */
595 static void process_killed( struct process *process )
596 {
597     struct handle_table *handles;
598     struct list *ptr;
599
600     assert( list_empty( &process->thread_list ));
601     process->end_time = current_time;
602     close_process_desktop( process );
603     handles = process->handles;
604     process->handles = NULL;
605     if (handles) release_object( handles );
606
607     /* close the console attached to this process, if any */
608     free_console( process );
609
610     while ((ptr = list_head( &process->dlls )))
611     {
612         struct process_dll *dll = LIST_ENTRY( ptr, struct process_dll, entry );
613         if (dll->file) release_object( dll->file );
614         free( dll->filename );
615         list_remove( &dll->entry );
616         free( dll );
617     }
618     destroy_process_classes( process );
619     remove_process_locks( process );
620     set_process_startup_state( process, STARTUP_ABORTED );
621     finish_process_tracing( process );
622     start_sigkill_timer( process );
623     wake_up( &process->obj, 0 );
624 }
625
626 /* add a thread to a process running threads list */
627 void add_process_thread( struct process *process, struct thread *thread )
628 {
629     list_add_tail( &process->thread_list, &thread->proc_entry );
630     if (!process->running_threads++)
631     {
632         running_processes++;
633         if (!process->is_system)
634         {
635             if (!user_processes++ && user_process_event)
636                 reset_event( user_process_event );
637         }
638     }
639     grab_object( thread );
640 }
641
642 /* remove a thread from a process running threads list */
643 void remove_process_thread( struct process *process, struct thread *thread )
644 {
645     assert( process->running_threads > 0 );
646     assert( !list_empty( &process->thread_list ));
647
648     list_remove( &thread->proc_entry );
649
650     if (!--process->running_threads)
651     {
652         /* we have removed the last running thread, exit the process */
653         process->exit_code = thread->exit_code;
654         generate_debug_event( thread, EXIT_PROCESS_DEBUG_EVENT, process );
655         process_killed( process );
656     }
657     else generate_debug_event( thread, EXIT_THREAD_DEBUG_EVENT, thread );
658     release_object( thread );
659 }
660
661 /* suspend all the threads of a process */
662 void suspend_process( struct process *process )
663 {
664     if (!process->suspend++)
665     {
666         struct list *ptr, *next;
667
668         LIST_FOR_EACH_SAFE( ptr, next, &process->thread_list )
669         {
670             struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
671             if (!thread->suspend) stop_thread( thread );
672         }
673     }
674 }
675
676 /* resume all the threads of a process */
677 void resume_process( struct process *process )
678 {
679     assert (process->suspend > 0);
680     if (!--process->suspend)
681     {
682         struct list *ptr, *next;
683
684         LIST_FOR_EACH_SAFE( ptr, next, &process->thread_list )
685         {
686             struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
687             if (!thread->suspend) wake_thread( thread );
688         }
689     }
690 }
691
692 /* kill a process on the spot */
693 void kill_process( struct process *process, int violent_death )
694 {
695     if (violent_death) terminate_process( process, NULL, 1 );
696     else
697     {
698         struct list *ptr;
699
700         grab_object( process );  /* make sure it doesn't get freed when threads die */
701         while ((ptr = list_head( &process->thread_list )))
702         {
703             struct thread *thread = LIST_ENTRY( ptr, struct thread, proc_entry );
704             kill_thread( thread, 0 );
705         }
706         release_object( process );
707     }
708 }
709
710 /* kill all processes being debugged by a given thread */
711 void kill_debugged_processes( struct thread *debugger, int exit_code )
712 {
713     for (;;)  /* restart from the beginning of the list every time */
714     {
715         struct process *process;
716
717         /* find the first process being debugged by 'debugger' and still running */
718         LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
719         {
720             if (!process->running_threads) continue;
721             if (process->debugger == debugger) break;
722         }
723         if (&process->entry == &process_list) break;  /* no process found */
724         process->debugger = NULL;
725         terminate_process( process, NULL, exit_code );
726     }
727 }
728
729
730 /* trigger a breakpoint event in a given process */
731 void break_process( struct process *process )
732 {
733     struct thread *thread;
734
735     suspend_process( process );
736
737     LIST_FOR_EACH_ENTRY( thread, &process->thread_list, struct thread, proc_entry )
738     {
739         if (thread->context)  /* inside an exception event already */
740         {
741             break_thread( thread );
742             goto done;
743         }
744     }
745     if ((thread = get_process_first_thread( process ))) thread->debug_break = 1;
746     else set_error( STATUS_ACCESS_DENIED );
747 done:
748     resume_process( process );
749 }
750
751
752 /* detach a debugger from all its debuggees */
753 void detach_debugged_processes( struct thread *debugger )
754 {
755     struct process *process;
756
757     LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
758     {
759         if (process->debugger == debugger && process->running_threads)
760         {
761             debugger_detach( process, debugger );
762         }
763     }
764 }
765
766
767 void enum_processes( int (*cb)(struct process*, void*), void *user )
768 {
769     struct list *ptr, *next;
770
771     LIST_FOR_EACH_SAFE( ptr, next, &process_list )
772     {
773         struct process *process = LIST_ENTRY( ptr, struct process, entry );
774         if ((cb)(process, user)) break;
775     }
776 }
777
778 /* set the debugged flag in the process PEB */
779 int set_process_debug_flag( struct process *process, int flag )
780 {
781     char data = (flag != 0);
782
783     /* BeingDebugged flag is the byte at offset 2 in the PEB */
784     return write_process_memory( process, (char *)process->peb + 2, 1, &data );
785 }
786
787 /* take a snapshot of currently running processes */
788 struct process_snapshot *process_snap( int *count )
789 {
790     struct process_snapshot *snapshot, *ptr;
791     struct process *process;
792
793     if (!running_processes) return NULL;
794     if (!(snapshot = mem_alloc( sizeof(*snapshot) * running_processes )))
795         return NULL;
796     ptr = snapshot;
797     LIST_FOR_EACH_ENTRY( process, &process_list, struct process, entry )
798     {
799         if (!process->running_threads) continue;
800         ptr->process  = process;
801         ptr->threads  = process->running_threads;
802         ptr->count    = process->obj.refcount;
803         ptr->priority = process->priority;
804         ptr->handles  = get_handle_table_count(process);
805         grab_object( process );
806         ptr++;
807     }
808
809     if (!(*count = ptr - snapshot))
810     {
811         free( snapshot );
812         snapshot = NULL;
813     }
814     return snapshot;
815 }
816
817 /* take a snapshot of the modules of a process */
818 struct module_snapshot *module_snap( struct process *process, int *count )
819 {
820     struct module_snapshot *snapshot, *ptr;
821     struct process_dll *dll;
822     int total = 0;
823
824     LIST_FOR_EACH_ENTRY( dll, &process->dlls, struct process_dll, entry ) total++;
825     if (!(snapshot = mem_alloc( sizeof(*snapshot) * total ))) return NULL;
826
827     ptr = snapshot;
828     LIST_FOR_EACH_ENTRY( dll, &process->dlls, struct process_dll, entry )
829     {
830         ptr->base     = dll->base;
831         ptr->size     = dll->size;
832         ptr->namelen  = dll->namelen;
833         ptr->filename = memdup( dll->filename, dll->namelen );
834         ptr++;
835     }
836     *count = total;
837     return snapshot;
838 }
839
840
841 /* create a new process */
842 DECL_HANDLER(new_process)
843 {
844     struct startup_info *info;
845     struct thread *thread;
846     struct process *process;
847     struct process *parent = current->process;
848     int socket_fd = thread_get_inflight_fd( current, req->socket_fd );
849
850     if (socket_fd == -1)
851     {
852         set_error( STATUS_INVALID_PARAMETER );
853         return;
854     }
855     if (fcntl( socket_fd, F_SETFL, O_NONBLOCK ) == -1)
856     {
857         set_error( STATUS_INVALID_HANDLE );
858         close( socket_fd );
859         return;
860     }
861
862     /* build the startup info for a new process */
863     if (!(info = alloc_object( &startup_info_ops ))) return;
864     info->hstdin       = req->hstdin;
865     info->hstdout      = req->hstdout;
866     info->hstderr      = req->hstderr;
867     info->exe_file     = NULL;
868     info->process      = NULL;
869     info->data_size    = get_req_data_size();
870     info->data         = NULL;
871
872     if (req->exe_file &&
873         !(info->exe_file = get_file_obj( current->process, req->exe_file, FILE_READ_DATA )))
874         goto done;
875
876     if (!(info->data = memdup( get_req_data(), info->data_size ))) goto done;
877
878     if (!(thread = create_process( socket_fd, current, req->inherit_all ))) goto done;
879     process = thread->process;
880     process->create_flags = req->create_flags;
881     process->startup_info = (struct startup_info *)grab_object( info );
882
883     /* connect to the window station */
884     connect_process_winstation( process, current );
885
886     /* thread will be actually suspended in init_done */
887     if (req->create_flags & CREATE_SUSPENDED) thread->suspend++;
888
889     /* set the process console */
890     if (!(req->create_flags & (DETACHED_PROCESS | CREATE_NEW_CONSOLE)))
891     {
892         /* FIXME: some better error checking should be done...
893          * like if hConOut and hConIn are console handles, then they should be on the same
894          * physical console
895          */
896         inherit_console( current, process, req->inherit_all ? req->hstdin : 0 );
897     }
898
899     if (!req->inherit_all && !(req->create_flags & CREATE_NEW_CONSOLE))
900     {
901         info->hstdin  = duplicate_handle( parent, req->hstdin, process,
902                                           0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
903         info->hstdout = duplicate_handle( parent, req->hstdout, process,
904                                           0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
905         info->hstderr = duplicate_handle( parent, req->hstderr, process,
906                                           0, OBJ_INHERIT, DUPLICATE_SAME_ACCESS );
907         /* some handles above may have been invalid; this is not an error */
908         if (get_error() == STATUS_INVALID_HANDLE ||
909             get_error() == STATUS_OBJECT_TYPE_MISMATCH) clear_error();
910     }
911
912     /* attach to the debugger if requested */
913     if (req->create_flags & (DEBUG_PROCESS | DEBUG_ONLY_THIS_PROCESS))
914         set_process_debugger( process, current );
915     else if (parent->debugger && !(parent->create_flags & DEBUG_ONLY_THIS_PROCESS))
916         set_process_debugger( process, parent->debugger );
917
918     if (!(req->create_flags & CREATE_NEW_PROCESS_GROUP))
919         process->group_id = parent->group_id;
920
921     info->process = (struct process *)grab_object( process );
922     reply->info = alloc_handle( current->process, info, SYNCHRONIZE, 0 );
923     reply->pid = get_process_id( process );
924     reply->tid = get_thread_id( thread );
925     reply->phandle = alloc_handle( parent, process, req->process_access, req->process_attr );
926     reply->thandle = alloc_handle( parent, thread, req->thread_access, req->thread_attr );
927
928  done:
929     release_object( info );
930 }
931
932 /* Retrieve information about a newly started process */
933 DECL_HANDLER(get_new_process_info)
934 {
935     struct startup_info *info;
936
937     if ((info = (struct startup_info *)get_handle_obj( current->process, req->info,
938                                                        0, &startup_info_ops )))
939     {
940         reply->success = is_process_init_done( info->process );
941         reply->exit_code = info->process->exit_code;
942         release_object( info );
943     }
944 }
945
946 /* Retrieve the new process startup info */
947 DECL_HANDLER(get_startup_info)
948 {
949     struct process *process = current->process;
950     struct startup_info *info = process->startup_info;
951     data_size_t size;
952
953     if (!info) return;
954
955     if (info->exe_file &&
956         !(reply->exe_file = alloc_handle( process, info->exe_file, GENERIC_READ, 0 ))) return;
957
958     reply->hstdin  = info->hstdin;
959     reply->hstdout = info->hstdout;
960     reply->hstderr = info->hstderr;
961
962     /* we return the data directly without making a copy so this can only be called once */
963     size = info->data_size;
964     if (size > get_reply_max_size()) size = get_reply_max_size();
965     set_reply_data_ptr( info->data, size );
966     info->data = NULL;
967     info->data_size = 0;
968 }
969
970 /* signal the end of the process initialization */
971 DECL_HANDLER(init_process_done)
972 {
973     struct process_dll *dll;
974     struct process *process = current->process;
975
976     if (is_process_init_done(process))
977     {
978         set_error( STATUS_INVALID_PARAMETER );
979         return;
980     }
981     if (!(dll = find_process_dll( process, req->module )))
982     {
983         set_error( STATUS_DLL_NOT_FOUND );
984         return;
985     }
986
987     /* main exe is the first in the dll list */
988     list_remove( &dll->entry );
989     list_add_head( &process->dlls, &dll->entry );
990
991     generate_startup_debug_events( process, req->entry );
992     set_process_startup_state( process, STARTUP_DONE );
993
994     if (req->gui) process->idle_event = create_event( NULL, NULL, 0, 1, 0 );
995     if (current->suspend + process->suspend > 0) stop_thread( current );
996     if (process->debugger) set_process_debug_flag( process, 1 );
997 }
998
999 /* open a handle to a process */
1000 DECL_HANDLER(open_process)
1001 {
1002     struct process *process = get_process_from_id( req->pid );
1003     reply->handle = 0;
1004     if (process)
1005     {
1006         reply->handle = alloc_handle( current->process, process, req->access, req->attributes );
1007         release_object( process );
1008     }
1009 }
1010
1011 /* terminate a process */
1012 DECL_HANDLER(terminate_process)
1013 {
1014     struct process *process;
1015
1016     if ((process = get_process_from_handle( req->handle, PROCESS_TERMINATE )))
1017     {
1018         reply->self = (current->process == process);
1019         terminate_process( process, current, req->exit_code );
1020         release_object( process );
1021     }
1022 }
1023
1024 /* fetch information about a process */
1025 DECL_HANDLER(get_process_info)
1026 {
1027     struct process *process;
1028
1029     if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
1030     {
1031         reply->pid              = get_process_id( process );
1032         reply->ppid             = process->parent ? get_process_id( process->parent ) : 0;
1033         reply->exit_code        = process->exit_code;
1034         reply->priority         = process->priority;
1035         reply->affinity         = process->affinity;
1036         reply->peb              = process->peb;
1037         reply->start_time       = process->start_time;
1038         reply->end_time         = process->end_time;
1039         release_object( process );
1040     }
1041 }
1042
1043 /* set information about a process */
1044 DECL_HANDLER(set_process_info)
1045 {
1046     struct process *process;
1047
1048     if ((process = get_process_from_handle( req->handle, PROCESS_SET_INFORMATION )))
1049     {
1050         if (req->mask & SET_PROCESS_INFO_PRIORITY) process->priority = req->priority;
1051         if (req->mask & SET_PROCESS_INFO_AFFINITY)
1052         {
1053             if (req->affinity != 1) set_error( STATUS_INVALID_PARAMETER );
1054             else process->affinity = req->affinity;
1055         }
1056         release_object( process );
1057     }
1058 }
1059
1060 /* read data from a process address space */
1061 DECL_HANDLER(read_process_memory)
1062 {
1063     struct process *process;
1064     data_size_t len = get_reply_max_size();
1065
1066     if (!(process = get_process_from_handle( req->handle, PROCESS_VM_READ ))) return;
1067
1068     if (len)
1069     {
1070         char *buffer = mem_alloc( len );
1071         if (buffer)
1072         {
1073             if (read_process_memory( process, req->addr, len, buffer ))
1074                 set_reply_data_ptr( buffer, len );
1075             else
1076                 free( buffer );
1077         }
1078     }
1079     release_object( process );
1080 }
1081
1082 /* write data to a process address space */
1083 DECL_HANDLER(write_process_memory)
1084 {
1085     struct process *process;
1086
1087     if ((process = get_process_from_handle( req->handle, PROCESS_VM_WRITE )))
1088     {
1089         data_size_t len = get_req_data_size();
1090         if (len) write_process_memory( process, req->addr, len, get_req_data() );
1091         else set_error( STATUS_INVALID_PARAMETER );
1092         release_object( process );
1093     }
1094 }
1095
1096 /* notify the server that a dll has been loaded */
1097 DECL_HANDLER(load_dll)
1098 {
1099     struct process_dll *dll;
1100     struct file *file = NULL;
1101
1102     if (req->handle && !(file = get_file_obj( current->process, req->handle, FILE_READ_DATA )))
1103         return;
1104
1105     if ((dll = process_load_dll( current->process, file, req->base,
1106                                  get_req_data(), get_req_data_size() )))
1107     {
1108         dll->size       = req->size;
1109         dll->dbg_offset = req->dbg_offset;
1110         dll->dbg_size   = req->dbg_size;
1111         dll->name       = req->name;
1112         /* only generate event if initialization is done */
1113         if (is_process_init_done( current->process ))
1114             generate_debug_event( current, LOAD_DLL_DEBUG_EVENT, dll );
1115     }
1116     if (file) release_object( file );
1117 }
1118
1119 /* notify the server that a dll is being unloaded */
1120 DECL_HANDLER(unload_dll)
1121 {
1122     process_unload_dll( current->process, req->base );
1123 }
1124
1125 /* retrieve information about a module in a process */
1126 DECL_HANDLER(get_dll_info)
1127 {
1128     struct process *process;
1129
1130     if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
1131     {
1132         struct process_dll *dll = find_process_dll( process, req->base_address );
1133
1134         if (dll)
1135         {
1136             reply->size = dll->size;
1137             reply->entry_point = NULL; /* FIXME */
1138             if (dll->filename)
1139             {
1140                 data_size_t len = min( dll->namelen, get_reply_max_size() );
1141                 set_reply_data( dll->filename, len );
1142             }
1143         }
1144         else
1145             set_error( STATUS_DLL_NOT_FOUND );
1146
1147         release_object( process );
1148     }
1149 }
1150
1151 /* retrieve the process idle event */
1152 DECL_HANDLER(get_process_idle_event)
1153 {
1154     struct process *process;
1155
1156     reply->event = 0;
1157     if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
1158     {
1159         if (process->idle_event && process != current->process)
1160             reply->event = alloc_handle( current->process, process->idle_event,
1161                                          EVENT_ALL_ACCESS, 0 );
1162         release_object( process );
1163     }
1164 }
1165
1166 /* make the current process a system process */
1167 DECL_HANDLER(make_process_system)
1168 {
1169     struct process *process = current->process;
1170
1171     if (!user_process_event)
1172     {
1173         if (!(user_process_event = create_event( NULL, NULL, 0, 1, 0 ))) return;
1174         make_object_static( (struct object *)user_process_event );
1175     }
1176
1177     if (!(reply->event = alloc_handle( current->process, user_process_event, EVENT_ALL_ACCESS, 0 )))
1178         return;
1179
1180     if (!process->is_system)
1181     {
1182         process->is_system = 1;
1183         if (!--user_processes) set_event( user_process_event );
1184     }
1185 }