blob: f98982daa81f645287b6452452be90fc8e91f7d6 [file] [log] [blame]
Alexandre Julliard642d3131998-07-12 19:29:36 +00001/*
2 * Server-side thread management
3 *
4 * Copyright (C) 1998 Alexandre Julliard
5 */
6
Howard Abrams13277481999-07-10 13:16:29 +00007#include "config.h"
8
Alexandre Julliard642d3131998-07-12 19:29:36 +00009#include <assert.h>
10#include <fcntl.h>
Alexandre Julliard767e6f61998-08-09 12:47:43 +000011#include <signal.h>
Alexandre Julliard642d3131998-07-12 19:29:36 +000012#include <stdio.h>
13#include <stdlib.h>
14#include <string.h>
Howard Abrams13277481999-07-10 13:16:29 +000015#ifdef HAVE_SYS_MMAN_H
Alexandre Julliard5bc78081999-06-22 17:26:53 +000016#include <sys/mman.h>
Howard Abrams13277481999-07-10 13:16:29 +000017#endif
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000018#include <sys/types.h>
Alexandre Julliard95e7acb2000-01-04 02:40:22 +000019#ifdef HAVE_SYS_SOCKET_H
20# include <sys/socket.h>
21#endif
Alexandre Julliard767e6f61998-08-09 12:47:43 +000022#include <sys/uio.h>
Alexandre Julliard642d3131998-07-12 19:29:36 +000023#include <unistd.h>
Michael Vekslerf935c591999-02-09 15:49:39 +000024#include <stdarg.h>
Alexandre Julliard642d3131998-07-12 19:29:36 +000025
Michael Vekslerf935c591999-02-09 15:49:39 +000026
27#include "winbase.h"
Alexandre Julliard43c190e1999-05-15 10:48:19 +000028
29#include "handle.h"
Alexandre Julliard43c190e1999-05-15 10:48:19 +000030#include "process.h"
31#include "thread.h"
Alexandre Julliard5bc78081999-06-22 17:26:53 +000032#include "request.h"
Alexandre Julliard642d3131998-07-12 19:29:36 +000033
34
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000035/* thread queues */
36
37struct wait_queue_entry
38{
39 struct wait_queue_entry *next;
40 struct wait_queue_entry *prev;
41 struct object *obj;
42 struct thread *thread;
43};
44
45struct thread_wait
46{
47 int count; /* count of objects */
48 int flags;
49 struct timeval timeout;
Alexandre Julliard57e11311999-05-16 16:59:38 +000050 struct timeout_user *user;
Alexandre Julliard9de03f42000-01-04 02:23:38 +000051 sleep_reply reply; /* function to build the reply */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000052 struct wait_queue_entry queues[1];
53};
54
Alexandre Julliard62a8b431999-01-19 17:48:23 +000055/* asynchronous procedure calls */
56
57struct thread_apc
58{
59 void *func; /* function to call in client */
60 void *param; /* function param */
61};
62#define MAX_THREAD_APC 16 /* Max outstanding APCs for a thread */
63
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000064
Alexandre Julliard642d3131998-07-12 19:29:36 +000065/* thread operations */
66
Alexandre Julliard767e6f61998-08-09 12:47:43 +000067static void dump_thread( struct object *obj, int verbose );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000068static int thread_signaled( struct object *obj, struct thread *thread );
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000069extern void thread_poll_event( struct object *obj, int event );
Alexandre Julliard642d3131998-07-12 19:29:36 +000070static void destroy_thread( struct object *obj );
71
72static const struct object_ops thread_ops =
73{
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000074 sizeof(struct thread), /* size */
75 dump_thread, /* dump */
76 add_queue, /* add_queue */
77 remove_queue, /* remove_queue */
78 thread_signaled, /* signaled */
79 no_satisfied, /* satisfied */
80 NULL, /* get_poll_events */
81 thread_poll_event, /* poll_event */
82 no_read_fd, /* get_read_fd */
83 no_write_fd, /* get_write_fd */
84 no_flush, /* flush */
85 no_get_file_info, /* get_file_info */
86 destroy_thread /* destroy */
Alexandre Julliard642d3131998-07-12 19:29:36 +000087};
88
Alexandre Julliardeb2e77f1999-06-04 19:49:54 +000089static struct thread *first_thread;
Alexandre Julliard2fe57772000-01-25 01:40:27 +000090static struct thread *booting_thread;
Alexandre Julliard767e6f61998-08-09 12:47:43 +000091
Alexandre Julliard5bc78081999-06-22 17:26:53 +000092/* allocate the buffer for the communication with the client */
93static int alloc_client_buffer( struct thread *thread )
Alexandre Julliard642d3131998-07-12 19:29:36 +000094{
Alexandre Julliardff81d782000-03-08 12:01:30 +000095 struct get_thread_buffer_request *req;
Alexandre Julliard5bc78081999-06-22 17:26:53 +000096 int fd;
97
98 if ((fd = create_anonymous_file()) == -1) return -1;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +000099 if (ftruncate( fd, MAX_REQUEST_LENGTH ) == -1) goto error;
100 if ((thread->buffer = mmap( 0, MAX_REQUEST_LENGTH, PROT_READ | PROT_WRITE,
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000101 MAP_SHARED, fd, 0 )) == (void*)-1) goto error;
Alexandre Julliardff81d782000-03-08 12:01:30 +0000102 /* build the first request into the buffer and send it */
103 req = thread->buffer;
104 req->pid = get_process_id( thread->process );
105 req->tid = get_thread_id( thread );
106 req->boot = (thread == booting_thread);
Alexandre Julliard5fb54562000-03-08 22:01:02 +0000107 req->version = SERVER_PROTOCOL_VERSION;
Alexandre Julliardff81d782000-03-08 12:01:30 +0000108 set_reply_fd( thread, fd );
109 send_reply( thread );
110 return 1;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000111
112 error:
113 file_set_error();
114 if (fd != -1) close( fd );
Alexandre Julliardff81d782000-03-08 12:01:30 +0000115 return 0;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000116}
117
118/* create a new thread */
Alexandre Julliard5b4f3e82000-05-01 16:24:22 +0000119struct thread *create_thread( int fd, struct process *process )
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000120{
121 struct thread *thread;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000122
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000123 int flags = fcntl( fd, F_GETFL, 0 );
124 fcntl( fd, F_SETFL, flags | O_NONBLOCK );
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000125
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000126 if (!(thread = alloc_object( &thread_ops, fd ))) return NULL;
127
Alexandre Julliard57e11311999-05-16 16:59:38 +0000128 thread->unix_pid = 0; /* not known yet */
Alexandre Julliardea0d0282000-03-10 22:16:10 +0000129 thread->context = NULL;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000130 thread->teb = NULL;
131 thread->mutex = NULL;
132 thread->debug_ctx = NULL;
Alexandre Julliardf6507ed2000-04-06 22:05:16 +0000133 thread->debug_event = NULL;
Alexandre Julliard5b4f3e82000-05-01 16:24:22 +0000134 thread->info = NULL;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000135 thread->wait = NULL;
136 thread->apc = NULL;
137 thread->apc_count = 0;
138 thread->error = 0;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000139 thread->pass_fd = -1;
Alexandre Julliard0a707831999-11-08 05:31:47 +0000140 thread->state = RUNNING;
141 thread->attached = 0;
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000142 thread->exit_code = 0;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000143 thread->next = NULL;
144 thread->prev = NULL;
145 thread->priority = THREAD_PRIORITY_NORMAL;
146 thread->affinity = 1;
Alexandre Julliard5b4f3e82000-05-01 16:24:22 +0000147 thread->suspend = 0;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000148 thread->buffer = (void *)-1;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000149 thread->last_req = REQ_GET_THREAD_BUFFER;
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000150 thread->process = (struct process *)grab_object( process );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000151
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000152 if (!current) current = thread;
153
154 if (!booting_thread) /* first thread ever */
Alexandre Julliardf692d441999-03-21 19:23:54 +0000155 {
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000156 booting_thread = thread;
157 lock_master_socket(1);
Alexandre Julliardf692d441999-03-21 19:23:54 +0000158 }
Alexandre Julliardf692d441999-03-21 19:23:54 +0000159
Alexandre Julliardeb2e77f1999-06-04 19:49:54 +0000160 if ((thread->next = first_thread) != NULL) thread->next->prev = thread;
Alexandre Julliard642d3131998-07-12 19:29:36 +0000161 first_thread = thread;
162
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000163 set_select_events( &thread->obj, POLLIN ); /* start listening to events */
Alexandre Julliardff81d782000-03-08 12:01:30 +0000164 if (!alloc_client_buffer( thread )) goto error;
Alexandre Julliard642d3131998-07-12 19:29:36 +0000165 return thread;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000166
167 error:
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000168 release_object( thread );
169 return NULL;
Alexandre Julliard642d3131998-07-12 19:29:36 +0000170}
171
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000172/* handle a client event */
173void thread_poll_event( struct object *obj, int event )
174{
175 struct thread *thread = (struct thread *)obj;
176 assert( obj->ops == &thread_ops );
177
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000178 if (event & (POLLERR | POLLHUP)) kill_thread( thread, 0 );
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000179 else
180 {
181 if (event & POLLOUT) write_request( thread );
182 if (event & POLLIN) read_request( thread );
183 }
184}
185
Alexandre Julliard642d3131998-07-12 19:29:36 +0000186/* destroy a thread when its refcount is 0 */
187static void destroy_thread( struct object *obj )
188{
189 struct thread *thread = (struct thread *)obj;
190 assert( obj->ops == &thread_ops );
191
Alexandre Julliarde712e071999-05-23 19:53:30 +0000192 assert( !thread->debug_ctx ); /* cannot still be debugging something */
Alexandre Julliard642d3131998-07-12 19:29:36 +0000193 release_object( thread->process );
194 if (thread->next) thread->next->prev = thread->prev;
195 if (thread->prev) thread->prev->next = thread->next;
196 else first_thread = thread->next;
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000197 if (thread->apc) free( thread->apc );
Alexandre Julliard5b4f3e82000-05-01 16:24:22 +0000198 if (thread->info) release_object( thread->info );
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000199 if (thread->buffer != (void *)-1) munmap( thread->buffer, MAX_REQUEST_LENGTH );
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000200 if (thread->pass_fd != -1) close( thread->pass_fd );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000201}
202
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000203/* dump a thread on stdout for debugging purposes */
204static void dump_thread( struct object *obj, int verbose )
205{
206 struct thread *thread = (struct thread *)obj;
207 assert( obj->ops == &thread_ops );
208
Alexandre Julliardeb2e77f1999-06-04 19:49:54 +0000209 fprintf( stderr, "Thread pid=%d teb=%p state=%d\n",
210 thread->unix_pid, thread->teb, thread->state );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000211}
212
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000213static int thread_signaled( struct object *obj, struct thread *thread )
214{
215 struct thread *mythread = (struct thread *)obj;
216 return (mythread->state == TERMINATED);
217}
218
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000219/* get a thread pointer from a thread id (and increment the refcount) */
Alexandre Julliard642d3131998-07-12 19:29:36 +0000220struct thread *get_thread_from_id( void *id )
221{
222 struct thread *t = first_thread;
223 while (t && (t != id)) t = t->next;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000224 if (t) grab_object( t );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000225 return t;
226}
227
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000228/* get a thread from a handle (and increment the refcount) */
229struct thread *get_thread_from_handle( int handle, unsigned int access )
Alexandre Julliard642d3131998-07-12 19:29:36 +0000230{
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000231 return (struct thread *)get_handle_obj( current->process, handle,
232 access, &thread_ops );
233}
234
Alexandre Julliard578c1001999-11-14 21:23:21 +0000235/* find a thread from a Unix pid */
236struct thread *get_thread_from_pid( int pid )
237{
238 struct thread *t = first_thread;
239 while (t && (t->unix_pid != pid)) t = t->next;
240 return t;
241}
242
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000243/* set all information about a thread */
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000244static void set_thread_info( struct thread *thread,
245 struct set_thread_info_request *req )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000246{
247 if (req->mask & SET_THREAD_INFO_PRIORITY)
248 thread->priority = req->priority;
249 if (req->mask & SET_THREAD_INFO_AFFINITY)
250 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000251 if (req->affinity != 1) set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000252 else thread->affinity = req->affinity;
253 }
254}
255
256/* suspend a thread */
Alexandre Julliard8b8828f1999-11-12 21:39:14 +0000257int suspend_thread( struct thread *thread, int check_limit )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000258{
259 int old_count = thread->suspend;
Alexandre Julliard8b8828f1999-11-12 21:39:14 +0000260 if (thread->suspend < MAXIMUM_SUSPEND_COUNT || !check_limit)
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000261 {
Alexandre Julliard0a707831999-11-08 05:31:47 +0000262 if (!(thread->process->suspend + thread->suspend++)) stop_thread( thread );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000263 }
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000264 else set_error( STATUS_SUSPEND_COUNT_EXCEEDED );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000265 return old_count;
266}
267
268/* resume a thread */
Alexandre Julliard8b8828f1999-11-12 21:39:14 +0000269int resume_thread( struct thread *thread )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000270{
271 int old_count = thread->suspend;
272 if (thread->suspend > 0)
273 {
Alexandre Julliard0a707831999-11-08 05:31:47 +0000274 if (!(--thread->suspend + thread->process->suspend)) continue_thread( thread );
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000275 }
276 return old_count;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000277}
278
Ulrich Weigand371fd751999-04-11 17:13:03 +0000279/* suspend all threads but the current */
280void suspend_all_threads( void )
281{
282 struct thread *thread;
283 for ( thread = first_thread; thread; thread = thread->next )
284 if ( thread != current )
Alexandre Julliard8b8828f1999-11-12 21:39:14 +0000285 suspend_thread( thread, 0 );
Ulrich Weigand371fd751999-04-11 17:13:03 +0000286}
287
288/* resume all threads but the current */
289void resume_all_threads( void )
290{
291 struct thread *thread;
292 for ( thread = first_thread; thread; thread = thread->next )
293 if ( thread != current )
294 resume_thread( thread );
295}
296
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000297/* add a thread to an object wait queue; return 1 if OK, 0 on error */
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000298int add_queue( struct object *obj, struct wait_queue_entry *entry )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000299{
Alexandre Julliardc6e45ed1998-12-27 08:35:39 +0000300 grab_object( obj );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000301 entry->obj = obj;
302 entry->prev = obj->tail;
303 entry->next = NULL;
304 if (obj->tail) obj->tail->next = entry;
305 else obj->head = entry;
306 obj->tail = entry;
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000307 return 1;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000308}
309
310/* remove a thread from an object wait queue */
Alexandre Julliardc6e45ed1998-12-27 08:35:39 +0000311void remove_queue( struct object *obj, struct wait_queue_entry *entry )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000312{
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000313 if (entry->next) entry->next->prev = entry->prev;
314 else obj->tail = entry->prev;
315 if (entry->prev) entry->prev->next = entry->next;
316 else obj->head = entry->next;
317 release_object( obj );
318}
319
320/* finish waiting */
321static void end_wait( struct thread *thread )
322{
323 struct thread_wait *wait = thread->wait;
324 struct wait_queue_entry *entry;
325 int i;
326
327 assert( wait );
Alexandre Julliardc6e45ed1998-12-27 08:35:39 +0000328 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
329 entry->obj->ops->remove_queue( entry->obj, entry );
Alexandre Julliard57e11311999-05-16 16:59:38 +0000330 if (wait->user) remove_timeout_user( wait->user );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000331 free( wait );
332 thread->wait = NULL;
333}
334
335/* build the thread wait structure */
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000336static int wait_on( int count, struct object *objects[], int flags,
337 int timeout, sleep_reply func )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000338{
339 struct thread_wait *wait;
340 struct wait_queue_entry *entry;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000341 int i;
342
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000343 if (!(wait = mem_alloc( sizeof(*wait) + (count-1) * sizeof(*entry) ))) return 0;
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000344 current->wait = wait;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000345 wait->count = count;
346 wait->flags = flags;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000347 wait->user = NULL;
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000348 wait->reply = func;
Alexandre Julliard247b8ae1999-12-13 00:16:44 +0000349 if (flags & SELECT_TIMEOUT)
350 {
351 gettimeofday( &wait->timeout, 0 );
352 add_timeout( &wait->timeout, timeout );
353 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000354
355 for (i = 0, entry = wait->queues; i < count; i++, entry++)
356 {
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000357 struct object *obj = objects[i];
358 entry->thread = current;
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000359 if (!obj->ops->add_queue( obj, entry ))
360 {
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000361 wait->count = i;
362 end_wait( current );
Alexandre Julliarda8b8d9c1999-01-01 16:59:27 +0000363 return 0;
364 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000365 }
366 return 1;
367}
368
369/* check if the thread waiting condition is satisfied */
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000370static int check_wait( struct thread *thread, struct object **object )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000371{
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000372 int i, signaled;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000373 struct thread_wait *wait = thread->wait;
374 struct wait_queue_entry *entry = wait->queues;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000375
376 assert( wait );
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000377 *object = NULL;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000378 if (wait->flags & SELECT_ALL)
379 {
Alexandre Julliard57e11311999-05-16 16:59:38 +0000380 int not_ok = 0;
381 /* Note: we must check them all anyway, as some objects may
382 * want to do something when signaled, even if others are not */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000383 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
Alexandre Julliard57e11311999-05-16 16:59:38 +0000384 not_ok |= !entry->obj->ops->signaled( entry->obj, thread );
385 if (not_ok) goto other_checks;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000386 /* Wait satisfied: tell it to all objects */
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000387 signaled = 0;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000388 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
389 if (entry->obj->ops->satisfied( entry->obj, thread ))
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000390 signaled = STATUS_ABANDONED_WAIT_0;
391 return signaled;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000392 }
393 else
394 {
395 for (i = 0, entry = wait->queues; i < wait->count; i++, entry++)
396 {
397 if (!entry->obj->ops->signaled( entry->obj, thread )) continue;
398 /* Wait satisfied: tell it to the object */
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000399 signaled = i;
400 *object = entry->obj;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000401 if (entry->obj->ops->satisfied( entry->obj, thread ))
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000402 signaled = i + STATUS_ABANDONED_WAIT_0;
403 return signaled;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000404 }
405 }
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000406
407 other_checks:
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000408 if ((wait->flags & SELECT_ALERTABLE) && thread->apc) return STATUS_USER_APC;
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000409 if (wait->flags & SELECT_TIMEOUT)
410 {
411 struct timeval now;
412 gettimeofday( &now, NULL );
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000413 if (!time_before( &now, &wait->timeout )) return STATUS_TIMEOUT;
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000414 }
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000415 return -1;
416}
417
418/* build a reply to the select request */
419static void build_select_reply( struct thread *thread, struct object *obj, int signaled )
420{
421 struct select_request *req = get_req_ptr( thread );
422 req->signaled = signaled;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000423}
424
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000425/* attempt to wake up a thread */
426/* return 1 if OK, 0 if the wait condition is still not satisfied */
427static int wake_thread( struct thread *thread )
428{
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000429 int signaled;
430 struct object *object;
431 if ((signaled = check_wait( thread, &object )) == -1) return 0;
432 thread->error = 0;
433 thread->wait->reply( thread, object, signaled );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000434 end_wait( thread );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000435 return 1;
436}
437
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000438/* thread wait timeout */
439static void thread_timeout( void *ptr )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000440{
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000441 struct thread *thread = ptr;
442 if (debug_level) fprintf( stderr, "%08x: *timeout*\n", (unsigned int)thread );
443 assert( thread->wait );
444 thread->error = 0;
445 thread->wait->user = NULL;
446 thread->wait->reply( thread, NULL, STATUS_TIMEOUT );
447 end_wait( thread );
448 send_reply( thread );
449}
450
451/* sleep on a list of objects */
452int sleep_on( int count, struct object *objects[], int flags, int timeout, sleep_reply func )
453{
454 assert( !current->wait );
455 if (!wait_on( count, objects, flags, timeout, func )) return 0;
456 if (wake_thread( current )) return 1;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000457 /* now we need to wait */
458 if (flags & SELECT_TIMEOUT)
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000459 {
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000460 if (!(current->wait->user = add_timeout_user( &current->wait->timeout,
461 thread_timeout, current )))
462 {
463 end_wait( current );
464 return 0;
465 }
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000466 }
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000467 return 1;
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000468}
469
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000470/* select on a list of handles */
471static int select_on( int count, int *handles, int flags, int timeout )
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000472{
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000473 int ret = 0;
474 int i;
475 struct object *objects[MAXIMUM_WAIT_OBJECTS];
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000476
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000477 if ((count < 0) || (count > MAXIMUM_WAIT_OBJECTS))
478 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000479 set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000480 return 0;
481 }
482 for (i = 0; i < count; i++)
483 {
484 if (!(objects[i] = get_handle_obj( current->process, handles[i], SYNCHRONIZE, NULL )))
485 break;
486 }
487 if (i == count) ret = sleep_on( count, objects, flags, timeout, build_select_reply );
488 while (--i >= 0) release_object( objects[i] );
489 return ret;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000490}
491
492/* attempt to wake threads sleeping on the object wait queue */
493void wake_up( struct object *obj, int max )
494{
495 struct wait_queue_entry *entry = obj->head;
496
497 while (entry)
498 {
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000499 struct thread *thread = entry->thread;
500 entry = entry->next;
501 if (wake_thread( thread ))
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000502 {
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000503 send_reply( thread );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000504 if (max && !--max) break;
505 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000506 }
507}
508
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000509/* queue an async procedure call */
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000510static int thread_queue_apc( struct thread *thread, void *func, void *param )
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000511{
512 struct thread_apc *apc;
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000513 if (!thread->apc)
514 {
515 if (!(thread->apc = mem_alloc( MAX_THREAD_APC * sizeof(*apc) )))
516 return 0;
517 thread->apc_count = 0;
518 }
519 else if (thread->apc_count >= MAX_THREAD_APC) return 0;
520 thread->apc[thread->apc_count].func = func;
521 thread->apc[thread->apc_count].param = param;
522 thread->apc_count++;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000523 if (thread->wait)
524 {
525 if (wake_thread( thread )) send_reply( thread );
526 }
Alexandre Julliard62a8b431999-01-19 17:48:23 +0000527 return 1;
528}
529
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000530/* retrieve an LDT selector entry */
531static void get_selector_entry( struct thread *thread, int entry,
532 unsigned int *base, unsigned int *limit,
533 unsigned char *flags )
534{
535 if (!thread->process->ldt_copy || !thread->process->ldt_flags)
536 {
537 set_error( STATUS_ACCESS_DENIED );
538 return;
539 }
540 if (entry >= 8192)
541 {
542 set_error( STATUS_INVALID_PARAMETER ); /* FIXME */
543 return;
544 }
Alexandre Julliard98aacc72000-03-15 19:46:14 +0000545 if (suspend_for_ptrace( thread ))
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000546 {
547 unsigned char flags_buf[4];
548 int *addr = (int *)thread->process->ldt_copy + 2 * entry;
549 if (read_thread_int( thread, addr, base ) == -1) goto done;
550 if (read_thread_int( thread, addr + 1, limit ) == -1) goto done;
551 addr = (int *)thread->process->ldt_flags + (entry >> 2);
552 if (read_thread_int( thread, addr, (int *)flags_buf ) == -1) goto done;
553 *flags = flags_buf[entry & 3];
Alexandre Julliard98aacc72000-03-15 19:46:14 +0000554 done:
555 resume_thread( thread );
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000556 }
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000557}
558
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000559/* kill a thread on the spot */
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000560void kill_thread( struct thread *thread, int violent_death )
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000561{
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000562 if (thread->state == TERMINATED) return; /* already killed */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000563 thread->state = TERMINATED;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000564 if (current == thread) current = NULL;
Alexandre Julliard05f0b712000-03-09 18:18:41 +0000565 if (debug_level)
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000566 fprintf( stderr,"%08x: *killed* exit_code=%d\n",
567 (unsigned int)thread, thread->exit_code );
568 if (thread->wait)
569 {
570 end_wait( thread );
571 /* if it is waiting on the socket, we don't need to send a SIGTERM */
572 violent_death = 0;
573 }
Alexandre Julliardff81d782000-03-08 12:01:30 +0000574 debug_exit_thread( thread );
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000575 abandon_mutexes( thread );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000576 remove_process_thread( thread->process, thread );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +0000577 wake_up( &thread->obj, 0 );
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000578 detach_thread( thread, violent_death ? SIGTERM : 0 );
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000579 remove_select_user( &thread->obj );
Alexandre Julliard9a0e28f2000-03-25 19:14:37 +0000580 munmap( thread->buffer, MAX_REQUEST_LENGTH );
581 thread->buffer = (void *)-1;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000582 release_object( thread );
Alexandre Julliard642d3131998-07-12 19:29:36 +0000583}
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000584
Alexandre Julliard07d84462000-04-16 19:45:05 +0000585/* take a snapshot of currently running threads */
586struct thread_snapshot *thread_snap( int *count )
587{
588 struct thread_snapshot *snapshot, *ptr;
589 struct thread *thread;
590 int total = 0;
591
592 for (thread = first_thread; thread; thread = thread->next)
593 if (thread->state != TERMINATED) total++;
594 if (!total || !(snapshot = mem_alloc( sizeof(*snapshot) * total ))) return NULL;
595 ptr = snapshot;
596 for (thread = first_thread; thread; thread = thread->next)
597 {
598 if (thread->state == TERMINATED) continue;
599 ptr->thread = thread;
600 ptr->count = thread->obj.refcount;
601 ptr->priority = thread->priority;
602 grab_object( thread );
603 ptr++;
604 }
605 *count = total;
606 return snapshot;
607}
608
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000609/* signal that we are finished booting on the client side */
610DECL_HANDLER(boot_done)
611{
Alexandre Julliardf6507ed2000-04-06 22:05:16 +0000612 debug_level = max( debug_level, req->debug_level );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000613 /* Make sure last_req is initialized */
614 current->last_req = REQ_BOOT_DONE;
615 if (current == booting_thread)
616 {
617 booting_thread = (struct thread *)~0UL; /* make sure it doesn't match other threads */
618 lock_master_socket(0); /* allow other clients now */
619 }
620}
621
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000622/* create a new thread */
623DECL_HANDLER(new_thread)
624{
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000625 struct thread *thread;
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000626 int sock[2];
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000627
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000628 if (socketpair( AF_UNIX, SOCK_STREAM, 0, sock ) != -1)
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000629 {
Alexandre Julliard5b4f3e82000-05-01 16:24:22 +0000630 if ((thread = create_thread( sock[0], current->process )))
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000631 {
Alexandre Julliard5b4f3e82000-05-01 16:24:22 +0000632 if (req->suspend) thread->suspend++;
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000633 req->tid = thread;
634 if ((req->handle = alloc_handle( current->process, thread,
635 THREAD_ALL_ACCESS, req->inherit )) != -1)
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000636 {
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000637 set_reply_fd( current, sock[1] );
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000638 /* thread object will be released when the thread gets killed */
Alexandre Julliard6a72dc52000-04-14 13:42:00 +0000639 add_process_thread( current->process, thread );
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000640 return;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000641 }
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000642 release_object( thread );
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000643 }
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000644 close( sock[1] );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000645 }
Alexandre Julliard95e7acb2000-01-04 02:40:22 +0000646 else file_set_error();
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000647}
648
649/* retrieve the thread buffer file descriptor */
650DECL_HANDLER(get_thread_buffer)
651{
652 fatal_protocol_error( current, "get_thread_buffer: should never get called directly\n" );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000653}
654
655/* initialize a new thread */
656DECL_HANDLER(init_thread)
657{
Alexandre Julliard0a707831999-11-08 05:31:47 +0000658 if (current->unix_pid)
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000659 {
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000660 fatal_protocol_error( current, "init_thread: already running\n" );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000661 return;
662 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000663 current->unix_pid = req->unix_pid;
Alexandre Julliard57e11311999-05-16 16:59:38 +0000664 current->teb = req->teb;
Alexandre Julliard0a707831999-11-08 05:31:47 +0000665 if (current->suspend + current->process->suspend > 0) stop_thread( current );
Alexandre Julliardff81d782000-03-08 12:01:30 +0000666 if (current->process->running_threads > 1)
Alexandre Julliardb73421d2000-03-30 19:30:24 +0000667 generate_debug_event( current, CREATE_THREAD_DEBUG_EVENT, req->entry );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000668}
669
670/* terminate a thread */
671DECL_HANDLER(terminate_thread)
672{
673 struct thread *thread;
674
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000675 req->self = 0;
676 req->last = 0;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000677 if ((thread = get_thread_from_handle( req->handle, THREAD_TERMINATE )))
678 {
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000679 thread->exit_code = req->exit_code;
680 if (thread != current) kill_thread( thread, 1 );
681 else
682 {
683 req->self = 1;
684 req->last = (thread->process->running_threads == 1);
685 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000686 release_object( thread );
687 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000688}
689
690/* fetch information about a thread */
691DECL_HANDLER(get_thread_info)
692{
693 struct thread *thread;
Alexandre Julliard9a0e28f2000-03-25 19:14:37 +0000694 int handle = req->handle;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000695
Alexandre Julliard9a0e28f2000-03-25 19:14:37 +0000696 if (handle == -1) thread = get_thread_from_id( req->tid_in );
697 else thread = get_thread_from_handle( req->handle, THREAD_QUERY_INFORMATION );
698
699 if (thread)
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000700 {
Alexandre Julliard9a0e28f2000-03-25 19:14:37 +0000701 req->tid = get_thread_id( thread );
702 req->teb = thread->teb;
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000703 req->exit_code = (thread->state == TERMINATED) ? thread->exit_code : STILL_ACTIVE;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000704 req->priority = thread->priority;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000705 release_object( thread );
706 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000707}
708
709/* set information about a thread */
710DECL_HANDLER(set_thread_info)
711{
712 struct thread *thread;
713
714 if ((thread = get_thread_from_handle( req->handle, THREAD_SET_INFORMATION )))
715 {
716 set_thread_info( thread, req );
717 release_object( thread );
718 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000719}
720
721/* suspend a thread */
722DECL_HANDLER(suspend_thread)
723{
724 struct thread *thread;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000725
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000726 if ((thread = get_thread_from_handle( req->handle, THREAD_SUSPEND_RESUME )))
727 {
Alexandre Julliard8b8828f1999-11-12 21:39:14 +0000728 req->count = suspend_thread( thread, 1 );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000729 release_object( thread );
730 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000731}
732
733/* resume a thread */
734DECL_HANDLER(resume_thread)
735{
736 struct thread *thread;
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000737
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000738 if ((thread = get_thread_from_handle( req->handle, THREAD_SUSPEND_RESUME )))
739 {
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000740 req->count = resume_thread( thread );
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000741 release_object( thread );
742 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000743}
744
745/* select on a handle list */
746DECL_HANDLER(select)
747{
Alexandre Julliard9de03f42000-01-04 02:23:38 +0000748 if (!select_on( req->count, req->handles, req->flags, req->timeout ))
749 req->signaled = -1;
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000750}
751
752/* queue an APC for a thread */
753DECL_HANDLER(queue_apc)
754{
755 struct thread *thread;
756 if ((thread = get_thread_from_handle( req->handle, THREAD_SET_CONTEXT )))
757 {
758 thread_queue_apc( thread, req->func, req->param );
759 release_object( thread );
760 }
Alexandre Julliard43c190e1999-05-15 10:48:19 +0000761}
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000762
763/* get list of APC to call */
764DECL_HANDLER(get_apcs)
765{
766 if ((req->count = current->apc_count))
767 {
768 memcpy( req->apcs, current->apc, current->apc_count * sizeof(*current->apc) );
769 free( current->apc );
770 current->apc = NULL;
771 current->apc_count = 0;
772 }
773}
Alexandre Julliard0a7c1f62000-01-27 02:54:17 +0000774
775/* fetch a selector entry for a thread */
776DECL_HANDLER(get_selector_entry)
777{
778 struct thread *thread;
779 if ((thread = get_thread_from_handle( req->handle, THREAD_QUERY_INFORMATION )))
780 {
781 get_selector_entry( thread, req->entry, &req->base, &req->limit, &req->flags );
782 release_object( thread );
783 }
784}