1 /* Interface GDB to the GNU Hurd.
2 Copyright (C) 1992, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2006
3 Free Software Foundation, Inc.
5 This file is part of GDB.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
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, write to the Free Software
23 Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 Boston, MA 02110-1301, USA.
33 #include "gdb_string.h"
34 #include <sys/ptrace.h>
37 #include <mach_error.h>
38 #include <mach/exception.h>
39 #include <mach/message.h>
40 #include <mach/notify.h>
41 #include <mach/vm_attributes.h>
44 #include <hurd/interrupt.h>
46 #include <hurd/msg_request.h>
47 #include <hurd/process.h>
48 /* Defined in <hurd/process.h>, but we need forward declarations from
49 <hurd/process_request.h> as well. */
51 #include <hurd/process_request.h>
52 #include <hurd/signal.h>
53 #include <hurd/sigpreempt.h>
66 #include "gdbthread.h"
67 #include "gdb_assert.h"
68 #include "gdb_obstack.h"
72 #include "exc_request_S.h"
74 #include "process_reply_S.h"
75 #include "msg_reply_S.h"
76 #include "exc_request_U.h"
79 static process_t proc_server = MACH_PORT_NULL;
81 /* If we've sent a proc_wait_request to the proc server, the pid of the
82 process we asked about. We can only ever have one outstanding. */
83 int proc_wait_pid = 0;
85 /* The number of wait requests we've sent, and expect replies from. */
86 int proc_waits_pending = 0;
88 int gnu_debug_flag = 0;
92 extern struct target_ops gnu_ops;
94 struct inf *make_inf ();
95 void inf_clear_wait (struct inf *inf);
96 void inf_cleanup (struct inf *inf);
97 void inf_startup (struct inf *inf, int pid);
98 int inf_update_suspends (struct inf *inf);
99 void inf_set_pid (struct inf *inf, pid_t pid);
100 void inf_validate_procs (struct inf *inf);
101 void inf_steal_exc_ports (struct inf *inf);
102 void inf_restore_exc_ports (struct inf *inf);
103 struct proc *inf_tid_to_proc (struct inf *inf, int tid);
104 void inf_set_threads_resume_sc (struct inf *inf,
105 struct proc *run_thread,
107 int inf_set_threads_resume_sc_for_signal_thread (struct inf *inf);
108 void inf_suspend (struct inf *inf);
109 void inf_resume (struct inf *inf);
110 void inf_set_step_thread (struct inf *inf, struct proc *proc);
111 void inf_detach (struct inf *inf);
112 void inf_attach (struct inf *inf, int pid);
113 void inf_signal (struct inf *inf, enum target_signal sig);
114 void inf_continue (struct inf *inf);
116 #define inf_debug(_inf, msg, args...) \
117 do { struct inf *__inf = (_inf); \
118 debug ("{inf %d %p}: " msg, __inf->pid, __inf , ##args); } while (0)
120 void proc_abort (struct proc *proc, int force);
121 struct proc *make_proc (struct inf *inf, mach_port_t port, int tid);
122 struct proc *_proc_free (struct proc *proc);
123 int proc_update_sc (struct proc *proc);
124 error_t proc_get_exception_port (struct proc *proc, mach_port_t * port);
125 error_t proc_set_exception_port (struct proc *proc, mach_port_t port);
126 static mach_port_t _proc_get_exc_port (struct proc *proc);
127 void proc_steal_exc_port (struct proc *proc, mach_port_t exc_port);
128 void proc_restore_exc_port (struct proc *proc);
129 int proc_trace (struct proc *proc, int set);
131 /* Evaluate RPC_EXPR in a scope with the variables MSGPORT and REFPORT bound
132 to INF's msg port and task port respectively. If it has no msg port,
133 EIEIO is returned. INF must refer to a running process! */
134 #define INF_MSGPORT_RPC(inf, rpc_expr) \
135 HURD_MSGPORT_RPC (proc_getmsgport (proc_server, inf->pid, &msgport), \
136 (refport = inf->task->port, 0), 0, \
137 msgport ? (rpc_expr) : EIEIO)
139 /* Like INF_MSGPORT_RPC, but will also resume the signal thread to ensure
140 there's someone around to deal with the RPC (and resuspend things
141 afterwards). This effects INF's threads' resume_sc count. */
142 #define INF_RESUME_MSGPORT_RPC(inf, rpc_expr) \
143 (inf_set_threads_resume_sc_for_signal_thread (inf) \
146 __e = INF_MSGPORT_RPC (inf, rpc_expr); \
152 /* The state passed by an exception message. */
155 int exception; /* The exception code */
157 mach_port_t handler; /* The real exception port to handle this. */
158 mach_port_t reply; /* The reply port from the exception call. */
161 /* The results of the last wait an inf did. */
164 struct target_waitstatus status; /* The status returned to gdb. */
165 struct exc_state exc; /* The exception that caused us to return. */
166 struct proc *thread; /* The thread in question. */
167 int suppress; /* Something trivial happened. */
170 /* The state of an inferior. */
173 /* Fields describing the current inferior. */
175 struct proc *task; /* The mach task. */
176 struct proc *threads; /* A linked list of all threads in TASK. */
178 /* True if THREADS needn't be validated by querying the task. We assume that
179 we and the task in question are the only ones frobbing the thread list,
180 so as long as we don't let any code run, we don't have to worry about
182 int threads_up_to_date;
184 pid_t pid; /* The real system PID. */
186 struct inf_wait wait; /* What to return from target_wait. */
188 /* One thread proc in INF may be in `single-stepping mode'. This is it. */
189 struct proc *step_thread;
191 /* The thread we think is the signal thread. */
192 struct proc *signal_thread;
194 mach_port_t event_port; /* Where we receive various msgs. */
196 /* True if we think at least one thread in the inferior could currently be
198 unsigned int running:1;
200 /* True if the process has stopped (in the proc server sense). Note that
201 since a proc server `stop' leaves the signal thread running, the inf can
202 be RUNNING && STOPPED... */
203 unsigned int stopped:1;
205 /* True if the inferior has no message port. */
206 unsigned int nomsg:1;
208 /* True if the inferior is traced. */
209 unsigned int traced:1;
211 /* True if we shouldn't try waiting for the inferior, usually because we
212 can't for some reason. */
213 unsigned int no_wait:1;
215 /* When starting a new inferior, we don't try to validate threads until all
216 the proper execs have been done. This is a count of how many execs we
218 unsigned pending_execs;
220 /* Fields describing global state */
222 /* The task suspend count used when gdb has control. This is normally 1 to
223 make things easier for us, but sometimes (like when attaching to vital
224 system servers) it may be desirable to let the task continue to run
225 (pausing individual threads as necessary). */
228 /* The task suspend count left when detaching from a task. */
231 /* The initial values used for the run_sc and pause_sc of newly discovered
232 threads -- see the definition of those fields in struct proc. */
233 int default_thread_run_sc;
234 int default_thread_pause_sc;
235 int default_thread_detach_sc;
237 /* True if the process should be traced when started/attached. Newly
238 started processes *must* be traced at first to exec them properly, but
239 if this is false, tracing is turned off as soon it has done so. */
242 /* True if exceptions from the inferior process should be trapped. This
243 must be on to use breakpoints. */
249 __proc_pid (struct proc *proc)
251 return proc->inf->pid;
255 /* Update PROC's real suspend count to match it's desired one. Returns true
256 if we think PROC is now in a runnable state. */
258 proc_update_sc (struct proc *proc)
262 int delta = proc->sc - proc->cur_sc;
265 proc_debug (proc, "sc: %d --> %d", proc->cur_sc, proc->sc);
267 if (proc->sc == 0 && proc->state_changed)
268 /* Since PROC may start running, we must write back any state changes. */
270 gdb_assert (proc_is_thread (proc));
271 proc_debug (proc, "storing back changed thread state");
272 err = thread_set_state (proc->port, THREAD_STATE_FLAVOR,
273 (thread_state_t) &proc->state, THREAD_STATE_SIZE);
275 proc->state_changed = 0;
280 while (delta-- > 0 && !err)
282 if (proc_is_task (proc))
283 err = task_suspend (proc->port);
285 err = thread_suspend (proc->port);
290 while (delta++ < 0 && !err)
292 if (proc_is_task (proc))
293 err = task_resume (proc->port);
295 err = thread_resume (proc->port);
299 proc->cur_sc = proc->sc;
301 /* If we got an error, then the task/thread has disappeared. */
302 running = !err && proc->sc == 0;
304 proc_debug (proc, "is %s", err ? "dead" : running ? "running" : "suspended");
306 proc_debug (proc, "err = %s", safe_strerror (err));
311 proc->state_valid = proc->state_changed = 0;
312 proc->fetched_regs = 0;
319 /* Thread_abort is called on PROC if needed. PROC must be a thread proc.
320 If PROC is deemed `precious', then nothing is done unless FORCE is true.
321 In particular, a thread is precious if it's running (in which case forcing
322 it includes suspending it first), or if it has an exception pending. */
324 proc_abort (struct proc *proc, int force)
326 gdb_assert (proc_is_thread (proc));
330 struct inf *inf = proc->inf;
331 int running = (proc->cur_sc == 0 && inf->task->cur_sc == 0);
333 if (running && force)
336 inf_update_suspends (proc->inf);
338 warning (_("Stopped %s."), proc_string (proc));
340 else if (proc == inf->wait.thread && inf->wait.exc.reply && !force)
341 /* An exception is pending on PROC, which don't mess with. */
345 /* We only abort the thread if it's not actually running. */
347 thread_abort (proc->port);
348 proc_debug (proc, "aborted");
352 proc_debug (proc, "not aborting");
356 /* Make sure that the state field in PROC is up to date, and return a pointer
357 to it, or 0 if something is wrong. If WILL_MODIFY is true, makes sure
358 that the thread is stopped and aborted first, and sets the state_changed
359 field in PROC to true. */
361 proc_get_state (struct proc *proc, int will_modify)
363 int was_aborted = proc->aborted;
365 proc_debug (proc, "updating state info%s",
366 will_modify ? " (with intention to modify)" : "");
368 proc_abort (proc, will_modify);
370 if (!was_aborted && proc->aborted)
371 /* PROC's state may have changed since we last fetched it. */
372 proc->state_valid = 0;
374 if (!proc->state_valid)
376 mach_msg_type_number_t state_size = THREAD_STATE_SIZE;
378 thread_get_state (proc->port, THREAD_STATE_FLAVOR,
379 (thread_state_t) &proc->state, &state_size);
380 proc_debug (proc, "getting thread state");
381 proc->state_valid = !err;
384 if (proc->state_valid)
387 proc->state_changed = 1;
388 return (thread_state_t) &proc->state;
395 /* Set PORT to PROC's exception port. */
397 proc_get_exception_port (struct proc * proc, mach_port_t * port)
399 if (proc_is_task (proc))
400 return task_get_exception_port (proc->port, port);
402 return thread_get_exception_port (proc->port, port);
405 /* Set PROC's exception port to PORT. */
407 proc_set_exception_port (struct proc * proc, mach_port_t port)
409 proc_debug (proc, "setting exception port: %d", port);
410 if (proc_is_task (proc))
411 return task_set_exception_port (proc->port, port);
413 return thread_set_exception_port (proc->port, port);
416 /* Get PROC's exception port, cleaning up a bit if proc has died. */
418 _proc_get_exc_port (struct proc *proc)
420 mach_port_t exc_port;
421 error_t err = proc_get_exception_port (proc, &exc_port);
424 /* PROC must be dead. */
427 mach_port_deallocate (mach_task_self (), proc->exc_port);
428 proc->exc_port = MACH_PORT_NULL;
429 if (proc->saved_exc_port)
430 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
431 proc->saved_exc_port = MACH_PORT_NULL;
437 /* Replace PROC's exception port with EXC_PORT, unless it's already been
438 done. Stash away any existing exception port so we can restore it later. */
440 proc_steal_exc_port (struct proc *proc, mach_port_t exc_port)
442 mach_port_t cur_exc_port = _proc_get_exc_port (proc);
448 proc_debug (proc, "inserting exception port: %d", exc_port);
450 if (cur_exc_port != exc_port)
451 /* Put in our exception port. */
452 err = proc_set_exception_port (proc, exc_port);
454 if (err || cur_exc_port == proc->exc_port)
455 /* We previously set the exception port, and it's still set. So we
456 just keep the old saved port which is what the proc set. */
459 mach_port_deallocate (mach_task_self (), cur_exc_port);
462 /* Keep a copy of PROC's old exception port so it can be restored. */
464 if (proc->saved_exc_port)
465 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
466 proc->saved_exc_port = cur_exc_port;
469 proc_debug (proc, "saved exception port: %d", proc->saved_exc_port);
472 proc->exc_port = exc_port;
474 warning (_("Error setting exception port for %s: %s"),
475 proc_string (proc), safe_strerror (err));
479 /* If we previously replaced PROC's exception port, put back what we
480 found there at the time, unless *our* exception port has since been
481 overwritten, in which case who knows what's going on. */
483 proc_restore_exc_port (struct proc *proc)
485 mach_port_t cur_exc_port = _proc_get_exc_port (proc);
491 proc_debug (proc, "restoring real exception port");
493 if (proc->exc_port == cur_exc_port)
494 /* Our's is still there. */
495 err = proc_set_exception_port (proc, proc->saved_exc_port);
497 if (proc->saved_exc_port)
498 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
499 proc->saved_exc_port = MACH_PORT_NULL;
502 proc->exc_port = MACH_PORT_NULL;
504 warning (_("Error setting exception port for %s: %s"),
505 proc_string (proc), safe_strerror (err));
510 /* Turns hardware tracing in PROC on or off when SET is true or false,
511 respectively. Returns true on success. */
513 proc_trace (struct proc *proc, int set)
515 thread_state_t state = proc_get_state (proc, 1);
518 return 0; /* the thread must be dead. */
520 proc_debug (proc, "tracing %s", set ? "on" : "off");
524 /* XXX We don't get the exception unless the thread has its own
525 exception port???? */
526 if (proc->exc_port == MACH_PORT_NULL)
527 proc_steal_exc_port (proc, proc->inf->event_port);
528 THREAD_STATE_SET_TRACED (state);
531 THREAD_STATE_CLEAR_TRACED (state);
537 /* A variable from which to assign new TIDs. */
538 static int next_thread_id = 1;
540 /* Returns a new proc structure with the given fields. Also adds a
541 notification for PORT becoming dead to be sent to INF's notify port. */
543 make_proc (struct inf *inf, mach_port_t port, int tid)
546 mach_port_t prev_port = MACH_PORT_NULL;
547 struct proc *proc = xmalloc (sizeof (struct proc));
553 proc->saved_exc_port = MACH_PORT_NULL;
554 proc->exc_port = MACH_PORT_NULL;
559 /* Note that these are all the values for threads; the task simply uses the
560 corresponding field in INF directly. */
561 proc->run_sc = inf->default_thread_run_sc;
562 proc->pause_sc = inf->default_thread_pause_sc;
563 proc->detach_sc = inf->default_thread_detach_sc;
564 proc->resume_sc = proc->run_sc;
568 proc->state_valid = 0;
569 proc->state_changed = 0;
571 proc_debug (proc, "is new");
573 /* Get notified when things die. */
575 mach_port_request_notification (mach_task_self (), port,
576 MACH_NOTIFY_DEAD_NAME, 1,
578 MACH_MSG_TYPE_MAKE_SEND_ONCE,
581 warning (_("Couldn't request notification for port %d: %s"),
582 port, safe_strerror (err));
585 proc_debug (proc, "notifications to: %d", inf->event_port);
586 if (prev_port != MACH_PORT_NULL)
587 mach_port_deallocate (mach_task_self (), prev_port);
590 if (inf->want_exceptions)
592 if (proc_is_task (proc))
593 /* Make the task exception port point to us. */
594 proc_steal_exc_port (proc, inf->event_port);
596 /* Just clear thread exception ports -- they default to the
598 proc_steal_exc_port (proc, MACH_PORT_NULL);
604 /* Frees PROC and any resources it uses, and returns the value of PROC's
607 _proc_free (struct proc *proc)
609 struct inf *inf = proc->inf;
610 struct proc *next = proc->next;
612 proc_debug (proc, "freeing...");
614 if (proc == inf->step_thread)
615 /* Turn off single stepping. */
616 inf_set_step_thread (inf, 0);
617 if (proc == inf->wait.thread)
618 inf_clear_wait (inf);
619 if (proc == inf->signal_thread)
620 inf->signal_thread = 0;
622 if (proc->port != MACH_PORT_NULL)
624 if (proc->exc_port != MACH_PORT_NULL)
625 /* Restore the original exception port. */
626 proc_restore_exc_port (proc);
627 if (proc->cur_sc != 0)
628 /* Resume the thread/task. */
631 proc_update_sc (proc);
633 mach_port_deallocate (mach_task_self (), proc->port);
644 struct inf *inf = xmalloc (sizeof (struct inf));
648 inf->threads_up_to_date = 0;
650 inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS;
651 inf->wait.thread = 0;
652 inf->wait.exc.handler = MACH_PORT_NULL;
653 inf->wait.exc.reply = MACH_PORT_NULL;
654 inf->step_thread = 0;
655 inf->signal_thread = 0;
656 inf->event_port = MACH_PORT_NULL;
662 inf->pending_execs = 0;
665 inf->default_thread_run_sc = 0;
666 inf->default_thread_pause_sc = 0;
667 inf->default_thread_detach_sc = 0;
668 inf->want_signals = 1; /* By default */
669 inf->want_exceptions = 1; /* By default */
674 /* Clear INF's target wait status. */
676 inf_clear_wait (struct inf *inf)
678 inf_debug (inf, "clearing wait");
679 inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS;
680 inf->wait.thread = 0;
681 inf->wait.suppress = 0;
682 if (inf->wait.exc.handler != MACH_PORT_NULL)
684 mach_port_deallocate (mach_task_self (), inf->wait.exc.handler);
685 inf->wait.exc.handler = MACH_PORT_NULL;
687 if (inf->wait.exc.reply != MACH_PORT_NULL)
689 mach_port_deallocate (mach_task_self (), inf->wait.exc.reply);
690 inf->wait.exc.reply = MACH_PORT_NULL;
696 inf_cleanup (struct inf *inf)
698 inf_debug (inf, "cleanup");
700 inf_clear_wait (inf);
702 inf_set_pid (inf, -1);
709 inf->pending_execs = 0;
713 mach_port_destroy (mach_task_self (), inf->event_port);
714 inf->event_port = MACH_PORT_NULL;
719 inf_startup (struct inf *inf, int pid)
723 inf_debug (inf, "startup: pid = %d", pid);
727 /* Make the port on which we receive all events. */
728 err = mach_port_allocate (mach_task_self (),
729 MACH_PORT_RIGHT_RECEIVE, &inf->event_port);
731 error (_("Error allocating event port: %s"), safe_strerror (err));
733 /* Make a send right for it, so we can easily copy it for other people. */
734 mach_port_insert_right (mach_task_self (), inf->event_port,
735 inf->event_port, MACH_MSG_TYPE_MAKE_SEND);
736 inf_set_pid (inf, pid);
740 /* Close current process, if any, and attach INF to process PORT. */
742 inf_set_pid (struct inf *inf, pid_t pid)
745 struct proc *task = inf->task;
747 inf_debug (inf, "setting pid: %d", pid);
750 task_port = MACH_PORT_NULL;
753 error_t err = proc_pid2task (proc_server, pid, &task_port);
755 error (_("Error getting task for pid %d: %s"), pid, safe_strerror (err));
758 inf_debug (inf, "setting task: %d", task_port);
761 task_suspend (task_port);
763 if (task && task->port != task_port)
766 inf_validate_procs (inf); /* Trash all the threads. */
767 _proc_free (task); /* And the task. */
770 if (task_port != MACH_PORT_NULL)
772 inf->task = make_proc (inf, task_port, PROC_TID_TASK);
773 inf->threads_up_to_date = 0;
780 /* Reflect task_suspend above. */
781 inf->task->sc = inf->task->cur_sc = 1;
788 /* Validates INF's stopped, nomsg and traced field from the actual
789 proc server state. Note that the traced field is only updated from
790 the proc server state if we do not have a message port. If we do
791 have a message port we'd better look at the tracemask itself. */
793 inf_validate_procinfo (struct inf *inf)
796 mach_msg_type_number_t noise_len = 0;
798 mach_msg_type_number_t pi_len = 0;
801 proc_getprocinfo (proc_server, inf->pid, &info_flags,
802 (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
806 inf->stopped = !!(pi->state & PI_STOPPED);
807 inf->nomsg = !!(pi->state & PI_NOMSG);
809 inf->traced = !!(pi->state & PI_TRACED);
810 vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len);
812 vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len);
816 /* Validates INF's task suspend count. If it's higher than we expect,
817 verify with the user before `stealing' the extra count. */
819 inf_validate_task_sc (struct inf *inf)
822 mach_msg_type_number_t noise_len = 0;
824 mach_msg_type_number_t pi_len = 0;
825 int info_flags = PI_FETCH_TASKINFO;
826 int suspend_count = -1;
830 err = proc_getprocinfo (proc_server, inf->pid, &info_flags,
831 (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
834 inf->task->dead = 1; /* oh well */
838 if (inf->task->cur_sc < pi->taskinfo.suspend_count && suspend_count == -1)
840 /* The proc server might have suspended the task while stopping
841 it. This happens when the task is handling a traced signal.
842 Refetch the suspend count. The proc server should be
843 finished stopping the task by now. */
844 suspend_count = pi->taskinfo.suspend_count;
848 suspend_count = pi->taskinfo.suspend_count;
850 vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len);
852 vm_deallocate (mach_task_self (), (vm_address_t) pi, pi_len);
854 if (inf->task->cur_sc < suspend_count)
858 target_terminal_ours (); /* Allow I/O. */
859 abort = !query ("Pid %d has an additional task suspend count of %d;"
860 " clear it? ", inf->pid,
861 suspend_count - inf->task->cur_sc);
862 target_terminal_inferior (); /* Give it back to the child. */
865 error (_("Additional task suspend count left untouched."));
867 inf->task->cur_sc = suspend_count;
871 /* Turns tracing for INF on or off, depending on ON, unless it already
872 is. If INF is running, the resume_sc count of INF's threads will
873 be modified, and the signal thread will briefly be run to change
876 inf_set_traced (struct inf *inf, int on)
878 if (on == inf->traced)
881 if (inf->task && !inf->task->dead)
882 /* Make it take effect immediately. */
884 sigset_t mask = on ? ~(sigset_t) 0 : 0;
886 INF_RESUME_MSGPORT_RPC (inf, msg_set_init_int (msgport, refport,
887 INIT_TRACEMASK, mask));
891 warning (_("Can't modify tracing state for pid %d: %s"),
892 inf->pid, "No signal thread");
896 warning (_("Can't modify tracing state for pid %d: %s"),
897 inf->pid, safe_strerror (err));
906 /* Makes all the real suspend count deltas of all the procs in INF
907 match the desired values. Careful to always do thread/task suspend
908 counts in the safe order. Returns true if at least one thread is
909 thought to be running. */
911 inf_update_suspends (struct inf *inf)
913 struct proc *task = inf->task;
914 /* We don't have to update INF->threads even though we're iterating over it
915 because we'll change a thread only if it already has an existing proc
918 inf_debug (inf, "updating suspend counts");
923 int task_running = (task->sc == 0), thread_running = 0;
925 if (task->sc > task->cur_sc)
926 /* The task is becoming _more_ suspended; do before any threads. */
927 task_running = proc_update_sc (task);
929 if (inf->pending_execs)
930 /* When we're waiting for an exec, things may be happening behind our
931 back, so be conservative. */
934 /* Do all the thread suspend counts. */
935 for (thread = inf->threads; thread; thread = thread->next)
936 thread_running |= proc_update_sc (thread);
938 if (task->sc != task->cur_sc)
939 /* We didn't do the task first, because we wanted to wait for the
940 threads; do it now. */
941 task_running = proc_update_sc (task);
943 inf_debug (inf, "%srunning...",
944 (thread_running && task_running) ? "" : "not ");
946 inf->running = thread_running && task_running;
948 /* Once any thread has executed some code, we can't depend on the
949 threads list any more. */
951 inf->threads_up_to_date = 0;
960 /* Converts a GDB pid to a struct proc. */
962 inf_tid_to_thread (struct inf *inf, int tid)
964 struct proc *thread = inf->threads;
967 if (thread->tid == tid)
970 thread = thread->next;
974 /* Converts a thread port to a struct proc. */
976 inf_port_to_thread (struct inf *inf, mach_port_t port)
978 struct proc *thread = inf->threads;
980 if (thread->port == port)
983 thread = thread->next;
988 /* Make INF's list of threads be consistent with reality of TASK. */
990 inf_validate_procs (struct inf *inf)
992 thread_array_t threads;
993 mach_msg_type_number_t num_threads, i;
994 struct proc *task = inf->task;
996 /* If no threads are currently running, this function will guarantee that
997 things are up to date. The exception is if there are zero threads --
998 then it is almost certainly in an odd state, and probably some outside
999 agent will create threads. */
1000 inf->threads_up_to_date = inf->threads ? !inf->running : 0;
1004 error_t err = task_threads (task->port, &threads, &num_threads);
1005 inf_debug (inf, "fetching threads");
1007 /* TASK must be dead. */
1017 inf_debug (inf, "no task");
1021 /* Make things normally linear. */
1022 mach_msg_type_number_t search_start = 0;
1023 /* Which thread in PROCS corresponds to each task thread, & the task. */
1024 struct proc *matched[num_threads + 1];
1025 /* The last thread in INF->threads, so we can add to the end. */
1026 struct proc *last = 0;
1027 /* The current thread we're considering. */
1028 struct proc *thread = inf->threads;
1030 memset (matched, 0, sizeof (matched));
1034 mach_msg_type_number_t left;
1036 for (i = search_start, left = num_threads; left; i++, left--)
1038 if (i >= num_threads)
1039 i -= num_threads; /* I wrapped around. */
1040 if (thread->port == threads[i])
1041 /* We already know about this thread. */
1043 matched[i] = thread;
1045 thread = thread->next;
1053 proc_debug (thread, "died!");
1054 thread->port = MACH_PORT_NULL;
1055 thread = _proc_free (thread); /* THREAD is dead. */
1057 last->next = thread;
1059 inf->threads = thread;
1063 for (i = 0; i < num_threads; i++)
1066 /* Throw away the duplicate send right. */
1067 mach_port_deallocate (mach_task_self (), threads[i]);
1069 /* 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]);
1078 add_thread (pid_to_ptid (thread->tid)); /* Tell GDB's generic thread code. */
1082 vm_deallocate (mach_task_self (),
1083 (vm_address_t) threads, (num_threads * sizeof (thread_t)));
1088 /* Makes sure that INF's thread list is synced with the actual process. */
1090 inf_update_procs (struct inf *inf)
1094 if (!inf->threads_up_to_date)
1095 inf_validate_procs (inf);
1099 /* Sets the resume_sc of each thread in inf. That of RUN_THREAD is set to 0,
1100 and others are set to their run_sc if RUN_OTHERS is true, and otherwise
1103 inf_set_threads_resume_sc (struct inf *inf,
1104 struct proc *run_thread, int run_others)
1106 struct proc *thread;
1107 inf_update_procs (inf);
1108 for (thread = inf->threads; thread; thread = thread->next)
1109 if (thread == run_thread)
1110 thread->resume_sc = 0;
1111 else if (run_others)
1112 thread->resume_sc = thread->run_sc;
1114 thread->resume_sc = thread->pause_sc;
1118 /* Cause INF to continue execution immediately; individual threads may still
1119 be suspended (but their suspend counts will be updated). */
1121 inf_resume (struct inf *inf)
1123 struct proc *thread;
1125 inf_update_procs (inf);
1127 for (thread = inf->threads; thread; thread = thread->next)
1128 thread->sc = thread->resume_sc;
1132 if (!inf->pending_execs)
1133 /* Try to make sure our task count is correct -- in the case where
1134 we're waiting for an exec though, things are too volatile, so just
1135 assume things will be reasonable (which they usually will be). */
1136 inf_validate_task_sc (inf);
1140 inf_update_suspends (inf);
1143 /* Cause INF to stop execution immediately; individual threads may still
1146 inf_suspend (struct inf *inf)
1148 struct proc *thread;
1150 inf_update_procs (inf);
1152 for (thread = inf->threads; thread; thread = thread->next)
1153 thread->sc = thread->pause_sc;
1156 inf->task->sc = inf->pause_sc;
1158 inf_update_suspends (inf);
1162 /* INF has one thread PROC that is in single-stepping mode. This
1163 function changes it to be PROC, changing any old step_thread to be
1164 a normal one. A PROC of 0 clears any existing value. */
1166 inf_set_step_thread (struct inf *inf, struct proc *thread)
1168 gdb_assert (!thread || proc_is_thread (thread));
1171 inf_debug (inf, "setting step thread: %d/%d", inf->pid, thread->tid);
1173 inf_debug (inf, "clearing step thread");
1175 if (inf->step_thread != thread)
1177 if (inf->step_thread && inf->step_thread->port != MACH_PORT_NULL)
1178 if (!proc_trace (inf->step_thread, 0))
1180 if (thread && proc_trace (thread, 1))
1181 inf->step_thread = thread;
1183 inf->step_thread = 0;
1188 /* Set up the thread resume_sc's so that only the signal thread is running
1189 (plus whatever other thread are set to always run). Returns true if we
1190 did so, or false if we can't find a signal thread. */
1192 inf_set_threads_resume_sc_for_signal_thread (struct inf *inf)
1194 if (inf->signal_thread)
1196 inf_set_threads_resume_sc (inf, inf->signal_thread, 0);
1204 inf_update_signal_thread (struct inf *inf)
1206 /* XXX for now we assume that if there's a msgport, the 2nd thread is
1207 the signal thread. */
1208 inf->signal_thread = inf->threads ? inf->threads->next : 0;
1212 /* Detachs from INF's inferior task, letting it run once again... */
1214 inf_detach (struct inf *inf)
1216 struct proc *task = inf->task;
1218 inf_debug (inf, "detaching...");
1220 inf_clear_wait (inf);
1221 inf_set_step_thread (inf, 0);
1225 struct proc *thread;
1227 inf_validate_procinfo (inf);
1229 inf_set_traced (inf, 0);
1235 inf_signal (inf, TARGET_SIGNAL_0);
1238 proc_restore_exc_port (task);
1239 task->sc = inf->detach_sc;
1241 for (thread = inf->threads; thread; thread = thread->next)
1243 proc_restore_exc_port (thread);
1244 thread->sc = thread->detach_sc;
1247 inf_update_suspends (inf);
1253 /* Attaches INF to the process with process id PID, returning it in a
1254 suspended state suitable for debugging. */
1256 inf_attach (struct inf *inf, int pid)
1258 inf_debug (inf, "attaching: %d", pid);
1263 inf_startup (inf, pid);
1267 /* Makes sure that we've got our exception ports entrenched in the process. */
1269 inf_steal_exc_ports (struct inf *inf)
1271 struct proc *thread;
1273 inf_debug (inf, "stealing exception ports");
1275 inf_set_step_thread (inf, 0); /* The step thread is special. */
1277 proc_steal_exc_port (inf->task, inf->event_port);
1278 for (thread = inf->threads; thread; thread = thread->next)
1279 proc_steal_exc_port (thread, MACH_PORT_NULL);
1282 /* Makes sure the process has its own exception ports. */
1284 inf_restore_exc_ports (struct inf *inf)
1286 struct proc *thread;
1288 inf_debug (inf, "restoring exception ports");
1290 inf_set_step_thread (inf, 0); /* The step thread is special. */
1292 proc_restore_exc_port (inf->task);
1293 for (thread = inf->threads; thread; thread = thread->next)
1294 proc_restore_exc_port (thread);
1298 /* Deliver signal SIG to INF. If INF is stopped, delivering a signal, even
1299 signal 0, will continue it. INF is assumed to be in a paused state, and
1300 the resume_sc's of INF's threads may be affected. */
1302 inf_signal (struct inf *inf, enum target_signal sig)
1305 int host_sig = target_signal_to_host (sig);
1307 #define NAME target_signal_to_name (sig)
1309 if (host_sig >= _NSIG)
1310 /* A mach exception. Exceptions are encoded in the signal space by
1311 putting them after _NSIG; this assumes they're positive (and not
1312 extremely large)! */
1314 struct inf_wait *w = &inf->wait;
1315 if (w->status.kind == TARGET_WAITKIND_STOPPED
1316 && w->status.value.sig == sig
1317 && w->thread && !w->thread->aborted)
1318 /* We're passing through the last exception we received. This is
1319 kind of bogus, because exceptions are per-thread whereas gdb
1320 treats signals as per-process. We just forward the exception to
1321 the correct handler, even it's not for the same thread as TID --
1322 i.e., we pretend it's global. */
1324 struct exc_state *e = &w->exc;
1325 inf_debug (inf, "passing through exception:"
1326 " task = %d, thread = %d, exc = %d"
1327 ", code = %d, subcode = %d",
1328 w->thread->port, inf->task->port,
1329 e->exception, e->code, e->subcode);
1331 exception_raise_request (e->handler,
1332 e->reply, MACH_MSG_TYPE_MOVE_SEND_ONCE,
1333 w->thread->port, inf->task->port,
1334 e->exception, e->code, e->subcode);
1337 error (_("Can't forward spontaneous exception (%s)."), NAME);
1340 /* A Unix signal. */
1342 /* The process is stopped and expecting a signal. Just send off a
1343 request and let it get handled when we resume everything. */
1345 inf_debug (inf, "sending %s to stopped process", NAME);
1347 INF_MSGPORT_RPC (inf,
1348 msg_sig_post_untraced_request (msgport,
1350 MACH_MSG_TYPE_MAKE_SEND_ONCE,
1354 /* Posting an untraced signal automatically continues it.
1355 We clear this here rather than when we get the reply
1356 because we'd rather assume it's not stopped when it
1357 actually is, than the reverse. */
1361 /* It's not expecting it. We have to let just the signal thread
1362 run, and wait for it to get into a reasonable state before we
1363 can continue the rest of the process. When we finally resume the
1364 process the signal we request will be the very first thing that
1367 inf_debug (inf, "sending %s to unstopped process"
1368 " (so resuming signal thread)", NAME);
1370 INF_RESUME_MSGPORT_RPC (inf,
1371 msg_sig_post_untraced (msgport, host_sig,
1376 /* Can't do too much... */
1377 warning (_("Can't deliver signal %s: No signal thread."), NAME);
1379 warning (_("Delivering signal %s: %s"), NAME, safe_strerror (err));
1385 /* Continue INF without delivering a signal. This is meant to be used
1386 when INF does not have a message port. */
1388 inf_continue (struct inf *inf)
1391 error_t err = proc_pid2proc (proc_server, inf->pid, &proc);
1395 inf_debug (inf, "continuing process");
1397 err = proc_mark_cont (proc);
1400 struct proc *thread;
1402 for (thread = inf->threads; thread; thread = thread->next)
1403 thread_resume (thread->port);
1410 warning (_("Can't continue process: %s"), safe_strerror (err));
1414 /* The inferior used for all gdb target ops. */
1415 struct inf *current_inferior = 0;
1417 /* The inferior being waited for by gnu_wait. Since GDB is decidely not
1418 multi-threaded, we don't bother to lock this. */
1419 struct inf *waiting_inf;
1421 /* Wait for something to happen in the inferior, returning what in STATUS. */
1423 gnu_wait (ptid_t tid, struct target_waitstatus *status)
1427 mach_msg_header_t hdr;
1428 mach_msg_type_t type;
1432 struct proc *thread;
1433 struct inf *inf = current_inferior;
1435 extern int exc_server (mach_msg_header_t *, mach_msg_header_t *);
1436 extern int msg_reply_server (mach_msg_header_t *, mach_msg_header_t *);
1437 extern int notify_server (mach_msg_header_t *, mach_msg_header_t *);
1438 extern int process_reply_server (mach_msg_header_t *, mach_msg_header_t *);
1440 gdb_assert (inf->task);
1442 if (!inf->threads && !inf->pending_execs)
1443 /* No threads! Assume that maybe some outside agency is frobbing our
1444 task, and really look for new threads. If we can't find any, just tell
1445 the user to try again later. */
1447 inf_validate_procs (inf);
1448 if (!inf->threads && !inf->task->dead)
1449 error (_("There are no threads; try again later."));
1454 inf_debug (inf, "waiting for: %d", PIDGET (tid));
1457 if (proc_wait_pid != inf->pid && !inf->no_wait)
1458 /* Always get information on events from the proc server. */
1460 inf_debug (inf, "requesting wait on pid %d", inf->pid);
1463 /* The proc server is single-threaded, and only allows a single
1464 outstanding wait request, so we have to cancel the previous one. */
1466 inf_debug (inf, "cancelling previous wait on pid %d", proc_wait_pid);
1467 interrupt_operation (proc_server, 0);
1471 proc_wait_request (proc_server, inf->event_port, inf->pid, WUNTRACED);
1473 warning (_("wait request failed: %s"), safe_strerror (err));
1476 inf_debug (inf, "waits pending: %d", proc_waits_pending);
1477 proc_wait_pid = inf->pid;
1478 /* Even if proc_waits_pending was > 0 before, we still won't
1479 get any other replies, because it was either from a
1480 different INF, or a different process attached to INF --
1481 and the event port, which is the wait reply port, changes
1482 when you switch processes. */
1483 proc_waits_pending = 1;
1487 inf_clear_wait (inf);
1489 /* What can happen? (1) Dead name notification; (2) Exceptions arrive;
1490 (3) wait reply from the proc server. */
1492 inf_debug (inf, "waiting for an event...");
1493 err = mach_msg (&msg.hdr, MACH_RCV_MSG | MACH_RCV_INTERRUPT,
1494 0, sizeof (struct msg), inf->event_port,
1495 MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
1497 /* Re-suspend the task. */
1500 if (!inf->task && inf->pending_execs)
1501 /* When doing an exec, it's possible that the old task wasn't reused
1502 (e.g., setuid execs). So if the task seems to have disappeared,
1503 attempt to refetch it, as the pid should still be the same. */
1504 inf_set_pid (inf, inf->pid);
1506 if (err == EMACH_RCV_INTERRUPTED)
1507 inf_debug (inf, "interrupted");
1509 error (_("Couldn't wait for an event: %s"), safe_strerror (err));
1514 mach_msg_header_t hdr;
1515 mach_msg_type_t err_type;
1521 inf_debug (inf, "event: msgid = %d", msg.hdr.msgh_id);
1523 /* Handle what we got. */
1524 if (!notify_server (&msg.hdr, &reply.hdr)
1525 && !exc_server (&msg.hdr, &reply.hdr)
1526 && !process_reply_server (&msg.hdr, &reply.hdr)
1527 && !msg_reply_server (&msg.hdr, &reply.hdr))
1528 /* Whatever it is, it's something strange. */
1529 error (_("Got a strange event, msg id = %d."), msg.hdr.msgh_id);
1532 error (_("Handling event, msgid = %d: %s"),
1533 msg.hdr.msgh_id, safe_strerror (reply.err));
1536 if (inf->pending_execs)
1537 /* We're waiting for the inferior to finish execing. */
1539 struct inf_wait *w = &inf->wait;
1540 enum target_waitkind kind = w->status.kind;
1542 if (kind == TARGET_WAITKIND_SPURIOUS)
1543 /* Since gdb is actually counting the number of times the inferior
1544 stops, expecting one stop per exec, we only return major events
1548 inf_debug (inf, "pending_execs = %d, ignoring minor event",
1549 inf->pending_execs);
1551 else if (kind == TARGET_WAITKIND_STOPPED
1552 && w->status.value.sig == TARGET_SIGNAL_TRAP)
1553 /* Ah hah! A SIGTRAP from the inferior while starting up probably
1554 means we've succesfully completed an exec! */
1556 if (--inf->pending_execs == 0)
1559 #if 0 /* do we need this? */
1560 prune_threads (1); /* Get rid of the old shell threads */
1561 renumber_threads (0); /* Give our threads reasonable names. */
1564 inf_debug (inf, "pending exec completed, pending_execs => %d",
1565 inf->pending_execs);
1567 else if (kind == TARGET_WAITKIND_STOPPED)
1568 /* It's possible that this signal is because of a crashed process
1569 being handled by the hurd crash server; in this case, the process
1570 will have an extra task suspend, which we need to know about.
1571 Since the code in inf_resume that normally checks for this is
1572 disabled while INF->pending_execs, we do the check here instead. */
1573 inf_validate_task_sc (inf);
1576 if (inf->wait.suppress)
1577 /* Some totally spurious event happened that we don't consider
1578 worth returning to gdb. Just keep waiting. */
1580 inf_debug (inf, "suppressing return, rewaiting...");
1585 /* Pass back out our results. */
1586 memcpy (status, &inf->wait.status, sizeof (*status));
1588 thread = inf->wait.thread;
1590 tid = pid_to_ptid (thread->tid);
1592 thread = inf_tid_to_thread (inf, PIDGET (tid));
1594 if (!thread || thread->port == MACH_PORT_NULL)
1596 /* TID is dead; try and find a new thread. */
1597 if (inf_update_procs (inf) && inf->threads)
1598 tid = pid_to_ptid (inf->threads->tid); /* The first available thread. */
1600 tid = inferior_ptid; /* let wait_for_inferior handle exit case */
1603 if (thread && PIDGET (tid) >= 0 && status->kind != TARGET_WAITKIND_SPURIOUS
1604 && inf->pause_sc == 0 && thread->pause_sc == 0)
1605 /* If something actually happened to THREAD, make sure we
1609 inf_update_suspends (inf);
1612 inf_debug (inf, "returning tid = %d, status = %s (%d)", PIDGET (tid),
1613 status->kind == TARGET_WAITKIND_EXITED ? "EXITED"
1614 : status->kind == TARGET_WAITKIND_STOPPED ? "STOPPED"
1615 : status->kind == TARGET_WAITKIND_SIGNALLED ? "SIGNALLED"
1616 : status->kind == TARGET_WAITKIND_LOADED ? "LOADED"
1617 : status->kind == TARGET_WAITKIND_SPURIOUS ? "SPURIOUS"
1619 status->value.integer);
1625 /* The rpc handler called by exc_server. */
1627 S_exception_raise_request (mach_port_t port, mach_port_t reply_port,
1628 thread_t thread_port, task_t task_port,
1629 int exception, int code, int subcode)
1631 struct inf *inf = waiting_inf;
1632 struct proc *thread = inf_port_to_thread (inf, thread_port);
1634 inf_debug (waiting_inf,
1635 "thread = %d, task = %d, exc = %d, code = %d, subcode = %d",
1636 thread_port, task_port, exception, code, subcode);
1639 /* We don't know about thread? */
1641 inf_update_procs (inf);
1642 thread = inf_port_to_thread (inf, thread_port);
1644 /* Give up, the generating thread is gone. */
1648 mach_port_deallocate (mach_task_self (), thread_port);
1649 mach_port_deallocate (mach_task_self (), task_port);
1651 if (!thread->aborted)
1652 /* THREAD hasn't been aborted since this exception happened (abortion
1653 clears any exception state), so it must be real. */
1655 /* Store away the details; this will destroy any previous info. */
1656 inf->wait.thread = thread;
1658 inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
1660 if (exception == EXC_BREAKPOINT)
1661 /* GDB likes to get SIGTRAP for breakpoints. */
1663 inf->wait.status.value.sig = TARGET_SIGNAL_TRAP;
1664 mach_port_deallocate (mach_task_self (), reply_port);
1667 /* Record the exception so that we can forward it later. */
1669 if (thread->exc_port == port)
1671 inf_debug (waiting_inf, "Handler is thread exception port <%d>",
1672 thread->saved_exc_port);
1673 inf->wait.exc.handler = thread->saved_exc_port;
1677 inf_debug (waiting_inf, "Handler is task exception port <%d>",
1678 inf->task->saved_exc_port);
1679 inf->wait.exc.handler = inf->task->saved_exc_port;
1680 gdb_assert (inf->task->exc_port == port);
1682 if (inf->wait.exc.handler != MACH_PORT_NULL)
1683 /* Add a reference to the exception handler. */
1684 mach_port_mod_refs (mach_task_self (),
1685 inf->wait.exc.handler, MACH_PORT_RIGHT_SEND,
1688 inf->wait.exc.exception = exception;
1689 inf->wait.exc.code = code;
1690 inf->wait.exc.subcode = subcode;
1691 inf->wait.exc.reply = reply_port;
1693 /* Exceptions are encoded in the signal space by putting them after
1694 _NSIG; this assumes they're positive (and not extremely large)! */
1695 inf->wait.status.value.sig =
1696 target_signal_from_host (_NSIG + exception);
1700 /* A supppressed exception, which ignore. */
1702 inf->wait.suppress = 1;
1703 mach_port_deallocate (mach_task_self (), reply_port);
1710 /* Fill in INF's wait field after a task has died without giving us more
1711 detailed information. */
1713 inf_task_died_status (struct inf *inf)
1715 warning (_("Pid %d died with unknown exit status, using SIGKILL."), inf->pid);
1716 inf->wait.status.kind = TARGET_WAITKIND_SIGNALLED;
1717 inf->wait.status.value.sig = TARGET_SIGNAL_KILL;
1720 /* Notify server routines. The only real one is dead name notification. */
1722 do_mach_notify_dead_name (mach_port_t notify, mach_port_t dead_port)
1724 struct inf *inf = waiting_inf;
1726 inf_debug (waiting_inf, "port = %d", dead_port);
1728 if (inf->task && inf->task->port == dead_port)
1730 proc_debug (inf->task, "is dead");
1731 inf->task->port = MACH_PORT_NULL;
1732 if (proc_wait_pid == inf->pid)
1733 /* We have a wait outstanding on the process, which will return more
1734 detailed information, so delay until we get that. */
1735 inf->wait.suppress = 1;
1737 /* We never waited for the process (maybe it wasn't a child), so just
1738 pretend it got a SIGKILL. */
1739 inf_task_died_status (inf);
1743 struct proc *thread = inf_port_to_thread (inf, dead_port);
1746 proc_debug (thread, "is dead");
1747 thread->port = MACH_PORT_NULL;
1750 if (inf->task->dead)
1751 /* Since the task is dead, its threads are dying with it. */
1752 inf->wait.suppress = 1;
1755 mach_port_deallocate (mach_task_self (), dead_port);
1756 inf->threads_up_to_date = 0; /* Just in case */
1765 warning (_("illegal rpc: %s"), fun);
1770 do_mach_notify_no_senders (mach_port_t notify, mach_port_mscount_t count)
1772 return ill_rpc ("do_mach_notify_no_senders");
1776 do_mach_notify_port_deleted (mach_port_t notify, mach_port_t name)
1778 return ill_rpc ("do_mach_notify_port_deleted");
1782 do_mach_notify_msg_accepted (mach_port_t notify, mach_port_t name)
1784 return ill_rpc ("do_mach_notify_msg_accepted");
1788 do_mach_notify_port_destroyed (mach_port_t notify, mach_port_t name)
1790 return ill_rpc ("do_mach_notify_port_destroyed");
1794 do_mach_notify_send_once (mach_port_t notify)
1796 return ill_rpc ("do_mach_notify_send_once");
1800 /* Process_reply server routines. We only use process_wait_reply. */
1803 S_proc_wait_reply (mach_port_t reply, error_t err,
1804 int status, int sigcode, rusage_t rusage, pid_t pid)
1806 struct inf *inf = waiting_inf;
1808 inf_debug (inf, "err = %s, pid = %d, status = 0x%x, sigcode = %d",
1809 err ? safe_strerror (err) : "0", pid, status, sigcode);
1811 if (err && proc_wait_pid && (!inf->task || !inf->task->port))
1812 /* Ack. The task has died, but the task-died notification code didn't
1813 tell anyone because it thought a more detailed reply from the
1814 procserver was forthcoming. However, we now learn that won't
1815 happen... So we have to act like the task just died, and this time,
1817 inf_task_died_status (inf);
1819 if (--proc_waits_pending == 0)
1820 /* PROC_WAIT_PID represents the most recent wait. We will always get
1821 replies in order because the proc server is single threaded. */
1824 inf_debug (inf, "waits pending now: %d", proc_waits_pending);
1830 warning (_("Can't wait for pid %d: %s"), inf->pid, safe_strerror (err));
1833 /* Since we can't see the inferior's signals, don't trap them. */
1834 inf_set_traced (inf, 0);
1837 else if (pid == inf->pid)
1839 store_waitstatus (&inf->wait.status, status);
1840 if (inf->wait.status.kind == TARGET_WAITKIND_STOPPED)
1841 /* The process has sent us a signal, and stopped itself in a sane
1842 state pending our actions. */
1844 inf_debug (inf, "process has stopped itself");
1849 inf->wait.suppress = 1; /* Something odd happened. Ignore. */
1855 S_proc_setmsgport_reply (mach_port_t reply, error_t err,
1856 mach_port_t old_msg_port)
1858 return ill_rpc ("S_proc_setmsgport_reply");
1862 S_proc_getmsgport_reply (mach_port_t reply, error_t err, mach_port_t msg_port)
1864 return ill_rpc ("S_proc_getmsgport_reply");
1868 /* Msg_reply server routines. We only use msg_sig_post_untraced_reply. */
1871 S_msg_sig_post_untraced_reply (mach_port_t reply, error_t err)
1873 struct inf *inf = waiting_inf;
1876 /* EBUSY is what we get when the crash server has grabbed control of the
1877 process and doesn't like what signal we tried to send it. Just act
1878 like the process stopped (using a signal of 0 should mean that the
1879 *next* time the user continues, it will pass signal 0, which the crash
1880 server should like). */
1882 inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
1883 inf->wait.status.value.sig = TARGET_SIGNAL_0;
1886 warning (_("Signal delivery failed: %s"), safe_strerror (err));
1889 /* We only get this reply when we've posted a signal to a process which we
1890 thought was stopped, and which we expected to continue after the signal.
1891 Given that the signal has failed for some reason, it's reasonable to
1892 assume it's still stopped. */
1895 inf->wait.suppress = 1;
1901 S_msg_sig_post_reply (mach_port_t reply, error_t err)
1903 return ill_rpc ("S_msg_sig_post_reply");
1907 /* Returns the number of messages queued for the receive right PORT. */
1908 static mach_port_msgcount_t
1909 port_msgs_queued (mach_port_t port)
1911 struct mach_port_status status;
1913 mach_port_get_receive_status (mach_task_self (), port, &status);
1918 return status.mps_msgcount;
1922 /* Resume execution of the inferior process.
1924 If STEP is nonzero, single-step it.
1925 If SIGNAL is nonzero, give it that signal.
1928 -1 true Single step the current thread allowing other threads to run.
1929 -1 false Continue the current thread allowing other threads to run.
1930 X true Single step the given thread, don't allow any others to run.
1931 X false Continue the given thread, do not allow any others to run.
1932 (Where X, of course, is anything except -1)
1934 Note that a resume may not `take' if there are pending exceptions/&c
1935 still unprocessed from the last resume we did (any given resume may result
1936 in multiple events returned by wait).
1939 gnu_resume (ptid_t tid, int step, enum target_signal sig)
1941 struct proc *step_thread = 0;
1942 struct inf *inf = current_inferior;
1944 inf_debug (inf, "tid = %d, step = %d, sig = %d", PIDGET (tid), step, sig);
1946 inf_validate_procinfo (inf);
1948 if (sig != TARGET_SIGNAL_0 || inf->stopped)
1950 if (sig == TARGET_SIGNAL_0 && inf->nomsg)
1953 inf_signal (inf, sig);
1955 else if (inf->wait.exc.reply != MACH_PORT_NULL)
1956 /* We received an exception to which we have chosen not to forward, so
1957 abort the faulting thread, which will perhaps retake it. */
1959 proc_abort (inf->wait.thread, 1);
1960 warning (_("Aborting %s with unforwarded exception %s."),
1961 proc_string (inf->wait.thread),
1962 target_signal_to_name (inf->wait.status.value.sig));
1965 if (port_msgs_queued (inf->event_port))
1966 /* If there are still messages in our event queue, don't bother resuming
1967 the process, as we're just going to stop it right away anyway. */
1970 inf_update_procs (inf);
1972 if (PIDGET (tid) < 0)
1973 /* Allow all threads to run, except perhaps single-stepping one. */
1975 inf_debug (inf, "running all threads; tid = %d", PIDGET (inferior_ptid));
1976 tid = inferior_ptid; /* What to step. */
1977 inf_set_threads_resume_sc (inf, 0, 1);
1980 /* Just allow a single thread to run. */
1982 struct proc *thread = inf_tid_to_thread (inf, PIDGET (tid));
1984 error (_("Can't run single thread id %d: no such thread!"), inf->pid);
1985 inf_debug (inf, "running one thread: %d/%d", inf->pid, thread->tid);
1986 inf_set_threads_resume_sc (inf, thread, 0);
1991 step_thread = inf_tid_to_thread (inf, PIDGET (tid));
1993 warning (_("Can't step thread id %d: no such thread."), PIDGET (tid));
1995 inf_debug (inf, "stepping thread: %d/%d", inf->pid, step_thread->tid);
1997 if (step_thread != inf->step_thread)
1998 inf_set_step_thread (inf, step_thread);
2000 inf_debug (inf, "here we go...");
2006 gnu_kill_inferior (void)
2008 struct proc *task = current_inferior->task;
2011 proc_debug (task, "terminating...");
2012 task_terminate (task->port);
2013 inf_set_pid (current_inferior, -1);
2015 target_mourn_inferior ();
2018 /* Clean up after the inferior dies. */
2020 gnu_mourn_inferior (void)
2022 inf_debug (current_inferior, "rip");
2023 inf_detach (current_inferior);
2024 unpush_target (&gnu_ops);
2025 generic_mourn_inferior ();
2029 /* Fork an inferior process, and start debugging it. */
2031 /* Set INFERIOR_PID to the first thread available in the child, if any. */
2033 inf_pick_first_thread (void)
2035 if (current_inferior->task && current_inferior->threads)
2036 /* The first thread. */
2037 return current_inferior->threads->tid;
2039 /* What may be the next thread. */
2040 return next_thread_id;
2046 if (!current_inferior)
2047 current_inferior = make_inf ();
2048 return current_inferior;
2052 gnu_create_inferior (char *exec_file, char *allargs, char **env,
2055 struct inf *inf = cur_inf ();
2059 /* We're in the child; make this process stop as soon as it execs. */
2060 inf_debug (inf, "tracing self");
2061 if (ptrace (PTRACE_TRACEME) != 0)
2062 error (_("ptrace (PTRACE_TRACEME) failed!"));
2064 void attach_to_child (int pid)
2066 /* Attach to the now stopped child, which is actually a shell... */
2067 inf_debug (inf, "attaching to child: %d", pid);
2069 inf_attach (inf, pid);
2072 push_target (&gnu_ops);
2074 inf->pending_execs = 2;
2078 /* Now let the child run again, knowing that it will stop immediately
2079 because of the ptrace. */
2081 inferior_ptid = pid_to_ptid (inf_pick_first_thread ());
2083 startup_inferior (inf->pending_execs);
2086 inf_debug (inf, "creating inferior");
2088 fork_inferior (exec_file, allargs, env, trace_me, attach_to_child,
2091 inf_validate_procinfo (inf);
2092 inf_update_signal_thread (inf);
2093 inf_set_traced (inf, inf->want_signals);
2095 /* Execing the process will have trashed our exception ports; steal them
2096 back (or make sure they're restored if the user wants that). */
2097 if (inf->want_exceptions)
2098 inf_steal_exc_ports (inf);
2100 inf_restore_exc_ports (inf);
2103 /* Mark our target-struct as eligible for stray "run" and "attach"
2112 /* Attach to process PID, then initialize for debugging it
2113 and wait for the trace-trap that results from attaching. */
2115 gnu_attach (char *args, int from_tty)
2119 struct inf *inf = cur_inf ();
2122 error_no_arg (_("process-id to attach"));
2126 if (pid == getpid ()) /* Trying to masturbate? */
2127 error (_("I refuse to debug myself!"));
2131 exec_file = (char *) get_exec_file (0);
2134 printf_unfiltered ("Attaching to program `%s', pid %d\n",
2137 printf_unfiltered ("Attaching to pid %d\n", pid);
2139 gdb_flush (gdb_stdout);
2142 inf_debug (inf, "attaching to pid: %d", pid);
2144 inf_attach (inf, pid);
2145 inf_update_procs (inf);
2147 inferior_ptid = pid_to_ptid (inf_pick_first_thread ());
2150 push_target (&gnu_ops);
2152 /* We have to initialize the terminal settings now, since the code
2153 below might try to restore them. */
2154 target_terminal_init ();
2156 /* If the process was stopped before we attached, make it continue the next
2157 time the user does a continue. */
2158 inf_validate_procinfo (inf);
2160 inf_update_signal_thread (inf);
2161 inf_set_traced (inf, inf->want_signals);
2163 #if 0 /* Do we need this? */
2164 renumber_threads (0); /* Give our threads reasonable names. */
2169 /* Take a program previously attached to and detaches it.
2170 The program resumes execution and will no longer stop
2171 on signals, etc. We'd better not have left any breakpoints
2172 in the program or it'll die when it hits one. For this
2173 to work, it may be necessary for the process to have been
2174 previously attached. It *might* work if the program was
2175 started via fork. */
2177 gnu_detach (char *args, int from_tty)
2181 char *exec_file = get_exec_file (0);
2183 printf_unfiltered ("Detaching from program `%s' pid %d\n",
2184 exec_file, current_inferior->pid);
2186 printf_unfiltered ("Detaching from pid %d\n", current_inferior->pid);
2187 gdb_flush (gdb_stdout);
2190 inf_detach (current_inferior);
2192 inferior_ptid = null_ptid;
2194 unpush_target (&gnu_ops); /* Pop out of handling an inferior */
2198 gnu_terminal_init_inferior (void)
2200 gdb_assert (current_inferior);
2201 terminal_init_inferior_with_pgrp (current_inferior->pid);
2204 /* Get ready to modify the registers array. On machines which store
2205 individual registers, this doesn't need to do anything. On machines
2206 which store all the registers in one fell swoop, this makes sure
2207 that registers contains all the registers from the program being
2210 gnu_prepare_to_store (void)
2212 #ifdef CHILD_PREPARE_TO_STORE
2213 CHILD_PREPARE_TO_STORE ();
2218 gnu_open (char *arg, int from_tty)
2220 error (_("Use the \"run\" command to start a Unix child process."));
2226 error (_("to_stop target function not implemented"));
2230 gnu_pid_to_exec_file (int pid)
2232 error (_("to_pid_to_exec_file target function not implemented"));
2238 gnu_thread_alive (ptid_t tid)
2240 inf_update_procs (current_inferior);
2241 return !!inf_tid_to_thread (current_inferior, PIDGET (tid));
2245 /* Read inferior task's LEN bytes from ADDR and copy it to MYADDR in
2246 gdb's address space. Return 0 on failure; number of bytes read
2249 gnu_read_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length)
2252 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2253 vm_size_t aligned_length =
2254 (vm_size_t) round_page (addr + length) - low_address;
2258 /* Get memory from inferior with page aligned addresses */
2259 err = vm_read (task, low_address, aligned_length, &copied, ©_count);
2263 err = hurd_safe_copyin (myaddr, (void *) (addr - low_address + copied), length);
2266 warning (_("Read from inferior faulted: %s"), safe_strerror (err));
2270 err = vm_deallocate (mach_task_self (), copied, copy_count);
2272 warning (_("gnu_read_inferior vm_deallocate failed: %s"), safe_strerror (err));
2277 #define CHK_GOTO_OUT(str,ret) \
2278 do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0)
2280 struct vm_region_list
2282 struct vm_region_list *next;
2283 vm_prot_t protection;
2288 struct obstack region_obstack;
2290 /* Write gdb's LEN bytes from MYADDR and copy it to ADDR in inferior
2291 task's address space. */
2293 gnu_write_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length)
2296 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2297 vm_size_t aligned_length =
2298 (vm_size_t) round_page (addr + length) - low_address;
2303 char *errstr = "Bug in gnu_write_inferior";
2305 struct vm_region_list *region_element;
2306 struct vm_region_list *region_head = (struct vm_region_list *) NULL;
2308 /* Get memory from inferior with page aligned addresses */
2309 err = vm_read (task,
2314 CHK_GOTO_OUT ("gnu_write_inferior vm_read failed", err);
2318 err = hurd_safe_copyout ((void *) (addr - low_address + copied),
2320 CHK_GOTO_OUT ("Write to inferior faulted", err);
2322 obstack_init (®ion_obstack);
2324 /* Do writes atomically.
2325 First check for holes and unwritable memory. */
2327 vm_size_t remaining_length = aligned_length;
2328 vm_address_t region_address = low_address;
2330 struct vm_region_list *scan;
2332 while (region_address < low_address + aligned_length)
2334 vm_prot_t protection;
2335 vm_prot_t max_protection;
2336 vm_inherit_t inheritance;
2338 mach_port_t object_name;
2340 vm_size_t region_length = remaining_length;
2341 vm_address_t old_address = region_address;
2343 err = vm_region (task,
2352 CHK_GOTO_OUT ("vm_region failed", err);
2354 /* Check for holes in memory */
2355 if (old_address != region_address)
2357 warning (_("No memory at 0x%x. Nothing written"),
2364 if (!(max_protection & VM_PROT_WRITE))
2366 warning (_("Memory at address 0x%x is unwritable. Nothing written"),
2373 /* Chain the regions for later use */
2375 (struct vm_region_list *)
2376 obstack_alloc (®ion_obstack, sizeof (struct vm_region_list));
2378 region_element->protection = protection;
2379 region_element->start = region_address;
2380 region_element->length = region_length;
2382 /* Chain the regions along with protections */
2383 region_element->next = region_head;
2384 region_head = region_element;
2386 region_address += region_length;
2387 remaining_length = remaining_length - region_length;
2390 /* If things fail after this, we give up.
2391 Somebody is messing up inferior_task's mappings. */
2393 /* Enable writes to the chained vm regions */
2394 for (scan = region_head; scan; scan = scan->next)
2396 if (!(scan->protection & VM_PROT_WRITE))
2398 err = vm_protect (task,
2402 scan->protection | VM_PROT_WRITE);
2403 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2407 err = vm_write (task,
2411 CHK_GOTO_OUT ("vm_write failed", err);
2413 /* Set up the original region protections, if they were changed */
2414 for (scan = region_head; scan; scan = scan->next)
2416 if (!(scan->protection & VM_PROT_WRITE))
2418 err = vm_protect (task,
2423 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2431 obstack_free (®ion_obstack, 0);
2433 (void) vm_deallocate (mach_task_self (),
2438 if (err != KERN_SUCCESS)
2440 warning (_("%s: %s"), errstr, mach_error_string (err));
2448 /* Return 0 on failure, number of bytes handled otherwise. TARGET
2451 gnu_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write,
2452 struct mem_attrib *attrib,
2453 struct target_ops *target)
2455 task_t task = (current_inferior
2456 ? (current_inferior->task
2457 ? current_inferior->task->port : 0)
2460 if (task == MACH_PORT_NULL)
2464 inf_debug (current_inferior, "%s %p[%d] %s %p",
2465 write ? "writing" : "reading", (void *) memaddr, len,
2466 write ? "<--" : "-->", myaddr);
2468 return gnu_write_inferior (task, memaddr, myaddr, len);
2470 return gnu_read_inferior (task, memaddr, myaddr, len);
2474 /* Call FUNC on each memory region in the task. */
2476 gnu_find_memory_regions (int (*func) (CORE_ADDR,
2484 vm_address_t region_address, last_region_address, last_region_end;
2485 vm_prot_t last_protection;
2487 if (current_inferior == 0 || current_inferior->task == 0)
2489 task = current_inferior->task->port;
2490 if (task == MACH_PORT_NULL)
2493 region_address = last_region_address = last_region_end = VM_MIN_ADDRESS;
2494 last_protection = VM_PROT_NONE;
2495 while (region_address < VM_MAX_ADDRESS)
2497 vm_prot_t protection;
2498 vm_prot_t max_protection;
2499 vm_inherit_t inheritance;
2501 mach_port_t object_name;
2503 vm_size_t region_length = VM_MAX_ADDRESS - region_address;
2504 vm_address_t old_address = region_address;
2506 err = vm_region (task,
2515 if (err == KERN_NO_SPACE)
2517 if (err != KERN_SUCCESS)
2519 warning (_("vm_region failed: %s"), mach_error_string (err));
2523 if (protection == last_protection && region_address == last_region_end)
2524 /* This region is contiguous with and indistinguishable from
2525 the previous one, so we just extend that one. */
2526 last_region_end = region_address += region_length;
2529 /* This region is distinct from the last one we saw, so report
2530 that previous one. */
2531 if (last_protection != VM_PROT_NONE)
2532 (*func) (last_region_address,
2533 last_region_end - last_region_address,
2534 last_protection & VM_PROT_READ,
2535 last_protection & VM_PROT_WRITE,
2536 last_protection & VM_PROT_EXECUTE,
2538 last_region_address = region_address;
2539 last_region_end = region_address += region_length;
2540 last_protection = protection;
2544 /* Report the final region. */
2545 if (last_region_end > last_region_address && last_protection != VM_PROT_NONE)
2546 (*func) (last_region_address, last_region_end - last_region_address,
2547 last_protection & VM_PROT_READ,
2548 last_protection & VM_PROT_WRITE,
2549 last_protection & VM_PROT_EXECUTE,
2556 /* Return printable description of proc. */
2558 proc_string (struct proc *proc)
2560 static char tid_str[80];
2561 if (proc_is_task (proc))
2562 sprintf (tid_str, "process %d", proc->inf->pid);
2564 sprintf (tid_str, "thread %d.%d",
2565 proc->inf->pid, pid_to_thread_id (MERGEPID (proc->tid, 0)));
2570 gnu_pid_to_str (ptid_t ptid)
2572 struct inf *inf = current_inferior;
2573 int tid = PIDGET (ptid);
2574 struct proc *thread = inf_tid_to_thread (inf, tid);
2577 return proc_string (thread);
2580 static char tid_str[80];
2581 sprintf (tid_str, "bogus thread id %d", tid);
2587 extern void gnu_store_registers (int regno);
2588 extern void gnu_fetch_registers (int regno);
2590 struct target_ops gnu_ops;
2595 gnu_ops.to_shortname = "GNU"; /* to_shortname */
2596 gnu_ops.to_longname = "GNU Hurd process"; /* to_longname */
2597 gnu_ops.to_doc = "GNU Hurd process"; /* to_doc */
2598 gnu_ops.to_open = gnu_open; /* to_open */
2599 gnu_ops.to_attach = gnu_attach; /* to_attach */
2600 gnu_ops.to_detach = gnu_detach; /* to_detach */
2601 gnu_ops.to_resume = gnu_resume; /* to_resume */
2602 gnu_ops.to_wait = gnu_wait; /* to_wait */
2603 gnu_ops.to_fetch_registers = gnu_fetch_registers; /* to_fetch_registers */
2604 gnu_ops.to_store_registers = gnu_store_registers; /* to_store_registers */
2605 gnu_ops.to_prepare_to_store = gnu_prepare_to_store; /* to_prepare_to_store */
2606 gnu_ops.deprecated_xfer_memory = gnu_xfer_memory;
2607 gnu_ops.to_find_memory_regions = gnu_find_memory_regions;
2608 gnu_ops.to_insert_breakpoint = memory_insert_breakpoint;
2609 gnu_ops.to_remove_breakpoint = memory_remove_breakpoint;
2610 gnu_ops.to_terminal_init = gnu_terminal_init_inferior;
2611 gnu_ops.to_terminal_inferior = terminal_inferior;
2612 gnu_ops.to_terminal_ours_for_output = terminal_ours_for_output;
2613 gnu_ops.to_terminal_save_ours = terminal_save_ours;
2614 gnu_ops.to_terminal_ours = terminal_ours;
2615 gnu_ops.to_terminal_info = child_terminal_info;
2616 gnu_ops.to_kill = gnu_kill_inferior; /* to_kill */
2617 gnu_ops.to_create_inferior = gnu_create_inferior; /* to_create_inferior */
2618 gnu_ops.to_mourn_inferior = gnu_mourn_inferior; /* to_mourn_inferior */
2619 gnu_ops.to_can_run = gnu_can_run; /* to_can_run */
2620 gnu_ops.to_thread_alive = gnu_thread_alive; /* to_thread_alive */
2621 gnu_ops.to_pid_to_str = gnu_pid_to_str; /* to_pid_to_str */
2622 gnu_ops.to_stop = gnu_stop; /* to_stop */
2623 gnu_ops.to_pid_to_exec_file = gnu_pid_to_exec_file; /* to_pid_to_exec_file */
2624 gnu_ops.to_stratum = process_stratum; /* to_stratum */
2625 gnu_ops.to_has_all_memory = 1; /* to_has_all_memory */
2626 gnu_ops.to_has_memory = 1; /* to_has_memory */
2627 gnu_ops.to_has_stack = 1; /* to_has_stack */
2628 gnu_ops.to_has_registers = 1; /* to_has_registers */
2629 gnu_ops.to_has_execution = 1; /* to_has_execution */
2630 gnu_ops.to_magic = OPS_MAGIC; /* to_magic */
2631 } /* init_gnu_ops */
2634 /* User task commands. */
2636 struct cmd_list_element *set_task_cmd_list = 0;
2637 struct cmd_list_element *show_task_cmd_list = 0;
2638 /* User thread commands. */
2640 /* Commands with a prefix of `set/show thread'. */
2641 extern struct cmd_list_element *thread_cmd_list;
2642 struct cmd_list_element *set_thread_cmd_list = NULL;
2643 struct cmd_list_element *show_thread_cmd_list = NULL;
2645 /* Commands with a prefix of `set/show thread default'. */
2646 struct cmd_list_element *set_thread_default_cmd_list = NULL;
2647 struct cmd_list_element *show_thread_default_cmd_list = NULL;
2650 set_thread_cmd (char *args, int from_tty)
2652 printf_unfiltered ("\"set thread\" must be followed by the name of a thread property, or \"default\".\n");
2656 show_thread_cmd (char *args, int from_tty)
2658 printf_unfiltered ("\"show thread\" must be followed by the name of a thread property, or \"default\".\n");
2662 set_thread_default_cmd (char *args, int from_tty)
2664 printf_unfiltered ("\"set thread default\" must be followed by the name of a thread property.\n");
2668 show_thread_default_cmd (char *args, int from_tty)
2670 printf_unfiltered ("\"show thread default\" must be followed by the name of a thread property.\n");
2674 parse_int_arg (char *args, char *cmd_prefix)
2679 int val = strtoul (args, &arg_end, 10);
2680 if (*args && *arg_end == '\0')
2683 error (_("Illegal argument for \"%s\" command, should be an integer."), cmd_prefix);
2687 _parse_bool_arg (char *args, char *t_val, char *f_val, char *cmd_prefix)
2689 if (!args || strcmp (args, t_val) == 0)
2691 else if (strcmp (args, f_val) == 0)
2694 error (_("Illegal argument for \"%s\" command, should be \"%s\" or \"%s\"."),
2695 cmd_prefix, t_val, f_val);
2698 #define parse_bool_arg(args, cmd_prefix) \
2699 _parse_bool_arg (args, "on", "off", cmd_prefix)
2702 check_empty (char *args, char *cmd_prefix)
2705 error (_("Garbage after \"%s\" command: `%s'"), cmd_prefix, args);
2708 /* Returns the alive thread named by INFERIOR_PID, or signals an error. */
2709 static struct proc *
2712 struct inf *inf = cur_inf ();
2713 struct proc *thread = inf_tid_to_thread (inf, PIDGET (inferior_ptid));
2715 error (_("No current thread."));
2719 /* Returns the current inferior, but signals an error if it has no task. */
2723 struct inf *inf = cur_inf ();
2725 error (_("No current process."));
2731 set_task_pause_cmd (char *args, int from_tty)
2733 struct inf *inf = cur_inf ();
2734 int old_sc = inf->pause_sc;
2736 inf->pause_sc = parse_bool_arg (args, "set task pause");
2738 if (old_sc == 0 && inf->pause_sc != 0)
2739 /* If the task is currently unsuspended, immediately suspend it,
2740 otherwise wait until the next time it gets control. */
2745 show_task_pause_cmd (char *args, int from_tty)
2747 struct inf *inf = cur_inf ();
2748 check_empty (args, "show task pause");
2749 printf_unfiltered ("The inferior task %s suspended while gdb has control.\n",
2751 ? (inf->pause_sc == 0 ? "isn't" : "is")
2752 : (inf->pause_sc == 0 ? "won't be" : "will be"));
2756 set_task_detach_sc_cmd (char *args, int from_tty)
2758 cur_inf ()->detach_sc = parse_int_arg (args, "set task detach-suspend-count");
2762 show_task_detach_sc_cmd (char *args, int from_tty)
2764 check_empty (args, "show task detach-suspend-count");
2765 printf_unfiltered ("The inferior task will be left with a suspend count of %d when detaching.\n",
2766 cur_inf ()->detach_sc);
2771 set_thread_default_pause_cmd (char *args, int from_tty)
2773 struct inf *inf = cur_inf ();
2774 inf->default_thread_pause_sc =
2775 parse_bool_arg (args, "set thread default pause") ? 0 : 1;
2779 show_thread_default_pause_cmd (char *args, int from_tty)
2781 struct inf *inf = cur_inf ();
2782 int sc = inf->default_thread_pause_sc;
2783 check_empty (args, "show thread default pause");
2784 printf_unfiltered ("New threads %s suspended while gdb has control%s.\n",
2785 sc ? "are" : "aren't",
2786 !sc && inf->pause_sc ? " (but the task is)" : "");
2790 set_thread_default_run_cmd (char *args, int from_tty)
2792 struct inf *inf = cur_inf ();
2793 inf->default_thread_run_sc =
2794 parse_bool_arg (args, "set thread default run") ? 0 : 1;
2798 show_thread_default_run_cmd (char *args, int from_tty)
2800 struct inf *inf = cur_inf ();
2801 check_empty (args, "show thread default run");
2802 printf_unfiltered ("New threads %s allowed to run.\n",
2803 inf->default_thread_run_sc == 0 ? "are" : "aren't");
2807 set_thread_default_detach_sc_cmd (char *args, int from_tty)
2809 cur_inf ()->default_thread_detach_sc =
2810 parse_int_arg (args, "set thread default detach-suspend-count");
2814 show_thread_default_detach_sc_cmd (char *args, int from_tty)
2816 check_empty (args, "show thread default detach-suspend-count");
2817 printf_unfiltered ("New threads will get a detach-suspend-count of %d.\n",
2818 cur_inf ()->default_thread_detach_sc);
2822 /* Steal a send right called NAME in the inferior task, and make it PROC's
2823 saved exception port. */
2825 steal_exc_port (struct proc *proc, mach_port_t name)
2829 mach_msg_type_name_t port_type;
2831 if (!proc || !proc->inf->task)
2832 error (_("No inferior task."));
2834 err = mach_port_extract_right (proc->inf->task->port,
2835 name, MACH_MSG_TYPE_COPY_SEND,
2838 error (_("Couldn't extract send right %d from inferior: %s"),
2839 name, safe_strerror (err));
2841 if (proc->saved_exc_port)
2842 /* Get rid of our reference to the old one. */
2843 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
2845 proc->saved_exc_port = port;
2847 if (!proc->exc_port)
2848 /* If PROC is a thread, we may not have set its exception port before.
2849 We can't use proc_steal_exc_port because it also sets saved_exc_port. */
2851 proc->exc_port = proc->inf->event_port;
2852 err = proc_set_exception_port (proc, proc->exc_port);
2853 error (_("Can't set exception port for %s: %s"),
2854 proc_string (proc), safe_strerror (err));
2859 set_task_exc_port_cmd (char *args, int from_tty)
2861 struct inf *inf = cur_inf ();
2863 error (_("No argument to \"set task exception-port\" command."));
2864 steal_exc_port (inf->task, parse_and_eval_address (args));
2868 set_stopped_cmd (char *args, int from_tty)
2870 cur_inf ()->stopped = _parse_bool_arg (args, "yes", "no", "set stopped");
2874 show_stopped_cmd (char *args, int from_tty)
2876 struct inf *inf = active_inf ();
2877 check_empty (args, "show stopped");
2878 printf_unfiltered ("The inferior process %s stopped.\n",
2879 inf->stopped ? "is" : "isn't");
2883 set_sig_thread_cmd (char *args, int from_tty)
2885 struct inf *inf = cur_inf ();
2887 if (!args || (!isdigit (*args) && strcmp (args, "none") != 0))
2888 error (_("Illegal argument to \"set signal-thread\" command.\n"
2889 "Should be an integer thread ID, or `none'."));
2891 if (strcmp (args, "none") == 0)
2892 inf->signal_thread = 0;
2895 int tid = PIDGET (thread_id_to_pid (atoi (args)));
2897 error (_("Thread ID %s not known. Use the \"info threads\" command to\n"
2898 "see the IDs of currently known threads."), args);
2899 inf->signal_thread = inf_tid_to_thread (inf, tid);
2904 show_sig_thread_cmd (char *args, int from_tty)
2906 struct inf *inf = active_inf ();
2907 check_empty (args, "show signal-thread");
2908 if (inf->signal_thread)
2909 printf_unfiltered ("The signal thread is %s.\n",
2910 proc_string (inf->signal_thread));
2912 printf_unfiltered ("There is no signal thread.\n");
2917 set_signals_cmd (char *args, int from_tty)
2919 struct inf *inf = cur_inf ();
2921 inf->want_signals = parse_bool_arg (args, "set signals");
2923 if (inf->task && inf->want_signals != inf->traced)
2924 /* Make this take effect immediately in a running process. */
2925 inf_set_traced (inf, inf->want_signals);
2929 show_signals_cmd (char *args, int from_tty)
2931 struct inf *inf = cur_inf ();
2932 check_empty (args, "show signals");
2933 printf_unfiltered ("The inferior process's signals %s intercepted.\n",
2935 ? (inf->traced ? "are" : "aren't")
2936 : (inf->want_signals ? "will be" : "won't be"));
2940 set_exceptions_cmd (char *args, int from_tty)
2942 struct inf *inf = cur_inf ();
2943 int val = parse_bool_arg (args, "set exceptions");
2945 if (inf->task && inf->want_exceptions != val)
2946 /* Make this take effect immediately in a running process. */
2949 inf->want_exceptions = val;
2953 show_exceptions_cmd (char *args, int from_tty)
2955 struct inf *inf = cur_inf ();
2956 check_empty (args, "show exceptions");
2957 printf_unfiltered ("Exceptions in the inferior %s trapped.\n",
2959 ? (inf->want_exceptions ? "are" : "aren't")
2960 : (inf->want_exceptions ? "will be" : "won't be"));
2965 set_task_cmd (char *args, int from_tty)
2967 printf_unfiltered ("\"set task\" must be followed by the name"
2968 " of a task property.\n");
2972 show_task_cmd (char *args, int from_tty)
2974 struct inf *inf = cur_inf ();
2976 check_empty (args, "show task");
2978 show_signals_cmd (0, from_tty);
2979 show_exceptions_cmd (0, from_tty);
2980 show_task_pause_cmd (0, from_tty);
2982 if (inf->pause_sc == 0)
2983 show_thread_default_pause_cmd (0, from_tty);
2984 show_thread_default_run_cmd (0, from_tty);
2988 show_stopped_cmd (0, from_tty);
2989 show_sig_thread_cmd (0, from_tty);
2992 if (inf->detach_sc != 0)
2993 show_task_detach_sc_cmd (0, from_tty);
2994 if (inf->default_thread_detach_sc != 0)
2995 show_thread_default_detach_sc_cmd (0, from_tty);
3000 set_noninvasive_cmd (char *args, int from_tty)
3002 /* Invert the sense of the arg for each component. */
3003 char *inv_args = parse_bool_arg (args, "set noninvasive") ? "off" : "on";
3005 set_task_pause_cmd (inv_args, from_tty);
3006 set_signals_cmd (inv_args, from_tty);
3007 set_exceptions_cmd (inv_args, from_tty);
3012 info_port_rights (char *args, mach_port_type_t only)
3014 struct inf *inf = active_inf ();
3015 struct value *vmark = value_mark ();
3018 /* Explicit list of port rights. */
3022 struct value *val = parse_to_comma_and_eval (&args);
3023 long right = value_as_long (val);
3025 print_port_info (right, 0, inf->task->port, PORTINFO_DETAILS,
3028 error (_("%ld: %s."), right, safe_strerror (err));
3032 /* Print all of them. */
3035 print_task_ports_info (inf->task->port, only, PORTINFO_DETAILS,
3038 error (_("%s."), safe_strerror (err));
3041 value_free_to_mark (vmark);
3045 info_send_rights_cmd (char *args, int from_tty)
3047 info_port_rights (args, MACH_PORT_TYPE_SEND);
3051 info_recv_rights_cmd (char *args, int from_tty)
3053 info_port_rights (args, MACH_PORT_TYPE_RECEIVE);
3057 info_port_sets_cmd (char *args, int from_tty)
3059 info_port_rights (args, MACH_PORT_TYPE_PORT_SET);
3063 info_dead_names_cmd (char *args, int from_tty)
3065 info_port_rights (args, MACH_PORT_TYPE_DEAD_NAME);
3069 info_port_rights_cmd (char *args, int from_tty)
3071 info_port_rights (args, ~0);
3076 add_task_commands (void)
3078 add_cmd ("pause", class_run, set_thread_default_pause_cmd, _("\
3079 Set whether the new threads are suspended while gdb has control.\n\
3080 This property normally has no effect because the whole task is\n\
3081 suspended, however, that may be disabled with \"set task pause off\".\n\
3082 The default value is \"off\"."),
3083 &set_thread_default_cmd_list);
3084 add_cmd ("pause", no_class, show_thread_default_pause_cmd, _("\
3085 Show whether new threads are suspended while gdb has control."),
3086 &show_thread_default_cmd_list);
3088 add_cmd ("run", class_run, set_thread_default_run_cmd, _("\
3089 Set whether new threads are allowed to run (once gdb has noticed them)."),
3090 &set_thread_default_cmd_list);
3091 add_cmd ("run", no_class, show_thread_default_run_cmd, _("\
3092 Show whether new threads are allowed to run (once gdb has noticed them)."),
3093 &show_thread_default_cmd_list);
3095 add_cmd ("detach-suspend-count", class_run, set_thread_default_detach_sc_cmd,
3096 _("Set the default detach-suspend-count value for new threads."),
3097 &set_thread_default_cmd_list);
3098 add_cmd ("detach-suspend-count", no_class, show_thread_default_detach_sc_cmd,
3099 _("Show the default detach-suspend-count value for new threads."),
3100 &show_thread_default_cmd_list);
3102 add_cmd ("signals", class_run, set_signals_cmd, _("\
3103 Set whether the inferior process's signals will be intercepted.\n\
3104 Mach exceptions (such as breakpoint traps) are not affected."),
3106 add_alias_cmd ("sigs", "signals", class_run, 1, &setlist);
3107 add_cmd ("signals", no_class, show_signals_cmd, _("\
3108 Show whether the inferior process's signals will be intercepted."),
3110 add_alias_cmd ("sigs", "signals", no_class, 1, &showlist);
3112 add_cmd ("signal-thread", class_run, set_sig_thread_cmd, _("\
3113 Set the thread that gdb thinks is the libc signal thread.\n\
3114 This thread is run when delivering a signal to a non-stopped process."),
3116 add_alias_cmd ("sigthread", "signal-thread", class_run, 1, &setlist);
3117 add_cmd ("signal-thread", no_class, show_sig_thread_cmd, _("\
3118 Set the thread that gdb thinks is the libc signal thread."),
3120 add_alias_cmd ("sigthread", "signal-thread", no_class, 1, &showlist);
3122 add_cmd ("stopped", class_run, set_stopped_cmd, _("\
3123 Set whether gdb thinks the inferior process is stopped as with SIGSTOP.\n\
3124 Stopped process will be continued by sending them a signal."),
3126 add_cmd ("stopped", no_class, show_signals_cmd, _("\
3127 Show whether gdb thinks the inferior process is stopped as with SIGSTOP."),
3130 add_cmd ("exceptions", class_run, set_exceptions_cmd, _("\
3131 Set whether exceptions in the inferior process will be trapped.\n\
3132 When exceptions are turned off, neither breakpoints nor single-stepping\n\
3135 /* Allow `set exc' despite conflict with `set exception-port'. */
3136 add_alias_cmd ("exc", "exceptions", class_run, 1, &setlist);
3137 add_cmd ("exceptions", no_class, show_exceptions_cmd, _("\
3138 Show whether exceptions in the inferior process will be trapped."),
3141 add_prefix_cmd ("task", no_class, set_task_cmd,
3142 _("Command prefix for setting task attributes."),
3143 &set_task_cmd_list, "set task ", 0, &setlist);
3144 add_prefix_cmd ("task", no_class, show_task_cmd,
3145 _("Command prefix for showing task attributes."),
3146 &show_task_cmd_list, "show task ", 0, &showlist);
3148 add_cmd ("pause", class_run, set_task_pause_cmd, _("\
3149 Set whether the task is suspended while gdb has control.\n\
3150 A value of \"on\" takes effect immediately, otherwise nothing happens\n\
3151 until the next time the program is continued.\n\
3152 When setting this to \"off\", \"set thread default pause on\" can be\n\
3153 used to pause individual threads by default instead."),
3154 &set_task_cmd_list);
3155 add_cmd ("pause", no_class, show_task_pause_cmd,
3156 _("Show whether the task is suspended while gdb has control."),
3157 &show_task_cmd_list);
3159 add_cmd ("detach-suspend-count", class_run, set_task_detach_sc_cmd,
3160 _("Set the suspend count will leave on the thread when detaching."),
3161 &set_task_cmd_list);
3162 add_cmd ("detach-suspend-count", no_class, show_task_detach_sc_cmd,
3163 _("Show the suspend count will leave on the thread when detaching."),
3164 &show_task_cmd_list);
3166 add_cmd ("exception-port", no_class, set_task_exc_port_cmd, _("\
3167 Set the task exception port to which we forward exceptions.\n\
3168 The argument should be the value of the send right in the task."),
3169 &set_task_cmd_list);
3170 add_alias_cmd ("excp", "exception-port", no_class, 1, &set_task_cmd_list);
3171 add_alias_cmd ("exc-port", "exception-port", no_class, 1,
3172 &set_task_cmd_list);
3174 /* A convenient way of turning on all options require to noninvasively
3175 debug running tasks. */
3176 add_cmd ("noninvasive", no_class, set_noninvasive_cmd, _("\
3177 Set task options so that we interfere as little as possible.\n\
3178 This is the same as setting `task pause', `exceptions', and\n\
3179 `signals' to the opposite value."),
3182 /* Commands to show information about the task's ports. */
3183 add_cmd ("send-rights", class_info, info_send_rights_cmd,
3184 _("Show information about the task's send rights"),
3186 add_cmd ("receive-rights", class_info, info_recv_rights_cmd,
3187 _("Show information about the task's receive rights"),
3189 add_cmd ("port-rights", class_info, info_port_rights_cmd,
3190 _("Show information about the task's port rights"),
3192 add_cmd ("port-sets", class_info, info_port_sets_cmd,
3193 _("Show information about the task's port sets"),
3195 add_cmd ("dead-names", class_info, info_dead_names_cmd,
3196 _("Show information about the task's dead names"),
3198 add_info_alias ("ports", "port-rights", 1);
3199 add_info_alias ("port", "port-rights", 1);
3200 add_info_alias ("psets", "port-sets", 1);
3205 set_thread_pause_cmd (char *args, int from_tty)
3207 struct proc *thread = cur_thread ();
3208 int old_sc = thread->pause_sc;
3209 thread->pause_sc = parse_bool_arg (args, "set thread pause");
3210 if (old_sc == 0 && thread->pause_sc != 0 && thread->inf->pause_sc == 0)
3211 /* If the task is currently unsuspended, immediately suspend it,
3212 otherwise wait until the next time it gets control. */
3213 inf_suspend (thread->inf);
3217 show_thread_pause_cmd (char *args, int from_tty)
3219 struct proc *thread = cur_thread ();
3220 int sc = thread->pause_sc;
3221 check_empty (args, "show task pause");
3222 printf_unfiltered ("Thread %s %s suspended while gdb has control%s.\n",
3223 proc_string (thread),
3224 sc ? "is" : "isn't",
3225 !sc && thread->inf->pause_sc ? " (but the task is)" : "");
3229 set_thread_run_cmd (char *args, int from_tty)
3231 struct proc *thread = cur_thread ();
3232 thread->run_sc = parse_bool_arg (args, "set thread run") ? 0 : 1;
3236 show_thread_run_cmd (char *args, int from_tty)
3238 struct proc *thread = cur_thread ();
3239 check_empty (args, "show thread run");
3240 printf_unfiltered ("Thread %s %s allowed to run.",
3241 proc_string (thread),
3242 thread->run_sc == 0 ? "is" : "isn't");
3246 set_thread_detach_sc_cmd (char *args, int from_tty)
3248 cur_thread ()->detach_sc = parse_int_arg (args,
3249 "set thread detach-suspend-count");
3253 show_thread_detach_sc_cmd (char *args, int from_tty)
3255 struct proc *thread = cur_thread ();
3256 check_empty (args, "show thread detach-suspend-count");
3257 printf_unfiltered ("Thread %s will be left with a suspend count"
3258 " of %d when detaching.\n",
3259 proc_string (thread),
3264 set_thread_exc_port_cmd (char *args, int from_tty)
3266 struct proc *thread = cur_thread ();
3268 error (_("No argument to \"set thread exception-port\" command."));
3269 steal_exc_port (thread, parse_and_eval_address (args));
3274 show_thread_cmd (char *args, int from_tty)
3276 struct proc *thread = cur_thread ();
3277 check_empty (args, "show thread");
3278 show_thread_run_cmd (0, from_tty);
3279 show_thread_pause_cmd (0, from_tty);
3280 if (thread->detach_sc != 0)
3281 show_thread_detach_sc_cmd (0, from_tty);
3286 thread_takeover_sc_cmd (char *args, int from_tty)
3288 struct proc *thread = cur_thread ();
3289 thread_basic_info_data_t _info;
3290 thread_basic_info_t info = &_info;
3291 mach_msg_type_number_t info_len = THREAD_BASIC_INFO_COUNT;
3293 thread_info (thread->port, THREAD_BASIC_INFO, (int *) &info, &info_len);
3295 error (("%s."), safe_strerror (err));
3296 thread->sc = info->suspend_count;
3298 printf_unfiltered ("Suspend count was %d.\n", thread->sc);
3300 vm_deallocate (mach_task_self (), (vm_address_t) info,
3301 info_len * sizeof (int));
3306 add_thread_commands (void)
3308 add_prefix_cmd ("thread", no_class, set_thread_cmd,
3309 _("Command prefix for setting thread properties."),
3310 &set_thread_cmd_list, "set thread ", 0, &setlist);
3311 add_prefix_cmd ("default", no_class, show_thread_cmd,
3312 _("Command prefix for setting default thread properties."),
3313 &set_thread_default_cmd_list, "set thread default ", 0,
3314 &set_thread_cmd_list);
3315 add_prefix_cmd ("thread", no_class, set_thread_default_cmd,
3316 _("Command prefix for showing thread properties."),
3317 &show_thread_cmd_list, "show thread ", 0, &showlist);
3318 add_prefix_cmd ("default", no_class, show_thread_default_cmd,
3319 _("Command prefix for showing default thread properties."),
3320 &show_thread_default_cmd_list, "show thread default ", 0,
3321 &show_thread_cmd_list);
3323 add_cmd ("pause", class_run, set_thread_pause_cmd, _("\
3324 Set whether the current thread is suspended while gdb has control.\n\
3325 A value of \"on\" takes effect immediately, otherwise nothing happens\n\
3326 until the next time the program is continued. This property normally\n\
3327 has no effect because the whole task is suspended, however, that may\n\
3328 be disabled with \"set task pause off\".\n\
3329 The default value is \"off\"."),
3330 &set_thread_cmd_list);
3331 add_cmd ("pause", no_class, show_thread_pause_cmd, _("\
3332 Show whether the current thread is suspended while gdb has control."),
3333 &show_thread_cmd_list);
3335 add_cmd ("run", class_run, set_thread_run_cmd,
3336 _("Set whether the current thread is allowed to run."),
3337 &set_thread_cmd_list);
3338 add_cmd ("run", no_class, show_thread_run_cmd,
3339 _("Show whether the current thread is allowed to run."),
3340 &show_thread_cmd_list);
3342 add_cmd ("detach-suspend-count", class_run, set_thread_detach_sc_cmd, _("\
3343 Set the suspend count will leave on the thread when detaching.\n\
3344 Note that this is relative to suspend count when gdb noticed the thread;\n\
3345 use the `thread takeover-suspend-count' to force it to an absolute value."),
3346 &set_thread_cmd_list);
3347 add_cmd ("detach-suspend-count", no_class, show_thread_detach_sc_cmd, _("\
3348 Show the suspend count will leave on the thread when detaching.\n\
3349 Note that this is relative to suspend count when gdb noticed the thread;\n\
3350 use the `thread takeover-suspend-count' to force it to an absolute value."),
3351 &show_thread_cmd_list);
3353 add_cmd ("exception-port", no_class, set_thread_exc_port_cmd, _("\
3354 Set the thread exception port to which we forward exceptions.\n\
3355 This overrides the task exception port.\n\
3356 The argument should be the value of the send right in the task."),
3357 &set_thread_cmd_list);
3358 add_alias_cmd ("excp", "exception-port", no_class, 1, &set_thread_cmd_list);
3359 add_alias_cmd ("exc-port", "exception-port", no_class, 1,
3360 &set_thread_cmd_list);
3362 add_cmd ("takeover-suspend-count", no_class, thread_takeover_sc_cmd, _("\
3363 Force the threads absolute suspend-count to be gdb's.\n\
3364 Prior to giving this command, gdb's thread suspend-counts are relative\n\
3365 to the thread's initial suspend-count when gdb notices the threads."),
3371 _initialize_gnu_nat (void)
3373 proc_server = getproc ();
3376 add_target (&gnu_ops);
3378 add_task_commands ();
3379 add_thread_commands ();
3380 deprecated_add_set_cmd ("gnu-debug", class_maintenance,
3381 var_boolean, (char *) &gnu_debug_flag,
3382 "Set debugging output for the gnu backend.",
3386 #ifdef FLUSH_INFERIOR_CACHE
3388 /* When over-writing code on some machines the I-Cache must be flushed
3389 explicitly, because it is not kept coherent by the lazy hardware.
3390 This definitely includes breakpoints, for instance, or else we
3391 end up looping in mysterious Bpt traps */
3394 flush_inferior_icache (CORE_ADDR pc, int amount)
3396 vm_machine_attribute_val_t flush = MATTR_VAL_ICACHE_FLUSH;
3399 ret = vm_machine_attribute (current_inferior->task->port,
3404 if (ret != KERN_SUCCESS)
3405 warning (_("Error flushing inferior's cache : %s"), safe_strerror (ret));
3407 #endif /* FLUSH_INFERIOR_CACHE */