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