blob: 47208f3d4db05b64442a1a3c91ea4876f57ad0a4 [file] [log] [blame]
Alexandre Julliard642d3131998-07-12 19:29:36 +00001/*
2 * Server-side thread management
3 *
4 * Copyright (C) 1998 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Alexandre Julliard642d3131998-07-12 19:29:36 +000019 */
20
Howard Abrams13277481999-07-10 13:16:29 +000021#include "config.h"
Alexandre Julliard5769d1d2002-04-26 19:05:15 +000022#include "wine/port.h"
Howard Abrams13277481999-07-10 13:16:29 +000023
Alexandre Julliard642d3131998-07-12 19:29:36 +000024#include <assert.h>
Alexandre Julliarde5dedb12001-03-08 01:16:41 +000025#include <errno.h>
Alexandre Julliard642d3131998-07-12 19:29:36 +000026#include <fcntl.h>
Alexandre Julliard767e6f61998-08-09 12:47:43 +000027#include <signal.h>
Alexandre Julliardea1afce2000-08-22 20:08:37 +000028#include <stdarg.h>
Alexandre Julliard642d3131998-07-12 19:29:36 +000029#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000032#include <sys/types.h>
Alexandre Julliard642d3131998-07-12 19:29:36 +000033#include <unistd.h>
Michael Vekslerf935c591999-02-09 15:49:39 +000034#include <stdarg.h>
Alexandre Julliard642d3131998-07-12 19:29:36 +000035
Michael Vekslerf935c591999-02-09 15:49:39 +000036#include "winbase.h"
Alexandre Julliard43c190e1999-05-15 10:48:19 +000037
38#include "handle.h"
Alexandre Julliard43c190e1999-05-15 10:48:19 +000039#include "process.h"
40#include "thread.h"
Alexandre Julliard5bc78081999-06-22 17:26:53 +000041#include "request.h"
Alexandre Julliard1a66d222001-08-28 18:44:52 +000042#include "user.h"
Alexandre Julliard642d3131998-07-12 19:29:36 +000043
44
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000045/* thread queues */
46
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000047struct thread_wait
48{
Alexandre Julliarde5dedb12001-03-08 01:16:41 +000049 struct thread_wait *next; /* next wait structure for this thread */
50 struct thread *thread; /* owner thread */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000051 int count; /* count of objects */
52 int flags;
Alexandre Julliarde5dedb12001-03-08 01:16:41 +000053 void *cookie; /* magic cookie to return to client */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000054 struct timeval timeout;
Alexandre Julliard57e11311999-05-16 16:59:38 +000055 struct timeout_user *user;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000056 struct wait_queue_entry queues[1];
57};
58
Alexandre Julliard62a8b431999-01-19 17:48:23 +000059/* asynchronous procedure calls */
60
61struct thread_apc
62{
Alexandre Julliardea1afce2000-08-22 20:08:37 +000063 struct thread_apc *next; /* queue linked list */
64 struct thread_apc *prev;
65 struct object *owner; /* object that queued this apc */
66 void *func; /* function to call in client */
67 enum apc_type type; /* type of apc function */
68 int nb_args; /* number of arguments */
69 void *args[1]; /* function arguments */
Alexandre Julliard62a8b431999-01-19 17:48:23 +000070};
Alexandre Julliard62a8b431999-01-19 17:48:23 +000071
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000072
Alexandre Julliard642d3131998-07-12 19:29:36 +000073/* thread operations */
74
Alexandre Julliard767e6f61998-08-09 12:47:43 +000075static void dump_thread( struct object *obj, int verbose );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000076static int thread_signaled( struct object *obj, struct thread *thread );
Alexandre Julliardf5242402001-02-28 21:45:23 +000077static void thread_poll_event( struct object *obj, int event );
Alexandre Julliard642d3131998-07-12 19:29:36 +000078static void destroy_thread( struct object *obj );
Alexandre Julliard23623802001-01-06 01:48:51 +000079static struct thread_apc *thread_dequeue_apc( struct thread *thread, int system_only );
Alexandre Julliard642d3131998-07-12 19:29:36 +000080
81static const struct object_ops thread_ops =
82{
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000083 sizeof(struct thread), /* size */
84 dump_thread, /* dump */
85 add_queue, /* add_queue */
86 remove_queue, /* remove_queue */
87 thread_signaled, /* signaled */
88 no_satisfied, /* satisfied */
89 NULL, /* get_poll_events */
90 thread_poll_event, /* poll_event */
Alexandre Julliard1ab243b2000-12-19 02:12:45 +000091 no_get_fd, /* get_fd */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000092 no_flush, /* flush */
93 no_get_file_info, /* get_file_info */
Mike McCormack6f011c02001-12-20 00:07:05 +000094 NULL, /* queue_async */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000095 destroy_thread /* destroy */
Alexandre Julliard642d3131998-07-12 19:29:36 +000096};
97
Alexandre Julliardeb2e77f1999-06-04 19:49:54 +000098static struct thread *first_thread;
Alexandre Julliard2fe57772000-01-25 01:40:27 +000099static struct thread *booting_thread;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000100
Alexandre Julliardf5242402001-02-28 21:45:23 +0000101/* initialize the structure for a newly allocated thread */
102inline static void init_thread_structure( struct thread *thread )
103{
104 int i;
105
106 thread->unix_pid = 0; /* not known yet */
107 thread->context = NULL;
108 thread->teb = NULL;
109 thread->mutex = NULL;
110 thread->debug_ctx = NULL;
111 thread->debug_event = NULL;
112 thread->queue = NULL;
113 thread->info = NULL;
114 thread->wait = NULL;
115 thread->system_apc.head = NULL;
116 thread->system_apc.tail = NULL;
117 thread->user_apc.head = NULL;
118 thread->user_apc.tail = NULL;
119 thread->error = 0;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000120 thread->req_data = NULL;
121 thread->req_toread = 0;
122 thread->reply_data = NULL;
123 thread->reply_towrite = 0;
Alexandre Julliardf5242402001-02-28 21:45:23 +0000124 thread->reply_fd = -1;
125 thread->wait_fd = -1;
126 thread->state = RUNNING;
127 thread->attached = 0;
128 thread->exit_code = 0;
129 thread->next = NULL;
130 thread->prev = NULL;
131 thread->priority = THREAD_PRIORITY_NORMAL;
132 thread->affinity = 1;
133 thread->suspend = 0;
Alexandre Julliardf5242402001-02-28 21:45:23 +0000134
135 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
136 thread->inflight[i].server = thread->inflight[i].client = -1;
137}
138
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000139/* create a new thread */
Alexandre Julliard5b4f3e82000-05-01 16:24:22 +0000140struct thread *create_thread( int fd, struct process *process )
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000141{
142 struct thread *thread;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000143
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000144 if (!(thread = alloc_object( &thread_ops, fd ))) return NULL;
145
Alexandre Julliardf5242402001-02-28 21:45:23 +0000146 init_thread_structure( thread );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000147
Alexandre Julliardf5242402001-02-28 21:45:23 +0000148 thread->process = (struct process *)grab_object( process );
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000149 thread->request_fd = fd;
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000150 if (!current) current = thread;
151
152 if (!booting_thread) /* first thread ever */
Alexandre Julliardf692d441999-03-21 19:23:54 +0000153 {
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000154 booting_thread = thread;
155 lock_master_socket(1);
Alexandre Julliardf692d441999-03-21 19:23:54 +0000156 }
Alexandre Julliardf692d441999-03-21 19:23:54 +0000157
Alexandre Julliardeb2e77f1999-06-04 19:49:54 +0000158 if ((thread->next = first_thread) != NULL) thread->next->prev = thread;
Alexandre Julliard642d3131998-07-12 19:29:36 +0000159 first_thread = thread;
160
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000161 set_select_events( &thread->obj, POLLIN ); /* start listening to events */
Alexandre Julliard8859d772001-03-01 22:13:49 +0000162 add_process_thread( thread->process, thread );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000163 return thread;
164}
165
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000166/* handle a client event */
Alexandre Julliardf5242402001-02-28 21:45:23 +0000167static void thread_poll_event( struct object *obj, int event )
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000168{
169 struct thread *thread = (struct thread *)obj;
170 assert( obj->ops == &thread_ops );
171
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000172 if (event & (POLLERR | POLLHUP)) kill_thread( thread, 0 );
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000173 else if (event & POLLIN) read_request( thread );
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000174 else if (event & POLLOUT) write_reply( thread );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000175}
176
177/* cleanup everything that is no longer needed by a dead thread */
178/* used by destroy_thread and kill_thread */
179static void cleanup_thread( struct thread *thread )
180{
181 int i;
182 struct thread_apc *apc;
183
184 while ((apc = thread_dequeue_apc( thread, 0 ))) free( apc );
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000185 if (thread->req_data) free( thread->req_data );
186 if (thread->reply_data) free( thread->reply_data );
187 if (thread->request_fd != -1) close( thread->request_fd );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000188 if (thread->reply_fd != -1) close( thread->reply_fd );
189 if (thread->wait_fd != -1) close( thread->wait_fd );
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000190 if (thread->queue)
191 {
192 if (thread->process->queue == thread->queue)
193 {
194 release_object( thread->process->queue );
195 thread->process->queue = NULL;
196 }
197 release_object( thread->queue );
198 thread->queue = NULL;
199 }
Alexandre Julliard1a66d222001-08-28 18:44:52 +0000200 destroy_thread_windows( thread );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000201 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
202 {
203 if (thread->inflight[i].client != -1)
204 {
205 close( thread->inflight[i].server );
206 thread->inflight[i].client = thread->inflight[i].server = -1;
207 }
208 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000209 thread->req_data = NULL;
210 thread->reply_data = NULL;
211 thread->request_fd = -1;
Alexandre Julliardf5242402001-02-28 21:45:23 +0000212 thread->reply_fd = -1;
213 thread->wait_fd = -1;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000214}
215
Alexandre Julliard642d3131998-07-12 19:29:36 +0000216/* destroy a thread when its refcount is 0 */
217static void destroy_thread( struct object *obj )
218{
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000219 struct thread_apc *apc;
Alexandre Julliard642d3131998-07-12 19:29:36 +0000220 struct thread *thread = (struct thread *)obj;
221 assert( obj->ops == &thread_ops );
222
Alexandre Julliarde712e071999-05-23 19:53:30 +0000223 assert( !thread->debug_ctx ); /* cannot still be debugging something */
Alexandre Julliard642d3131998-07-12 19:29:36 +0000224 if (thread->next) thread->next->prev = thread->prev;
225 if (thread->prev) thread->prev->next = thread->next;
226 else first_thread = thread->next;
Alexandre Julliard23623802001-01-06 01:48:51 +0000227 while ((apc = thread_dequeue_apc( thread, 0 ))) free( apc );
Alexandre Julliard5b4f3e82000-05-01 16:24:22 +0000228 if (thread->info) release_object( thread->info );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000229 cleanup_thread( thread );
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000230 release_object( thread->process );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000231}
232
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000233/* dump a thread on stdout for debugging purposes */
234static void dump_thread( struct object *obj, int verbose )
235{
236 struct thread *thread = (struct thread *)obj;
237 assert( obj->ops == &thread_ops );
238
Alexandre Julliardeb2e77f1999-06-04 19:49:54 +0000239 fprintf( stderr, "Thread pid=%d teb=%p state=%d\n",
240 thread->unix_pid, thread->teb, thread->state );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000241}
242
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000243static int thread_signaled( struct object *obj, struct thread *thread )
244{
245 struct thread *mythread = (struct thread *)obj;
246 return (mythread->state == TERMINATED);
247}
248
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000249/* get a thread pointer from a thread id (and increment the refcount) */
Alexandre Julliard642d3131998-07-12 19:29:36 +0000250struct thread *get_thread_from_id( void *id )
251{
252 struct thread *t = first_thread;
253 while (t && (t != id)) t = t->next;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000254 if (t) grab_object( t );
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000255 else set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000256 return t;
257}
258
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000259/* get a thread from a handle (and increment the refcount) */
Alexandre Julliard8081e5a2001-01-05 04:08:07 +0000260struct thread *get_thread_from_handle( handle_t handle, unsigned int access )
Alexandre Julliard642d3131998-07-12 19:29:36 +0000261{
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000262 return (struct thread *)get_handle_obj( current->process, handle,
263 access, &thread_ops );
264}
265
Alexandre Julliard578c1001999-11-14 21:23:21 +0000266/* find a thread from a Unix pid */
267struct thread *get_thread_from_pid( int pid )
268{
269 struct thread *t = first_thread;
270 while (t && (t->unix_pid != pid)) t = t->next;
271 return t;
272}
273
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000274/* set all information about a thread */
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000275static void set_thread_info( struct thread *thread,
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000276 const struct set_thread_info_request *req )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000277{
278 if (req->mask & SET_THREAD_INFO_PRIORITY)
279 thread->priority = req->priority;
280 if (req->mask & SET_THREAD_INFO_AFFINITY)
281 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000282 if (req->affinity != 1) set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000283 else thread->affinity = req->affinity;
284 }
285}
286
287/* suspend a thread */
Alexandre Julliard8b8828f1999-11-12 21:39:14 +0000288int suspend_thread( struct thread *thread, int check_limit )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000289{
290 int old_count = thread->suspend;
Alexandre Julliard8b8828f1999-11-12 21:39:14 +0000291 if (thread->suspend < MAXIMUM_SUSPEND_COUNT || !check_limit)
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000292 {
Alexandre Julliard0a707831999-11-08 05:31:47 +0000293 if (!(thread->process->suspend + thread->suspend++)) stop_thread( thread );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000294 }
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000295 else set_error( STATUS_SUSPEND_COUNT_EXCEEDED );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000296 return old_count;
297}
298
299/* resume a thread */
Alexandre Julliard8b8828f1999-11-12 21:39:14 +0000300int resume_thread( struct thread *thread )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000301{
302 int old_count = thread->suspend;
303 if (thread->suspend > 0)
304 {
Alexandre Julliard0a707831999-11-08 05:31:47 +0000305 if (!(--thread->suspend + thread->process->suspend)) continue_thread( thread );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000306 }
307 return old_count;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000308}
309
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000310/* add a thread to an object wait queue; return 1 if OK, 0 on error */
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000311int add_queue( struct object *obj, struct wait_queue_entry *entry )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000312{
Alexandre Julliardc6e45ed1998-12-27 08:35:39 +0000313 grab_object( obj );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000314 entry->obj = obj;
315 entry->prev = obj->tail;
316 entry->next = NULL;
317 if (obj->tail) obj->tail->next = entry;
318 else obj->head = entry;
319 obj->tail = entry;
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000320 return 1;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000321}
322
323/* remove a thread from an object wait queue */
Alexandre Julliardc6e45ed1998-12-27 08:35:39 +0000324void remove_queue( struct object *obj, struct wait_queue_entry *entry )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000325{
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000326 if (entry->next) entry->next->prev = entry->prev;
327 else obj->tail = entry->prev;
328 if (entry->prev) entry->prev->next = entry->next;
329 else obj->head = entry->next;
330 release_object( obj );
331}
332
333/* finish waiting */
334static void end_wait( struct thread *thread )
335{
336 struct thread_wait *wait = thread->wait;
337 struct wait_queue_entry *entry;
338 int i;
339
340 assert( wait );
Alexandre Julliardc6e45ed1998-12-27 08:35:39 +0000341 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
342 entry->obj->ops->remove_queue( entry->obj, entry );
Alexandre Julliard57e11311999-05-16 16:59:38 +0000343 if (wait->user) remove_timeout_user( wait->user );
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000344 thread->wait = wait->next;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000345 free( wait );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000346}
347
348/* build the thread wait structure */
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000349static int wait_on( int count, struct object *objects[], int flags, int sec, int usec )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000350{
351 struct thread_wait *wait;
352 struct wait_queue_entry *entry;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000353 int i;
354
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000355 if (!(wait = mem_alloc( sizeof(*wait) + (count-1) * sizeof(*entry) ))) return 0;
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000356 wait->next = current->wait;
357 wait->thread = current;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000358 wait->count = count;
359 wait->flags = flags;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000360 wait->user = NULL;
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000361 current->wait = wait;
Alexandre Julliard247b8ae1999-12-13 00:16:44 +0000362 if (flags & SELECT_TIMEOUT)
363 {
Alexandre Julliard23623802001-01-06 01:48:51 +0000364 wait->timeout.tv_sec = sec;
365 wait->timeout.tv_usec = usec;
Alexandre Julliard247b8ae1999-12-13 00:16:44 +0000366 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000367
368 for (i = 0, entry = wait->queues; i < count; i++, entry++)
369 {
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000370 struct object *obj = objects[i];
371 entry->thread = current;
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000372 if (!obj->ops->add_queue( obj, entry ))
373 {
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000374 wait->count = i;
375 end_wait( current );
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000376 return 0;
377 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000378 }
379 return 1;
380}
381
382/* check if the thread waiting condition is satisfied */
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000383static int check_wait( struct thread *thread )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000384{
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000385 int i, signaled;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000386 struct thread_wait *wait = thread->wait;
387 struct wait_queue_entry *entry = wait->queues;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000388
389 assert( wait );
390 if (wait->flags & SELECT_ALL)
391 {
Alexandre Julliard57e11311999-05-16 16:59:38 +0000392 int not_ok = 0;
393 /* Note: we must check them all anyway, as some objects may
394 * want to do something when signaled, even if others are not */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000395 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
Alexandre Julliard57e11311999-05-16 16:59:38 +0000396 not_ok |= !entry->obj->ops->signaled( entry->obj, thread );
397 if (not_ok) goto other_checks;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000398 /* Wait satisfied: tell it to all objects */
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000399 signaled = 0;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000400 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
401 if (entry->obj->ops->satisfied( entry->obj, thread ))
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000402 signaled = STATUS_ABANDONED_WAIT_0;
403 return signaled;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000404 }
405 else
406 {
407 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
408 {
409 if (!entry->obj->ops->signaled( entry->obj, thread )) continue;
410 /* Wait satisfied: tell it to the object */
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000411 signaled = i;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000412 if (entry->obj->ops->satisfied( entry->obj, thread ))
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000413 signaled = i + STATUS_ABANDONED_WAIT_0;
414 return signaled;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000415 }
416 }
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000417
418 other_checks:
Alexandre Julliard23623802001-01-06 01:48:51 +0000419 if ((wait->flags & SELECT_INTERRUPTIBLE) && thread->system_apc.head) return STATUS_USER_APC;
420 if ((wait->flags & SELECT_ALERTABLE) && thread->user_apc.head) return STATUS_USER_APC;
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000421 if (wait->flags & SELECT_TIMEOUT)
422 {
423 struct timeval now;
424 gettimeofday( &now, NULL );
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000425 if (!time_before( &now, &wait->timeout )) return STATUS_TIMEOUT;
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000426 }
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000427 return -1;
428}
429
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000430/* send the wakeup signal to a thread */
431static int send_thread_wakeup( struct thread *thread, void *cookie, int signaled )
432{
433 struct wake_up_reply reply;
434 int ret;
435
436 reply.cookie = cookie;
437 reply.signaled = signaled;
438 if ((ret = write( thread->wait_fd, &reply, sizeof(reply) )) == sizeof(reply)) return 0;
439 if (ret >= 0)
440 fatal_protocol_error( thread, "partial wakeup write %d\n", ret );
441 else if (errno == EPIPE)
442 kill_thread( thread, 0 ); /* normal death */
443 else
444 fatal_protocol_perror( thread, "write" );
445 return -1;
446}
447
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000448/* attempt to wake up a thread */
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000449/* return >0 if OK, 0 if the wait condition is still not satisfied */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000450static int wake_thread( struct thread *thread )
451{
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000452 int signaled, count;
453 void *cookie;
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000454
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000455 for (count = 0; thread->wait; count++)
456 {
457 if ((signaled = check_wait( thread )) == -1) break;
458
459 cookie = thread->wait->cookie;
460 if (debug_level) fprintf( stderr, "%08x: *wakeup* signaled=%d cookie=%p\n",
461 (unsigned int)thread, signaled, cookie );
462 end_wait( thread );
Andreas Mohrd66130a2001-08-07 19:31:43 +0000463 if (send_thread_wakeup( thread, cookie, signaled ) == -1) /* error */
464 break;
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000465 }
466 return count;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000467}
468
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000469/* thread wait timeout */
470static void thread_timeout( void *ptr )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000471{
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000472 struct thread_wait *wait = ptr;
473 struct thread *thread = wait->thread;
474 void *cookie = wait->cookie;
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000475
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000476 wait->user = NULL;
477 if (thread->wait != wait) return; /* not the top-level wait, ignore it */
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000478
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000479 if (debug_level) fprintf( stderr, "%08x: *wakeup* signaled=%d cookie=%p\n",
480 (unsigned int)thread, STATUS_TIMEOUT, cookie );
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000481 end_wait( thread );
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000482 send_thread_wakeup( thread, cookie, STATUS_TIMEOUT );
483 /* check if other objects have become signaled in the meantime */
484 wake_thread( thread );
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000485}
486
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000487/* select on a list of handles */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000488static void select_on( int count, void *cookie, const handle_t *handles,
489 int flags, int sec, int usec )
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000490{
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000491 int ret, i;
492 struct object *objects[MAXIMUM_WAIT_OBJECTS];
493
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000494 if ((count < 0) || (count > MAXIMUM_WAIT_OBJECTS))
495 {
496 set_error( STATUS_INVALID_PARAMETER );
497 return;
498 }
499 for (i = 0; i < count; i++)
500 {
501 if (!(objects[i] = get_handle_obj( current->process, handles[i], SYNCHRONIZE, NULL )))
502 break;
503 }
504
505 if (i < count) goto done;
506 if (!wait_on( count, objects, flags, sec, usec )) goto done;
507
508 if ((ret = check_wait( current )) != -1)
509 {
510 /* condition is already satisfied */
511 end_wait( current );
512 set_error( ret );
513 goto done;
514 }
515
Alexandre Julliard57e11311999-05-16 16:59:38 +0000516 /* now we need to wait */
517 if (flags & SELECT_TIMEOUT)
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000518 {
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000519 if (!(current->wait->user = add_timeout_user( &current->wait->timeout,
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000520 thread_timeout, current->wait )))
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000521 {
522 end_wait( current );
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000523 goto done;
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000524 }
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000525 }
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000526 current->wait->cookie = cookie;
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000527 set_error( STATUS_PENDING );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000528
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000529done:
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000530 while (--i >= 0) release_object( objects[i] );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000531}
532
533/* attempt to wake threads sleeping on the object wait queue */
534void wake_up( struct object *obj, int max )
535{
536 struct wait_queue_entry *entry = obj->head;
537
538 while (entry)
539 {
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000540 struct thread *thread = entry->thread;
541 entry = entry->next;
542 if (wake_thread( thread ))
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000543 {
544 if (max && !--max) break;
545 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000546 }
547}
548
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000549/* queue an async procedure call */
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000550int thread_queue_apc( struct thread *thread, struct object *owner, void *func,
Alexandre Julliard23623802001-01-06 01:48:51 +0000551 enum apc_type type, int system, int nb_args, ... )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000552{
553 struct thread_apc *apc;
Alexandre Julliard23623802001-01-06 01:48:51 +0000554 struct apc_queue *queue = system ? &thread->system_apc : &thread->user_apc;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000555
556 /* cancel a possible previous APC with the same owner */
Alexandre Julliard23623802001-01-06 01:48:51 +0000557 if (owner) thread_cancel_apc( thread, owner, system );
Alexandre Julliard15979fd2002-03-23 18:50:04 +0000558 if (thread->state == TERMINATED) return 0;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000559
560 if (!(apc = mem_alloc( sizeof(*apc) + (nb_args-1)*sizeof(apc->args[0]) ))) return 0;
Alexandre Julliard23623802001-01-06 01:48:51 +0000561 apc->prev = queue->tail;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000562 apc->next = NULL;
563 apc->owner = owner;
564 apc->func = func;
565 apc->type = type;
566 apc->nb_args = nb_args;
567 if (nb_args)
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000568 {
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000569 int i;
570 va_list args;
571 va_start( args, nb_args );
572 for (i = 0; i < nb_args; i++) apc->args[i] = va_arg( args, void * );
573 va_end( args );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000574 }
Alexandre Julliard23623802001-01-06 01:48:51 +0000575 queue->tail = apc;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000576 if (!apc->prev) /* first one */
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000577 {
Alexandre Julliard23623802001-01-06 01:48:51 +0000578 queue->head = apc;
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000579 wake_thread( thread );
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000580 }
Martin Wilckb1c45b92002-01-09 19:09:57 +0000581 else apc->prev->next = apc;
582
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000583 return 1;
584}
585
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000586/* cancel the async procedure call owned by a specific object */
Alexandre Julliard23623802001-01-06 01:48:51 +0000587void thread_cancel_apc( struct thread *thread, struct object *owner, int system )
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000588{
589 struct thread_apc *apc;
Alexandre Julliard23623802001-01-06 01:48:51 +0000590 struct apc_queue *queue = system ? &thread->system_apc : &thread->user_apc;
591 for (apc = queue->head; apc; apc = apc->next)
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000592 {
593 if (apc->owner != owner) continue;
594 if (apc->next) apc->next->prev = apc->prev;
Alexandre Julliard23623802001-01-06 01:48:51 +0000595 else queue->tail = apc->prev;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000596 if (apc->prev) apc->prev->next = apc->next;
Alexandre Julliard23623802001-01-06 01:48:51 +0000597 else queue->head = apc->next;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000598 free( apc );
599 return;
600 }
601}
602
603/* remove the head apc from the queue; the returned pointer must be freed by the caller */
Alexandre Julliard23623802001-01-06 01:48:51 +0000604static struct thread_apc *thread_dequeue_apc( struct thread *thread, int system_only )
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000605{
Alexandre Julliard23623802001-01-06 01:48:51 +0000606 struct thread_apc *apc;
607 struct apc_queue *queue = &thread->system_apc;
608
609 if (!queue->head && !system_only) queue = &thread->user_apc;
610 if ((apc = queue->head))
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000611 {
612 if (apc->next) apc->next->prev = NULL;
Alexandre Julliard23623802001-01-06 01:48:51 +0000613 else queue->tail = NULL;
614 queue->head = apc->next;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000615 }
616 return apc;
617}
618
Alexandre Julliardf5242402001-02-28 21:45:23 +0000619/* add an fd to the inflight list */
620/* return list index, or -1 on error */
621int thread_add_inflight_fd( struct thread *thread, int client, int server )
622{
623 int i;
624
625 if (server == -1) return -1;
626 if (client == -1)
627 {
628 close( server );
629 return -1;
630 }
631
632 /* first check if we already have an entry for this fd */
633 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
634 if (thread->inflight[i].client == client)
635 {
636 close( thread->inflight[i].server );
637 thread->inflight[i].server = server;
638 return i;
639 }
640
641 /* now find a free spot to store it */
642 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
643 if (thread->inflight[i].client == -1)
644 {
645 thread->inflight[i].client = client;
646 thread->inflight[i].server = server;
647 return i;
648 }
649 return -1;
650}
651
652/* get an inflight fd and purge it from the list */
653/* the fd must be closed when no longer used */
654int thread_get_inflight_fd( struct thread *thread, int client )
655{
656 int i, ret;
657
658 if (client == -1) return -1;
659
660 do
661 {
662 for (i = 0; i < MAX_INFLIGHT_FDS; i++)
663 {
664 if (thread->inflight[i].client == client)
665 {
666 ret = thread->inflight[i].server;
667 thread->inflight[i].server = thread->inflight[i].client = -1;
668 return ret;
669 }
670 }
671 } while (!receive_fd( thread->process )); /* in case it is still in the socket buffer */
672 return -1;
673}
674
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000675/* retrieve an LDT selector entry */
676static void get_selector_entry( struct thread *thread, int entry,
677 unsigned int *base, unsigned int *limit,
678 unsigned char *flags )
679{
Alexandre Julliard914406f2000-11-14 01:54:49 +0000680 if (!thread->process->ldt_copy)
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000681 {
682 set_error( STATUS_ACCESS_DENIED );
683 return;
684 }
685 if (entry >= 8192)
686 {
687 set_error( STATUS_INVALID_PARAMETER ); /* FIXME */
688 return;
689 }
Alexandre Julliard98aacc72000-03-15 19:46:14 +0000690 if (suspend_for_ptrace( thread ))
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000691 {
692 unsigned char flags_buf[4];
Alexandre Julliard914406f2000-11-14 01:54:49 +0000693 int *addr = (int *)thread->process->ldt_copy + entry;
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000694 if (read_thread_int( thread, addr, base ) == -1) goto done;
Alexandre Julliard914406f2000-11-14 01:54:49 +0000695 if (read_thread_int( thread, addr + 8192, limit ) == -1) goto done;
696 addr = (int *)thread->process->ldt_copy + 2*8192 + (entry >> 2);
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000697 if (read_thread_int( thread, addr, (int *)flags_buf ) == -1) goto done;
698 *flags = flags_buf[entry & 3];
Alexandre Julliard98aacc72000-03-15 19:46:14 +0000699 done:
700 resume_thread( thread );
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000701 }
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000702}
703
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000704/* kill a thread on the spot */
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000705void kill_thread( struct thread *thread, int violent_death )
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000706{
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000707 if (thread->state == TERMINATED) return; /* already killed */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000708 thread->state = TERMINATED;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000709 if (current == thread) current = NULL;
Alexandre Julliard05f0b712000-03-09 18:18:41 +0000710 if (debug_level)
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000711 fprintf( stderr,"%08x: *killed* exit_code=%d\n",
712 (unsigned int)thread, thread->exit_code );
713 if (thread->wait)
714 {
Alexandre Julliarde5dedb12001-03-08 01:16:41 +0000715 while (thread->wait) end_wait( thread );
716 send_thread_wakeup( thread, NULL, STATUS_PENDING );
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000717 /* if it is waiting on the socket, we don't need to send a SIGTERM */
718 violent_death = 0;
719 }
Eric Pouech3940d8a2001-12-04 20:17:43 +0000720 kill_console_processes( thread, 0 );
Alexandre Julliardff81d782000-03-08 12:01:30 +0000721 debug_exit_thread( thread );
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000722 abandon_mutexes( thread );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000723 remove_process_thread( thread->process, thread );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000724 wake_up( &thread->obj, 0 );
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000725 detach_thread( thread, violent_death ? SIGTERM : 0 );
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000726 if (thread->request_fd == thread->obj.fd) thread->request_fd = -1;
727 if (thread->reply_fd == thread->obj.fd) thread->reply_fd = -1;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000728 remove_select_user( &thread->obj );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000729 cleanup_thread( thread );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000730 release_object( thread );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000731}
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000732
Alexandre Julliard07d84462000-04-16 19:45:05 +0000733/* take a snapshot of currently running threads */
734struct thread_snapshot *thread_snap( int *count )
735{
736 struct thread_snapshot *snapshot, *ptr;
737 struct thread *thread;
738 int total = 0;
739
740 for (thread = first_thread; thread; thread = thread->next)
741 if (thread->state != TERMINATED) total++;
742 if (!total || !(snapshot = mem_alloc( sizeof(*snapshot) * total ))) return NULL;
743 ptr = snapshot;
744 for (thread = first_thread; thread; thread = thread->next)
745 {
746 if (thread->state == TERMINATED) continue;
747 ptr->thread = thread;
748 ptr->count = thread->obj.refcount;
749 ptr->priority = thread->priority;
750 grab_object( thread );
751 ptr++;
752 }
753 *count = total;
754 return snapshot;
755}
756
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000757/* signal that we are finished booting on the client side */
758DECL_HANDLER(boot_done)
759{
Alexandre Julliardf6507ed2000-04-06 22:05:16 +0000760 debug_level = max( debug_level, req->debug_level );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000761 if (current == booting_thread)
762 {
763 booting_thread = (struct thread *)~0UL; /* make sure it doesn't match other threads */
764 lock_master_socket(0); /* allow other clients now */
765 }
766}
767
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000768/* create a new thread */
769DECL_HANDLER(new_thread)
770{
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000771 struct thread *thread;
Alexandre Julliard8859d772001-03-01 22:13:49 +0000772 int request_fd = thread_get_inflight_fd( current, req->request_fd );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000773
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000774 if (request_fd == -1 || fcntl( request_fd, F_SETFL, O_NONBLOCK ) == -1)
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000775 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000776 if (request_fd != -1) close( request_fd );
Alexandre Julliard8859d772001-03-01 22:13:49 +0000777 set_error( STATUS_INVALID_HANDLE );
778 return;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000779 }
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000780
Alexandre Julliard8859d772001-03-01 22:13:49 +0000781 if ((thread = create_thread( request_fd, current->process )))
782 {
783 if (req->suspend) thread->suspend++;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000784 reply->tid = thread;
785 if ((reply->handle = alloc_handle( current->process, thread,
786 THREAD_ALL_ACCESS, req->inherit )))
Alexandre Julliard8859d772001-03-01 22:13:49 +0000787 {
788 /* thread object will be released when the thread gets killed */
789 return;
790 }
791 kill_thread( thread, 1 );
792 request_fd = -1;
793 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000794}
795
796/* initialize a new thread */
797DECL_HANDLER(init_thread)
798{
Alexandre Julliard8859d772001-03-01 22:13:49 +0000799 int reply_fd = thread_get_inflight_fd( current, req->reply_fd );
800 int wait_fd = thread_get_inflight_fd( current, req->wait_fd );
801
Alexandre Julliard0a707831999-11-08 05:31:47 +0000802 if (current->unix_pid)
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000803 {
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000804 fatal_protocol_error( current, "init_thread: already running\n" );
Alexandre Julliard8859d772001-03-01 22:13:49 +0000805 goto error;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000806 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000807 if (reply_fd == -1 || fcntl( reply_fd, F_SETFL, O_NONBLOCK ) == -1)
Alexandre Julliard8859d772001-03-01 22:13:49 +0000808 {
809 fatal_protocol_error( current, "bad reply fd\n" );
810 goto error;
811 }
812 if (wait_fd == -1)
813 {
814 fatal_protocol_error( current, "bad wait fd\n" );
815 goto error;
816 }
817
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000818 current->unix_pid = req->unix_pid;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000819 current->teb = req->teb;
Alexandre Julliard8859d772001-03-01 22:13:49 +0000820 current->reply_fd = reply_fd;
821 current->wait_fd = wait_fd;
822
Alexandre Julliard0a707831999-11-08 05:31:47 +0000823 if (current->suspend + current->process->suspend > 0) stop_thread( current );
Alexandre Julliardff81d782000-03-08 12:01:30 +0000824 if (current->process->running_threads > 1)
Alexandre Julliardb73421d2000-03-30 19:30:24 +0000825 generate_debug_event( current, CREATE_THREAD_DEBUG_EVENT, req->entry );
Alexandre Julliard8859d772001-03-01 22:13:49 +0000826
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000827 reply->pid = get_process_id( current->process );
828 reply->tid = get_thread_id( current );
829 reply->boot = (current == booting_thread);
830 reply->version = SERVER_PROTOCOL_VERSION;
Alexandre Julliard8859d772001-03-01 22:13:49 +0000831 return;
832
833 error:
834 if (reply_fd != -1) close( reply_fd );
835 if (wait_fd != -1) close( wait_fd );
836}
837
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000838/* terminate a thread */
839DECL_HANDLER(terminate_thread)
840{
841 struct thread *thread;
842
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000843 reply->self = 0;
844 reply->last = 0;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000845 if ((thread = get_thread_from_handle( req->handle, THREAD_TERMINATE )))
846 {
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000847 thread->exit_code = req->exit_code;
848 if (thread != current) kill_thread( thread, 1 );
849 else
850 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000851 reply->self = 1;
852 reply->last = (thread->process->running_threads == 1);
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000853 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000854 release_object( thread );
855 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000856}
857
Chris Morgan417296c2002-04-02 00:49:05 +0000858/* open a handle to a thread */
859DECL_HANDLER(open_thread)
860{
861 struct thread *thread = get_thread_from_id( req->tid );
862
863 reply->handle = 0;
864 if (thread)
865 {
866 reply->handle = alloc_handle( current->process, thread, req->access, req->inherit );
867 release_object( thread );
868 }
869}
870
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000871/* fetch information about a thread */
872DECL_HANDLER(get_thread_info)
873{
874 struct thread *thread;
Alexandre Julliard8081e5a2001-01-05 04:08:07 +0000875 handle_t handle = req->handle;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000876
Alexandre Julliard8081e5a2001-01-05 04:08:07 +0000877 if (!handle) thread = get_thread_from_id( req->tid_in );
Alexandre Julliard9a0e28f2000-03-25 19:14:37 +0000878 else thread = get_thread_from_handle( req->handle, THREAD_QUERY_INFORMATION );
879
880 if (thread)
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000881 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000882 reply->tid = get_thread_id( thread );
883 reply->teb = thread->teb;
884 reply->exit_code = (thread->state == TERMINATED) ? thread->exit_code : STILL_ACTIVE;
885 reply->priority = thread->priority;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000886 release_object( thread );
887 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000888}
889
890/* set information about a thread */
891DECL_HANDLER(set_thread_info)
892{
893 struct thread *thread;
894
895 if ((thread = get_thread_from_handle( req->handle, THREAD_SET_INFORMATION )))
896 {
897 set_thread_info( thread, req );
898 release_object( thread );
899 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000900}
901
902/* suspend a thread */
903DECL_HANDLER(suspend_thread)
904{
905 struct thread *thread;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000906
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000907 if ((thread = get_thread_from_handle( req->handle, THREAD_SUSPEND_RESUME )))
908 {
François Gougetf6662572002-04-02 02:53:45 +0000909 if (thread->state == TERMINATED) set_error( STATUS_ACCESS_DENIED );
910 else reply->count = suspend_thread( thread, 1 );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000911 release_object( thread );
912 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000913}
914
915/* resume a thread */
916DECL_HANDLER(resume_thread)
917{
918 struct thread *thread;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000919
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000920 if ((thread = get_thread_from_handle( req->handle, THREAD_SUSPEND_RESUME )))
921 {
François Gougetf6662572002-04-02 02:53:45 +0000922 if (thread->state == TERMINATED) set_error( STATUS_ACCESS_DENIED );
923 else reply->count = resume_thread( thread );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000924 release_object( thread );
925 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000926}
927
928/* select on a handle list */
929DECL_HANDLER(select)
930{
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000931 int count = get_req_data_size() / sizeof(int);
932 select_on( count, req->cookie, get_req_data(), req->flags, req->sec, req->usec );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000933}
934
935/* queue an APC for a thread */
936DECL_HANDLER(queue_apc)
937{
938 struct thread *thread;
939 if ((thread = get_thread_from_handle( req->handle, THREAD_SET_CONTEXT )))
940 {
Alexandre Julliard23623802001-01-06 01:48:51 +0000941 thread_queue_apc( thread, NULL, req->func, APC_USER, !req->user, 1, req->param );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000942 release_object( thread );
943 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000944}
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000945
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000946/* get next APC to call */
947DECL_HANDLER(get_apc)
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000948{
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000949 struct thread_apc *apc;
Alexandre Julliard9c2370b2000-08-30 00:00:48 +0000950 size_t size;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000951
Alexandre Julliard9c2370b2000-08-30 00:00:48 +0000952 for (;;)
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000953 {
Alexandre Julliard23623802001-01-06 01:48:51 +0000954 if (!(apc = thread_dequeue_apc( current, !req->alertable )))
Alexandre Julliard9c2370b2000-08-30 00:00:48 +0000955 {
956 /* no more APCs */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000957 reply->func = NULL;
958 reply->type = APC_NONE;
Alexandre Julliard9c2370b2000-08-30 00:00:48 +0000959 return;
960 }
961 /* Optimization: ignore APCs that have a NULL func; they are only used
962 * to wake up a thread, but since we got here the thread woke up already.
Martin Wilck2b47fb32002-04-05 22:53:57 +0000963 * Exception: for APC_ASYNC_IO, func == NULL is legal.
Alexandre Julliard9c2370b2000-08-30 00:00:48 +0000964 */
Martin Wilck2b47fb32002-04-05 22:53:57 +0000965 if (apc->func || apc->type == APC_ASYNC_IO) break;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000966 free( apc );
967 }
Alexandre Julliard9c2370b2000-08-30 00:00:48 +0000968 size = apc->nb_args * sizeof(apc->args[0]);
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000969 if (size > get_reply_max_size()) size = get_reply_max_size();
970 reply->func = apc->func;
971 reply->type = apc->type;
972 set_reply_data( apc->args, size );
Alexandre Julliard9c2370b2000-08-30 00:00:48 +0000973 free( apc );
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000974}
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000975
976/* fetch a selector entry for a thread */
977DECL_HANDLER(get_selector_entry)
978{
979 struct thread *thread;
980 if ((thread = get_thread_from_handle( req->handle, THREAD_QUERY_INFORMATION )))
981 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000982 get_selector_entry( thread, req->entry, &reply->base, &reply->limit, &reply->flags );
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000983 release_object( thread );
984 }
985}