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