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