gdb/gnu-nat.c - gdb
Global variables defined
Data types defined
Functions defined
Macros defined
Source code
- #include "defs.h"
- #include <ctype.h>
- #include <limits.h>
- #include <setjmp.h>
- #include <signal.h>
- #include <sys/ptrace.h>
- #include <mach.h>
- #include <mach_error.h>
- #include <mach/exception.h>
- #include <mach/message.h>
- #include <mach/notify.h>
- #include <mach/vm_attributes.h>
- #include <hurd.h>
- #include <hurd/interrupt.h>
- #include <hurd/msg.h>
- #include <hurd/msg_request.h>
- #include <hurd/process.h>
- #undef _process_user_
- #include <hurd/process_request.h>
- #include <hurd/signal.h>
- #include <hurd/sigpreempt.h>
- #include <portinfo.h>
- #include "inferior.h"
- #include "symtab.h"
- #include "value.h"
- #include "language.h"
- #include "target.h"
- #include "gdb_wait.h"
- #include "gdbcmd.h"
- #include "gdbcore.h"
- #include "gdbthread.h"
- #include "gdb_obstack.h"
- #include "gnu-nat.h"
- #include "inf-child.h"
- #include "exc_request_S.h"
- #include "notify_S.h"
- #include "process_reply_S.h"
- #include "msg_reply_S.h"
- #include "exc_request_U.h"
- #include "msg_U.h"
- static process_t proc_server = MACH_PORT_NULL;
- int proc_wait_pid = 0;
- int proc_waits_pending = 0;
- int gnu_debug_flag = 0;
- static struct inf *make_inf ();
- void inf_clear_wait (struct inf *inf);
- void inf_cleanup (struct inf *inf);
- void inf_startup (struct inf *inf, int pid);
- int inf_update_suspends (struct inf *inf);
- void inf_set_pid (struct inf *inf, pid_t pid);
- void inf_validate_procs (struct inf *inf);
- void inf_steal_exc_ports (struct inf *inf);
- void inf_restore_exc_ports (struct inf *inf);
- void inf_set_threads_resume_sc (struct inf *inf,
- struct proc *run_thread,
- int run_others);
- int inf_set_threads_resume_sc_for_signal_thread (struct inf *inf);
- void inf_suspend (struct inf *inf);
- void inf_resume (struct inf *inf);
- void inf_set_step_thread (struct inf *inf, struct proc *proc);
- void inf_detach (struct inf *inf);
- void inf_attach (struct inf *inf, int pid);
- void inf_signal (struct inf *inf, enum gdb_signal sig);
- void inf_continue (struct inf *inf);
- #define inf_debug(_inf, msg, args...) \
- do { struct inf *__inf = (_inf); \
- debug ("{inf %d %s}: " msg, __inf->pid, \
- host_address_to_string (__inf) , ##args); } while (0)
- void proc_abort (struct proc *proc, int force);
- struct proc *make_proc (struct inf *inf, mach_port_t port, int tid);
- struct proc *_proc_free (struct proc *proc);
- int proc_update_sc (struct proc *proc);
- error_t proc_get_exception_port (struct proc *proc, mach_port_t * port);
- error_t proc_set_exception_port (struct proc *proc, mach_port_t port);
- static mach_port_t _proc_get_exc_port (struct proc *proc);
- void proc_steal_exc_port (struct proc *proc, mach_port_t exc_port);
- void proc_restore_exc_port (struct proc *proc);
- int proc_trace (struct proc *proc, int set);
- #define INF_MSGPORT_RPC(inf, rpc_expr) \
- HURD_MSGPORT_RPC (proc_getmsgport (proc_server, inf->pid, &msgport), \
- (refport = inf->task->port, 0), 0, \
- msgport ? (rpc_expr) : EIEIO)
- #define INF_RESUME_MSGPORT_RPC(inf, rpc_expr) \
- (inf_set_threads_resume_sc_for_signal_thread (inf) \
- ? ({ error_t __e; \
- inf_resume (inf); \
- __e = INF_MSGPORT_RPC (inf, rpc_expr); \
- inf_suspend (inf); \
- __e; }) \
- : EIEIO)
- struct exc_state
- {
- int exception;
- int code, subcode;
- mach_port_t handler;
- mach_port_t reply;
- };
- struct inf_wait
- {
- struct target_waitstatus status;
- struct exc_state exc;
- struct proc *thread;
- int suppress;
- };
- struct inf
- {
-
- struct proc *task;
- struct proc *threads;
-
- int threads_up_to_date;
- pid_t pid;
- struct inf_wait wait;
-
- struct proc *step_thread;
-
- struct proc *signal_thread;
- mach_port_t event_port;
-
- unsigned int running:1;
-
- unsigned int stopped:1;
-
- unsigned int nomsg:1;
-
- unsigned int traced:1;
-
- unsigned int no_wait:1;
-
- unsigned int pending_execs:1;
-
-
- int pause_sc;
-
- int detach_sc;
-
- int default_thread_run_sc;
- int default_thread_pause_sc;
- int default_thread_detach_sc;
-
- int want_signals;
-
- int want_exceptions;
- };
- int
- __proc_pid (struct proc *proc)
- {
- return proc->inf->pid;
- }
- int
- proc_update_sc (struct proc *proc)
- {
- int running;
- int err = 0;
- int delta = proc->sc - proc->cur_sc;
- if (delta)
- proc_debug (proc, "sc: %d --> %d", proc->cur_sc, proc->sc);
- if (proc->sc == 0 && proc->state_changed)
-
- {
- gdb_assert (proc_is_thread (proc));
- proc_debug (proc, "storing back changed thread state");
- err = thread_set_state (proc->port, THREAD_STATE_FLAVOR,
- (thread_state_t) &proc->state, THREAD_STATE_SIZE);
- if (!err)
- proc->state_changed = 0;
- }
- if (delta > 0)
- {
- while (delta-- > 0 && !err)
- {
- if (proc_is_task (proc))
- err = task_suspend (proc->port);
- else
- err = thread_suspend (proc->port);
- }
- }
- else
- {
- while (delta++ < 0 && !err)
- {
- if (proc_is_task (proc))
- err = task_resume (proc->port);
- else
- err = thread_resume (proc->port);
- }
- }
- if (!err)
- proc->cur_sc = proc->sc;
-
- running = !err && proc->sc == 0;
- proc_debug (proc, "is %s", err ? "dead" : running ? "running" : "suspended");
- if (err)
- proc_debug (proc, "err = %s", safe_strerror (err));
- if (running)
- {
- proc->aborted = 0;
- proc->state_valid = proc->state_changed = 0;
- proc->fetched_regs = 0;
- }
- return running;
- }
- void
- proc_abort (struct proc *proc, int force)
- {
- gdb_assert (proc_is_thread (proc));
- if (!proc->aborted)
- {
- struct inf *inf = proc->inf;
- int running = (proc->cur_sc == 0 && inf->task->cur_sc == 0);
- if (running && force)
- {
- proc->sc = 1;
- inf_update_suspends (proc->inf);
- running = 0;
- warning (_("Stopped %s."), proc_string (proc));
- }
- else if (proc == inf->wait.thread && inf->wait.exc.reply && !force)
-
- running = 1;
- if (!running)
-
- {
- thread_abort (proc->port);
- proc_debug (proc, "aborted");
- proc->aborted = 1;
- }
- else
- proc_debug (proc, "not aborting");
- }
- }
- thread_state_t
- proc_get_state (struct proc *proc, int will_modify)
- {
- int was_aborted = proc->aborted;
- proc_debug (proc, "updating state info%s",
- will_modify ? " (with intention to modify)" : "");
- proc_abort (proc, will_modify);
- if (!was_aborted && proc->aborted)
-
- proc->state_valid = 0;
- if (!proc->state_valid)
- {
- mach_msg_type_number_t state_size = THREAD_STATE_SIZE;
- error_t err =
- thread_get_state (proc->port, THREAD_STATE_FLAVOR,
- (thread_state_t) &proc->state, &state_size);
- proc_debug (proc, "getting thread state");
- proc->state_valid = !err;
- }
- if (proc->state_valid)
- {
- if (will_modify)
- proc->state_changed = 1;
- return (thread_state_t) &proc->state;
- }
- else
- return 0;
- }
- error_t
- proc_get_exception_port (struct proc * proc, mach_port_t * port)
- {
- if (proc_is_task (proc))
- return task_get_exception_port (proc->port, port);
- else
- return thread_get_exception_port (proc->port, port);
- }
- error_t
- proc_set_exception_port (struct proc * proc, mach_port_t port)
- {
- proc_debug (proc, "setting exception port: %lu", port);
- if (proc_is_task (proc))
- return task_set_exception_port (proc->port, port);
- else
- return thread_set_exception_port (proc->port, port);
- }
- static mach_port_t
- _proc_get_exc_port (struct proc *proc)
- {
- mach_port_t exc_port;
- error_t err = proc_get_exception_port (proc, &exc_port);
- if (err)
-
- {
- if (proc->exc_port)
- mach_port_deallocate (mach_task_self (), proc->exc_port);
- proc->exc_port = MACH_PORT_NULL;
- if (proc->saved_exc_port)
- mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
- proc->saved_exc_port = MACH_PORT_NULL;
- }
- return exc_port;
- }
- void
- proc_steal_exc_port (struct proc *proc, mach_port_t exc_port)
- {
- mach_port_t cur_exc_port = _proc_get_exc_port (proc);
- if (cur_exc_port)
- {
- error_t err = 0;
- proc_debug (proc, "inserting exception port: %lu", exc_port);
- if (cur_exc_port != exc_port)
-
- err = proc_set_exception_port (proc, exc_port);
- if (err || cur_exc_port == proc->exc_port)
-
- {
- if (cur_exc_port)
- mach_port_deallocate (mach_task_self (), cur_exc_port);
- }
- else
-
- {
- if (proc->saved_exc_port)
- mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
- proc->saved_exc_port = cur_exc_port;
- }
- proc_debug (proc, "saved exception port: %lu", proc->saved_exc_port);
- if (!err)
- proc->exc_port = exc_port;
- else
- warning (_("Error setting exception port for %s: %s"),
- proc_string (proc), safe_strerror (err));
- }
- }
- void
- proc_restore_exc_port (struct proc *proc)
- {
- mach_port_t cur_exc_port = _proc_get_exc_port (proc);
- if (cur_exc_port)
- {
- error_t err = 0;
- proc_debug (proc, "restoring real exception port");
- if (proc->exc_port == cur_exc_port)
-
- err = proc_set_exception_port (proc, proc->saved_exc_port);
- if (proc->saved_exc_port)
- mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
- proc->saved_exc_port = MACH_PORT_NULL;
- if (!err)
- proc->exc_port = MACH_PORT_NULL;
- else
- warning (_("Error setting exception port for %s: %s"),
- proc_string (proc), safe_strerror (err));
- }
- }
- int
- proc_trace (struct proc *proc, int set)
- {
- thread_state_t state = proc_get_state (proc, 1);
- if (!state)
- return 0;
- proc_debug (proc, "tracing %s", set ? "on" : "off");
- if (set)
- {
- XXX
- if (proc->exc_port == MACH_PORT_NULL)
- proc_steal_exc_port (proc, proc->inf->event_port);
- THREAD_STATE_SET_TRACED (state);
- }
- else
- THREAD_STATE_CLEAR_TRACED (state);
- return 1;
- }
- static int next_thread_id = 1;
- struct proc *
- make_proc (struct inf *inf, mach_port_t port, int tid)
- {
- error_t err;
- mach_port_t prev_port = MACH_PORT_NULL;
- struct proc *proc = xmalloc (sizeof (struct proc));
- proc->port = port;
- proc->tid = tid;
- proc->inf = inf;
- proc->next = 0;
- proc->saved_exc_port = MACH_PORT_NULL;
- proc->exc_port = MACH_PORT_NULL;
- proc->sc = 0;
- proc->cur_sc = 0;
-
- proc->run_sc = inf->default_thread_run_sc;
- proc->pause_sc = inf->default_thread_pause_sc;
- proc->detach_sc = inf->default_thread_detach_sc;
- proc->resume_sc = proc->run_sc;
- proc->aborted = 0;
- proc->dead = 0;
- proc->state_valid = 0;
- proc->state_changed = 0;
- proc_debug (proc, "is new");
-
- err =
- mach_port_request_notification (mach_task_self (), port,
- MACH_NOTIFY_DEAD_NAME, 1,
- inf->event_port,
- MACH_MSG_TYPE_MAKE_SEND_ONCE,
- &prev_port);
- if (err)
- warning (_("Couldn't request notification for port %lu: %s"),
- port, safe_strerror (err));
- else
- {
- proc_debug (proc, "notifications to: %lu", inf->event_port);
- if (prev_port != MACH_PORT_NULL)
- mach_port_deallocate (mach_task_self (), prev_port);
- }
- if (inf->want_exceptions)
- {
- if (proc_is_task (proc))
-
- proc_steal_exc_port (proc, inf->event_port);
- else
-
- proc_steal_exc_port (proc, MACH_PORT_NULL);
- }
- return proc;
- }
- struct proc *
- _proc_free (struct proc *proc)
- {
- struct inf *inf = proc->inf;
- struct proc *next = proc->next;
- proc_debug (proc, "freeing...");
- if (proc == inf->step_thread)
-
- inf_set_step_thread (inf, 0);
- if (proc == inf->wait.thread)
- inf_clear_wait (inf);
- if (proc == inf->signal_thread)
- inf->signal_thread = 0;
- if (proc->port != MACH_PORT_NULL)
- {
- if (proc->exc_port != MACH_PORT_NULL)
-
- proc_restore_exc_port (proc);
- if (proc->cur_sc != 0)
-
- {
- proc->sc = 0;
- proc_update_sc (proc);
- }
- mach_port_deallocate (mach_task_self (), proc->port);
- }
- xfree (proc);
- return next;
- }
- static struct inf *
- make_inf (void)
- {
- struct inf *inf = xmalloc (sizeof (struct inf));
- inf->task = 0;
- inf->threads = 0;
- inf->threads_up_to_date = 0;
- inf->pid = 0;
- inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS;
- inf->wait.thread = 0;
- inf->wait.exc.handler = MACH_PORT_NULL;
- inf->wait.exc.reply = MACH_PORT_NULL;
- inf->step_thread = 0;
- inf->signal_thread = 0;
- inf->event_port = MACH_PORT_NULL;
- inf->running = 0;
- inf->stopped = 0;
- inf->nomsg = 1;
- inf->traced = 0;
- inf->no_wait = 0;
- inf->pending_execs = 0;
- inf->pause_sc = 1;
- inf->detach_sc = 0;
- inf->default_thread_run_sc = 0;
- inf->default_thread_pause_sc = 0;
- inf->default_thread_detach_sc = 0;
- inf->want_signals = 1;
- inf->want_exceptions = 1;
- return inf;
- }
- void
- inf_clear_wait (struct inf *inf)
- {
- inf_debug (inf, "clearing wait");
- inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS;
- inf->wait.thread = 0;
- inf->wait.suppress = 0;
- if (inf->wait.exc.handler != MACH_PORT_NULL)
- {
- mach_port_deallocate (mach_task_self (), inf->wait.exc.handler);
- inf->wait.exc.handler = MACH_PORT_NULL;
- }
- if (inf->wait.exc.reply != MACH_PORT_NULL)
- {
- mach_port_deallocate (mach_task_self (), inf->wait.exc.reply);
- inf->wait.exc.reply = MACH_PORT_NULL;
- }
- }
- void
- inf_cleanup (struct inf *inf)
- {
- inf_debug (inf, "cleanup");
- inf_clear_wait (inf);
- inf_set_pid (inf, -1);
- inf->pid = 0;
- inf->running = 0;
- inf->stopped = 0;
- inf->nomsg = 1;
- inf->traced = 0;
- inf->no_wait = 0;
- inf->pending_execs = 0;
- if (inf->event_port)
- {
- mach_port_destroy (mach_task_self (), inf->event_port);
- inf->event_port = MACH_PORT_NULL;
- }
- }
- void
- inf_startup (struct inf *inf, int pid)
- {
- error_t err;
- inf_debug (inf, "startup: pid = %d", pid);
- inf_cleanup (inf);
-
- err = mach_port_allocate (mach_task_self (),
- MACH_PORT_RIGHT_RECEIVE, &inf->event_port);
- if (err)
- error (_("Error allocating event port: %s"), safe_strerror (err));
-
- mach_port_insert_right (mach_task_self (), inf->event_port,
- inf->event_port, MACH_MSG_TYPE_MAKE_SEND);
- inf_set_pid (inf, pid);
- }
- void
- inf_set_pid (struct inf *inf, pid_t pid)
- {
- task_t task_port;
- struct proc *task = inf->task;
- inf_debug (inf, "setting pid: %d", pid);
- if (pid < 0)
- task_port = MACH_PORT_NULL;
- else
- {
- error_t err = proc_pid2task (proc_server, pid, &task_port);
- if (err)
- error (_("Error getting task for pid %d: %s"),
- pid, safe_strerror (err));
- }
- inf_debug (inf, "setting task: %lu", task_port);
- if (inf->pause_sc)
- task_suspend (task_port);
- if (task && task->port != task_port)
- {
- inf->task = 0;
- inf_validate_procs (inf);
- _proc_free (task);
- }
- if (task_port != MACH_PORT_NULL)
- {
- inf->task = make_proc (inf, task_port, PROC_TID_TASK);
- inf->threads_up_to_date = 0;
- }
- if (inf->task)
- {
- inf->pid = pid;
- if (inf->pause_sc)
-
- inf->task->sc = inf->task->cur_sc = 1;
- }
- else
- inf->pid = -1;
- }
- static void
- inf_validate_procinfo (struct inf *inf)
- {
- char *noise;
- mach_msg_type_number_t noise_len = 0;
- struct procinfo *pi;
- mach_msg_type_number_t pi_len = 0;
- int info_flags = 0;
- error_t err =
- proc_getprocinfo (proc_server, inf->pid, &info_flags,
- (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
- if (!err)
- {
- inf->stopped = !!(pi->state & PI_STOPPED);
- inf->nomsg = !!(pi->state & PI_NOMSG);
- if (inf->nomsg)
- inf->traced = !!(pi->state & PI_TRACED);
- vm_deallocate (mach_task_self (), (vm_address_t) pi,
- pi_len * sizeof (*(procinfo_t) 0));
- if (noise_len > 0)
- vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len);
- }
- }
- static void
- inf_validate_task_sc (struct inf *inf)
- {
- char *noise;
- mach_msg_type_number_t noise_len = 0;
- struct procinfo *pi;
- mach_msg_type_number_t pi_len = 0;
- int info_flags = PI_FETCH_TASKINFO;
- int suspend_count = -1;
- error_t err;
- retry:
- err = proc_getprocinfo (proc_server, inf->pid, &info_flags,
- (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
- if (err)
- {
- inf->task->dead = 1;
- return;
- }
- if (inf->task->cur_sc < pi->taskinfo.suspend_count && suspend_count == -1)
- {
-
- suspend_count = pi->taskinfo.suspend_count;
- goto retry;
- }
- suspend_count = pi->taskinfo.suspend_count;
- vm_deallocate (mach_task_self (), (vm_address_t) pi,
- pi_len * sizeof (*(procinfo_t) 0));
- if (noise_len > 0)
- vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len);
- if (inf->task->cur_sc < suspend_count)
- {
- int abort;
- target_terminal_ours ();
- abort = !query (_("Pid %d has an additional task suspend count of %d;"
- " clear it? "), inf->pid,
- suspend_count - inf->task->cur_sc);
- target_terminal_inferior ();
- if (abort)
- error (_("Additional task suspend count left untouched."));
- inf->task->cur_sc = suspend_count;
- }
- }
- static void
- inf_set_traced (struct inf *inf, int on)
- {
- if (on == inf->traced)
- return;
- if (inf->task && !inf->task->dead)
-
- {
- sigset_t mask = on ? ~(sigset_t) 0 : 0;
- error_t err =
- INF_RESUME_MSGPORT_RPC (inf, msg_set_init_int (msgport, refport,
- INIT_TRACEMASK, mask));
- if (err == EIEIO)
- {
- if (on)
- warning (_("Can't modify tracing state for pid %d: %s"),
- inf->pid, "No signal thread");
- inf->traced = on;
- }
- else if (err)
- warning (_("Can't modify tracing state for pid %d: %s"),
- inf->pid, safe_strerror (err));
- else
- inf->traced = on;
- }
- else
- inf->traced = on;
- }
- int
- inf_update_suspends (struct inf *inf)
- {
- struct proc *task = inf->task;
-
- inf_debug (inf, "updating suspend counts");
- if (task)
- {
- struct proc *thread;
- int task_running = (task->sc == 0), thread_running = 0;
- if (task->sc > task->cur_sc)
-
- task_running = proc_update_sc (task);
- if (inf->pending_execs)
-
- thread_running = 1;
-
- for (thread = inf->threads; thread; thread = thread->next)
- thread_running |= proc_update_sc (thread);
- if (task->sc != task->cur_sc)
-
- task_running = proc_update_sc (task);
- inf_debug (inf, "%srunning...",
- (thread_running && task_running) ? "" : "not ");
- inf->running = thread_running && task_running;
-
- if (inf->running)
- inf->threads_up_to_date = 0;
- return inf->running;
- }
- return 0;
- }
- struct proc *
- inf_tid_to_thread (struct inf *inf, int tid)
- {
- struct proc *thread = inf->threads;
- while (thread)
- if (thread->tid == tid)
- return thread;
- else
- thread = thread->next;
- return 0;
- }
- static struct proc *
- inf_port_to_thread (struct inf *inf, mach_port_t port)
- {
- struct proc *thread = inf->threads;
- while (thread)
- if (thread->port == port)
- return thread;
- else
- thread = thread->next;
- return 0;
- }
- void
- inf_threads (struct inf *inf, inf_threads_ftype *f, void *arg)
- {
- struct proc *thread;
- for (thread = inf->threads; thread; thread = thread->next)
- f (thread, arg);
- }
- void
- inf_validate_procs (struct inf *inf)
- {
- thread_array_t threads;
- mach_msg_type_number_t num_threads, i;
- struct proc *task = inf->task;
-
- inf->threads_up_to_date = inf->threads ? !inf->running : 0;
- if (task)
- {
- error_t err = task_threads (task->port, &threads, &num_threads);
- inf_debug (inf, "fetching threads");
- if (err)
-
- {
- task->dead = 1;
- task = 0;
- }
- }
- if (!task)
- {
- num_threads = 0;
- inf_debug (inf, "no task");
- }
- {
-
- mach_msg_type_number_t search_start = 0;
-
- struct proc *matched[num_threads + 1];
-
- struct proc *last = 0;
-
- struct proc *thread = inf->threads;
- memset (matched, 0, sizeof (matched));
- while (thread)
- {
- mach_msg_type_number_t left;
- for (i = search_start, left = num_threads; left; i++, left--)
- {
- if (i >= num_threads)
- i -= num_threads;
- if (thread->port == threads[i])
-
- {
- matched[i] = thread;
- last = thread;
- thread = thread->next;
- search_start++;
- break;
- }
- }
- if (!left)
- {
- proc_debug (thread, "died!");
- thread->port = MACH_PORT_NULL;
- thread = _proc_free (thread);
- if (last)
- last->next = thread;
- else
- inf->threads = thread;
- }
- }
- for (i = 0; i < num_threads; i++)
- {
- if (matched[i])
-
- mach_port_deallocate (mach_task_self (), threads[i]);
- else
-
- {
- ptid_t ptid;
- thread = make_proc (inf, threads[i], next_thread_id++);
- if (last)
- last->next = thread;
- else
- inf->threads = thread;
- last = thread;
- proc_debug (thread, "new thread: %lu", threads[i]);
- ptid = ptid_build (inf->pid, thread->tid, 0);
-
- if (ptid_equal (inferior_ptid, pid_to_ptid (inf->pid)))
-
- thread_change_ptid (inferior_ptid, ptid);
- else if (inf->pending_execs != 0)
-
- add_thread_silent (ptid);
- else
- add_thread (ptid);
- }
- }
- vm_deallocate (mach_task_self (),
- (vm_address_t) threads, (num_threads * sizeof (thread_t)));
- }
- }
- int
- inf_update_procs (struct inf *inf)
- {
- if (!inf->task)
- return 0;
- if (!inf->threads_up_to_date)
- inf_validate_procs (inf);
- return !!inf->task;
- }
- void
- inf_set_threads_resume_sc (struct inf *inf,
- struct proc *run_thread, int run_others)
- {
- struct proc *thread;
- inf_update_procs (inf);
- for (thread = inf->threads; thread; thread = thread->next)
- if (thread == run_thread)
- thread->resume_sc = 0;
- else if (run_others)
- thread->resume_sc = thread->run_sc;
- else
- thread->resume_sc = thread->pause_sc;
- }
- void
- inf_resume (struct inf *inf)
- {
- struct proc *thread;
- inf_update_procs (inf);
- for (thread = inf->threads; thread; thread = thread->next)
- thread->sc = thread->resume_sc;
- if (inf->task)
- {
- if (!inf->pending_execs)
-
- inf_validate_task_sc (inf);
- inf->task->sc = 0;
- }
- inf_update_suspends (inf);
- }
- void
- inf_suspend (struct inf *inf)
- {
- struct proc *thread;
- inf_update_procs (inf);
- for (thread = inf->threads; thread; thread = thread->next)
- thread->sc = thread->pause_sc;
- if (inf->task)
- inf->task->sc = inf->pause_sc;
- inf_update_suspends (inf);
- }
- void
- inf_set_step_thread (struct inf *inf, struct proc *thread)
- {
- gdb_assert (!thread || proc_is_thread (thread));
- if (thread)
- inf_debug (inf, "setting step thread: %d/%d", inf->pid, thread->tid);
- else
- inf_debug (inf, "clearing step thread");
- if (inf->step_thread != thread)
- {
- if (inf->step_thread && inf->step_thread->port != MACH_PORT_NULL)
- if (!proc_trace (inf->step_thread, 0))
- return;
- if (thread && proc_trace (thread, 1))
- inf->step_thread = thread;
- else
- inf->step_thread = 0;
- }
- }
- int
- inf_set_threads_resume_sc_for_signal_thread (struct inf *inf)
- {
- if (inf->signal_thread)
- {
- inf_set_threads_resume_sc (inf, inf->signal_thread, 0);
- return 1;
- }
- else
- return 0;
- }
- static void
- inf_update_signal_thread (struct inf *inf)
- {
- XXX
- inf->signal_thread = inf->threads ? inf->threads->next : 0;
- }
- void
- inf_detach (struct inf *inf)
- {
- struct proc *task = inf->task;
- inf_debug (inf, "detaching...");
- inf_clear_wait (inf);
- inf_set_step_thread (inf, 0);
- if (task)
- {
- struct proc *thread;
- inf_validate_procinfo (inf);
- inf_set_traced (inf, 0);
- if (inf->stopped)
- {
- if (inf->nomsg)
- inf_continue (inf);
- else
- inf_signal (inf, GDB_SIGNAL_0);
- }
- proc_restore_exc_port (task);
- task->sc = inf->detach_sc;
- for (thread = inf->threads; thread; thread = thread->next)
- {
- proc_restore_exc_port (thread);
- thread->sc = thread->detach_sc;
- }
- inf_update_suspends (inf);
- }
- inf_cleanup (inf);
- }
- void
- inf_attach (struct inf *inf, int pid)
- {
- inf_debug (inf, "attaching: %d", pid);
- if (inf->pid)
- inf_detach (inf);
- inf_startup (inf, pid);
- }
- void
- inf_steal_exc_ports (struct inf *inf)
- {
- struct proc *thread;
- inf_debug (inf, "stealing exception ports");
- inf_set_step_thread (inf, 0);
- proc_steal_exc_port (inf->task, inf->event_port);
- for (thread = inf->threads; thread; thread = thread->next)
- proc_steal_exc_port (thread, MACH_PORT_NULL);
- }
- void
- inf_restore_exc_ports (struct inf *inf)
- {
- struct proc *thread;
- inf_debug (inf, "restoring exception ports");
- inf_set_step_thread (inf, 0);
- proc_restore_exc_port (inf->task);
- for (thread = inf->threads; thread; thread = thread->next)
- proc_restore_exc_port (thread);
- }
- void
- inf_signal (struct inf *inf, enum gdb_signal sig)
- {
- error_t err = 0;
- int host_sig = gdb_signal_to_host (sig);
- #define NAME gdb_signal_to_name (sig)
- if (host_sig >= _NSIG)
-
- {
- struct inf_wait *w = &inf->wait;
- if (w->status.kind == TARGET_WAITKIND_STOPPED
- && w->status.value.sig == sig
- && w->thread && !w->thread->aborted)
-
- {
- struct exc_state *e = &w->exc;
- inf_debug (inf, "passing through exception:"
- " task = %lu, thread = %lu, exc = %d"
- ", code = %d, subcode = %d",
- w->thread->port, inf->task->port,
- e->exception, e->code, e->subcode);
- err =
- exception_raise_request (e->handler,
- e->reply, MACH_MSG_TYPE_MOVE_SEND_ONCE,
- w->thread->port, inf->task->port,
- e->exception, e->code, e->subcode);
- }
- else
- error (_("Can't forward spontaneous exception (%s)."), NAME);
- }
- else
-
- if (inf->stopped)
-
- {
- inf_debug (inf, "sending %s to stopped process", NAME);
- err =
- INF_MSGPORT_RPC (inf,
- msg_sig_post_untraced_request (msgport,
- inf->event_port,
- MACH_MSG_TYPE_MAKE_SEND_ONCE,
- host_sig, 0,
- refport));
- if (!err)
-
- inf->stopped = 0;
- }
- else
-
- {
- inf_debug (inf, "sending %s to unstopped process"
- " (so resuming signal thread)", NAME);
- err =
- INF_RESUME_MSGPORT_RPC (inf,
- msg_sig_post_untraced (msgport, host_sig,
- 0, refport));
- }
- if (err == EIEIO)
-
- warning (_("Can't deliver signal %s: No signal thread."), NAME);
- else if (err)
- warning (_("Delivering signal %s: %s"), NAME, safe_strerror (err));
- #undef NAME
- }
- void
- inf_continue (struct inf *inf)
- {
- process_t proc;
- error_t err = proc_pid2proc (proc_server, inf->pid, &proc);
- if (!err)
- {
- inf_debug (inf, "continuing process");
- err = proc_mark_cont (proc);
- if (!err)
- {
- struct proc *thread;
- for (thread = inf->threads; thread; thread = thread->next)
- thread_resume (thread->port);
- inf->stopped = 0;
- }
- }
- if (err)
- warning (_("Can't continue process: %s"), safe_strerror (err));
- }
- struct inf *gnu_current_inf = 0;
- struct inf *waiting_inf;
- static ptid_t
- gnu_wait (struct target_ops *ops,
- ptid_t ptid, struct target_waitstatus *status, int options)
- {
- struct msg
- {
- mach_msg_header_t hdr;
- mach_msg_type_t type;
- int data[8000];
- } msg;
- error_t err;
- struct proc *thread;
- struct inf *inf = gnu_current_inf;
- extern int exc_server (mach_msg_header_t *, mach_msg_header_t *);
- extern int msg_reply_server (mach_msg_header_t *, mach_msg_header_t *);
- extern int notify_server (mach_msg_header_t *, mach_msg_header_t *);
- extern int process_reply_server (mach_msg_header_t *, mach_msg_header_t *);
- gdb_assert (inf->task);
- if (!inf->threads && !inf->pending_execs)
-
- {
- inf_validate_procs (inf);
- if (!inf->threads && !inf->task->dead)
- error (_("There are no threads; try again later."));
- }
- waiting_inf = inf;
- inf_debug (inf, "waiting for: %s", target_pid_to_str (ptid));
- rewait:
- if (proc_wait_pid != inf->pid && !inf->no_wait)
-
- {
- inf_debug (inf, "requesting wait on pid %d", inf->pid);
- if (proc_wait_pid)
-
- {
- inf_debug (inf, "cancelling previous wait on pid %d", proc_wait_pid);
- interrupt_operation (proc_server, 0);
- }
- err =
- proc_wait_request (proc_server, inf->event_port, inf->pid, WUNTRACED);
- if (err)
- warning (_("wait request failed: %s"), safe_strerror (err));
- else
- {
- inf_debug (inf, "waits pending: %d", proc_waits_pending);
- proc_wait_pid = inf->pid;
-
- proc_waits_pending = 1;
- }
- }
- inf_clear_wait (inf);
-
- inf_debug (inf, "waiting for an event...");
- err = mach_msg (&msg.hdr, MACH_RCV_MSG | MACH_RCV_INTERRUPT,
- 0, sizeof (struct msg), inf->event_port,
- MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
-
- inf_suspend (inf);
- if (!inf->task && inf->pending_execs)
-
- inf_set_pid (inf, inf->pid);
- if (err == EMACH_RCV_INTERRUPTED)
- inf_debug (inf, "interrupted");
- else if (err)
- error (_("Couldn't wait for an event: %s"), safe_strerror (err));
- else
- {
- struct
- {
- mach_msg_header_t hdr;
- mach_msg_type_t err_type;
- kern_return_t err;
- char noise[200];
- }
- reply;
- inf_debug (inf, "event: msgid = %d", msg.hdr.msgh_id);
-
- if (!notify_server (&msg.hdr, &reply.hdr)
- && !exc_server (&msg.hdr, &reply.hdr)
- && !process_reply_server (&msg.hdr, &reply.hdr)
- && !msg_reply_server (&msg.hdr, &reply.hdr))
-
- error (_("Got a strange event, msg id = %d."), msg.hdr.msgh_id);
- if (reply.err)
- error (_("Handling event, msgid = %d: %s"),
- msg.hdr.msgh_id, safe_strerror (reply.err));
- }
- if (inf->pending_execs)
-
- {
- struct inf_wait *w = &inf->wait;
- enum target_waitkind kind = w->status.kind;
- if (kind == TARGET_WAITKIND_SPURIOUS)
-
- {
- w->suppress = 1;
- inf_debug (inf, "pending_execs, ignoring minor event");
- }
- else if (kind == TARGET_WAITKIND_STOPPED
- && w->status.value.sig == GDB_SIGNAL_TRAP)
-
- {
- inf_debug (inf, "one pending exec completed");
- }
- else if (kind == TARGET_WAITKIND_STOPPED)
-
- inf_validate_task_sc (inf);
- }
- if (inf->wait.suppress)
-
- {
- inf_debug (inf, "suppressing return, rewaiting...");
- inf_resume (inf);
- goto rewait;
- }
-
- memcpy (status, &inf->wait.status, sizeof (*status));
- thread = inf->wait.thread;
- if (thread)
- ptid = ptid_build (inf->pid, thread->tid, 0);
- else if (ptid_equal (ptid, minus_one_ptid))
- thread = inf_tid_to_thread (inf, -1);
- else
- thread = inf_tid_to_thread (inf, ptid_get_lwp (ptid));
- if (!thread || thread->port == MACH_PORT_NULL)
- {
-
- if (inf_update_procs (inf) && inf->threads)
- ptid = ptid_build (inf->pid, inf->threads->tid, 0);
- else
- ptid = inferior_ptid;
- }
- if (thread
- && !ptid_equal (ptid, minus_one_ptid)
- && status->kind != TARGET_WAITKIND_SPURIOUS
- && inf->pause_sc == 0 && thread->pause_sc == 0)
-
- {
- thread->sc = 1;
- inf_update_suspends (inf);
- }
- inf_debug (inf, "returning ptid = %s, status = %s (%d)",
- target_pid_to_str (ptid),
- status->kind == TARGET_WAITKIND_EXITED ? "EXITED"
- : status->kind == TARGET_WAITKIND_STOPPED ? "STOPPED"
- : status->kind == TARGET_WAITKIND_SIGNALLED ? "SIGNALLED"
- : status->kind == TARGET_WAITKIND_LOADED ? "LOADED"
- : status->kind == TARGET_WAITKIND_SPURIOUS ? "SPURIOUS"
- : "?",
- status->value.integer);
- return ptid;
- }
- error_t
- S_exception_raise_request (mach_port_t port, mach_port_t reply_port,
- thread_t thread_port, task_t task_port,
- int exception, int code, int subcode)
- {
- struct inf *inf = waiting_inf;
- struct proc *thread = inf_port_to_thread (inf, thread_port);
- inf_debug (waiting_inf,
- "thread = %lu, task = %lu, exc = %d, code = %d, subcode = %d",
- thread_port, task_port, exception, code, subcode);
- if (!thread)
-
- {
- inf_update_procs (inf);
- thread = inf_port_to_thread (inf, thread_port);
- if (!thread)
-
- return 0;
- }
- mach_port_deallocate (mach_task_self (), thread_port);
- mach_port_deallocate (mach_task_self (), task_port);
- if (!thread->aborted)
-
- {
-
- inf->wait.thread = thread;
- inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
- if (exception == EXC_BREAKPOINT)
-
- {
- inf->wait.status.value.sig = GDB_SIGNAL_TRAP;
- mach_port_deallocate (mach_task_self (), reply_port);
- }
- else
-
- {
- if (thread->exc_port == port)
- {
- inf_debug (waiting_inf, "Handler is thread exception port <%lu>",
- thread->saved_exc_port);
- inf->wait.exc.handler = thread->saved_exc_port;
- }
- else
- {
- inf_debug (waiting_inf, "Handler is task exception port <%lu>",
- inf->task->saved_exc_port);
- inf->wait.exc.handler = inf->task->saved_exc_port;
- gdb_assert (inf->task->exc_port == port);
- }
- if (inf->wait.exc.handler != MACH_PORT_NULL)
-
- mach_port_mod_refs (mach_task_self (),
- inf->wait.exc.handler, MACH_PORT_RIGHT_SEND,
- 1);
- inf->wait.exc.exception = exception;
- inf->wait.exc.code = code;
- inf->wait.exc.subcode = subcode;
- inf->wait.exc.reply = reply_port;
-
- inf->wait.status.value.sig =
- gdb_signal_from_host (_NSIG + exception);
- }
- }
- else
-
- {
- inf->wait.suppress = 1;
- mach_port_deallocate (mach_task_self (), reply_port);
- }
- return 0;
- }
- static void
- inf_task_died_status (struct inf *inf)
- {
- warning (_("Pid %d died with unknown exit status, using SIGKILL."),
- inf->pid);
- inf->wait.status.kind = TARGET_WAITKIND_SIGNALLED;
- inf->wait.status.value.sig = GDB_SIGNAL_KILL;
- }
- error_t
- do_mach_notify_dead_name (mach_port_t notify, mach_port_t dead_port)
- {
- struct inf *inf = waiting_inf;
- inf_debug (waiting_inf, "port = %lu", dead_port);
- if (inf->task && inf->task->port == dead_port)
- {
- proc_debug (inf->task, "is dead");
- inf->task->port = MACH_PORT_NULL;
- if (proc_wait_pid == inf->pid)
-
- inf->wait.suppress = 1;
- else
-
- inf_task_died_status (inf);
- }
- else
- {
- struct proc *thread = inf_port_to_thread (inf, dead_port);
- if (thread)
- {
- proc_debug (thread, "is dead");
- thread->port = MACH_PORT_NULL;
- }
- if (inf->task->dead)
-
- inf->wait.suppress = 1;
- }
- mach_port_deallocate (mach_task_self (), dead_port);
- inf->threads_up_to_date = 0;
- return 0;
- }
- #define ILL_RPC(fun, ...) \
- extern kern_return_t fun (__VA_ARGS__); \
- kern_return_t fun (__VA_ARGS__) \
- { \
- warning (_("illegal rpc: %s"), #fun); \
- return 0; \
- }
- ILL_RPC (do_mach_notify_no_senders,
- mach_port_t notify, mach_port_mscount_t count)
- ILL_RPC (do_mach_notify_port_deleted,
- mach_port_t notify, mach_port_t name)
- ILL_RPC (do_mach_notify_msg_accepted,
- mach_port_t notify, mach_port_t name)
- ILL_RPC (do_mach_notify_port_destroyed,
- mach_port_t notify, mach_port_t name)
- ILL_RPC (do_mach_notify_send_once,
- mach_port_t notify)
- error_t
- S_proc_wait_reply (mach_port_t reply, error_t err,
- int status, int sigcode, rusage_t rusage, pid_t pid)
- {
- struct inf *inf = waiting_inf;
- inf_debug (inf, "err = %s, pid = %d, status = 0x%x, sigcode = %d",
- err ? safe_strerror (err) : "0", pid, status, sigcode);
- if (err && proc_wait_pid && (!inf->task || !inf->task->port))
-
- inf_task_died_status (inf);
- if (--proc_waits_pending == 0)
-
- proc_wait_pid = 0;
- inf_debug (inf, "waits pending now: %d", proc_waits_pending);
- if (err)
- {
- if (err != EINTR)
- {
- warning (_("Can't wait for pid %d: %s"),
- inf->pid, safe_strerror (err));
- inf->no_wait = 1;
-
- inf_set_traced (inf, 0);
- }
- }
- else if (pid == inf->pid)
- {
- store_waitstatus (&inf->wait.status, status);
- if (inf->wait.status.kind == TARGET_WAITKIND_STOPPED)
-
- {
- inf_debug (inf, "process has stopped itself");
- inf->stopped = 1;
- }
- }
- else
- inf->wait.suppress = 1;
- return 0;
- }
- ILL_RPC (S_proc_setmsgport_reply,
- mach_port_t reply_port, kern_return_t return_code,
- mach_port_t oldmsgport)
- ILL_RPC (S_proc_getmsgport_reply,
- mach_port_t reply_port, kern_return_t return_code,
- mach_port_t msgports)
- ILL_RPC (S_proc_pid2task_reply,
- mach_port_t reply_port, kern_return_t return_code, mach_port_t task)
- ILL_RPC (S_proc_task2pid_reply,
- mach_port_t reply_port, kern_return_t return_code, pid_t pid)
- ILL_RPC (S_proc_task2proc_reply,
- mach_port_t reply_port, kern_return_t return_code, mach_port_t proc)
- ILL_RPC (S_proc_proc2task_reply,
- mach_port_t reply_port, kern_return_t return_code, mach_port_t task)
- ILL_RPC (S_proc_pid2proc_reply,
- mach_port_t reply_port, kern_return_t return_code, mach_port_t proc)
- ILL_RPC (S_proc_getprocinfo_reply,
- mach_port_t reply_port, kern_return_t return_code,
- int flags, procinfo_t procinfo, mach_msg_type_number_t procinfoCnt,
- data_t threadwaits, mach_msg_type_number_t threadwaitsCnt)
- ILL_RPC (S_proc_getprocargs_reply,
- mach_port_t reply_port, kern_return_t return_code,
- data_t procargs, mach_msg_type_number_t procargsCnt)
- ILL_RPC (S_proc_getprocenv_reply,
- mach_port_t reply_port, kern_return_t return_code,
- data_t procenv, mach_msg_type_number_t procenvCnt)
- ILL_RPC (S_proc_getloginid_reply,
- mach_port_t reply_port, kern_return_t return_code, pid_t login_id)
- ILL_RPC (S_proc_getloginpids_reply,
- mach_port_t reply_port, kern_return_t return_code,
- pidarray_t pids, mach_msg_type_number_t pidsCnt)
- ILL_RPC (S_proc_getlogin_reply,
- mach_port_t reply_port, kern_return_t return_code, string_t logname)
- ILL_RPC (S_proc_getsid_reply,
- mach_port_t reply_port, kern_return_t return_code, pid_t sid)
- ILL_RPC (S_proc_getsessionpgids_reply,
- mach_port_t reply_port, kern_return_t return_code,
- pidarray_t pgidset, mach_msg_type_number_t pgidsetCnt)
- ILL_RPC (S_proc_getsessionpids_reply,
- mach_port_t reply_port, kern_return_t return_code,
- pidarray_t pidset, mach_msg_type_number_t pidsetCnt)
- ILL_RPC (S_proc_getsidport_reply,
- mach_port_t reply_port, kern_return_t return_code,
- mach_port_t sessport)
- ILL_RPC (S_proc_getpgrp_reply,
- mach_port_t reply_port, kern_return_t return_code, pid_t pgrp)
- ILL_RPC (S_proc_getpgrppids_reply,
- mach_port_t reply_port, kern_return_t return_code,
- pidarray_t pidset, mach_msg_type_number_t pidsetCnt)
- ILL_RPC (S_proc_get_tty_reply,
- mach_port_t reply_port, kern_return_t return_code, mach_port_t tty)
- ILL_RPC (S_proc_getnports_reply,
- mach_port_t reply_port, kern_return_t return_code,
- mach_msg_type_number_t nports)
- ILL_RPC (S_proc_is_important_reply,
- mach_port_t reply_port, kern_return_t return_code,
- boolean_t essential)
- ILL_RPC (S_proc_get_code_reply,
- mach_port_t reply_port, kern_return_t return_code,
- vm_address_t start_code, vm_address_t end_code)
- error_t
- S_msg_sig_post_untraced_reply (mach_port_t reply, error_t err)
- {
- struct inf *inf = waiting_inf;
- if (err == EBUSY)
-
- {
- inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
- inf->wait.status.value.sig = GDB_SIGNAL_0;
- }
- else if (err)
- warning (_("Signal delivery failed: %s"), safe_strerror (err));
- if (err)
-
- inf->stopped = 1;
- else
- inf->wait.suppress = 1;
- return 0;
- }
- ILL_RPC (S_msg_sig_post_reply,
- mach_port_t reply, error_t err)
- static mach_port_msgcount_t
- port_msgs_queued (mach_port_t port)
- {
- struct mach_port_status status;
- error_t err =
- mach_port_get_receive_status (mach_task_self (), port, &status);
- if (err)
- return 0;
- else
- return status.mps_msgcount;
- }
- static void
- gnu_resume (struct target_ops *ops,
- ptid_t ptid, int step, enum gdb_signal sig)
- {
- struct proc *step_thread = 0;
- int resume_all;
- struct inf *inf = gnu_current_inf;
- inf_debug (inf, "ptid = %s, step = %d, sig = %d",
- target_pid_to_str (ptid), step, sig);
- inf_validate_procinfo (inf);
- if (sig != GDB_SIGNAL_0 || inf->stopped)
- {
- if (sig == GDB_SIGNAL_0 && inf->nomsg)
- inf_continue (inf);
- else
- inf_signal (inf, sig);
- }
- else if (inf->wait.exc.reply != MACH_PORT_NULL)
-
- {
- proc_abort (inf->wait.thread, 1);
- warning (_("Aborting %s with unforwarded exception %s."),
- proc_string (inf->wait.thread),
- gdb_signal_to_name (inf->wait.status.value.sig));
- }
- if (port_msgs_queued (inf->event_port))
-
- return;
- inf_update_procs (inf);
-
- resume_all = ptid_equal (ptid, minus_one_ptid);
- if (resume_all)
-
- {
- inf_debug (inf, "running all threads; tid = %d",
- ptid_get_pid (inferior_ptid));
- ptid = inferior_ptid;
- inf_set_threads_resume_sc (inf, 0, 1);
- }
- else
-
- {
- struct proc *thread = inf_tid_to_thread (inf, ptid_get_lwp (ptid));
- if (!thread)
- error (_("Can't run single thread id %s: no such thread!"),
- target_pid_to_str (ptid));
- inf_debug (inf, "running one thread: %s", target_pid_to_str (ptid));
- inf_set_threads_resume_sc (inf, thread, 0);
- }
- if (step)
- {
- step_thread = inf_tid_to_thread (inf, ptid_get_lwp (ptid));
- if (!step_thread)
- warning (_("Can't step thread id %s: no such thread."),
- target_pid_to_str (ptid));
- else
- inf_debug (inf, "stepping thread: %s", target_pid_to_str (ptid));
- }
- if (step_thread != inf->step_thread)
- inf_set_step_thread (inf, step_thread);
- inf_debug (inf, "here we go...");
- inf_resume (inf);
- }
- static void
- gnu_kill_inferior (struct target_ops *ops)
- {
- struct proc *task = gnu_current_inf->task;
- if (task)
- {
- proc_debug (task, "terminating...");
- task_terminate (task->port);
- inf_set_pid (gnu_current_inf, -1);
- }
- target_mourn_inferior ();
- }
- static void
- gnu_mourn_inferior (struct target_ops *ops)
- {
- inf_debug (gnu_current_inf, "rip");
- inf_detach (gnu_current_inf);
- inf_child_mourn_inferior (ops);
- }
- static int
- inf_pick_first_thread (void)
- {
- if (gnu_current_inf->task && gnu_current_inf->threads)
-
- return gnu_current_inf->threads->tid;
- else
-
- return next_thread_id;
- }
- static struct inf *
- cur_inf (void)
- {
- if (!gnu_current_inf)
- gnu_current_inf = make_inf ();
- return gnu_current_inf;
- }
- static void
- gnu_create_inferior (struct target_ops *ops,
- char *exec_file, char *allargs, char **env,
- int from_tty)
- {
- struct inf *inf = cur_inf ();
- int pid;
- void trace_me (void)
- {
-
- inf_debug (inf, "tracing self");
- if (ptrace (PTRACE_TRACEME) != 0)
- error (_("ptrace (PTRACE_TRACEME) failed!"));
- }
- inf_debug (inf, "creating inferior");
- pid = fork_inferior (exec_file, allargs, env, trace_me,
- NULL, NULL, NULL, NULL);
-
- inf_debug (inf, "attaching to child: %d", pid);
- inf_attach (inf, pid);
- push_target (ops);
- inf->pending_execs = 1;
- inf->nomsg = 1;
- inf->traced = 1;
-
- inf_resume (inf);
-
- thread_change_ptid (inferior_ptid,
- ptid_build (inf->pid, inf_pick_first_thread (), 0));
- startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
- inf->pending_execs = 0;
- inf_validate_procinfo (inf);
- inf_update_signal_thread (inf);
- inf_set_traced (inf, inf->want_signals);
-
- if (inf->want_exceptions)
- inf_steal_exc_ports (inf);
- else
- inf_restore_exc_ports (inf);
- }
- static void
- gnu_attach (struct target_ops *ops, const char *args, int from_tty)
- {
- int pid;
- char *exec_file;
- struct inf *inf = cur_inf ();
- struct inferior *inferior;
- pid = parse_pid_to_attach (args);
- if (pid == getpid ())
- error (_("I refuse to debug myself!"));
- if (from_tty)
- {
- exec_file = (char *) get_exec_file (0);
- if (exec_file)
- printf_unfiltered ("Attaching to program `%s', pid %d\n",
- exec_file, pid);
- else
- printf_unfiltered ("Attaching to pid %d\n", pid);
- gdb_flush (gdb_stdout);
- }
- inf_debug (inf, "attaching to pid: %d", pid);
- inf_attach (inf, pid);
- push_target (ops);
- inferior = current_inferior ();
- inferior_appeared (inferior, pid);
- inferior->attach_flag = 1;
- inf_update_procs (inf);
- inferior_ptid = ptid_build (pid, inf_pick_first_thread (), 0);
-
- target_terminal_init ();
-
- inf_validate_procinfo (inf);
- inf_update_signal_thread (inf);
- inf_set_traced (inf, inf->want_signals);
- #if 0
- #endif
- }
- static void
- gnu_detach (struct target_ops *ops, const char *args, int from_tty)
- {
- int pid;
- if (from_tty)
- {
- char *exec_file = get_exec_file (0);
- if (exec_file)
- printf_unfiltered ("Detaching from program `%s' pid %d\n",
- exec_file, gnu_current_inf->pid);
- else
- printf_unfiltered ("Detaching from pid %d\n", gnu_current_inf->pid);
- gdb_flush (gdb_stdout);
- }
- pid = gnu_current_inf->pid;
- inf_detach (gnu_current_inf);
- inferior_ptid = null_ptid;
- detach_inferior (pid);
- inf_child_maybe_unpush_target (ops);
- }
- static void
- gnu_terminal_init (struct target_ops *self)
- {
- gdb_assert (gnu_current_inf);
- child_terminal_init_with_pgrp (gnu_current_inf->pid);
- }
- static void
- gnu_stop (struct target_ops *self, ptid_t ptid)
- {
- error (_("to_stop target function not implemented"));
- }
- static int
- gnu_thread_alive (struct target_ops *ops, ptid_t ptid)
- {
- inf_update_procs (gnu_current_inf);
- return !!inf_tid_to_thread (gnu_current_inf,
- ptid_get_lwp (ptid));
- }
- static int
- gnu_read_inferior (task_t task, CORE_ADDR addr, gdb_byte *myaddr, int length)
- {
- error_t err;
- vm_address_t low_address = (vm_address_t) trunc_page (addr);
- vm_size_t aligned_length =
- (vm_size_t) round_page (addr + length) - low_address;
- pointer_t copied;
- mach_msg_type_number_t copy_count;
-
- err = vm_read (task, low_address, aligned_length, &copied, ©_count);
- if (err)
- return 0;
- err = hurd_safe_copyin (myaddr, (void *) (addr - low_address + copied),
- length);
- if (err)
- {
- warning (_("Read from inferior faulted: %s"), safe_strerror (err));
- length = 0;
- }
- err = vm_deallocate (mach_task_self (), copied, copy_count);
- if (err)
- warning (_("gnu_read_inferior vm_deallocate failed: %s"),
- safe_strerror (err));
- return length;
- }
- #define CHK_GOTO_OUT(str,ret) \
- do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0)
- struct vm_region_list
- {
- struct vm_region_list *next;
- vm_prot_t protection;
- vm_address_t start;
- vm_size_t length;
- };
- struct obstack region_obstack;
- static int
- gnu_write_inferior (task_t task, CORE_ADDR addr,
- const gdb_byte *myaddr, int length)
- {
- error_t err = 0;
- vm_address_t low_address = (vm_address_t) trunc_page (addr);
- vm_size_t aligned_length =
- (vm_size_t) round_page (addr + length) - low_address;
- pointer_t copied;
- mach_msg_type_number_t copy_count;
- int deallocate = 0;
- char *errstr = "Bug in gnu_write_inferior";
- struct vm_region_list *region_element;
- struct vm_region_list *region_head = (struct vm_region_list *) NULL;
-
- err = vm_read (task,
- low_address,
- aligned_length,
- &copied,
- ©_count);
- CHK_GOTO_OUT ("gnu_write_inferior vm_read failed", err);
- deallocate++;
- err = hurd_safe_copyout ((void *) (addr - low_address + copied),
- myaddr, length);
- CHK_GOTO_OUT ("Write to inferior faulted", err);
- obstack_init (®ion_obstack);
-
- {
- vm_size_t remaining_length = aligned_length;
- vm_address_t region_address = low_address;
- struct vm_region_list *scan;
- while (region_address < low_address + aligned_length)
- {
- vm_prot_t protection;
- vm_prot_t max_protection;
- vm_inherit_t inheritance;
- boolean_t shared;
- mach_port_t object_name;
- vm_offset_t offset;
- vm_size_t region_length = remaining_length;
- vm_address_t old_address = region_address;
- err = vm_region (task,
- ®ion_address,
- ®ion_length,
- &protection,
- &max_protection,
- &inheritance,
- &shared,
- &object_name,
- &offset);
- CHK_GOTO_OUT ("vm_region failed", err);
-
- if (old_address != region_address)
- {
- warning (_("No memory at 0x%lx. Nothing written"),
- old_address);
- err = KERN_SUCCESS;
- length = 0;
- goto out;
- }
- if (!(max_protection & VM_PROT_WRITE))
- {
- warning (_("Memory at address 0x%lx is unwritable. "
- "Nothing written"),
- old_address);
- err = KERN_SUCCESS;
- length = 0;
- goto out;
- }
-
- region_element =
- (struct vm_region_list *)
- obstack_alloc (®ion_obstack, sizeof (struct vm_region_list));
- region_element->protection = protection;
- region_element->start = region_address;
- region_element->length = region_length;
-
- region_element->next = region_head;
- region_head = region_element;
- region_address += region_length;
- remaining_length = remaining_length - region_length;
- }
-
-
- for (scan = region_head; scan; scan = scan->next)
- {
- if (!(scan->protection & VM_PROT_WRITE))
- {
- err = vm_protect (task,
- scan->start,
- scan->length,
- FALSE,
- scan->protection | VM_PROT_WRITE);
- CHK_GOTO_OUT ("vm_protect: enable write failed", err);
- }
- }
- err = vm_write (task,
- low_address,
- copied,
- aligned_length);
- CHK_GOTO_OUT ("vm_write failed", err);
-
- for (scan = region_head; scan; scan = scan->next)
- {
- if (!(scan->protection & VM_PROT_WRITE))
- {
- err = vm_protect (task,
- scan->start,
- scan->length,
- FALSE,
- scan->protection);
- CHK_GOTO_OUT ("vm_protect: enable write failed", err);
- }
- }
- }
- out:
- if (deallocate)
- {
- obstack_free (®ion_obstack, 0);
- (void) vm_deallocate (mach_task_self (),
- copied,
- copy_count);
- }
- if (err != KERN_SUCCESS)
- {
- warning (_("%s: %s"), errstr, mach_error_string (err));
- return 0;
- }
- return length;
- }
- static enum target_xfer_status
- gnu_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
- CORE_ADDR memaddr, ULONGEST len, ULONGEST *xfered_len)
- {
- task_t task = (gnu_current_inf
- ? (gnu_current_inf->task
- ? gnu_current_inf->task->port : 0)
- : 0);
- int res;
- if (task == MACH_PORT_NULL)
- return TARGET_XFER_E_IO;
- if (writebuf != NULL)
- {
- inf_debug (gnu_current_inf, "writing %s[%s] <-- %s",
- paddress (target_gdbarch (), memaddr), pulongest (len),
- host_address_to_string (writebuf));
- res = gnu_write_inferior (task, memaddr, writebuf, len);
- }
- else
- {
- inf_debug (gnu_current_inf, "reading %s[%s] --> %s",
- paddress (target_gdbarch (), memaddr), pulongest (len),
- host_address_to_string (readbuf));
- res = gnu_read_inferior (task, memaddr, readbuf, len);
- }
- gdb_assert (res >= 0);
- if (res == 0)
- return TARGET_XFER_E_IO;
- else
- {
- *xfered_len = (ULONGEST) res;
- return TARGET_XFER_OK;
- }
- }
- static enum target_xfer_status
- gnu_xfer_partial (struct target_ops *ops, enum target_object object,
- const char *annex, gdb_byte *readbuf,
- const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
- ULONGEST *xfered_len)
- {
- switch (object)
- {
- case TARGET_OBJECT_MEMORY:
- return gnu_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
- default:
- return TARGET_XFER_E_IO;
- }
- }
- static int
- gnu_find_memory_regions (struct target_ops *self,
- find_memory_region_ftype func, void *data)
- {
- error_t err;
- task_t task;
- vm_address_t region_address, last_region_address, last_region_end;
- vm_prot_t last_protection;
- if (gnu_current_inf == 0 || gnu_current_inf->task == 0)
- return 0;
- task = gnu_current_inf->task->port;
- if (task == MACH_PORT_NULL)
- return 0;
- region_address = last_region_address = last_region_end = VM_MIN_ADDRESS;
- last_protection = VM_PROT_NONE;
- while (region_address < VM_MAX_ADDRESS)
- {
- vm_prot_t protection;
- vm_prot_t max_protection;
- vm_inherit_t inheritance;
- boolean_t shared;
- mach_port_t object_name;
- vm_offset_t offset;
- vm_size_t region_length = VM_MAX_ADDRESS - region_address;
- vm_address_t old_address = region_address;
- err = vm_region (task,
- ®ion_address,
- ®ion_length,
- &protection,
- &max_protection,
- &inheritance,
- &shared,
- &object_name,
- &offset);
- if (err == KERN_NO_SPACE)
- break;
- if (err != KERN_SUCCESS)
- {
- warning (_("vm_region failed: %s"), mach_error_string (err));
- return -1;
- }
- if (protection == last_protection && region_address == last_region_end)
-
- last_region_end = region_address += region_length;
- else
- {
-
- if (last_protection != VM_PROT_NONE)
- (*func) (last_region_address,
- last_region_end - last_region_address,
- last_protection & VM_PROT_READ,
- last_protection & VM_PROT_WRITE,
- last_protection & VM_PROT_EXECUTE,
- 1,
- data);
- last_region_address = region_address;
- last_region_end = region_address += region_length;
- last_protection = protection;
- }
- }
-
- if (last_region_end > last_region_address && last_protection != VM_PROT_NONE)
- (*func) (last_region_address, last_region_end - last_region_address,
- last_protection & VM_PROT_READ,
- last_protection & VM_PROT_WRITE,
- last_protection & VM_PROT_EXECUTE,
- 1,
- data);
- return 0;
- }
- char *
- proc_string (struct proc *proc)
- {
- static char tid_str[80];
- if (proc_is_task (proc))
- xsnprintf (tid_str, sizeof (tid_str), "process %d", proc->inf->pid);
- else
- xsnprintf (tid_str, sizeof (tid_str), "Thread %d.%d",
- proc->inf->pid, proc->tid);
- return tid_str;
- }
- static char *
- gnu_pid_to_str (struct target_ops *ops, ptid_t ptid)
- {
- struct inf *inf = gnu_current_inf;
- int tid = ptid_get_lwp (ptid);
- struct proc *thread = inf_tid_to_thread (inf, tid);
- if (thread)
- return proc_string (thread);
- else
- {
- static char tid_str[80];
- xsnprintf (tid_str, sizeof (tid_str), "bogus thread id %d", tid);
- return tid_str;
- }
- }
- struct target_ops *
- gnu_target (void)
- {
- struct target_ops *t = inf_child_target ();
- t->to_attach = gnu_attach;
- t->to_attach_no_wait = 1;
- t->to_detach = gnu_detach;
- t->to_resume = gnu_resume;
- t->to_wait = gnu_wait;
- t->to_xfer_partial = gnu_xfer_partial;
- t->to_find_memory_regions = gnu_find_memory_regions;
- t->to_terminal_init = gnu_terminal_init;
- t->to_kill = gnu_kill_inferior;
- t->to_create_inferior = gnu_create_inferior;
- t->to_mourn_inferior = gnu_mourn_inferior;
- t->to_thread_alive = gnu_thread_alive;
- t->to_pid_to_str = gnu_pid_to_str;
- t->to_stop = gnu_stop;
- return t;
- }
- static struct cmd_list_element *set_task_cmd_list = 0;
- static struct cmd_list_element *show_task_cmd_list = 0;
- extern struct cmd_list_element *thread_cmd_list;
- struct cmd_list_element *set_thread_cmd_list = NULL;
- struct cmd_list_element *show_thread_cmd_list = NULL;
- struct cmd_list_element *set_thread_default_cmd_list = NULL;
- struct cmd_list_element *show_thread_default_cmd_list = NULL;
- static void
- set_thread_cmd (char *args, int from_tty)
- {
- printf_unfiltered ("\"set thread\" must be followed by the "
- "name of a thread property, or \"default\".\n");
- }
- static void
- show_thread_cmd (char *args, int from_tty)
- {
- printf_unfiltered ("\"show thread\" must be followed by the "
- "name of a thread property, or \"default\".\n");
- }
- static void
- set_thread_default_cmd (char *args, int from_tty)
- {
- printf_unfiltered ("\"set thread default\" must be followed "
- "by the name of a thread property.\n");
- }
- static void
- show_thread_default_cmd (char *args, int from_tty)
- {
- printf_unfiltered ("\"show thread default\" must be followed "
- "by the name of a thread property.\n");
- }
- static int
- parse_int_arg (char *args, char *cmd_prefix)
- {
- if (args)
- {
- char *arg_end;
- int val = strtoul (args, &arg_end, 10);
- if (*args && *arg_end == '\0')
- return val;
- }
- error (_("Illegal argument for \"%s\" command, should be an integer."),
- cmd_prefix);
- }
- static int
- _parse_bool_arg (char *args, char *t_val, char *f_val, char *cmd_prefix)
- {
- if (!args || strcmp (args, t_val) == 0)
- return 1;
- else if (strcmp (args, f_val) == 0)
- return 0;
- else
- error (_("Illegal argument for \"%s\" command, "
- "should be \"%s\" or \"%s\"."),
- cmd_prefix, t_val, f_val);
- }
- #define parse_bool_arg(args, cmd_prefix) \
- _parse_bool_arg (args, "on", "off", cmd_prefix)
- static void
- check_empty (char *args, char *cmd_prefix)
- {
- if (args)
- error (_("Garbage after \"%s\" command: `%s'"), cmd_prefix, args);
- }
- static struct proc *
- cur_thread (void)
- {
- struct inf *inf = cur_inf ();
- struct proc *thread = inf_tid_to_thread (inf,
- ptid_get_lwp (inferior_ptid));
- if (!thread)
- error (_("No current thread."));
- return thread;
- }
- static struct inf *
- active_inf (void)
- {
- struct inf *inf = cur_inf ();
- if (!inf->task)
- error (_("No current process."));
- return inf;
- }
- static void
- set_task_pause_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- int old_sc = inf->pause_sc;
- inf->pause_sc = parse_bool_arg (args, "set task pause");
- if (old_sc == 0 && inf->pause_sc != 0)
-
- inf_suspend (inf);
- }
- static void
- show_task_pause_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- check_empty (args, "show task pause");
- printf_unfiltered ("The inferior task %s suspended while gdb has control.\n",
- inf->task
- ? (inf->pause_sc == 0 ? "isn't" : "is")
- : (inf->pause_sc == 0 ? "won't be" : "will be"));
- }
- static void
- set_task_detach_sc_cmd (char *args, int from_tty)
- {
- cur_inf ()->detach_sc = parse_int_arg (args,
- "set task detach-suspend-count");
- }
- static void
- show_task_detach_sc_cmd (char *args, int from_tty)
- {
- check_empty (args, "show task detach-suspend-count");
- printf_unfiltered ("The inferior task will be left with a "
- "suspend count of %d when detaching.\n",
- cur_inf ()->detach_sc);
- }
- static void
- set_thread_default_pause_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- inf->default_thread_pause_sc =
- parse_bool_arg (args, "set thread default pause") ? 0 : 1;
- }
- static void
- show_thread_default_pause_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- int sc = inf->default_thread_pause_sc;
- check_empty (args, "show thread default pause");
- printf_unfiltered ("New threads %s suspended while gdb has control%s.\n",
- sc ? "are" : "aren't",
- !sc && inf->pause_sc ? " (but the task is)" : "");
- }
- static void
- set_thread_default_run_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- inf->default_thread_run_sc =
- parse_bool_arg (args, "set thread default run") ? 0 : 1;
- }
- static void
- show_thread_default_run_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- check_empty (args, "show thread default run");
- printf_unfiltered ("New threads %s allowed to run.\n",
- inf->default_thread_run_sc == 0 ? "are" : "aren't");
- }
- static void
- set_thread_default_detach_sc_cmd (char *args, int from_tty)
- {
- cur_inf ()->default_thread_detach_sc =
- parse_int_arg (args, "set thread default detach-suspend-count");
- }
- static void
- show_thread_default_detach_sc_cmd (char *args, int from_tty)
- {
- check_empty (args, "show thread default detach-suspend-count");
- printf_unfiltered ("New threads will get a detach-suspend-count of %d.\n",
- cur_inf ()->default_thread_detach_sc);
- }
- static void
- steal_exc_port (struct proc *proc, mach_port_t name)
- {
- error_t err;
- mach_port_t port;
- mach_msg_type_name_t port_type;
- if (!proc || !proc->inf->task)
- error (_("No inferior task."));
- err = mach_port_extract_right (proc->inf->task->port,
- name, MACH_MSG_TYPE_COPY_SEND,
- &port, &port_type);
- if (err)
- error (_("Couldn't extract send right %lu from inferior: %s"),
- name, safe_strerror (err));
- if (proc->saved_exc_port)
-
- mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
- proc->saved_exc_port = port;
- if (!proc->exc_port)
-
- {
- proc->exc_port = proc->inf->event_port;
- err = proc_set_exception_port (proc, proc->exc_port);
- error (_("Can't set exception port for %s: %s"),
- proc_string (proc), safe_strerror (err));
- }
- }
- static void
- set_task_exc_port_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- if (!args)
- error (_("No argument to \"set task exception-port\" command."));
- steal_exc_port (inf->task, parse_and_eval_address (args));
- }
- static void
- set_stopped_cmd (char *args, int from_tty)
- {
- cur_inf ()->stopped = _parse_bool_arg (args, "yes", "no", "set stopped");
- }
- static void
- show_stopped_cmd (char *args, int from_tty)
- {
- struct inf *inf = active_inf ();
- check_empty (args, "show stopped");
- printf_unfiltered ("The inferior process %s stopped.\n",
- inf->stopped ? "is" : "isn't");
- }
- static void
- set_sig_thread_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- if (!args || (!isdigit (*args) && strcmp (args, "none") != 0))
- error (_("Illegal argument to \"set signal-thread\" command.\n"
- "Should be an integer thread ID, or `none'."));
- if (strcmp (args, "none") == 0)
- inf->signal_thread = 0;
- else
- {
- ptid_t ptid = thread_id_to_pid (atoi (args));
- if (ptid_equal (ptid, minus_one_ptid))
- error (_("Thread ID %s not known. "
- "Use the \"info threads\" command to\n"
- "see the IDs of currently known threads."), args);
- inf->signal_thread = inf_tid_to_thread (inf, ptid_get_lwp (ptid));
- }
- }
- static void
- show_sig_thread_cmd (char *args, int from_tty)
- {
- struct inf *inf = active_inf ();
- check_empty (args, "show signal-thread");
- if (inf->signal_thread)
- printf_unfiltered ("The signal thread is %s.\n",
- proc_string (inf->signal_thread));
- else
- printf_unfiltered ("There is no signal thread.\n");
- }
- static void
- set_signals_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- inf->want_signals = parse_bool_arg (args, "set signals");
- if (inf->task && inf->want_signals != inf->traced)
-
- inf_set_traced (inf, inf->want_signals);
- }
- static void
- show_signals_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- check_empty (args, "show signals");
- printf_unfiltered ("The inferior process's signals %s intercepted.\n",
- inf->task
- ? (inf->traced ? "are" : "aren't")
- : (inf->want_signals ? "will be" : "won't be"));
- }
- static void
- set_exceptions_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- int val = parse_bool_arg (args, "set exceptions");
-
- XXX ;
- inf->want_exceptions = val;
- }
- static void
- show_exceptions_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- check_empty (args, "show exceptions");
- printf_unfiltered ("Exceptions in the inferior %s trapped.\n",
- inf->task
- ? (inf->want_exceptions ? "are" : "aren't")
- : (inf->want_exceptions ? "will be" : "won't be"));
- }
- static void
- set_task_cmd (char *args, int from_tty)
- {
- printf_unfiltered ("\"set task\" must be followed by the name"
- " of a task property.\n");
- }
- static void
- show_task_cmd (char *args, int from_tty)
- {
- struct inf *inf = cur_inf ();
- check_empty (args, "show task");
- show_signals_cmd (0, from_tty);
- show_exceptions_cmd (0, from_tty);
- show_task_pause_cmd (0, from_tty);
- if (inf->pause_sc == 0)
- show_thread_default_pause_cmd (0, from_tty);
- show_thread_default_run_cmd (0, from_tty);
- if (inf->task)
- {
- show_stopped_cmd (0, from_tty);
- show_sig_thread_cmd (0, from_tty);
- }
- if (inf->detach_sc != 0)
- show_task_detach_sc_cmd (0, from_tty);
- if (inf->default_thread_detach_sc != 0)
- show_thread_default_detach_sc_cmd (0, from_tty);
- }
- static void
- set_noninvasive_cmd (char *args, int from_tty)
- {
-
- char *inv_args = parse_bool_arg (args, "set noninvasive") ? "off" : "on";
- set_task_pause_cmd (inv_args, from_tty);
- set_signals_cmd (inv_args, from_tty);
- set_exceptions_cmd (inv_args, from_tty);
- }
- static void
- info_port_rights (const char *args, mach_port_type_t only)
- {
- struct inf *inf = active_inf ();
- struct value *vmark = value_mark ();
- if (args)
-
- {
- while (*args)
- {
- struct value *val = parse_to_comma_and_eval (&args);
- long right = value_as_long (val);
- error_t err =
- print_port_info (right, 0, inf->task->port, PORTINFO_DETAILS,
- stdout);
- if (err)
- error (_("%ld: %s."), right, safe_strerror (err));
- }
- }
- else
-
- {
- error_t err =
- print_task_ports_info (inf->task->port, only, PORTINFO_DETAILS,
- stdout);
- if (err)
- error (_("%s."), safe_strerror (err));
- }
- value_free_to_mark (vmark);
- }
- static void
- info_send_rights_cmd (char *args, int from_tty)
- {
- info_port_rights (args, MACH_PORT_TYPE_SEND);
- }
- static void
- info_recv_rights_cmd (char *args, int from_tty)
- {
- info_port_rights (args, MACH_PORT_TYPE_RECEIVE);
- }
- static void
- info_port_sets_cmd (char *args, int from_tty)
- {
- info_port_rights (args, MACH_PORT_TYPE_PORT_SET);
- }
- static void
- info_dead_names_cmd (char *args, int from_tty)
- {
- info_port_rights (args, MACH_PORT_TYPE_DEAD_NAME);
- }
- static void
- info_port_rights_cmd (char *args, int from_tty)
- {
- info_port_rights (args, ~0);
- }
- static void
- add_task_commands (void)
- {
- add_cmd ("pause", class_run, set_thread_default_pause_cmd, _("\
- Set whether the new threads are suspended while gdb has control.\n\
- This property normally has no effect because the whole task is\n\
- suspended, however, that may be disabled with \"set task pause off\".\n\
- The default value is \"off\"."),
- &set_thread_default_cmd_list);
- add_cmd ("pause", no_class, show_thread_default_pause_cmd, _("\
- Show whether new threads are suspended while gdb has control."),
- &show_thread_default_cmd_list);
- add_cmd ("run", class_run, set_thread_default_run_cmd, _("\
- Set whether new threads are allowed to run (once gdb has noticed them)."),
- &set_thread_default_cmd_list);
- add_cmd ("run", no_class, show_thread_default_run_cmd, _("\
- Show whether new threads are allowed to run (once gdb has noticed them)."),
- &show_thread_default_cmd_list);
- add_cmd ("detach-suspend-count", class_run, set_thread_default_detach_sc_cmd,
- _("Set the default detach-suspend-count value for new threads."),
- &set_thread_default_cmd_list);
- add_cmd ("detach-suspend-count", no_class, show_thread_default_detach_sc_cmd,
- _("Show the default detach-suspend-count value for new threads."),
- &show_thread_default_cmd_list);
- add_cmd ("signals", class_run, set_signals_cmd, _("\
- Set whether the inferior process's signals will be intercepted.\n\
- Mach exceptions (such as breakpoint traps) are not affected."),
- &setlist);
- add_alias_cmd ("sigs", "signals", class_run, 1, &setlist);
- add_cmd ("signals", no_class, show_signals_cmd, _("\
- Show whether the inferior process's signals will be intercepted."),
- &showlist);
- add_alias_cmd ("sigs", "signals", no_class, 1, &showlist);
- add_cmd ("signal-thread", class_run, set_sig_thread_cmd, _("\
- Set the thread that gdb thinks is the libc signal thread.\n\
- This thread is run when delivering a signal to a non-stopped process."),
- &setlist);
- add_alias_cmd ("sigthread", "signal-thread", class_run, 1, &setlist);
- add_cmd ("signal-thread", no_class, show_sig_thread_cmd, _("\
- Set the thread that gdb thinks is the libc signal thread."),
- &showlist);
- add_alias_cmd ("sigthread", "signal-thread", no_class, 1, &showlist);
- add_cmd ("stopped", class_run, set_stopped_cmd, _("\
- Set whether gdb thinks the inferior process is stopped as with SIGSTOP.\n\
- Stopped process will be continued by sending them a signal."),
- &setlist);
- add_cmd ("stopped", no_class, show_stopped_cmd, _("\
- Show whether gdb thinks the inferior process is stopped as with SIGSTOP."),
- &showlist);
- add_cmd ("exceptions", class_run, set_exceptions_cmd, _("\
- Set whether exceptions in the inferior process will be trapped.\n\
- When exceptions are turned off, neither breakpoints nor single-stepping\n\
- will work."),
- &setlist);
-
- add_alias_cmd ("exc", "exceptions", class_run, 1, &setlist);
- add_cmd ("exceptions", no_class, show_exceptions_cmd, _("\
- Show whether exceptions in the inferior process will be trapped."),
- &showlist);
- add_prefix_cmd ("task", no_class, set_task_cmd,
- _("Command prefix for setting task attributes."),
- &set_task_cmd_list, "set task ", 0, &setlist);
- add_prefix_cmd ("task", no_class, show_task_cmd,
- _("Command prefix for showing task attributes."),
- &show_task_cmd_list, "show task ", 0, &showlist);
- add_cmd ("pause", class_run, set_task_pause_cmd, _("\
- Set whether the task is suspended while gdb has control.\n\
- A value of \"on\" takes effect immediately, otherwise nothing happens\n\
- until the next time the program is continued.\n\
- When setting this to \"off\", \"set thread default pause on\" can be\n\
- used to pause individual threads by default instead."),
- &set_task_cmd_list);
- add_cmd ("pause", no_class, show_task_pause_cmd,
- _("Show whether the task is suspended while gdb has control."),
- &show_task_cmd_list);
- add_cmd ("detach-suspend-count", class_run, set_task_detach_sc_cmd,
- _("Set the suspend count will leave on the thread when detaching."),
- &set_task_cmd_list);
- add_cmd ("detach-suspend-count", no_class, show_task_detach_sc_cmd,
- _("Show the suspend count will leave "
- "on the thread when detaching."),
- &show_task_cmd_list);
- add_cmd ("exception-port", no_class, set_task_exc_port_cmd, _("\
- Set the task exception port to which we forward exceptions.\n\
- The argument should be the value of the send right in the task."),
- &set_task_cmd_list);
- add_alias_cmd ("excp", "exception-port", no_class, 1, &set_task_cmd_list);
- add_alias_cmd ("exc-port", "exception-port", no_class, 1,
- &set_task_cmd_list);
-
- add_cmd ("noninvasive", no_class, set_noninvasive_cmd, _("\
- Set task options so that we interfere as little as possible.\n\
- This is the same as setting `task pause', `exceptions', and\n\
- `signals' to the opposite value."),
- &setlist);
-
- add_cmd ("send-rights", class_info, info_send_rights_cmd,
- _("Show information about the task's send rights"),
- &infolist);
- add_cmd ("receive-rights", class_info, info_recv_rights_cmd,
- _("Show information about the task's receive rights"),
- &infolist);
- add_cmd ("port-rights", class_info, info_port_rights_cmd,
- _("Show information about the task's port rights"),
- &infolist);
- add_cmd ("port-sets", class_info, info_port_sets_cmd,
- _("Show information about the task's port sets"),
- &infolist);
- add_cmd ("dead-names", class_info, info_dead_names_cmd,
- _("Show information about the task's dead names"),
- &infolist);
- add_info_alias ("ports", "port-rights", 1);
- add_info_alias ("port", "port-rights", 1);
- add_info_alias ("psets", "port-sets", 1);
- }
- static void
- set_thread_pause_cmd (char *args, int from_tty)
- {
- struct proc *thread = cur_thread ();
- int old_sc = thread->pause_sc;
- thread->pause_sc = parse_bool_arg (args, "set thread pause");
- if (old_sc == 0 && thread->pause_sc != 0 && thread->inf->pause_sc == 0)
-
- inf_suspend (thread->inf);
- }
- static void
- show_thread_pause_cmd (char *args, int from_tty)
- {
- struct proc *thread = cur_thread ();
- int sc = thread->pause_sc;
- check_empty (args, "show task pause");
- printf_unfiltered ("Thread %s %s suspended while gdb has control%s.\n",
- proc_string (thread),
- sc ? "is" : "isn't",
- !sc && thread->inf->pause_sc ? " (but the task is)" : "");
- }
- static void
- set_thread_run_cmd (char *args, int from_tty)
- {
- struct proc *thread = cur_thread ();
- thread->run_sc = parse_bool_arg (args, "set thread run") ? 0 : 1;
- }
- static void
- show_thread_run_cmd (char *args, int from_tty)
- {
- struct proc *thread = cur_thread ();
- check_empty (args, "show thread run");
- printf_unfiltered ("Thread %s %s allowed to run.",
- proc_string (thread),
- thread->run_sc == 0 ? "is" : "isn't");
- }
- static void
- set_thread_detach_sc_cmd (char *args, int from_tty)
- {
- cur_thread ()->detach_sc = parse_int_arg (args,
- "set thread detach-suspend-count");
- }
- static void
- show_thread_detach_sc_cmd (char *args, int from_tty)
- {
- struct proc *thread = cur_thread ();
- check_empty (args, "show thread detach-suspend-count");
- printf_unfiltered ("Thread %s will be left with a suspend count"
- " of %d when detaching.\n",
- proc_string (thread),
- thread->detach_sc);
- }
- static void
- set_thread_exc_port_cmd (char *args, int from_tty)
- {
- struct proc *thread = cur_thread ();
- if (!args)
- error (_("No argument to \"set thread exception-port\" command."));
- steal_exc_port (thread, parse_and_eval_address (args));
- }
- #if 0
- #endif
- static void
- thread_takeover_sc_cmd (char *args, int from_tty)
- {
- struct proc *thread = cur_thread ();
- thread_basic_info_data_t _info;
- thread_basic_info_t info = &_info;
- mach_msg_type_number_t info_len = THREAD_BASIC_INFO_COUNT;
- error_t err =
- thread_info (thread->port, THREAD_BASIC_INFO, (int *) &info, &info_len);
- if (err)
- error (("%s."), safe_strerror (err));
- thread->sc = info->suspend_count;
- if (from_tty)
- printf_unfiltered ("Suspend count was %d.\n", thread->sc);
- if (info != &_info)
- vm_deallocate (mach_task_self (), (vm_address_t) info,
- info_len * sizeof (int));
- }
- static void
- add_thread_commands (void)
- {
- add_prefix_cmd ("thread", no_class, set_thread_cmd,
- _("Command prefix for setting thread properties."),
- &set_thread_cmd_list, "set thread ", 0, &setlist);
- add_prefix_cmd ("default", no_class, show_thread_cmd,
- _("Command prefix for setting default thread properties."),
- &set_thread_default_cmd_list, "set thread default ", 0,
- &set_thread_cmd_list);
- add_prefix_cmd ("thread", no_class, set_thread_default_cmd,
- _("Command prefix for showing thread properties."),
- &show_thread_cmd_list, "show thread ", 0, &showlist);
- add_prefix_cmd ("default", no_class, show_thread_default_cmd,
- _("Command prefix for showing default thread properties."),
- &show_thread_default_cmd_list, "show thread default ", 0,
- &show_thread_cmd_list);
- add_cmd ("pause", class_run, set_thread_pause_cmd, _("\
- Set whether the current thread is suspended while gdb has control.\n\
- A value of \"on\" takes effect immediately, otherwise nothing happens\n\
- until the next time the program is continued. This property normally\n\
- has no effect because the whole task is suspended, however, that may\n\
- be disabled with \"set task pause off\".\n\
- The default value is \"off\"."),
- &set_thread_cmd_list);
- add_cmd ("pause", no_class, show_thread_pause_cmd, _("\
- Show whether the current thread is suspended while gdb has control."),
- &show_thread_cmd_list);
- add_cmd ("run", class_run, set_thread_run_cmd,
- _("Set whether the current thread is allowed to run."),
- &set_thread_cmd_list);
- add_cmd ("run", no_class, show_thread_run_cmd,
- _("Show whether the current thread is allowed to run."),
- &show_thread_cmd_list);
- add_cmd ("detach-suspend-count", class_run, set_thread_detach_sc_cmd, _("\
- Set the suspend count will leave on the thread when detaching.\n\
- Note that this is relative to suspend count when gdb noticed the thread;\n\
- use the `thread takeover-suspend-count' to force it to an absolute value."),
- &set_thread_cmd_list);
- add_cmd ("detach-suspend-count", no_class, show_thread_detach_sc_cmd, _("\
- Show the suspend count will leave on the thread when detaching.\n\
- Note that this is relative to suspend count when gdb noticed the thread;\n\
- use the `thread takeover-suspend-count' to force it to an absolute value."),
- &show_thread_cmd_list);
- add_cmd ("exception-port", no_class, set_thread_exc_port_cmd, _("\
- Set the thread exception port to which we forward exceptions.\n\
- This overrides the task exception port.\n\
- The argument should be the value of the send right in the task."),
- &set_thread_cmd_list);
- add_alias_cmd ("excp", "exception-port", no_class, 1, &set_thread_cmd_list);
- add_alias_cmd ("exc-port", "exception-port", no_class, 1,
- &set_thread_cmd_list);
- add_cmd ("takeover-suspend-count", no_class, thread_takeover_sc_cmd, _("\
- Force the threads absolute suspend-count to be gdb's.\n\
- Prior to giving this command, gdb's thread suspend-counts are relative\n\
- to the thread's initial suspend-count when gdb notices the threads."),
- &thread_cmd_list);
- }
- extern initialize_file_ftype _initialize_gnu_nat;
- void
- _initialize_gnu_nat (void)
- {
- proc_server = getproc ();
- add_task_commands ();
- add_thread_commands ();
- add_setshow_boolean_cmd ("gnu-nat", class_maintenance,
- &gnu_debug_flag,
- _("Set debugging output for the gnu backend."),
- _("Show debugging output for the gnu backend."),
- NULL,
- NULL,
- NULL,
- &setdebuglist,
- &showdebuglist);
- }
- #ifdef FLUSH_INFERIOR_CACHE
- void
- flush_inferior_icache (CORE_ADDR pc, int amount)
- {
- vm_machine_attribute_val_t flush = MATTR_VAL_ICACHE_FLUSH;
- error_t ret;
- ret = vm_machine_attribute (gnu_current_inf->task->port,
- pc,
- amount,
- MATTR_CACHE,
- &flush);
- if (ret != KERN_SUCCESS)
- warning (_("Error flushing inferior's cache : %s"), safe_strerror (ret));
- }
- #endif