Commit | Line | Data |
---|---|---|
da59e081 | 1 | /* Interface GDB to the GNU Hurd. |
9b254dd1 | 2 | Copyright (C) 1992, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2006, 2007, |
4c38e0a4 | 3 | 2008, 2009, 2010 Free Software Foundation, Inc. |
c906108c SS |
4 | |
5 | This file is part of GDB. | |
6 | ||
7 | Written by Miles Bader <miles@gnu.ai.mit.edu> | |
8 | ||
9 | Some code and ideas from m3-nat.c by Jukka Virtanen <jtv@hut.fi> | |
10 | ||
11 | This program is free software; you can redistribute it and/or modify | |
12 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 13 | the Free Software Foundation; either version 3 of the License, or |
c906108c SS |
14 | (at your option) any later version. |
15 | ||
16 | This program is distributed in the hope that it will be useful, | |
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 | GNU General Public License for more details. | |
20 | ||
21 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 22 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
c5aa993b | 23 | */ |
c906108c | 24 | |
2747183e | 25 | #include <ctype.h> |
942fd805 | 26 | #include <errno.h> |
c906108c | 27 | #include <limits.h> |
942fd805 MK |
28 | #include <setjmp.h> |
29 | #include <signal.h> | |
30 | #include <stdio.h> | |
aef21287 | 31 | #include "gdb_string.h" |
c906108c SS |
32 | #include <sys/ptrace.h> |
33 | ||
c906108c | 34 | #include <mach.h> |
c906108c SS |
35 | #include <mach_error.h> |
36 | #include <mach/exception.h> | |
942fd805 MK |
37 | #include <mach/message.h> |
38 | #include <mach/notify.h> | |
c906108c SS |
39 | #include <mach/vm_attributes.h> |
40 | ||
942fd805 MK |
41 | #include <hurd.h> |
42 | #include <hurd/interrupt.h> | |
c906108c SS |
43 | #include <hurd/msg.h> |
44 | #include <hurd/msg_request.h> | |
942fd805 | 45 | #include <hurd/process.h> |
96ffcb62 AS |
46 | /* Defined in <hurd/process.h>, but we need forward declarations from |
47 | <hurd/process_request.h> as well. */ | |
48 | #undef _process_user_ | |
942fd805 | 49 | #include <hurd/process_request.h> |
c906108c | 50 | #include <hurd/signal.h> |
c906108c SS |
51 | #include <hurd/sigpreempt.h> |
52 | ||
53 | #include <portinfo.h> | |
54 | ||
55 | #include "defs.h" | |
56 | #include "inferior.h" | |
57 | #include "symtab.h" | |
58 | #include "value.h" | |
59 | #include "language.h" | |
60 | #include "target.h" | |
03f2053f | 61 | #include "gdb_wait.h" |
c906108c SS |
62 | #include "gdbcmd.h" |
63 | #include "gdbcore.h" | |
942fd805 | 64 | #include "gdbthread.h" |
bf62e5b4 | 65 | #include "gdb_assert.h" |
3b3e6bee | 66 | #include "gdb_obstack.h" |
c906108c SS |
67 | |
68 | #include "gnu-nat.h" | |
b4d1e8c7 | 69 | #include "inf-child.h" |
c906108c SS |
70 | |
71 | #include "exc_request_S.h" | |
72 | #include "notify_S.h" | |
73 | #include "process_reply_S.h" | |
74 | #include "msg_reply_S.h" | |
75 | #include "exc_request_U.h" | |
76 | #include "msg_U.h" | |
77 | ||
78 | static process_t proc_server = MACH_PORT_NULL; | |
79 | ||
80 | /* If we've sent a proc_wait_request to the proc server, the pid of the | |
81 | process we asked about. We can only ever have one outstanding. */ | |
82 | int proc_wait_pid = 0; | |
83 | ||
84 | /* The number of wait requests we've sent, and expect replies from. */ | |
85 | int proc_waits_pending = 0; | |
86 | ||
87 | int gnu_debug_flag = 0; | |
88 | ||
89 | /* Forward decls */ | |
90 | ||
c906108c SS |
91 | struct inf *make_inf (); |
92 | void inf_clear_wait (struct inf *inf); | |
93 | void inf_cleanup (struct inf *inf); | |
94 | void inf_startup (struct inf *inf, int pid); | |
95 | int inf_update_suspends (struct inf *inf); | |
96 | void inf_set_pid (struct inf *inf, pid_t pid); | |
97 | void inf_validate_procs (struct inf *inf); | |
98 | void inf_steal_exc_ports (struct inf *inf); | |
99 | void inf_restore_exc_ports (struct inf *inf); | |
100 | struct proc *inf_tid_to_proc (struct inf *inf, int tid); | |
39efb398 AC |
101 | void inf_set_threads_resume_sc (struct inf *inf, |
102 | struct proc *run_thread, | |
103 | int run_others); | |
104 | int inf_set_threads_resume_sc_for_signal_thread (struct inf *inf); | |
105 | void inf_suspend (struct inf *inf); | |
106 | void inf_resume (struct inf *inf); | |
c906108c SS |
107 | void inf_set_step_thread (struct inf *inf, struct proc *proc); |
108 | void inf_detach (struct inf *inf); | |
109 | void inf_attach (struct inf *inf, int pid); | |
110 | void inf_signal (struct inf *inf, enum target_signal sig); | |
cce74817 | 111 | void inf_continue (struct inf *inf); |
c906108c SS |
112 | |
113 | #define inf_debug(_inf, msg, args...) \ | |
114 | do { struct inf *__inf = (_inf); \ | |
a74ce742 PM |
115 | debug ("{inf %d %s}: " msg, __inf->pid, \ |
116 | host_address_to_string (__inf) , ##args); } while (0) | |
c906108c SS |
117 | |
118 | void proc_abort (struct proc *proc, int force); | |
c906108c SS |
119 | struct proc *make_proc (struct inf *inf, mach_port_t port, int tid); |
120 | struct proc *_proc_free (struct proc *proc); | |
121 | int proc_update_sc (struct proc *proc); | |
c5aa993b | 122 | error_t proc_get_exception_port (struct proc *proc, mach_port_t * port); |
c906108c SS |
123 | error_t proc_set_exception_port (struct proc *proc, mach_port_t port); |
124 | static mach_port_t _proc_get_exc_port (struct proc *proc); | |
125 | void proc_steal_exc_port (struct proc *proc, mach_port_t exc_port); | |
126 | void proc_restore_exc_port (struct proc *proc); | |
127 | int proc_trace (struct proc *proc, int set); | |
c906108c SS |
128 | |
129 | /* Evaluate RPC_EXPR in a scope with the variables MSGPORT and REFPORT bound | |
130 | to INF's msg port and task port respectively. If it has no msg port, | |
131 | EIEIO is returned. INF must refer to a running process! */ | |
132 | #define INF_MSGPORT_RPC(inf, rpc_expr) \ | |
133 | HURD_MSGPORT_RPC (proc_getmsgport (proc_server, inf->pid, &msgport), \ | |
134 | (refport = inf->task->port, 0), 0, \ | |
135 | msgport ? (rpc_expr) : EIEIO) | |
136 | ||
137 | /* Like INF_MSGPORT_RPC, but will also resume the signal thread to ensure | |
138 | there's someone around to deal with the RPC (and resuspend things | |
139 | afterwards). This effects INF's threads' resume_sc count. */ | |
140 | #define INF_RESUME_MSGPORT_RPC(inf, rpc_expr) \ | |
141 | (inf_set_threads_resume_sc_for_signal_thread (inf) \ | |
142 | ? ({ error_t __e; \ | |
143 | inf_resume (inf); \ | |
144 | __e = INF_MSGPORT_RPC (inf, rpc_expr); \ | |
145 | inf_suspend (inf); \ | |
146 | __e; }) \ | |
147 | : EIEIO) | |
148 | ||
c906108c SS |
149 | \f |
150 | /* The state passed by an exception message. */ | |
151 | struct exc_state | |
c5aa993b JM |
152 | { |
153 | int exception; /* The exception code */ | |
154 | int code, subcode; | |
155 | mach_port_t handler; /* The real exception port to handle this. */ | |
156 | mach_port_t reply; /* The reply port from the exception call. */ | |
157 | }; | |
c906108c SS |
158 | |
159 | /* The results of the last wait an inf did. */ | |
160 | struct inf_wait | |
c5aa993b JM |
161 | { |
162 | struct target_waitstatus status; /* The status returned to gdb. */ | |
163 | struct exc_state exc; /* The exception that caused us to return. */ | |
164 | struct proc *thread; /* The thread in question. */ | |
165 | int suppress; /* Something trivial happened. */ | |
166 | }; | |
c906108c SS |
167 | |
168 | /* The state of an inferior. */ | |
169 | struct inf | |
c5aa993b JM |
170 | { |
171 | /* Fields describing the current inferior. */ | |
c906108c | 172 | |
c5aa993b JM |
173 | struct proc *task; /* The mach task. */ |
174 | struct proc *threads; /* A linked list of all threads in TASK. */ | |
c906108c | 175 | |
c5aa993b JM |
176 | /* True if THREADS needn't be validated by querying the task. We assume that |
177 | we and the task in question are the only ones frobbing the thread list, | |
178 | so as long as we don't let any code run, we don't have to worry about | |
179 | THREADS changing. */ | |
180 | int threads_up_to_date; | |
c906108c | 181 | |
c5aa993b | 182 | pid_t pid; /* The real system PID. */ |
c906108c | 183 | |
c5aa993b | 184 | struct inf_wait wait; /* What to return from target_wait. */ |
c906108c | 185 | |
c5aa993b JM |
186 | /* One thread proc in INF may be in `single-stepping mode'. This is it. */ |
187 | struct proc *step_thread; | |
c906108c | 188 | |
c5aa993b JM |
189 | /* The thread we think is the signal thread. */ |
190 | struct proc *signal_thread; | |
c906108c | 191 | |
c5aa993b | 192 | mach_port_t event_port; /* Where we receive various msgs. */ |
c906108c | 193 | |
c5aa993b JM |
194 | /* True if we think at least one thread in the inferior could currently be |
195 | running. */ | |
196 | unsigned int running:1; | |
c906108c | 197 | |
c5aa993b JM |
198 | /* True if the process has stopped (in the proc server sense). Note that |
199 | since a proc server `stop' leaves the signal thread running, the inf can | |
200 | be RUNNING && STOPPED... */ | |
201 | unsigned int stopped:1; | |
cce74817 | 202 | |
c5aa993b JM |
203 | /* True if the inferior has no message port. */ |
204 | unsigned int nomsg:1; | |
c906108c | 205 | |
c5aa993b JM |
206 | /* True if the inferior is traced. */ |
207 | unsigned int traced:1; | |
c906108c | 208 | |
c5aa993b JM |
209 | /* True if we shouldn't try waiting for the inferior, usually because we |
210 | can't for some reason. */ | |
211 | unsigned int no_wait:1; | |
c906108c | 212 | |
c5aa993b JM |
213 | /* When starting a new inferior, we don't try to validate threads until all |
214 | the proper execs have been done. This is a count of how many execs we | |
215 | expect to happen. */ | |
216 | unsigned pending_execs; | |
c906108c | 217 | |
c5aa993b | 218 | /* Fields describing global state */ |
c906108c | 219 | |
c5aa993b JM |
220 | /* The task suspend count used when gdb has control. This is normally 1 to |
221 | make things easier for us, but sometimes (like when attaching to vital | |
222 | system servers) it may be desirable to let the task continue to run | |
223 | (pausing individual threads as necessary). */ | |
224 | int pause_sc; | |
c906108c | 225 | |
c5aa993b JM |
226 | /* The task suspend count left when detaching from a task. */ |
227 | int detach_sc; | |
c906108c | 228 | |
c5aa993b JM |
229 | /* The initial values used for the run_sc and pause_sc of newly discovered |
230 | threads -- see the definition of those fields in struct proc. */ | |
231 | int default_thread_run_sc; | |
232 | int default_thread_pause_sc; | |
233 | int default_thread_detach_sc; | |
c906108c | 234 | |
c5aa993b JM |
235 | /* True if the process should be traced when started/attached. Newly |
236 | started processes *must* be traced at first to exec them properly, but | |
237 | if this is false, tracing is turned off as soon it has done so. */ | |
238 | int want_signals; | |
c906108c | 239 | |
c5aa993b JM |
240 | /* True if exceptions from the inferior process should be trapped. This |
241 | must be on to use breakpoints. */ | |
242 | int want_exceptions; | |
243 | }; | |
c906108c SS |
244 | |
245 | ||
c5aa993b JM |
246 | int |
247 | __proc_pid (struct proc *proc) | |
c906108c SS |
248 | { |
249 | return proc->inf->pid; | |
250 | } | |
942fd805 | 251 | |
c906108c SS |
252 | \f |
253 | /* Update PROC's real suspend count to match it's desired one. Returns true | |
254 | if we think PROC is now in a runnable state. */ | |
255 | int | |
256 | proc_update_sc (struct proc *proc) | |
257 | { | |
258 | int running; | |
c5aa993b | 259 | int err = 0; |
c906108c SS |
260 | int delta = proc->sc - proc->cur_sc; |
261 | ||
262 | if (delta) | |
263 | proc_debug (proc, "sc: %d --> %d", proc->cur_sc, proc->sc); | |
264 | ||
265 | if (proc->sc == 0 && proc->state_changed) | |
266 | /* Since PROC may start running, we must write back any state changes. */ | |
267 | { | |
bf62e5b4 | 268 | gdb_assert (proc_is_thread (proc)); |
c906108c SS |
269 | proc_debug (proc, "storing back changed thread state"); |
270 | err = thread_set_state (proc->port, THREAD_STATE_FLAVOR, | |
f75c77fc | 271 | (thread_state_t) &proc->state, THREAD_STATE_SIZE); |
c5aa993b | 272 | if (!err) |
c906108c SS |
273 | proc->state_changed = 0; |
274 | } | |
275 | ||
276 | if (delta > 0) | |
942fd805 MK |
277 | { |
278 | while (delta-- > 0 && !err) | |
279 | { | |
280 | if (proc_is_task (proc)) | |
281 | err = task_suspend (proc->port); | |
282 | else | |
283 | err = thread_suspend (proc->port); | |
284 | } | |
285 | } | |
c906108c | 286 | else |
942fd805 MK |
287 | { |
288 | while (delta++ < 0 && !err) | |
289 | { | |
290 | if (proc_is_task (proc)) | |
291 | err = task_resume (proc->port); | |
292 | else | |
293 | err = thread_resume (proc->port); | |
294 | } | |
295 | } | |
c5aa993b | 296 | if (!err) |
c906108c SS |
297 | proc->cur_sc = proc->sc; |
298 | ||
299 | /* If we got an error, then the task/thread has disappeared. */ | |
300 | running = !err && proc->sc == 0; | |
301 | ||
302 | proc_debug (proc, "is %s", err ? "dead" : running ? "running" : "suspended"); | |
303 | if (err) | |
dc672865 | 304 | proc_debug (proc, "err = %s", safe_strerror (err)); |
c906108c SS |
305 | |
306 | if (running) | |
307 | { | |
308 | proc->aborted = 0; | |
309 | proc->state_valid = proc->state_changed = 0; | |
310 | proc->fetched_regs = 0; | |
311 | } | |
312 | ||
313 | return running; | |
314 | } | |
942fd805 | 315 | |
c906108c SS |
316 | \f |
317 | /* Thread_abort is called on PROC if needed. PROC must be a thread proc. | |
318 | If PROC is deemed `precious', then nothing is done unless FORCE is true. | |
319 | In particular, a thread is precious if it's running (in which case forcing | |
320 | it includes suspending it first), or if it has an exception pending. */ | |
321 | void | |
322 | proc_abort (struct proc *proc, int force) | |
323 | { | |
bf62e5b4 | 324 | gdb_assert (proc_is_thread (proc)); |
c906108c | 325 | |
c5aa993b | 326 | if (!proc->aborted) |
c906108c SS |
327 | { |
328 | struct inf *inf = proc->inf; | |
329 | int running = (proc->cur_sc == 0 && inf->task->cur_sc == 0); | |
330 | ||
331 | if (running && force) | |
332 | { | |
333 | proc->sc = 1; | |
334 | inf_update_suspends (proc->inf); | |
335 | running = 0; | |
8a3fe4f8 | 336 | warning (_("Stopped %s."), proc_string (proc)); |
c906108c SS |
337 | } |
338 | else if (proc == inf->wait.thread && inf->wait.exc.reply && !force) | |
339 | /* An exception is pending on PROC, which don't mess with. */ | |
340 | running = 1; | |
341 | ||
c5aa993b | 342 | if (!running) |
c906108c SS |
343 | /* We only abort the thread if it's not actually running. */ |
344 | { | |
345 | thread_abort (proc->port); | |
346 | proc_debug (proc, "aborted"); | |
347 | proc->aborted = 1; | |
348 | } | |
349 | else | |
350 | proc_debug (proc, "not aborting"); | |
351 | } | |
352 | } | |
353 | ||
354 | /* Make sure that the state field in PROC is up to date, and return a pointer | |
355 | to it, or 0 if something is wrong. If WILL_MODIFY is true, makes sure | |
356 | that the thread is stopped and aborted first, and sets the state_changed | |
357 | field in PROC to true. */ | |
358 | thread_state_t | |
359 | proc_get_state (struct proc *proc, int will_modify) | |
360 | { | |
361 | int was_aborted = proc->aborted; | |
362 | ||
363 | proc_debug (proc, "updating state info%s", | |
364 | will_modify ? " (with intention to modify)" : ""); | |
365 | ||
366 | proc_abort (proc, will_modify); | |
367 | ||
c5aa993b | 368 | if (!was_aborted && proc->aborted) |
c906108c SS |
369 | /* PROC's state may have changed since we last fetched it. */ |
370 | proc->state_valid = 0; | |
371 | ||
c5aa993b | 372 | if (!proc->state_valid) |
c906108c SS |
373 | { |
374 | mach_msg_type_number_t state_size = THREAD_STATE_SIZE; | |
375 | error_t err = | |
d8734c88 MS |
376 | thread_get_state (proc->port, THREAD_STATE_FLAVOR, |
377 | (thread_state_t) &proc->state, &state_size); | |
378 | ||
c906108c SS |
379 | proc_debug (proc, "getting thread state"); |
380 | proc->state_valid = !err; | |
381 | } | |
382 | ||
383 | if (proc->state_valid) | |
384 | { | |
385 | if (will_modify) | |
386 | proc->state_changed = 1; | |
f75c77fc | 387 | return (thread_state_t) &proc->state; |
c906108c SS |
388 | } |
389 | else | |
390 | return 0; | |
391 | } | |
942fd805 | 392 | |
c906108c SS |
393 | \f |
394 | /* Set PORT to PROC's exception port. */ | |
395 | error_t | |
c5aa993b | 396 | proc_get_exception_port (struct proc * proc, mach_port_t * port) |
c906108c SS |
397 | { |
398 | if (proc_is_task (proc)) | |
399 | return task_get_exception_port (proc->port, port); | |
400 | else | |
401 | return thread_get_exception_port (proc->port, port); | |
402 | } | |
403 | ||
404 | /* Set PROC's exception port to PORT. */ | |
405 | error_t | |
c5aa993b | 406 | proc_set_exception_port (struct proc * proc, mach_port_t port) |
c906108c SS |
407 | { |
408 | proc_debug (proc, "setting exception port: %d", port); | |
409 | if (proc_is_task (proc)) | |
410 | return task_set_exception_port (proc->port, port); | |
411 | else | |
412 | return thread_set_exception_port (proc->port, port); | |
413 | } | |
414 | ||
415 | /* Get PROC's exception port, cleaning up a bit if proc has died. */ | |
416 | static mach_port_t | |
417 | _proc_get_exc_port (struct proc *proc) | |
418 | { | |
419 | mach_port_t exc_port; | |
420 | error_t err = proc_get_exception_port (proc, &exc_port); | |
421 | ||
422 | if (err) | |
423 | /* PROC must be dead. */ | |
424 | { | |
425 | if (proc->exc_port) | |
426 | mach_port_deallocate (mach_task_self (), proc->exc_port); | |
427 | proc->exc_port = MACH_PORT_NULL; | |
428 | if (proc->saved_exc_port) | |
429 | mach_port_deallocate (mach_task_self (), proc->saved_exc_port); | |
430 | proc->saved_exc_port = MACH_PORT_NULL; | |
431 | } | |
432 | ||
433 | return exc_port; | |
434 | } | |
435 | ||
436 | /* Replace PROC's exception port with EXC_PORT, unless it's already been | |
437 | done. Stash away any existing exception port so we can restore it later. */ | |
438 | void | |
439 | proc_steal_exc_port (struct proc *proc, mach_port_t exc_port) | |
440 | { | |
441 | mach_port_t cur_exc_port = _proc_get_exc_port (proc); | |
442 | ||
443 | if (cur_exc_port) | |
444 | { | |
942fd805 | 445 | error_t err = 0; |
c906108c SS |
446 | |
447 | proc_debug (proc, "inserting exception port: %d", exc_port); | |
448 | ||
449 | if (cur_exc_port != exc_port) | |
450 | /* Put in our exception port. */ | |
451 | err = proc_set_exception_port (proc, exc_port); | |
452 | ||
453 | if (err || cur_exc_port == proc->exc_port) | |
454 | /* We previously set the exception port, and it's still set. So we | |
455 | just keep the old saved port which is what the proc set. */ | |
456 | { | |
457 | if (cur_exc_port) | |
458 | mach_port_deallocate (mach_task_self (), cur_exc_port); | |
459 | } | |
460 | else | |
461 | /* Keep a copy of PROC's old exception port so it can be restored. */ | |
462 | { | |
463 | if (proc->saved_exc_port) | |
464 | mach_port_deallocate (mach_task_self (), proc->saved_exc_port); | |
465 | proc->saved_exc_port = cur_exc_port; | |
466 | } | |
467 | ||
468 | proc_debug (proc, "saved exception port: %d", proc->saved_exc_port); | |
469 | ||
470 | if (!err) | |
471 | proc->exc_port = exc_port; | |
472 | else | |
8a3fe4f8 | 473 | warning (_("Error setting exception port for %s: %s"), |
dc672865 | 474 | proc_string (proc), safe_strerror (err)); |
c906108c SS |
475 | } |
476 | } | |
477 | ||
478 | /* If we previously replaced PROC's exception port, put back what we | |
479 | found there at the time, unless *our* exception port has since been | |
480 | overwritten, in which case who knows what's going on. */ | |
481 | void | |
482 | proc_restore_exc_port (struct proc *proc) | |
483 | { | |
484 | mach_port_t cur_exc_port = _proc_get_exc_port (proc); | |
485 | ||
486 | if (cur_exc_port) | |
487 | { | |
488 | error_t err = 0; | |
489 | ||
490 | proc_debug (proc, "restoring real exception port"); | |
491 | ||
492 | if (proc->exc_port == cur_exc_port) | |
493 | /* Our's is still there. */ | |
494 | err = proc_set_exception_port (proc, proc->saved_exc_port); | |
495 | ||
496 | if (proc->saved_exc_port) | |
497 | mach_port_deallocate (mach_task_self (), proc->saved_exc_port); | |
498 | proc->saved_exc_port = MACH_PORT_NULL; | |
499 | ||
500 | if (!err) | |
501 | proc->exc_port = MACH_PORT_NULL; | |
502 | else | |
8a3fe4f8 | 503 | warning (_("Error setting exception port for %s: %s"), |
dc672865 | 504 | proc_string (proc), safe_strerror (err)); |
c906108c SS |
505 | } |
506 | } | |
942fd805 | 507 | |
c906108c SS |
508 | \f |
509 | /* Turns hardware tracing in PROC on or off when SET is true or false, | |
510 | respectively. Returns true on success. */ | |
511 | int | |
512 | proc_trace (struct proc *proc, int set) | |
513 | { | |
514 | thread_state_t state = proc_get_state (proc, 1); | |
515 | ||
c5aa993b | 516 | if (!state) |
c906108c SS |
517 | return 0; /* the thread must be dead. */ |
518 | ||
519 | proc_debug (proc, "tracing %s", set ? "on" : "off"); | |
c5aa993b | 520 | |
c906108c SS |
521 | if (set) |
522 | { | |
523 | /* XXX We don't get the exception unless the thread has its own | |
c5aa993b | 524 | exception port???? */ |
c906108c SS |
525 | if (proc->exc_port == MACH_PORT_NULL) |
526 | proc_steal_exc_port (proc, proc->inf->event_port); | |
527 | THREAD_STATE_SET_TRACED (state); | |
528 | } | |
529 | else | |
530 | THREAD_STATE_CLEAR_TRACED (state); | |
531 | ||
532 | return 1; | |
533 | } | |
942fd805 | 534 | |
c906108c SS |
535 | \f |
536 | /* A variable from which to assign new TIDs. */ | |
537 | static int next_thread_id = 1; | |
538 | ||
539 | /* Returns a new proc structure with the given fields. Also adds a | |
540 | notification for PORT becoming dead to be sent to INF's notify port. */ | |
541 | struct proc * | |
542 | make_proc (struct inf *inf, mach_port_t port, int tid) | |
543 | { | |
544 | error_t err; | |
545 | mach_port_t prev_port = MACH_PORT_NULL; | |
3c37485b | 546 | struct proc *proc = xmalloc (sizeof (struct proc)); |
c906108c SS |
547 | |
548 | proc->port = port; | |
549 | proc->tid = tid; | |
550 | proc->inf = inf; | |
551 | proc->next = 0; | |
552 | proc->saved_exc_port = MACH_PORT_NULL; | |
553 | proc->exc_port = MACH_PORT_NULL; | |
554 | ||
555 | proc->sc = 0; | |
556 | proc->cur_sc = 0; | |
557 | ||
558 | /* Note that these are all the values for threads; the task simply uses the | |
559 | corresponding field in INF directly. */ | |
560 | proc->run_sc = inf->default_thread_run_sc; | |
561 | proc->pause_sc = inf->default_thread_pause_sc; | |
562 | proc->detach_sc = inf->default_thread_detach_sc; | |
563 | proc->resume_sc = proc->run_sc; | |
564 | ||
565 | proc->aborted = 0; | |
566 | proc->dead = 0; | |
567 | proc->state_valid = 0; | |
568 | proc->state_changed = 0; | |
569 | ||
570 | proc_debug (proc, "is new"); | |
571 | ||
572 | /* Get notified when things die. */ | |
573 | err = | |
c5aa993b | 574 | mach_port_request_notification (mach_task_self (), port, |
c906108c SS |
575 | MACH_NOTIFY_DEAD_NAME, 1, |
576 | inf->event_port, | |
577 | MACH_MSG_TYPE_MAKE_SEND_ONCE, | |
578 | &prev_port); | |
579 | if (err) | |
8a3fe4f8 | 580 | warning (_("Couldn't request notification for port %d: %s"), |
dc672865 | 581 | port, safe_strerror (err)); |
c906108c SS |
582 | else |
583 | { | |
584 | proc_debug (proc, "notifications to: %d", inf->event_port); | |
585 | if (prev_port != MACH_PORT_NULL) | |
586 | mach_port_deallocate (mach_task_self (), prev_port); | |
587 | } | |
588 | ||
589 | if (inf->want_exceptions) | |
942fd805 MK |
590 | { |
591 | if (proc_is_task (proc)) | |
592 | /* Make the task exception port point to us. */ | |
593 | proc_steal_exc_port (proc, inf->event_port); | |
594 | else | |
595 | /* Just clear thread exception ports -- they default to the | |
596 | task one. */ | |
597 | proc_steal_exc_port (proc, MACH_PORT_NULL); | |
598 | } | |
c906108c SS |
599 | |
600 | return proc; | |
601 | } | |
602 | ||
603 | /* Frees PROC and any resources it uses, and returns the value of PROC's | |
604 | next field. */ | |
605 | struct proc * | |
606 | _proc_free (struct proc *proc) | |
607 | { | |
608 | struct inf *inf = proc->inf; | |
609 | struct proc *next = proc->next; | |
610 | ||
611 | proc_debug (proc, "freeing..."); | |
612 | ||
613 | if (proc == inf->step_thread) | |
614 | /* Turn off single stepping. */ | |
615 | inf_set_step_thread (inf, 0); | |
616 | if (proc == inf->wait.thread) | |
617 | inf_clear_wait (inf); | |
618 | if (proc == inf->signal_thread) | |
619 | inf->signal_thread = 0; | |
620 | ||
621 | if (proc->port != MACH_PORT_NULL) | |
622 | { | |
623 | if (proc->exc_port != MACH_PORT_NULL) | |
624 | /* Restore the original exception port. */ | |
625 | proc_restore_exc_port (proc); | |
626 | if (proc->cur_sc != 0) | |
627 | /* Resume the thread/task. */ | |
628 | { | |
629 | proc->sc = 0; | |
630 | proc_update_sc (proc); | |
631 | } | |
632 | mach_port_deallocate (mach_task_self (), proc->port); | |
633 | } | |
634 | ||
b8c9b27d | 635 | xfree (proc); |
c906108c SS |
636 | return next; |
637 | } | |
942fd805 | 638 | |
c906108c | 639 | \f |
c5aa993b | 640 | struct inf * |
fba45db2 | 641 | make_inf (void) |
c906108c | 642 | { |
3c37485b | 643 | struct inf *inf = xmalloc (sizeof (struct inf)); |
c906108c SS |
644 | |
645 | inf->task = 0; | |
646 | inf->threads = 0; | |
647 | inf->threads_up_to_date = 0; | |
648 | inf->pid = 0; | |
649 | inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS; | |
650 | inf->wait.thread = 0; | |
651 | inf->wait.exc.handler = MACH_PORT_NULL; | |
652 | inf->wait.exc.reply = MACH_PORT_NULL; | |
653 | inf->step_thread = 0; | |
654 | inf->signal_thread = 0; | |
655 | inf->event_port = MACH_PORT_NULL; | |
c906108c | 656 | inf->running = 0; |
cce74817 JM |
657 | inf->stopped = 0; |
658 | inf->nomsg = 1; | |
c906108c SS |
659 | inf->traced = 0; |
660 | inf->no_wait = 0; | |
661 | inf->pending_execs = 0; | |
662 | inf->pause_sc = 1; | |
663 | inf->detach_sc = 0; | |
664 | inf->default_thread_run_sc = 0; | |
665 | inf->default_thread_pause_sc = 0; | |
666 | inf->default_thread_detach_sc = 0; | |
667 | inf->want_signals = 1; /* By default */ | |
668 | inf->want_exceptions = 1; /* By default */ | |
669 | ||
670 | return inf; | |
671 | } | |
672 | ||
942fd805 | 673 | /* Clear INF's target wait status. */ |
c906108c SS |
674 | void |
675 | inf_clear_wait (struct inf *inf) | |
676 | { | |
677 | inf_debug (inf, "clearing wait"); | |
678 | inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS; | |
679 | inf->wait.thread = 0; | |
680 | inf->wait.suppress = 0; | |
681 | if (inf->wait.exc.handler != MACH_PORT_NULL) | |
682 | { | |
683 | mach_port_deallocate (mach_task_self (), inf->wait.exc.handler); | |
684 | inf->wait.exc.handler = MACH_PORT_NULL; | |
685 | } | |
686 | if (inf->wait.exc.reply != MACH_PORT_NULL) | |
687 | { | |
688 | mach_port_deallocate (mach_task_self (), inf->wait.exc.reply); | |
689 | inf->wait.exc.reply = MACH_PORT_NULL; | |
690 | } | |
691 | } | |
942fd805 | 692 | |
c906108c SS |
693 | \f |
694 | void | |
695 | inf_cleanup (struct inf *inf) | |
696 | { | |
697 | inf_debug (inf, "cleanup"); | |
698 | ||
699 | inf_clear_wait (inf); | |
700 | ||
701 | inf_set_pid (inf, -1); | |
702 | inf->pid = 0; | |
cce74817 JM |
703 | inf->running = 0; |
704 | inf->stopped = 0; | |
705 | inf->nomsg = 1; | |
c906108c SS |
706 | inf->traced = 0; |
707 | inf->no_wait = 0; | |
c906108c SS |
708 | inf->pending_execs = 0; |
709 | ||
710 | if (inf->event_port) | |
711 | { | |
712 | mach_port_destroy (mach_task_self (), inf->event_port); | |
713 | inf->event_port = MACH_PORT_NULL; | |
714 | } | |
715 | } | |
716 | ||
717 | void | |
718 | inf_startup (struct inf *inf, int pid) | |
719 | { | |
720 | error_t err; | |
721 | ||
722 | inf_debug (inf, "startup: pid = %d", pid); | |
723 | ||
724 | inf_cleanup (inf); | |
725 | ||
726 | /* Make the port on which we receive all events. */ | |
727 | err = mach_port_allocate (mach_task_self (), | |
728 | MACH_PORT_RIGHT_RECEIVE, &inf->event_port); | |
729 | if (err) | |
8a3fe4f8 | 730 | error (_("Error allocating event port: %s"), safe_strerror (err)); |
c906108c SS |
731 | |
732 | /* Make a send right for it, so we can easily copy it for other people. */ | |
733 | mach_port_insert_right (mach_task_self (), inf->event_port, | |
734 | inf->event_port, MACH_MSG_TYPE_MAKE_SEND); | |
735 | inf_set_pid (inf, pid); | |
736 | } | |
942fd805 | 737 | |
c906108c | 738 | \f |
942fd805 | 739 | /* Close current process, if any, and attach INF to process PORT. */ |
c5aa993b | 740 | void |
c906108c SS |
741 | inf_set_pid (struct inf *inf, pid_t pid) |
742 | { | |
743 | task_t task_port; | |
744 | struct proc *task = inf->task; | |
745 | ||
746 | inf_debug (inf, "setting pid: %d", pid); | |
747 | ||
748 | if (pid < 0) | |
749 | task_port = MACH_PORT_NULL; | |
750 | else | |
751 | { | |
752 | error_t err = proc_pid2task (proc_server, pid, &task_port); | |
d8734c88 | 753 | |
c906108c | 754 | if (err) |
8a3fe4f8 | 755 | error (_("Error getting task for pid %d: %s"), pid, safe_strerror (err)); |
c906108c SS |
756 | } |
757 | ||
758 | inf_debug (inf, "setting task: %d", task_port); | |
759 | ||
760 | if (inf->pause_sc) | |
761 | task_suspend (task_port); | |
762 | ||
763 | if (task && task->port != task_port) | |
764 | { | |
765 | inf->task = 0; | |
766 | inf_validate_procs (inf); /* Trash all the threads. */ | |
767 | _proc_free (task); /* And the task. */ | |
768 | } | |
769 | ||
770 | if (task_port != MACH_PORT_NULL) | |
771 | { | |
772 | inf->task = make_proc (inf, task_port, PROC_TID_TASK); | |
773 | inf->threads_up_to_date = 0; | |
774 | } | |
775 | ||
776 | if (inf->task) | |
777 | { | |
778 | inf->pid = pid; | |
779 | if (inf->pause_sc) | |
942fd805 MK |
780 | /* Reflect task_suspend above. */ |
781 | inf->task->sc = inf->task->cur_sc = 1; | |
c906108c SS |
782 | } |
783 | else | |
784 | inf->pid = -1; | |
785 | } | |
942fd805 | 786 | |
c906108c | 787 | \f |
cce74817 JM |
788 | /* Validates INF's stopped, nomsg and traced field from the actual |
789 | proc server state. Note that the traced field is only updated from | |
790 | the proc server state if we do not have a message port. If we do | |
791 | have a message port we'd better look at the tracemask itself. */ | |
c906108c | 792 | static void |
cce74817 | 793 | inf_validate_procinfo (struct inf *inf) |
c906108c SS |
794 | { |
795 | char *noise; | |
796 | mach_msg_type_number_t noise_len = 0; | |
797 | struct procinfo *pi; | |
798 | mach_msg_type_number_t pi_len = 0; | |
799 | int info_flags = 0; | |
800 | error_t err = | |
d8734c88 MS |
801 | proc_getprocinfo (proc_server, inf->pid, &info_flags, |
802 | (procinfo_t *) &pi, &pi_len, &noise, &noise_len); | |
c906108c | 803 | |
c5aa993b | 804 | if (!err) |
c906108c SS |
805 | { |
806 | inf->stopped = !!(pi->state & PI_STOPPED); | |
cce74817 JM |
807 | inf->nomsg = !!(pi->state & PI_NOMSG); |
808 | if (inf->nomsg) | |
809 | inf->traced = !!(pi->state & PI_TRACED); | |
c5aa993b | 810 | vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len); |
c906108c | 811 | if (noise_len > 0) |
c5aa993b | 812 | vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len); |
c906108c SS |
813 | } |
814 | } | |
815 | ||
f90b2b1d JK |
816 | /* Validates INF's task suspend count. If it's higher than we expect, |
817 | verify with the user before `stealing' the extra count. */ | |
c906108c SS |
818 | static void |
819 | inf_validate_task_sc (struct inf *inf) | |
820 | { | |
f90b2b1d JK |
821 | char *noise; |
822 | mach_msg_type_number_t noise_len = 0; | |
823 | struct procinfo *pi; | |
824 | mach_msg_type_number_t pi_len = 0; | |
825 | int info_flags = PI_FETCH_TASKINFO; | |
826 | int suspend_count = -1; | |
827 | error_t err; | |
c906108c | 828 | |
f90b2b1d JK |
829 | retry: |
830 | err = proc_getprocinfo (proc_server, inf->pid, &info_flags, | |
942fd805 | 831 | (procinfo_t *) &pi, &pi_len, &noise, &noise_len); |
c906108c | 832 | if (err) |
f90b2b1d JK |
833 | { |
834 | inf->task->dead = 1; /* oh well */ | |
835 | return; | |
836 | } | |
837 | ||
838 | if (inf->task->cur_sc < pi->taskinfo.suspend_count && suspend_count == -1) | |
839 | { | |
840 | /* The proc server might have suspended the task while stopping | |
841 | it. This happens when the task is handling a traced signal. | |
842 | Refetch the suspend count. The proc server should be | |
843 | finished stopping the task by now. */ | |
844 | suspend_count = pi->taskinfo.suspend_count; | |
845 | goto retry; | |
846 | } | |
847 | ||
848 | suspend_count = pi->taskinfo.suspend_count; | |
849 | ||
850 | vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len); | |
851 | if (noise_len > 0) | |
852 | vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len); | |
853 | ||
854 | if (inf->task->cur_sc < suspend_count) | |
c906108c SS |
855 | { |
856 | int abort; | |
857 | ||
858 | target_terminal_ours (); /* Allow I/O. */ | |
9e2f0ad4 HZ |
859 | abort = !query (_("Pid %d has an additional task suspend count of %d;" |
860 | " clear it? "), inf->pid, | |
f90b2b1d | 861 | suspend_count - inf->task->cur_sc); |
c5aa993b | 862 | target_terminal_inferior (); /* Give it back to the child. */ |
c906108c SS |
863 | |
864 | if (abort) | |
8a3fe4f8 | 865 | error (_("Additional task suspend count left untouched.")); |
c906108c | 866 | |
f90b2b1d | 867 | inf->task->cur_sc = suspend_count; |
c906108c SS |
868 | } |
869 | } | |
870 | ||
942fd805 MK |
871 | /* Turns tracing for INF on or off, depending on ON, unless it already |
872 | is. If INF is running, the resume_sc count of INF's threads will | |
873 | be modified, and the signal thread will briefly be run to change | |
874 | the trace state. */ | |
c906108c SS |
875 | void |
876 | inf_set_traced (struct inf *inf, int on) | |
877 | { | |
942fd805 MK |
878 | if (on == inf->traced) |
879 | return; | |
880 | ||
881 | if (inf->task && !inf->task->dead) | |
882 | /* Make it take effect immediately. */ | |
883 | { | |
884 | sigset_t mask = on ? ~(sigset_t) 0 : 0; | |
885 | error_t err = | |
c5aa993b | 886 | INF_RESUME_MSGPORT_RPC (inf, msg_set_init_int (msgport, refport, |
942fd805 | 887 | INIT_TRACEMASK, mask)); |
d8734c88 | 888 | |
942fd805 MK |
889 | if (err == EIEIO) |
890 | { | |
891 | if (on) | |
8a3fe4f8 | 892 | warning (_("Can't modify tracing state for pid %d: %s"), |
942fd805 | 893 | inf->pid, "No signal thread"); |
c906108c | 894 | inf->traced = on; |
942fd805 MK |
895 | } |
896 | else if (err) | |
8a3fe4f8 | 897 | warning (_("Can't modify tracing state for pid %d: %s"), |
dc672865 | 898 | inf->pid, safe_strerror (err)); |
942fd805 MK |
899 | else |
900 | inf->traced = on; | |
901 | } | |
902 | else | |
903 | inf->traced = on; | |
c906108c | 904 | } |
942fd805 | 905 | |
c906108c | 906 | \f |
942fd805 MK |
907 | /* Makes all the real suspend count deltas of all the procs in INF |
908 | match the desired values. Careful to always do thread/task suspend | |
909 | counts in the safe order. Returns true if at least one thread is | |
910 | thought to be running. */ | |
c906108c SS |
911 | int |
912 | inf_update_suspends (struct inf *inf) | |
913 | { | |
914 | struct proc *task = inf->task; | |
d8734c88 | 915 | |
c906108c SS |
916 | /* We don't have to update INF->threads even though we're iterating over it |
917 | because we'll change a thread only if it already has an existing proc | |
918 | entry. */ | |
c906108c SS |
919 | inf_debug (inf, "updating suspend counts"); |
920 | ||
921 | if (task) | |
922 | { | |
923 | struct proc *thread; | |
924 | int task_running = (task->sc == 0), thread_running = 0; | |
925 | ||
926 | if (task->sc > task->cur_sc) | |
927 | /* The task is becoming _more_ suspended; do before any threads. */ | |
928 | task_running = proc_update_sc (task); | |
929 | ||
930 | if (inf->pending_execs) | |
931 | /* When we're waiting for an exec, things may be happening behind our | |
932 | back, so be conservative. */ | |
933 | thread_running = 1; | |
934 | ||
935 | /* Do all the thread suspend counts. */ | |
936 | for (thread = inf->threads; thread; thread = thread->next) | |
937 | thread_running |= proc_update_sc (thread); | |
938 | ||
939 | if (task->sc != task->cur_sc) | |
940 | /* We didn't do the task first, because we wanted to wait for the | |
941 | threads; do it now. */ | |
942 | task_running = proc_update_sc (task); | |
943 | ||
944 | inf_debug (inf, "%srunning...", | |
945 | (thread_running && task_running) ? "" : "not "); | |
946 | ||
947 | inf->running = thread_running && task_running; | |
948 | ||
949 | /* Once any thread has executed some code, we can't depend on the | |
c5aa993b | 950 | threads list any more. */ |
c906108c SS |
951 | if (inf->running) |
952 | inf->threads_up_to_date = 0; | |
953 | ||
954 | return inf->running; | |
955 | } | |
956 | ||
957 | return 0; | |
958 | } | |
942fd805 | 959 | |
c906108c SS |
960 | \f |
961 | /* Converts a GDB pid to a struct proc. */ | |
962 | struct proc * | |
963 | inf_tid_to_thread (struct inf *inf, int tid) | |
964 | { | |
965 | struct proc *thread = inf->threads; | |
966 | ||
967 | while (thread) | |
968 | if (thread->tid == tid) | |
969 | return thread; | |
970 | else | |
971 | thread = thread->next; | |
972 | return 0; | |
973 | } | |
974 | ||
975 | /* Converts a thread port to a struct proc. */ | |
976 | struct proc * | |
977 | inf_port_to_thread (struct inf *inf, mach_port_t port) | |
978 | { | |
979 | struct proc *thread = inf->threads; | |
d8734c88 | 980 | |
c906108c SS |
981 | while (thread) |
982 | if (thread->port == port) | |
983 | return thread; | |
984 | else | |
985 | thread = thread->next; | |
986 | return 0; | |
987 | } | |
942fd805 | 988 | |
c906108c SS |
989 | \f |
990 | /* Make INF's list of threads be consistent with reality of TASK. */ | |
991 | void | |
992 | inf_validate_procs (struct inf *inf) | |
993 | { | |
c906108c | 994 | thread_array_t threads; |
942fd805 | 995 | mach_msg_type_number_t num_threads, i; |
c906108c SS |
996 | struct proc *task = inf->task; |
997 | ||
998 | /* If no threads are currently running, this function will guarantee that | |
999 | things are up to date. The exception is if there are zero threads -- | |
1000 | then it is almost certainly in an odd state, and probably some outside | |
1001 | agent will create threads. */ | |
1002 | inf->threads_up_to_date = inf->threads ? !inf->running : 0; | |
1003 | ||
1004 | if (task) | |
1005 | { | |
1006 | error_t err = task_threads (task->port, &threads, &num_threads); | |
d8734c88 | 1007 | |
c906108c SS |
1008 | inf_debug (inf, "fetching threads"); |
1009 | if (err) | |
1010 | /* TASK must be dead. */ | |
1011 | { | |
1012 | task->dead = 1; | |
1013 | task = 0; | |
1014 | } | |
1015 | } | |
1016 | ||
1017 | if (!task) | |
1018 | { | |
1019 | num_threads = 0; | |
1020 | inf_debug (inf, "no task"); | |
1021 | } | |
1022 | ||
1023 | { | |
942fd805 MK |
1024 | /* Make things normally linear. */ |
1025 | mach_msg_type_number_t search_start = 0; | |
c906108c SS |
1026 | /* Which thread in PROCS corresponds to each task thread, & the task. */ |
1027 | struct proc *matched[num_threads + 1]; | |
1028 | /* The last thread in INF->threads, so we can add to the end. */ | |
1029 | struct proc *last = 0; | |
1030 | /* The current thread we're considering. */ | |
1031 | struct proc *thread = inf->threads; | |
1032 | ||
4deab737 | 1033 | memset (matched, 0, sizeof (matched)); |
c906108c SS |
1034 | |
1035 | while (thread) | |
1036 | { | |
942fd805 | 1037 | mach_msg_type_number_t left; |
c906108c SS |
1038 | |
1039 | for (i = search_start, left = num_threads; left; i++, left--) | |
1040 | { | |
1041 | if (i >= num_threads) | |
c5aa993b | 1042 | i -= num_threads; /* I wrapped around. */ |
c906108c SS |
1043 | if (thread->port == threads[i]) |
1044 | /* We already know about this thread. */ | |
1045 | { | |
1046 | matched[i] = thread; | |
1047 | last = thread; | |
1048 | thread = thread->next; | |
1049 | search_start++; | |
1050 | break; | |
1051 | } | |
1052 | } | |
1053 | ||
c5aa993b | 1054 | if (!left) |
c906108c SS |
1055 | { |
1056 | proc_debug (thread, "died!"); | |
1057 | thread->port = MACH_PORT_NULL; | |
c5aa993b | 1058 | thread = _proc_free (thread); /* THREAD is dead. */ |
c4c50d37 DJ |
1059 | if (last) |
1060 | last->next = thread; | |
1061 | else | |
1062 | inf->threads = thread; | |
c906108c SS |
1063 | } |
1064 | } | |
1065 | ||
1066 | for (i = 0; i < num_threads; i++) | |
942fd805 MK |
1067 | { |
1068 | if (matched[i]) | |
1069 | /* Throw away the duplicate send right. */ | |
1070 | mach_port_deallocate (mach_task_self (), threads[i]); | |
1071 | else | |
1072 | /* THREADS[I] is a thread we don't know about yet! */ | |
1073 | { | |
617fd3b5 PA |
1074 | ptid_t ptid; |
1075 | ||
942fd805 | 1076 | thread = make_proc (inf, threads[i], next_thread_id++); |
c4c50d37 DJ |
1077 | if (last) |
1078 | last->next = thread; | |
1079 | else | |
1080 | inf->threads = thread; | |
942fd805 MK |
1081 | last = thread; |
1082 | proc_debug (thread, "new thread: %d", threads[i]); | |
617fd3b5 PA |
1083 | |
1084 | ptid = ptid_build (inf->pid, 0, thread->tid); | |
1085 | ||
1086 | /* Tell GDB's generic thread code. */ | |
1087 | ||
1088 | if (ptid_equal (inferior_ptid, pid_to_ptid (inf->pid))) | |
1089 | /* This is the first time we're hearing about thread | |
1090 | ids, after a fork-child. */ | |
1091 | thread_change_ptid (inferior_ptid, ptid); | |
1092 | else if (inf->pending_execs != 0) | |
1093 | /* This is a shell thread. */ | |
1094 | add_thread_silent (ptid); | |
1095 | else | |
1096 | add_thread (ptid); | |
942fd805 MK |
1097 | } |
1098 | } | |
c906108c | 1099 | |
c5aa993b | 1100 | vm_deallocate (mach_task_self (), |
942fd805 | 1101 | (vm_address_t) threads, (num_threads * sizeof (thread_t))); |
c906108c SS |
1102 | } |
1103 | } | |
942fd805 | 1104 | |
c906108c SS |
1105 | \f |
1106 | /* Makes sure that INF's thread list is synced with the actual process. */ | |
39efb398 | 1107 | int |
c906108c SS |
1108 | inf_update_procs (struct inf *inf) |
1109 | { | |
c5aa993b | 1110 | if (!inf->task) |
c906108c | 1111 | return 0; |
c5aa993b | 1112 | if (!inf->threads_up_to_date) |
c906108c SS |
1113 | inf_validate_procs (inf); |
1114 | return !!inf->task; | |
1115 | } | |
1116 | ||
1117 | /* Sets the resume_sc of each thread in inf. That of RUN_THREAD is set to 0, | |
1118 | and others are set to their run_sc if RUN_OTHERS is true, and otherwise | |
1119 | their pause_sc. */ | |
39efb398 | 1120 | void |
c906108c SS |
1121 | inf_set_threads_resume_sc (struct inf *inf, |
1122 | struct proc *run_thread, int run_others) | |
1123 | { | |
1124 | struct proc *thread; | |
d8734c88 | 1125 | |
c906108c SS |
1126 | inf_update_procs (inf); |
1127 | for (thread = inf->threads; thread; thread = thread->next) | |
1128 | if (thread == run_thread) | |
1129 | thread->resume_sc = 0; | |
1130 | else if (run_others) | |
1131 | thread->resume_sc = thread->run_sc; | |
1132 | else | |
1133 | thread->resume_sc = thread->pause_sc; | |
1134 | } | |
942fd805 | 1135 | |
c906108c SS |
1136 | \f |
1137 | /* Cause INF to continue execution immediately; individual threads may still | |
1138 | be suspended (but their suspend counts will be updated). */ | |
39efb398 | 1139 | void |
c906108c SS |
1140 | inf_resume (struct inf *inf) |
1141 | { | |
1142 | struct proc *thread; | |
1143 | ||
1144 | inf_update_procs (inf); | |
1145 | ||
1146 | for (thread = inf->threads; thread; thread = thread->next) | |
1147 | thread->sc = thread->resume_sc; | |
1148 | ||
1149 | if (inf->task) | |
1150 | { | |
c5aa993b | 1151 | if (!inf->pending_execs) |
c906108c SS |
1152 | /* Try to make sure our task count is correct -- in the case where |
1153 | we're waiting for an exec though, things are too volatile, so just | |
1154 | assume things will be reasonable (which they usually will be). */ | |
1155 | inf_validate_task_sc (inf); | |
1156 | inf->task->sc = 0; | |
1157 | } | |
1158 | ||
1159 | inf_update_suspends (inf); | |
1160 | } | |
1161 | ||
1162 | /* Cause INF to stop execution immediately; individual threads may still | |
1163 | be running. */ | |
39efb398 | 1164 | void |
c906108c SS |
1165 | inf_suspend (struct inf *inf) |
1166 | { | |
1167 | struct proc *thread; | |
1168 | ||
1169 | inf_update_procs (inf); | |
1170 | ||
1171 | for (thread = inf->threads; thread; thread = thread->next) | |
1172 | thread->sc = thread->pause_sc; | |
1173 | ||
1174 | if (inf->task) | |
1175 | inf->task->sc = inf->pause_sc; | |
1176 | ||
1177 | inf_update_suspends (inf); | |
1178 | } | |
942fd805 | 1179 | |
c906108c | 1180 | \f |
942fd805 MK |
1181 | /* INF has one thread PROC that is in single-stepping mode. This |
1182 | function changes it to be PROC, changing any old step_thread to be | |
1183 | a normal one. A PROC of 0 clears any existing value. */ | |
c906108c SS |
1184 | void |
1185 | inf_set_step_thread (struct inf *inf, struct proc *thread) | |
1186 | { | |
bf62e5b4 | 1187 | gdb_assert (!thread || proc_is_thread (thread)); |
c906108c SS |
1188 | |
1189 | if (thread) | |
1190 | inf_debug (inf, "setting step thread: %d/%d", inf->pid, thread->tid); | |
1191 | else | |
1192 | inf_debug (inf, "clearing step thread"); | |
1193 | ||
1194 | if (inf->step_thread != thread) | |
1195 | { | |
1196 | if (inf->step_thread && inf->step_thread->port != MACH_PORT_NULL) | |
c5aa993b | 1197 | if (!proc_trace (inf->step_thread, 0)) |
c906108c SS |
1198 | return; |
1199 | if (thread && proc_trace (thread, 1)) | |
1200 | inf->step_thread = thread; | |
1201 | else | |
1202 | inf->step_thread = 0; | |
1203 | } | |
1204 | } | |
942fd805 | 1205 | |
c906108c SS |
1206 | \f |
1207 | /* Set up the thread resume_sc's so that only the signal thread is running | |
1208 | (plus whatever other thread are set to always run). Returns true if we | |
1209 | did so, or false if we can't find a signal thread. */ | |
39efb398 | 1210 | int |
c906108c SS |
1211 | inf_set_threads_resume_sc_for_signal_thread (struct inf *inf) |
1212 | { | |
1213 | if (inf->signal_thread) | |
1214 | { | |
1215 | inf_set_threads_resume_sc (inf, inf->signal_thread, 0); | |
1216 | return 1; | |
1217 | } | |
1218 | else | |
1219 | return 0; | |
1220 | } | |
1221 | ||
1222 | static void | |
1223 | inf_update_signal_thread (struct inf *inf) | |
1224 | { | |
1225 | /* XXX for now we assume that if there's a msgport, the 2nd thread is | |
1226 | the signal thread. */ | |
1227 | inf->signal_thread = inf->threads ? inf->threads->next : 0; | |
1228 | } | |
942fd805 | 1229 | |
c906108c SS |
1230 | \f |
1231 | /* Detachs from INF's inferior task, letting it run once again... */ | |
1232 | void | |
1233 | inf_detach (struct inf *inf) | |
1234 | { | |
1235 | struct proc *task = inf->task; | |
1236 | ||
1237 | inf_debug (inf, "detaching..."); | |
1238 | ||
1239 | inf_clear_wait (inf); | |
1240 | inf_set_step_thread (inf, 0); | |
1241 | ||
1242 | if (task) | |
1243 | { | |
1244 | struct proc *thread; | |
1245 | ||
cce74817 JM |
1246 | inf_validate_procinfo (inf); |
1247 | ||
c906108c SS |
1248 | inf_set_traced (inf, 0); |
1249 | if (inf->stopped) | |
cce74817 JM |
1250 | { |
1251 | if (inf->nomsg) | |
1252 | inf_continue (inf); | |
1253 | else | |
1254 | inf_signal (inf, TARGET_SIGNAL_0); | |
1255 | } | |
c906108c SS |
1256 | |
1257 | proc_restore_exc_port (task); | |
1258 | task->sc = inf->detach_sc; | |
1259 | ||
1260 | for (thread = inf->threads; thread; thread = thread->next) | |
1261 | { | |
1262 | proc_restore_exc_port (thread); | |
1263 | thread->sc = thread->detach_sc; | |
1264 | } | |
1265 | ||
1266 | inf_update_suspends (inf); | |
1267 | } | |
1268 | ||
1269 | inf_cleanup (inf); | |
1270 | } | |
1271 | ||
942fd805 MK |
1272 | /* Attaches INF to the process with process id PID, returning it in a |
1273 | suspended state suitable for debugging. */ | |
c906108c SS |
1274 | void |
1275 | inf_attach (struct inf *inf, int pid) | |
1276 | { | |
1277 | inf_debug (inf, "attaching: %d", pid); | |
1278 | ||
1279 | if (inf->pid) | |
1280 | inf_detach (inf); | |
1281 | ||
1282 | inf_startup (inf, pid); | |
1283 | } | |
942fd805 | 1284 | |
c906108c SS |
1285 | \f |
1286 | /* Makes sure that we've got our exception ports entrenched in the process. */ | |
c5aa993b JM |
1287 | void |
1288 | inf_steal_exc_ports (struct inf *inf) | |
c906108c SS |
1289 | { |
1290 | struct proc *thread; | |
1291 | ||
1292 | inf_debug (inf, "stealing exception ports"); | |
1293 | ||
1294 | inf_set_step_thread (inf, 0); /* The step thread is special. */ | |
1295 | ||
1296 | proc_steal_exc_port (inf->task, inf->event_port); | |
1297 | for (thread = inf->threads; thread; thread = thread->next) | |
1298 | proc_steal_exc_port (thread, MACH_PORT_NULL); | |
1299 | } | |
1300 | ||
1301 | /* Makes sure the process has its own exception ports. */ | |
c5aa993b JM |
1302 | void |
1303 | inf_restore_exc_ports (struct inf *inf) | |
c906108c SS |
1304 | { |
1305 | struct proc *thread; | |
1306 | ||
1307 | inf_debug (inf, "restoring exception ports"); | |
1308 | ||
1309 | inf_set_step_thread (inf, 0); /* The step thread is special. */ | |
1310 | ||
1311 | proc_restore_exc_port (inf->task); | |
1312 | for (thread = inf->threads; thread; thread = thread->next) | |
1313 | proc_restore_exc_port (thread); | |
1314 | } | |
942fd805 | 1315 | |
c906108c SS |
1316 | \f |
1317 | /* Deliver signal SIG to INF. If INF is stopped, delivering a signal, even | |
1318 | signal 0, will continue it. INF is assumed to be in a paused state, and | |
1319 | the resume_sc's of INF's threads may be affected. */ | |
1320 | void | |
1321 | inf_signal (struct inf *inf, enum target_signal sig) | |
1322 | { | |
1323 | error_t err = 0; | |
1324 | int host_sig = target_signal_to_host (sig); | |
1325 | ||
1326 | #define NAME target_signal_to_name (sig) | |
1327 | ||
1328 | if (host_sig >= _NSIG) | |
1329 | /* A mach exception. Exceptions are encoded in the signal space by | |
1330 | putting them after _NSIG; this assumes they're positive (and not | |
1331 | extremely large)! */ | |
1332 | { | |
1333 | struct inf_wait *w = &inf->wait; | |
d8734c88 | 1334 | |
c906108c SS |
1335 | if (w->status.kind == TARGET_WAITKIND_STOPPED |
1336 | && w->status.value.sig == sig | |
1337 | && w->thread && !w->thread->aborted) | |
1338 | /* We're passing through the last exception we received. This is | |
1339 | kind of bogus, because exceptions are per-thread whereas gdb | |
1340 | treats signals as per-process. We just forward the exception to | |
1341 | the correct handler, even it's not for the same thread as TID -- | |
1342 | i.e., we pretend it's global. */ | |
1343 | { | |
1344 | struct exc_state *e = &w->exc; | |
d8734c88 | 1345 | |
c906108c SS |
1346 | inf_debug (inf, "passing through exception:" |
1347 | " task = %d, thread = %d, exc = %d" | |
1348 | ", code = %d, subcode = %d", | |
1349 | w->thread->port, inf->task->port, | |
1350 | e->exception, e->code, e->subcode); | |
1351 | err = | |
1352 | exception_raise_request (e->handler, | |
1353 | e->reply, MACH_MSG_TYPE_MOVE_SEND_ONCE, | |
1354 | w->thread->port, inf->task->port, | |
1355 | e->exception, e->code, e->subcode); | |
1356 | } | |
1357 | else | |
8a3fe4f8 | 1358 | error (_("Can't forward spontaneous exception (%s)."), NAME); |
c906108c SS |
1359 | } |
1360 | else | |
1361 | /* A Unix signal. */ | |
c5aa993b JM |
1362 | if (inf->stopped) |
1363 | /* The process is stopped and expecting a signal. Just send off a | |
1364 | request and let it get handled when we resume everything. */ | |
1365 | { | |
1366 | inf_debug (inf, "sending %s to stopped process", NAME); | |
1367 | err = | |
1368 | INF_MSGPORT_RPC (inf, | |
1369 | msg_sig_post_untraced_request (msgport, | |
1370 | inf->event_port, | |
1371 | MACH_MSG_TYPE_MAKE_SEND_ONCE, | |
1372 | host_sig, 0, | |
1373 | refport)); | |
1374 | if (!err) | |
1375 | /* Posting an untraced signal automatically continues it. | |
1376 | We clear this here rather than when we get the reply | |
1377 | because we'd rather assume it's not stopped when it | |
1378 | actually is, than the reverse. */ | |
1379 | inf->stopped = 0; | |
1380 | } | |
1381 | else | |
1382 | /* It's not expecting it. We have to let just the signal thread | |
1383 | run, and wait for it to get into a reasonable state before we | |
1384 | can continue the rest of the process. When we finally resume the | |
1385 | process the signal we request will be the very first thing that | |
1386 | happens. */ | |
1387 | { | |
942fd805 MK |
1388 | inf_debug (inf, "sending %s to unstopped process" |
1389 | " (so resuming signal thread)", NAME); | |
c5aa993b | 1390 | err = |
942fd805 MK |
1391 | INF_RESUME_MSGPORT_RPC (inf, |
1392 | msg_sig_post_untraced (msgport, host_sig, | |
1393 | 0, refport)); | |
c5aa993b | 1394 | } |
c906108c SS |
1395 | |
1396 | if (err == EIEIO) | |
1397 | /* Can't do too much... */ | |
8a3fe4f8 | 1398 | warning (_("Can't deliver signal %s: No signal thread."), NAME); |
c906108c | 1399 | else if (err) |
8a3fe4f8 | 1400 | warning (_("Delivering signal %s: %s"), NAME, safe_strerror (err)); |
c906108c SS |
1401 | |
1402 | #undef NAME | |
1403 | } | |
942fd805 | 1404 | |
c906108c | 1405 | \f |
cce74817 JM |
1406 | /* Continue INF without delivering a signal. This is meant to be used |
1407 | when INF does not have a message port. */ | |
1408 | void | |
1409 | inf_continue (struct inf *inf) | |
1410 | { | |
1411 | process_t proc; | |
1412 | error_t err = proc_pid2proc (proc_server, inf->pid, &proc); | |
1413 | ||
c5aa993b | 1414 | if (!err) |
cce74817 JM |
1415 | { |
1416 | inf_debug (inf, "continuing process"); | |
1417 | ||
1418 | err = proc_mark_cont (proc); | |
c5aa993b | 1419 | if (!err) |
cce74817 JM |
1420 | { |
1421 | struct proc *thread; | |
1422 | ||
1423 | for (thread = inf->threads; thread; thread = thread->next) | |
1424 | thread_resume (thread->port); | |
c5aa993b | 1425 | |
cce74817 JM |
1426 | inf->stopped = 0; |
1427 | } | |
1428 | } | |
1429 | ||
1430 | if (err) | |
8a3fe4f8 | 1431 | warning (_("Can't continue process: %s"), safe_strerror (err)); |
cce74817 | 1432 | } |
942fd805 | 1433 | |
cce74817 | 1434 | \f |
c906108c | 1435 | /* The inferior used for all gdb target ops. */ |
c289427b | 1436 | struct inf *gnu_current_inf = 0; |
c906108c SS |
1437 | |
1438 | /* The inferior being waited for by gnu_wait. Since GDB is decidely not | |
1439 | multi-threaded, we don't bother to lock this. */ | |
1440 | struct inf *waiting_inf; | |
1441 | ||
1442 | /* Wait for something to happen in the inferior, returning what in STATUS. */ | |
39f77062 | 1443 | static ptid_t |
117de6a9 | 1444 | gnu_wait (struct target_ops *ops, |
47608cb1 | 1445 | ptid_t ptid, struct target_waitstatus *status, int options) |
c906108c | 1446 | { |
c5aa993b JM |
1447 | struct msg |
1448 | { | |
1449 | mach_msg_header_t hdr; | |
1450 | mach_msg_type_t type; | |
1451 | int data[8000]; | |
942fd805 | 1452 | } msg; |
c906108c SS |
1453 | error_t err; |
1454 | struct proc *thread; | |
c289427b | 1455 | struct inf *inf = gnu_current_inf; |
c906108c | 1456 | |
942fd805 MK |
1457 | extern int exc_server (mach_msg_header_t *, mach_msg_header_t *); |
1458 | extern int msg_reply_server (mach_msg_header_t *, mach_msg_header_t *); | |
1459 | extern int notify_server (mach_msg_header_t *, mach_msg_header_t *); | |
1460 | extern int process_reply_server (mach_msg_header_t *, mach_msg_header_t *); | |
1461 | ||
bf62e5b4 | 1462 | gdb_assert (inf->task); |
c906108c SS |
1463 | |
1464 | if (!inf->threads && !inf->pending_execs) | |
1465 | /* No threads! Assume that maybe some outside agency is frobbing our | |
1466 | task, and really look for new threads. If we can't find any, just tell | |
1467 | the user to try again later. */ | |
1468 | { | |
1469 | inf_validate_procs (inf); | |
1470 | if (!inf->threads && !inf->task->dead) | |
8a3fe4f8 | 1471 | error (_("There are no threads; try again later.")); |
c906108c SS |
1472 | } |
1473 | ||
1474 | waiting_inf = inf; | |
1475 | ||
617fd3b5 | 1476 | inf_debug (inf, "waiting for: %s", target_pid_to_str (ptid)); |
c906108c | 1477 | |
c5aa993b | 1478 | rewait: |
c906108c SS |
1479 | if (proc_wait_pid != inf->pid && !inf->no_wait) |
1480 | /* Always get information on events from the proc server. */ | |
1481 | { | |
1482 | inf_debug (inf, "requesting wait on pid %d", inf->pid); | |
1483 | ||
1484 | if (proc_wait_pid) | |
1485 | /* The proc server is single-threaded, and only allows a single | |
1486 | outstanding wait request, so we have to cancel the previous one. */ | |
1487 | { | |
1488 | inf_debug (inf, "cancelling previous wait on pid %d", proc_wait_pid); | |
1489 | interrupt_operation (proc_server, 0); | |
1490 | } | |
1491 | ||
1492 | err = | |
1493 | proc_wait_request (proc_server, inf->event_port, inf->pid, WUNTRACED); | |
1494 | if (err) | |
8a3fe4f8 | 1495 | warning (_("wait request failed: %s"), safe_strerror (err)); |
c906108c SS |
1496 | else |
1497 | { | |
1498 | inf_debug (inf, "waits pending: %d", proc_waits_pending); | |
1499 | proc_wait_pid = inf->pid; | |
942fd805 MK |
1500 | /* Even if proc_waits_pending was > 0 before, we still won't |
1501 | get any other replies, because it was either from a | |
1502 | different INF, or a different process attached to INF -- | |
1503 | and the event port, which is the wait reply port, changes | |
1504 | when you switch processes. */ | |
c906108c SS |
1505 | proc_waits_pending = 1; |
1506 | } | |
1507 | } | |
1508 | ||
1509 | inf_clear_wait (inf); | |
1510 | ||
1511 | /* What can happen? (1) Dead name notification; (2) Exceptions arrive; | |
1512 | (3) wait reply from the proc server. */ | |
1513 | ||
1514 | inf_debug (inf, "waiting for an event..."); | |
1515 | err = mach_msg (&msg.hdr, MACH_RCV_MSG | MACH_RCV_INTERRUPT, | |
1516 | 0, sizeof (struct msg), inf->event_port, | |
1517 | MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL); | |
1518 | ||
1519 | /* Re-suspend the task. */ | |
1520 | inf_suspend (inf); | |
1521 | ||
1522 | if (!inf->task && inf->pending_execs) | |
1523 | /* When doing an exec, it's possible that the old task wasn't reused | |
1524 | (e.g., setuid execs). So if the task seems to have disappeared, | |
1525 | attempt to refetch it, as the pid should still be the same. */ | |
1526 | inf_set_pid (inf, inf->pid); | |
1527 | ||
1528 | if (err == EMACH_RCV_INTERRUPTED) | |
1529 | inf_debug (inf, "interrupted"); | |
1530 | else if (err) | |
8a3fe4f8 | 1531 | error (_("Couldn't wait for an event: %s"), safe_strerror (err)); |
c906108c SS |
1532 | else |
1533 | { | |
c5aa993b JM |
1534 | struct |
1535 | { | |
1536 | mach_msg_header_t hdr; | |
1537 | mach_msg_type_t err_type; | |
1538 | kern_return_t err; | |
1539 | char noise[200]; | |
1540 | } | |
1541 | reply; | |
c906108c SS |
1542 | |
1543 | inf_debug (inf, "event: msgid = %d", msg.hdr.msgh_id); | |
1544 | ||
1545 | /* Handle what we got. */ | |
c5aa993b JM |
1546 | if (!notify_server (&msg.hdr, &reply.hdr) |
1547 | && !exc_server (&msg.hdr, &reply.hdr) | |
1548 | && !process_reply_server (&msg.hdr, &reply.hdr) | |
1549 | && !msg_reply_server (&msg.hdr, &reply.hdr)) | |
c906108c | 1550 | /* Whatever it is, it's something strange. */ |
8a3fe4f8 | 1551 | error (_("Got a strange event, msg id = %d."), msg.hdr.msgh_id); |
c906108c SS |
1552 | |
1553 | if (reply.err) | |
8a3fe4f8 | 1554 | error (_("Handling event, msgid = %d: %s"), |
dc672865 | 1555 | msg.hdr.msgh_id, safe_strerror (reply.err)); |
c906108c SS |
1556 | } |
1557 | ||
1558 | if (inf->pending_execs) | |
1559 | /* We're waiting for the inferior to finish execing. */ | |
1560 | { | |
1561 | struct inf_wait *w = &inf->wait; | |
1562 | enum target_waitkind kind = w->status.kind; | |
1563 | ||
1564 | if (kind == TARGET_WAITKIND_SPURIOUS) | |
1565 | /* Since gdb is actually counting the number of times the inferior | |
1566 | stops, expecting one stop per exec, we only return major events | |
1567 | while execing. */ | |
1568 | { | |
1569 | w->suppress = 1; | |
1570 | inf_debug (inf, "pending_execs = %d, ignoring minor event", | |
1571 | inf->pending_execs); | |
1572 | } | |
1573 | else if (kind == TARGET_WAITKIND_STOPPED | |
1574 | && w->status.value.sig == TARGET_SIGNAL_TRAP) | |
1575 | /* Ah hah! A SIGTRAP from the inferior while starting up probably | |
1576 | means we've succesfully completed an exec! */ | |
1577 | { | |
1578 | if (--inf->pending_execs == 0) | |
1579 | /* We're done! */ | |
1580 | { | |
c5aa993b | 1581 | #if 0 /* do we need this? */ |
c906108c | 1582 | prune_threads (1); /* Get rid of the old shell threads */ |
c5aa993b | 1583 | renumber_threads (0); /* Give our threads reasonable names. */ |
c906108c SS |
1584 | #endif |
1585 | } | |
1586 | inf_debug (inf, "pending exec completed, pending_execs => %d", | |
1587 | inf->pending_execs); | |
1588 | } | |
1589 | else if (kind == TARGET_WAITKIND_STOPPED) | |
1590 | /* It's possible that this signal is because of a crashed process | |
1591 | being handled by the hurd crash server; in this case, the process | |
1592 | will have an extra task suspend, which we need to know about. | |
1593 | Since the code in inf_resume that normally checks for this is | |
1594 | disabled while INF->pending_execs, we do the check here instead. */ | |
1595 | inf_validate_task_sc (inf); | |
1596 | } | |
1597 | ||
1598 | if (inf->wait.suppress) | |
1599 | /* Some totally spurious event happened that we don't consider | |
1600 | worth returning to gdb. Just keep waiting. */ | |
1601 | { | |
1602 | inf_debug (inf, "suppressing return, rewaiting..."); | |
1603 | inf_resume (inf); | |
1604 | goto rewait; | |
1605 | } | |
1606 | ||
1607 | /* Pass back out our results. */ | |
98d346c3 | 1608 | memcpy (status, &inf->wait.status, sizeof (*status)); |
c906108c SS |
1609 | |
1610 | thread = inf->wait.thread; | |
1611 | if (thread) | |
617fd3b5 PA |
1612 | ptid = ptid_build (inf->pid, 0, thread->tid); |
1613 | else if (ptid_equal (ptid, minus_one_ptid)) | |
1614 | thread = inf_tid_to_thread (inf, -1); | |
c906108c | 1615 | else |
617fd3b5 | 1616 | thread = inf_tid_to_thread (inf, ptid_get_tid (ptid)); |
c906108c SS |
1617 | |
1618 | if (!thread || thread->port == MACH_PORT_NULL) | |
942fd805 MK |
1619 | { |
1620 | /* TID is dead; try and find a new thread. */ | |
1621 | if (inf_update_procs (inf) && inf->threads) | |
617fd3b5 | 1622 | ptid = ptid_build (inf->pid, 0, inf->threads->tid); /* The first available thread. */ |
942fd805 | 1623 | else |
617fd3b5 | 1624 | ptid = inferior_ptid; /* let wait_for_inferior handle exit case */ |
942fd805 | 1625 | } |
c906108c | 1626 | |
617fd3b5 PA |
1627 | if (thread |
1628 | && !ptid_equal (ptid, minus_one_ptid) | |
1629 | && status->kind != TARGET_WAITKIND_SPURIOUS | |
c906108c | 1630 | && inf->pause_sc == 0 && thread->pause_sc == 0) |
942fd805 MK |
1631 | /* If something actually happened to THREAD, make sure we |
1632 | suspend it. */ | |
c906108c SS |
1633 | { |
1634 | thread->sc = 1; | |
1635 | inf_update_suspends (inf); | |
c5aa993b | 1636 | } |
c906108c | 1637 | |
617fd3b5 PA |
1638 | inf_debug (inf, "returning ptid = %s, status = %s (%d)", |
1639 | target_pid_to_str (ptid), | |
c906108c SS |
1640 | status->kind == TARGET_WAITKIND_EXITED ? "EXITED" |
1641 | : status->kind == TARGET_WAITKIND_STOPPED ? "STOPPED" | |
1642 | : status->kind == TARGET_WAITKIND_SIGNALLED ? "SIGNALLED" | |
1643 | : status->kind == TARGET_WAITKIND_LOADED ? "LOADED" | |
1644 | : status->kind == TARGET_WAITKIND_SPURIOUS ? "SPURIOUS" | |
1645 | : "?", | |
1646 | status->value.integer); | |
1647 | ||
617fd3b5 | 1648 | return ptid; |
c906108c | 1649 | } |
942fd805 | 1650 | |
c906108c SS |
1651 | \f |
1652 | /* The rpc handler called by exc_server. */ | |
1653 | error_t | |
1654 | S_exception_raise_request (mach_port_t port, mach_port_t reply_port, | |
1655 | thread_t thread_port, task_t task_port, | |
1656 | int exception, int code, int subcode) | |
1657 | { | |
1658 | struct inf *inf = waiting_inf; | |
1659 | struct proc *thread = inf_port_to_thread (inf, thread_port); | |
1660 | ||
1661 | inf_debug (waiting_inf, | |
1662 | "thread = %d, task = %d, exc = %d, code = %d, subcode = %d", | |
942fd805 | 1663 | thread_port, task_port, exception, code, subcode); |
c906108c SS |
1664 | |
1665 | if (!thread) | |
1666 | /* We don't know about thread? */ | |
1667 | { | |
1668 | inf_update_procs (inf); | |
1669 | thread = inf_port_to_thread (inf, thread_port); | |
1670 | if (!thread) | |
1671 | /* Give up, the generating thread is gone. */ | |
1672 | return 0; | |
1673 | } | |
1674 | ||
1675 | mach_port_deallocate (mach_task_self (), thread_port); | |
1676 | mach_port_deallocate (mach_task_self (), task_port); | |
1677 | ||
c5aa993b | 1678 | if (!thread->aborted) |
c906108c SS |
1679 | /* THREAD hasn't been aborted since this exception happened (abortion |
1680 | clears any exception state), so it must be real. */ | |
1681 | { | |
1682 | /* Store away the details; this will destroy any previous info. */ | |
1683 | inf->wait.thread = thread; | |
1684 | ||
1685 | inf->wait.status.kind = TARGET_WAITKIND_STOPPED; | |
1686 | ||
1687 | if (exception == EXC_BREAKPOINT) | |
1688 | /* GDB likes to get SIGTRAP for breakpoints. */ | |
1689 | { | |
1690 | inf->wait.status.value.sig = TARGET_SIGNAL_TRAP; | |
1691 | mach_port_deallocate (mach_task_self (), reply_port); | |
1692 | } | |
1693 | else | |
1694 | /* Record the exception so that we can forward it later. */ | |
1695 | { | |
1696 | if (thread->exc_port == port) | |
1697 | { | |
8e1a459b | 1698 | inf_debug (waiting_inf, "Handler is thread exception port <%d>", |
c906108c SS |
1699 | thread->saved_exc_port); |
1700 | inf->wait.exc.handler = thread->saved_exc_port; | |
1701 | } | |
1702 | else | |
1703 | { | |
8e1a459b | 1704 | inf_debug (waiting_inf, "Handler is task exception port <%d>", |
c906108c SS |
1705 | inf->task->saved_exc_port); |
1706 | inf->wait.exc.handler = inf->task->saved_exc_port; | |
bf62e5b4 | 1707 | gdb_assert (inf->task->exc_port == port); |
c906108c SS |
1708 | } |
1709 | if (inf->wait.exc.handler != MACH_PORT_NULL) | |
1710 | /* Add a reference to the exception handler. */ | |
1711 | mach_port_mod_refs (mach_task_self (), | |
1712 | inf->wait.exc.handler, MACH_PORT_RIGHT_SEND, | |
1713 | 1); | |
1714 | ||
1715 | inf->wait.exc.exception = exception; | |
1716 | inf->wait.exc.code = code; | |
1717 | inf->wait.exc.subcode = subcode; | |
1718 | inf->wait.exc.reply = reply_port; | |
1719 | ||
1720 | /* Exceptions are encoded in the signal space by putting them after | |
1721 | _NSIG; this assumes they're positive (and not extremely large)! */ | |
1722 | inf->wait.status.value.sig = | |
1723 | target_signal_from_host (_NSIG + exception); | |
1724 | } | |
1725 | } | |
1726 | else | |
1727 | /* A supppressed exception, which ignore. */ | |
1728 | { | |
1729 | inf->wait.suppress = 1; | |
1730 | mach_port_deallocate (mach_task_self (), reply_port); | |
1731 | } | |
1732 | ||
1733 | return 0; | |
1734 | } | |
942fd805 | 1735 | |
c906108c SS |
1736 | \f |
1737 | /* Fill in INF's wait field after a task has died without giving us more | |
1738 | detailed information. */ | |
1739 | void | |
1740 | inf_task_died_status (struct inf *inf) | |
1741 | { | |
8a3fe4f8 | 1742 | warning (_("Pid %d died with unknown exit status, using SIGKILL."), inf->pid); |
c906108c SS |
1743 | inf->wait.status.kind = TARGET_WAITKIND_SIGNALLED; |
1744 | inf->wait.status.value.sig = TARGET_SIGNAL_KILL; | |
1745 | } | |
1746 | ||
1747 | /* Notify server routines. The only real one is dead name notification. */ | |
1748 | error_t | |
1749 | do_mach_notify_dead_name (mach_port_t notify, mach_port_t dead_port) | |
1750 | { | |
1751 | struct inf *inf = waiting_inf; | |
1752 | ||
1753 | inf_debug (waiting_inf, "port = %d", dead_port); | |
1754 | ||
1755 | if (inf->task && inf->task->port == dead_port) | |
1756 | { | |
1757 | proc_debug (inf->task, "is dead"); | |
1758 | inf->task->port = MACH_PORT_NULL; | |
1759 | if (proc_wait_pid == inf->pid) | |
1760 | /* We have a wait outstanding on the process, which will return more | |
1761 | detailed information, so delay until we get that. */ | |
1762 | inf->wait.suppress = 1; | |
1763 | else | |
1764 | /* We never waited for the process (maybe it wasn't a child), so just | |
1765 | pretend it got a SIGKILL. */ | |
1766 | inf_task_died_status (inf); | |
1767 | } | |
1768 | else | |
1769 | { | |
1770 | struct proc *thread = inf_port_to_thread (inf, dead_port); | |
d8734c88 | 1771 | |
c906108c SS |
1772 | if (thread) |
1773 | { | |
1774 | proc_debug (thread, "is dead"); | |
1775 | thread->port = MACH_PORT_NULL; | |
1776 | } | |
f90b2b1d JK |
1777 | |
1778 | if (inf->task->dead) | |
1779 | /* Since the task is dead, its threads are dying with it. */ | |
1780 | inf->wait.suppress = 1; | |
c906108c SS |
1781 | } |
1782 | ||
1783 | mach_port_deallocate (mach_task_self (), dead_port); | |
c5aa993b | 1784 | inf->threads_up_to_date = 0; /* Just in case */ |
c906108c SS |
1785 | |
1786 | return 0; | |
1787 | } | |
942fd805 | 1788 | |
c906108c SS |
1789 | \f |
1790 | static error_t | |
1791 | ill_rpc (char *fun) | |
1792 | { | |
8a3fe4f8 | 1793 | warning (_("illegal rpc: %s"), fun); |
c906108c SS |
1794 | return 0; |
1795 | } | |
1796 | ||
1797 | error_t | |
1798 | do_mach_notify_no_senders (mach_port_t notify, mach_port_mscount_t count) | |
1799 | { | |
89396210 | 1800 | return ill_rpc ("do_mach_notify_no_senders"); |
c906108c SS |
1801 | } |
1802 | ||
1803 | error_t | |
1804 | do_mach_notify_port_deleted (mach_port_t notify, mach_port_t name) | |
1805 | { | |
89396210 | 1806 | return ill_rpc ("do_mach_notify_port_deleted"); |
c906108c SS |
1807 | } |
1808 | ||
1809 | error_t | |
1810 | do_mach_notify_msg_accepted (mach_port_t notify, mach_port_t name) | |
1811 | { | |
89396210 | 1812 | return ill_rpc ("do_mach_notify_msg_accepted"); |
c906108c SS |
1813 | } |
1814 | ||
1815 | error_t | |
1816 | do_mach_notify_port_destroyed (mach_port_t notify, mach_port_t name) | |
1817 | { | |
89396210 | 1818 | return ill_rpc ("do_mach_notify_port_destroyed"); |
c906108c SS |
1819 | } |
1820 | ||
1821 | error_t | |
1822 | do_mach_notify_send_once (mach_port_t notify) | |
1823 | { | |
89396210 | 1824 | return ill_rpc ("do_mach_notify_send_once"); |
c906108c | 1825 | } |
942fd805 | 1826 | |
c906108c SS |
1827 | \f |
1828 | /* Process_reply server routines. We only use process_wait_reply. */ | |
1829 | ||
1830 | error_t | |
1831 | S_proc_wait_reply (mach_port_t reply, error_t err, | |
1832 | int status, int sigcode, rusage_t rusage, pid_t pid) | |
1833 | { | |
1834 | struct inf *inf = waiting_inf; | |
1835 | ||
1836 | inf_debug (inf, "err = %s, pid = %d, status = 0x%x, sigcode = %d", | |
dc672865 | 1837 | err ? safe_strerror (err) : "0", pid, status, sigcode); |
c906108c SS |
1838 | |
1839 | if (err && proc_wait_pid && (!inf->task || !inf->task->port)) | |
1840 | /* Ack. The task has died, but the task-died notification code didn't | |
1841 | tell anyone because it thought a more detailed reply from the | |
1842 | procserver was forthcoming. However, we now learn that won't | |
1843 | happen... So we have to act like the task just died, and this time, | |
1844 | tell the world. */ | |
1845 | inf_task_died_status (inf); | |
1846 | ||
1847 | if (--proc_waits_pending == 0) | |
1848 | /* PROC_WAIT_PID represents the most recent wait. We will always get | |
1849 | replies in order because the proc server is single threaded. */ | |
1850 | proc_wait_pid = 0; | |
1851 | ||
1852 | inf_debug (inf, "waits pending now: %d", proc_waits_pending); | |
1853 | ||
1854 | if (err) | |
1855 | { | |
1856 | if (err != EINTR) | |
1857 | { | |
8a3fe4f8 | 1858 | warning (_("Can't wait for pid %d: %s"), inf->pid, safe_strerror (err)); |
c906108c SS |
1859 | inf->no_wait = 1; |
1860 | ||
1861 | /* Since we can't see the inferior's signals, don't trap them. */ | |
1862 | inf_set_traced (inf, 0); | |
1863 | } | |
1864 | } | |
1865 | else if (pid == inf->pid) | |
1866 | { | |
1867 | store_waitstatus (&inf->wait.status, status); | |
1868 | if (inf->wait.status.kind == TARGET_WAITKIND_STOPPED) | |
1869 | /* The process has sent us a signal, and stopped itself in a sane | |
1870 | state pending our actions. */ | |
1871 | { | |
1872 | inf_debug (inf, "process has stopped itself"); | |
1873 | inf->stopped = 1; | |
1874 | } | |
1875 | } | |
1876 | else | |
1877 | inf->wait.suppress = 1; /* Something odd happened. Ignore. */ | |
1878 | ||
1879 | return 0; | |
1880 | } | |
1881 | ||
1882 | error_t | |
1883 | S_proc_setmsgport_reply (mach_port_t reply, error_t err, | |
1884 | mach_port_t old_msg_port) | |
1885 | { | |
89396210 | 1886 | return ill_rpc ("S_proc_setmsgport_reply"); |
c906108c SS |
1887 | } |
1888 | ||
1889 | error_t | |
1890 | S_proc_getmsgport_reply (mach_port_t reply, error_t err, mach_port_t msg_port) | |
1891 | { | |
89396210 | 1892 | return ill_rpc ("S_proc_getmsgport_reply"); |
c906108c | 1893 | } |
942fd805 | 1894 | |
c906108c SS |
1895 | \f |
1896 | /* Msg_reply server routines. We only use msg_sig_post_untraced_reply. */ | |
1897 | ||
1898 | error_t | |
1899 | S_msg_sig_post_untraced_reply (mach_port_t reply, error_t err) | |
1900 | { | |
1901 | struct inf *inf = waiting_inf; | |
1902 | ||
1903 | if (err == EBUSY) | |
1904 | /* EBUSY is what we get when the crash server has grabbed control of the | |
1905 | process and doesn't like what signal we tried to send it. Just act | |
1906 | like the process stopped (using a signal of 0 should mean that the | |
1907 | *next* time the user continues, it will pass signal 0, which the crash | |
1908 | server should like). */ | |
1909 | { | |
1910 | inf->wait.status.kind = TARGET_WAITKIND_STOPPED; | |
1911 | inf->wait.status.value.sig = TARGET_SIGNAL_0; | |
1912 | } | |
1913 | else if (err) | |
8a3fe4f8 | 1914 | warning (_("Signal delivery failed: %s"), safe_strerror (err)); |
c906108c SS |
1915 | |
1916 | if (err) | |
1917 | /* We only get this reply when we've posted a signal to a process which we | |
1918 | thought was stopped, and which we expected to continue after the signal. | |
1919 | Given that the signal has failed for some reason, it's reasonable to | |
1920 | assume it's still stopped. */ | |
1921 | inf->stopped = 1; | |
1922 | else | |
1923 | inf->wait.suppress = 1; | |
1924 | ||
1925 | return 0; | |
1926 | } | |
1927 | ||
1928 | error_t | |
1929 | S_msg_sig_post_reply (mach_port_t reply, error_t err) | |
1930 | { | |
89396210 | 1931 | return ill_rpc ("S_msg_sig_post_reply"); |
c906108c | 1932 | } |
942fd805 | 1933 | |
c906108c SS |
1934 | \f |
1935 | /* Returns the number of messages queued for the receive right PORT. */ | |
1936 | static mach_port_msgcount_t | |
1937 | port_msgs_queued (mach_port_t port) | |
1938 | { | |
1939 | struct mach_port_status status; | |
1940 | error_t err = | |
d8734c88 | 1941 | mach_port_get_receive_status (mach_task_self (), port, &status); |
c906108c SS |
1942 | |
1943 | if (err) | |
1944 | return 0; | |
1945 | else | |
1946 | return status.mps_msgcount; | |
1947 | } | |
942fd805 | 1948 | |
c906108c SS |
1949 | \f |
1950 | /* Resume execution of the inferior process. | |
1951 | ||
1952 | If STEP is nonzero, single-step it. | |
1953 | If SIGNAL is nonzero, give it that signal. | |
1954 | ||
1955 | TID STEP: | |
1956 | -1 true Single step the current thread allowing other threads to run. | |
1957 | -1 false Continue the current thread allowing other threads to run. | |
1958 | X true Single step the given thread, don't allow any others to run. | |
1959 | X false Continue the given thread, do not allow any others to run. | |
1960 | (Where X, of course, is anything except -1) | |
1961 | ||
1962 | Note that a resume may not `take' if there are pending exceptions/&c | |
1963 | still unprocessed from the last resume we did (any given resume may result | |
1964 | in multiple events returned by wait). | |
c5aa993b | 1965 | */ |
c906108c | 1966 | static void |
28439f5e PA |
1967 | gnu_resume (struct target_ops *ops, |
1968 | ptid_t ptid, int step, enum target_signal sig) | |
c906108c SS |
1969 | { |
1970 | struct proc *step_thread = 0; | |
617fd3b5 | 1971 | int resume_all; |
c289427b | 1972 | struct inf *inf = gnu_current_inf; |
c906108c | 1973 | |
617fd3b5 PA |
1974 | inf_debug (inf, "ptid = %s, step = %d, sig = %d", |
1975 | target_pid_to_str (ptid), step, sig); | |
c906108c | 1976 | |
cce74817 | 1977 | inf_validate_procinfo (inf); |
c5aa993b | 1978 | |
c906108c | 1979 | if (sig != TARGET_SIGNAL_0 || inf->stopped) |
cce74817 JM |
1980 | { |
1981 | if (sig == TARGET_SIGNAL_0 && inf->nomsg) | |
1982 | inf_continue (inf); | |
1983 | else | |
1984 | inf_signal (inf, sig); | |
1985 | } | |
c906108c SS |
1986 | else if (inf->wait.exc.reply != MACH_PORT_NULL) |
1987 | /* We received an exception to which we have chosen not to forward, so | |
1988 | abort the faulting thread, which will perhaps retake it. */ | |
1989 | { | |
1990 | proc_abort (inf->wait.thread, 1); | |
8a3fe4f8 | 1991 | warning (_("Aborting %s with unforwarded exception %s."), |
c906108c SS |
1992 | proc_string (inf->wait.thread), |
1993 | target_signal_to_name (inf->wait.status.value.sig)); | |
1994 | } | |
1995 | ||
1996 | if (port_msgs_queued (inf->event_port)) | |
1997 | /* If there are still messages in our event queue, don't bother resuming | |
1998 | the process, as we're just going to stop it right away anyway. */ | |
1999 | return; | |
2000 | ||
2001 | inf_update_procs (inf); | |
2002 | ||
617fd3b5 PA |
2003 | /* A specific PTID means `step only this process id'. */ |
2004 | resume_all = ptid_equal (ptid, minus_one_ptid); | |
2005 | ||
2006 | if (resume_all) | |
c906108c SS |
2007 | /* Allow all threads to run, except perhaps single-stepping one. */ |
2008 | { | |
39f77062 | 2009 | inf_debug (inf, "running all threads; tid = %d", PIDGET (inferior_ptid)); |
617fd3b5 | 2010 | ptid = inferior_ptid; /* What to step. */ |
c906108c SS |
2011 | inf_set_threads_resume_sc (inf, 0, 1); |
2012 | } | |
2013 | else | |
2014 | /* Just allow a single thread to run. */ | |
2015 | { | |
617fd3b5 | 2016 | struct proc *thread = inf_tid_to_thread (inf, ptid_get_tid (ptid)); |
d8734c88 | 2017 | |
c5aa993b | 2018 | if (!thread) |
617fd3b5 PA |
2019 | error (_("Can't run single thread id %s: no such thread!"), |
2020 | target_pid_to_str (ptid)); | |
2021 | inf_debug (inf, "running one thread: %s", target_pid_to_str (ptid)); | |
c906108c SS |
2022 | inf_set_threads_resume_sc (inf, thread, 0); |
2023 | } | |
2024 | ||
2025 | if (step) | |
2026 | { | |
617fd3b5 | 2027 | step_thread = inf_tid_to_thread (inf, ptid_get_tid (ptid)); |
c5aa993b | 2028 | if (!step_thread) |
617fd3b5 PA |
2029 | warning (_("Can't step thread id %s: no such thread."), |
2030 | target_pid_to_str (ptid)); | |
c906108c | 2031 | else |
617fd3b5 | 2032 | inf_debug (inf, "stepping thread: %s", target_pid_to_str (ptid)); |
c906108c SS |
2033 | } |
2034 | if (step_thread != inf->step_thread) | |
2035 | inf_set_step_thread (inf, step_thread); | |
2036 | ||
2037 | inf_debug (inf, "here we go..."); | |
2038 | inf_resume (inf); | |
2039 | } | |
942fd805 | 2040 | |
c906108c SS |
2041 | \f |
2042 | static void | |
7d85a9c0 | 2043 | gnu_kill_inferior (struct target_ops *ops) |
c906108c | 2044 | { |
c289427b | 2045 | struct proc *task = gnu_current_inf->task; |
d8734c88 | 2046 | |
c906108c SS |
2047 | if (task) |
2048 | { | |
2049 | proc_debug (task, "terminating..."); | |
2050 | task_terminate (task->port); | |
c289427b | 2051 | inf_set_pid (gnu_current_inf, -1); |
c906108c SS |
2052 | } |
2053 | target_mourn_inferior (); | |
2054 | } | |
2055 | ||
2056 | /* Clean up after the inferior dies. */ | |
c906108c | 2057 | static void |
136d6dae | 2058 | gnu_mourn_inferior (struct target_ops *ops) |
c906108c | 2059 | { |
c289427b PA |
2060 | inf_debug (gnu_current_inf, "rip"); |
2061 | inf_detach (gnu_current_inf); | |
b4d1e8c7 | 2062 | unpush_target (ops); |
c906108c SS |
2063 | generic_mourn_inferior (); |
2064 | } | |
942fd805 | 2065 | |
c906108c SS |
2066 | \f |
2067 | /* Fork an inferior process, and start debugging it. */ | |
2068 | ||
2069 | /* Set INFERIOR_PID to the first thread available in the child, if any. */ | |
2070 | static int | |
fba45db2 | 2071 | inf_pick_first_thread (void) |
c906108c | 2072 | { |
c289427b | 2073 | if (gnu_current_inf->task && gnu_current_inf->threads) |
c906108c | 2074 | /* The first thread. */ |
c289427b | 2075 | return gnu_current_inf->threads->tid; |
c906108c SS |
2076 | else |
2077 | /* What may be the next thread. */ | |
2078 | return next_thread_id; | |
2079 | } | |
2080 | ||
2081 | static struct inf * | |
fba45db2 | 2082 | cur_inf (void) |
c906108c | 2083 | { |
c289427b PA |
2084 | if (!gnu_current_inf) |
2085 | gnu_current_inf = make_inf (); | |
2086 | return gnu_current_inf; | |
c906108c SS |
2087 | } |
2088 | ||
2089 | static void | |
136d6dae VP |
2090 | gnu_create_inferior (struct target_ops *ops, |
2091 | char *exec_file, char *allargs, char **env, | |
c27cda74 | 2092 | int from_tty) |
c906108c SS |
2093 | { |
2094 | struct inf *inf = cur_inf (); | |
b4d1e8c7 | 2095 | int pid; |
c906108c SS |
2096 | |
2097 | void trace_me () | |
c5aa993b JM |
2098 | { |
2099 | /* We're in the child; make this process stop as soon as it execs. */ | |
2100 | inf_debug (inf, "tracing self"); | |
2101 | if (ptrace (PTRACE_TRACEME) != 0) | |
8a3fe4f8 | 2102 | error (_("ptrace (PTRACE_TRACEME) failed!")); |
c5aa993b | 2103 | } |
c906108c | 2104 | |
b4d1e8c7 | 2105 | inf_debug (inf, "creating inferior"); |
c906108c | 2106 | |
b4d1e8c7 | 2107 | pid = fork_inferior (exec_file, allargs, env, trace_me, NULL, NULL, NULL); |
c906108c | 2108 | |
b4d1e8c7 PA |
2109 | /* Attach to the now stopped child, which is actually a shell... */ |
2110 | inf_debug (inf, "attaching to child: %d", pid); | |
c906108c | 2111 | |
b4d1e8c7 | 2112 | inf_attach (inf, pid); |
617fd3b5 | 2113 | |
b4d1e8c7 | 2114 | push_target (ops); |
c906108c | 2115 | |
b4d1e8c7 PA |
2116 | inf->pending_execs = 2; |
2117 | inf->nomsg = 1; | |
2118 | inf->traced = 1; | |
c906108c | 2119 | |
b4d1e8c7 PA |
2120 | /* Now let the child run again, knowing that it will stop |
2121 | immediately because of the ptrace. */ | |
2122 | inf_resume (inf); | |
2123 | ||
2124 | /* We now have thread info. */ | |
2125 | thread_change_ptid (inferior_ptid, | |
2126 | ptid_build (inf->pid, 0, inf_pick_first_thread ())); | |
c906108c | 2127 | |
b4d1e8c7 | 2128 | startup_inferior (inf->pending_execs); |
c906108c | 2129 | |
cce74817 | 2130 | inf_validate_procinfo (inf); |
c906108c SS |
2131 | inf_update_signal_thread (inf); |
2132 | inf_set_traced (inf, inf->want_signals); | |
2133 | ||
2134 | /* Execing the process will have trashed our exception ports; steal them | |
2135 | back (or make sure they're restored if the user wants that). */ | |
2136 | if (inf->want_exceptions) | |
2137 | inf_steal_exc_ports (inf); | |
2138 | else | |
2139 | inf_restore_exc_ports (inf); | |
c906108c SS |
2140 | } |
2141 | ||
c906108c | 2142 | \f |
c906108c SS |
2143 | /* Attach to process PID, then initialize for debugging it |
2144 | and wait for the trace-trap that results from attaching. */ | |
2145 | static void | |
136d6dae | 2146 | gnu_attach (struct target_ops *ops, char *args, int from_tty) |
c906108c SS |
2147 | { |
2148 | int pid; | |
2149 | char *exec_file; | |
2150 | struct inf *inf = cur_inf (); | |
181e7f93 | 2151 | struct inferior *inferior; |
c906108c | 2152 | |
74164c56 | 2153 | pid = parse_pid_to_attach (args); |
c906108c | 2154 | |
74164c56 | 2155 | if (pid == getpid ()) /* Trying to masturbate? */ |
8a3fe4f8 | 2156 | error (_("I refuse to debug myself!")); |
c906108c SS |
2157 | |
2158 | if (from_tty) | |
2159 | { | |
2160 | exec_file = (char *) get_exec_file (0); | |
2161 | ||
2162 | if (exec_file) | |
2163 | printf_unfiltered ("Attaching to program `%s', pid %d\n", | |
2164 | exec_file, pid); | |
2165 | else | |
2166 | printf_unfiltered ("Attaching to pid %d\n", pid); | |
2167 | ||
2168 | gdb_flush (gdb_stdout); | |
2169 | } | |
2170 | ||
2171 | inf_debug (inf, "attaching to pid: %d", pid); | |
2172 | ||
2173 | inf_attach (inf, pid); | |
a9ab7422 | 2174 | |
b4d1e8c7 | 2175 | push_target (ops); |
a9ab7422 | 2176 | |
6c95b8df PA |
2177 | inferior = current_inferior (); |
2178 | inferior_appeared (inferior, pid); | |
181e7f93 | 2179 | inferior->attach_flag = 1; |
7f9f62ba | 2180 | |
c906108c SS |
2181 | inf_update_procs (inf); |
2182 | ||
617fd3b5 | 2183 | inferior_ptid = ptid_build (pid, 0, inf_pick_first_thread ()); |
c906108c | 2184 | |
b83266a0 SS |
2185 | /* We have to initialize the terminal settings now, since the code |
2186 | below might try to restore them. */ | |
2187 | target_terminal_init (); | |
c5aa993b | 2188 | |
c906108c SS |
2189 | /* If the process was stopped before we attached, make it continue the next |
2190 | time the user does a continue. */ | |
cce74817 JM |
2191 | inf_validate_procinfo (inf); |
2192 | ||
2193 | inf_update_signal_thread (inf); | |
2194 | inf_set_traced (inf, inf->want_signals); | |
c906108c | 2195 | |
c5aa993b | 2196 | #if 0 /* Do we need this? */ |
c906108c SS |
2197 | renumber_threads (0); /* Give our threads reasonable names. */ |
2198 | #endif | |
2199 | } | |
942fd805 | 2200 | |
c906108c SS |
2201 | \f |
2202 | /* Take a program previously attached to and detaches it. | |
2203 | The program resumes execution and will no longer stop | |
2204 | on signals, etc. We'd better not have left any breakpoints | |
2205 | in the program or it'll die when it hits one. For this | |
2206 | to work, it may be necessary for the process to have been | |
2207 | previously attached. It *might* work if the program was | |
2208 | started via fork. */ | |
2209 | static void | |
136d6dae | 2210 | gnu_detach (struct target_ops *ops, char *args, int from_tty) |
c906108c | 2211 | { |
7f9f62ba PA |
2212 | int pid; |
2213 | ||
c906108c SS |
2214 | if (from_tty) |
2215 | { | |
2216 | char *exec_file = get_exec_file (0); | |
d8734c88 | 2217 | |
c906108c SS |
2218 | if (exec_file) |
2219 | printf_unfiltered ("Detaching from program `%s' pid %d\n", | |
c289427b | 2220 | exec_file, gnu_current_inf->pid); |
c906108c | 2221 | else |
c289427b | 2222 | printf_unfiltered ("Detaching from pid %d\n", gnu_current_inf->pid); |
c906108c SS |
2223 | gdb_flush (gdb_stdout); |
2224 | } | |
c5aa993b | 2225 | |
c289427b | 2226 | pid = gnu_current_inf->pid; |
7f9f62ba | 2227 | |
c289427b | 2228 | inf_detach (gnu_current_inf); |
c906108c | 2229 | |
39f77062 | 2230 | inferior_ptid = null_ptid; |
7f9f62ba | 2231 | detach_inferior (pid); |
c906108c | 2232 | |
b4d1e8c7 | 2233 | unpush_target (ops); /* Pop out of handling an inferior */ |
c906108c | 2234 | } |
942fd805 | 2235 | \f |
c906108c | 2236 | static void |
fba45db2 | 2237 | gnu_terminal_init_inferior (void) |
c906108c | 2238 | { |
c289427b PA |
2239 | gdb_assert (gnu_current_inf); |
2240 | terminal_init_inferior_with_pgrp (gnu_current_inf->pid); | |
c906108c SS |
2241 | } |
2242 | ||
c906108c | 2243 | static void |
f9c72d52 | 2244 | gnu_stop (ptid_t ptid) |
c906108c | 2245 | { |
8a3fe4f8 | 2246 | error (_("to_stop target function not implemented")); |
c906108c SS |
2247 | } |
2248 | ||
c906108c | 2249 | static int |
28439f5e | 2250 | gnu_thread_alive (struct target_ops *ops, ptid_t ptid) |
c906108c | 2251 | { |
c289427b PA |
2252 | inf_update_procs (gnu_current_inf); |
2253 | return !!inf_tid_to_thread (gnu_current_inf, | |
617fd3b5 | 2254 | ptid_get_tid (ptid)); |
c906108c | 2255 | } |
942fd805 | 2256 | |
c906108c | 2257 | \f |
942fd805 MK |
2258 | /* Read inferior task's LEN bytes from ADDR and copy it to MYADDR in |
2259 | gdb's address space. Return 0 on failure; number of bytes read | |
2260 | otherwise. */ | |
c906108c | 2261 | int |
fba45db2 | 2262 | gnu_read_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length) |
c906108c SS |
2263 | { |
2264 | error_t err; | |
2265 | vm_address_t low_address = (vm_address_t) trunc_page (addr); | |
2266 | vm_size_t aligned_length = | |
c5aa993b JM |
2267 | (vm_size_t) round_page (addr + length) - low_address; |
2268 | pointer_t copied; | |
2269 | int copy_count; | |
c906108c SS |
2270 | |
2271 | /* Get memory from inferior with page aligned addresses */ | |
2272 | err = vm_read (task, low_address, aligned_length, &copied, ©_count); | |
2273 | if (err) | |
2274 | return 0; | |
2275 | ||
96ffcb62 | 2276 | err = hurd_safe_copyin (myaddr, (void *) (addr - low_address + copied), length); |
c906108c SS |
2277 | if (err) |
2278 | { | |
8a3fe4f8 | 2279 | warning (_("Read from inferior faulted: %s"), safe_strerror (err)); |
c906108c SS |
2280 | length = 0; |
2281 | } | |
2282 | ||
2283 | err = vm_deallocate (mach_task_self (), copied, copy_count); | |
2284 | if (err) | |
8a3fe4f8 | 2285 | warning (_("gnu_read_inferior vm_deallocate failed: %s"), safe_strerror (err)); |
c906108c SS |
2286 | |
2287 | return length; | |
2288 | } | |
2289 | ||
2290 | #define CHK_GOTO_OUT(str,ret) \ | |
2291 | do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0) | |
2292 | ||
c5aa993b JM |
2293 | struct vm_region_list |
2294 | { | |
c906108c | 2295 | struct vm_region_list *next; |
c5aa993b JM |
2296 | vm_prot_t protection; |
2297 | vm_address_t start; | |
2298 | vm_size_t length; | |
c906108c SS |
2299 | }; |
2300 | ||
c5aa993b | 2301 | struct obstack region_obstack; |
c906108c | 2302 | |
942fd805 MK |
2303 | /* Write gdb's LEN bytes from MYADDR and copy it to ADDR in inferior |
2304 | task's address space. */ | |
c906108c | 2305 | int |
fba45db2 | 2306 | gnu_write_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length) |
c906108c SS |
2307 | { |
2308 | error_t err = 0; | |
c5aa993b JM |
2309 | vm_address_t low_address = (vm_address_t) trunc_page (addr); |
2310 | vm_size_t aligned_length = | |
2311 | (vm_size_t) round_page (addr + length) - low_address; | |
2312 | pointer_t copied; | |
2313 | int copy_count; | |
2314 | int deallocate = 0; | |
c906108c | 2315 | |
c5aa993b | 2316 | char *errstr = "Bug in gnu_write_inferior"; |
c906108c SS |
2317 | |
2318 | struct vm_region_list *region_element; | |
c5aa993b | 2319 | struct vm_region_list *region_head = (struct vm_region_list *) NULL; |
c906108c SS |
2320 | |
2321 | /* Get memory from inferior with page aligned addresses */ | |
2322 | err = vm_read (task, | |
2323 | low_address, | |
2324 | aligned_length, | |
2325 | &copied, | |
2326 | ©_count); | |
2327 | CHK_GOTO_OUT ("gnu_write_inferior vm_read failed", err); | |
2328 | ||
2329 | deallocate++; | |
2330 | ||
96ffcb62 | 2331 | err = hurd_safe_copyout ((void *) (addr - low_address + copied), |
942fd805 | 2332 | myaddr, length); |
c906108c SS |
2333 | CHK_GOTO_OUT ("Write to inferior faulted", err); |
2334 | ||
2335 | obstack_init (®ion_obstack); | |
2336 | ||
2337 | /* Do writes atomically. | |
942fd805 | 2338 | First check for holes and unwritable memory. */ |
c906108c | 2339 | { |
c5aa993b JM |
2340 | vm_size_t remaining_length = aligned_length; |
2341 | vm_address_t region_address = low_address; | |
c906108c SS |
2342 | |
2343 | struct vm_region_list *scan; | |
2344 | ||
c5aa993b | 2345 | while (region_address < low_address + aligned_length) |
c906108c SS |
2346 | { |
2347 | vm_prot_t protection; | |
2348 | vm_prot_t max_protection; | |
2349 | vm_inherit_t inheritance; | |
2350 | boolean_t shared; | |
2351 | mach_port_t object_name; | |
2352 | vm_offset_t offset; | |
c5aa993b JM |
2353 | vm_size_t region_length = remaining_length; |
2354 | vm_address_t old_address = region_address; | |
2355 | ||
c906108c SS |
2356 | err = vm_region (task, |
2357 | ®ion_address, | |
2358 | ®ion_length, | |
2359 | &protection, | |
2360 | &max_protection, | |
2361 | &inheritance, | |
2362 | &shared, | |
2363 | &object_name, | |
2364 | &offset); | |
2365 | CHK_GOTO_OUT ("vm_region failed", err); | |
2366 | ||
2367 | /* Check for holes in memory */ | |
2368 | if (old_address != region_address) | |
2369 | { | |
8a3fe4f8 | 2370 | warning (_("No memory at 0x%x. Nothing written"), |
c906108c SS |
2371 | old_address); |
2372 | err = KERN_SUCCESS; | |
2373 | length = 0; | |
2374 | goto out; | |
2375 | } | |
2376 | ||
2377 | if (!(max_protection & VM_PROT_WRITE)) | |
2378 | { | |
8a3fe4f8 | 2379 | warning (_("Memory at address 0x%x is unwritable. Nothing written"), |
c906108c SS |
2380 | old_address); |
2381 | err = KERN_SUCCESS; | |
2382 | length = 0; | |
2383 | goto out; | |
2384 | } | |
2385 | ||
2386 | /* Chain the regions for later use */ | |
c5aa993b | 2387 | region_element = |
c906108c | 2388 | (struct vm_region_list *) |
c5aa993b JM |
2389 | obstack_alloc (®ion_obstack, sizeof (struct vm_region_list)); |
2390 | ||
c906108c | 2391 | region_element->protection = protection; |
c5aa993b JM |
2392 | region_element->start = region_address; |
2393 | region_element->length = region_length; | |
c906108c SS |
2394 | |
2395 | /* Chain the regions along with protections */ | |
2396 | region_element->next = region_head; | |
c5aa993b JM |
2397 | region_head = region_element; |
2398 | ||
c906108c SS |
2399 | region_address += region_length; |
2400 | remaining_length = remaining_length - region_length; | |
2401 | } | |
2402 | ||
2403 | /* If things fail after this, we give up. | |
942fd805 | 2404 | Somebody is messing up inferior_task's mappings. */ |
c5aa993b | 2405 | |
c906108c SS |
2406 | /* Enable writes to the chained vm regions */ |
2407 | for (scan = region_head; scan; scan = scan->next) | |
2408 | { | |
c906108c SS |
2409 | if (!(scan->protection & VM_PROT_WRITE)) |
2410 | { | |
2411 | err = vm_protect (task, | |
2412 | scan->start, | |
2413 | scan->length, | |
2414 | FALSE, | |
2415 | scan->protection | VM_PROT_WRITE); | |
2416 | CHK_GOTO_OUT ("vm_protect: enable write failed", err); | |
2417 | } | |
2418 | } | |
2419 | ||
2420 | err = vm_write (task, | |
2421 | low_address, | |
2422 | copied, | |
2423 | aligned_length); | |
2424 | CHK_GOTO_OUT ("vm_write failed", err); | |
c5aa993b | 2425 | |
c906108c SS |
2426 | /* Set up the original region protections, if they were changed */ |
2427 | for (scan = region_head; scan; scan = scan->next) | |
2428 | { | |
c906108c SS |
2429 | if (!(scan->protection & VM_PROT_WRITE)) |
2430 | { | |
2431 | err = vm_protect (task, | |
2432 | scan->start, | |
2433 | scan->length, | |
2434 | FALSE, | |
2435 | scan->protection); | |
2436 | CHK_GOTO_OUT ("vm_protect: enable write failed", err); | |
2437 | } | |
2438 | } | |
2439 | } | |
2440 | ||
c5aa993b | 2441 | out: |
c906108c SS |
2442 | if (deallocate) |
2443 | { | |
2444 | obstack_free (®ion_obstack, 0); | |
c5aa993b | 2445 | |
c906108c SS |
2446 | (void) vm_deallocate (mach_task_self (), |
2447 | copied, | |
2448 | copy_count); | |
2449 | } | |
2450 | ||
2451 | if (err != KERN_SUCCESS) | |
2452 | { | |
8a3fe4f8 | 2453 | warning (_("%s: %s"), errstr, mach_error_string (err)); |
c906108c SS |
2454 | return 0; |
2455 | } | |
2456 | ||
2457 | return length; | |
2458 | } | |
942fd805 | 2459 | |
c906108c | 2460 | \f |
0359ddd6 KB |
2461 | /* Return 0 on failure, number of bytes handled otherwise. TARGET |
2462 | is ignored. */ | |
c906108c | 2463 | static int |
96ffcb62 | 2464 | gnu_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write, |
043780a1 | 2465 | struct mem_attrib *attrib, |
0359ddd6 | 2466 | struct target_ops *target) |
c906108c | 2467 | { |
c289427b PA |
2468 | task_t task = (gnu_current_inf |
2469 | ? (gnu_current_inf->task | |
2470 | ? gnu_current_inf->task->port : 0) | |
942fd805 | 2471 | : 0); |
c906108c SS |
2472 | |
2473 | if (task == MACH_PORT_NULL) | |
2474 | return 0; | |
2475 | else | |
2476 | { | |
a74ce742 | 2477 | inf_debug (gnu_current_inf, "%s %s[%d] %s %s", |
5af949e3 UW |
2478 | write ? "writing" : "reading", |
2479 | paddress (target_gdbarch, memaddr), len, | |
a74ce742 | 2480 | write ? "<--" : "-->", host_address_to_string (myaddr)); |
c906108c SS |
2481 | if (write) |
2482 | return gnu_write_inferior (task, memaddr, myaddr, len); | |
2483 | else | |
c5aa993b | 2484 | return gnu_read_inferior (task, memaddr, myaddr, len); |
c906108c SS |
2485 | } |
2486 | } | |
942fd805 | 2487 | |
57e76fac MS |
2488 | /* Call FUNC on each memory region in the task. */ |
2489 | static int | |
2490 | gnu_find_memory_regions (int (*func) (CORE_ADDR, | |
2491 | unsigned long, | |
2492 | int, int, int, | |
2493 | void *), | |
2494 | void *data) | |
2495 | { | |
2496 | error_t err; | |
2497 | task_t task; | |
2498 | vm_address_t region_address, last_region_address, last_region_end; | |
2499 | vm_prot_t last_protection; | |
2500 | ||
c289427b | 2501 | if (gnu_current_inf == 0 || gnu_current_inf->task == 0) |
57e76fac | 2502 | return 0; |
c289427b | 2503 | task = gnu_current_inf->task->port; |
57e76fac MS |
2504 | if (task == MACH_PORT_NULL) |
2505 | return 0; | |
2506 | ||
2507 | region_address = last_region_address = last_region_end = VM_MIN_ADDRESS; | |
2508 | last_protection = VM_PROT_NONE; | |
2509 | while (region_address < VM_MAX_ADDRESS) | |
2510 | { | |
2511 | vm_prot_t protection; | |
2512 | vm_prot_t max_protection; | |
2513 | vm_inherit_t inheritance; | |
2514 | boolean_t shared; | |
2515 | mach_port_t object_name; | |
2516 | vm_offset_t offset; | |
2517 | vm_size_t region_length = VM_MAX_ADDRESS - region_address; | |
2518 | vm_address_t old_address = region_address; | |
2519 | ||
2520 | err = vm_region (task, | |
2521 | ®ion_address, | |
2522 | ®ion_length, | |
2523 | &protection, | |
2524 | &max_protection, | |
2525 | &inheritance, | |
2526 | &shared, | |
2527 | &object_name, | |
2528 | &offset); | |
2529 | if (err == KERN_NO_SPACE) | |
2530 | break; | |
2531 | if (err != KERN_SUCCESS) | |
2532 | { | |
8a3fe4f8 | 2533 | warning (_("vm_region failed: %s"), mach_error_string (err)); |
57e76fac MS |
2534 | return -1; |
2535 | } | |
2536 | ||
2537 | if (protection == last_protection && region_address == last_region_end) | |
2538 | /* This region is contiguous with and indistinguishable from | |
2539 | the previous one, so we just extend that one. */ | |
2540 | last_region_end = region_address += region_length; | |
2541 | else | |
2542 | { | |
2543 | /* This region is distinct from the last one we saw, so report | |
2544 | that previous one. */ | |
2545 | if (last_protection != VM_PROT_NONE) | |
2546 | (*func) (last_region_address, | |
2547 | last_region_end - last_region_address, | |
2548 | last_protection & VM_PROT_READ, | |
2549 | last_protection & VM_PROT_WRITE, | |
2550 | last_protection & VM_PROT_EXECUTE, | |
2551 | data); | |
2552 | last_region_address = region_address; | |
2553 | last_region_end = region_address += region_length; | |
2554 | last_protection = protection; | |
2555 | } | |
2556 | } | |
47f21bcc | 2557 | |
1a113c93 MS |
2558 | /* Report the final region. */ |
2559 | if (last_region_end > last_region_address && last_protection != VM_PROT_NONE) | |
2560 | (*func) (last_region_address, last_region_end - last_region_address, | |
2561 | last_protection & VM_PROT_READ, | |
2562 | last_protection & VM_PROT_WRITE, | |
2563 | last_protection & VM_PROT_EXECUTE, | |
2564 | data); | |
47f21bcc MS |
2565 | |
2566 | return 0; | |
57e76fac MS |
2567 | } |
2568 | ||
c906108c | 2569 | \f |
ed9a39eb | 2570 | /* Return printable description of proc. */ |
f90b2b1d | 2571 | char * |
ed9a39eb JM |
2572 | proc_string (struct proc *proc) |
2573 | { | |
2574 | static char tid_str[80]; | |
d8734c88 | 2575 | |
ed9a39eb JM |
2576 | if (proc_is_task (proc)) |
2577 | sprintf (tid_str, "process %d", proc->inf->pid); | |
2578 | else | |
114374a0 | 2579 | sprintf (tid_str, "Thread %d.%d", |
617fd3b5 | 2580 | proc->inf->pid, proc->tid); |
ed9a39eb JM |
2581 | return tid_str; |
2582 | } | |
2583 | ||
2584 | static char * | |
117de6a9 | 2585 | gnu_pid_to_str (struct target_ops *ops, ptid_t ptid) |
ed9a39eb | 2586 | { |
c289427b | 2587 | struct inf *inf = gnu_current_inf; |
617fd3b5 | 2588 | int tid = ptid_get_tid (ptid); |
ed9a39eb JM |
2589 | struct proc *thread = inf_tid_to_thread (inf, tid); |
2590 | ||
2591 | if (thread) | |
2592 | return proc_string (thread); | |
2593 | else | |
2594 | { | |
2595 | static char tid_str[80]; | |
d8734c88 | 2596 | |
ed9a39eb JM |
2597 | sprintf (tid_str, "bogus thread id %d", tid); |
2598 | return tid_str; | |
2599 | } | |
2600 | } | |
942fd805 | 2601 | |
ed9a39eb | 2602 | \f |
b4d1e8c7 PA |
2603 | /* Create a prototype generic GNU/Hurd target. The client can |
2604 | override it with local methods. */ | |
2605 | ||
2606 | struct target_ops * | |
2607 | gnu_target (void) | |
2608 | { | |
2609 | struct target_ops *t = inf_child_target (); | |
c906108c | 2610 | |
b4d1e8c7 PA |
2611 | t->to_shortname = "GNU"; |
2612 | t->to_longname = "GNU Hurd process"; | |
2613 | t->to_doc = "GNU Hurd process"; | |
c906108c | 2614 | |
b4d1e8c7 PA |
2615 | t->to_attach = gnu_attach; |
2616 | t->to_attach_no_wait = 1; | |
2617 | t->to_detach = gnu_detach; | |
2618 | t->to_resume = gnu_resume; | |
2619 | t->to_wait = gnu_wait; | |
2620 | t->deprecated_xfer_memory = gnu_xfer_memory; | |
2621 | t->to_find_memory_regions = gnu_find_memory_regions; | |
2622 | t->to_terminal_init = gnu_terminal_init_inferior; | |
2623 | t->to_kill = gnu_kill_inferior; | |
2624 | t->to_create_inferior = gnu_create_inferior; | |
2625 | t->to_mourn_inferior = gnu_mourn_inferior; | |
2626 | t->to_thread_alive = gnu_thread_alive; | |
2627 | t->to_pid_to_str = gnu_pid_to_str; | |
2628 | t->to_stop = gnu_stop; | |
2629 | ||
2630 | return t; | |
2631 | } | |
942fd805 | 2632 | |
c906108c | 2633 | \f |
c906108c SS |
2634 | /* User task commands. */ |
2635 | ||
2636 | struct cmd_list_element *set_task_cmd_list = 0; | |
2637 | struct cmd_list_element *show_task_cmd_list = 0; | |
2638 | /* User thread commands. */ | |
2639 | ||
2640 | /* Commands with a prefix of `set/show thread'. */ | |
2641 | extern struct cmd_list_element *thread_cmd_list; | |
2642 | struct cmd_list_element *set_thread_cmd_list = NULL; | |
2643 | struct cmd_list_element *show_thread_cmd_list = NULL; | |
2644 | ||
2645 | /* Commands with a prefix of `set/show thread default'. */ | |
2646 | struct cmd_list_element *set_thread_default_cmd_list = NULL; | |
2647 | struct cmd_list_element *show_thread_default_cmd_list = NULL; | |
2648 | ||
2649 | static void | |
2650 | set_thread_cmd (char *args, int from_tty) | |
2651 | { | |
9846de1b | 2652 | printf_unfiltered ("\"set thread\" must be followed by the name of a thread property, or \"default\".\n"); |
c906108c SS |
2653 | } |
2654 | ||
2655 | static void | |
2656 | show_thread_cmd (char *args, int from_tty) | |
2657 | { | |
2658 | printf_unfiltered ("\"show thread\" must be followed by the name of a thread property, or \"default\".\n"); | |
2659 | } | |
2660 | ||
2661 | static void | |
2662 | set_thread_default_cmd (char *args, int from_tty) | |
2663 | { | |
2664 | printf_unfiltered ("\"set thread default\" must be followed by the name of a thread property.\n"); | |
2665 | } | |
2666 | ||
2667 | static void | |
2668 | show_thread_default_cmd (char *args, int from_tty) | |
2669 | { | |
2670 | printf_unfiltered ("\"show thread default\" must be followed by the name of a thread property.\n"); | |
2671 | } | |
2672 | ||
2673 | static int | |
2674 | parse_int_arg (char *args, char *cmd_prefix) | |
2675 | { | |
2676 | if (args) | |
2677 | { | |
2678 | char *arg_end; | |
2679 | int val = strtoul (args, &arg_end, 10); | |
d8734c88 | 2680 | |
c906108c SS |
2681 | if (*args && *arg_end == '\0') |
2682 | return val; | |
2683 | } | |
8a3fe4f8 | 2684 | error (_("Illegal argument for \"%s\" command, should be an integer."), cmd_prefix); |
c906108c SS |
2685 | } |
2686 | ||
2687 | static int | |
2688 | _parse_bool_arg (char *args, char *t_val, char *f_val, char *cmd_prefix) | |
2689 | { | |
2690 | if (!args || strcmp (args, t_val) == 0) | |
2691 | return 1; | |
2692 | else if (strcmp (args, f_val) == 0) | |
2693 | return 0; | |
2694 | else | |
8a3fe4f8 | 2695 | error (_("Illegal argument for \"%s\" command, should be \"%s\" or \"%s\"."), |
c906108c SS |
2696 | cmd_prefix, t_val, f_val); |
2697 | } | |
2698 | ||
2699 | #define parse_bool_arg(args, cmd_prefix) \ | |
2700 | _parse_bool_arg (args, "on", "off", cmd_prefix) | |
2701 | ||
2702 | static void | |
2703 | check_empty (char *args, char *cmd_prefix) | |
2704 | { | |
2705 | if (args) | |
8a3fe4f8 | 2706 | error (_("Garbage after \"%s\" command: `%s'"), cmd_prefix, args); |
c906108c SS |
2707 | } |
2708 | ||
2709 | /* Returns the alive thread named by INFERIOR_PID, or signals an error. */ | |
2710 | static struct proc * | |
fba45db2 | 2711 | cur_thread (void) |
c906108c SS |
2712 | { |
2713 | struct inf *inf = cur_inf (); | |
617fd3b5 PA |
2714 | struct proc *thread = inf_tid_to_thread (inf, |
2715 | ptid_get_tid (inferior_ptid)); | |
c906108c | 2716 | if (!thread) |
8a3fe4f8 | 2717 | error (_("No current thread.")); |
c906108c SS |
2718 | return thread; |
2719 | } | |
2720 | ||
2721 | /* Returns the current inferior, but signals an error if it has no task. */ | |
2722 | static struct inf * | |
fba45db2 | 2723 | active_inf (void) |
c906108c SS |
2724 | { |
2725 | struct inf *inf = cur_inf (); | |
d8734c88 | 2726 | |
c5aa993b | 2727 | if (!inf->task) |
8a3fe4f8 | 2728 | error (_("No current process.")); |
c906108c SS |
2729 | return inf; |
2730 | } | |
942fd805 | 2731 | |
c906108c SS |
2732 | \f |
2733 | static void | |
2734 | set_task_pause_cmd (char *args, int from_tty) | |
2735 | { | |
2736 | struct inf *inf = cur_inf (); | |
2737 | int old_sc = inf->pause_sc; | |
2738 | ||
2739 | inf->pause_sc = parse_bool_arg (args, "set task pause"); | |
2740 | ||
2741 | if (old_sc == 0 && inf->pause_sc != 0) | |
2742 | /* If the task is currently unsuspended, immediately suspend it, | |
2743 | otherwise wait until the next time it gets control. */ | |
2744 | inf_suspend (inf); | |
2745 | } | |
2746 | ||
2747 | static void | |
2748 | show_task_pause_cmd (char *args, int from_tty) | |
2749 | { | |
2750 | struct inf *inf = cur_inf (); | |
d8734c88 | 2751 | |
c906108c SS |
2752 | check_empty (args, "show task pause"); |
2753 | printf_unfiltered ("The inferior task %s suspended while gdb has control.\n", | |
2754 | inf->task | |
2755 | ? (inf->pause_sc == 0 ? "isn't" : "is") | |
2756 | : (inf->pause_sc == 0 ? "won't be" : "will be")); | |
2757 | } | |
2758 | ||
2759 | static void | |
2760 | set_task_detach_sc_cmd (char *args, int from_tty) | |
2761 | { | |
2762 | cur_inf ()->detach_sc = parse_int_arg (args, "set task detach-suspend-count"); | |
2763 | } | |
2764 | ||
2765 | static void | |
2766 | show_task_detach_sc_cmd (char *args, int from_tty) | |
2767 | { | |
2768 | check_empty (args, "show task detach-suspend-count"); | |
2769 | printf_unfiltered ("The inferior task will be left with a suspend count of %d when detaching.\n", | |
2770 | cur_inf ()->detach_sc); | |
2771 | } | |
942fd805 | 2772 | |
c906108c SS |
2773 | \f |
2774 | static void | |
2775 | set_thread_default_pause_cmd (char *args, int from_tty) | |
2776 | { | |
2777 | struct inf *inf = cur_inf (); | |
d8734c88 | 2778 | |
c906108c SS |
2779 | inf->default_thread_pause_sc = |
2780 | parse_bool_arg (args, "set thread default pause") ? 0 : 1; | |
2781 | } | |
2782 | ||
2783 | static void | |
2784 | show_thread_default_pause_cmd (char *args, int from_tty) | |
2785 | { | |
2786 | struct inf *inf = cur_inf (); | |
2787 | int sc = inf->default_thread_pause_sc; | |
d8734c88 | 2788 | |
c906108c SS |
2789 | check_empty (args, "show thread default pause"); |
2790 | printf_unfiltered ("New threads %s suspended while gdb has control%s.\n", | |
2791 | sc ? "are" : "aren't", | |
2792 | !sc && inf->pause_sc ? " (but the task is)" : ""); | |
2793 | } | |
2794 | ||
2795 | static void | |
2796 | set_thread_default_run_cmd (char *args, int from_tty) | |
2797 | { | |
2798 | struct inf *inf = cur_inf (); | |
d8734c88 | 2799 | |
c906108c SS |
2800 | inf->default_thread_run_sc = |
2801 | parse_bool_arg (args, "set thread default run") ? 0 : 1; | |
2802 | } | |
2803 | ||
2804 | static void | |
2805 | show_thread_default_run_cmd (char *args, int from_tty) | |
2806 | { | |
2807 | struct inf *inf = cur_inf (); | |
d8734c88 | 2808 | |
c906108c SS |
2809 | check_empty (args, "show thread default run"); |
2810 | printf_unfiltered ("New threads %s allowed to run.\n", | |
2811 | inf->default_thread_run_sc == 0 ? "are" : "aren't"); | |
2812 | } | |
2813 | ||
2814 | static void | |
2815 | set_thread_default_detach_sc_cmd (char *args, int from_tty) | |
2816 | { | |
2817 | cur_inf ()->default_thread_detach_sc = | |
2818 | parse_int_arg (args, "set thread default detach-suspend-count"); | |
2819 | } | |
2820 | ||
2821 | static void | |
2822 | show_thread_default_detach_sc_cmd (char *args, int from_tty) | |
2823 | { | |
2824 | check_empty (args, "show thread default detach-suspend-count"); | |
2825 | printf_unfiltered ("New threads will get a detach-suspend-count of %d.\n", | |
2826 | cur_inf ()->default_thread_detach_sc); | |
2827 | } | |
942fd805 | 2828 | |
c906108c SS |
2829 | \f |
2830 | /* Steal a send right called NAME in the inferior task, and make it PROC's | |
2831 | saved exception port. */ | |
2832 | static void | |
2833 | steal_exc_port (struct proc *proc, mach_port_t name) | |
2834 | { | |
2835 | error_t err; | |
2836 | mach_port_t port; | |
2837 | mach_msg_type_name_t port_type; | |
2838 | ||
2839 | if (!proc || !proc->inf->task) | |
8a3fe4f8 | 2840 | error (_("No inferior task.")); |
c906108c SS |
2841 | |
2842 | err = mach_port_extract_right (proc->inf->task->port, | |
2843 | name, MACH_MSG_TYPE_COPY_SEND, | |
2844 | &port, &port_type); | |
2845 | if (err) | |
8a3fe4f8 | 2846 | error (_("Couldn't extract send right %d from inferior: %s"), |
dc672865 | 2847 | name, safe_strerror (err)); |
c906108c SS |
2848 | |
2849 | if (proc->saved_exc_port) | |
2850 | /* Get rid of our reference to the old one. */ | |
2851 | mach_port_deallocate (mach_task_self (), proc->saved_exc_port); | |
2852 | ||
2853 | proc->saved_exc_port = port; | |
2854 | ||
c5aa993b | 2855 | if (!proc->exc_port) |
c906108c SS |
2856 | /* If PROC is a thread, we may not have set its exception port before. |
2857 | We can't use proc_steal_exc_port because it also sets saved_exc_port. */ | |
2858 | { | |
c5aa993b JM |
2859 | proc->exc_port = proc->inf->event_port; |
2860 | err = proc_set_exception_port (proc, proc->exc_port); | |
8a3fe4f8 | 2861 | error (_("Can't set exception port for %s: %s"), |
dc672865 | 2862 | proc_string (proc), safe_strerror (err)); |
c906108c SS |
2863 | } |
2864 | } | |
942fd805 | 2865 | |
c906108c SS |
2866 | static void |
2867 | set_task_exc_port_cmd (char *args, int from_tty) | |
2868 | { | |
2869 | struct inf *inf = cur_inf (); | |
d8734c88 | 2870 | |
c906108c | 2871 | if (!args) |
8a3fe4f8 | 2872 | error (_("No argument to \"set task exception-port\" command.")); |
c906108c SS |
2873 | steal_exc_port (inf->task, parse_and_eval_address (args)); |
2874 | } | |
2875 | ||
c5aa993b | 2876 | static void |
c906108c SS |
2877 | set_stopped_cmd (char *args, int from_tty) |
2878 | { | |
2879 | cur_inf ()->stopped = _parse_bool_arg (args, "yes", "no", "set stopped"); | |
2880 | } | |
2881 | ||
2882 | static void | |
2883 | show_stopped_cmd (char *args, int from_tty) | |
2884 | { | |
2885 | struct inf *inf = active_inf (); | |
d8734c88 | 2886 | |
c906108c SS |
2887 | check_empty (args, "show stopped"); |
2888 | printf_unfiltered ("The inferior process %s stopped.\n", | |
2889 | inf->stopped ? "is" : "isn't"); | |
2890 | } | |
2891 | ||
c5aa993b | 2892 | static void |
c906108c SS |
2893 | set_sig_thread_cmd (char *args, int from_tty) |
2894 | { | |
c906108c SS |
2895 | struct inf *inf = cur_inf (); |
2896 | ||
c5aa993b | 2897 | if (!args || (!isdigit (*args) && strcmp (args, "none") != 0)) |
8a3fe4f8 AC |
2898 | error (_("Illegal argument to \"set signal-thread\" command.\n" |
2899 | "Should be an integer thread ID, or `none'.")); | |
c906108c SS |
2900 | |
2901 | if (strcmp (args, "none") == 0) | |
2902 | inf->signal_thread = 0; | |
2903 | else | |
2904 | { | |
617fd3b5 | 2905 | int tid = ptid_get_tid (thread_id_to_pid (atoi (args))); |
d8734c88 | 2906 | |
c906108c | 2907 | if (tid < 0) |
8a3fe4f8 AC |
2908 | error (_("Thread ID %s not known. Use the \"info threads\" command to\n" |
2909 | "see the IDs of currently known threads."), args); | |
c906108c SS |
2910 | inf->signal_thread = inf_tid_to_thread (inf, tid); |
2911 | } | |
2912 | } | |
2913 | ||
2914 | static void | |
2915 | show_sig_thread_cmd (char *args, int from_tty) | |
2916 | { | |
2917 | struct inf *inf = active_inf (); | |
d8734c88 | 2918 | |
c906108c SS |
2919 | check_empty (args, "show signal-thread"); |
2920 | if (inf->signal_thread) | |
2921 | printf_unfiltered ("The signal thread is %s.\n", | |
2922 | proc_string (inf->signal_thread)); | |
2923 | else | |
2924 | printf_unfiltered ("There is no signal thread.\n"); | |
2925 | } | |
942fd805 | 2926 | |
c906108c | 2927 | \f |
c5aa993b | 2928 | static void |
c906108c SS |
2929 | set_signals_cmd (char *args, int from_tty) |
2930 | { | |
c906108c SS |
2931 | struct inf *inf = cur_inf (); |
2932 | ||
2933 | inf->want_signals = parse_bool_arg (args, "set signals"); | |
2934 | ||
2935 | if (inf->task && inf->want_signals != inf->traced) | |
2936 | /* Make this take effect immediately in a running process. */ | |
2937 | inf_set_traced (inf, inf->want_signals); | |
2938 | } | |
2939 | ||
2940 | static void | |
2941 | show_signals_cmd (char *args, int from_tty) | |
2942 | { | |
2943 | struct inf *inf = cur_inf (); | |
d8734c88 | 2944 | |
c906108c SS |
2945 | check_empty (args, "show signals"); |
2946 | printf_unfiltered ("The inferior process's signals %s intercepted.\n", | |
2947 | inf->task | |
2948 | ? (inf->traced ? "are" : "aren't") | |
2949 | : (inf->want_signals ? "will be" : "won't be")); | |
2950 | } | |
2951 | ||
c5aa993b | 2952 | static void |
c906108c SS |
2953 | set_exceptions_cmd (char *args, int from_tty) |
2954 | { | |
2955 | struct inf *inf = cur_inf (); | |
2956 | int val = parse_bool_arg (args, "set exceptions"); | |
2957 | ||
2958 | if (inf->task && inf->want_exceptions != val) | |
2959 | /* Make this take effect immediately in a running process. */ | |
c5aa993b | 2960 | /* XXX */ ; |
c906108c SS |
2961 | |
2962 | inf->want_exceptions = val; | |
2963 | } | |
2964 | ||
2965 | static void | |
2966 | show_exceptions_cmd (char *args, int from_tty) | |
2967 | { | |
2968 | struct inf *inf = cur_inf (); | |
d8734c88 | 2969 | |
c906108c SS |
2970 | check_empty (args, "show exceptions"); |
2971 | printf_unfiltered ("Exceptions in the inferior %s trapped.\n", | |
2972 | inf->task | |
2973 | ? (inf->want_exceptions ? "are" : "aren't") | |
2974 | : (inf->want_exceptions ? "will be" : "won't be")); | |
2975 | } | |
942fd805 | 2976 | |
c906108c SS |
2977 | \f |
2978 | static void | |
2979 | set_task_cmd (char *args, int from_tty) | |
2980 | { | |
942fd805 MK |
2981 | printf_unfiltered ("\"set task\" must be followed by the name" |
2982 | " of a task property.\n"); | |
c906108c SS |
2983 | } |
2984 | ||
2985 | static void | |
2986 | show_task_cmd (char *args, int from_tty) | |
2987 | { | |
2988 | struct inf *inf = cur_inf (); | |
2989 | ||
2990 | check_empty (args, "show task"); | |
2991 | ||
2992 | show_signals_cmd (0, from_tty); | |
2993 | show_exceptions_cmd (0, from_tty); | |
2994 | show_task_pause_cmd (0, from_tty); | |
2995 | ||
2996 | if (inf->pause_sc == 0) | |
2997 | show_thread_default_pause_cmd (0, from_tty); | |
2998 | show_thread_default_run_cmd (0, from_tty); | |
2999 | ||
3000 | if (inf->task) | |
3001 | { | |
3002 | show_stopped_cmd (0, from_tty); | |
3003 | show_sig_thread_cmd (0, from_tty); | |
3004 | } | |
3005 | ||
3006 | if (inf->detach_sc != 0) | |
3007 | show_task_detach_sc_cmd (0, from_tty); | |
3008 | if (inf->default_thread_detach_sc != 0) | |
3009 | show_thread_default_detach_sc_cmd (0, from_tty); | |
3010 | } | |
942fd805 | 3011 | |
c906108c SS |
3012 | \f |
3013 | static void | |
3014 | set_noninvasive_cmd (char *args, int from_tty) | |
3015 | { | |
3016 | /* Invert the sense of the arg for each component. */ | |
3017 | char *inv_args = parse_bool_arg (args, "set noninvasive") ? "off" : "on"; | |
3018 | ||
3019 | set_task_pause_cmd (inv_args, from_tty); | |
3020 | set_signals_cmd (inv_args, from_tty); | |
3021 | set_exceptions_cmd (inv_args, from_tty); | |
3022 | } | |
942fd805 | 3023 | |
c906108c SS |
3024 | \f |
3025 | static void | |
3026 | info_port_rights (char *args, mach_port_type_t only) | |
3027 | { | |
3028 | struct inf *inf = active_inf (); | |
3d6d86c6 | 3029 | struct value *vmark = value_mark (); |
c906108c SS |
3030 | |
3031 | if (args) | |
3032 | /* Explicit list of port rights. */ | |
3033 | { | |
3034 | while (*args) | |
3035 | { | |
3d6d86c6 | 3036 | struct value *val = parse_to_comma_and_eval (&args); |
c906108c SS |
3037 | long right = value_as_long (val); |
3038 | error_t err = | |
d8734c88 MS |
3039 | print_port_info (right, 0, inf->task->port, PORTINFO_DETAILS, |
3040 | stdout); | |
3041 | ||
c906108c | 3042 | if (err) |
8a3fe4f8 | 3043 | error (_("%ld: %s."), right, safe_strerror (err)); |
c906108c SS |
3044 | } |
3045 | } | |
3046 | else | |
3047 | /* Print all of them. */ | |
3048 | { | |
3049 | error_t err = | |
d8734c88 MS |
3050 | print_task_ports_info (inf->task->port, only, PORTINFO_DETAILS, |
3051 | stdout); | |
c906108c | 3052 | if (err) |
8a3fe4f8 | 3053 | error (_("%s."), safe_strerror (err)); |
c906108c SS |
3054 | } |
3055 | ||
3056 | value_free_to_mark (vmark); | |
3057 | } | |
3058 | ||
3059 | static void | |
3060 | info_send_rights_cmd (char *args, int from_tty) | |
3061 | { | |
3062 | info_port_rights (args, MACH_PORT_TYPE_SEND); | |
3063 | } | |
942fd805 | 3064 | |
c906108c SS |
3065 | static void |
3066 | info_recv_rights_cmd (char *args, int from_tty) | |
3067 | { | |
3068 | info_port_rights (args, MACH_PORT_TYPE_RECEIVE); | |
3069 | } | |
942fd805 | 3070 | |
c906108c SS |
3071 | static void |
3072 | info_port_sets_cmd (char *args, int from_tty) | |
3073 | { | |
3074 | info_port_rights (args, MACH_PORT_TYPE_PORT_SET); | |
3075 | } | |
942fd805 | 3076 | |
c906108c SS |
3077 | static void |
3078 | info_dead_names_cmd (char *args, int from_tty) | |
3079 | { | |
3080 | info_port_rights (args, MACH_PORT_TYPE_DEAD_NAME); | |
3081 | } | |
942fd805 | 3082 | |
c906108c SS |
3083 | static void |
3084 | info_port_rights_cmd (char *args, int from_tty) | |
3085 | { | |
3086 | info_port_rights (args, ~0); | |
3087 | } | |
942fd805 | 3088 | |
c906108c | 3089 | \f |
c5aa993b | 3090 | static void |
942fd805 | 3091 | add_task_commands (void) |
c906108c | 3092 | { |
1a966eab AC |
3093 | add_cmd ("pause", class_run, set_thread_default_pause_cmd, _("\ |
3094 | Set whether the new threads are suspended while gdb has control.\n\ | |
942fd805 MK |
3095 | This property normally has no effect because the whole task is\n\ |
3096 | suspended, however, that may be disabled with \"set task pause off\".\n\ | |
1a966eab | 3097 | The default value is \"off\"."), |
c906108c | 3098 | &set_thread_default_cmd_list); |
1a966eab AC |
3099 | add_cmd ("pause", no_class, show_thread_default_pause_cmd, _("\ |
3100 | Show whether new threads are suspended while gdb has control."), | |
c906108c | 3101 | &show_thread_default_cmd_list); |
942fd805 | 3102 | |
1a966eab AC |
3103 | add_cmd ("run", class_run, set_thread_default_run_cmd, _("\ |
3104 | Set whether new threads are allowed to run (once gdb has noticed them)."), | |
c906108c | 3105 | &set_thread_default_cmd_list); |
1a966eab AC |
3106 | add_cmd ("run", no_class, show_thread_default_run_cmd, _("\ |
3107 | Show whether new threads are allowed to run (once gdb has noticed them)."), | |
c906108c | 3108 | &show_thread_default_cmd_list); |
942fd805 | 3109 | |
c906108c | 3110 | add_cmd ("detach-suspend-count", class_run, set_thread_default_detach_sc_cmd, |
1a966eab | 3111 | _("Set the default detach-suspend-count value for new threads."), |
c906108c SS |
3112 | &set_thread_default_cmd_list); |
3113 | add_cmd ("detach-suspend-count", no_class, show_thread_default_detach_sc_cmd, | |
1a966eab | 3114 | _("Show the default detach-suspend-count value for new threads."), |
c906108c SS |
3115 | &show_thread_default_cmd_list); |
3116 | ||
1a966eab AC |
3117 | add_cmd ("signals", class_run, set_signals_cmd, _("\ |
3118 | Set whether the inferior process's signals will be intercepted.\n\ | |
3119 | Mach exceptions (such as breakpoint traps) are not affected."), | |
c906108c SS |
3120 | &setlist); |
3121 | add_alias_cmd ("sigs", "signals", class_run, 1, &setlist); | |
1a966eab AC |
3122 | add_cmd ("signals", no_class, show_signals_cmd, _("\ |
3123 | Show whether the inferior process's signals will be intercepted."), | |
c906108c SS |
3124 | &showlist); |
3125 | add_alias_cmd ("sigs", "signals", no_class, 1, &showlist); | |
3126 | ||
1a966eab AC |
3127 | add_cmd ("signal-thread", class_run, set_sig_thread_cmd, _("\ |
3128 | Set the thread that gdb thinks is the libc signal thread.\n\ | |
3129 | This thread is run when delivering a signal to a non-stopped process."), | |
c906108c SS |
3130 | &setlist); |
3131 | add_alias_cmd ("sigthread", "signal-thread", class_run, 1, &setlist); | |
1a966eab AC |
3132 | add_cmd ("signal-thread", no_class, show_sig_thread_cmd, _("\ |
3133 | Set the thread that gdb thinks is the libc signal thread."), | |
c906108c SS |
3134 | &showlist); |
3135 | add_alias_cmd ("sigthread", "signal-thread", no_class, 1, &showlist); | |
3136 | ||
1a966eab AC |
3137 | add_cmd ("stopped", class_run, set_stopped_cmd, _("\ |
3138 | Set whether gdb thinks the inferior process is stopped as with SIGSTOP.\n\ | |
3139 | Stopped process will be continued by sending them a signal."), | |
c906108c | 3140 | &setlist); |
fe79276f | 3141 | add_cmd ("stopped", no_class, show_stopped_cmd, _("\ |
1a966eab | 3142 | Show whether gdb thinks the inferior process is stopped as with SIGSTOP."), |
c906108c SS |
3143 | &showlist); |
3144 | ||
1a966eab AC |
3145 | add_cmd ("exceptions", class_run, set_exceptions_cmd, _("\ |
3146 | Set whether exceptions in the inferior process will be trapped.\n\ | |
942fd805 | 3147 | When exceptions are turned off, neither breakpoints nor single-stepping\n\ |
1a966eab | 3148 | will work."), |
c906108c SS |
3149 | &setlist); |
3150 | /* Allow `set exc' despite conflict with `set exception-port'. */ | |
3151 | add_alias_cmd ("exc", "exceptions", class_run, 1, &setlist); | |
1a966eab AC |
3152 | add_cmd ("exceptions", no_class, show_exceptions_cmd, _("\ |
3153 | Show whether exceptions in the inferior process will be trapped."), | |
c906108c SS |
3154 | &showlist); |
3155 | ||
3156 | add_prefix_cmd ("task", no_class, set_task_cmd, | |
1bedd215 | 3157 | _("Command prefix for setting task attributes."), |
c906108c SS |
3158 | &set_task_cmd_list, "set task ", 0, &setlist); |
3159 | add_prefix_cmd ("task", no_class, show_task_cmd, | |
1bedd215 | 3160 | _("Command prefix for showing task attributes."), |
c906108c SS |
3161 | &show_task_cmd_list, "show task ", 0, &showlist); |
3162 | ||
1a966eab AC |
3163 | add_cmd ("pause", class_run, set_task_pause_cmd, _("\ |
3164 | Set whether the task is suspended while gdb has control.\n\ | |
942fd805 MK |
3165 | A value of \"on\" takes effect immediately, otherwise nothing happens\n\ |
3166 | until the next time the program is continued.\n\ | |
3167 | When setting this to \"off\", \"set thread default pause on\" can be\n\ | |
1a966eab | 3168 | used to pause individual threads by default instead."), |
c906108c SS |
3169 | &set_task_cmd_list); |
3170 | add_cmd ("pause", no_class, show_task_pause_cmd, | |
1a966eab | 3171 | _("Show whether the task is suspended while gdb has control."), |
c906108c | 3172 | &show_task_cmd_list); |
942fd805 | 3173 | |
c906108c | 3174 | add_cmd ("detach-suspend-count", class_run, set_task_detach_sc_cmd, |
1a966eab | 3175 | _("Set the suspend count will leave on the thread when detaching."), |
c906108c SS |
3176 | &set_task_cmd_list); |
3177 | add_cmd ("detach-suspend-count", no_class, show_task_detach_sc_cmd, | |
1a966eab | 3178 | _("Show the suspend count will leave on the thread when detaching."), |
c906108c SS |
3179 | &show_task_cmd_list); |
3180 | ||
1a966eab AC |
3181 | add_cmd ("exception-port", no_class, set_task_exc_port_cmd, _("\ |
3182 | Set the task exception port to which we forward exceptions.\n\ | |
3183 | The argument should be the value of the send right in the task."), | |
c906108c SS |
3184 | &set_task_cmd_list); |
3185 | add_alias_cmd ("excp", "exception-port", no_class, 1, &set_task_cmd_list); | |
942fd805 MK |
3186 | add_alias_cmd ("exc-port", "exception-port", no_class, 1, |
3187 | &set_task_cmd_list); | |
c906108c SS |
3188 | |
3189 | /* A convenient way of turning on all options require to noninvasively | |
3190 | debug running tasks. */ | |
1a966eab AC |
3191 | add_cmd ("noninvasive", no_class, set_noninvasive_cmd, _("\ |
3192 | Set task options so that we interfere as little as possible.\n\ | |
942fd805 | 3193 | This is the same as setting `task pause', `exceptions', and\n\ |
1a966eab | 3194 | `signals' to the opposite value."), |
c906108c SS |
3195 | &setlist); |
3196 | ||
3197 | /* Commands to show information about the task's ports. */ | |
3198 | add_cmd ("send-rights", class_info, info_send_rights_cmd, | |
1a966eab | 3199 | _("Show information about the task's send rights"), |
c906108c SS |
3200 | &infolist); |
3201 | add_cmd ("receive-rights", class_info, info_recv_rights_cmd, | |
1a966eab | 3202 | _("Show information about the task's receive rights"), |
c906108c | 3203 | &infolist); |
942fd805 | 3204 | add_cmd ("port-rights", class_info, info_port_rights_cmd, |
1a966eab | 3205 | _("Show information about the task's port rights"), |
c906108c SS |
3206 | &infolist); |
3207 | add_cmd ("port-sets", class_info, info_port_sets_cmd, | |
1a966eab | 3208 | _("Show information about the task's port sets"), |
c906108c SS |
3209 | &infolist); |
3210 | add_cmd ("dead-names", class_info, info_dead_names_cmd, | |
1a966eab | 3211 | _("Show information about the task's dead names"), |
c906108c SS |
3212 | &infolist); |
3213 | add_info_alias ("ports", "port-rights", 1); | |
3214 | add_info_alias ("port", "port-rights", 1); | |
3215 | add_info_alias ("psets", "port-sets", 1); | |
3216 | } | |
c906108c | 3217 | |
942fd805 | 3218 | \f |
c906108c SS |
3219 | static void |
3220 | set_thread_pause_cmd (char *args, int from_tty) | |
3221 | { | |
3222 | struct proc *thread = cur_thread (); | |
3223 | int old_sc = thread->pause_sc; | |
d8734c88 | 3224 | |
c906108c SS |
3225 | thread->pause_sc = parse_bool_arg (args, "set thread pause"); |
3226 | if (old_sc == 0 && thread->pause_sc != 0 && thread->inf->pause_sc == 0) | |
3227 | /* If the task is currently unsuspended, immediately suspend it, | |
3228 | otherwise wait until the next time it gets control. */ | |
3229 | inf_suspend (thread->inf); | |
3230 | } | |
3231 | ||
3232 | static void | |
3233 | show_thread_pause_cmd (char *args, int from_tty) | |
3234 | { | |
3235 | struct proc *thread = cur_thread (); | |
3236 | int sc = thread->pause_sc; | |
d8734c88 | 3237 | |
c906108c SS |
3238 | check_empty (args, "show task pause"); |
3239 | printf_unfiltered ("Thread %s %s suspended while gdb has control%s.\n", | |
3240 | proc_string (thread), | |
3241 | sc ? "is" : "isn't", | |
942fd805 | 3242 | !sc && thread->inf->pause_sc ? " (but the task is)" : ""); |
c906108c SS |
3243 | } |
3244 | ||
3245 | static void | |
3246 | set_thread_run_cmd (char *args, int from_tty) | |
3247 | { | |
3248 | struct proc *thread = cur_thread (); | |
d8734c88 | 3249 | |
c906108c SS |
3250 | thread->run_sc = parse_bool_arg (args, "set thread run") ? 0 : 1; |
3251 | } | |
3252 | ||
3253 | static void | |
3254 | show_thread_run_cmd (char *args, int from_tty) | |
3255 | { | |
3256 | struct proc *thread = cur_thread (); | |
d8734c88 | 3257 | |
c906108c SS |
3258 | check_empty (args, "show thread run"); |
3259 | printf_unfiltered ("Thread %s %s allowed to run.", | |
3260 | proc_string (thread), | |
3261 | thread->run_sc == 0 ? "is" : "isn't"); | |
3262 | } | |
3263 | ||
3264 | static void | |
3265 | set_thread_detach_sc_cmd (char *args, int from_tty) | |
3266 | { | |
942fd805 MK |
3267 | cur_thread ()->detach_sc = parse_int_arg (args, |
3268 | "set thread detach-suspend-count"); | |
c906108c SS |
3269 | } |
3270 | ||
3271 | static void | |
3272 | show_thread_detach_sc_cmd (char *args, int from_tty) | |
3273 | { | |
3274 | struct proc *thread = cur_thread (); | |
d8734c88 | 3275 | |
c906108c | 3276 | check_empty (args, "show thread detach-suspend-count"); |
942fd805 MK |
3277 | printf_unfiltered ("Thread %s will be left with a suspend count" |
3278 | " of %d when detaching.\n", | |
c906108c SS |
3279 | proc_string (thread), |
3280 | thread->detach_sc); | |
3281 | } | |
3282 | ||
3283 | static void | |
3284 | set_thread_exc_port_cmd (char *args, int from_tty) | |
3285 | { | |
3286 | struct proc *thread = cur_thread (); | |
d8734c88 | 3287 | |
c906108c | 3288 | if (!args) |
8a3fe4f8 | 3289 | error (_("No argument to \"set thread exception-port\" command.")); |
c906108c SS |
3290 | steal_exc_port (thread, parse_and_eval_address (args)); |
3291 | } | |
3292 | ||
3293 | #if 0 | |
3294 | static void | |
3295 | show_thread_cmd (char *args, int from_tty) | |
3296 | { | |
3297 | struct proc *thread = cur_thread (); | |
d8734c88 | 3298 | |
c906108c SS |
3299 | check_empty (args, "show thread"); |
3300 | show_thread_run_cmd (0, from_tty); | |
3301 | show_thread_pause_cmd (0, from_tty); | |
3302 | if (thread->detach_sc != 0) | |
3303 | show_thread_detach_sc_cmd (0, from_tty); | |
3304 | } | |
3305 | #endif | |
3306 | ||
3307 | static void | |
3308 | thread_takeover_sc_cmd (char *args, int from_tty) | |
3309 | { | |
3310 | struct proc *thread = cur_thread (); | |
d8734c88 | 3311 | |
c906108c SS |
3312 | thread_basic_info_data_t _info; |
3313 | thread_basic_info_t info = &_info; | |
3314 | mach_msg_type_number_t info_len = THREAD_BASIC_INFO_COUNT; | |
3315 | error_t err = | |
c5aa993b | 3316 | thread_info (thread->port, THREAD_BASIC_INFO, (int *) &info, &info_len); |
c906108c | 3317 | if (err) |
8a3fe4f8 | 3318 | error (("%s."), safe_strerror (err)); |
c906108c SS |
3319 | thread->sc = info->suspend_count; |
3320 | if (from_tty) | |
3321 | printf_unfiltered ("Suspend count was %d.\n", thread->sc); | |
3322 | if (info != &_info) | |
942fd805 MK |
3323 | vm_deallocate (mach_task_self (), (vm_address_t) info, |
3324 | info_len * sizeof (int)); | |
c906108c SS |
3325 | } |
3326 | ||
942fd805 MK |
3327 | \f |
3328 | static void | |
3329 | add_thread_commands (void) | |
c906108c SS |
3330 | { |
3331 | add_prefix_cmd ("thread", no_class, set_thread_cmd, | |
1bedd215 | 3332 | _("Command prefix for setting thread properties."), |
c906108c SS |
3333 | &set_thread_cmd_list, "set thread ", 0, &setlist); |
3334 | add_prefix_cmd ("default", no_class, show_thread_cmd, | |
1bedd215 | 3335 | _("Command prefix for setting default thread properties."), |
c906108c SS |
3336 | &set_thread_default_cmd_list, "set thread default ", 0, |
3337 | &set_thread_cmd_list); | |
3338 | add_prefix_cmd ("thread", no_class, set_thread_default_cmd, | |
1bedd215 | 3339 | _("Command prefix for showing thread properties."), |
c906108c SS |
3340 | &show_thread_cmd_list, "show thread ", 0, &showlist); |
3341 | add_prefix_cmd ("default", no_class, show_thread_default_cmd, | |
1bedd215 | 3342 | _("Command prefix for showing default thread properties."), |
c906108c SS |
3343 | &show_thread_default_cmd_list, "show thread default ", 0, |
3344 | &show_thread_cmd_list); | |
3345 | ||
1a966eab AC |
3346 | add_cmd ("pause", class_run, set_thread_pause_cmd, _("\ |
3347 | Set whether the current thread is suspended while gdb has control.\n\ | |
942fd805 MK |
3348 | A value of \"on\" takes effect immediately, otherwise nothing happens\n\ |
3349 | until the next time the program is continued. This property normally\n\ | |
3350 | has no effect because the whole task is suspended, however, that may\n\ | |
3351 | be disabled with \"set task pause off\".\n\ | |
1a966eab | 3352 | The default value is \"off\"."), |
c906108c | 3353 | &set_thread_cmd_list); |
1a966eab AC |
3354 | add_cmd ("pause", no_class, show_thread_pause_cmd, _("\ |
3355 | Show whether the current thread is suspended while gdb has control."), | |
c906108c SS |
3356 | &show_thread_cmd_list); |
3357 | ||
3358 | add_cmd ("run", class_run, set_thread_run_cmd, | |
1a966eab | 3359 | _("Set whether the current thread is allowed to run."), |
c906108c SS |
3360 | &set_thread_cmd_list); |
3361 | add_cmd ("run", no_class, show_thread_run_cmd, | |
1a966eab | 3362 | _("Show whether the current thread is allowed to run."), |
c906108c SS |
3363 | &show_thread_cmd_list); |
3364 | ||
1a966eab AC |
3365 | add_cmd ("detach-suspend-count", class_run, set_thread_detach_sc_cmd, _("\ |
3366 | Set the suspend count will leave on the thread when detaching.\n\ | |
942fd805 | 3367 | Note that this is relative to suspend count when gdb noticed the thread;\n\ |
1a966eab | 3368 | use the `thread takeover-suspend-count' to force it to an absolute value."), |
c906108c | 3369 | &set_thread_cmd_list); |
1a966eab AC |
3370 | add_cmd ("detach-suspend-count", no_class, show_thread_detach_sc_cmd, _("\ |
3371 | Show the suspend count will leave on the thread when detaching.\n\ | |
942fd805 | 3372 | Note that this is relative to suspend count when gdb noticed the thread;\n\ |
1a966eab | 3373 | use the `thread takeover-suspend-count' to force it to an absolute value."), |
c906108c SS |
3374 | &show_thread_cmd_list); |
3375 | ||
1a966eab AC |
3376 | add_cmd ("exception-port", no_class, set_thread_exc_port_cmd, _("\ |
3377 | Set the thread exception port to which we forward exceptions.\n\ | |
942fd805 | 3378 | This overrides the task exception port.\n\ |
1a966eab | 3379 | The argument should be the value of the send right in the task."), |
c906108c SS |
3380 | &set_thread_cmd_list); |
3381 | add_alias_cmd ("excp", "exception-port", no_class, 1, &set_thread_cmd_list); | |
942fd805 MK |
3382 | add_alias_cmd ("exc-port", "exception-port", no_class, 1, |
3383 | &set_thread_cmd_list); | |
c906108c | 3384 | |
1a966eab AC |
3385 | add_cmd ("takeover-suspend-count", no_class, thread_takeover_sc_cmd, _("\ |
3386 | Force the threads absolute suspend-count to be gdb's.\n\ | |
942fd805 | 3387 | Prior to giving this command, gdb's thread suspend-counts are relative\n\ |
1a966eab | 3388 | to the thread's initial suspend-count when gdb notices the threads."), |
c906108c SS |
3389 | &thread_cmd_list); |
3390 | } | |
942fd805 | 3391 | |
c906108c SS |
3392 | \f |
3393 | void | |
942fd805 | 3394 | _initialize_gnu_nat (void) |
c906108c SS |
3395 | { |
3396 | proc_server = getproc (); | |
942fd805 | 3397 | |
c906108c SS |
3398 | add_task_commands (); |
3399 | add_thread_commands (); | |
cbe54154 PA |
3400 | add_setshow_boolean_cmd ("gnu-nat", class_maintenance, |
3401 | &gnu_debug_flag, | |
3402 | _("Set debugging output for the gnu backend."), | |
3403 | _("Show debugging output for the gnu backend."), | |
3404 | NULL, | |
3405 | NULL, | |
3406 | NULL, | |
3407 | &setdebuglist, | |
3408 | &showdebuglist); | |
c906108c SS |
3409 | } |
3410 | \f | |
3411 | #ifdef FLUSH_INFERIOR_CACHE | |
3412 | ||
3413 | /* When over-writing code on some machines the I-Cache must be flushed | |
3414 | explicitly, because it is not kept coherent by the lazy hardware. | |
3415 | This definitely includes breakpoints, for instance, or else we | |
3416 | end up looping in mysterious Bpt traps */ | |
3417 | ||
3418 | void | |
fba45db2 | 3419 | flush_inferior_icache (CORE_ADDR pc, int amount) |
c906108c SS |
3420 | { |
3421 | vm_machine_attribute_val_t flush = MATTR_VAL_ICACHE_FLUSH; | |
c5aa993b JM |
3422 | error_t ret; |
3423 | ||
c289427b | 3424 | ret = vm_machine_attribute (gnu_current_inf->task->port, |
c906108c SS |
3425 | pc, |
3426 | amount, | |
3427 | MATTR_CACHE, | |
3428 | &flush); | |
3429 | if (ret != KERN_SUCCESS) | |
8a3fe4f8 | 3430 | warning (_("Error flushing inferior's cache : %s"), safe_strerror (ret)); |
c906108c | 3431 | } |
c5aa993b | 3432 | #endif /* FLUSH_INFERIOR_CACHE */ |