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