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