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