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