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