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