server: Add a generic apc_call structure to make it easier to extend, and more type...
[wine] / server / thread.c
1 /*
2  * Server-side thread 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 <errno.h>
26 #include <fcntl.h>
27 #include <signal.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <sys/types.h>
33 #include <unistd.h>
34 #include <time.h>
35 #ifdef HAVE_POLL_H
36 #include <poll.h>
37 #endif
38
39 #include "ntstatus.h"
40 #define WIN32_NO_STATUS
41 #include "windef.h"
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
53 /* thread queues */
54
55 struct thread_wait
56 {
57     struct thread_wait     *next;       /* next wait structure for this thread */
58     struct thread          *thread;     /* owner thread */
59     int                     count;      /* count of objects */
60     int                     flags;
61     void                   *cookie;     /* magic cookie to return to client */
62     struct timeval          timeout;
63     struct timeout_user    *user;
64     struct wait_queue_entry queues[1];
65 };
66
67 /* asynchronous procedure calls */
68
69 struct thread_apc
70 {
71     struct object       obj;      /* object header */
72     struct list         entry;    /* queue linked list */
73     struct object      *owner;    /* object that queued this apc */
74     int                 executed; /* has it been executed by the client? */
75     apc_call_t          call;
76 };
77
78 static void dump_thread_apc( struct object *obj, int verbose );
79 static int thread_apc_signaled( struct object *obj, struct thread *thread );
80
81 static const struct object_ops thread_apc_ops =
82 {
83     sizeof(struct thread_apc),  /* size */
84     dump_thread_apc,            /* dump */
85     add_queue,                  /* add_queue */
86     remove_queue,               /* remove_queue */
87     thread_apc_signaled,        /* signaled */
88     no_satisfied,               /* satisfied */
89     no_signal,                  /* signal */
90     no_get_fd,                  /* get_fd */
91     no_map_access,              /* map_access */
92     no_lookup_name,             /* lookup_name */
93     no_close_handle,            /* close_handle */
94     no_destroy                  /* destroy */
95 };
96
97
98 /* thread operations */
99
100 static void dump_thread( struct object *obj, int verbose );
101 static int thread_signaled( struct object *obj, struct thread *thread );
102 static unsigned int thread_map_access( struct object *obj, unsigned int access );
103 static void thread_poll_event( struct fd *fd, int event );
104 static void destroy_thread( struct object *obj );
105 static struct thread_apc *thread_dequeue_apc( struct thread *thread, int system_only );
106
107 static const struct object_ops thread_ops =
108 {
109     sizeof(struct thread),      /* size */
110     dump_thread,                /* dump */
111     add_queue,                  /* add_queue */
112     remove_queue,               /* remove_queue */
113     thread_signaled,            /* signaled */
114     no_satisfied,               /* satisfied */
115     no_signal,                  /* signal */
116     no_get_fd,                  /* get_fd */
117     thread_map_access,          /* map_access */
118     no_lookup_name,             /* lookup_name */
119     no_close_handle,            /* close_handle */
120     destroy_thread              /* destroy */
121 };
122
123 static const struct fd_ops thread_fd_ops =
124 {
125     NULL,                       /* get_poll_events */
126     thread_poll_event,          /* poll_event */
127     no_flush,                   /* flush */
128     no_get_file_info,           /* get_file_info */
129     no_queue_async,             /* queue_async */
130     no_cancel_async             /* cancel_async */
131 };
132
133 static struct list thread_list = LIST_INIT(thread_list);
134
135 /* initialize the structure for a newly allocated thread */
136 inline static void init_thread_structure( struct thread *thread )
137 {
138     int i;
139
140     thread->unix_pid        = -1;  /* not known yet */
141     thread->unix_tid        = -1;  /* not known yet */
142     thread->context         = NULL;
143     thread->suspend_context = NULL;
144     thread->teb             = NULL;
145     thread->debug_ctx       = NULL;
146     thread->debug_event     = NULL;
147     thread->debug_break     = 0;
148     thread->queue           = NULL;
149     thread->wait            = NULL;
150     thread->error           = 0;
151     thread->req_data        = NULL;
152     thread->req_toread      = 0;
153     thread->reply_data      = NULL;
154     thread->reply_towrite   = 0;
155     thread->request_fd      = NULL;
156     thread->reply_fd        = NULL;
157     thread->wait_fd         = NULL;
158     thread->state           = RUNNING;
159     thread->exit_code       = 0;
160     thread->priority        = 0;
161     thread->affinity        = 1;
162     thread->suspend         = 0;
163     thread->desktop_users   = 0;
164     thread->token           = NULL;
165
166     thread->creation_time = current_time;
167     thread->exit_time.tv_sec = thread->exit_time.tv_usec = 0;
168
169     list_init( &thread->mutex_list );
170     list_init( &thread->system_apc );
171     list_init( &thread->user_apc );
172
173     for (i = 0; i < MAX_INFLIGHT_FDS; i++)
174         thread->inflight[i].server = thread->inflight[i].client = -1;
175 }
176
177 /* check if address looks valid for a client-side data structure (TEB etc.) */
178 static inline int is_valid_address( void *addr )
179 {
180     return addr && !((unsigned long)addr % sizeof(int));
181 }
182
183 /* create a new thread */
184 struct thread *create_thread( int fd, struct process *process )
185 {
186     struct thread *thread;
187
188     if (!(thread = alloc_object( &thread_ops ))) return NULL;
189
190     init_thread_structure( thread );
191
192     thread->process = (struct process *)grab_object( process );
193     thread->desktop = process->desktop;
194     if (!current) current = thread;
195
196     list_add_head( &thread_list, &thread->entry );
197
198     if (!(thread->id = alloc_ptid( thread )))
199     {
200         release_object( thread );
201         return NULL;
202     }
203     if (!(thread->request_fd = create_anonymous_fd( &thread_fd_ops, fd, &thread->obj )))
204     {
205         release_object( thread );
206         return NULL;
207     }
208
209     set_fd_events( thread->request_fd, POLLIN );  /* start listening to events */
210     add_process_thread( thread->process, thread );
211     return thread;
212 }
213
214 /* handle a client event */
215 static void thread_poll_event( struct fd *fd, int event )
216 {
217     struct thread *thread = get_fd_user( fd );
218     assert( thread->obj.ops == &thread_ops );
219
220     if (event & (POLLERR | POLLHUP)) kill_thread( thread, 0 );
221     else if (event & POLLIN) read_request( thread );
222     else if (event & POLLOUT) write_reply( thread );
223 }
224
225 /* cleanup everything that is no longer needed by a dead thread */
226 /* used by destroy_thread and kill_thread */
227 static void cleanup_thread( struct thread *thread )
228 {
229     int i;
230     struct thread_apc *apc;
231
232     while ((apc = thread_dequeue_apc( thread, 0 ))) release_object( apc );
233     free( thread->req_data );
234     free( thread->reply_data );
235     if (thread->request_fd) release_object( thread->request_fd );
236     if (thread->reply_fd) release_object( thread->reply_fd );
237     if (thread->wait_fd) release_object( thread->wait_fd );
238     free( thread->suspend_context );
239     free_msg_queue( thread );
240     cleanup_clipboard_thread(thread);
241     destroy_thread_windows( thread );
242     close_thread_desktop( thread );
243     for (i = 0; i < MAX_INFLIGHT_FDS; i++)
244     {
245         if (thread->inflight[i].client != -1)
246         {
247             close( thread->inflight[i].server );
248             thread->inflight[i].client = thread->inflight[i].server = -1;
249         }
250     }
251     thread->req_data = NULL;
252     thread->reply_data = NULL;
253     thread->request_fd = NULL;
254     thread->reply_fd = NULL;
255     thread->wait_fd = NULL;
256     thread->context = NULL;
257     thread->suspend_context = NULL;
258     thread->desktop = 0;
259 }
260
261 /* destroy a thread when its refcount is 0 */
262 static void destroy_thread( struct object *obj )
263 {
264     struct thread *thread = (struct thread *)obj;
265     assert( obj->ops == &thread_ops );
266
267     assert( !thread->debug_ctx );  /* cannot still be debugging something */
268     list_remove( &thread->entry );
269     cleanup_thread( thread );
270     release_object( thread->process );
271     if (thread->id) free_ptid( thread->id );
272     if (thread->token) release_object( thread->token );
273 }
274
275 /* dump a thread on stdout for debugging purposes */
276 static void dump_thread( struct object *obj, int verbose )
277 {
278     struct thread *thread = (struct thread *)obj;
279     assert( obj->ops == &thread_ops );
280
281     fprintf( stderr, "Thread id=%04x unix pid=%d unix tid=%d teb=%p state=%d\n",
282              thread->id, thread->unix_pid, thread->unix_tid, thread->teb, thread->state );
283 }
284
285 static int thread_signaled( struct object *obj, struct thread *thread )
286 {
287     struct thread *mythread = (struct thread *)obj;
288     return (mythread->state == TERMINATED);
289 }
290
291 static unsigned int thread_map_access( struct object *obj, unsigned int access )
292 {
293     if (access & GENERIC_READ)    access |= STANDARD_RIGHTS_READ | SYNCHRONIZE;
294     if (access & GENERIC_WRITE)   access |= STANDARD_RIGHTS_WRITE | SYNCHRONIZE;
295     if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
296     if (access & GENERIC_ALL)     access |= THREAD_ALL_ACCESS;
297     return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
298 }
299
300 static void dump_thread_apc( struct object *obj, int verbose )
301 {
302     struct thread_apc *apc = (struct thread_apc *)obj;
303     assert( obj->ops == &thread_apc_ops );
304
305     fprintf( stderr, "APC owner=%p type=%u\n", apc->owner, apc->call.type );
306 }
307
308 static int thread_apc_signaled( struct object *obj, struct thread *thread )
309 {
310     struct thread_apc *apc = (struct thread_apc *)obj;
311     return apc->executed;
312 }
313
314 /* get a thread pointer from a thread id (and increment the refcount) */
315 struct thread *get_thread_from_id( thread_id_t id )
316 {
317     struct object *obj = get_ptid_entry( id );
318
319     if (obj && obj->ops == &thread_ops) return (struct thread *)grab_object( obj );
320     set_error( STATUS_INVALID_CID );
321     return NULL;
322 }
323
324 /* get a thread from a handle (and increment the refcount) */
325 struct thread *get_thread_from_handle( obj_handle_t handle, unsigned int access )
326 {
327     return (struct thread *)get_handle_obj( current->process, handle,
328                                             access, &thread_ops );
329 }
330
331 /* find a thread from a Unix tid */
332 struct thread *get_thread_from_tid( int tid )
333 {
334     struct thread *thread;
335
336     LIST_FOR_EACH_ENTRY( thread, &thread_list, struct thread, entry )
337     {
338         if (thread->unix_tid == tid) return thread;
339     }
340     return NULL;
341 }
342
343 /* find a thread from a Unix pid */
344 struct thread *get_thread_from_pid( int pid )
345 {
346     struct thread *thread;
347
348     LIST_FOR_EACH_ENTRY( thread, &thread_list, struct thread, entry )
349     {
350         if (thread->unix_pid == pid) return thread;
351     }
352     return NULL;
353 }
354
355 /* set all information about a thread */
356 static void set_thread_info( struct thread *thread,
357                              const struct set_thread_info_request *req )
358 {
359     if (req->mask & SET_THREAD_INFO_PRIORITY)
360         thread->priority = req->priority;
361     if (req->mask & SET_THREAD_INFO_AFFINITY)
362     {
363         if (req->affinity != 1) set_error( STATUS_INVALID_PARAMETER );
364         else thread->affinity = req->affinity;
365     }
366     if (req->mask & SET_THREAD_INFO_TOKEN)
367         security_set_thread_token( thread, req->token );
368 }
369
370 /* stop a thread (at the Unix level) */
371 void stop_thread( struct thread *thread )
372 {
373     if (thread->context) return;  /* already inside a debug event, no need for a signal */
374     /* can't stop a thread while initialisation is in progress */
375     if (is_process_init_done(thread->process)) send_thread_signal( thread, SIGUSR1 );
376 }
377
378 /* suspend a thread */
379 static int suspend_thread( struct thread *thread )
380 {
381     int old_count = thread->suspend;
382     if (thread->suspend < MAXIMUM_SUSPEND_COUNT)
383     {
384         if (!(thread->process->suspend + thread->suspend++)) stop_thread( thread );
385     }
386     else set_error( STATUS_SUSPEND_COUNT_EXCEEDED );
387     return old_count;
388 }
389
390 /* resume a thread */
391 static int resume_thread( struct thread *thread )
392 {
393     int old_count = thread->suspend;
394     if (thread->suspend > 0)
395     {
396         if (!(--thread->suspend + thread->process->suspend)) wake_thread( thread );
397     }
398     return old_count;
399 }
400
401 /* add a thread to an object wait queue; return 1 if OK, 0 on error */
402 int add_queue( struct object *obj, struct wait_queue_entry *entry )
403 {
404     grab_object( obj );
405     entry->obj = obj;
406     list_add_tail( &obj->wait_queue, &entry->entry );
407     return 1;
408 }
409
410 /* remove a thread from an object wait queue */
411 void remove_queue( struct object *obj, struct wait_queue_entry *entry )
412 {
413     list_remove( &entry->entry );
414     release_object( obj );
415 }
416
417 /* finish waiting */
418 static void end_wait( struct thread *thread )
419 {
420     struct thread_wait *wait = thread->wait;
421     struct wait_queue_entry *entry;
422     int i;
423
424     assert( wait );
425     for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
426         entry->obj->ops->remove_queue( entry->obj, entry );
427     if (wait->user) remove_timeout_user( wait->user );
428     thread->wait = wait->next;
429     free( wait );
430 }
431
432 /* build the thread wait structure */
433 static int wait_on( int count, struct object *objects[], int flags, const abs_time_t *timeout )
434 {
435     struct thread_wait *wait;
436     struct wait_queue_entry *entry;
437     int i;
438
439     if (!(wait = mem_alloc( sizeof(*wait) + (count-1) * sizeof(*entry) ))) return 0;
440     wait->next    = current->wait;
441     wait->thread  = current;
442     wait->count   = count;
443     wait->flags   = flags;
444     wait->user    = NULL;
445     current->wait = wait;
446     if (flags & SELECT_TIMEOUT)
447     {
448         wait->timeout.tv_sec  = timeout->sec;
449         wait->timeout.tv_usec = timeout->usec;
450     }
451
452     for (i = 0, entry = wait->queues; i < count; i++, entry++)
453     {
454         struct object *obj = objects[i];
455         entry->thread = current;
456         if (!obj->ops->add_queue( obj, entry ))
457         {
458             wait->count = i;
459             end_wait( current );
460             return 0;
461         }
462     }
463     return 1;
464 }
465
466 /* check if the thread waiting condition is satisfied */
467 static int check_wait( struct thread *thread )
468 {
469     int i, signaled;
470     struct thread_wait *wait = thread->wait;
471     struct wait_queue_entry *entry = wait->queues;
472
473     /* Suspended threads may not acquire locks */
474     if (thread->process->suspend + thread->suspend > 0) return -1;
475
476     assert( wait );
477     if (wait->flags & SELECT_ALL)
478     {
479         int not_ok = 0;
480         /* Note: we must check them all anyway, as some objects may
481          * want to do something when signaled, even if others are not */
482         for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
483             not_ok |= !entry->obj->ops->signaled( entry->obj, thread );
484         if (not_ok) goto other_checks;
485         /* Wait satisfied: tell it to all objects */
486         signaled = 0;
487         for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
488             if (entry->obj->ops->satisfied( entry->obj, thread ))
489                 signaled = STATUS_ABANDONED_WAIT_0;
490         return signaled;
491     }
492     else
493     {
494         for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
495         {
496             if (!entry->obj->ops->signaled( entry->obj, thread )) continue;
497             /* Wait satisfied: tell it to the object */
498             signaled = i;
499             if (entry->obj->ops->satisfied( entry->obj, thread ))
500                 signaled = i + STATUS_ABANDONED_WAIT_0;
501             return signaled;
502         }
503     }
504
505  other_checks:
506     if ((wait->flags & SELECT_INTERRUPTIBLE) && !list_empty(&thread->system_apc)) return STATUS_USER_APC;
507     if ((wait->flags & SELECT_ALERTABLE) && !list_empty(&thread->user_apc)) return STATUS_USER_APC;
508     if (wait->flags & SELECT_TIMEOUT)
509     {
510         if (!time_before( &current_time, &wait->timeout )) return STATUS_TIMEOUT;
511     }
512     return -1;
513 }
514
515 /* send the wakeup signal to a thread */
516 static int send_thread_wakeup( struct thread *thread, void *cookie, int signaled )
517 {
518     struct wake_up_reply reply;
519     int ret;
520
521     reply.cookie   = cookie;
522     reply.signaled = signaled;
523     if ((ret = write( get_unix_fd( thread->wait_fd ), &reply, sizeof(reply) )) == sizeof(reply))
524         return 0;
525     if (ret >= 0)
526         fatal_protocol_error( thread, "partial wakeup write %d\n", ret );
527     else if (errno == EPIPE)
528         kill_thread( thread, 0 );  /* normal death */
529     else
530         fatal_protocol_perror( thread, "write" );
531     return -1;
532 }
533
534 /* attempt to wake up a thread */
535 /* return >0 if OK, 0 if the wait condition is still not satisfied */
536 int wake_thread( struct thread *thread )
537 {
538     int signaled, count;
539     void *cookie;
540
541     for (count = 0; thread->wait; count++)
542     {
543         if ((signaled = check_wait( thread )) == -1) break;
544
545         cookie = thread->wait->cookie;
546         if (debug_level) fprintf( stderr, "%04x: *wakeup* signaled=%d cookie=%p\n",
547                                   thread->id, signaled, cookie );
548         end_wait( thread );
549         if (send_thread_wakeup( thread, cookie, signaled ) == -1) /* error */
550             break;
551     }
552     return count;
553 }
554
555 /* thread wait timeout */
556 static void thread_timeout( void *ptr )
557 {
558     struct thread_wait *wait = ptr;
559     struct thread *thread = wait->thread;
560     void *cookie = wait->cookie;
561
562     wait->user = NULL;
563     if (thread->wait != wait) return; /* not the top-level wait, ignore it */
564     if (thread->suspend + thread->process->suspend > 0) return;  /* suspended, ignore it */
565
566     if (debug_level) fprintf( stderr, "%04x: *wakeup* signaled=%d cookie=%p\n",
567                               thread->id, (int)STATUS_TIMEOUT, cookie );
568     end_wait( thread );
569     if (send_thread_wakeup( thread, cookie, STATUS_TIMEOUT ) == -1) return;
570     /* check if other objects have become signaled in the meantime */
571     wake_thread( thread );
572 }
573
574 /* try signaling an event flag, a semaphore or a mutex */
575 static int signal_object( obj_handle_t handle )
576 {
577     struct object *obj;
578     int ret = 0;
579
580     obj = get_handle_obj( current->process, handle, 0, NULL );
581     if (obj)
582     {
583         ret = obj->ops->signal( obj, get_handle_access( current->process, handle ));
584         release_object( obj );
585     }
586     return ret;
587 }
588
589 /* select on a list of handles */
590 static void select_on( int count, void *cookie, const obj_handle_t *handles,
591                        int flags, const abs_time_t *timeout, obj_handle_t signal_obj )
592 {
593     int ret, i;
594     struct object *objects[MAXIMUM_WAIT_OBJECTS];
595
596     if ((count < 0) || (count > MAXIMUM_WAIT_OBJECTS))
597     {
598         set_error( STATUS_INVALID_PARAMETER );
599         return;
600     }
601     for (i = 0; i < count; i++)
602     {
603         if (!(objects[i] = get_handle_obj( current->process, handles[i], SYNCHRONIZE, NULL )))
604             break;
605     }
606
607     if (i < count) goto done;
608     if (!wait_on( count, objects, flags, timeout )) goto done;
609
610     /* signal the object */
611     if (signal_obj)
612     {
613         if (!signal_object( signal_obj ))
614         {
615             end_wait( current );
616             goto done;
617         }
618         /* check if we woke ourselves up */
619         if (!current->wait) goto done;
620     }
621
622     if ((ret = check_wait( current )) != -1)
623     {
624         /* condition is already satisfied */
625         end_wait( current );
626         set_error( ret );
627         goto done;
628     }
629
630     /* now we need to wait */
631     if (flags & SELECT_TIMEOUT)
632     {
633         if (!(current->wait->user = add_timeout_user( &current->wait->timeout,
634                                                       thread_timeout, current->wait )))
635         {
636             end_wait( current );
637             goto done;
638         }
639     }
640     current->wait->cookie = cookie;
641     set_error( STATUS_PENDING );
642
643 done:
644     while (--i >= 0) release_object( objects[i] );
645 }
646
647 /* attempt to wake threads sleeping on the object wait queue */
648 void wake_up( struct object *obj, int max )
649 {
650     struct list *ptr, *next;
651
652     LIST_FOR_EACH_SAFE( ptr, next, &obj->wait_queue )
653     {
654         struct wait_queue_entry *entry = LIST_ENTRY( ptr, struct wait_queue_entry, entry );
655         if (wake_thread( entry->thread ))
656         {
657             if (max && !--max) break;
658         }
659     }
660 }
661
662 /* return the apc queue to use for a given apc type */
663 static inline struct list *get_apc_queue( struct thread *thread, enum apc_type type )
664 {
665     switch(type)
666     {
667     case APC_NONE:
668     case APC_USER:
669     case APC_TIMER:
670         return &thread->user_apc;
671     default:
672         return &thread->system_apc;
673     }
674 }
675
676 /* queue an async procedure call */
677 int thread_queue_apc( struct thread *thread, struct object *owner, const apc_call_t *call_data )
678 {
679     struct thread_apc *apc;
680     struct list *queue = get_apc_queue( thread, call_data->type );
681
682     /* cancel a possible previous APC with the same owner */
683     if (owner) thread_cancel_apc( thread, owner, call_data->type );
684     if (thread->state == TERMINATED) return 0;
685
686     if (!(apc = alloc_object( &thread_apc_ops ))) return 0;
687     apc->call     = *call_data;
688     apc->owner    = owner;
689     apc->executed = 0;
690     list_add_tail( queue, &apc->entry );
691     if (!list_prev( queue, &apc->entry ))  /* first one */
692         wake_thread( thread );
693
694     return 1;
695 }
696
697 /* cancel the async procedure call owned by a specific object */
698 void thread_cancel_apc( struct thread *thread, struct object *owner, enum apc_type type )
699 {
700     struct thread_apc *apc;
701     struct list *queue = get_apc_queue( thread, type );
702
703     LIST_FOR_EACH_ENTRY( apc, queue, struct thread_apc, entry )
704     {
705         if (apc->owner != owner) continue;
706         list_remove( &apc->entry );
707         release_object( apc );
708         return;
709     }
710 }
711
712 /* remove the head apc from the queue; the returned pointer must be freed by the caller */
713 static struct thread_apc *thread_dequeue_apc( struct thread *thread, int system_only )
714 {
715     struct thread_apc *apc = NULL;
716     struct list *ptr = list_head( &thread->system_apc );
717
718     if (!ptr && !system_only) ptr = list_head( &thread->user_apc );
719     if (ptr)
720     {
721         apc = LIST_ENTRY( ptr, struct thread_apc, entry );
722         list_remove( ptr );
723     }
724     return apc;
725 }
726
727 /* add an fd to the inflight list */
728 /* return list index, or -1 on error */
729 int thread_add_inflight_fd( struct thread *thread, int client, int server )
730 {
731     int i;
732
733     if (server == -1) return -1;
734     if (client == -1)
735     {
736         close( server );
737         return -1;
738     }
739
740     /* first check if we already have an entry for this fd */
741     for (i = 0; i < MAX_INFLIGHT_FDS; i++)
742         if (thread->inflight[i].client == client)
743         {
744             close( thread->inflight[i].server );
745             thread->inflight[i].server = server;
746             return i;
747         }
748
749     /* now find a free spot to store it */
750     for (i = 0; i < MAX_INFLIGHT_FDS; i++)
751         if (thread->inflight[i].client == -1)
752         {
753             thread->inflight[i].client = client;
754             thread->inflight[i].server = server;
755             return i;
756         }
757     return -1;
758 }
759
760 /* get an inflight fd and purge it from the list */
761 /* the fd must be closed when no longer used */
762 int thread_get_inflight_fd( struct thread *thread, int client )
763 {
764     int i, ret;
765
766     if (client == -1) return -1;
767
768     do
769     {
770         for (i = 0; i < MAX_INFLIGHT_FDS; i++)
771         {
772             if (thread->inflight[i].client == client)
773             {
774                 ret = thread->inflight[i].server;
775                 thread->inflight[i].server = thread->inflight[i].client = -1;
776                 return ret;
777             }
778         }
779     } while (!receive_fd( thread->process ));  /* in case it is still in the socket buffer */
780     return -1;
781 }
782
783 /* kill a thread on the spot */
784 void kill_thread( struct thread *thread, int violent_death )
785 {
786     if (thread->state == TERMINATED) return;  /* already killed */
787     thread->state = TERMINATED;
788     thread->exit_time = current_time;
789     if (current == thread) current = NULL;
790     if (debug_level)
791         fprintf( stderr,"%04x: *killed* exit_code=%d\n",
792                  thread->id, thread->exit_code );
793     if (thread->wait)
794     {
795         while (thread->wait) end_wait( thread );
796         send_thread_wakeup( thread, NULL, STATUS_PENDING );
797         /* if it is waiting on the socket, we don't need to send a SIGTERM */
798         violent_death = 0;
799     }
800     kill_console_processes( thread, 0 );
801     debug_exit_thread( thread );
802     abandon_mutexes( thread );
803     wake_up( &thread->obj, 0 );
804     if (violent_death) send_thread_signal( thread, SIGTERM );
805     cleanup_thread( thread );
806     remove_process_thread( thread->process, thread );
807     release_object( thread );
808 }
809
810 /* trigger a breakpoint event in a given thread */
811 void break_thread( struct thread *thread )
812 {
813     struct debug_event_exception data;
814
815     assert( thread->context );
816
817     data.record.ExceptionCode    = STATUS_BREAKPOINT;
818     data.record.ExceptionFlags   = EXCEPTION_CONTINUABLE;
819     data.record.ExceptionRecord  = NULL;
820     data.record.ExceptionAddress = get_context_ip( thread->context );
821     data.record.NumberParameters = 0;
822     data.first = 1;
823     generate_debug_event( thread, EXCEPTION_DEBUG_EVENT, &data );
824     thread->debug_break = 0;
825 }
826
827 /* take a snapshot of currently running threads */
828 struct thread_snapshot *thread_snap( int *count )
829 {
830     struct thread_snapshot *snapshot, *ptr;
831     struct thread *thread;
832     int total = 0;
833
834     LIST_FOR_EACH_ENTRY( thread, &thread_list, struct thread, entry )
835         if (thread->state != TERMINATED) total++;
836     if (!total || !(snapshot = mem_alloc( sizeof(*snapshot) * total ))) return NULL;
837     ptr = snapshot;
838     LIST_FOR_EACH_ENTRY( thread, &thread_list, struct thread, entry )
839     {
840         if (thread->state == TERMINATED) continue;
841         ptr->thread   = thread;
842         ptr->count    = thread->obj.refcount;
843         ptr->priority = thread->priority;
844         grab_object( thread );
845         ptr++;
846     }
847     *count = total;
848     return snapshot;
849 }
850
851 /* gets the current impersonation token */
852 struct token *thread_get_impersonation_token( struct thread *thread )
853 {
854     if (thread->token)
855         return thread->token;
856     else
857         return thread->process->token;
858 }
859
860 /* create a new thread */
861 DECL_HANDLER(new_thread)
862 {
863     struct thread *thread;
864     int request_fd = thread_get_inflight_fd( current, req->request_fd );
865
866     if (request_fd == -1 || fcntl( request_fd, F_SETFL, O_NONBLOCK ) == -1)
867     {
868         if (request_fd != -1) close( request_fd );
869         set_error( STATUS_INVALID_HANDLE );
870         return;
871     }
872
873     if ((thread = create_thread( request_fd, current->process )))
874     {
875         if (req->suspend) thread->suspend++;
876         reply->tid = get_thread_id( thread );
877         if ((reply->handle = alloc_handle( current->process, thread, req->access, req->attributes )))
878         {
879             /* thread object will be released when the thread gets killed */
880             return;
881         }
882         kill_thread( thread, 1 );
883     }
884 }
885
886 /* initialize a new thread */
887 DECL_HANDLER(init_thread)
888 {
889     struct process *process = current->process;
890     int reply_fd = thread_get_inflight_fd( current, req->reply_fd );
891     int wait_fd = thread_get_inflight_fd( current, req->wait_fd );
892
893     if (current->reply_fd)  /* already initialised */
894     {
895         set_error( STATUS_INVALID_PARAMETER );
896         goto error;
897     }
898
899     if (reply_fd == -1 || fcntl( reply_fd, F_SETFL, O_NONBLOCK ) == -1) goto error;
900
901     current->reply_fd = create_anonymous_fd( &thread_fd_ops, reply_fd, &current->obj );
902     reply_fd = -1;
903     if (!current->reply_fd) goto error;
904
905     if (wait_fd == -1)
906     {
907         set_error( STATUS_TOO_MANY_OPENED_FILES );  /* most likely reason */
908         return;
909     }
910     if (!(current->wait_fd  = create_anonymous_fd( &thread_fd_ops, wait_fd, &current->obj )))
911         return;
912
913     if (!is_valid_address(req->teb) || !is_valid_address(req->peb) || !is_valid_address(req->ldt_copy))
914     {
915         set_error( STATUS_INVALID_PARAMETER );
916         return;
917     }
918
919     current->unix_pid = req->unix_pid;
920     current->unix_tid = req->unix_tid;
921     current->teb      = req->teb;
922
923     if (!process->peb)  /* first thread, initialize the process too */
924     {
925         process->unix_pid = current->unix_pid;
926         process->peb      = req->peb;
927         process->ldt_copy = req->ldt_copy;
928         reply->info_size  = init_process( current );
929     }
930     else
931     {
932         if (process->unix_pid != current->unix_pid)
933             process->unix_pid = -1;  /* can happen with linuxthreads */
934         if (current->suspend + process->suspend > 0) stop_thread( current );
935         generate_debug_event( current, CREATE_THREAD_DEBUG_EVENT, req->entry );
936     }
937     debug_level = max( debug_level, req->debug_level );
938
939     reply->pid     = get_process_id( process );
940     reply->tid     = get_thread_id( current );
941     reply->version = SERVER_PROTOCOL_VERSION;
942     reply->server_start.sec  = server_start_time.tv_sec;
943     reply->server_start.usec = server_start_time.tv_usec;
944     return;
945
946  error:
947     if (reply_fd != -1) close( reply_fd );
948     if (wait_fd != -1) close( wait_fd );
949 }
950
951 /* terminate a thread */
952 DECL_HANDLER(terminate_thread)
953 {
954     struct thread *thread;
955
956     reply->self = 0;
957     reply->last = 0;
958     if ((thread = get_thread_from_handle( req->handle, THREAD_TERMINATE )))
959     {
960         thread->exit_code = req->exit_code;
961         if (thread != current) kill_thread( thread, 1 );
962         else
963         {
964             reply->self = 1;
965             reply->last = (thread->process->running_threads == 1);
966         }
967         release_object( thread );
968     }
969 }
970
971 /* open a handle to a thread */
972 DECL_HANDLER(open_thread)
973 {
974     struct thread *thread = get_thread_from_id( req->tid );
975
976     reply->handle = 0;
977     if (thread)
978     {
979         reply->handle = alloc_handle( current->process, thread, req->access, req->attributes );
980         release_object( thread );
981     }
982 }
983
984 /* fetch information about a thread */
985 DECL_HANDLER(get_thread_info)
986 {
987     struct thread *thread;
988     obj_handle_t handle = req->handle;
989
990     if (!handle) thread = get_thread_from_id( req->tid_in );
991     else thread = get_thread_from_handle( req->handle, THREAD_QUERY_INFORMATION );
992
993     if (thread)
994     {
995         reply->pid            = get_process_id( thread->process );
996         reply->tid            = get_thread_id( thread );
997         reply->teb            = thread->teb;
998         reply->exit_code      = (thread->state == TERMINATED) ? thread->exit_code : STATUS_PENDING;
999         reply->priority       = thread->priority;
1000         reply->affinity       = thread->affinity;
1001         reply->creation_time.sec  = thread->creation_time.tv_sec;
1002         reply->creation_time.usec = thread->creation_time.tv_usec;
1003         reply->exit_time.sec  = thread->exit_time.tv_sec;
1004         reply->exit_time.usec = thread->exit_time.tv_usec;
1005         reply->last           = thread->process->running_threads == 1;
1006
1007         release_object( thread );
1008     }
1009 }
1010
1011 /* set information about a thread */
1012 DECL_HANDLER(set_thread_info)
1013 {
1014     struct thread *thread;
1015
1016     if ((thread = get_thread_from_handle( req->handle, THREAD_SET_INFORMATION )))
1017     {
1018         set_thread_info( thread, req );
1019         release_object( thread );
1020     }
1021 }
1022
1023 /* suspend a thread */
1024 DECL_HANDLER(suspend_thread)
1025 {
1026     struct thread *thread;
1027
1028     if ((thread = get_thread_from_handle( req->handle, THREAD_SUSPEND_RESUME )))
1029     {
1030         if (thread->state == TERMINATED) set_error( STATUS_ACCESS_DENIED );
1031         else reply->count = suspend_thread( thread );
1032         release_object( thread );
1033     }
1034 }
1035
1036 /* resume a thread */
1037 DECL_HANDLER(resume_thread)
1038 {
1039     struct thread *thread;
1040
1041     if ((thread = get_thread_from_handle( req->handle, THREAD_SUSPEND_RESUME )))
1042     {
1043         if (thread->state == TERMINATED) set_error( STATUS_ACCESS_DENIED );
1044         else reply->count = resume_thread( thread );
1045         release_object( thread );
1046     }
1047 }
1048
1049 /* select on a handle list */
1050 DECL_HANDLER(select)
1051 {
1052     int count = get_req_data_size() / sizeof(obj_handle_t);
1053     select_on( count, req->cookie, get_req_data(), req->flags, &req->timeout, req->signal );
1054 }
1055
1056 /* queue an APC for a thread */
1057 DECL_HANDLER(queue_apc)
1058 {
1059     struct thread *thread;
1060     if ((thread = get_thread_from_handle( req->handle, THREAD_SET_CONTEXT )))
1061     {
1062         switch( req->call.type )
1063         {
1064         case APC_NONE:
1065         case APC_USER:
1066             thread_queue_apc( thread, NULL, &req->call );
1067             break;
1068         default:
1069             set_error( STATUS_INVALID_PARAMETER );
1070             break;
1071         }
1072         release_object( thread );
1073     }
1074 }
1075
1076 /* get next APC to call */
1077 DECL_HANDLER(get_apc)
1078 {
1079     struct thread_apc *apc;
1080
1081     if (req->prev)
1082     {
1083         if (!(apc = (struct thread_apc *)get_handle_obj( current->process, req->prev,
1084                                                          0, &thread_apc_ops ))) return;
1085         apc->executed = 1;
1086         wake_up( &apc->obj, 0 );
1087         close_handle( current->process, req->prev );
1088         release_object( apc );
1089     }
1090
1091     for (;;)
1092     {
1093         if (!(apc = thread_dequeue_apc( current, !req->alertable )))
1094         {
1095             /* no more APCs */
1096             set_error( STATUS_PENDING );
1097             return;
1098         }
1099         /* Optimization: ignore APC_NONE calls, they are only used to
1100          * wake up a thread, but since we got here the thread woke up already.
1101          */
1102         if (apc->call.type != APC_NONE) break;
1103         release_object( apc );
1104     }
1105
1106     if ((reply->handle = alloc_handle( current->process, apc, SYNCHRONIZE, 0 )))
1107         reply->call = apc->call;
1108     release_object( apc );
1109 }
1110
1111 /* retrieve the current context of a thread */
1112 DECL_HANDLER(get_thread_context)
1113 {
1114     struct thread *thread;
1115     CONTEXT *context;
1116
1117     if (get_reply_max_size() < sizeof(CONTEXT))
1118     {
1119         set_error( STATUS_INVALID_PARAMETER );
1120         return;
1121     }
1122     if (!(thread = get_thread_from_handle( req->handle, THREAD_GET_CONTEXT ))) return;
1123
1124     if (req->suspend)
1125     {
1126         if (thread != current || !thread->suspend_context)
1127         {
1128             /* not suspended, shouldn't happen */
1129             set_error( STATUS_INVALID_PARAMETER );
1130         }
1131         else
1132         {
1133             if (thread->context == thread->suspend_context) thread->context = NULL;
1134             set_reply_data_ptr( thread->suspend_context, sizeof(CONTEXT) );
1135             thread->suspend_context = NULL;
1136         }
1137     }
1138     else if (thread != current && !thread->context)
1139     {
1140         /* thread is not suspended, retry (if it's still running) */
1141         if (thread->state != RUNNING) set_error( STATUS_ACCESS_DENIED );
1142         else set_error( STATUS_PENDING );
1143     }
1144     else if ((context = set_reply_data_size( sizeof(CONTEXT) )))
1145     {
1146         unsigned int flags = get_context_system_regs( req->flags );
1147
1148         memset( context, 0, sizeof(CONTEXT) );
1149         context->ContextFlags = get_context_cpu_flag();
1150         if (thread->context) copy_context( context, thread->context, req->flags & ~flags );
1151         if (flags) get_thread_context( thread, context, flags );
1152     }
1153     reply->self = (thread == current);
1154     release_object( thread );
1155 }
1156
1157 /* set the current context of a thread */
1158 DECL_HANDLER(set_thread_context)
1159 {
1160     struct thread *thread;
1161
1162     if (get_req_data_size() < sizeof(CONTEXT))
1163     {
1164         set_error( STATUS_INVALID_PARAMETER );
1165         return;
1166     }
1167     if (!(thread = get_thread_from_handle( req->handle, THREAD_SET_CONTEXT ))) return;
1168
1169     if (req->suspend)
1170     {
1171         if (thread != current || thread->context)
1172         {
1173             /* nested suspend or exception, shouldn't happen */
1174             set_error( STATUS_INVALID_PARAMETER );
1175         }
1176         else if ((thread->suspend_context = mem_alloc( sizeof(CONTEXT) )))
1177         {
1178             memcpy( thread->suspend_context, get_req_data(), sizeof(CONTEXT) );
1179             thread->context = thread->suspend_context;
1180             if (thread->debug_break) break_thread( thread );
1181         }
1182     }
1183     else if (thread != current && !thread->context)
1184     {
1185         /* thread is not suspended, retry (if it's still running) */
1186         if (thread->state != RUNNING) set_error( STATUS_ACCESS_DENIED );
1187         else set_error( STATUS_PENDING );
1188     }
1189     else
1190     {
1191         const CONTEXT *context = get_req_data();
1192         unsigned int flags = get_context_system_regs( req->flags );
1193
1194         if (flags) set_thread_context( thread, context, flags );
1195         if (thread->context && !get_error())
1196             copy_context( thread->context, context, req->flags & ~flags );
1197     }
1198     reply->self = (thread == current);
1199     release_object( thread );
1200 }
1201
1202 /* fetch a selector entry for a thread */
1203 DECL_HANDLER(get_selector_entry)
1204 {
1205     struct thread *thread;
1206     if ((thread = get_thread_from_handle( req->handle, THREAD_QUERY_INFORMATION )))
1207     {
1208         get_selector_entry( thread, req->entry, &reply->base, &reply->limit, &reply->flags );
1209         release_object( thread );
1210     }
1211 }