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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/port.h"
32 #include <sys/types.h>
49 struct thread_wait
*next
; /* next wait structure for this thread */
50 struct thread
*thread
; /* owner thread */
51 int count
; /* count of objects */
53 void *cookie
; /* magic cookie to return to client */
54 struct timeval timeout
;
55 struct timeout_user
*user
;
56 struct wait_queue_entry queues
[1];
59 /* asynchronous procedure calls */
63 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 */
73 /* thread operations */
75 static void dump_thread( struct object
*obj
, int verbose
);
76 static int thread_signaled( struct object
*obj
, struct thread
*thread
);
77 static void thread_poll_event( struct object
*obj
, int event
);
78 static void destroy_thread( struct object
*obj
);
79 static struct thread_apc
*thread_dequeue_apc( struct thread
*thread
, int system_only
);
81 static const struct object_ops thread_ops
=
83 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 */
91 no_get_fd
, /* get_fd */
93 no_get_file_info
, /* get_file_info */
94 NULL
, /* queue_async */
95 destroy_thread
/* destroy */
98 static struct thread
*first_thread
;
99 static struct thread
*booting_thread
;
101 /* initialize the structure for a newly allocated thread */
102 inline static void init_thread_structure( struct thread
*thread
)
106 thread
->unix_pid
= 0; /* not known yet */
107 thread
->context
= NULL
;
109 thread
->mutex
= NULL
;
110 thread
->debug_ctx
= NULL
;
111 thread
->debug_event
= NULL
;
112 thread
->queue
= 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
;
120 thread
->req_data
= NULL
;
121 thread
->req_toread
= 0;
122 thread
->reply_data
= NULL
;
123 thread
->reply_towrite
= 0;
124 thread
->reply_fd
= -1;
125 thread
->wait_fd
= -1;
126 thread
->state
= RUNNING
;
127 thread
->attached
= 0;
128 thread
->exit_code
= 0;
131 thread
->priority
= THREAD_PRIORITY_NORMAL
;
132 thread
->affinity
= 1;
135 for (i
= 0; i
< MAX_INFLIGHT_FDS
; i
++)
136 thread
->inflight
[i
].server
= thread
->inflight
[i
].client
= -1;
139 /* create a new thread */
140 struct thread
*create_thread( int fd
, struct process
*process
)
142 struct thread
*thread
;
144 if (!(thread
= alloc_object( &thread_ops
, fd
))) return NULL
;
146 init_thread_structure( thread
);
148 thread
->process
= (struct process
*)grab_object( process
);
149 thread
->request_fd
= fd
;
150 if (!current
) current
= thread
;
152 if (!booting_thread
) /* first thread ever */
154 booting_thread
= thread
;
155 lock_master_socket(1);
158 if ((thread
->next
= first_thread
) != NULL
) thread
->next
->prev
= thread
;
159 first_thread
= thread
;
161 set_select_events( &thread
->obj
, POLLIN
); /* start listening to events */
162 add_process_thread( thread
->process
, thread
);
166 /* handle a client event */
167 static void thread_poll_event( struct object
*obj
, int event
)
169 struct thread
*thread
= (struct thread
*)obj
;
170 assert( obj
->ops
== &thread_ops
);
172 if (event
& (POLLERR
| POLLHUP
)) kill_thread( thread
, 0 );
173 else if (event
& POLLIN
) read_request( thread
);
174 else if (event
& POLLOUT
) write_reply( thread
);
177 /* cleanup everything that is no longer needed by a dead thread */
178 /* used by destroy_thread and kill_thread */
179 static void cleanup_thread( struct thread
*thread
)
182 struct thread_apc
*apc
;
184 while ((apc
= thread_dequeue_apc( thread
, 0 ))) free( apc
);
185 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
);
188 if (thread
->reply_fd
!= -1) close( thread
->reply_fd
);
189 if (thread
->wait_fd
!= -1) close( thread
->wait_fd
);
192 if (thread
->process
->queue
== thread
->queue
)
194 release_object( thread
->process
->queue
);
195 thread
->process
->queue
= NULL
;
197 release_object( thread
->queue
);
198 thread
->queue
= NULL
;
200 destroy_thread_windows( thread
);
201 for (i
= 0; i
< MAX_INFLIGHT_FDS
; i
++)
203 if (thread
->inflight
[i
].client
!= -1)
205 close( thread
->inflight
[i
].server
);
206 thread
->inflight
[i
].client
= thread
->inflight
[i
].server
= -1;
209 thread
->req_data
= NULL
;
210 thread
->reply_data
= NULL
;
211 thread
->request_fd
= -1;
212 thread
->reply_fd
= -1;
213 thread
->wait_fd
= -1;
216 /* destroy a thread when its refcount is 0 */
217 static void destroy_thread( struct object
*obj
)
219 struct thread_apc
*apc
;
220 struct thread
*thread
= (struct thread
*)obj
;
221 assert( obj
->ops
== &thread_ops
);
223 assert( !thread
->debug_ctx
); /* cannot still be debugging something */
224 if (thread
->next
) thread
->next
->prev
= thread
->prev
;
225 if (thread
->prev
) thread
->prev
->next
= thread
->next
;
226 else first_thread
= thread
->next
;
227 while ((apc
= thread_dequeue_apc( thread
, 0 ))) free( apc
);
228 if (thread
->info
) release_object( thread
->info
);
229 cleanup_thread( thread
);
230 release_object( thread
->process
);
233 /* dump a thread on stdout for debugging purposes */
234 static void dump_thread( struct object
*obj
, int verbose
)
236 struct thread
*thread
= (struct thread
*)obj
;
237 assert( obj
->ops
== &thread_ops
);
239 fprintf( stderr
, "Thread pid=%d teb=%p state=%d\n",
240 thread
->unix_pid
, thread
->teb
, thread
->state
);
243 static int thread_signaled( struct object
*obj
, struct thread
*thread
)
245 struct thread
*mythread
= (struct thread
*)obj
;
246 return (mythread
->state
== TERMINATED
);
249 /* get a thread pointer from a thread id (and increment the refcount) */
250 struct thread
*get_thread_from_id( void *id
)
252 struct thread
*t
= first_thread
;
253 while (t
&& (t
!= id
)) t
= t
->next
;
254 if (t
) grab_object( t
);
255 else set_error( STATUS_INVALID_PARAMETER
);
259 /* get a thread from a handle (and increment the refcount) */
260 struct thread
*get_thread_from_handle( obj_handle_t handle
, unsigned int access
)
262 return (struct thread
*)get_handle_obj( current
->process
, handle
,
263 access
, &thread_ops
);
266 /* find a thread from a Unix pid */
267 struct thread
*get_thread_from_pid( int pid
)
269 struct thread
*t
= first_thread
;
270 while (t
&& (t
->unix_pid
!= pid
)) t
= t
->next
;
274 /* set all information about a thread */
275 static void set_thread_info( struct thread
*thread
,
276 const struct set_thread_info_request
*req
)
278 if (req
->mask
& SET_THREAD_INFO_PRIORITY
)
279 thread
->priority
= req
->priority
;
280 if (req
->mask
& SET_THREAD_INFO_AFFINITY
)
282 if (req
->affinity
!= 1) set_error( STATUS_INVALID_PARAMETER
);
283 else thread
->affinity
= req
->affinity
;
287 /* suspend a thread */
288 int suspend_thread( struct thread
*thread
, int check_limit
)
290 int old_count
= thread
->suspend
;
291 if (thread
->suspend
< MAXIMUM_SUSPEND_COUNT
|| !check_limit
)
293 if (!(thread
->process
->suspend
+ thread
->suspend
++)) stop_thread( thread
);
295 else set_error( STATUS_SUSPEND_COUNT_EXCEEDED
);
299 /* resume a thread */
300 int resume_thread( struct thread
*thread
)
302 int old_count
= thread
->suspend
;
303 if (thread
->suspend
> 0)
305 if (!(--thread
->suspend
+ thread
->process
->suspend
)) continue_thread( thread
);
310 /* add a thread to an object wait queue; return 1 if OK, 0 on error */
311 int add_queue( struct object
*obj
, struct wait_queue_entry
*entry
)
315 entry
->prev
= obj
->tail
;
317 if (obj
->tail
) obj
->tail
->next
= entry
;
318 else obj
->head
= entry
;
323 /* remove a thread from an object wait queue */
324 void remove_queue( struct object
*obj
, struct wait_queue_entry
*entry
)
326 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
);
334 static void end_wait( struct thread
*thread
)
336 struct thread_wait
*wait
= thread
->wait
;
337 struct wait_queue_entry
*entry
;
341 for (i
= 0, entry
= wait
->queues
; i
< wait
->count
; i
++, entry
++)
342 entry
->obj
->ops
->remove_queue( entry
->obj
, entry
);
343 if (wait
->user
) remove_timeout_user( wait
->user
);
344 thread
->wait
= wait
->next
;
348 /* build the thread wait structure */
349 static int wait_on( int count
, struct object
*objects
[], int flags
, int sec
, int usec
)
351 struct thread_wait
*wait
;
352 struct wait_queue_entry
*entry
;
355 if (!(wait
= mem_alloc( sizeof(*wait
) + (count
-1) * sizeof(*entry
) ))) return 0;
356 wait
->next
= current
->wait
;
357 wait
->thread
= current
;
361 current
->wait
= wait
;
362 if (flags
& SELECT_TIMEOUT
)
364 wait
->timeout
.tv_sec
= sec
;
365 wait
->timeout
.tv_usec
= usec
;
368 for (i
= 0, entry
= wait
->queues
; i
< count
; i
++, entry
++)
370 struct object
*obj
= objects
[i
];
371 entry
->thread
= current
;
372 if (!obj
->ops
->add_queue( obj
, entry
))
382 /* check if the thread waiting condition is satisfied */
383 static int check_wait( struct thread
*thread
)
386 struct thread_wait
*wait
= thread
->wait
;
387 struct wait_queue_entry
*entry
= wait
->queues
;
390 if (wait
->flags
& SELECT_ALL
)
393 /* Note: we must check them all anyway, as some objects may
394 * want to do something when signaled, even if others are not */
395 for (i
= 0, entry
= wait
->queues
; i
< wait
->count
; i
++, entry
++)
396 not_ok
|= !entry
->obj
->ops
->signaled( entry
->obj
, thread
);
397 if (not_ok
) goto other_checks
;
398 /* Wait satisfied: tell it to all objects */
400 for (i
= 0, entry
= wait
->queues
; i
< wait
->count
; i
++, entry
++)
401 if (entry
->obj
->ops
->satisfied( entry
->obj
, thread
))
402 signaled
= STATUS_ABANDONED_WAIT_0
;
407 for (i
= 0, entry
= wait
->queues
; i
< wait
->count
; i
++, entry
++)
409 if (!entry
->obj
->ops
->signaled( entry
->obj
, thread
)) continue;
410 /* Wait satisfied: tell it to the object */
412 if (entry
->obj
->ops
->satisfied( entry
->obj
, thread
))
413 signaled
= i
+ STATUS_ABANDONED_WAIT_0
;
419 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
;
421 if (wait
->flags
& SELECT_TIMEOUT
)
424 gettimeofday( &now
, NULL
);
425 if (!time_before( &now
, &wait
->timeout
)) return STATUS_TIMEOUT
;
430 /* send the wakeup signal to a thread */
431 static int send_thread_wakeup( struct thread
*thread
, void *cookie
, int signaled
)
433 struct wake_up_reply reply
;
436 reply
.cookie
= cookie
;
437 reply
.signaled
= signaled
;
438 if ((ret
= write( thread
->wait_fd
, &reply
, sizeof(reply
) )) == sizeof(reply
)) return 0;
440 fatal_protocol_error( thread
, "partial wakeup write %d\n", ret
);
441 else if (errno
== EPIPE
)
442 kill_thread( thread
, 0 ); /* normal death */
444 fatal_protocol_perror( thread
, "write" );
448 /* attempt to wake up a thread */
449 /* return >0 if OK, 0 if the wait condition is still not satisfied */
450 static int wake_thread( struct thread
*thread
)
455 for (count
= 0; thread
->wait
; count
++)
457 if ((signaled
= check_wait( thread
)) == -1) break;
459 cookie
= thread
->wait
->cookie
;
460 if (debug_level
) fprintf( stderr
, "%08x: *wakeup* signaled=%d cookie=%p\n",
461 (unsigned int)thread
, signaled
, cookie
);
463 if (send_thread_wakeup( thread
, cookie
, signaled
) == -1) /* error */
469 /* thread wait timeout */
470 static void thread_timeout( void *ptr
)
472 struct thread_wait
*wait
= ptr
;
473 struct thread
*thread
= wait
->thread
;
474 void *cookie
= wait
->cookie
;
477 if (thread
->wait
!= wait
) return; /* not the top-level wait, ignore it */
479 if (debug_level
) fprintf( stderr
, "%08x: *wakeup* signaled=%d cookie=%p\n",
480 (unsigned int)thread
, STATUS_TIMEOUT
, cookie
);
482 send_thread_wakeup( thread
, cookie
, STATUS_TIMEOUT
);
483 /* check if other objects have become signaled in the meantime */
484 wake_thread( thread
);
487 /* select on a list of handles */
488 static void select_on( int count
, void *cookie
, const obj_handle_t
*handles
,
489 int flags
, int sec
, int usec
)
492 struct object
*objects
[MAXIMUM_WAIT_OBJECTS
];
494 if ((count
< 0) || (count
> MAXIMUM_WAIT_OBJECTS
))
496 set_error( STATUS_INVALID_PARAMETER
);
499 for (i
= 0; i
< count
; i
++)
501 if (!(objects
[i
] = get_handle_obj( current
->process
, handles
[i
], SYNCHRONIZE
, NULL
)))
505 if (i
< count
) goto done
;
506 if (!wait_on( count
, objects
, flags
, sec
, usec
)) goto done
;
508 if ((ret
= check_wait( current
)) != -1)
510 /* condition is already satisfied */
516 /* now we need to wait */
517 if (flags
& SELECT_TIMEOUT
)
519 if (!(current
->wait
->user
= add_timeout_user( ¤t
->wait
->timeout
,
520 thread_timeout
, current
->wait
)))
526 current
->wait
->cookie
= cookie
;
527 set_error( STATUS_PENDING
);
530 while (--i
>= 0) release_object( objects
[i
] );
533 /* attempt to wake threads sleeping on the object wait queue */
534 void wake_up( struct object
*obj
, int max
)
536 struct wait_queue_entry
*entry
= obj
->head
;
540 struct thread
*thread
= entry
->thread
;
542 if (wake_thread( thread
))
544 if (max
&& !--max
) break;
549 /* queue an async procedure call */
550 int thread_queue_apc( struct thread
*thread
, struct object
*owner
, void *func
,
551 enum apc_type type
, int system
, int nb_args
, ... )
553 struct thread_apc
*apc
;
554 struct apc_queue
*queue
= system
? &thread
->system_apc
: &thread
->user_apc
;
556 /* cancel a possible previous APC with the same owner */
557 if (owner
) thread_cancel_apc( thread
, owner
, system
);
558 if (thread
->state
== TERMINATED
) return 0;
560 if (!(apc
= mem_alloc( sizeof(*apc
) + (nb_args
-1)*sizeof(apc
->args
[0]) ))) return 0;
561 apc
->prev
= queue
->tail
;
566 apc
->nb_args
= nb_args
;
571 va_start( args
, nb_args
);
572 for (i
= 0; i
< nb_args
; i
++) apc
->args
[i
] = va_arg( args
, void * );
576 if (!apc
->prev
) /* first one */
579 wake_thread( thread
);
581 else apc
->prev
->next
= apc
;
586 /* cancel the async procedure call owned by a specific object */
587 void thread_cancel_apc( struct thread
*thread
, struct object
*owner
, int system
)
589 struct thread_apc
*apc
;
590 struct apc_queue
*queue
= system
? &thread
->system_apc
: &thread
->user_apc
;
591 for (apc
= queue
->head
; apc
; apc
= apc
->next
)
593 if (apc
->owner
!= owner
) continue;
594 if (apc
->next
) apc
->next
->prev
= apc
->prev
;
595 else queue
->tail
= apc
->prev
;
596 if (apc
->prev
) apc
->prev
->next
= apc
->next
;
597 else queue
->head
= apc
->next
;
603 /* remove the head apc from the queue; the returned pointer must be freed by the caller */
604 static struct thread_apc
*thread_dequeue_apc( struct thread
*thread
, int system_only
)
606 struct thread_apc
*apc
;
607 struct apc_queue
*queue
= &thread
->system_apc
;
609 if (!queue
->head
&& !system_only
) queue
= &thread
->user_apc
;
610 if ((apc
= queue
->head
))
612 if (apc
->next
) apc
->next
->prev
= NULL
;
613 else queue
->tail
= NULL
;
614 queue
->head
= apc
->next
;
619 /* add an fd to the inflight list */
620 /* return list index, or -1 on error */
621 int thread_add_inflight_fd( struct thread
*thread
, int client
, int server
)
625 if (server
== -1) return -1;
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
)
636 close( thread
->inflight
[i
].server
);
637 thread
->inflight
[i
].server
= server
;
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)
645 thread
->inflight
[i
].client
= client
;
646 thread
->inflight
[i
].server
= server
;
652 /* get an inflight fd and purge it from the list */
653 /* the fd must be closed when no longer used */
654 int thread_get_inflight_fd( struct thread
*thread
, int client
)
658 if (client
== -1) return -1;
662 for (i
= 0; i
< MAX_INFLIGHT_FDS
; i
++)
664 if (thread
->inflight
[i
].client
== client
)
666 ret
= thread
->inflight
[i
].server
;
667 thread
->inflight
[i
].server
= thread
->inflight
[i
].client
= -1;
671 } while (!receive_fd( thread
->process
)); /* in case it is still in the socket buffer */
675 /* retrieve an LDT selector entry */
676 static void get_selector_entry( struct thread
*thread
, int entry
,
677 unsigned int *base
, unsigned int *limit
,
678 unsigned char *flags
)
680 if (!thread
->process
->ldt_copy
)
682 set_error( STATUS_ACCESS_DENIED
);
687 set_error( STATUS_INVALID_PARAMETER
); /* FIXME */
690 if (suspend_for_ptrace( thread
))
692 unsigned char flags_buf
[4];
693 int *addr
= (int *)thread
->process
->ldt_copy
+ entry
;
694 if (read_thread_int( thread
, addr
, base
) == -1) goto done
;
695 if (read_thread_int( thread
, addr
+ 8192, limit
) == -1) goto done
;
696 addr
= (int *)thread
->process
->ldt_copy
+ 2*8192 + (entry
>> 2);
697 if (read_thread_int( thread
, addr
, (int *)flags_buf
) == -1) goto done
;
698 *flags
= flags_buf
[entry
& 3];
700 resume_thread( thread
);
704 /* kill a thread on the spot */
705 void kill_thread( struct thread
*thread
, int violent_death
)
707 if (thread
->state
== TERMINATED
) return; /* already killed */
708 thread
->state
= TERMINATED
;
709 if (current
== thread
) current
= NULL
;
711 fprintf( stderr
,"%08x: *killed* exit_code=%d\n",
712 (unsigned int)thread
, thread
->exit_code
);
715 while (thread
->wait
) end_wait( thread
);
716 send_thread_wakeup( thread
, NULL
, STATUS_PENDING
);
717 /* if it is waiting on the socket, we don't need to send a SIGTERM */
720 kill_console_processes( thread
, 0 );
721 debug_exit_thread( thread
);
722 abandon_mutexes( thread
);
723 remove_process_thread( thread
->process
, thread
);
724 wake_up( &thread
->obj
, 0 );
725 detach_thread( thread
, violent_death
? SIGTERM
: 0 );
726 if (thread
->request_fd
== thread
->obj
.fd
) thread
->request_fd
= -1;
727 if (thread
->reply_fd
== thread
->obj
.fd
) thread
->reply_fd
= -1;
728 remove_select_user( &thread
->obj
);
729 cleanup_thread( thread
);
730 release_object( thread
);
733 /* take a snapshot of currently running threads */
734 struct thread_snapshot
*thread_snap( int *count
)
736 struct thread_snapshot
*snapshot
, *ptr
;
737 struct thread
*thread
;
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
;
744 for (thread
= first_thread
; thread
; thread
= thread
->next
)
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
);
757 /* signal that we are finished booting on the client side */
758 DECL_HANDLER(boot_done
)
760 debug_level
= max( debug_level
, req
->debug_level
);
761 if (current
== booting_thread
)
763 booting_thread
= (struct thread
*)~0UL; /* make sure it doesn't match other threads */
764 lock_master_socket(0); /* allow other clients now */
768 /* create a new thread */
769 DECL_HANDLER(new_thread
)
771 struct thread
*thread
;
772 int request_fd
= thread_get_inflight_fd( current
, req
->request_fd
);
774 if (request_fd
== -1 || fcntl( request_fd
, F_SETFL
, O_NONBLOCK
) == -1)
776 if (request_fd
!= -1) close( request_fd
);
777 set_error( STATUS_INVALID_HANDLE
);
781 if ((thread
= create_thread( request_fd
, current
->process
)))
783 if (req
->suspend
) thread
->suspend
++;
785 if ((reply
->handle
= alloc_handle( current
->process
, thread
,
786 THREAD_ALL_ACCESS
, req
->inherit
)))
788 /* thread object will be released when the thread gets killed */
791 kill_thread( thread
, 1 );
796 /* initialize a new thread */
797 DECL_HANDLER(init_thread
)
799 int reply_fd
= thread_get_inflight_fd( current
, req
->reply_fd
);
800 int wait_fd
= thread_get_inflight_fd( current
, req
->wait_fd
);
802 if (current
->unix_pid
)
804 fatal_protocol_error( current
, "init_thread: already running\n" );
807 if (reply_fd
== -1 || fcntl( reply_fd
, F_SETFL
, O_NONBLOCK
) == -1)
809 fatal_protocol_error( current
, "bad reply fd\n" );
814 fatal_protocol_error( current
, "bad wait fd\n" );
818 current
->unix_pid
= req
->unix_pid
;
819 current
->teb
= req
->teb
;
820 current
->reply_fd
= reply_fd
;
821 current
->wait_fd
= wait_fd
;
823 if (current
->suspend
+ current
->process
->suspend
> 0) stop_thread( current
);
824 if (current
->process
->running_threads
> 1)
825 generate_debug_event( current
, CREATE_THREAD_DEBUG_EVENT
, req
->entry
);
827 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
;
834 if (reply_fd
!= -1) close( reply_fd
);
835 if (wait_fd
!= -1) close( wait_fd
);
838 /* terminate a thread */
839 DECL_HANDLER(terminate_thread
)
841 struct thread
*thread
;
845 if ((thread
= get_thread_from_handle( req
->handle
, THREAD_TERMINATE
)))
847 thread
->exit_code
= req
->exit_code
;
848 if (thread
!= current
) kill_thread( thread
, 1 );
852 reply
->last
= (thread
->process
->running_threads
== 1);
854 release_object( thread
);
858 /* open a handle to a thread */
859 DECL_HANDLER(open_thread
)
861 struct thread
*thread
= get_thread_from_id( req
->tid
);
866 reply
->handle
= alloc_handle( current
->process
, thread
, req
->access
, req
->inherit
);
867 release_object( thread
);
871 /* fetch information about a thread */
872 DECL_HANDLER(get_thread_info
)
874 struct thread
*thread
;
875 obj_handle_t handle
= req
->handle
;
877 if (!handle
) thread
= get_thread_from_id( req
->tid_in
);
878 else thread
= get_thread_from_handle( req
->handle
, THREAD_QUERY_INFORMATION
);
882 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
;
886 release_object( thread
);
890 /* set information about a thread */
891 DECL_HANDLER(set_thread_info
)
893 struct thread
*thread
;
895 if ((thread
= get_thread_from_handle( req
->handle
, THREAD_SET_INFORMATION
)))
897 set_thread_info( thread
, req
);
898 release_object( thread
);
902 /* suspend a thread */
903 DECL_HANDLER(suspend_thread
)
905 struct thread
*thread
;
907 if ((thread
= get_thread_from_handle( req
->handle
, THREAD_SUSPEND_RESUME
)))
909 if (thread
->state
== TERMINATED
) set_error( STATUS_ACCESS_DENIED
);
910 else reply
->count
= suspend_thread( thread
, 1 );
911 release_object( thread
);
915 /* resume a thread */
916 DECL_HANDLER(resume_thread
)
918 struct thread
*thread
;
920 if ((thread
= get_thread_from_handle( req
->handle
, THREAD_SUSPEND_RESUME
)))
922 if (thread
->state
== TERMINATED
) set_error( STATUS_ACCESS_DENIED
);
923 else reply
->count
= resume_thread( thread
);
924 release_object( thread
);
928 /* select on a handle list */
931 int count
= get_req_data_size() / sizeof(int);
932 select_on( count
, req
->cookie
, get_req_data(), req
->flags
, req
->sec
, req
->usec
);
935 /* queue an APC for a thread */
936 DECL_HANDLER(queue_apc
)
938 struct thread
*thread
;
939 if ((thread
= get_thread_from_handle( req
->handle
, THREAD_SET_CONTEXT
)))
941 thread_queue_apc( thread
, NULL
, req
->func
, APC_USER
, !req
->user
, 1, req
->param
);
942 release_object( thread
);
946 /* get next APC to call */
947 DECL_HANDLER(get_apc
)
949 struct thread_apc
*apc
;
954 if (!(apc
= thread_dequeue_apc( current
, !req
->alertable
)))
958 reply
->type
= APC_NONE
;
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.
963 * Exception: for APC_ASYNC_IO, func == NULL is legal.
965 if (apc
->func
|| apc
->type
== APC_ASYNC_IO
) break;
968 size
= apc
->nb_args
* sizeof(apc
->args
[0]);
969 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
);
976 /* fetch a selector entry for a thread */
977 DECL_HANDLER(get_selector_entry
)
979 struct thread
*thread
;
980 if ((thread
= get_thread_from_handle( req
->handle
, THREAD_QUERY_INFORMATION
)))
982 get_selector_entry( thread
, req
->entry
, &reply
->base
, &reply
->limit
, &reply
->flags
);
983 release_object( thread
);