wine.inf: We should not override existing associations.
[wine/hacks.git] / server / thread.c
blob60b74c9269e63297f1990662a3d09836a6a2b657
1 /*
2 * Server-side thread management
4 * Copyright (C) 1998 Alexandre Julliard
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.
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.
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
21 #include "config.h"
22 #include "wine/port.h"
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
39 #include "ntstatus.h"
40 #define WIN32_NO_STATUS
41 #include "windef.h"
42 #include "winternl.h"
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"
53 /* thread queues */
55 struct thread_wait
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];
67 /* asynchronous procedure calls */
69 struct thread_apc
71 struct list entry; /* queue linked list */
72 struct object *owner; /* object that queued this apc */
73 void *func; /* function to call in client */
74 enum apc_type type; /* type of apc function */
75 void *arg1; /* function arguments */
76 void *arg2;
77 void *arg3;
81 /* thread operations */
83 static void dump_thread( struct object *obj, int verbose );
84 static int thread_signaled( struct object *obj, struct thread *thread );
85 static unsigned int thread_map_access( struct object *obj, unsigned int access );
86 static void thread_poll_event( struct fd *fd, int event );
87 static void destroy_thread( struct object *obj );
88 static struct thread_apc *thread_dequeue_apc( struct thread *thread, int system_only );
90 static const struct object_ops thread_ops =
92 sizeof(struct thread), /* size */
93 dump_thread, /* dump */
94 add_queue, /* add_queue */
95 remove_queue, /* remove_queue */
96 thread_signaled, /* signaled */
97 no_satisfied, /* satisfied */
98 no_signal, /* signal */
99 no_get_fd, /* get_fd */
100 thread_map_access, /* map_access */
101 no_lookup_name, /* lookup_name */
102 no_close_handle, /* close_handle */
103 destroy_thread /* destroy */
106 static const struct fd_ops thread_fd_ops =
108 NULL, /* get_poll_events */
109 thread_poll_event, /* poll_event */
110 no_flush, /* flush */
111 no_get_file_info, /* get_file_info */
112 no_queue_async, /* queue_async */
113 no_cancel_async /* cancel_async */
116 static struct list thread_list = LIST_INIT(thread_list);
118 /* initialize the structure for a newly allocated thread */
119 inline static void init_thread_structure( struct thread *thread )
121 int i;
123 thread->unix_pid = -1; /* not known yet */
124 thread->unix_tid = -1; /* not known yet */
125 thread->context = NULL;
126 thread->suspend_context = NULL;
127 thread->teb = NULL;
128 thread->debug_ctx = NULL;
129 thread->debug_event = NULL;
130 thread->debug_break = 0;
131 thread->queue = NULL;
132 thread->wait = NULL;
133 thread->error = 0;
134 thread->req_data = NULL;
135 thread->req_toread = 0;
136 thread->reply_data = NULL;
137 thread->reply_towrite = 0;
138 thread->request_fd = NULL;
139 thread->reply_fd = NULL;
140 thread->wait_fd = NULL;
141 thread->state = RUNNING;
142 thread->exit_code = 0;
143 thread->priority = THREAD_PRIORITY_NORMAL;
144 thread->affinity = 1;
145 thread->suspend = 0;
146 thread->desktop_users = 0;
147 thread->token = NULL;
149 gettimeofday( &thread->creation_time, NULL );
150 thread->exit_time.tv_sec = thread->exit_time.tv_usec = 0;
152 list_init( &thread->mutex_list );
153 list_init( &thread->system_apc );
154 list_init( &thread->user_apc );
156 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
157 thread->inflight[i].server = thread->inflight[i].client = -1;
160 /* check if address looks valid for a client-side data structure (TEB etc.) */
161 static inline int is_valid_address( void *addr )
163 return addr && !((unsigned long)addr % sizeof(int));
166 /* create a new thread */
167 struct thread *create_thread( int fd, struct process *process )
169 struct thread *thread;
171 if (!(thread = alloc_object( &thread_ops ))) return NULL;
173 init_thread_structure( thread );
175 thread->process = (struct process *)grab_object( process );
176 thread->desktop = process->desktop;
177 if (!current) current = thread;
179 list_add_head( &thread_list, &thread->entry );
181 if (!(thread->id = alloc_ptid( thread )))
183 release_object( thread );
184 return NULL;
186 if (!(thread->request_fd = create_anonymous_fd( &thread_fd_ops, fd, &thread->obj )))
188 release_object( thread );
189 return NULL;
192 set_fd_events( thread->request_fd, POLLIN ); /* start listening to events */
193 add_process_thread( thread->process, thread );
194 return thread;
197 /* handle a client event */
198 static void thread_poll_event( struct fd *fd, int event )
200 struct thread *thread = get_fd_user( fd );
201 assert( thread->obj.ops == &thread_ops );
203 if (event & (POLLERR | POLLHUP)) kill_thread( thread, 0 );
204 else if (event & POLLIN) read_request( thread );
205 else if (event & POLLOUT) write_reply( thread );
208 /* cleanup everything that is no longer needed by a dead thread */
209 /* used by destroy_thread and kill_thread */
210 static void cleanup_thread( struct thread *thread )
212 int i;
213 struct thread_apc *apc;
215 while ((apc = thread_dequeue_apc( thread, 0 ))) free( apc );
216 if (thread->req_data) free( thread->req_data );
217 if (thread->reply_data) free( thread->reply_data );
218 if (thread->request_fd) release_object( thread->request_fd );
219 if (thread->reply_fd) release_object( thread->reply_fd );
220 if (thread->wait_fd) release_object( thread->wait_fd );
221 if (thread->suspend_context) free( thread->suspend_context );
222 free_msg_queue( thread );
223 cleanup_clipboard_thread(thread);
224 destroy_thread_windows( thread );
225 close_thread_desktop( thread );
226 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
228 if (thread->inflight[i].client != -1)
230 close( thread->inflight[i].server );
231 thread->inflight[i].client = thread->inflight[i].server = -1;
234 thread->req_data = NULL;
235 thread->reply_data = NULL;
236 thread->request_fd = NULL;
237 thread->reply_fd = NULL;
238 thread->wait_fd = NULL;
239 thread->context = NULL;
240 thread->suspend_context = NULL;
241 thread->desktop = 0;
244 /* destroy a thread when its refcount is 0 */
245 static void destroy_thread( struct object *obj )
247 struct thread *thread = (struct thread *)obj;
248 assert( obj->ops == &thread_ops );
250 assert( !thread->debug_ctx ); /* cannot still be debugging something */
251 list_remove( &thread->entry );
252 cleanup_thread( thread );
253 release_object( thread->process );
254 if (thread->id) free_ptid( thread->id );
255 if (thread->token) release_object( thread->token );
258 /* dump a thread on stdout for debugging purposes */
259 static void dump_thread( struct object *obj, int verbose )
261 struct thread *thread = (struct thread *)obj;
262 assert( obj->ops == &thread_ops );
264 fprintf( stderr, "Thread id=%04x unix pid=%d unix tid=%d teb=%p state=%d\n",
265 thread->id, thread->unix_pid, thread->unix_tid, thread->teb, thread->state );
268 static int thread_signaled( struct object *obj, struct thread *thread )
270 struct thread *mythread = (struct thread *)obj;
271 return (mythread->state == TERMINATED);
274 static unsigned int thread_map_access( struct object *obj, unsigned int access )
276 if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SYNCHRONIZE;
277 if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE | SYNCHRONIZE;
278 if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
279 if (access & GENERIC_ALL) access |= THREAD_ALL_ACCESS;
280 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
283 /* get a thread pointer from a thread id (and increment the refcount) */
284 struct thread *get_thread_from_id( thread_id_t id )
286 struct object *obj = get_ptid_entry( id );
288 if (obj && obj->ops == &thread_ops) return (struct thread *)grab_object( obj );
289 set_error( STATUS_INVALID_CID );
290 return NULL;
293 /* get a thread from a handle (and increment the refcount) */
294 struct thread *get_thread_from_handle( obj_handle_t handle, unsigned int access )
296 return (struct thread *)get_handle_obj( current->process, handle,
297 access, &thread_ops );
300 /* find a thread from a Unix pid */
301 struct thread *get_thread_from_pid( int pid )
303 struct thread *thread;
305 LIST_FOR_EACH_ENTRY( thread, &thread_list, struct thread, entry )
307 if (thread->unix_tid == pid) return thread;
309 LIST_FOR_EACH_ENTRY( thread, &thread_list, struct thread, entry )
311 if (thread->unix_pid == pid) return thread;
313 return NULL;
316 /* set all information about a thread */
317 static void set_thread_info( struct thread *thread,
318 const struct set_thread_info_request *req )
320 if (req->mask & SET_THREAD_INFO_PRIORITY)
321 thread->priority = req->priority;
322 if (req->mask & SET_THREAD_INFO_AFFINITY)
324 if (req->affinity != 1) set_error( STATUS_INVALID_PARAMETER );
325 else thread->affinity = req->affinity;
327 if (req->mask & SET_THREAD_INFO_TOKEN)
328 security_set_thread_token( thread, req->token );
331 /* stop a thread (at the Unix level) */
332 void stop_thread( struct thread *thread )
334 if (thread->context) return; /* already inside a debug event, no need for a signal */
335 /* can't stop a thread while initialisation is in progress */
336 if (is_process_init_done(thread->process)) send_thread_signal( thread, SIGUSR1 );
339 /* suspend a thread */
340 static int suspend_thread( struct thread *thread )
342 int old_count = thread->suspend;
343 if (thread->suspend < MAXIMUM_SUSPEND_COUNT)
345 if (!(thread->process->suspend + thread->suspend++)) stop_thread( thread );
347 else set_error( STATUS_SUSPEND_COUNT_EXCEEDED );
348 return old_count;
351 /* resume a thread */
352 static int resume_thread( struct thread *thread )
354 int old_count = thread->suspend;
355 if (thread->suspend > 0)
357 if (!(--thread->suspend + thread->process->suspend)) wake_thread( thread );
359 return old_count;
362 /* add a thread to an object wait queue; return 1 if OK, 0 on error */
363 int add_queue( struct object *obj, struct wait_queue_entry *entry )
365 grab_object( obj );
366 entry->obj = obj;
367 list_add_tail( &obj->wait_queue, &entry->entry );
368 return 1;
371 /* remove a thread from an object wait queue */
372 void remove_queue( struct object *obj, struct wait_queue_entry *entry )
374 list_remove( &entry->entry );
375 release_object( obj );
378 /* finish waiting */
379 static void end_wait( struct thread *thread )
381 struct thread_wait *wait = thread->wait;
382 struct wait_queue_entry *entry;
383 int i;
385 assert( wait );
386 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
387 entry->obj->ops->remove_queue( entry->obj, entry );
388 if (wait->user) remove_timeout_user( wait->user );
389 thread->wait = wait->next;
390 free( wait );
393 /* build the thread wait structure */
394 static int wait_on( int count, struct object *objects[], int flags, const abs_time_t *timeout )
396 struct thread_wait *wait;
397 struct wait_queue_entry *entry;
398 int i;
400 if (!(wait = mem_alloc( sizeof(*wait) + (count-1) * sizeof(*entry) ))) return 0;
401 wait->next = current->wait;
402 wait->thread = current;
403 wait->count = count;
404 wait->flags = flags;
405 wait->user = NULL;
406 current->wait = wait;
407 if (flags & SELECT_TIMEOUT)
409 wait->timeout.tv_sec = timeout->sec;
410 wait->timeout.tv_usec = timeout->usec;
413 for (i = 0, entry = wait->queues; i < count; i++, entry++)
415 struct object *obj = objects[i];
416 entry->thread = current;
417 if (!obj->ops->add_queue( obj, entry ))
419 wait->count = i;
420 end_wait( current );
421 return 0;
424 return 1;
427 /* check if the thread waiting condition is satisfied */
428 static int check_wait( struct thread *thread )
430 int i, signaled;
431 struct thread_wait *wait = thread->wait;
432 struct wait_queue_entry *entry = wait->queues;
434 /* Suspended threads may not acquire locks */
435 if (thread->process->suspend + thread->suspend > 0) return -1;
437 assert( wait );
438 if (wait->flags & SELECT_ALL)
440 int not_ok = 0;
441 /* Note: we must check them all anyway, as some objects may
442 * want to do something when signaled, even if others are not */
443 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
444 not_ok |= !entry->obj->ops->signaled( entry->obj, thread );
445 if (not_ok) goto other_checks;
446 /* Wait satisfied: tell it to all objects */
447 signaled = 0;
448 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
449 if (entry->obj->ops->satisfied( entry->obj, thread ))
450 signaled = STATUS_ABANDONED_WAIT_0;
451 return signaled;
453 else
455 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
457 if (!entry->obj->ops->signaled( entry->obj, thread )) continue;
458 /* Wait satisfied: tell it to the object */
459 signaled = i;
460 if (entry->obj->ops->satisfied( entry->obj, thread ))
461 signaled = i + STATUS_ABANDONED_WAIT_0;
462 return signaled;
466 other_checks:
467 if ((wait->flags & SELECT_INTERRUPTIBLE) && !list_empty(&thread->system_apc)) return STATUS_USER_APC;
468 if ((wait->flags & SELECT_ALERTABLE) && !list_empty(&thread->user_apc)) return STATUS_USER_APC;
469 if (wait->flags & SELECT_TIMEOUT)
471 struct timeval now;
472 gettimeofday( &now, NULL );
473 if (!time_before( &now, &wait->timeout )) return STATUS_TIMEOUT;
475 return -1;
478 /* send the wakeup signal to a thread */
479 static int send_thread_wakeup( struct thread *thread, void *cookie, int signaled )
481 struct wake_up_reply reply;
482 int ret;
484 reply.cookie = cookie;
485 reply.signaled = signaled;
486 if ((ret = write( get_unix_fd( thread->wait_fd ), &reply, sizeof(reply) )) == sizeof(reply))
487 return 0;
488 if (ret >= 0)
489 fatal_protocol_error( thread, "partial wakeup write %d\n", ret );
490 else if (errno == EPIPE)
491 kill_thread( thread, 0 ); /* normal death */
492 else
493 fatal_protocol_perror( thread, "write" );
494 return -1;
497 /* attempt to wake up a thread */
498 /* return >0 if OK, 0 if the wait condition is still not satisfied */
499 int wake_thread( struct thread *thread )
501 int signaled, count;
502 void *cookie;
504 for (count = 0; thread->wait; count++)
506 if ((signaled = check_wait( thread )) == -1) break;
508 cookie = thread->wait->cookie;
509 if (debug_level) fprintf( stderr, "%04x: *wakeup* signaled=%d cookie=%p\n",
510 thread->id, signaled, cookie );
511 end_wait( thread );
512 if (send_thread_wakeup( thread, cookie, signaled ) == -1) /* error */
513 break;
515 return count;
518 /* thread wait timeout */
519 static void thread_timeout( void *ptr )
521 struct thread_wait *wait = ptr;
522 struct thread *thread = wait->thread;
523 void *cookie = wait->cookie;
525 wait->user = NULL;
526 if (thread->wait != wait) return; /* not the top-level wait, ignore it */
527 if (thread->suspend + thread->process->suspend > 0) return; /* suspended, ignore it */
529 if (debug_level) fprintf( stderr, "%04x: *wakeup* signaled=%d cookie=%p\n",
530 thread->id, (int)STATUS_TIMEOUT, cookie );
531 end_wait( thread );
532 if (send_thread_wakeup( thread, cookie, STATUS_TIMEOUT ) == -1) return;
533 /* check if other objects have become signaled in the meantime */
534 wake_thread( thread );
537 /* try signaling an event flag, a semaphore or a mutex */
538 static int signal_object( obj_handle_t handle )
540 struct object *obj;
541 int ret = 0;
543 obj = get_handle_obj( current->process, handle, 0, NULL );
544 if (obj)
546 ret = obj->ops->signal( obj, get_handle_access( current->process, handle ));
547 release_object( obj );
549 return ret;
552 /* select on a list of handles */
553 static void select_on( int count, void *cookie, const obj_handle_t *handles,
554 int flags, const abs_time_t *timeout, obj_handle_t signal_obj )
556 int ret, i;
557 struct object *objects[MAXIMUM_WAIT_OBJECTS];
559 if ((count < 0) || (count > MAXIMUM_WAIT_OBJECTS))
561 set_error( STATUS_INVALID_PARAMETER );
562 return;
564 for (i = 0; i < count; i++)
566 if (!(objects[i] = get_handle_obj( current->process, handles[i], SYNCHRONIZE, NULL )))
567 break;
570 if (i < count) goto done;
571 if (!wait_on( count, objects, flags, timeout )) goto done;
573 /* signal the object */
574 if (signal_obj)
576 if (!signal_object( signal_obj ))
578 end_wait( current );
579 goto done;
581 /* check if we woke ourselves up */
582 if (!current->wait) goto done;
585 if ((ret = check_wait( current )) != -1)
587 /* condition is already satisfied */
588 end_wait( current );
589 set_error( ret );
590 goto done;
593 /* now we need to wait */
594 if (flags & SELECT_TIMEOUT)
596 if (!(current->wait->user = add_timeout_user( &current->wait->timeout,
597 thread_timeout, current->wait )))
599 end_wait( current );
600 goto done;
603 current->wait->cookie = cookie;
604 set_error( STATUS_PENDING );
606 done:
607 while (--i >= 0) release_object( objects[i] );
610 /* attempt to wake threads sleeping on the object wait queue */
611 void wake_up( struct object *obj, int max )
613 struct list *ptr, *next;
615 LIST_FOR_EACH_SAFE( ptr, next, &obj->wait_queue )
617 struct wait_queue_entry *entry = LIST_ENTRY( ptr, struct wait_queue_entry, entry );
618 if (wake_thread( entry->thread ))
620 if (max && !--max) break;
625 /* queue an async procedure call */
626 int thread_queue_apc( struct thread *thread, struct object *owner, void *func,
627 enum apc_type type, int system, void *arg1, void *arg2, void *arg3 )
629 struct thread_apc *apc;
630 struct list *queue = system ? &thread->system_apc : &thread->user_apc;
632 /* cancel a possible previous APC with the same owner */
633 if (owner) thread_cancel_apc( thread, owner, system );
634 if (thread->state == TERMINATED) return 0;
636 if (!(apc = mem_alloc( sizeof(*apc) ))) return 0;
637 apc->owner = owner;
638 apc->func = func;
639 apc->type = type;
640 apc->arg1 = arg1;
641 apc->arg2 = arg2;
642 apc->arg3 = arg3;
643 list_add_tail( queue, &apc->entry );
644 if (!list_prev( queue, &apc->entry )) /* first one */
645 wake_thread( thread );
647 return 1;
650 /* cancel the async procedure call owned by a specific object */
651 void thread_cancel_apc( struct thread *thread, struct object *owner, int system )
653 struct thread_apc *apc;
654 struct list *queue = system ? &thread->system_apc : &thread->user_apc;
655 LIST_FOR_EACH_ENTRY( apc, queue, struct thread_apc, entry )
657 if (apc->owner != owner) continue;
658 list_remove( &apc->entry );
659 free( apc );
660 return;
664 /* remove the head apc from the queue; the returned pointer must be freed by the caller */
665 static struct thread_apc *thread_dequeue_apc( struct thread *thread, int system_only )
667 struct thread_apc *apc = NULL;
668 struct list *ptr = list_head( &thread->system_apc );
670 if (!ptr && !system_only) ptr = list_head( &thread->user_apc );
671 if (ptr)
673 apc = LIST_ENTRY( ptr, struct thread_apc, entry );
674 list_remove( ptr );
676 return apc;
679 /* add an fd to the inflight list */
680 /* return list index, or -1 on error */
681 int thread_add_inflight_fd( struct thread *thread, int client, int server )
683 int i;
685 if (server == -1) return -1;
686 if (client == -1)
688 close( server );
689 return -1;
692 /* first check if we already have an entry for this fd */
693 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
694 if (thread->inflight[i].client == client)
696 close( thread->inflight[i].server );
697 thread->inflight[i].server = server;
698 return i;
701 /* now find a free spot to store it */
702 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
703 if (thread->inflight[i].client == -1)
705 thread->inflight[i].client = client;
706 thread->inflight[i].server = server;
707 return i;
709 return -1;
712 /* get an inflight fd and purge it from the list */
713 /* the fd must be closed when no longer used */
714 int thread_get_inflight_fd( struct thread *thread, int client )
716 int i, ret;
718 if (client == -1) return -1;
722 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
724 if (thread->inflight[i].client == client)
726 ret = thread->inflight[i].server;
727 thread->inflight[i].server = thread->inflight[i].client = -1;
728 return ret;
731 } while (!receive_fd( thread->process )); /* in case it is still in the socket buffer */
732 return -1;
735 /* kill a thread on the spot */
736 void kill_thread( struct thread *thread, int violent_death )
738 if (thread->state == TERMINATED) return; /* already killed */
739 thread->state = TERMINATED;
740 gettimeofday( &thread->exit_time, NULL );
741 if (current == thread) current = NULL;
742 if (debug_level)
743 fprintf( stderr,"%04x: *killed* exit_code=%d\n",
744 thread->id, thread->exit_code );
745 if (thread->wait)
747 while (thread->wait) end_wait( thread );
748 send_thread_wakeup( thread, NULL, STATUS_PENDING );
749 /* if it is waiting on the socket, we don't need to send a SIGTERM */
750 violent_death = 0;
752 kill_console_processes( thread, 0 );
753 debug_exit_thread( thread );
754 abandon_mutexes( thread );
755 wake_up( &thread->obj, 0 );
756 if (violent_death) send_thread_signal( thread, SIGTERM );
757 cleanup_thread( thread );
758 remove_process_thread( thread->process, thread );
759 release_object( thread );
762 /* trigger a breakpoint event in a given thread */
763 void break_thread( struct thread *thread )
765 struct debug_event_exception data;
767 assert( thread->context );
769 data.record.ExceptionCode = EXCEPTION_BREAKPOINT;
770 data.record.ExceptionFlags = EXCEPTION_CONTINUABLE;
771 data.record.ExceptionRecord = NULL;
772 data.record.ExceptionAddress = get_context_ip( thread->context );
773 data.record.NumberParameters = 0;
774 data.first = 1;
775 generate_debug_event( thread, EXCEPTION_DEBUG_EVENT, &data );
776 thread->debug_break = 0;
779 /* take a snapshot of currently running threads */
780 struct thread_snapshot *thread_snap( int *count )
782 struct thread_snapshot *snapshot, *ptr;
783 struct thread *thread;
784 int total = 0;
786 LIST_FOR_EACH_ENTRY( thread, &thread_list, struct thread, entry )
787 if (thread->state != TERMINATED) total++;
788 if (!total || !(snapshot = mem_alloc( sizeof(*snapshot) * total ))) return NULL;
789 ptr = snapshot;
790 LIST_FOR_EACH_ENTRY( thread, &thread_list, struct thread, entry )
792 if (thread->state == TERMINATED) continue;
793 ptr->thread = thread;
794 ptr->count = thread->obj.refcount;
795 ptr->priority = thread->priority;
796 grab_object( thread );
797 ptr++;
799 *count = total;
800 return snapshot;
803 /* gets the current impersonation token */
804 struct token *thread_get_impersonation_token( struct thread *thread )
806 if (thread->token)
807 return thread->token;
808 else
809 return thread->process->token;
812 /* create a new thread */
813 DECL_HANDLER(new_thread)
815 struct thread *thread;
816 int request_fd = thread_get_inflight_fd( current, req->request_fd );
818 if (request_fd == -1 || fcntl( request_fd, F_SETFL, O_NONBLOCK ) == -1)
820 if (request_fd != -1) close( request_fd );
821 set_error( STATUS_INVALID_HANDLE );
822 return;
825 if ((thread = create_thread( request_fd, current->process )))
827 if (req->suspend) thread->suspend++;
828 reply->tid = get_thread_id( thread );
829 if ((reply->handle = alloc_handle( current->process, thread, req->access, req->attributes )))
831 /* thread object will be released when the thread gets killed */
832 return;
834 kill_thread( thread, 1 );
838 /* initialize a new thread */
839 DECL_HANDLER(init_thread)
841 struct process *process = current->process;
842 int reply_fd = thread_get_inflight_fd( current, req->reply_fd );
843 int wait_fd = thread_get_inflight_fd( current, req->wait_fd );
845 if (current->reply_fd) /* already initialised */
847 set_error( STATUS_INVALID_PARAMETER );
848 goto error;
851 if (reply_fd == -1 || fcntl( reply_fd, F_SETFL, O_NONBLOCK ) == -1) goto error;
853 current->reply_fd = create_anonymous_fd( &thread_fd_ops, reply_fd, &current->obj );
854 reply_fd = -1;
855 if (!current->reply_fd) goto error;
857 if (wait_fd == -1)
859 set_error( STATUS_TOO_MANY_OPENED_FILES ); /* most likely reason */
860 return;
862 if (!(current->wait_fd = create_anonymous_fd( &thread_fd_ops, wait_fd, &current->obj )))
863 return;
865 if (!is_valid_address(req->teb) || !is_valid_address(req->peb) || !is_valid_address(req->ldt_copy))
867 set_error( STATUS_INVALID_PARAMETER );
868 return;
871 current->unix_pid = req->unix_pid;
872 current->unix_tid = req->unix_tid;
873 current->teb = req->teb;
875 if (!process->peb) /* first thread, initialize the process too */
877 process->peb = req->peb;
878 process->ldt_copy = req->ldt_copy;
879 reply->info_size = init_process( current );
881 else
883 if (current->suspend + process->suspend > 0) stop_thread( current );
884 generate_debug_event( current, CREATE_THREAD_DEBUG_EVENT, req->entry );
886 debug_level = max( debug_level, req->debug_level );
888 reply->pid = get_process_id( process );
889 reply->tid = get_thread_id( current );
890 reply->version = SERVER_PROTOCOL_VERSION;
891 reply->server_start.sec = server_start_time.tv_sec;
892 reply->server_start.usec = server_start_time.tv_usec;
893 return;
895 error:
896 if (reply_fd != -1) close( reply_fd );
897 if (wait_fd != -1) close( wait_fd );
900 /* terminate a thread */
901 DECL_HANDLER(terminate_thread)
903 struct thread *thread;
905 reply->self = 0;
906 reply->last = 0;
907 if ((thread = get_thread_from_handle( req->handle, THREAD_TERMINATE )))
909 thread->exit_code = req->exit_code;
910 if (thread != current) kill_thread( thread, 1 );
911 else
913 reply->self = 1;
914 reply->last = (thread->process->running_threads == 1);
916 release_object( thread );
920 /* open a handle to a thread */
921 DECL_HANDLER(open_thread)
923 struct thread *thread = get_thread_from_id( req->tid );
925 reply->handle = 0;
926 if (thread)
928 reply->handle = alloc_handle( current->process, thread, req->access, req->attributes );
929 release_object( thread );
933 /* fetch information about a thread */
934 DECL_HANDLER(get_thread_info)
936 struct thread *thread;
937 obj_handle_t handle = req->handle;
939 if (!handle) thread = get_thread_from_id( req->tid_in );
940 else thread = get_thread_from_handle( req->handle, THREAD_QUERY_INFORMATION );
942 if (thread)
944 reply->pid = get_process_id( thread->process );
945 reply->tid = get_thread_id( thread );
946 reply->teb = thread->teb;
947 reply->exit_code = (thread->state == TERMINATED) ? thread->exit_code : STILL_ACTIVE;
948 reply->priority = thread->priority;
949 reply->affinity = thread->affinity;
950 reply->creation_time.sec = thread->creation_time.tv_sec;
951 reply->creation_time.usec = thread->creation_time.tv_usec;
952 reply->exit_time.sec = thread->exit_time.tv_sec;
953 reply->exit_time.usec = thread->exit_time.tv_usec;
955 release_object( thread );
959 /* set information about a thread */
960 DECL_HANDLER(set_thread_info)
962 struct thread *thread;
964 if ((thread = get_thread_from_handle( req->handle, THREAD_SET_INFORMATION )))
966 set_thread_info( thread, req );
967 release_object( thread );
971 /* suspend a thread */
972 DECL_HANDLER(suspend_thread)
974 struct thread *thread;
976 if ((thread = get_thread_from_handle( req->handle, THREAD_SUSPEND_RESUME )))
978 if (thread->state == TERMINATED) set_error( STATUS_ACCESS_DENIED );
979 else reply->count = suspend_thread( thread );
980 release_object( thread );
984 /* resume a thread */
985 DECL_HANDLER(resume_thread)
987 struct thread *thread;
989 if ((thread = get_thread_from_handle( req->handle, THREAD_SUSPEND_RESUME )))
991 if (thread->state == TERMINATED) set_error( STATUS_ACCESS_DENIED );
992 else reply->count = resume_thread( thread );
993 release_object( thread );
997 /* select on a handle list */
998 DECL_HANDLER(select)
1000 int count = get_req_data_size() / sizeof(obj_handle_t);
1001 select_on( count, req->cookie, get_req_data(), req->flags, &req->timeout, req->signal );
1004 /* queue an APC for a thread */
1005 DECL_HANDLER(queue_apc)
1007 struct thread *thread;
1008 if ((thread = get_thread_from_handle( req->handle, THREAD_SET_CONTEXT )))
1010 thread_queue_apc( thread, NULL, req->func, APC_USER, !req->user,
1011 req->arg1, req->arg2, req->arg3 );
1012 release_object( thread );
1016 /* get next APC to call */
1017 DECL_HANDLER(get_apc)
1019 struct thread_apc *apc;
1021 for (;;)
1023 if (!(apc = thread_dequeue_apc( current, !req->alertable )))
1025 /* no more APCs */
1026 reply->func = NULL;
1027 reply->type = APC_NONE;
1028 return;
1030 /* Optimization: ignore APCs that have a NULL func; they are only used
1031 * to wake up a thread, but since we got here the thread woke up already.
1032 * Exception: for APC_ASYNC_IO, func == NULL is legal.
1034 if (apc->func || apc->type == APC_ASYNC_IO) break;
1035 free( apc );
1037 reply->func = apc->func;
1038 reply->type = apc->type;
1039 reply->arg1 = apc->arg1;
1040 reply->arg2 = apc->arg2;
1041 reply->arg3 = apc->arg3;
1042 free( apc );
1045 /* retrieve the current context of a thread */
1046 DECL_HANDLER(get_thread_context)
1048 struct thread *thread;
1049 CONTEXT *context;
1051 if (get_reply_max_size() < sizeof(CONTEXT))
1053 set_error( STATUS_INVALID_PARAMETER );
1054 return;
1056 if (!(thread = get_thread_from_handle( req->handle, THREAD_GET_CONTEXT ))) return;
1058 if (req->suspend)
1060 if (thread != current || !thread->suspend_context)
1062 /* not suspended, shouldn't happen */
1063 set_error( STATUS_INVALID_PARAMETER );
1065 else
1067 if (thread->context == thread->suspend_context) thread->context = NULL;
1068 set_reply_data_ptr( thread->suspend_context, sizeof(CONTEXT) );
1069 thread->suspend_context = NULL;
1072 else if (thread != current && !thread->context)
1074 /* thread is not suspended, retry (if it's still running) */
1075 if (thread->state != RUNNING) set_error( STATUS_ACCESS_DENIED );
1076 else set_error( STATUS_PENDING );
1078 else if ((context = set_reply_data_size( sizeof(CONTEXT) )))
1080 unsigned int flags = get_context_system_regs( req->flags );
1082 memset( context, 0, sizeof(CONTEXT) );
1083 context->ContextFlags = get_context_cpu_flag();
1084 if (thread->context) copy_context( context, thread->context, req->flags & ~flags );
1085 if (flags) get_thread_context( thread, context, flags );
1087 reply->self = (thread == current);
1088 release_object( thread );
1091 /* set the current context of a thread */
1092 DECL_HANDLER(set_thread_context)
1094 struct thread *thread;
1096 if (get_req_data_size() < sizeof(CONTEXT))
1098 set_error( STATUS_INVALID_PARAMETER );
1099 return;
1101 if (!(thread = get_thread_from_handle( req->handle, THREAD_SET_CONTEXT ))) return;
1103 if (req->suspend)
1105 if (thread != current || thread->context)
1107 /* nested suspend or exception, shouldn't happen */
1108 set_error( STATUS_INVALID_PARAMETER );
1110 else if ((thread->suspend_context = mem_alloc( sizeof(CONTEXT) )))
1112 memcpy( thread->suspend_context, get_req_data(), sizeof(CONTEXT) );
1113 thread->context = thread->suspend_context;
1114 if (thread->debug_break) break_thread( thread );
1117 else if (thread != current && !thread->context)
1119 /* thread is not suspended, retry (if it's still running) */
1120 if (thread->state != RUNNING) set_error( STATUS_ACCESS_DENIED );
1121 else set_error( STATUS_PENDING );
1123 else
1125 const CONTEXT *context = get_req_data();
1126 unsigned int flags = get_context_system_regs( req->flags );
1128 if (flags) set_thread_context( thread, context, flags );
1129 if (thread->context && !get_error())
1130 copy_context( thread->context, context, req->flags & ~flags );
1132 reply->self = (thread == current);
1133 release_object( thread );
1136 /* fetch a selector entry for a thread */
1137 DECL_HANDLER(get_selector_entry)
1139 struct thread *thread;
1140 if ((thread = get_thread_from_handle( req->handle, THREAD_QUERY_INFORMATION )))
1142 get_selector_entry( thread, req->entry, &reply->base, &reply->limit, &reply->flags );
1143 release_object( thread );