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