1 /* Interface GDB to the GNU Hurd.
2 Copyright (C) 1992, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2006, 2007,
3 2008 Free Software Foundation, Inc.
5 This file is part of GDB.
7 Written by Miles Bader <miles@gnu.ai.mit.edu>
9 Some code and ideas from m3-nat.c by Jukka Virtanen <jtv@hut.fi>
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
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.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
31 #include "gdb_string.h"
32 #include <sys/ptrace.h>
35 #include <mach_error.h>
36 #include <mach/exception.h>
37 #include <mach/message.h>
38 #include <mach/notify.h>
39 #include <mach/vm_attributes.h>
42 #include <hurd/interrupt.h>
44 #include <hurd/msg_request.h>
45 #include <hurd/process.h>
46 /* Defined in <hurd/process.h>, but we need forward declarations from
47 <hurd/process_request.h> as well. */
49 #include <hurd/process_request.h>
50 #include <hurd/signal.h>
51 #include <hurd/sigpreempt.h>
64 #include "gdbthread.h"
65 #include "gdb_assert.h"
66 #include "gdb_obstack.h"
70 #include "exc_request_S.h"
72 #include "process_reply_S.h"
73 #include "msg_reply_S.h"
74 #include "exc_request_U.h"
77 static process_t proc_server = MACH_PORT_NULL;
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. */
81 int proc_wait_pid = 0;
83 /* The number of wait requests we've sent, and expect replies from. */
84 int proc_waits_pending = 0;
86 int gnu_debug_flag = 0;
90 extern struct target_ops gnu_ops;
92 struct inf *make_inf ();
93 void inf_clear_wait (struct inf *inf);
94 void inf_cleanup (struct inf *inf);
95 void inf_startup (struct inf *inf, int pid);
96 int inf_update_suspends (struct inf *inf);
97 void inf_set_pid (struct inf *inf, pid_t pid);
98 void inf_validate_procs (struct inf *inf);
99 void inf_steal_exc_ports (struct inf *inf);
100 void inf_restore_exc_ports (struct inf *inf);
101 struct proc *inf_tid_to_proc (struct inf *inf, int tid);
102 void inf_set_threads_resume_sc (struct inf *inf,
103 struct proc *run_thread,
105 int inf_set_threads_resume_sc_for_signal_thread (struct inf *inf);
106 void inf_suspend (struct inf *inf);
107 void inf_resume (struct inf *inf);
108 void inf_set_step_thread (struct inf *inf, struct proc *proc);
109 void inf_detach (struct inf *inf);
110 void inf_attach (struct inf *inf, int pid);
111 void inf_signal (struct inf *inf, enum target_signal sig);
112 void inf_continue (struct inf *inf);
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)
118 void proc_abort (struct proc *proc, int force);
119 struct proc *make_proc (struct inf *inf, mach_port_t port, int tid);
120 struct proc *_proc_free (struct proc *proc);
121 int proc_update_sc (struct proc *proc);
122 error_t proc_get_exception_port (struct proc *proc, mach_port_t * port);
123 error_t proc_set_exception_port (struct proc *proc, mach_port_t port);
124 static mach_port_t _proc_get_exc_port (struct proc *proc);
125 void proc_steal_exc_port (struct proc *proc, mach_port_t exc_port);
126 void proc_restore_exc_port (struct proc *proc);
127 int proc_trace (struct proc *proc, int set);
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)
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) \
144 __e = INF_MSGPORT_RPC (inf, rpc_expr); \
150 /* The state passed by an exception message. */
153 int exception; /* The exception code */
155 mach_port_t handler; /* The real exception port to handle this. */
156 mach_port_t reply; /* The reply port from the exception call. */
159 /* The results of the last wait an inf did. */
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. */
168 /* The state of an inferior. */
171 /* Fields describing the current inferior. */
173 struct proc *task; /* The mach task. */
174 struct proc *threads; /* A linked list of all threads in TASK. */
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
180 int threads_up_to_date;
182 pid_t pid; /* The real system PID. */
184 struct inf_wait wait; /* What to return from target_wait. */
186 /* One thread proc in INF may be in `single-stepping mode'. This is it. */
187 struct proc *step_thread;
189 /* The thread we think is the signal thread. */
190 struct proc *signal_thread;
192 mach_port_t event_port; /* Where we receive various msgs. */
194 /* True if we think at least one thread in the inferior could currently be
196 unsigned int running:1;
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;
203 /* True if the inferior has no message port. */
204 unsigned int nomsg:1;
206 /* True if the inferior is traced. */
207 unsigned int traced:1;
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;
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
216 unsigned pending_execs;
218 /* Fields describing global state */
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). */
226 /* The task suspend count left when detaching from a task. */
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;
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. */
240 /* True if exceptions from the inferior process should be trapped. This
241 must be on to use breakpoints. */
247 __proc_pid (struct proc *proc)
249 return proc->inf->pid;
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. */
256 proc_update_sc (struct proc *proc)
260 int delta = proc->sc - proc->cur_sc;
263 proc_debug (proc, "sc: %d --> %d", proc->cur_sc, proc->sc);
265 if (proc->sc == 0 && proc->state_changed)
266 /* Since PROC may start running, we must write back any state changes. */
268 gdb_assert (proc_is_thread (proc));
269 proc_debug (proc, "storing back changed thread state");
270 err = thread_set_state (proc->port, THREAD_STATE_FLAVOR,
271 (thread_state_t) &proc->state, THREAD_STATE_SIZE);
273 proc->state_changed = 0;
278 while (delta-- > 0 && !err)
280 if (proc_is_task (proc))
281 err = task_suspend (proc->port);
283 err = thread_suspend (proc->port);
288 while (delta++ < 0 && !err)
290 if (proc_is_task (proc))
291 err = task_resume (proc->port);
293 err = thread_resume (proc->port);
297 proc->cur_sc = proc->sc;
299 /* If we got an error, then the task/thread has disappeared. */
300 running = !err && proc->sc == 0;
302 proc_debug (proc, "is %s", err ? "dead" : running ? "running" : "suspended");
304 proc_debug (proc, "err = %s", safe_strerror (err));
309 proc->state_valid = proc->state_changed = 0;
310 proc->fetched_regs = 0;
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. */
322 proc_abort (struct proc *proc, int force)
324 gdb_assert (proc_is_thread (proc));
328 struct inf *inf = proc->inf;
329 int running = (proc->cur_sc == 0 && inf->task->cur_sc == 0);
331 if (running && force)
334 inf_update_suspends (proc->inf);
336 warning (_("Stopped %s."), proc_string (proc));
338 else if (proc == inf->wait.thread && inf->wait.exc.reply && !force)
339 /* An exception is pending on PROC, which don't mess with. */
343 /* We only abort the thread if it's not actually running. */
345 thread_abort (proc->port);
346 proc_debug (proc, "aborted");
350 proc_debug (proc, "not aborting");
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. */
359 proc_get_state (struct proc *proc, int will_modify)
361 int was_aborted = proc->aborted;
363 proc_debug (proc, "updating state info%s",
364 will_modify ? " (with intention to modify)" : "");
366 proc_abort (proc, will_modify);
368 if (!was_aborted && proc->aborted)
369 /* PROC's state may have changed since we last fetched it. */
370 proc->state_valid = 0;
372 if (!proc->state_valid)
374 mach_msg_type_number_t state_size = THREAD_STATE_SIZE;
376 thread_get_state (proc->port, THREAD_STATE_FLAVOR,
377 (thread_state_t) &proc->state, &state_size);
378 proc_debug (proc, "getting thread state");
379 proc->state_valid = !err;
382 if (proc->state_valid)
385 proc->state_changed = 1;
386 return (thread_state_t) &proc->state;
393 /* Set PORT to PROC's exception port. */
395 proc_get_exception_port (struct proc * proc, mach_port_t * port)
397 if (proc_is_task (proc))
398 return task_get_exception_port (proc->port, port);
400 return thread_get_exception_port (proc->port, port);
403 /* Set PROC's exception port to PORT. */
405 proc_set_exception_port (struct proc * proc, mach_port_t port)
407 proc_debug (proc, "setting exception port: %d", port);
408 if (proc_is_task (proc))
409 return task_set_exception_port (proc->port, port);
411 return thread_set_exception_port (proc->port, port);
414 /* Get PROC's exception port, cleaning up a bit if proc has died. */
416 _proc_get_exc_port (struct proc *proc)
418 mach_port_t exc_port;
419 error_t err = proc_get_exception_port (proc, &exc_port);
422 /* PROC must be dead. */
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;
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. */
438 proc_steal_exc_port (struct proc *proc, mach_port_t exc_port)
440 mach_port_t cur_exc_port = _proc_get_exc_port (proc);
446 proc_debug (proc, "inserting exception port: %d", exc_port);
448 if (cur_exc_port != exc_port)
449 /* Put in our exception port. */
450 err = proc_set_exception_port (proc, exc_port);
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. */
457 mach_port_deallocate (mach_task_self (), cur_exc_port);
460 /* Keep a copy of PROC's old exception port so it can be restored. */
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;
467 proc_debug (proc, "saved exception port: %d", proc->saved_exc_port);
470 proc->exc_port = exc_port;
472 warning (_("Error setting exception port for %s: %s"),
473 proc_string (proc), safe_strerror (err));
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. */
481 proc_restore_exc_port (struct proc *proc)
483 mach_port_t cur_exc_port = _proc_get_exc_port (proc);
489 proc_debug (proc, "restoring real exception port");
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);
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;
500 proc->exc_port = MACH_PORT_NULL;
502 warning (_("Error setting exception port for %s: %s"),
503 proc_string (proc), safe_strerror (err));
508 /* Turns hardware tracing in PROC on or off when SET is true or false,
509 respectively. Returns true on success. */
511 proc_trace (struct proc *proc, int set)
513 thread_state_t state = proc_get_state (proc, 1);
516 return 0; /* the thread must be dead. */
518 proc_debug (proc, "tracing %s", set ? "on" : "off");
522 /* XXX We don't get the exception unless the thread has its own
523 exception port???? */
524 if (proc->exc_port == MACH_PORT_NULL)
525 proc_steal_exc_port (proc, proc->inf->event_port);
526 THREAD_STATE_SET_TRACED (state);
529 THREAD_STATE_CLEAR_TRACED (state);
535 /* A variable from which to assign new TIDs. */
536 static int next_thread_id = 1;
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. */
541 make_proc (struct inf *inf, mach_port_t port, int tid)
544 mach_port_t prev_port = MACH_PORT_NULL;
545 struct proc *proc = xmalloc (sizeof (struct proc));
551 proc->saved_exc_port = MACH_PORT_NULL;
552 proc->exc_port = MACH_PORT_NULL;
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;
566 proc->state_valid = 0;
567 proc->state_changed = 0;
569 proc_debug (proc, "is new");
571 /* Get notified when things die. */
573 mach_port_request_notification (mach_task_self (), port,
574 MACH_NOTIFY_DEAD_NAME, 1,
576 MACH_MSG_TYPE_MAKE_SEND_ONCE,
579 warning (_("Couldn't request notification for port %d: %s"),
580 port, safe_strerror (err));
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);
588 if (inf->want_exceptions)
590 if (proc_is_task (proc))
591 /* Make the task exception port point to us. */
592 proc_steal_exc_port (proc, inf->event_port);
594 /* Just clear thread exception ports -- they default to the
596 proc_steal_exc_port (proc, MACH_PORT_NULL);
602 /* Frees PROC and any resources it uses, and returns the value of PROC's
605 _proc_free (struct proc *proc)
607 struct inf *inf = proc->inf;
608 struct proc *next = proc->next;
610 proc_debug (proc, "freeing...");
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;
620 if (proc->port != MACH_PORT_NULL)
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. */
629 proc_update_sc (proc);
631 mach_port_deallocate (mach_task_self (), proc->port);
642 struct inf *inf = xmalloc (sizeof (struct inf));
646 inf->threads_up_to_date = 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;
660 inf->pending_execs = 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 */
672 /* Clear INF's target wait status. */
674 inf_clear_wait (struct inf *inf)
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)
682 mach_port_deallocate (mach_task_self (), inf->wait.exc.handler);
683 inf->wait.exc.handler = MACH_PORT_NULL;
685 if (inf->wait.exc.reply != MACH_PORT_NULL)
687 mach_port_deallocate (mach_task_self (), inf->wait.exc.reply);
688 inf->wait.exc.reply = MACH_PORT_NULL;
694 inf_cleanup (struct inf *inf)
696 inf_debug (inf, "cleanup");
698 inf_clear_wait (inf);
700 inf_set_pid (inf, -1);
707 inf->pending_execs = 0;
711 mach_port_destroy (mach_task_self (), inf->event_port);
712 inf->event_port = MACH_PORT_NULL;
717 inf_startup (struct inf *inf, int pid)
721 inf_debug (inf, "startup: pid = %d", pid);
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);
729 error (_("Error allocating event port: %s"), safe_strerror (err));
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);
738 /* Close current process, if any, and attach INF to process PORT. */
740 inf_set_pid (struct inf *inf, pid_t pid)
743 struct proc *task = inf->task;
745 inf_debug (inf, "setting pid: %d", pid);
748 task_port = MACH_PORT_NULL;
751 error_t err = proc_pid2task (proc_server, pid, &task_port);
753 error (_("Error getting task for pid %d: %s"), pid, safe_strerror (err));
756 inf_debug (inf, "setting task: %d", task_port);
759 task_suspend (task_port);
761 if (task && task->port != task_port)
764 inf_validate_procs (inf); /* Trash all the threads. */
765 _proc_free (task); /* And the task. */
768 if (task_port != MACH_PORT_NULL)
770 inf->task = make_proc (inf, task_port, PROC_TID_TASK);
771 inf->threads_up_to_date = 0;
778 /* Reflect task_suspend above. */
779 inf->task->sc = inf->task->cur_sc = 1;
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. */
791 inf_validate_procinfo (struct inf *inf)
794 mach_msg_type_number_t noise_len = 0;
796 mach_msg_type_number_t pi_len = 0;
799 proc_getprocinfo (proc_server, inf->pid, &info_flags,
800 (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
804 inf->stopped = !!(pi->state & PI_STOPPED);
805 inf->nomsg = !!(pi->state & PI_NOMSG);
807 inf->traced = !!(pi->state & PI_TRACED);
808 vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len);
810 vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len);
814 /* Validates INF's task suspend count. If it's higher than we expect,
815 verify with the user before `stealing' the extra count. */
817 inf_validate_task_sc (struct inf *inf)
820 mach_msg_type_number_t noise_len = 0;
822 mach_msg_type_number_t pi_len = 0;
823 int info_flags = PI_FETCH_TASKINFO;
824 int suspend_count = -1;
828 err = proc_getprocinfo (proc_server, inf->pid, &info_flags,
829 (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
832 inf->task->dead = 1; /* oh well */
836 if (inf->task->cur_sc < pi->taskinfo.suspend_count && suspend_count == -1)
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;
846 suspend_count = pi->taskinfo.suspend_count;
848 vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len);
850 vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len);
852 if (inf->task->cur_sc < suspend_count)
856 target_terminal_ours (); /* Allow I/O. */
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);
860 target_terminal_inferior (); /* Give it back to the child. */
863 error (_("Additional task suspend count left untouched."));
865 inf->task->cur_sc = suspend_count;
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
874 inf_set_traced (struct inf *inf, int on)
876 if (on == inf->traced)
879 if (inf->task && !inf->task->dead)
880 /* Make it take effect immediately. */
882 sigset_t mask = on ? ~(sigset_t) 0 : 0;
884 INF_RESUME_MSGPORT_RPC (inf, msg_set_init_int (msgport, refport,
885 INIT_TRACEMASK, mask));
889 warning (_("Can't modify tracing state for pid %d: %s"),
890 inf->pid, "No signal thread");
894 warning (_("Can't modify tracing state for pid %d: %s"),
895 inf->pid, safe_strerror (err));
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. */
909 inf_update_suspends (struct inf *inf)
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
916 inf_debug (inf, "updating suspend counts");
921 int task_running = (task->sc == 0), thread_running = 0;
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);
927 if (inf->pending_execs)
928 /* When we're waiting for an exec, things may be happening behind our
929 back, so be conservative. */
932 /* Do all the thread suspend counts. */
933 for (thread = inf->threads; thread; thread = thread->next)
934 thread_running |= proc_update_sc (thread);
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);
941 inf_debug (inf, "%srunning...",
942 (thread_running && task_running) ? "" : "not ");
944 inf->running = thread_running && task_running;
946 /* Once any thread has executed some code, we can't depend on the
947 threads list any more. */
949 inf->threads_up_to_date = 0;
958 /* Converts a GDB pid to a struct proc. */
960 inf_tid_to_thread (struct inf *inf, int tid)
962 struct proc *thread = inf->threads;
965 if (thread->tid == tid)
968 thread = thread->next;
972 /* Converts a thread port to a struct proc. */
974 inf_port_to_thread (struct inf *inf, mach_port_t port)
976 struct proc *thread = inf->threads;
978 if (thread->port == port)
981 thread = thread->next;
986 /* Make INF's list of threads be consistent with reality of TASK. */
988 inf_validate_procs (struct inf *inf)
990 thread_array_t threads;
991 mach_msg_type_number_t num_threads, i;
992 struct proc *task = inf->task;
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;
1002 error_t err = task_threads (task->port, &threads, &num_threads);
1003 inf_debug (inf, "fetching threads");
1005 /* TASK must be dead. */
1015 inf_debug (inf, "no task");
1019 /* Make things normally linear. */
1020 mach_msg_type_number_t search_start = 0;
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;
1028 memset (matched, 0, sizeof (matched));
1032 mach_msg_type_number_t left;
1034 for (i = search_start, left = num_threads; left; i++, left--)
1036 if (i >= num_threads)
1037 i -= num_threads; /* I wrapped around. */
1038 if (thread->port == threads[i])
1039 /* We already know about this thread. */
1041 matched[i] = thread;
1043 thread = thread->next;
1051 proc_debug (thread, "died!");
1052 thread->port = MACH_PORT_NULL;
1053 thread = _proc_free (thread); /* THREAD is dead. */
1055 last->next = thread;
1057 inf->threads = thread;
1061 for (i = 0; i < num_threads; i++)
1064 /* Throw away the duplicate send right. */
1065 mach_port_deallocate (mach_task_self (), threads[i]);
1067 /* THREADS[I] is a thread we don't know about yet! */
1071 thread = make_proc (inf, threads[i], next_thread_id++);
1073 last->next = thread;
1075 inf->threads = thread;
1077 proc_debug (thread, "new thread: %d", threads[i]);
1079 ptid = ptid_build (inf->pid, 0, thread->tid);
1081 /* Tell GDB's generic thread code. */
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);
1095 vm_deallocate (mach_task_self (),
1096 (vm_address_t) threads, (num_threads * sizeof (thread_t)));
1101 /* Makes sure that INF's thread list is synced with the actual process. */
1103 inf_update_procs (struct inf *inf)
1107 if (!inf->threads_up_to_date)
1108 inf_validate_procs (inf);
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
1116 inf_set_threads_resume_sc (struct inf *inf,
1117 struct proc *run_thread, int run_others)
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;
1127 thread->resume_sc = thread->pause_sc;
1131 /* Cause INF to continue execution immediately; individual threads may still
1132 be suspended (but their suspend counts will be updated). */
1134 inf_resume (struct inf *inf)
1136 struct proc *thread;
1138 inf_update_procs (inf);
1140 for (thread = inf->threads; thread; thread = thread->next)
1141 thread->sc = thread->resume_sc;
1145 if (!inf->pending_execs)
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);
1153 inf_update_suspends (inf);
1156 /* Cause INF to stop execution immediately; individual threads may still
1159 inf_suspend (struct inf *inf)
1161 struct proc *thread;
1163 inf_update_procs (inf);
1165 for (thread = inf->threads; thread; thread = thread->next)
1166 thread->sc = thread->pause_sc;
1169 inf->task->sc = inf->pause_sc;
1171 inf_update_suspends (inf);
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. */
1179 inf_set_step_thread (struct inf *inf, struct proc *thread)
1181 gdb_assert (!thread || proc_is_thread (thread));
1184 inf_debug (inf, "setting step thread: %d/%d", inf->pid, thread->tid);
1186 inf_debug (inf, "clearing step thread");
1188 if (inf->step_thread != thread)
1190 if (inf->step_thread && inf->step_thread->port != MACH_PORT_NULL)
1191 if (!proc_trace (inf->step_thread, 0))
1193 if (thread && proc_trace (thread, 1))
1194 inf->step_thread = thread;
1196 inf->step_thread = 0;
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. */
1205 inf_set_threads_resume_sc_for_signal_thread (struct inf *inf)
1207 if (inf->signal_thread)
1209 inf_set_threads_resume_sc (inf, inf->signal_thread, 0);
1217 inf_update_signal_thread (struct inf *inf)
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;
1225 /* Detachs from INF's inferior task, letting it run once again... */
1227 inf_detach (struct inf *inf)
1229 struct proc *task = inf->task;
1231 inf_debug (inf, "detaching...");
1233 inf_clear_wait (inf);
1234 inf_set_step_thread (inf, 0);
1238 struct proc *thread;
1240 inf_validate_procinfo (inf);
1242 inf_set_traced (inf, 0);
1248 inf_signal (inf, TARGET_SIGNAL_0);
1251 proc_restore_exc_port (task);
1252 task->sc = inf->detach_sc;
1254 for (thread = inf->threads; thread; thread = thread->next)
1256 proc_restore_exc_port (thread);
1257 thread->sc = thread->detach_sc;
1260 inf_update_suspends (inf);
1266 /* Attaches INF to the process with process id PID, returning it in a
1267 suspended state suitable for debugging. */
1269 inf_attach (struct inf *inf, int pid)
1271 inf_debug (inf, "attaching: %d", pid);
1276 inf_startup (inf, pid);
1280 /* Makes sure that we've got our exception ports entrenched in the process. */
1282 inf_steal_exc_ports (struct inf *inf)
1284 struct proc *thread;
1286 inf_debug (inf, "stealing exception ports");
1288 inf_set_step_thread (inf, 0); /* The step thread is special. */
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);
1295 /* Makes sure the process has its own exception ports. */
1297 inf_restore_exc_ports (struct inf *inf)
1299 struct proc *thread;
1301 inf_debug (inf, "restoring exception ports");
1303 inf_set_step_thread (inf, 0); /* The step thread is special. */
1305 proc_restore_exc_port (inf->task);
1306 for (thread = inf->threads; thread; thread = thread->next)
1307 proc_restore_exc_port (thread);
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. */
1315 inf_signal (struct inf *inf, enum target_signal sig)
1318 int host_sig = target_signal_to_host (sig);
1320 #define NAME target_signal_to_name (sig)
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)! */
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. */
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);
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);
1350 error (_("Can't forward spontaneous exception (%s)."), NAME);
1353 /* A Unix signal. */
1355 /* The process is stopped and expecting a signal. Just send off a
1356 request and let it get handled when we resume everything. */
1358 inf_debug (inf, "sending %s to stopped process", NAME);
1360 INF_MSGPORT_RPC (inf,
1361 msg_sig_post_untraced_request (msgport,
1363 MACH_MSG_TYPE_MAKE_SEND_ONCE,
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. */
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
1380 inf_debug (inf, "sending %s to unstopped process"
1381 " (so resuming signal thread)", NAME);
1383 INF_RESUME_MSGPORT_RPC (inf,
1384 msg_sig_post_untraced (msgport, host_sig,
1389 /* Can't do too much... */
1390 warning (_("Can't deliver signal %s: No signal thread."), NAME);
1392 warning (_("Delivering signal %s: %s"), NAME, safe_strerror (err));
1398 /* Continue INF without delivering a signal. This is meant to be used
1399 when INF does not have a message port. */
1401 inf_continue (struct inf *inf)
1404 error_t err = proc_pid2proc (proc_server, inf->pid, &proc);
1408 inf_debug (inf, "continuing process");
1410 err = proc_mark_cont (proc);
1413 struct proc *thread;
1415 for (thread = inf->threads; thread; thread = thread->next)
1416 thread_resume (thread->port);
1423 warning (_("Can't continue process: %s"), safe_strerror (err));
1427 /* The inferior used for all gdb target ops. */
1428 struct inf *current_inferior = 0;
1430 /* The inferior being waited for by gnu_wait. Since GDB is decidely not
1431 multi-threaded, we don't bother to lock this. */
1432 struct inf *waiting_inf;
1434 /* Wait for something to happen in the inferior, returning what in STATUS. */
1436 gnu_wait (ptid_t ptid, struct target_waitstatus *status)
1440 mach_msg_header_t hdr;
1441 mach_msg_type_t type;
1445 struct proc *thread;
1446 struct inf *inf = current_inferior;
1448 extern int exc_server (mach_msg_header_t *, mach_msg_header_t *);
1449 extern int msg_reply_server (mach_msg_header_t *, mach_msg_header_t *);
1450 extern int notify_server (mach_msg_header_t *, mach_msg_header_t *);
1451 extern int process_reply_server (mach_msg_header_t *, mach_msg_header_t *);
1453 gdb_assert (inf->task);
1455 if (!inf->threads && !inf->pending_execs)
1456 /* No threads! Assume that maybe some outside agency is frobbing our
1457 task, and really look for new threads. If we can't find any, just tell
1458 the user to try again later. */
1460 inf_validate_procs (inf);
1461 if (!inf->threads && !inf->task->dead)
1462 error (_("There are no threads; try again later."));
1467 inf_debug (inf, "waiting for: %s", target_pid_to_str (ptid));
1470 if (proc_wait_pid != inf->pid && !inf->no_wait)
1471 /* Always get information on events from the proc server. */
1473 inf_debug (inf, "requesting wait on pid %d", inf->pid);
1476 /* The proc server is single-threaded, and only allows a single
1477 outstanding wait request, so we have to cancel the previous one. */
1479 inf_debug (inf, "cancelling previous wait on pid %d", proc_wait_pid);
1480 interrupt_operation (proc_server, 0);
1484 proc_wait_request (proc_server, inf->event_port, inf->pid, WUNTRACED);
1486 warning (_("wait request failed: %s"), safe_strerror (err));
1489 inf_debug (inf, "waits pending: %d", proc_waits_pending);
1490 proc_wait_pid = inf->pid;
1491 /* Even if proc_waits_pending was > 0 before, we still won't
1492 get any other replies, because it was either from a
1493 different INF, or a different process attached to INF --
1494 and the event port, which is the wait reply port, changes
1495 when you switch processes. */
1496 proc_waits_pending = 1;
1500 inf_clear_wait (inf);
1502 /* What can happen? (1) Dead name notification; (2) Exceptions arrive;
1503 (3) wait reply from the proc server. */
1505 inf_debug (inf, "waiting for an event...");
1506 err = mach_msg (&msg.hdr, MACH_RCV_MSG | MACH_RCV_INTERRUPT,
1507 0, sizeof (struct msg), inf->event_port,
1508 MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
1510 /* Re-suspend the task. */
1513 if (!inf->task && inf->pending_execs)
1514 /* When doing an exec, it's possible that the old task wasn't reused
1515 (e.g., setuid execs). So if the task seems to have disappeared,
1516 attempt to refetch it, as the pid should still be the same. */
1517 inf_set_pid (inf, inf->pid);
1519 if (err == EMACH_RCV_INTERRUPTED)
1520 inf_debug (inf, "interrupted");
1522 error (_("Couldn't wait for an event: %s"), safe_strerror (err));
1527 mach_msg_header_t hdr;
1528 mach_msg_type_t err_type;
1534 inf_debug (inf, "event: msgid = %d", msg.hdr.msgh_id);
1536 /* Handle what we got. */
1537 if (!notify_server (&msg.hdr, &reply.hdr)
1538 && !exc_server (&msg.hdr, &reply.hdr)
1539 && !process_reply_server (&msg.hdr, &reply.hdr)
1540 && !msg_reply_server (&msg.hdr, &reply.hdr))
1541 /* Whatever it is, it's something strange. */
1542 error (_("Got a strange event, msg id = %d."), msg.hdr.msgh_id);
1545 error (_("Handling event, msgid = %d: %s"),
1546 msg.hdr.msgh_id, safe_strerror (reply.err));
1549 if (inf->pending_execs)
1550 /* We're waiting for the inferior to finish execing. */
1552 struct inf_wait *w = &inf->wait;
1553 enum target_waitkind kind = w->status.kind;
1555 if (kind == TARGET_WAITKIND_SPURIOUS)
1556 /* Since gdb is actually counting the number of times the inferior
1557 stops, expecting one stop per exec, we only return major events
1561 inf_debug (inf, "pending_execs = %d, ignoring minor event",
1562 inf->pending_execs);
1564 else if (kind == TARGET_WAITKIND_STOPPED
1565 && w->status.value.sig == TARGET_SIGNAL_TRAP)
1566 /* Ah hah! A SIGTRAP from the inferior while starting up probably
1567 means we've succesfully completed an exec! */
1569 if (--inf->pending_execs == 0)
1572 #if 0 /* do we need this? */
1573 prune_threads (1); /* Get rid of the old shell threads */
1574 renumber_threads (0); /* Give our threads reasonable names. */
1577 inf_debug (inf, "pending exec completed, pending_execs => %d",
1578 inf->pending_execs);
1580 else if (kind == TARGET_WAITKIND_STOPPED)
1581 /* It's possible that this signal is because of a crashed process
1582 being handled by the hurd crash server; in this case, the process
1583 will have an extra task suspend, which we need to know about.
1584 Since the code in inf_resume that normally checks for this is
1585 disabled while INF->pending_execs, we do the check here instead. */
1586 inf_validate_task_sc (inf);
1589 if (inf->wait.suppress)
1590 /* Some totally spurious event happened that we don't consider
1591 worth returning to gdb. Just keep waiting. */
1593 inf_debug (inf, "suppressing return, rewaiting...");
1598 /* Pass back out our results. */
1599 memcpy (status, &inf->wait.status, sizeof (*status));
1601 thread = inf->wait.thread;
1603 ptid = ptid_build (inf->pid, 0, thread->tid);
1604 else if (ptid_equal (ptid, minus_one_ptid))
1605 thread = inf_tid_to_thread (inf, -1);
1607 thread = inf_tid_to_thread (inf, ptid_get_tid (ptid));
1609 if (!thread || thread->port == MACH_PORT_NULL)
1611 /* TID is dead; try and find a new thread. */
1612 if (inf_update_procs (inf) && inf->threads)
1613 ptid = ptid_build (inf->pid, 0, inf->threads->tid); /* The first available thread. */
1615 ptid = inferior_ptid; /* let wait_for_inferior handle exit case */
1619 && !ptid_equal (ptid, minus_one_ptid)
1620 && status->kind != TARGET_WAITKIND_SPURIOUS
1621 && inf->pause_sc == 0 && thread->pause_sc == 0)
1622 /* If something actually happened to THREAD, make sure we
1626 inf_update_suspends (inf);
1629 inf_debug (inf, "returning ptid = %s, status = %s (%d)",
1630 target_pid_to_str (ptid),
1631 status->kind == TARGET_WAITKIND_EXITED ? "EXITED"
1632 : status->kind == TARGET_WAITKIND_STOPPED ? "STOPPED"
1633 : status->kind == TARGET_WAITKIND_SIGNALLED ? "SIGNALLED"
1634 : status->kind == TARGET_WAITKIND_LOADED ? "LOADED"
1635 : status->kind == TARGET_WAITKIND_SPURIOUS ? "SPURIOUS"
1637 status->value.integer);
1643 /* The rpc handler called by exc_server. */
1645 S_exception_raise_request (mach_port_t port, mach_port_t reply_port,
1646 thread_t thread_port, task_t task_port,
1647 int exception, int code, int subcode)
1649 struct inf *inf = waiting_inf;
1650 struct proc *thread = inf_port_to_thread (inf, thread_port);
1652 inf_debug (waiting_inf,
1653 "thread = %d, task = %d, exc = %d, code = %d, subcode = %d",
1654 thread_port, task_port, exception, code, subcode);
1657 /* We don't know about thread? */
1659 inf_update_procs (inf);
1660 thread = inf_port_to_thread (inf, thread_port);
1662 /* Give up, the generating thread is gone. */
1666 mach_port_deallocate (mach_task_self (), thread_port);
1667 mach_port_deallocate (mach_task_self (), task_port);
1669 if (!thread->aborted)
1670 /* THREAD hasn't been aborted since this exception happened (abortion
1671 clears any exception state), so it must be real. */
1673 /* Store away the details; this will destroy any previous info. */
1674 inf->wait.thread = thread;
1676 inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
1678 if (exception == EXC_BREAKPOINT)
1679 /* GDB likes to get SIGTRAP for breakpoints. */
1681 inf->wait.status.value.sig = TARGET_SIGNAL_TRAP;
1682 mach_port_deallocate (mach_task_self (), reply_port);
1685 /* Record the exception so that we can forward it later. */
1687 if (thread->exc_port == port)
1689 inf_debug (waiting_inf, "Handler is thread exception port <%d>",
1690 thread->saved_exc_port);
1691 inf->wait.exc.handler = thread->saved_exc_port;
1695 inf_debug (waiting_inf, "Handler is task exception port <%d>",
1696 inf->task->saved_exc_port);
1697 inf->wait.exc.handler = inf->task->saved_exc_port;
1698 gdb_assert (inf->task->exc_port == port);
1700 if (inf->wait.exc.handler != MACH_PORT_NULL)
1701 /* Add a reference to the exception handler. */
1702 mach_port_mod_refs (mach_task_self (),
1703 inf->wait.exc.handler, MACH_PORT_RIGHT_SEND,
1706 inf->wait.exc.exception = exception;
1707 inf->wait.exc.code = code;
1708 inf->wait.exc.subcode = subcode;
1709 inf->wait.exc.reply = reply_port;
1711 /* Exceptions are encoded in the signal space by putting them after
1712 _NSIG; this assumes they're positive (and not extremely large)! */
1713 inf->wait.status.value.sig =
1714 target_signal_from_host (_NSIG + exception);
1718 /* A supppressed exception, which ignore. */
1720 inf->wait.suppress = 1;
1721 mach_port_deallocate (mach_task_self (), reply_port);
1728 /* Fill in INF's wait field after a task has died without giving us more
1729 detailed information. */
1731 inf_task_died_status (struct inf *inf)
1733 warning (_("Pid %d died with unknown exit status, using SIGKILL."), inf->pid);
1734 inf->wait.status.kind = TARGET_WAITKIND_SIGNALLED;
1735 inf->wait.status.value.sig = TARGET_SIGNAL_KILL;
1738 /* Notify server routines. The only real one is dead name notification. */
1740 do_mach_notify_dead_name (mach_port_t notify, mach_port_t dead_port)
1742 struct inf *inf = waiting_inf;
1744 inf_debug (waiting_inf, "port = %d", dead_port);
1746 if (inf->task && inf->task->port == dead_port)
1748 proc_debug (inf->task, "is dead");
1749 inf->task->port = MACH_PORT_NULL;
1750 if (proc_wait_pid == inf->pid)
1751 /* We have a wait outstanding on the process, which will return more
1752 detailed information, so delay until we get that. */
1753 inf->wait.suppress = 1;
1755 /* We never waited for the process (maybe it wasn't a child), so just
1756 pretend it got a SIGKILL. */
1757 inf_task_died_status (inf);
1761 struct proc *thread = inf_port_to_thread (inf, dead_port);
1764 proc_debug (thread, "is dead");
1765 thread->port = MACH_PORT_NULL;
1768 if (inf->task->dead)
1769 /* Since the task is dead, its threads are dying with it. */
1770 inf->wait.suppress = 1;
1773 mach_port_deallocate (mach_task_self (), dead_port);
1774 inf->threads_up_to_date = 0; /* Just in case */
1783 warning (_("illegal rpc: %s"), fun);
1788 do_mach_notify_no_senders (mach_port_t notify, mach_port_mscount_t count)
1790 return ill_rpc ("do_mach_notify_no_senders");
1794 do_mach_notify_port_deleted (mach_port_t notify, mach_port_t name)
1796 return ill_rpc ("do_mach_notify_port_deleted");
1800 do_mach_notify_msg_accepted (mach_port_t notify, mach_port_t name)
1802 return ill_rpc ("do_mach_notify_msg_accepted");
1806 do_mach_notify_port_destroyed (mach_port_t notify, mach_port_t name)
1808 return ill_rpc ("do_mach_notify_port_destroyed");
1812 do_mach_notify_send_once (mach_port_t notify)
1814 return ill_rpc ("do_mach_notify_send_once");
1818 /* Process_reply server routines. We only use process_wait_reply. */
1821 S_proc_wait_reply (mach_port_t reply, error_t err,
1822 int status, int sigcode, rusage_t rusage, pid_t pid)
1824 struct inf *inf = waiting_inf;
1826 inf_debug (inf, "err = %s, pid = %d, status = 0x%x, sigcode = %d",
1827 err ? safe_strerror (err) : "0", pid, status, sigcode);
1829 if (err && proc_wait_pid && (!inf->task || !inf->task->port))
1830 /* Ack. The task has died, but the task-died notification code didn't
1831 tell anyone because it thought a more detailed reply from the
1832 procserver was forthcoming. However, we now learn that won't
1833 happen... So we have to act like the task just died, and this time,
1835 inf_task_died_status (inf);
1837 if (--proc_waits_pending == 0)
1838 /* PROC_WAIT_PID represents the most recent wait. We will always get
1839 replies in order because the proc server is single threaded. */
1842 inf_debug (inf, "waits pending now: %d", proc_waits_pending);
1848 warning (_("Can't wait for pid %d: %s"), inf->pid, safe_strerror (err));
1851 /* Since we can't see the inferior's signals, don't trap them. */
1852 inf_set_traced (inf, 0);
1855 else if (pid == inf->pid)
1857 store_waitstatus (&inf->wait.status, status);
1858 if (inf->wait.status.kind == TARGET_WAITKIND_STOPPED)
1859 /* The process has sent us a signal, and stopped itself in a sane
1860 state pending our actions. */
1862 inf_debug (inf, "process has stopped itself");
1867 inf->wait.suppress = 1; /* Something odd happened. Ignore. */
1873 S_proc_setmsgport_reply (mach_port_t reply, error_t err,
1874 mach_port_t old_msg_port)
1876 return ill_rpc ("S_proc_setmsgport_reply");
1880 S_proc_getmsgport_reply (mach_port_t reply, error_t err, mach_port_t msg_port)
1882 return ill_rpc ("S_proc_getmsgport_reply");
1886 /* Msg_reply server routines. We only use msg_sig_post_untraced_reply. */
1889 S_msg_sig_post_untraced_reply (mach_port_t reply, error_t err)
1891 struct inf *inf = waiting_inf;
1894 /* EBUSY is what we get when the crash server has grabbed control of the
1895 process and doesn't like what signal we tried to send it. Just act
1896 like the process stopped (using a signal of 0 should mean that the
1897 *next* time the user continues, it will pass signal 0, which the crash
1898 server should like). */
1900 inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
1901 inf->wait.status.value.sig = TARGET_SIGNAL_0;
1904 warning (_("Signal delivery failed: %s"), safe_strerror (err));
1907 /* We only get this reply when we've posted a signal to a process which we
1908 thought was stopped, and which we expected to continue after the signal.
1909 Given that the signal has failed for some reason, it's reasonable to
1910 assume it's still stopped. */
1913 inf->wait.suppress = 1;
1919 S_msg_sig_post_reply (mach_port_t reply, error_t err)
1921 return ill_rpc ("S_msg_sig_post_reply");
1925 /* Returns the number of messages queued for the receive right PORT. */
1926 static mach_port_msgcount_t
1927 port_msgs_queued (mach_port_t port)
1929 struct mach_port_status status;
1931 mach_port_get_receive_status (mach_task_self (), port, &status);
1936 return status.mps_msgcount;
1940 /* Resume execution of the inferior process.
1942 If STEP is nonzero, single-step it.
1943 If SIGNAL is nonzero, give it that signal.
1946 -1 true Single step the current thread allowing other threads to run.
1947 -1 false Continue the current thread allowing other threads to run.
1948 X true Single step the given thread, don't allow any others to run.
1949 X false Continue the given thread, do not allow any others to run.
1950 (Where X, of course, is anything except -1)
1952 Note that a resume may not `take' if there are pending exceptions/&c
1953 still unprocessed from the last resume we did (any given resume may result
1954 in multiple events returned by wait).
1957 gnu_resume (ptid_t ptid, int step, enum target_signal sig)
1959 struct proc *step_thread = 0;
1961 struct inf *inf = current_inferior;
1963 inf_debug (inf, "ptid = %s, step = %d, sig = %d",
1964 target_pid_to_str (ptid), step, sig);
1966 inf_validate_procinfo (inf);
1968 if (sig != TARGET_SIGNAL_0 || inf->stopped)
1970 if (sig == TARGET_SIGNAL_0 && inf->nomsg)
1973 inf_signal (inf, sig);
1975 else if (inf->wait.exc.reply != MACH_PORT_NULL)
1976 /* We received an exception to which we have chosen not to forward, so
1977 abort the faulting thread, which will perhaps retake it. */
1979 proc_abort (inf->wait.thread, 1);
1980 warning (_("Aborting %s with unforwarded exception %s."),
1981 proc_string (inf->wait.thread),
1982 target_signal_to_name (inf->wait.status.value.sig));
1985 if (port_msgs_queued (inf->event_port))
1986 /* If there are still messages in our event queue, don't bother resuming
1987 the process, as we're just going to stop it right away anyway. */
1990 inf_update_procs (inf);
1992 /* A specific PTID means `step only this process id'. */
1993 resume_all = ptid_equal (ptid, minus_one_ptid);
1996 /* Allow all threads to run, except perhaps single-stepping one. */
1998 inf_debug (inf, "running all threads; tid = %d", PIDGET (inferior_ptid));
1999 ptid = inferior_ptid; /* What to step. */
2000 inf_set_threads_resume_sc (inf, 0, 1);
2003 /* Just allow a single thread to run. */
2005 struct proc *thread = inf_tid_to_thread (inf, ptid_get_tid (ptid));
2007 error (_("Can't run single thread id %s: no such thread!"),
2008 target_pid_to_str (ptid));
2009 inf_debug (inf, "running one thread: %s", target_pid_to_str (ptid));
2010 inf_set_threads_resume_sc (inf, thread, 0);
2015 step_thread = inf_tid_to_thread (inf, ptid_get_tid (ptid));
2017 warning (_("Can't step thread id %s: no such thread."),
2018 target_pid_to_str (ptid));
2020 inf_debug (inf, "stepping thread: %s", target_pid_to_str (ptid));
2022 if (step_thread != inf->step_thread)
2023 inf_set_step_thread (inf, step_thread);
2025 inf_debug (inf, "here we go...");
2031 gnu_kill_inferior (void)
2033 struct proc *task = current_inferior->task;
2036 proc_debug (task, "terminating...");
2037 task_terminate (task->port);
2038 inf_set_pid (current_inferior, -1);
2040 target_mourn_inferior ();
2043 /* Clean up after the inferior dies. */
2045 gnu_mourn_inferior (void)
2047 inf_debug (current_inferior, "rip");
2048 inf_detach (current_inferior);
2049 unpush_target (&gnu_ops);
2050 generic_mourn_inferior ();
2054 /* Fork an inferior process, and start debugging it. */
2056 /* Set INFERIOR_PID to the first thread available in the child, if any. */
2058 inf_pick_first_thread (void)
2060 if (current_inferior->task && current_inferior->threads)
2061 /* The first thread. */
2062 return current_inferior->threads->tid;
2064 /* What may be the next thread. */
2065 return next_thread_id;
2071 if (!current_inferior)
2072 current_inferior = make_inf ();
2073 return current_inferior;
2077 gnu_create_inferior (char *exec_file, char *allargs, char **env,
2080 struct inf *inf = cur_inf ();
2084 /* We're in the child; make this process stop as soon as it execs. */
2085 inf_debug (inf, "tracing self");
2086 if (ptrace (PTRACE_TRACEME) != 0)
2087 error (_("ptrace (PTRACE_TRACEME) failed!"));
2089 void attach_to_child (int pid)
2091 /* Attach to the now stopped child, which is actually a shell... */
2092 inf_debug (inf, "attaching to child: %d", pid);
2094 inf_attach (inf, pid);
2097 push_target (&gnu_ops);
2099 inf->pending_execs = 2;
2103 /* Now let the child run again, knowing that it will stop immediately
2104 because of the ptrace. */
2107 /* We now have thread info. */
2108 thread_change_ptid (inferior_ptid,
2109 ptid_build (inf->pid, 0, inf_pick_first_thread ()));
2111 startup_inferior (inf->pending_execs);
2114 inf_debug (inf, "creating inferior");
2116 fork_inferior (exec_file, allargs, env, trace_me, attach_to_child,
2119 inf_validate_procinfo (inf);
2120 inf_update_signal_thread (inf);
2121 inf_set_traced (inf, inf->want_signals);
2123 /* Execing the process will have trashed our exception ports; steal them
2124 back (or make sure they're restored if the user wants that). */
2125 if (inf->want_exceptions)
2126 inf_steal_exc_ports (inf);
2128 inf_restore_exc_ports (inf);
2131 /* Mark our target-struct as eligible for stray "run" and "attach"
2140 /* Attach to process PID, then initialize for debugging it
2141 and wait for the trace-trap that results from attaching. */
2143 gnu_attach (char *args, int from_tty)
2147 struct inf *inf = cur_inf ();
2150 error_no_arg (_("process-id to attach"));
2154 if (pid == getpid ()) /* Trying to masturbate? */
2155 error (_("I refuse to debug myself!"));
2159 exec_file = (char *) get_exec_file (0);
2162 printf_unfiltered ("Attaching to program `%s', pid %d\n",
2165 printf_unfiltered ("Attaching to pid %d\n", pid);
2167 gdb_flush (gdb_stdout);
2170 inf_debug (inf, "attaching to pid: %d", pid);
2172 inf_attach (inf, pid);
2174 push_target (&gnu_ops);
2176 inf_update_procs (inf);
2178 inferior_ptid = ptid_build (pid, 0, inf_pick_first_thread ());
2182 /* We have to initialize the terminal settings now, since the code
2183 below might try to restore them. */
2184 target_terminal_init ();
2186 /* If the process was stopped before we attached, make it continue the next
2187 time the user does a continue. */
2188 inf_validate_procinfo (inf);
2190 inf_update_signal_thread (inf);
2191 inf_set_traced (inf, inf->want_signals);
2193 #if 0 /* Do we need this? */
2194 renumber_threads (0); /* Give our threads reasonable names. */
2199 /* Take a program previously attached to and detaches it.
2200 The program resumes execution and will no longer stop
2201 on signals, etc. We'd better not have left any breakpoints
2202 in the program or it'll die when it hits one. For this
2203 to work, it may be necessary for the process to have been
2204 previously attached. It *might* work if the program was
2205 started via fork. */
2207 gnu_detach (char *args, int from_tty)
2211 char *exec_file = get_exec_file (0);
2213 printf_unfiltered ("Detaching from program `%s' pid %d\n",
2214 exec_file, current_inferior->pid);
2216 printf_unfiltered ("Detaching from pid %d\n", current_inferior->pid);
2217 gdb_flush (gdb_stdout);
2220 inf_detach (current_inferior);
2222 inferior_ptid = null_ptid;
2224 unpush_target (&gnu_ops); /* Pop out of handling an inferior */
2228 gnu_terminal_init_inferior (void)
2230 gdb_assert (current_inferior);
2231 terminal_init_inferior_with_pgrp (current_inferior->pid);
2234 /* Get ready to modify the registers array. On machines which store
2235 individual registers, this doesn't need to do anything. On machines
2236 which store all the registers in one fell swoop, this makes sure
2237 that registers contains all the registers from the program being
2240 gnu_prepare_to_store (struct regcache *regcache)
2245 gnu_open (char *arg, int from_tty)
2247 error (_("Use the \"run\" command to start a Unix child process."));
2251 gnu_stop (ptid_t ptid)
2253 error (_("to_stop target function not implemented"));
2257 gnu_pid_to_exec_file (int pid)
2259 error (_("to_pid_to_exec_file target function not implemented"));
2265 gnu_thread_alive (ptid_t ptid)
2267 inf_update_procs (current_inferior);
2268 return !!inf_tid_to_thread (current_inferior,
2269 ptid_get_tid (ptid));
2273 /* Read inferior task's LEN bytes from ADDR and copy it to MYADDR in
2274 gdb's address space. Return 0 on failure; number of bytes read
2277 gnu_read_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length)
2280 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2281 vm_size_t aligned_length =
2282 (vm_size_t) round_page (addr + length) - low_address;
2286 /* Get memory from inferior with page aligned addresses */
2287 err = vm_read (task, low_address, aligned_length, &copied, ©_count);
2291 err = hurd_safe_copyin (myaddr, (void *) (addr - low_address + copied), length);
2294 warning (_("Read from inferior faulted: %s"), safe_strerror (err));
2298 err = vm_deallocate (mach_task_self (), copied, copy_count);
2300 warning (_("gnu_read_inferior vm_deallocate failed: %s"), safe_strerror (err));
2305 #define CHK_GOTO_OUT(str,ret) \
2306 do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0)
2308 struct vm_region_list
2310 struct vm_region_list *next;
2311 vm_prot_t protection;
2316 struct obstack region_obstack;
2318 /* Write gdb's LEN bytes from MYADDR and copy it to ADDR in inferior
2319 task's address space. */
2321 gnu_write_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length)
2324 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2325 vm_size_t aligned_length =
2326 (vm_size_t) round_page (addr + length) - low_address;
2331 char *errstr = "Bug in gnu_write_inferior";
2333 struct vm_region_list *region_element;
2334 struct vm_region_list *region_head = (struct vm_region_list *) NULL;
2336 /* Get memory from inferior with page aligned addresses */
2337 err = vm_read (task,
2342 CHK_GOTO_OUT ("gnu_write_inferior vm_read failed", err);
2346 err = hurd_safe_copyout ((void *) (addr - low_address + copied),
2348 CHK_GOTO_OUT ("Write to inferior faulted", err);
2350 obstack_init (®ion_obstack);
2352 /* Do writes atomically.
2353 First check for holes and unwritable memory. */
2355 vm_size_t remaining_length = aligned_length;
2356 vm_address_t region_address = low_address;
2358 struct vm_region_list *scan;
2360 while (region_address < low_address + aligned_length)
2362 vm_prot_t protection;
2363 vm_prot_t max_protection;
2364 vm_inherit_t inheritance;
2366 mach_port_t object_name;
2368 vm_size_t region_length = remaining_length;
2369 vm_address_t old_address = region_address;
2371 err = vm_region (task,
2380 CHK_GOTO_OUT ("vm_region failed", err);
2382 /* Check for holes in memory */
2383 if (old_address != region_address)
2385 warning (_("No memory at 0x%x. Nothing written"),
2392 if (!(max_protection & VM_PROT_WRITE))
2394 warning (_("Memory at address 0x%x is unwritable. Nothing written"),
2401 /* Chain the regions for later use */
2403 (struct vm_region_list *)
2404 obstack_alloc (®ion_obstack, sizeof (struct vm_region_list));
2406 region_element->protection = protection;
2407 region_element->start = region_address;
2408 region_element->length = region_length;
2410 /* Chain the regions along with protections */
2411 region_element->next = region_head;
2412 region_head = region_element;
2414 region_address += region_length;
2415 remaining_length = remaining_length - region_length;
2418 /* If things fail after this, we give up.
2419 Somebody is messing up inferior_task's mappings. */
2421 /* Enable writes to the chained vm regions */
2422 for (scan = region_head; scan; scan = scan->next)
2424 if (!(scan->protection & VM_PROT_WRITE))
2426 err = vm_protect (task,
2430 scan->protection | VM_PROT_WRITE);
2431 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2435 err = vm_write (task,
2439 CHK_GOTO_OUT ("vm_write failed", err);
2441 /* Set up the original region protections, if they were changed */
2442 for (scan = region_head; scan; scan = scan->next)
2444 if (!(scan->protection & VM_PROT_WRITE))
2446 err = vm_protect (task,
2451 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2459 obstack_free (®ion_obstack, 0);
2461 (void) vm_deallocate (mach_task_self (),
2466 if (err != KERN_SUCCESS)
2468 warning (_("%s: %s"), errstr, mach_error_string (err));
2476 /* Return 0 on failure, number of bytes handled otherwise. TARGET
2479 gnu_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write,
2480 struct mem_attrib *attrib,
2481 struct target_ops *target)
2483 task_t task = (current_inferior
2484 ? (current_inferior->task
2485 ? current_inferior->task->port : 0)
2488 if (task == MACH_PORT_NULL)
2492 inf_debug (current_inferior, "%s %p[%d] %s %p",
2493 write ? "writing" : "reading", (void *) memaddr, len,
2494 write ? "<--" : "-->", myaddr);
2496 return gnu_write_inferior (task, memaddr, myaddr, len);
2498 return gnu_read_inferior (task, memaddr, myaddr, len);
2502 /* Call FUNC on each memory region in the task. */
2504 gnu_find_memory_regions (int (*func) (CORE_ADDR,
2512 vm_address_t region_address, last_region_address, last_region_end;
2513 vm_prot_t last_protection;
2515 if (current_inferior == 0 || current_inferior->task == 0)
2517 task = current_inferior->task->port;
2518 if (task == MACH_PORT_NULL)
2521 region_address = last_region_address = last_region_end = VM_MIN_ADDRESS;
2522 last_protection = VM_PROT_NONE;
2523 while (region_address < VM_MAX_ADDRESS)
2525 vm_prot_t protection;
2526 vm_prot_t max_protection;
2527 vm_inherit_t inheritance;
2529 mach_port_t object_name;
2531 vm_size_t region_length = VM_MAX_ADDRESS - region_address;
2532 vm_address_t old_address = region_address;
2534 err = vm_region (task,
2543 if (err == KERN_NO_SPACE)
2545 if (err != KERN_SUCCESS)
2547 warning (_("vm_region failed: %s"), mach_error_string (err));
2551 if (protection == last_protection && region_address == last_region_end)
2552 /* This region is contiguous with and indistinguishable from
2553 the previous one, so we just extend that one. */
2554 last_region_end = region_address += region_length;
2557 /* This region is distinct from the last one we saw, so report
2558 that previous one. */
2559 if (last_protection != VM_PROT_NONE)
2560 (*func) (last_region_address,
2561 last_region_end - last_region_address,
2562 last_protection & VM_PROT_READ,
2563 last_protection & VM_PROT_WRITE,
2564 last_protection & VM_PROT_EXECUTE,
2566 last_region_address = region_address;
2567 last_region_end = region_address += region_length;
2568 last_protection = protection;
2572 /* Report the final region. */
2573 if (last_region_end > last_region_address && last_protection != VM_PROT_NONE)
2574 (*func) (last_region_address, last_region_end - last_region_address,
2575 last_protection & VM_PROT_READ,
2576 last_protection & VM_PROT_WRITE,
2577 last_protection & VM_PROT_EXECUTE,
2584 /* Return printable description of proc. */
2586 proc_string (struct proc *proc)
2588 static char tid_str[80];
2589 if (proc_is_task (proc))
2590 sprintf (tid_str, "process %d", proc->inf->pid);
2592 sprintf (tid_str, "Thread %d.%d",
2593 proc->inf->pid, proc->tid);
2598 gnu_pid_to_str (ptid_t ptid)
2600 struct inf *inf = current_inferior;
2601 int tid = ptid_get_tid (ptid);
2602 struct proc *thread = inf_tid_to_thread (inf, tid);
2605 return proc_string (thread);
2608 static char tid_str[80];
2609 sprintf (tid_str, "bogus thread id %d", tid);
2615 extern void gnu_store_registers (struct regcache *regcache, int regno);
2616 extern void gnu_fetch_registers (struct regcache *regcache, int regno);
2618 struct target_ops gnu_ops;
2623 gnu_ops.to_shortname = "GNU"; /* to_shortname */
2624 gnu_ops.to_longname = "GNU Hurd process"; /* to_longname */
2625 gnu_ops.to_doc = "GNU Hurd process"; /* to_doc */
2626 gnu_ops.to_open = gnu_open; /* to_open */
2627 gnu_ops.to_attach = gnu_attach; /* to_attach */
2628 gnu_ops.to_attach_no_wait = 1; /* to_attach_no_wait */
2629 gnu_ops.to_detach = gnu_detach; /* to_detach */
2630 gnu_ops.to_resume = gnu_resume; /* to_resume */
2631 gnu_ops.to_wait = gnu_wait; /* to_wait */
2632 gnu_ops.to_fetch_registers = gnu_fetch_registers; /* to_fetch_registers */
2633 gnu_ops.to_store_registers = gnu_store_registers; /* to_store_registers */
2634 gnu_ops.to_prepare_to_store = gnu_prepare_to_store; /* to_prepare_to_store */
2635 gnu_ops.deprecated_xfer_memory = gnu_xfer_memory;
2636 gnu_ops.to_find_memory_regions = gnu_find_memory_regions;
2637 gnu_ops.to_insert_breakpoint = memory_insert_breakpoint;
2638 gnu_ops.to_remove_breakpoint = memory_remove_breakpoint;
2639 gnu_ops.to_terminal_init = gnu_terminal_init_inferior;
2640 gnu_ops.to_terminal_inferior = terminal_inferior;
2641 gnu_ops.to_terminal_ours_for_output = terminal_ours_for_output;
2642 gnu_ops.to_terminal_save_ours = terminal_save_ours;
2643 gnu_ops.to_terminal_ours = terminal_ours;
2644 gnu_ops.to_terminal_info = child_terminal_info;
2645 gnu_ops.to_kill = gnu_kill_inferior; /* to_kill */
2646 gnu_ops.to_create_inferior = gnu_create_inferior; /* to_create_inferior */
2647 gnu_ops.to_mourn_inferior = gnu_mourn_inferior; /* to_mourn_inferior */
2648 gnu_ops.to_can_run = gnu_can_run; /* to_can_run */
2649 gnu_ops.to_thread_alive = gnu_thread_alive; /* to_thread_alive */
2650 gnu_ops.to_pid_to_str = gnu_pid_to_str; /* to_pid_to_str */
2651 gnu_ops.to_stop = gnu_stop; /* to_stop */
2652 gnu_ops.to_pid_to_exec_file = gnu_pid_to_exec_file; /* to_pid_to_exec_file */
2653 gnu_ops.to_stratum = process_stratum; /* to_stratum */
2654 gnu_ops.to_has_all_memory = 1; /* to_has_all_memory */
2655 gnu_ops.to_has_memory = 1; /* to_has_memory */
2656 gnu_ops.to_has_stack = 1; /* to_has_stack */
2657 gnu_ops.to_has_registers = 1; /* to_has_registers */
2658 gnu_ops.to_has_execution = 1; /* to_has_execution */
2659 gnu_ops.to_magic = OPS_MAGIC; /* to_magic */
2660 } /* init_gnu_ops */
2663 /* User task commands. */
2665 struct cmd_list_element *set_task_cmd_list = 0;
2666 struct cmd_list_element *show_task_cmd_list = 0;
2667 /* User thread commands. */
2669 /* Commands with a prefix of `set/show thread'. */
2670 extern struct cmd_list_element *thread_cmd_list;
2671 struct cmd_list_element *set_thread_cmd_list = NULL;
2672 struct cmd_list_element *show_thread_cmd_list = NULL;
2674 /* Commands with a prefix of `set/show thread default'. */
2675 struct cmd_list_element *set_thread_default_cmd_list = NULL;
2676 struct cmd_list_element *show_thread_default_cmd_list = NULL;
2679 set_thread_cmd (char *args, int from_tty)
2681 printf_unfiltered ("\"set thread\" must be followed by the name of a thread property, or \"default\".\n");
2685 show_thread_cmd (char *args, int from_tty)
2687 printf_unfiltered ("\"show thread\" must be followed by the name of a thread property, or \"default\".\n");
2691 set_thread_default_cmd (char *args, int from_tty)
2693 printf_unfiltered ("\"set thread default\" must be followed by the name of a thread property.\n");
2697 show_thread_default_cmd (char *args, int from_tty)
2699 printf_unfiltered ("\"show thread default\" must be followed by the name of a thread property.\n");
2703 parse_int_arg (char *args, char *cmd_prefix)
2708 int val = strtoul (args, &arg_end, 10);
2709 if (*args && *arg_end == '\0')
2712 error (_("Illegal argument for \"%s\" command, should be an integer."), cmd_prefix);
2716 _parse_bool_arg (char *args, char *t_val, char *f_val, char *cmd_prefix)
2718 if (!args || strcmp (args, t_val) == 0)
2720 else if (strcmp (args, f_val) == 0)
2723 error (_("Illegal argument for \"%s\" command, should be \"%s\" or \"%s\"."),
2724 cmd_prefix, t_val, f_val);
2727 #define parse_bool_arg(args, cmd_prefix) \
2728 _parse_bool_arg (args, "on", "off", cmd_prefix)
2731 check_empty (char *args, char *cmd_prefix)
2734 error (_("Garbage after \"%s\" command: `%s'"), cmd_prefix, args);
2737 /* Returns the alive thread named by INFERIOR_PID, or signals an error. */
2738 static struct proc *
2741 struct inf *inf = cur_inf ();
2742 struct proc *thread = inf_tid_to_thread (inf,
2743 ptid_get_tid (inferior_ptid));
2745 error (_("No current thread."));
2749 /* Returns the current inferior, but signals an error if it has no task. */
2753 struct inf *inf = cur_inf ();
2755 error (_("No current process."));
2761 set_task_pause_cmd (char *args, int from_tty)
2763 struct inf *inf = cur_inf ();
2764 int old_sc = inf->pause_sc;
2766 inf->pause_sc = parse_bool_arg (args, "set task pause");
2768 if (old_sc == 0 && inf->pause_sc != 0)
2769 /* If the task is currently unsuspended, immediately suspend it,
2770 otherwise wait until the next time it gets control. */
2775 show_task_pause_cmd (char *args, int from_tty)
2777 struct inf *inf = cur_inf ();
2778 check_empty (args, "show task pause");
2779 printf_unfiltered ("The inferior task %s suspended while gdb has control.\n",
2781 ? (inf->pause_sc == 0 ? "isn't" : "is")
2782 : (inf->pause_sc == 0 ? "won't be" : "will be"));
2786 set_task_detach_sc_cmd (char *args, int from_tty)
2788 cur_inf ()->detach_sc = parse_int_arg (args, "set task detach-suspend-count");
2792 show_task_detach_sc_cmd (char *args, int from_tty)
2794 check_empty (args, "show task detach-suspend-count");
2795 printf_unfiltered ("The inferior task will be left with a suspend count of %d when detaching.\n",
2796 cur_inf ()->detach_sc);
2801 set_thread_default_pause_cmd (char *args, int from_tty)
2803 struct inf *inf = cur_inf ();
2804 inf->default_thread_pause_sc =
2805 parse_bool_arg (args, "set thread default pause") ? 0 : 1;
2809 show_thread_default_pause_cmd (char *args, int from_tty)
2811 struct inf *inf = cur_inf ();
2812 int sc = inf->default_thread_pause_sc;
2813 check_empty (args, "show thread default pause");
2814 printf_unfiltered ("New threads %s suspended while gdb has control%s.\n",
2815 sc ? "are" : "aren't",
2816 !sc && inf->pause_sc ? " (but the task is)" : "");
2820 set_thread_default_run_cmd (char *args, int from_tty)
2822 struct inf *inf = cur_inf ();
2823 inf->default_thread_run_sc =
2824 parse_bool_arg (args, "set thread default run") ? 0 : 1;
2828 show_thread_default_run_cmd (char *args, int from_tty)
2830 struct inf *inf = cur_inf ();
2831 check_empty (args, "show thread default run");
2832 printf_unfiltered ("New threads %s allowed to run.\n",
2833 inf->default_thread_run_sc == 0 ? "are" : "aren't");
2837 set_thread_default_detach_sc_cmd (char *args, int from_tty)
2839 cur_inf ()->default_thread_detach_sc =
2840 parse_int_arg (args, "set thread default detach-suspend-count");
2844 show_thread_default_detach_sc_cmd (char *args, int from_tty)
2846 check_empty (args, "show thread default detach-suspend-count");
2847 printf_unfiltered ("New threads will get a detach-suspend-count of %d.\n",
2848 cur_inf ()->default_thread_detach_sc);
2852 /* Steal a send right called NAME in the inferior task, and make it PROC's
2853 saved exception port. */
2855 steal_exc_port (struct proc *proc, mach_port_t name)
2859 mach_msg_type_name_t port_type;
2861 if (!proc || !proc->inf->task)
2862 error (_("No inferior task."));
2864 err = mach_port_extract_right (proc->inf->task->port,
2865 name, MACH_MSG_TYPE_COPY_SEND,
2868 error (_("Couldn't extract send right %d from inferior: %s"),
2869 name, safe_strerror (err));
2871 if (proc->saved_exc_port)
2872 /* Get rid of our reference to the old one. */
2873 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
2875 proc->saved_exc_port = port;
2877 if (!proc->exc_port)
2878 /* If PROC is a thread, we may not have set its exception port before.
2879 We can't use proc_steal_exc_port because it also sets saved_exc_port. */
2881 proc->exc_port = proc->inf->event_port;
2882 err = proc_set_exception_port (proc, proc->exc_port);
2883 error (_("Can't set exception port for %s: %s"),
2884 proc_string (proc), safe_strerror (err));
2889 set_task_exc_port_cmd (char *args, int from_tty)
2891 struct inf *inf = cur_inf ();
2893 error (_("No argument to \"set task exception-port\" command."));
2894 steal_exc_port (inf->task, parse_and_eval_address (args));
2898 set_stopped_cmd (char *args, int from_tty)
2900 cur_inf ()->stopped = _parse_bool_arg (args, "yes", "no", "set stopped");
2904 show_stopped_cmd (char *args, int from_tty)
2906 struct inf *inf = active_inf ();
2907 check_empty (args, "show stopped");
2908 printf_unfiltered ("The inferior process %s stopped.\n",
2909 inf->stopped ? "is" : "isn't");
2913 set_sig_thread_cmd (char *args, int from_tty)
2915 struct inf *inf = cur_inf ();
2917 if (!args || (!isdigit (*args) && strcmp (args, "none") != 0))
2918 error (_("Illegal argument to \"set signal-thread\" command.\n"
2919 "Should be an integer thread ID, or `none'."));
2921 if (strcmp (args, "none") == 0)
2922 inf->signal_thread = 0;
2925 int tid = ptid_get_tid (thread_id_to_pid (atoi (args)));
2927 error (_("Thread ID %s not known. Use the \"info threads\" command to\n"
2928 "see the IDs of currently known threads."), args);
2929 inf->signal_thread = inf_tid_to_thread (inf, tid);
2934 show_sig_thread_cmd (char *args, int from_tty)
2936 struct inf *inf = active_inf ();
2937 check_empty (args, "show signal-thread");
2938 if (inf->signal_thread)
2939 printf_unfiltered ("The signal thread is %s.\n",
2940 proc_string (inf->signal_thread));
2942 printf_unfiltered ("There is no signal thread.\n");
2947 set_signals_cmd (char *args, int from_tty)
2949 struct inf *inf = cur_inf ();
2951 inf->want_signals = parse_bool_arg (args, "set signals");
2953 if (inf->task && inf->want_signals != inf->traced)
2954 /* Make this take effect immediately in a running process. */
2955 inf_set_traced (inf, inf->want_signals);
2959 show_signals_cmd (char *args, int from_tty)
2961 struct inf *inf = cur_inf ();
2962 check_empty (args, "show signals");
2963 printf_unfiltered ("The inferior process's signals %s intercepted.\n",
2965 ? (inf->traced ? "are" : "aren't")
2966 : (inf->want_signals ? "will be" : "won't be"));
2970 set_exceptions_cmd (char *args, int from_tty)
2972 struct inf *inf = cur_inf ();
2973 int val = parse_bool_arg (args, "set exceptions");
2975 if (inf->task && inf->want_exceptions != val)
2976 /* Make this take effect immediately in a running process. */
2979 inf->want_exceptions = val;
2983 show_exceptions_cmd (char *args, int from_tty)
2985 struct inf *inf = cur_inf ();
2986 check_empty (args, "show exceptions");
2987 printf_unfiltered ("Exceptions in the inferior %s trapped.\n",
2989 ? (inf->want_exceptions ? "are" : "aren't")
2990 : (inf->want_exceptions ? "will be" : "won't be"));
2995 set_task_cmd (char *args, int from_tty)
2997 printf_unfiltered ("\"set task\" must be followed by the name"
2998 " of a task property.\n");
3002 show_task_cmd (char *args, int from_tty)
3004 struct inf *inf = cur_inf ();
3006 check_empty (args, "show task");
3008 show_signals_cmd (0, from_tty);
3009 show_exceptions_cmd (0, from_tty);
3010 show_task_pause_cmd (0, from_tty);
3012 if (inf->pause_sc == 0)
3013 show_thread_default_pause_cmd (0, from_tty);
3014 show_thread_default_run_cmd (0, from_tty);
3018 show_stopped_cmd (0, from_tty);
3019 show_sig_thread_cmd (0, from_tty);
3022 if (inf->detach_sc != 0)
3023 show_task_detach_sc_cmd (0, from_tty);
3024 if (inf->default_thread_detach_sc != 0)
3025 show_thread_default_detach_sc_cmd (0, from_tty);
3030 set_noninvasive_cmd (char *args, int from_tty)
3032 /* Invert the sense of the arg for each component. */
3033 char *inv_args = parse_bool_arg (args, "set noninvasive") ? "off" : "on";
3035 set_task_pause_cmd (inv_args, from_tty);
3036 set_signals_cmd (inv_args, from_tty);
3037 set_exceptions_cmd (inv_args, from_tty);
3042 info_port_rights (char *args, mach_port_type_t only)
3044 struct inf *inf = active_inf ();
3045 struct value *vmark = value_mark ();
3048 /* Explicit list of port rights. */
3052 struct value *val = parse_to_comma_and_eval (&args);
3053 long right = value_as_long (val);
3055 print_port_info (right, 0, inf->task->port, PORTINFO_DETAILS,
3058 error (_("%ld: %s."), right, safe_strerror (err));
3062 /* Print all of them. */
3065 print_task_ports_info (inf->task->port, only, PORTINFO_DETAILS,
3068 error (_("%s."), safe_strerror (err));
3071 value_free_to_mark (vmark);
3075 info_send_rights_cmd (char *args, int from_tty)
3077 info_port_rights (args, MACH_PORT_TYPE_SEND);
3081 info_recv_rights_cmd (char *args, int from_tty)
3083 info_port_rights (args, MACH_PORT_TYPE_RECEIVE);
3087 info_port_sets_cmd (char *args, int from_tty)
3089 info_port_rights (args, MACH_PORT_TYPE_PORT_SET);
3093 info_dead_names_cmd (char *args, int from_tty)
3095 info_port_rights (args, MACH_PORT_TYPE_DEAD_NAME);
3099 info_port_rights_cmd (char *args, int from_tty)
3101 info_port_rights (args, ~0);
3106 add_task_commands (void)
3108 add_cmd ("pause", class_run, set_thread_default_pause_cmd, _("\
3109 Set whether the new threads are suspended while gdb has control.\n\
3110 This property normally has no effect because the whole task is\n\
3111 suspended, however, that may be disabled with \"set task pause off\".\n\
3112 The default value is \"off\"."),
3113 &set_thread_default_cmd_list);
3114 add_cmd ("pause", no_class, show_thread_default_pause_cmd, _("\
3115 Show whether new threads are suspended while gdb has control."),
3116 &show_thread_default_cmd_list);
3118 add_cmd ("run", class_run, set_thread_default_run_cmd, _("\
3119 Set whether new threads are allowed to run (once gdb has noticed them)."),
3120 &set_thread_default_cmd_list);
3121 add_cmd ("run", no_class, show_thread_default_run_cmd, _("\
3122 Show whether new threads are allowed to run (once gdb has noticed them)."),
3123 &show_thread_default_cmd_list);
3125 add_cmd ("detach-suspend-count", class_run, set_thread_default_detach_sc_cmd,
3126 _("Set the default detach-suspend-count value for new threads."),
3127 &set_thread_default_cmd_list);
3128 add_cmd ("detach-suspend-count", no_class, show_thread_default_detach_sc_cmd,
3129 _("Show the default detach-suspend-count value for new threads."),
3130 &show_thread_default_cmd_list);
3132 add_cmd ("signals", class_run, set_signals_cmd, _("\
3133 Set whether the inferior process's signals will be intercepted.\n\
3134 Mach exceptions (such as breakpoint traps) are not affected."),
3136 add_alias_cmd ("sigs", "signals", class_run, 1, &setlist);
3137 add_cmd ("signals", no_class, show_signals_cmd, _("\
3138 Show whether the inferior process's signals will be intercepted."),
3140 add_alias_cmd ("sigs", "signals", no_class, 1, &showlist);
3142 add_cmd ("signal-thread", class_run, set_sig_thread_cmd, _("\
3143 Set the thread that gdb thinks is the libc signal thread.\n\
3144 This thread is run when delivering a signal to a non-stopped process."),
3146 add_alias_cmd ("sigthread", "signal-thread", class_run, 1, &setlist);
3147 add_cmd ("signal-thread", no_class, show_sig_thread_cmd, _("\
3148 Set the thread that gdb thinks is the libc signal thread."),
3150 add_alias_cmd ("sigthread", "signal-thread", no_class, 1, &showlist);
3152 add_cmd ("stopped", class_run, set_stopped_cmd, _("\
3153 Set whether gdb thinks the inferior process is stopped as with SIGSTOP.\n\
3154 Stopped process will be continued by sending them a signal."),
3156 add_cmd ("stopped", no_class, show_signals_cmd, _("\
3157 Show whether gdb thinks the inferior process is stopped as with SIGSTOP."),
3160 add_cmd ("exceptions", class_run, set_exceptions_cmd, _("\
3161 Set whether exceptions in the inferior process will be trapped.\n\
3162 When exceptions are turned off, neither breakpoints nor single-stepping\n\
3165 /* Allow `set exc' despite conflict with `set exception-port'. */
3166 add_alias_cmd ("exc", "exceptions", class_run, 1, &setlist);
3167 add_cmd ("exceptions", no_class, show_exceptions_cmd, _("\
3168 Show whether exceptions in the inferior process will be trapped."),
3171 add_prefix_cmd ("task", no_class, set_task_cmd,
3172 _("Command prefix for setting task attributes."),
3173 &set_task_cmd_list, "set task ", 0, &setlist);
3174 add_prefix_cmd ("task", no_class, show_task_cmd,
3175 _("Command prefix for showing task attributes."),
3176 &show_task_cmd_list, "show task ", 0, &showlist);
3178 add_cmd ("pause", class_run, set_task_pause_cmd, _("\
3179 Set whether the task is suspended while gdb has control.\n\
3180 A value of \"on\" takes effect immediately, otherwise nothing happens\n\
3181 until the next time the program is continued.\n\
3182 When setting this to \"off\", \"set thread default pause on\" can be\n\
3183 used to pause individual threads by default instead."),
3184 &set_task_cmd_list);
3185 add_cmd ("pause", no_class, show_task_pause_cmd,
3186 _("Show whether the task is suspended while gdb has control."),
3187 &show_task_cmd_list);
3189 add_cmd ("detach-suspend-count", class_run, set_task_detach_sc_cmd,
3190 _("Set the suspend count will leave on the thread when detaching."),
3191 &set_task_cmd_list);
3192 add_cmd ("detach-suspend-count", no_class, show_task_detach_sc_cmd,
3193 _("Show the suspend count will leave on the thread when detaching."),
3194 &show_task_cmd_list);
3196 add_cmd ("exception-port", no_class, set_task_exc_port_cmd, _("\
3197 Set the task exception port to which we forward exceptions.\n\
3198 The argument should be the value of the send right in the task."),
3199 &set_task_cmd_list);
3200 add_alias_cmd ("excp", "exception-port", no_class, 1, &set_task_cmd_list);
3201 add_alias_cmd ("exc-port", "exception-port", no_class, 1,
3202 &set_task_cmd_list);
3204 /* A convenient way of turning on all options require to noninvasively
3205 debug running tasks. */
3206 add_cmd ("noninvasive", no_class, set_noninvasive_cmd, _("\
3207 Set task options so that we interfere as little as possible.\n\
3208 This is the same as setting `task pause', `exceptions', and\n\
3209 `signals' to the opposite value."),
3212 /* Commands to show information about the task's ports. */
3213 add_cmd ("send-rights", class_info, info_send_rights_cmd,
3214 _("Show information about the task's send rights"),
3216 add_cmd ("receive-rights", class_info, info_recv_rights_cmd,
3217 _("Show information about the task's receive rights"),
3219 add_cmd ("port-rights", class_info, info_port_rights_cmd,
3220 _("Show information about the task's port rights"),
3222 add_cmd ("port-sets", class_info, info_port_sets_cmd,
3223 _("Show information about the task's port sets"),
3225 add_cmd ("dead-names", class_info, info_dead_names_cmd,
3226 _("Show information about the task's dead names"),
3228 add_info_alias ("ports", "port-rights", 1);
3229 add_info_alias ("port", "port-rights", 1);
3230 add_info_alias ("psets", "port-sets", 1);
3235 set_thread_pause_cmd (char *args, int from_tty)
3237 struct proc *thread = cur_thread ();
3238 int old_sc = thread->pause_sc;
3239 thread->pause_sc = parse_bool_arg (args, "set thread pause");
3240 if (old_sc == 0 && thread->pause_sc != 0 && thread->inf->pause_sc == 0)
3241 /* If the task is currently unsuspended, immediately suspend it,
3242 otherwise wait until the next time it gets control. */
3243 inf_suspend (thread->inf);
3247 show_thread_pause_cmd (char *args, int from_tty)
3249 struct proc *thread = cur_thread ();
3250 int sc = thread->pause_sc;
3251 check_empty (args, "show task pause");
3252 printf_unfiltered ("Thread %s %s suspended while gdb has control%s.\n",
3253 proc_string (thread),
3254 sc ? "is" : "isn't",
3255 !sc && thread->inf->pause_sc ? " (but the task is)" : "");
3259 set_thread_run_cmd (char *args, int from_tty)
3261 struct proc *thread = cur_thread ();
3262 thread->run_sc = parse_bool_arg (args, "set thread run") ? 0 : 1;
3266 show_thread_run_cmd (char *args, int from_tty)
3268 struct proc *thread = cur_thread ();
3269 check_empty (args, "show thread run");
3270 printf_unfiltered ("Thread %s %s allowed to run.",
3271 proc_string (thread),
3272 thread->run_sc == 0 ? "is" : "isn't");
3276 set_thread_detach_sc_cmd (char *args, int from_tty)
3278 cur_thread ()->detach_sc = parse_int_arg (args,
3279 "set thread detach-suspend-count");
3283 show_thread_detach_sc_cmd (char *args, int from_tty)
3285 struct proc *thread = cur_thread ();
3286 check_empty (args, "show thread detach-suspend-count");
3287 printf_unfiltered ("Thread %s will be left with a suspend count"
3288 " of %d when detaching.\n",
3289 proc_string (thread),
3294 set_thread_exc_port_cmd (char *args, int from_tty)
3296 struct proc *thread = cur_thread ();
3298 error (_("No argument to \"set thread exception-port\" command."));
3299 steal_exc_port (thread, parse_and_eval_address (args));
3304 show_thread_cmd (char *args, int from_tty)
3306 struct proc *thread = cur_thread ();
3307 check_empty (args, "show thread");
3308 show_thread_run_cmd (0, from_tty);
3309 show_thread_pause_cmd (0, from_tty);
3310 if (thread->detach_sc != 0)
3311 show_thread_detach_sc_cmd (0, from_tty);
3316 thread_takeover_sc_cmd (char *args, int from_tty)
3318 struct proc *thread = cur_thread ();
3319 thread_basic_info_data_t _info;
3320 thread_basic_info_t info = &_info;
3321 mach_msg_type_number_t info_len = THREAD_BASIC_INFO_COUNT;
3323 thread_info (thread->port, THREAD_BASIC_INFO, (int *) &info, &info_len);
3325 error (("%s."), safe_strerror (err));
3326 thread->sc = info->suspend_count;
3328 printf_unfiltered ("Suspend count was %d.\n", thread->sc);
3330 vm_deallocate (mach_task_self (), (vm_address_t) info,
3331 info_len * sizeof (int));
3336 add_thread_commands (void)
3338 add_prefix_cmd ("thread", no_class, set_thread_cmd,
3339 _("Command prefix for setting thread properties."),
3340 &set_thread_cmd_list, "set thread ", 0, &setlist);
3341 add_prefix_cmd ("default", no_class, show_thread_cmd,
3342 _("Command prefix for setting default thread properties."),
3343 &set_thread_default_cmd_list, "set thread default ", 0,
3344 &set_thread_cmd_list);
3345 add_prefix_cmd ("thread", no_class, set_thread_default_cmd,
3346 _("Command prefix for showing thread properties."),
3347 &show_thread_cmd_list, "show thread ", 0, &showlist);
3348 add_prefix_cmd ("default", no_class, show_thread_default_cmd,
3349 _("Command prefix for showing default thread properties."),
3350 &show_thread_default_cmd_list, "show thread default ", 0,
3351 &show_thread_cmd_list);
3353 add_cmd ("pause", class_run, set_thread_pause_cmd, _("\
3354 Set whether the current thread is suspended while gdb has control.\n\
3355 A value of \"on\" takes effect immediately, otherwise nothing happens\n\
3356 until the next time the program is continued. This property normally\n\
3357 has no effect because the whole task is suspended, however, that may\n\
3358 be disabled with \"set task pause off\".\n\
3359 The default value is \"off\"."),
3360 &set_thread_cmd_list);
3361 add_cmd ("pause", no_class, show_thread_pause_cmd, _("\
3362 Show whether the current thread is suspended while gdb has control."),
3363 &show_thread_cmd_list);
3365 add_cmd ("run", class_run, set_thread_run_cmd,
3366 _("Set whether the current thread is allowed to run."),
3367 &set_thread_cmd_list);
3368 add_cmd ("run", no_class, show_thread_run_cmd,
3369 _("Show whether the current thread is allowed to run."),
3370 &show_thread_cmd_list);
3372 add_cmd ("detach-suspend-count", class_run, set_thread_detach_sc_cmd, _("\
3373 Set the suspend count will leave on the thread when detaching.\n\
3374 Note that this is relative to suspend count when gdb noticed the thread;\n\
3375 use the `thread takeover-suspend-count' to force it to an absolute value."),
3376 &set_thread_cmd_list);
3377 add_cmd ("detach-suspend-count", no_class, show_thread_detach_sc_cmd, _("\
3378 Show the suspend count will leave on the thread when detaching.\n\
3379 Note that this is relative to suspend count when gdb noticed the thread;\n\
3380 use the `thread takeover-suspend-count' to force it to an absolute value."),
3381 &show_thread_cmd_list);
3383 add_cmd ("exception-port", no_class, set_thread_exc_port_cmd, _("\
3384 Set the thread exception port to which we forward exceptions.\n\
3385 This overrides the task exception port.\n\
3386 The argument should be the value of the send right in the task."),
3387 &set_thread_cmd_list);
3388 add_alias_cmd ("excp", "exception-port", no_class, 1, &set_thread_cmd_list);
3389 add_alias_cmd ("exc-port", "exception-port", no_class, 1,
3390 &set_thread_cmd_list);
3392 add_cmd ("takeover-suspend-count", no_class, thread_takeover_sc_cmd, _("\
3393 Force the threads absolute suspend-count to be gdb's.\n\
3394 Prior to giving this command, gdb's thread suspend-counts are relative\n\
3395 to the thread's initial suspend-count when gdb notices the threads."),
3401 _initialize_gnu_nat (void)
3403 proc_server = getproc ();
3406 add_target (&gnu_ops);
3408 add_task_commands ();
3409 add_thread_commands ();
3410 deprecated_add_set_cmd ("gnu-debug", class_maintenance,
3411 var_boolean, (char *) &gnu_debug_flag,
3412 "Set debugging output for the gnu backend.",
3416 #ifdef FLUSH_INFERIOR_CACHE
3418 /* When over-writing code on some machines the I-Cache must be flushed
3419 explicitly, because it is not kept coherent by the lazy hardware.
3420 This definitely includes breakpoints, for instance, or else we
3421 end up looping in mysterious Bpt traps */
3424 flush_inferior_icache (CORE_ADDR pc, int amount)
3426 vm_machine_attribute_val_t flush = MATTR_VAL_ICACHE_FLUSH;
3429 ret = vm_machine_attribute (current_inferior->task->port,
3434 if (ret != KERN_SUCCESS)
3435 warning (_("Error flushing inferior's cache : %s"), safe_strerror (ret));
3437 #endif /* FLUSH_INFERIOR_CACHE */