hurd: add gnu_target pointer to fix thread API calls
[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
a9617a42 2149 pid = fork_inferior (exec_file, allargs, env, gnu_ptrace_me,
e69860f1 2150 NULL, NULL, NULL, NULL);
c906108c 2151
2090129c
SDJ
2152 /* We have something that executes now. We'll be running through
2153 the shell at this point (if startup-with-shell is true), but the
2154 pid shouldn't change. */
53dff92c 2155 add_thread_silent (gnu_target, ptid_t (pid));
2090129c 2156
b4d1e8c7
PA
2157 /* Attach to the now stopped child, which is actually a shell... */
2158 inf_debug (inf, "attaching to child: %d", pid);
c906108c 2159
b4d1e8c7 2160 inf_attach (inf, pid);
617fd3b5 2161
f6ac5f3d 2162 push_target (this);
c906108c 2163
c82f56d9 2164 inf->pending_execs = 1;
b4d1e8c7
PA
2165 inf->nomsg = 1;
2166 inf->traced = 1;
c906108c 2167
b4d1e8c7 2168 /* Now let the child run again, knowing that it will stop
0963b4bd 2169 immediately because of the ptrace. */
b4d1e8c7
PA
2170 inf_resume (inf);
2171
2172 /* We now have thread info. */
53dff92c 2173 thread_change_ptid (gnu_target, inferior_ptid,
fd79271b 2174 ptid_t (inf->pid, inf_pick_first_thread (), 0));
c906108c 2175
2090129c
SDJ
2176 gdb_startup_inferior (pid, START_INFERIOR_TRAPS_EXPECTED);
2177
c82f56d9 2178 inf->pending_execs = 0;
c752a4cc
TS
2179 /* Get rid of the old shell threads. */
2180 prune_threads ();
c906108c 2181
cce74817 2182 inf_validate_procinfo (inf);
c906108c
SS
2183 inf_update_signal_thread (inf);
2184 inf_set_traced (inf, inf->want_signals);
2185
2186 /* Execing the process will have trashed our exception ports; steal them
2187 back (or make sure they're restored if the user wants that). */
2188 if (inf->want_exceptions)
2189 inf_steal_exc_ports (inf);
2190 else
2191 inf_restore_exc_ports (inf);
c906108c
SS
2192}
2193
c906108c 2194\f
c906108c
SS
2195/* Attach to process PID, then initialize for debugging it
2196 and wait for the trace-trap that results from attaching. */
f6ac5f3d
PA
2197void
2198gnu_nat_target::attach (const char *args, int from_tty)
c906108c
SS
2199{
2200 int pid;
c906108c 2201 struct inf *inf = cur_inf ();
181e7f93 2202 struct inferior *inferior;
c906108c 2203
74164c56 2204 pid = parse_pid_to_attach (args);
c906108c 2205
74164c56 2206 if (pid == getpid ()) /* Trying to masturbate? */
8a3fe4f8 2207 error (_("I refuse to debug myself!"));
c906108c
SS
2208
2209 if (from_tty)
2210 {
d9fa87f4 2211 const char *exec_file = get_exec_file (0);
c906108c
SS
2212
2213 if (exec_file)
2214 printf_unfiltered ("Attaching to program `%s', pid %d\n",
2215 exec_file, pid);
2216 else
2217 printf_unfiltered ("Attaching to pid %d\n", pid);
c906108c
SS
2218 }
2219
2220 inf_debug (inf, "attaching to pid: %d", pid);
2221
2222 inf_attach (inf, pid);
a9ab7422 2223
f6ac5f3d 2224 push_target (this);
a9ab7422 2225
6c95b8df
PA
2226 inferior = current_inferior ();
2227 inferior_appeared (inferior, pid);
181e7f93 2228 inferior->attach_flag = 1;
7f9f62ba 2229
c906108c
SS
2230 inf_update_procs (inf);
2231
fd79271b 2232 inferior_ptid = ptid_t (pid, inf_pick_first_thread (), 0);
c906108c 2233
b83266a0
SS
2234 /* We have to initialize the terminal settings now, since the code
2235 below might try to restore them. */
223ffa71 2236 target_terminal::init ();
c5aa993b 2237
c906108c
SS
2238 /* If the process was stopped before we attached, make it continue the next
2239 time the user does a continue. */
cce74817
JM
2240 inf_validate_procinfo (inf);
2241
2242 inf_update_signal_thread (inf);
2243 inf_set_traced (inf, inf->want_signals);
c906108c 2244
0963b4bd
MS
2245#if 0 /* Do we need this? */
2246 renumber_threads (0); /* Give our threads reasonable names. */
c906108c
SS
2247#endif
2248}
942fd805 2249
c906108c
SS
2250\f
2251/* Take a program previously attached to and detaches it.
2252 The program resumes execution and will no longer stop
2253 on signals, etc. We'd better not have left any breakpoints
2254 in the program or it'll die when it hits one. For this
2255 to work, it may be necessary for the process to have been
2256 previously attached. It *might* work if the program was
2257 started via fork. */
f6ac5f3d
PA
2258void
2259gnu_nat_target::detach (inferior *inf, int from_tty)
c906108c 2260{
7f9f62ba
PA
2261 int pid;
2262
c906108c
SS
2263 if (from_tty)
2264 {
d9fa87f4 2265 const char *exec_file = get_exec_file (0);
d8734c88 2266
c906108c
SS
2267 if (exec_file)
2268 printf_unfiltered ("Detaching from program `%s' pid %d\n",
c289427b 2269 exec_file, gnu_current_inf->pid);
c906108c 2270 else
c289427b 2271 printf_unfiltered ("Detaching from pid %d\n", gnu_current_inf->pid);
c906108c 2272 }
c5aa993b 2273
c289427b 2274 pid = gnu_current_inf->pid;
7f9f62ba 2275
c289427b 2276 inf_detach (gnu_current_inf);
c906108c 2277
39f77062 2278 inferior_ptid = null_ptid;
53dff92c 2279 detach_inferior (find_inferior_pid (gnu_target, pid));
c906108c 2280
2d0a338c 2281 maybe_unpush_target ();
c906108c 2282}
942fd805 2283\f
c906108c 2284
f6ac5f3d
PA
2285void
2286gnu_nat_target::stop (ptid_t ptid)
c906108c 2287{
f6ac5f3d 2288 error (_("stop target function not implemented"));
c906108c
SS
2289}
2290
57810aa7 2291bool
f6ac5f3d 2292gnu_nat_target::thread_alive (ptid_t ptid)
c906108c 2293{
c289427b
PA
2294 inf_update_procs (gnu_current_inf);
2295 return !!inf_tid_to_thread (gnu_current_inf,
e38504b3 2296 ptid.lwp ());
c906108c 2297}
942fd805 2298
c906108c 2299\f
942fd805
MK
2300/* Read inferior task's LEN bytes from ADDR and copy it to MYADDR in
2301 gdb's address space. Return 0 on failure; number of bytes read
2302 otherwise. */
9b3f3ee6
TS
2303static int
2304gnu_read_inferior (task_t task, CORE_ADDR addr, gdb_byte *myaddr, int length)
c906108c 2305{
0947023d 2306 kern_return_t err;
c906108c
SS
2307 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2308 vm_size_t aligned_length =
c5aa993b
JM
2309 (vm_size_t) round_page (addr + length) - low_address;
2310 pointer_t copied;
25c0bd04 2311 mach_msg_type_number_t copy_count;
c906108c 2312
0963b4bd 2313 /* Get memory from inferior with page aligned addresses. */
c906108c
SS
2314 err = vm_read (task, low_address, aligned_length, &copied, &copy_count);
2315 if (err)
2316 return 0;
2317
0963b4bd
MS
2318 err = hurd_safe_copyin (myaddr, (void *) (addr - low_address + copied),
2319 length);
c906108c
SS
2320 if (err)
2321 {
8a3fe4f8 2322 warning (_("Read from inferior faulted: %s"), safe_strerror (err));
c906108c
SS
2323 length = 0;
2324 }
2325
2326 err = vm_deallocate (mach_task_self (), copied, copy_count);
2327 if (err)
0963b4bd
MS
2328 warning (_("gnu_read_inferior vm_deallocate failed: %s"),
2329 safe_strerror (err));
c906108c
SS
2330
2331 return length;
2332}
2333
2334#define CHK_GOTO_OUT(str,ret) \
2335 do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0)
2336
c5aa993b
JM
2337struct vm_region_list
2338{
c906108c 2339 struct vm_region_list *next;
c5aa993b
JM
2340 vm_prot_t protection;
2341 vm_address_t start;
2342 vm_size_t length;
c906108c
SS
2343};
2344
c5aa993b 2345struct obstack region_obstack;
c906108c 2346
942fd805
MK
2347/* Write gdb's LEN bytes from MYADDR and copy it to ADDR in inferior
2348 task's address space. */
9b3f3ee6
TS
2349static int
2350gnu_write_inferior (task_t task, CORE_ADDR addr,
2351 const gdb_byte *myaddr, int length)
c906108c 2352{
0947023d 2353 kern_return_t err;
c5aa993b
JM
2354 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2355 vm_size_t aligned_length =
2356 (vm_size_t) round_page (addr + length) - low_address;
2357 pointer_t copied;
25c0bd04 2358 mach_msg_type_number_t copy_count;
c5aa993b 2359 int deallocate = 0;
c906108c 2360
924514e1 2361 const char *errstr = "Bug in gnu_write_inferior";
c906108c
SS
2362
2363 struct vm_region_list *region_element;
be903358 2364 struct vm_region_list *region_head = NULL;
c906108c 2365
0963b4bd 2366 /* Get memory from inferior with page aligned addresses. */
c906108c
SS
2367 err = vm_read (task,
2368 low_address,
2369 aligned_length,
2370 &copied,
2371 &copy_count);
2372 CHK_GOTO_OUT ("gnu_write_inferior vm_read failed", err);
2373
2374 deallocate++;
2375
96ffcb62 2376 err = hurd_safe_copyout ((void *) (addr - low_address + copied),
942fd805 2377 myaddr, length);
c906108c
SS
2378 CHK_GOTO_OUT ("Write to inferior faulted", err);
2379
2380 obstack_init (&region_obstack);
2381
2382 /* Do writes atomically.
942fd805 2383 First check for holes and unwritable memory. */
c906108c 2384 {
c5aa993b
JM
2385 vm_size_t remaining_length = aligned_length;
2386 vm_address_t region_address = low_address;
c906108c
SS
2387
2388 struct vm_region_list *scan;
2389
c5aa993b 2390 while (region_address < low_address + aligned_length)
c906108c
SS
2391 {
2392 vm_prot_t protection;
2393 vm_prot_t max_protection;
2394 vm_inherit_t inheritance;
2395 boolean_t shared;
2396 mach_port_t object_name;
2397 vm_offset_t offset;
c5aa993b
JM
2398 vm_size_t region_length = remaining_length;
2399 vm_address_t old_address = region_address;
2400
c906108c
SS
2401 err = vm_region (task,
2402 &region_address,
2403 &region_length,
2404 &protection,
2405 &max_protection,
2406 &inheritance,
2407 &shared,
2408 &object_name,
2409 &offset);
2410 CHK_GOTO_OUT ("vm_region failed", err);
2411
0963b4bd 2412 /* Check for holes in memory. */
c906108c
SS
2413 if (old_address != region_address)
2414 {
a9a758e3 2415 warning (_("No memory at 0x%lx. Nothing written"),
c906108c
SS
2416 old_address);
2417 err = KERN_SUCCESS;
2418 length = 0;
2419 goto out;
2420 }
2421
2422 if (!(max_protection & VM_PROT_WRITE))
2423 {
a9a758e3 2424 warning (_("Memory at address 0x%lx is unwritable. "
0963b4bd 2425 "Nothing written"),
c906108c
SS
2426 old_address);
2427 err = KERN_SUCCESS;
2428 length = 0;
2429 goto out;
2430 }
2431
0963b4bd 2432 /* Chain the regions for later use. */
8d749320 2433 region_element = XOBNEW (&region_obstack, struct vm_region_list);
c5aa993b 2434
c906108c 2435 region_element->protection = protection;
c5aa993b
JM
2436 region_element->start = region_address;
2437 region_element->length = region_length;
c906108c 2438
0963b4bd 2439 /* Chain the regions along with protections. */
c906108c 2440 region_element->next = region_head;
c5aa993b
JM
2441 region_head = region_element;
2442
c906108c
SS
2443 region_address += region_length;
2444 remaining_length = remaining_length - region_length;
2445 }
2446
2447 /* If things fail after this, we give up.
942fd805 2448 Somebody is messing up inferior_task's mappings. */
c5aa993b 2449
0963b4bd 2450 /* Enable writes to the chained vm regions. */
c906108c
SS
2451 for (scan = region_head; scan; scan = scan->next)
2452 {
c906108c
SS
2453 if (!(scan->protection & VM_PROT_WRITE))
2454 {
2455 err = vm_protect (task,
2456 scan->start,
2457 scan->length,
2458 FALSE,
2459 scan->protection | VM_PROT_WRITE);
2460 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2461 }
2462 }
2463
2464 err = vm_write (task,
2465 low_address,
2466 copied,
2467 aligned_length);
2468 CHK_GOTO_OUT ("vm_write failed", err);
c5aa993b 2469
0963b4bd 2470 /* Set up the original region protections, if they were changed. */
c906108c
SS
2471 for (scan = region_head; scan; scan = scan->next)
2472 {
c906108c
SS
2473 if (!(scan->protection & VM_PROT_WRITE))
2474 {
2475 err = vm_protect (task,
2476 scan->start,
2477 scan->length,
2478 FALSE,
2479 scan->protection);
2480 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2481 }
2482 }
2483 }
2484
c5aa993b 2485out:
c906108c
SS
2486 if (deallocate)
2487 {
2488 obstack_free (&region_obstack, 0);
c5aa993b 2489
c906108c
SS
2490 (void) vm_deallocate (mach_task_self (),
2491 copied,
2492 copy_count);
2493 }
2494
2495 if (err != KERN_SUCCESS)
2496 {
8a3fe4f8 2497 warning (_("%s: %s"), errstr, mach_error_string (err));
c906108c
SS
2498 return 0;
2499 }
2500
2501 return length;
2502}
942fd805 2503
c906108c 2504\f
9b3f3ee6 2505
edcc890f
YQ
2506/* Implement the to_xfer_partial target_ops method for
2507 TARGET_OBJECT_MEMORY. */
9b3f3ee6 2508
9b409511 2509static enum target_xfer_status
9b3f3ee6 2510gnu_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
9b409511 2511 CORE_ADDR memaddr, ULONGEST len, ULONGEST *xfered_len)
c906108c 2512{
c289427b
PA
2513 task_t task = (gnu_current_inf
2514 ? (gnu_current_inf->task
2515 ? gnu_current_inf->task->port : 0)
942fd805 2516 : 0);
9b3f3ee6 2517 int res;
c906108c
SS
2518
2519 if (task == MACH_PORT_NULL)
9b3f3ee6
TS
2520 return TARGET_XFER_E_IO;
2521
2522 if (writebuf != NULL)
2523 {
2524 inf_debug (gnu_current_inf, "writing %s[%s] <-- %s",
b55e14c7 2525 paddress (target_gdbarch (), memaddr), pulongest (len),
9b3f3ee6
TS
2526 host_address_to_string (writebuf));
2527 res = gnu_write_inferior (task, memaddr, writebuf, len);
2528 }
c906108c
SS
2529 else
2530 {
9b3f3ee6 2531 inf_debug (gnu_current_inf, "reading %s[%s] --> %s",
b55e14c7 2532 paddress (target_gdbarch (), memaddr), pulongest (len),
9b3f3ee6
TS
2533 host_address_to_string (readbuf));
2534 res = gnu_read_inferior (task, memaddr, readbuf, len);
2535 }
9b409511 2536 gdb_assert (res >= 0);
9b3f3ee6
TS
2537 if (res == 0)
2538 return TARGET_XFER_E_IO;
9b409511
YQ
2539 else
2540 {
2541 *xfered_len = (ULONGEST) res;
2542 return TARGET_XFER_OK;
2543 }
9b3f3ee6
TS
2544}
2545
9c4ac400
ST
2546/* GNU does not have auxv, but we can at least fake the AT_ENTRY entry for PIE
2547 binaries. */
2548static enum target_xfer_status
2549gnu_xfer_auxv (gdb_byte *readbuf, const gdb_byte *writebuf,
2550 CORE_ADDR memaddr, ULONGEST len, ULONGEST *xfered_len)
2551{
2552 task_t task = (gnu_current_inf
2553 ? (gnu_current_inf->task
2554 ? gnu_current_inf->task->port : 0)
2555 : 0);
2556 process_t proc;
9c4ac400
ST
2557 kern_return_t err;
2558 vm_address_t entry;
2559 ElfW(auxv_t) auxv[2];
2560
2561 if (task == MACH_PORT_NULL)
2562 return TARGET_XFER_E_IO;
2563 if (writebuf != NULL)
2564 return TARGET_XFER_E_IO;
2565
2566 if (memaddr == sizeof (auxv))
2567 return TARGET_XFER_EOF;
2568 if (memaddr > sizeof (auxv))
2569 return TARGET_XFER_E_IO;
2570
2571 err = proc_task2proc (proc_server, task, &proc);
2572 if (err != 0)
2573 return TARGET_XFER_E_IO;
2574
2575 /* Get entry from proc server. */
2576 err = proc_get_entry (proc, &entry);
2577 if (err != 0)
2578 return TARGET_XFER_E_IO;
2579
2580 /* Fake auxv entry. */
2581 auxv[0].a_type = AT_ENTRY;
2582 auxv[0].a_un.a_val = entry;
2583 auxv[1].a_type = AT_NULL;
2584 auxv[1].a_un.a_val = 0;
2585
2586 inf_debug (gnu_current_inf, "reading auxv %s[%s] --> %s",
2587 paddress (target_gdbarch (), memaddr), pulongest (len),
2588 host_address_to_string (readbuf));
2589
2590 if (memaddr + len > sizeof (auxv))
2591 len = sizeof (auxv) - memaddr;
2592
2593 memcpy (readbuf, (gdb_byte *) &auxv + memaddr, len);
2594 *xfered_len = len;
2595
2596 return TARGET_XFER_OK;
2597}
2598
9b3f3ee6
TS
2599/* Target to_xfer_partial implementation. */
2600
f6ac5f3d
PA
2601enum target_xfer_status
2602gnu_nat_target::xfer_partial (enum target_object object,
2603 const char *annex, gdb_byte *readbuf,
2604 const gdb_byte *writebuf, ULONGEST offset,
2605 ULONGEST len, ULONGEST *xfered_len)
9b3f3ee6
TS
2606{
2607 switch (object)
2608 {
2609 case TARGET_OBJECT_MEMORY:
9b409511 2610 return gnu_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
9c4ac400
ST
2611 case TARGET_OBJECT_AUXV:
2612 return gnu_xfer_auxv (readbuf, writebuf, offset, len, xfered_len);
9b3f3ee6 2613 default:
2ed4b548 2614 return TARGET_XFER_E_IO;
c906108c
SS
2615 }
2616}
942fd805 2617
57e76fac 2618/* Call FUNC on each memory region in the task. */
f6ac5f3d
PA
2619
2620int
2621gnu_nat_target::find_memory_regions (find_memory_region_ftype func,
2622 void *data)
57e76fac 2623{
0947023d 2624 kern_return_t err;
57e76fac
MS
2625 task_t task;
2626 vm_address_t region_address, last_region_address, last_region_end;
2627 vm_prot_t last_protection;
2628
c289427b 2629 if (gnu_current_inf == 0 || gnu_current_inf->task == 0)
57e76fac 2630 return 0;
c289427b 2631 task = gnu_current_inf->task->port;
57e76fac
MS
2632 if (task == MACH_PORT_NULL)
2633 return 0;
2634
2635 region_address = last_region_address = last_region_end = VM_MIN_ADDRESS;
2636 last_protection = VM_PROT_NONE;
2637 while (region_address < VM_MAX_ADDRESS)
2638 {
2639 vm_prot_t protection;
2640 vm_prot_t max_protection;
2641 vm_inherit_t inheritance;
2642 boolean_t shared;
2643 mach_port_t object_name;
2644 vm_offset_t offset;
2645 vm_size_t region_length = VM_MAX_ADDRESS - region_address;
57e76fac
MS
2646
2647 err = vm_region (task,
2648 &region_address,
2649 &region_length,
2650 &protection,
2651 &max_protection,
2652 &inheritance,
2653 &shared,
2654 &object_name,
2655 &offset);
2656 if (err == KERN_NO_SPACE)
2657 break;
2658 if (err != KERN_SUCCESS)
2659 {
8a3fe4f8 2660 warning (_("vm_region failed: %s"), mach_error_string (err));
57e76fac
MS
2661 return -1;
2662 }
2663
2664 if (protection == last_protection && region_address == last_region_end)
2665 /* This region is contiguous with and indistinguishable from
2666 the previous one, so we just extend that one. */
2667 last_region_end = region_address += region_length;
2668 else
2669 {
2670 /* This region is distinct from the last one we saw, so report
2671 that previous one. */
2672 if (last_protection != VM_PROT_NONE)
2673 (*func) (last_region_address,
2674 last_region_end - last_region_address,
2675 last_protection & VM_PROT_READ,
2676 last_protection & VM_PROT_WRITE,
2677 last_protection & VM_PROT_EXECUTE,
4f69f4c2 2678 1, /* MODIFIED is unknown, pass it as true. */
57e76fac
MS
2679 data);
2680 last_region_address = region_address;
2681 last_region_end = region_address += region_length;
2682 last_protection = protection;
2683 }
2684 }
47f21bcc 2685
1a113c93
MS
2686 /* Report the final region. */
2687 if (last_region_end > last_region_address && last_protection != VM_PROT_NONE)
2688 (*func) (last_region_address, last_region_end - last_region_address,
2689 last_protection & VM_PROT_READ,
2690 last_protection & VM_PROT_WRITE,
2691 last_protection & VM_PROT_EXECUTE,
4f69f4c2 2692 1, /* MODIFIED is unknown, pass it as true. */
1a113c93 2693 data);
47f21bcc
MS
2694
2695 return 0;
57e76fac
MS
2696}
2697
c906108c 2698\f
ed9a39eb 2699/* Return printable description of proc. */
f90b2b1d 2700char *
ed9a39eb
JM
2701proc_string (struct proc *proc)
2702{
2703 static char tid_str[80];
d8734c88 2704
ed9a39eb 2705 if (proc_is_task (proc))
8c042590 2706 xsnprintf (tid_str, sizeof (tid_str), "process %d", proc->inf->pid);
ed9a39eb 2707 else
8c042590
PM
2708 xsnprintf (tid_str, sizeof (tid_str), "Thread %d.%d",
2709 proc->inf->pid, proc->tid);
ed9a39eb
JM
2710 return tid_str;
2711}
2712
a068643d 2713std::string
f6ac5f3d 2714gnu_nat_target::pid_to_str (ptid_t ptid)
ed9a39eb 2715{
c289427b 2716 struct inf *inf = gnu_current_inf;
e38504b3 2717 int tid = ptid.lwp ();
ed9a39eb
JM
2718 struct proc *thread = inf_tid_to_thread (inf, tid);
2719
2720 if (thread)
2721 return proc_string (thread);
2722 else
a068643d 2723 return string_printf ("bogus thread id %d", tid);
ed9a39eb 2724}
942fd805 2725
c906108c 2726\f
c906108c
SS
2727/* User task commands. */
2728
28578e6b
YQ
2729static struct cmd_list_element *set_task_cmd_list = 0;
2730static struct cmd_list_element *show_task_cmd_list = 0;
c906108c
SS
2731/* User thread commands. */
2732
2733/* Commands with a prefix of `set/show thread'. */
2734extern struct cmd_list_element *thread_cmd_list;
2735struct cmd_list_element *set_thread_cmd_list = NULL;
2736struct cmd_list_element *show_thread_cmd_list = NULL;
2737
2738/* Commands with a prefix of `set/show thread default'. */
2739struct cmd_list_element *set_thread_default_cmd_list = NULL;
2740struct cmd_list_element *show_thread_default_cmd_list = NULL;
2741
2742static void
981a3fb3 2743set_thread_cmd (const char *args, int from_tty)
c906108c 2744{
0963b4bd
MS
2745 printf_unfiltered ("\"set thread\" must be followed by the "
2746 "name of a thread property, or \"default\".\n");
c906108c
SS
2747}
2748
2749static void
981a3fb3 2750show_thread_cmd (const char *args, int from_tty)
c906108c 2751{
0963b4bd
MS
2752 printf_unfiltered ("\"show thread\" must be followed by the "
2753 "name of a thread property, or \"default\".\n");
c906108c
SS
2754}
2755
2756static void
981a3fb3 2757set_thread_default_cmd (const char *args, int from_tty)
c906108c 2758{
0963b4bd
MS
2759 printf_unfiltered ("\"set thread default\" must be followed "
2760 "by the name of a thread property.\n");
c906108c
SS
2761}
2762
2763static void
981a3fb3 2764show_thread_default_cmd (const char *args, int from_tty)
c906108c 2765{
0963b4bd
MS
2766 printf_unfiltered ("\"show thread default\" must be followed "
2767 "by the name of a thread property.\n");
c906108c
SS
2768}
2769
2770static int
924514e1 2771parse_int_arg (const char *args, const char *cmd_prefix)
c906108c
SS
2772{
2773 if (args)
2774 {
2775 char *arg_end;
2776 int val = strtoul (args, &arg_end, 10);
d8734c88 2777
c906108c
SS
2778 if (*args && *arg_end == '\0')
2779 return val;
2780 }
0963b4bd
MS
2781 error (_("Illegal argument for \"%s\" command, should be an integer."),
2782 cmd_prefix);
c906108c
SS
2783}
2784
2785static int
924514e1
TS
2786_parse_bool_arg (const char *args, const char *t_val, const char *f_val,
2787 const char *cmd_prefix)
c906108c
SS
2788{
2789 if (!args || strcmp (args, t_val) == 0)
2790 return 1;
2791 else if (strcmp (args, f_val) == 0)
2792 return 0;
2793 else
0963b4bd
MS
2794 error (_("Illegal argument for \"%s\" command, "
2795 "should be \"%s\" or \"%s\"."),
c906108c
SS
2796 cmd_prefix, t_val, f_val);
2797}
2798
2799#define parse_bool_arg(args, cmd_prefix) \
2800 _parse_bool_arg (args, "on", "off", cmd_prefix)
2801
2802static void
924514e1 2803check_empty (const char *args, const char *cmd_prefix)
c906108c
SS
2804{
2805 if (args)
8a3fe4f8 2806 error (_("Garbage after \"%s\" command: `%s'"), cmd_prefix, args);
c906108c
SS
2807}
2808
2809/* Returns the alive thread named by INFERIOR_PID, or signals an error. */
2810static struct proc *
fba45db2 2811cur_thread (void)
c906108c
SS
2812{
2813 struct inf *inf = cur_inf ();
617fd3b5 2814 struct proc *thread = inf_tid_to_thread (inf,
e38504b3 2815 inferior_ptid.lwp ());
c906108c 2816 if (!thread)
8a3fe4f8 2817 error (_("No current thread."));
c906108c
SS
2818 return thread;
2819}
2820
2821/* Returns the current inferior, but signals an error if it has no task. */
2822static struct inf *
fba45db2 2823active_inf (void)
c906108c
SS
2824{
2825 struct inf *inf = cur_inf ();
d8734c88 2826
c5aa993b 2827 if (!inf->task)
8a3fe4f8 2828 error (_("No current process."));
c906108c
SS
2829 return inf;
2830}
942fd805 2831
c906108c
SS
2832\f
2833static void
785102a7 2834set_task_pause_cmd (int arg, int from_tty)
c906108c
SS
2835{
2836 struct inf *inf = cur_inf ();
2837 int old_sc = inf->pause_sc;
2838
785102a7 2839 inf->pause_sc = arg;
c906108c
SS
2840
2841 if (old_sc == 0 && inf->pause_sc != 0)
2842 /* If the task is currently unsuspended, immediately suspend it,
2843 otherwise wait until the next time it gets control. */
2844 inf_suspend (inf);
2845}
2846
785102a7 2847static void
5fed81ff 2848set_task_pause_cmd (const char *args, int from_tty)
785102a7
TS
2849{
2850 set_task_pause_cmd (parse_bool_arg (args, "set task pause"), from_tty);
2851}
2852
c906108c 2853static void
5fed81ff 2854show_task_pause_cmd (const char *args, int from_tty)
c906108c
SS
2855{
2856 struct inf *inf = cur_inf ();
d8734c88 2857
c906108c
SS
2858 check_empty (args, "show task pause");
2859 printf_unfiltered ("The inferior task %s suspended while gdb has control.\n",
2860 inf->task
2861 ? (inf->pause_sc == 0 ? "isn't" : "is")
2862 : (inf->pause_sc == 0 ? "won't be" : "will be"));
2863}
2864
2865static void
5fed81ff 2866set_task_detach_sc_cmd (const char *args, int from_tty)
c906108c 2867{
0963b4bd
MS
2868 cur_inf ()->detach_sc = parse_int_arg (args,
2869 "set task detach-suspend-count");
c906108c
SS
2870}
2871
2872static void
5fed81ff 2873show_task_detach_sc_cmd (const char *args, int from_tty)
c906108c
SS
2874{
2875 check_empty (args, "show task detach-suspend-count");
0963b4bd
MS
2876 printf_unfiltered ("The inferior task will be left with a "
2877 "suspend count of %d when detaching.\n",
c906108c
SS
2878 cur_inf ()->detach_sc);
2879}
942fd805 2880
c906108c
SS
2881\f
2882static void
5fed81ff 2883set_thread_default_pause_cmd (const char *args, int from_tty)
c906108c
SS
2884{
2885 struct inf *inf = cur_inf ();
d8734c88 2886
c906108c
SS
2887 inf->default_thread_pause_sc =
2888 parse_bool_arg (args, "set thread default pause") ? 0 : 1;
2889}
2890
2891static void
5fed81ff 2892show_thread_default_pause_cmd (const char *args, int from_tty)
c906108c
SS
2893{
2894 struct inf *inf = cur_inf ();
2895 int sc = inf->default_thread_pause_sc;
d8734c88 2896
c906108c
SS
2897 check_empty (args, "show thread default pause");
2898 printf_unfiltered ("New threads %s suspended while gdb has control%s.\n",
2899 sc ? "are" : "aren't",
2900 !sc && inf->pause_sc ? " (but the task is)" : "");
2901}
2902
2903static void
5fed81ff 2904set_thread_default_run_cmd (const char *args, int from_tty)
c906108c
SS
2905{
2906 struct inf *inf = cur_inf ();
d8734c88 2907
c906108c
SS
2908 inf->default_thread_run_sc =
2909 parse_bool_arg (args, "set thread default run") ? 0 : 1;
2910}
2911
2912static void
5fed81ff 2913show_thread_default_run_cmd (const char *args, int from_tty)
c906108c
SS
2914{
2915 struct inf *inf = cur_inf ();
d8734c88 2916
c906108c
SS
2917 check_empty (args, "show thread default run");
2918 printf_unfiltered ("New threads %s allowed to run.\n",
2919 inf->default_thread_run_sc == 0 ? "are" : "aren't");
2920}
2921
2922static void
5fed81ff 2923set_thread_default_detach_sc_cmd (const char *args, int from_tty)
c906108c
SS
2924{
2925 cur_inf ()->default_thread_detach_sc =
2926 parse_int_arg (args, "set thread default detach-suspend-count");
2927}
2928
2929static void
5fed81ff 2930show_thread_default_detach_sc_cmd (const char *args, int from_tty)
c906108c
SS
2931{
2932 check_empty (args, "show thread default detach-suspend-count");
2933 printf_unfiltered ("New threads will get a detach-suspend-count of %d.\n",
2934 cur_inf ()->default_thread_detach_sc);
2935}
942fd805 2936
c906108c
SS
2937\f
2938/* Steal a send right called NAME in the inferior task, and make it PROC's
2939 saved exception port. */
2940static void
2941steal_exc_port (struct proc *proc, mach_port_t name)
2942{
0947023d 2943 kern_return_t err;
c906108c
SS
2944 mach_port_t port;
2945 mach_msg_type_name_t port_type;
2946
2947 if (!proc || !proc->inf->task)
8a3fe4f8 2948 error (_("No inferior task."));
c906108c
SS
2949
2950 err = mach_port_extract_right (proc->inf->task->port,
2951 name, MACH_MSG_TYPE_COPY_SEND,
2952 &port, &port_type);
2953 if (err)
a9a758e3 2954 error (_("Couldn't extract send right %lu from inferior: %s"),
dc672865 2955 name, safe_strerror (err));
c906108c
SS
2956
2957 if (proc->saved_exc_port)
2958 /* Get rid of our reference to the old one. */
2959 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
2960
2961 proc->saved_exc_port = port;
2962
c5aa993b 2963 if (!proc->exc_port)
0963b4bd
MS
2964 /* If PROC is a thread, we may not have set its exception port
2965 before. We can't use proc_steal_exc_port because it also sets
2966 saved_exc_port. */
c906108c 2967 {
c5aa993b
JM
2968 proc->exc_port = proc->inf->event_port;
2969 err = proc_set_exception_port (proc, proc->exc_port);
8a3fe4f8 2970 error (_("Can't set exception port for %s: %s"),
dc672865 2971 proc_string (proc), safe_strerror (err));
c906108c
SS
2972 }
2973}
942fd805 2974
c906108c 2975static void
5fed81ff 2976set_task_exc_port_cmd (const char *args, int from_tty)
c906108c
SS
2977{
2978 struct inf *inf = cur_inf ();
d8734c88 2979
c906108c 2980 if (!args)
8a3fe4f8 2981 error (_("No argument to \"set task exception-port\" command."));
c906108c
SS
2982 steal_exc_port (inf->task, parse_and_eval_address (args));
2983}
2984
c5aa993b 2985static void
5fed81ff 2986set_stopped_cmd (const char *args, int from_tty)
c906108c
SS
2987{
2988 cur_inf ()->stopped = _parse_bool_arg (args, "yes", "no", "set stopped");
2989}
2990
2991static void
5fed81ff 2992show_stopped_cmd (const char *args, int from_tty)
c906108c
SS
2993{
2994 struct inf *inf = active_inf ();
d8734c88 2995
c906108c
SS
2996 check_empty (args, "show stopped");
2997 printf_unfiltered ("The inferior process %s stopped.\n",
2998 inf->stopped ? "is" : "isn't");
2999}
3000
c5aa993b 3001static void
5fed81ff 3002set_sig_thread_cmd (const char *args, int from_tty)
c906108c 3003{
c906108c
SS
3004 struct inf *inf = cur_inf ();
3005
c5aa993b 3006 if (!args || (!isdigit (*args) && strcmp (args, "none") != 0))
8a3fe4f8 3007 error (_("Illegal argument to \"set signal-thread\" command.\n"
c3187fa5 3008 "Should be a thread ID, or \"none\"."));
c906108c
SS
3009
3010 if (strcmp (args, "none") == 0)
3011 inf->signal_thread = 0;
3012 else
3013 {
c3187fa5 3014 struct thread_info *tp = parse_thread_id (args, NULL);
e38504b3 3015 inf->signal_thread = inf_tid_to_thread (inf, tp->ptid.lwp ());
c906108c
SS
3016 }
3017}
3018
3019static void
5fed81ff 3020show_sig_thread_cmd (const char *args, int from_tty)
c906108c
SS
3021{
3022 struct inf *inf = active_inf ();
d8734c88 3023
c906108c
SS
3024 check_empty (args, "show signal-thread");
3025 if (inf->signal_thread)
3026 printf_unfiltered ("The signal thread is %s.\n",
3027 proc_string (inf->signal_thread));
3028 else
3029 printf_unfiltered ("There is no signal thread.\n");
3030}
942fd805 3031
c906108c 3032\f
c5aa993b 3033static void
785102a7 3034set_signals_cmd (int arg, int from_tty)
c906108c 3035{
c906108c
SS
3036 struct inf *inf = cur_inf ();
3037
785102a7 3038 inf->want_signals = arg;
c906108c
SS
3039
3040 if (inf->task && inf->want_signals != inf->traced)
3041 /* Make this take effect immediately in a running process. */
3042 inf_set_traced (inf, inf->want_signals);
3043}
3044
785102a7 3045static void
5fed81ff 3046set_signals_cmd (const char *args, int from_tty)
785102a7
TS
3047{
3048 set_signals_cmd(parse_bool_arg (args, "set signals"), from_tty);
3049}
3050
c906108c 3051static void
5fed81ff 3052show_signals_cmd (const char *args, int from_tty)
c906108c
SS
3053{
3054 struct inf *inf = cur_inf ();
d8734c88 3055
c906108c
SS
3056 check_empty (args, "show signals");
3057 printf_unfiltered ("The inferior process's signals %s intercepted.\n",
3058 inf->task
3059 ? (inf->traced ? "are" : "aren't")
3060 : (inf->want_signals ? "will be" : "won't be"));
3061}
3062
c5aa993b 3063static void
785102a7 3064set_exceptions_cmd (int arg, int from_tty)
c906108c
SS
3065{
3066 struct inf *inf = cur_inf ();
c906108c 3067
c26e9cbb
YQ
3068 /* Make this take effect immediately in a running process. */
3069 /* XXX */ ;
c906108c 3070
785102a7
TS
3071 inf->want_exceptions = arg;
3072}
3073
3074static void
5fed81ff 3075set_exceptions_cmd (const char *args, int from_tty)
785102a7
TS
3076{
3077 set_exceptions_cmd (parse_bool_arg (args, "set exceptions"), from_tty);
c906108c
SS
3078}
3079
3080static void
5fed81ff 3081show_exceptions_cmd (const char *args, int from_tty)
c906108c
SS
3082{
3083 struct inf *inf = cur_inf ();
d8734c88 3084
c906108c
SS
3085 check_empty (args, "show exceptions");
3086 printf_unfiltered ("Exceptions in the inferior %s trapped.\n",
3087 inf->task
3088 ? (inf->want_exceptions ? "are" : "aren't")
3089 : (inf->want_exceptions ? "will be" : "won't be"));
3090}
942fd805 3091
c906108c
SS
3092\f
3093static void
981a3fb3 3094set_task_cmd (const char *args, int from_tty)
c906108c 3095{
942fd805
MK
3096 printf_unfiltered ("\"set task\" must be followed by the name"
3097 " of a task property.\n");
c906108c
SS
3098}
3099
3100static void
981a3fb3 3101show_task_cmd (const char *args, int from_tty)
c906108c
SS
3102{
3103 struct inf *inf = cur_inf ();
3104
3105 check_empty (args, "show task");
3106
3107 show_signals_cmd (0, from_tty);
3108 show_exceptions_cmd (0, from_tty);
3109 show_task_pause_cmd (0, from_tty);
3110
3111 if (inf->pause_sc == 0)
3112 show_thread_default_pause_cmd (0, from_tty);
3113 show_thread_default_run_cmd (0, from_tty);
3114
3115 if (inf->task)
3116 {
3117 show_stopped_cmd (0, from_tty);
3118 show_sig_thread_cmd (0, from_tty);
3119 }
3120
3121 if (inf->detach_sc != 0)
3122 show_task_detach_sc_cmd (0, from_tty);
3123 if (inf->default_thread_detach_sc != 0)
3124 show_thread_default_detach_sc_cmd (0, from_tty);
3125}
942fd805 3126
c906108c
SS
3127\f
3128static void
5fed81ff 3129set_noninvasive_cmd (const char *args, int from_tty)
c906108c
SS
3130{
3131 /* Invert the sense of the arg for each component. */
785102a7 3132 int inv_arg = parse_bool_arg (args, "set noninvasive") ? 0 : 1;
c906108c 3133
785102a7
TS
3134 set_task_pause_cmd (inv_arg, from_tty);
3135 set_signals_cmd (inv_arg, from_tty);
3136 set_exceptions_cmd (inv_arg, from_tty);
c906108c 3137}
942fd805 3138
c906108c
SS
3139\f
3140static void
0cc6f43d 3141info_port_rights (const char *args, mach_port_type_t only)
c906108c
SS
3142{
3143 struct inf *inf = active_inf ();
3d6d86c6 3144 struct value *vmark = value_mark ();
c906108c
SS
3145
3146 if (args)
3147 /* Explicit list of port rights. */
3148 {
3149 while (*args)
3150 {
3d6d86c6 3151 struct value *val = parse_to_comma_and_eval (&args);
c906108c
SS
3152 long right = value_as_long (val);
3153 error_t err =
d8734c88
MS
3154 print_port_info (right, 0, inf->task->port, PORTINFO_DETAILS,
3155 stdout);
3156
c906108c 3157 if (err)
8a3fe4f8 3158 error (_("%ld: %s."), right, safe_strerror (err));
c906108c
SS
3159 }
3160 }
3161 else
3162 /* Print all of them. */
3163 {
3164 error_t err =
d8734c88
MS
3165 print_task_ports_info (inf->task->port, only, PORTINFO_DETAILS,
3166 stdout);
c906108c 3167 if (err)
8a3fe4f8 3168 error (_("%s."), safe_strerror (err));
c906108c
SS
3169 }
3170
3171 value_free_to_mark (vmark);
3172}
3173
3174static void
1d12d88f 3175info_send_rights_cmd (const char *args, int from_tty)
c906108c
SS
3176{
3177 info_port_rights (args, MACH_PORT_TYPE_SEND);
3178}
942fd805 3179
c906108c 3180static void
1d12d88f 3181info_recv_rights_cmd (const char *args, int from_tty)
c906108c
SS
3182{
3183 info_port_rights (args, MACH_PORT_TYPE_RECEIVE);
3184}
942fd805 3185
c906108c 3186static void
1d12d88f 3187info_port_sets_cmd (const char *args, int from_tty)
c906108c
SS
3188{
3189 info_port_rights (args, MACH_PORT_TYPE_PORT_SET);
3190}
942fd805 3191
c906108c 3192static void
1d12d88f 3193info_dead_names_cmd (const char *args, int from_tty)
c906108c
SS
3194{
3195 info_port_rights (args, MACH_PORT_TYPE_DEAD_NAME);
3196}
942fd805 3197
c906108c 3198static void
1d12d88f 3199info_port_rights_cmd (const char *args, int from_tty)
c906108c
SS
3200{
3201 info_port_rights (args, ~0);
3202}
942fd805 3203
c906108c 3204\f
c5aa993b 3205static void
942fd805 3206add_task_commands (void)
c906108c 3207{
1a966eab
AC
3208 add_cmd ("pause", class_run, set_thread_default_pause_cmd, _("\
3209Set whether the new threads are suspended while gdb has control.\n\
942fd805
MK
3210This property normally has no effect because the whole task is\n\
3211suspended, however, that may be disabled with \"set task pause off\".\n\
1a966eab 3212The default value is \"off\"."),
c906108c 3213 &set_thread_default_cmd_list);
1a966eab
AC
3214 add_cmd ("pause", no_class, show_thread_default_pause_cmd, _("\
3215Show whether new threads are suspended while gdb has control."),
c906108c 3216 &show_thread_default_cmd_list);
942fd805 3217
1a966eab
AC
3218 add_cmd ("run", class_run, set_thread_default_run_cmd, _("\
3219Set whether new threads are allowed to run (once gdb has noticed them)."),
c906108c 3220 &set_thread_default_cmd_list);
1a966eab
AC
3221 add_cmd ("run", no_class, show_thread_default_run_cmd, _("\
3222Show whether new threads are allowed to run (once gdb has noticed them)."),
c906108c 3223 &show_thread_default_cmd_list);
942fd805 3224
c906108c 3225 add_cmd ("detach-suspend-count", class_run, set_thread_default_detach_sc_cmd,
1a966eab 3226 _("Set the default detach-suspend-count value for new threads."),
c906108c
SS
3227 &set_thread_default_cmd_list);
3228 add_cmd ("detach-suspend-count", no_class, show_thread_default_detach_sc_cmd,
1a966eab 3229 _("Show the default detach-suspend-count value for new threads."),
c906108c
SS
3230 &show_thread_default_cmd_list);
3231
1a966eab
AC
3232 add_cmd ("signals", class_run, set_signals_cmd, _("\
3233Set whether the inferior process's signals will be intercepted.\n\
3234Mach exceptions (such as breakpoint traps) are not affected."),
c906108c
SS
3235 &setlist);
3236 add_alias_cmd ("sigs", "signals", class_run, 1, &setlist);
1a966eab
AC
3237 add_cmd ("signals", no_class, show_signals_cmd, _("\
3238Show whether the inferior process's signals will be intercepted."),
c906108c
SS
3239 &showlist);
3240 add_alias_cmd ("sigs", "signals", no_class, 1, &showlist);
3241
1a966eab
AC
3242 add_cmd ("signal-thread", class_run, set_sig_thread_cmd, _("\
3243Set the thread that gdb thinks is the libc signal thread.\n\
3244This thread is run when delivering a signal to a non-stopped process."),
c906108c
SS
3245 &setlist);
3246 add_alias_cmd ("sigthread", "signal-thread", class_run, 1, &setlist);
1a966eab
AC
3247 add_cmd ("signal-thread", no_class, show_sig_thread_cmd, _("\
3248Set the thread that gdb thinks is the libc signal thread."),
c906108c
SS
3249 &showlist);
3250 add_alias_cmd ("sigthread", "signal-thread", no_class, 1, &showlist);
3251
1a966eab
AC
3252 add_cmd ("stopped", class_run, set_stopped_cmd, _("\
3253Set whether gdb thinks the inferior process is stopped as with SIGSTOP.\n\
3254Stopped process will be continued by sending them a signal."),
c906108c 3255 &setlist);
fe79276f 3256 add_cmd ("stopped", no_class, show_stopped_cmd, _("\
1a966eab 3257Show whether gdb thinks the inferior process is stopped as with SIGSTOP."),
c906108c
SS
3258 &showlist);
3259
1a966eab
AC
3260 add_cmd ("exceptions", class_run, set_exceptions_cmd, _("\
3261Set whether exceptions in the inferior process will be trapped.\n\
942fd805 3262When exceptions are turned off, neither breakpoints nor single-stepping\n\
1a966eab 3263will work."),
c906108c
SS
3264 &setlist);
3265 /* Allow `set exc' despite conflict with `set exception-port'. */
3266 add_alias_cmd ("exc", "exceptions", class_run, 1, &setlist);
1a966eab
AC
3267 add_cmd ("exceptions", no_class, show_exceptions_cmd, _("\
3268Show whether exceptions in the inferior process will be trapped."),
c906108c
SS
3269 &showlist);
3270
3271 add_prefix_cmd ("task", no_class, set_task_cmd,
1bedd215 3272 _("Command prefix for setting task attributes."),
c906108c
SS
3273 &set_task_cmd_list, "set task ", 0, &setlist);
3274 add_prefix_cmd ("task", no_class, show_task_cmd,
1bedd215 3275 _("Command prefix for showing task attributes."),
c906108c
SS
3276 &show_task_cmd_list, "show task ", 0, &showlist);
3277
1a966eab
AC
3278 add_cmd ("pause", class_run, set_task_pause_cmd, _("\
3279Set whether the task is suspended while gdb has control.\n\
942fd805
MK
3280A value of \"on\" takes effect immediately, otherwise nothing happens\n\
3281until the next time the program is continued.\n\
3282When setting this to \"off\", \"set thread default pause on\" can be\n\
1a966eab 3283used to pause individual threads by default instead."),
c906108c
SS
3284 &set_task_cmd_list);
3285 add_cmd ("pause", no_class, show_task_pause_cmd,
1a966eab 3286 _("Show whether the task is suspended while gdb has control."),
c906108c 3287 &show_task_cmd_list);
942fd805 3288
c906108c 3289 add_cmd ("detach-suspend-count", class_run, set_task_detach_sc_cmd,
1a966eab 3290 _("Set the suspend count will leave on the thread when detaching."),
c906108c
SS
3291 &set_task_cmd_list);
3292 add_cmd ("detach-suspend-count", no_class, show_task_detach_sc_cmd,
0963b4bd
MS
3293 _("Show the suspend count will leave "
3294 "on the thread when detaching."),
c906108c
SS
3295 &show_task_cmd_list);
3296
1a966eab
AC
3297 add_cmd ("exception-port", no_class, set_task_exc_port_cmd, _("\
3298Set the task exception port to which we forward exceptions.\n\
3299The argument should be the value of the send right in the task."),
c906108c
SS
3300 &set_task_cmd_list);
3301 add_alias_cmd ("excp", "exception-port", no_class, 1, &set_task_cmd_list);
942fd805
MK
3302 add_alias_cmd ("exc-port", "exception-port", no_class, 1,
3303 &set_task_cmd_list);
c906108c
SS
3304
3305 /* A convenient way of turning on all options require to noninvasively
3306 debug running tasks. */
1a966eab
AC
3307 add_cmd ("noninvasive", no_class, set_noninvasive_cmd, _("\
3308Set task options so that we interfere as little as possible.\n\
942fd805 3309This is the same as setting `task pause', `exceptions', and\n\
1a966eab 3310`signals' to the opposite value."),
c906108c
SS
3311 &setlist);
3312
3313 /* Commands to show information about the task's ports. */
5f515954 3314 add_info ("send-rights", info_send_rights_cmd,
590042fc 3315 _("Show information about the task's send rights."));
5f515954 3316 add_info ("receive-rights", info_recv_rights_cmd,
590042fc 3317 _("Show information about the task's receive rights."));
5f515954 3318 add_info ("port-rights", info_port_rights_cmd,
590042fc 3319 _("Show information about the task's port rights."));
5f515954 3320 add_info ("port-sets", info_port_sets_cmd,
590042fc 3321 _("Show information about the task's port sets."));
5f515954 3322 add_info ("dead-names", info_dead_names_cmd,
590042fc 3323 _("Show information about the task's dead names."));
c906108c
SS
3324 add_info_alias ("ports", "port-rights", 1);
3325 add_info_alias ("port", "port-rights", 1);
3326 add_info_alias ("psets", "port-sets", 1);
3327}
c906108c 3328
942fd805 3329\f
c906108c 3330static void
5fed81ff 3331set_thread_pause_cmd (const char *args, int from_tty)
c906108c
SS
3332{
3333 struct proc *thread = cur_thread ();
3334 int old_sc = thread->pause_sc;
d8734c88 3335
c906108c
SS
3336 thread->pause_sc = parse_bool_arg (args, "set thread pause");
3337 if (old_sc == 0 && thread->pause_sc != 0 && thread->inf->pause_sc == 0)
3338 /* If the task is currently unsuspended, immediately suspend it,
3339 otherwise wait until the next time it gets control. */
3340 inf_suspend (thread->inf);
3341}
3342
3343static void
5fed81ff 3344show_thread_pause_cmd (const char *args, int from_tty)
c906108c
SS
3345{
3346 struct proc *thread = cur_thread ();
3347 int sc = thread->pause_sc;
d8734c88 3348
c906108c
SS
3349 check_empty (args, "show task pause");
3350 printf_unfiltered ("Thread %s %s suspended while gdb has control%s.\n",
3351 proc_string (thread),
3352 sc ? "is" : "isn't",
942fd805 3353 !sc && thread->inf->pause_sc ? " (but the task is)" : "");
c906108c
SS
3354}
3355
3356static void
5fed81ff 3357set_thread_run_cmd (const char *args, int from_tty)
c906108c
SS
3358{
3359 struct proc *thread = cur_thread ();
d8734c88 3360
c906108c
SS
3361 thread->run_sc = parse_bool_arg (args, "set thread run") ? 0 : 1;
3362}
3363
3364static void
5fed81ff 3365show_thread_run_cmd (const char *args, int from_tty)
c906108c
SS
3366{
3367 struct proc *thread = cur_thread ();
d8734c88 3368
c906108c
SS
3369 check_empty (args, "show thread run");
3370 printf_unfiltered ("Thread %s %s allowed to run.",
3371 proc_string (thread),
3372 thread->run_sc == 0 ? "is" : "isn't");
3373}
3374
3375static void
5fed81ff 3376set_thread_detach_sc_cmd (const char *args, int from_tty)
c906108c 3377{
942fd805
MK
3378 cur_thread ()->detach_sc = parse_int_arg (args,
3379 "set thread detach-suspend-count");
c906108c
SS
3380}
3381
3382static void
5fed81ff 3383show_thread_detach_sc_cmd (const char *args, int from_tty)
c906108c
SS
3384{
3385 struct proc *thread = cur_thread ();
d8734c88 3386
c906108c 3387 check_empty (args, "show thread detach-suspend-count");
942fd805
MK
3388 printf_unfiltered ("Thread %s will be left with a suspend count"
3389 " of %d when detaching.\n",
c906108c
SS
3390 proc_string (thread),
3391 thread->detach_sc);
3392}
3393
3394static void
5fed81ff 3395set_thread_exc_port_cmd (const char *args, int from_tty)
c906108c
SS
3396{
3397 struct proc *thread = cur_thread ();
d8734c88 3398
c906108c 3399 if (!args)
8a3fe4f8 3400 error (_("No argument to \"set thread exception-port\" command."));
c906108c
SS
3401 steal_exc_port (thread, parse_and_eval_address (args));
3402}
3403
3404#if 0
3405static void
3406show_thread_cmd (char *args, int from_tty)
3407{
3408 struct proc *thread = cur_thread ();
d8734c88 3409
c906108c
SS
3410 check_empty (args, "show thread");
3411 show_thread_run_cmd (0, from_tty);
3412 show_thread_pause_cmd (0, from_tty);
3413 if (thread->detach_sc != 0)
3414 show_thread_detach_sc_cmd (0, from_tty);
3415}
3416#endif
3417
3418static void
5fed81ff 3419thread_takeover_sc_cmd (const char *args, int from_tty)
c906108c
SS
3420{
3421 struct proc *thread = cur_thread ();
d8734c88 3422
c906108c
SS
3423 thread_basic_info_data_t _info;
3424 thread_basic_info_t info = &_info;
3425 mach_msg_type_number_t info_len = THREAD_BASIC_INFO_COUNT;
cabb5f06
TS
3426 kern_return_t err
3427 = mach_thread_info (thread->port, THREAD_BASIC_INFO,
3428 (int *) &info, &info_len);
c906108c 3429 if (err)
8a3fe4f8 3430 error (("%s."), safe_strerror (err));
c906108c
SS
3431 thread->sc = info->suspend_count;
3432 if (from_tty)
3433 printf_unfiltered ("Suspend count was %d.\n", thread->sc);
3434 if (info != &_info)
942fd805
MK
3435 vm_deallocate (mach_task_self (), (vm_address_t) info,
3436 info_len * sizeof (int));
c906108c
SS
3437}
3438
942fd805
MK
3439\f
3440static void
3441add_thread_commands (void)
c906108c
SS
3442{
3443 add_prefix_cmd ("thread", no_class, set_thread_cmd,
1bedd215 3444 _("Command prefix for setting thread properties."),
c906108c
SS
3445 &set_thread_cmd_list, "set thread ", 0, &setlist);
3446 add_prefix_cmd ("default", no_class, show_thread_cmd,
1bedd215 3447 _("Command prefix for setting default thread properties."),
c906108c
SS
3448 &set_thread_default_cmd_list, "set thread default ", 0,
3449 &set_thread_cmd_list);
3450 add_prefix_cmd ("thread", no_class, set_thread_default_cmd,
1bedd215 3451 _("Command prefix for showing thread properties."),
c906108c
SS
3452 &show_thread_cmd_list, "show thread ", 0, &showlist);
3453 add_prefix_cmd ("default", no_class, show_thread_default_cmd,
1bedd215 3454 _("Command prefix for showing default thread properties."),
c906108c
SS
3455 &show_thread_default_cmd_list, "show thread default ", 0,
3456 &show_thread_cmd_list);
3457
1a966eab
AC
3458 add_cmd ("pause", class_run, set_thread_pause_cmd, _("\
3459Set whether the current thread is suspended while gdb has control.\n\
942fd805
MK
3460A value of \"on\" takes effect immediately, otherwise nothing happens\n\
3461until the next time the program is continued. This property normally\n\
3462has no effect because the whole task is suspended, however, that may\n\
3463be disabled with \"set task pause off\".\n\
1a966eab 3464The default value is \"off\"."),
c906108c 3465 &set_thread_cmd_list);
1a966eab
AC
3466 add_cmd ("pause", no_class, show_thread_pause_cmd, _("\
3467Show whether the current thread is suspended while gdb has control."),
c906108c
SS
3468 &show_thread_cmd_list);
3469
3470 add_cmd ("run", class_run, set_thread_run_cmd,
1a966eab 3471 _("Set whether the current thread is allowed to run."),
c906108c
SS
3472 &set_thread_cmd_list);
3473 add_cmd ("run", no_class, show_thread_run_cmd,
1a966eab 3474 _("Show whether the current thread is allowed to run."),
c906108c
SS
3475 &show_thread_cmd_list);
3476
1a966eab
AC
3477 add_cmd ("detach-suspend-count", class_run, set_thread_detach_sc_cmd, _("\
3478Set the suspend count will leave on the thread when detaching.\n\
942fd805 3479Note that this is relative to suspend count when gdb noticed the thread;\n\
1a966eab 3480use the `thread takeover-suspend-count' to force it to an absolute value."),
c906108c 3481 &set_thread_cmd_list);
1a966eab
AC
3482 add_cmd ("detach-suspend-count", no_class, show_thread_detach_sc_cmd, _("\
3483Show the suspend count will leave on the thread when detaching.\n\
942fd805 3484Note that this is relative to suspend count when gdb noticed the thread;\n\
1a966eab 3485use the `thread takeover-suspend-count' to force it to an absolute value."),
c906108c
SS
3486 &show_thread_cmd_list);
3487
1a966eab
AC
3488 add_cmd ("exception-port", no_class, set_thread_exc_port_cmd, _("\
3489Set the thread exception port to which we forward exceptions.\n\
942fd805 3490This overrides the task exception port.\n\
1a966eab 3491The argument should be the value of the send right in the task."),
c906108c
SS
3492 &set_thread_cmd_list);
3493 add_alias_cmd ("excp", "exception-port", no_class, 1, &set_thread_cmd_list);
942fd805
MK
3494 add_alias_cmd ("exc-port", "exception-port", no_class, 1,
3495 &set_thread_cmd_list);
c906108c 3496
1a966eab
AC
3497 add_cmd ("takeover-suspend-count", no_class, thread_takeover_sc_cmd, _("\
3498Force the threads absolute suspend-count to be gdb's.\n\
942fd805 3499Prior to giving this command, gdb's thread suspend-counts are relative\n\
1a966eab 3500to the thread's initial suspend-count when gdb notices the threads."),
c906108c
SS
3501 &thread_cmd_list);
3502}
942fd805 3503
6c265988 3504void _initialize_gnu_nat ();
c906108c 3505void
6c265988 3506_initialize_gnu_nat ()
c906108c
SS
3507{
3508 proc_server = getproc ();
942fd805 3509
c906108c
SS
3510 add_task_commands ();
3511 add_thread_commands ();
cbe54154
PA
3512 add_setshow_boolean_cmd ("gnu-nat", class_maintenance,
3513 &gnu_debug_flag,
3514 _("Set debugging output for the gnu backend."),
3515 _("Show debugging output for the gnu backend."),
3516 NULL,
3517 NULL,
3518 NULL,
3519 &setdebuglist,
3520 &showdebuglist);
c906108c
SS
3521}
3522\f
3523#ifdef FLUSH_INFERIOR_CACHE
3524
3525/* When over-writing code on some machines the I-Cache must be flushed
3526 explicitly, because it is not kept coherent by the lazy hardware.
3527 This definitely includes breakpoints, for instance, or else we
0963b4bd 3528 end up looping in mysterious Bpt traps. */
c906108c
SS
3529
3530void
fba45db2 3531flush_inferior_icache (CORE_ADDR pc, int amount)
c906108c
SS
3532{
3533 vm_machine_attribute_val_t flush = MATTR_VAL_ICACHE_FLUSH;
0947023d 3534 kern_return_t ret;
c5aa993b 3535
c289427b 3536 ret = vm_machine_attribute (gnu_current_inf->task->port,
c906108c
SS
3537 pc,
3538 amount,
3539 MATTR_CACHE,
3540 &flush);
3541 if (ret != KERN_SUCCESS)
8a3fe4f8 3542 warning (_("Error flushing inferior's cache : %s"), safe_strerror (ret));
c906108c 3543}
c5aa993b 3544#endif /* FLUSH_INFERIOR_CACHE */
This page took 2.296585 seconds and 4 git commands to generate.