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