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