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