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