1999-04-16 03:35:26 +02:00
|
|
|
|
/* Interface GDB to Mach 3.0 operating systems.
|
|
|
|
|
(Most) Mach 3.0 related routines live in this file.
|
|
|
|
|
|
2001-03-06 09:22:02 +01:00
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
2001-02-08 07:03:54 +01:00
|
|
|
|
Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Author: Jukka Virtanen <jtv@hut.fi>
|
1999-07-07 22:19:36 +02:00
|
|
|
|
* Computing Centre
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* Helsinki University of Technology
|
|
|
|
|
* Finland
|
|
|
|
|
*
|
|
|
|
|
* Thanks to my friends who helped with ideas and testing:
|
|
|
|
|
*
|
1999-07-07 22:19:36 +02:00
|
|
|
|
* Johannes Helander, Antti Louko, Tero Mononen,
|
|
|
|
|
* jvh@cs.hut.fi alo@hut.fi tmo@cs.hut.fi
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*
|
|
|
|
|
* Tero Kivinen and Eamonn McManus
|
1999-07-07 22:19:36 +02:00
|
|
|
|
* kivinen@cs.hut.fi emcmanus@gr.osf.org
|
|
|
|
|
*
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include <mach.h>
|
|
|
|
|
#include <servers/netname.h>
|
|
|
|
|
#include <servers/machid.h>
|
|
|
|
|
#include <mach/message.h>
|
|
|
|
|
#include <mach/notify.h>
|
|
|
|
|
#include <mach_error.h>
|
|
|
|
|
#include <mach/exception.h>
|
|
|
|
|
#include <mach/vm_attributes.h>
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "inferior.h"
|
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "value.h"
|
|
|
|
|
#include "language.h"
|
|
|
|
|
#include "target.h"
|
2000-02-09 09:52:47 +01:00
|
|
|
|
#include "gdb_wait.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#include "gdbcmd.h"
|
|
|
|
|
#include "gdbcore.h"
|
2001-03-01 02:39:22 +01:00
|
|
|
|
#include "regcache.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
#include <servers/machid_lib.h>
|
|
|
|
|
#else
|
|
|
|
|
#define MACH_TYPE_TASK 1
|
|
|
|
|
#define MACH_TYPE_THREAD 2
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Included only for signal names and NSIG
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* note: There are many problems in signal handling with
|
|
|
|
|
* gdb in Mach 3.0 in general.
|
|
|
|
|
*/
|
|
|
|
|
#include <signal.h>
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#define SIG_UNKNOWN 0 /* Exception that has no matching unix signal */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#include <cthreads.h>
|
|
|
|
|
|
|
|
|
|
/* This is what a cproc looks like. This is here partly because
|
|
|
|
|
cthread_internals.h is not a header we can just #include, partly with
|
|
|
|
|
an eye towards perhaps getting this to work with cross-debugging
|
|
|
|
|
someday. Best solution is if CMU publishes a real interface to this
|
|
|
|
|
stuff. */
|
|
|
|
|
#define CPROC_NEXT_OFFSET 0
|
|
|
|
|
#define CPROC_NEXT_SIZE (TARGET_PTR_BIT / HOST_CHAR_BIT)
|
|
|
|
|
#define CPROC_INCARNATION_OFFSET (CPROC_NEXT_OFFSET + CPROC_NEXT_SIZE)
|
|
|
|
|
#define CPROC_INCARNATION_SIZE (sizeof (cthread_t))
|
|
|
|
|
#define CPROC_LIST_OFFSET (CPROC_INCARNATION_OFFSET + CPROC_INCARNATION_SIZE)
|
|
|
|
|
#define CPROC_LIST_SIZE (TARGET_PTR_BIT / HOST_CHAR_BIT)
|
|
|
|
|
#define CPROC_WAIT_OFFSET (CPROC_LIST_OFFSET + CPROC_LIST_SIZE)
|
|
|
|
|
#define CPROC_WAIT_SIZE (TARGET_PTR_BIT / HOST_CHAR_BIT)
|
|
|
|
|
#define CPROC_REPLY_OFFSET (CPROC_WAIT_OFFSET + CPROC_WAIT_SIZE)
|
|
|
|
|
#define CPROC_REPLY_SIZE (sizeof (mach_port_t))
|
|
|
|
|
#define CPROC_CONTEXT_OFFSET (CPROC_REPLY_OFFSET + CPROC_REPLY_SIZE)
|
|
|
|
|
#define CPROC_CONTEXT_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
|
|
|
|
|
#define CPROC_LOCK_OFFSET (CPROC_CONTEXT_OFFSET + CPROC_CONTEXT_SIZE)
|
|
|
|
|
#define CPROC_LOCK_SIZE (sizeof (spin_lock_t))
|
|
|
|
|
#define CPROC_STATE_OFFSET (CPROC_LOCK_OFFSET + CPROC_LOCK_SIZE)
|
|
|
|
|
#define CPROC_STATE_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
|
|
|
|
|
#define CPROC_WIRED_OFFSET (CPROC_STATE_OFFSET + CPROC_STATE_SIZE)
|
|
|
|
|
#define CPROC_WIRED_SIZE (sizeof (mach_port_t))
|
|
|
|
|
#define CPROC_BUSY_OFFSET (CPROC_WIRED_OFFSET + CPROC_WIRED_SIZE)
|
|
|
|
|
#define CPROC_BUSY_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
|
|
|
|
|
#define CPROC_MSG_OFFSET (CPROC_BUSY_OFFSET + CPROC_BUSY_SIZE)
|
|
|
|
|
#define CPROC_MSG_SIZE (sizeof (mach_msg_header_t))
|
|
|
|
|
#define CPROC_BASE_OFFSET (CPROC_MSG_OFFSET + CPROC_MSG_SIZE)
|
|
|
|
|
#define CPROC_BASE_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
|
|
|
|
|
#define CPROC_SIZE_OFFSET (CPROC_BASE_OFFSET + CPROC_BASE_SIZE)
|
|
|
|
|
#define CPROC_SIZE_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
|
|
|
|
|
#define CPROC_SIZE (CPROC_SIZE_OFFSET + CPROC_SIZE_SIZE)
|
|
|
|
|
|
|
|
|
|
/* Values for the state field in the cproc. */
|
|
|
|
|
#define CPROC_RUNNING 0
|
|
|
|
|
#define CPROC_SWITCHING 1
|
|
|
|
|
#define CPROC_BLOCKED 2
|
|
|
|
|
#define CPROC_CONDWAIT 4
|
|
|
|
|
|
|
|
|
|
/* For cproc and kernel thread mapping */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
typedef struct gdb_thread
|
|
|
|
|
{
|
|
|
|
|
mach_port_t name;
|
|
|
|
|
CORE_ADDR sp;
|
|
|
|
|
CORE_ADDR pc;
|
|
|
|
|
CORE_ADDR fp;
|
|
|
|
|
boolean_t in_emulator;
|
|
|
|
|
int slotid;
|
|
|
|
|
|
|
|
|
|
/* This is for the mthreads list. It points to the cproc list.
|
|
|
|
|
Perhaps the two lists should be merged (or perhaps it was a mistake
|
|
|
|
|
to make them both use a struct gdb_thread). */
|
|
|
|
|
struct gdb_thread *cproc;
|
|
|
|
|
|
|
|
|
|
/* These are for the cproc list, which is linked through the next field
|
|
|
|
|
of the struct gdb_thread. */
|
|
|
|
|
char raw_cproc[CPROC_SIZE];
|
|
|
|
|
/* The cthread which is pointed to by the incarnation field from the
|
|
|
|
|
cproc. This points to the copy we've read into GDB. */
|
|
|
|
|
cthread_t cthread;
|
|
|
|
|
/* Point back to the mthreads list. */
|
|
|
|
|
int reverse_map;
|
|
|
|
|
struct gdb_thread *next;
|
|
|
|
|
}
|
|
|
|
|
*gdb_thread_t;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Actions for Mach exceptions.
|
|
|
|
|
*
|
|
|
|
|
* sigmap field maps the exception to corresponding Unix signal.
|
|
|
|
|
*
|
|
|
|
|
* I do not know how to map the exception to unix signal
|
|
|
|
|
* if SIG_UNKNOWN is specified.
|
|
|
|
|
*/
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct exception_list
|
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
boolean_t forward;
|
|
|
|
|
boolean_t print;
|
|
|
|
|
int sigmap;
|
|
|
|
|
}
|
|
|
|
|
exception_map[] =
|
|
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
"not_mach3_exception", FALSE, TRUE, SIG_UNKNOWN
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
{
|
|
|
|
|
"EXC_BAD_ACCESS", FALSE, TRUE, SIGSEGV
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
{
|
|
|
|
|
"EXC_BAD_INSTRUCTION", FALSE, TRUE, SIGILL
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
{
|
|
|
|
|
"EXC_ARITHMETIC", FALSE, TRUE, SIGFPE
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
{
|
|
|
|
|
"EXC_EMULATION", FALSE, TRUE, SIGEMT
|
|
|
|
|
}
|
|
|
|
|
, /* ??? */
|
|
|
|
|
{
|
|
|
|
|
"EXC_SOFTWARE", FALSE, TRUE, SIG_UNKNOWN
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
{
|
|
|
|
|
"EXC_BREAKPOINT", FALSE, FALSE, SIGTRAP
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Mach exception table size */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int max_exception = sizeof (exception_map) / sizeof (struct exception_list) - 1;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#define MAX_EXCEPTION max_exception
|
|
|
|
|
|
|
|
|
|
WAITTYPE wait_status;
|
|
|
|
|
|
|
|
|
|
/* If you define this, intercepted bsd server calls will be
|
|
|
|
|
* dumped while waiting the inferior to EXEC the correct
|
|
|
|
|
* program
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* #define DUMP_SYSCALL /* debugging interceptor */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* xx_debug() outputs messages if this is nonzero.
|
|
|
|
|
* If > 1, DUMP_SYSCALL will dump message contents.
|
|
|
|
|
*/
|
|
|
|
|
int debug_level = 0;
|
|
|
|
|
|
|
|
|
|
/* "Temporary" debug stuff */
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
xx_debug (char *fmt, int a, int b, int c)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (debug_level)
|
|
|
|
|
warning (fmt, a, b, c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is in libmach.a */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
extern mach_port_t name_server_port;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Set in catch_exception_raise */
|
|
|
|
|
int stop_exception, stop_code, stop_subcode;
|
|
|
|
|
int stopped_in_exception;
|
|
|
|
|
|
|
|
|
|
/* Thread that was the active thread when we stopped */
|
|
|
|
|
thread_t stop_thread = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
char *hostname = "";
|
|
|
|
|
|
|
|
|
|
/* Set when task is attached or created */
|
|
|
|
|
boolean_t emulator_present = FALSE;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
task_t inferior_task;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_t current_thread;
|
|
|
|
|
|
|
|
|
|
/* Exception ports for inferior task */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t inferior_exception_port = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mach_port_t inferior_old_exception_port = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
/* task exceptions and notifications */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t inferior_wait_port_set = MACH_PORT_NULL;
|
|
|
|
|
mach_port_t our_notify_port = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* This is "inferior_wait_port_set" when not single stepping, and
|
|
|
|
|
* "singlestepped_thread_port" when we are single stepping.
|
|
|
|
|
*
|
|
|
|
|
* This is protected by a cleanup function: discard_single_step()
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t currently_waiting_for = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* A port for external messages to gdb.
|
|
|
|
|
* External in the meaning that they do not come
|
|
|
|
|
* from the inferior_task, but rather from external
|
|
|
|
|
* tasks.
|
|
|
|
|
*
|
|
|
|
|
* As a debugging feature:
|
|
|
|
|
* A debugger debugging another debugger can stop the
|
|
|
|
|
* inferior debugger by the following command sequence
|
|
|
|
|
* (without running external programs)
|
|
|
|
|
*
|
|
|
|
|
* (top-gdb) set stop_inferior_gdb ()
|
|
|
|
|
* (top-gdb) continue
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t our_message_port = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* For single stepping */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t thread_exception_port = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mach_port_t thread_saved_exception_port = MACH_PORT_NULL;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t singlestepped_thread_port = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* For machid calls */
|
|
|
|
|
mach_port_t mid_server = MACH_PORT_NULL;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t mid_auth = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* If gdb thinks the inferior task is not suspended, it
|
|
|
|
|
* must take suspend/abort the threads when it reads the state.
|
|
|
|
|
*/
|
|
|
|
|
int must_suspend_thread = 0;
|
|
|
|
|
|
|
|
|
|
/* When single stepping, we switch the port that mach_really_wait() listens to.
|
|
|
|
|
* This cleanup is a guard to prevent the port set from being left to
|
|
|
|
|
* the singlestepped_thread_port when error() is called.
|
|
|
|
|
* This is nonzero only when we are single stepping.
|
|
|
|
|
*/
|
|
|
|
|
#define NULL_CLEANUP (struct cleanup *)0
|
|
|
|
|
struct cleanup *cleanup_step = NULL_CLEANUP;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static struct target_ops m3_ops;
|
|
|
|
|
|
|
|
|
|
static void m3_kill_inferior ();
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
#define MACH_TYPE_EXCEPTION_PORT -1
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Chain of ports to remember requested notifications. */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct port_chain
|
|
|
|
|
{
|
|
|
|
|
struct port_chain *next;
|
|
|
|
|
mach_port_t port;
|
|
|
|
|
int type;
|
|
|
|
|
int mid; /* Now only valid with MACH_TYPE_THREAD and */
|
|
|
|
|
/* MACH_TYPE_THREAD */
|
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
typedef struct port_chain *port_chain_t;
|
|
|
|
|
|
|
|
|
|
/* Room for chain nodes comes from pchain_obstack */
|
|
|
|
|
struct obstack pchain_obstack;
|
|
|
|
|
struct obstack *port_chain_obstack = &pchain_obstack;
|
|
|
|
|
|
|
|
|
|
/* For thread handling */
|
|
|
|
|
struct obstack Cproc_obstack;
|
|
|
|
|
struct obstack *cproc_obstack = &Cproc_obstack;
|
|
|
|
|
|
|
|
|
|
/* the list of notified ports */
|
|
|
|
|
port_chain_t notify_chain = (port_chain_t) NULL;
|
|
|
|
|
|
|
|
|
|
port_chain_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
port_chain_insert (port_chain_t list, mach_port_t name, int type)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
port_chain_t new;
|
|
|
|
|
int mid;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (name))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return list;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (type == MACH_TYPE_TASK || type == MACH_TYPE_THREAD)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (mid_server))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("Machid server port invalid, can not map port 0x%x to MID",
|
|
|
|
|
name);
|
|
|
|
|
mid = name;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ret = machid_mach_register (mid_server, mid_auth, name, type, &mid);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Can not map name (0x%x) to MID with machid", name);
|
|
|
|
|
mid = name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
2001-02-25 05:45:12 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__, "failed internal consistency check");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
new = (port_chain_t) obstack_alloc (port_chain_obstack,
|
|
|
|
|
sizeof (struct port_chain));
|
1999-07-07 22:19:36 +02:00
|
|
|
|
new->next = list;
|
|
|
|
|
new->port = name;
|
|
|
|
|
new->type = type;
|
|
|
|
|
new->mid = mid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return new;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
port_chain_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
port_chain_delete (port_chain_t list, mach_port_t elem)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (list)
|
|
|
|
|
if (list->port == elem)
|
|
|
|
|
list = list->next;
|
|
|
|
|
else
|
|
|
|
|
while (list->next)
|
|
|
|
|
{
|
|
|
|
|
if (list->next->port == elem)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
list->next = list->next->next; /* GCd with obstack_free() */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
list = list->next;
|
|
|
|
|
}
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
port_chain_destroy (struct obstack *ostack)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
obstack_free (ostack, 0);
|
|
|
|
|
obstack_init (ostack);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
port_chain_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
port_chain_member (port_chain_t list, mach_port_t elem)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
while (list)
|
|
|
|
|
{
|
|
|
|
|
if (list->port == elem)
|
|
|
|
|
return list;
|
|
|
|
|
list = list->next;
|
|
|
|
|
}
|
|
|
|
|
return (port_chain_t) NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
map_port_name_to_mid (mach_port_t name, int type)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
port_chain_t elem;
|
|
|
|
|
|
|
|
|
|
if (!MACH_PORT_VALID (name))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
elem = port_chain_member (notify_chain, name);
|
|
|
|
|
|
|
|
|
|
if (elem && (elem->type == type))
|
|
|
|
|
return elem->mid;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (elem)
|
|
|
|
|
return -1;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
if (!MACH_PORT_VALID (mid_server))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("Machid server port invalid, can not map port 0x%x to mid",
|
|
|
|
|
name);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
ret = machid_mach_register (mid_server, mid_auth, name, type, &mid);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Can not map name (0x%x) to mid with machid", name);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return mid;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Guard for currently_waiting_for and singlestepped_thread_port */
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
discard_single_step (thread_t thread)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
currently_waiting_for = inferior_wait_port_set;
|
|
|
|
|
|
|
|
|
|
cleanup_step = NULL_CLEANUP;
|
|
|
|
|
if (MACH_PORT_VALID (thread) && MACH_PORT_VALID (singlestepped_thread_port))
|
|
|
|
|
setup_single_step (thread, FALSE);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
setup_single_step (thread_t thread, boolean_t start_step)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (thread))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("Invalid thread supplied to setup_single_step");
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mach_port_t teport;
|
|
|
|
|
|
|
|
|
|
/* Get the current thread exception port */
|
|
|
|
|
ret = thread_get_exception_port (thread, &teport);
|
|
|
|
|
CHK ("Getting thread's exception port", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (start_step)
|
|
|
|
|
{
|
|
|
|
|
if (MACH_PORT_VALID (singlestepped_thread_port))
|
|
|
|
|
{
|
|
|
|
|
warning ("Singlestepped_thread_port (0x%x) is still valid?",
|
|
|
|
|
singlestepped_thread_port);
|
|
|
|
|
singlestepped_thread_port = MACH_PORT_NULL;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* If we are already stepping this thread */
|
|
|
|
|
if (MACH_PORT_VALID (teport) && teport == thread_exception_port)
|
|
|
|
|
{
|
|
|
|
|
ret = mach_port_deallocate (mach_task_self (), teport);
|
|
|
|
|
CHK ("Could not deallocate thread exception port", ret);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ret = thread_set_exception_port (thread, thread_exception_port);
|
|
|
|
|
CHK ("Setting exception port for thread", ret);
|
|
|
|
|
#if 0
|
|
|
|
|
/* Insert thread exception port to wait port set */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_move_member (mach_task_self (),
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_exception_port,
|
|
|
|
|
inferior_wait_port_set);
|
|
|
|
|
CHK ("Moving thread exception port to inferior_wait_port_set",
|
|
|
|
|
ret);
|
|
|
|
|
#endif
|
|
|
|
|
thread_saved_exception_port = teport;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_trace (thread, TRUE);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
singlestepped_thread_port = thread_exception_port;
|
|
|
|
|
currently_waiting_for = singlestepped_thread_port;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
cleanup_step = make_cleanup (discard_single_step, thread);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (teport))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("Single stepped thread had an invalid exception port?");
|
|
|
|
|
|
|
|
|
|
if (teport != thread_exception_port)
|
|
|
|
|
error ("Single stepped thread had an unknown exception port?");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = mach_port_deallocate (mach_task_self (), teport);
|
|
|
|
|
CHK ("Couldn't deallocate thread exception port", ret);
|
|
|
|
|
#if 0
|
|
|
|
|
/* Remove thread exception port from wait port set */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_move_member (mach_task_self (),
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_exception_port,
|
|
|
|
|
MACH_PORT_NULL);
|
|
|
|
|
CHK ("Removing thread exception port from inferior_wait_port_set",
|
|
|
|
|
ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Restore thread's old exception port */
|
|
|
|
|
ret = thread_set_exception_port (thread,
|
|
|
|
|
thread_saved_exception_port);
|
|
|
|
|
CHK ("Restoring stepped thread's exception port", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (MACH_PORT_VALID (thread_saved_exception_port))
|
|
|
|
|
(void) mach_port_deallocate (mach_task_self (),
|
|
|
|
|
thread_saved_exception_port);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_trace (thread, FALSE);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
singlestepped_thread_port = MACH_PORT_NULL;
|
|
|
|
|
currently_waiting_for = inferior_wait_port_set;
|
|
|
|
|
if (cleanup_step)
|
|
|
|
|
discard_cleanups (cleanup_step);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static
|
2000-07-30 03:48:28 +02:00
|
|
|
|
request_notify (mach_port_t name, mach_msg_id_t variant, int type)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t previous_port_dummy = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
if (!MACH_PORT_VALID (name))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (port_chain_member (notify_chain, name))
|
|
|
|
|
return;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_request_notification (mach_task_self (),
|
1999-04-16 03:35:26 +02:00
|
|
|
|
name,
|
|
|
|
|
variant,
|
|
|
|
|
1,
|
|
|
|
|
our_notify_port,
|
|
|
|
|
MACH_MSG_TYPE_MAKE_SEND_ONCE,
|
|
|
|
|
&previous_port_dummy);
|
|
|
|
|
CHK ("Serious: request_notify failed", ret);
|
|
|
|
|
|
|
|
|
|
(void) mach_port_deallocate (mach_task_self (),
|
|
|
|
|
previous_port_dummy);
|
|
|
|
|
|
|
|
|
|
notify_chain = port_chain_insert (notify_chain, name, type);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
reverse_msg_bits (mach_msg_header_t *msgp, int type)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int rbits, lbits;
|
|
|
|
|
rbits = MACH_MSGH_BITS_REMOTE (msgp->msgh_bits);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
lbits = type;
|
|
|
|
|
msgp->msgh_bits =
|
|
|
|
|
(msgp->msgh_bits & ~MACH_MSGH_BITS_PORTS_MASK) |
|
1999-07-07 22:19:36 +02:00
|
|
|
|
MACH_MSGH_BITS (lbits, rbits);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* On the third day He said:
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
Let this be global
|
|
|
|
|
and then it was global.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
When creating the inferior fork, the
|
|
|
|
|
child code in inflow.c sets the name of the
|
|
|
|
|
bootstrap_port in its address space to this
|
|
|
|
|
variable.
|
|
|
|
|
|
|
|
|
|
The name is transferred to our address space
|
|
|
|
|
with mach3_read_inferior().
|
|
|
|
|
|
|
|
|
|
Thou shalt not do this with
|
|
|
|
|
task_get_bootstrap_port() in this task, since
|
|
|
|
|
the name in the inferior task is different than
|
|
|
|
|
the one we get.
|
|
|
|
|
|
|
|
|
|
For blessed are the meek, as they shall inherit
|
|
|
|
|
the address space.
|
|
|
|
|
*/
|
|
|
|
|
mach_port_t original_server_port_name = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Called from inferior after FORK but before EXEC */
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_trace_me (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Get the NAME of the bootstrap port in this task
|
|
|
|
|
so that GDB can read it */
|
|
|
|
|
ret = task_get_bootstrap_port (mach_task_self (),
|
|
|
|
|
&original_server_port_name);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
2001-02-25 05:45:12 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__, "failed internal consistency check");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = mach_port_deallocate (mach_task_self (),
|
|
|
|
|
original_server_port_name);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
2001-02-25 05:45:12 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__, "failed internal consistency check");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Suspend this task to let the parent change my ports.
|
|
|
|
|
Resumed by the debugger */
|
|
|
|
|
ret = task_suspend (mach_task_self ());
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
2001-02-25 05:45:12 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__, "failed internal consistency check");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Intercept system calls to Unix server.
|
|
|
|
|
* After EXEC_COUNTER calls to exec(), return.
|
|
|
|
|
*
|
|
|
|
|
* Pre-assertion: Child is suspended. (Not verified)
|
|
|
|
|
* Post-condition: Child is suspended after EXEC_COUNTER exec() calls.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
intercept_exec_calls (int exec_counter)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int terminal_initted = 0;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct syscall_msg_t
|
|
|
|
|
{
|
|
|
|
|
mach_msg_header_t header;
|
|
|
|
|
mach_msg_type_t type;
|
|
|
|
|
char room[2000]; /* Enuff space */
|
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
struct syscall_msg_t syscall_in, syscall_out;
|
|
|
|
|
|
|
|
|
|
mach_port_t fake_server;
|
|
|
|
|
mach_port_t original_server_send;
|
|
|
|
|
mach_port_t original_exec_reply;
|
|
|
|
|
mach_port_t exec_reply;
|
|
|
|
|
mach_port_t exec_reply_send;
|
|
|
|
|
mach_msg_type_name_t acquired;
|
|
|
|
|
mach_port_t emulator_server_port_name;
|
|
|
|
|
struct task_basic_info info;
|
|
|
|
|
mach_msg_type_number_t info_count;
|
|
|
|
|
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
if (exec_counter <= 0)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return; /* We are already set up in the correct program */
|
|
|
|
|
|
|
|
|
|
ret = mach_port_allocate (mach_task_self (),
|
|
|
|
|
MACH_PORT_RIGHT_RECEIVE,
|
|
|
|
|
&fake_server);
|
|
|
|
|
CHK ("create inferior_fake_server port failed", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Wait for inferior_task to suspend itself */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
while (1)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
info_count = sizeof (info);
|
|
|
|
|
ret = task_info (inferior_task,
|
|
|
|
|
TASK_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(task_info_t) & info,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&info_count);
|
|
|
|
|
CHK ("Task info", ret);
|
|
|
|
|
|
|
|
|
|
if (info.suspend_count)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Note that the definition of the parameter was undefined
|
|
|
|
|
* at the time of this writing, so I just use an `ad hoc' value.
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(void) swtch_pri (42); /* Universal Priority Value */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read the inferior's bootstrap port name */
|
|
|
|
|
if (!mach3_read_inferior (&original_server_port_name,
|
|
|
|
|
&original_server_port_name,
|
|
|
|
|
sizeof (original_server_port_name)))
|
|
|
|
|
error ("Can't read inferior task bootstrap port name");
|
|
|
|
|
|
|
|
|
|
/* @@ BUG: If more than 1 send right GDB will FAIL!!! */
|
|
|
|
|
/* Should get refs, and set them back when restoring */
|
|
|
|
|
/* Steal the original bsd server send right from inferior */
|
|
|
|
|
ret = mach_port_extract_right (inferior_task,
|
|
|
|
|
original_server_port_name,
|
|
|
|
|
MACH_MSG_TYPE_MOVE_SEND,
|
|
|
|
|
&original_server_send,
|
|
|
|
|
&acquired);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_extract_right (bsd server send)", ret);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (acquired != MACH_MSG_TYPE_PORT_SEND)
|
* gdbarch.sh, hp-psymtab-read.c, hpread.c, m3-nat.c, mcore-tdep.c,
mips-tdep.c, monitor.c, regcache.c, remote-es.c, ser-unix.c,
somread.c, tracepoint.c: Fix spelling errors in comments.
* gdbarch.c: Regenerate.
* gnu-nat.c (S_exception_raise_request): Fix typos and spelling
errors in strings.
* m3-nat.c (intercept_exec_calls, mach_thread_parse_id): Likewise.
* mcore-tdep.c (mcore_analyze_prologue): Likewise.
* mips-tdep.c (mips16_next_pc, _initialize_mips_tdep): Likewise.
* remote-e7000.c (e7000_start_remote): Likewise.
* remote-rdp.c (handle_swi): Likewise.
* remote-vx.c (vx_load_command): Likewise.
* sh-tdep.c (sh_do_pseudo_register): Likewise.
* sol-thread.c (td_err_string): Likewise.
* symtab.c (decode_line_2): Likewise.
-------------------------------------------------------------------
2000-10-30 22:50:58 +01:00
|
|
|
|
error ("Incorrect right extracted, send right to bsd server expected");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_port_insert_right (inferior_task,
|
|
|
|
|
original_server_port_name,
|
|
|
|
|
fake_server,
|
|
|
|
|
MACH_MSG_TYPE_MAKE_SEND);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_insert_right (fake server send)", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
xx_debug ("inferior task bsd server ports set up \nfs %x, ospn %x, oss %x\n",
|
|
|
|
|
fake_server,
|
|
|
|
|
original_server_port_name, original_server_send);
|
|
|
|
|
|
|
|
|
|
/* A receive right to the reply generated by unix server exec() request */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_allocate (mach_task_self (),
|
|
|
|
|
MACH_PORT_RIGHT_RECEIVE,
|
|
|
|
|
&exec_reply);
|
|
|
|
|
CHK ("create intercepted_reply_port port failed", ret);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Pass this send right to Unix server so it replies to us after exec() */
|
|
|
|
|
ret = mach_port_extract_right (mach_task_self (),
|
|
|
|
|
exec_reply,
|
|
|
|
|
MACH_MSG_TYPE_MAKE_SEND_ONCE,
|
|
|
|
|
&exec_reply_send,
|
|
|
|
|
&acquired);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_extract_right (exec_reply)", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (acquired != MACH_MSG_TYPE_PORT_SEND_ONCE)
|
* gdbarch.sh, hp-psymtab-read.c, hpread.c, m3-nat.c, mcore-tdep.c,
mips-tdep.c, monitor.c, regcache.c, remote-es.c, ser-unix.c,
somread.c, tracepoint.c: Fix spelling errors in comments.
* gdbarch.c: Regenerate.
* gnu-nat.c (S_exception_raise_request): Fix typos and spelling
errors in strings.
* m3-nat.c (intercept_exec_calls, mach_thread_parse_id): Likewise.
* mcore-tdep.c (mcore_analyze_prologue): Likewise.
* mips-tdep.c (mips16_next_pc, _initialize_mips_tdep): Likewise.
* remote-e7000.c (e7000_start_remote): Likewise.
* remote-rdp.c (handle_swi): Likewise.
* remote-vx.c (vx_load_command): Likewise.
* sh-tdep.c (sh_do_pseudo_register): Likewise.
* sol-thread.c (td_err_string): Likewise.
* symtab.c (decode_line_2): Likewise.
-------------------------------------------------------------------
2000-10-30 22:50:58 +01:00
|
|
|
|
error ("Incorrect right extracted, send once expected for exec reply");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_move_member (mach_task_self (),
|
|
|
|
|
fake_server,
|
|
|
|
|
inferior_wait_port_set);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CHK ("Moving fake syscall port to inferior_wait_port_set", ret);
|
|
|
|
|
|
|
|
|
|
xx_debug ("syscall fake server set up, resuming inferior\n");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = task_resume (inferior_task);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("task_resume (startup)", ret);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Read requests from the inferior.
|
|
|
|
|
Pass directly through everything else except exec() calls.
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
while (exec_counter > 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
ret = mach_msg (&syscall_in.header, /* header */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
MACH_RCV_MSG, /* options */
|
|
|
|
|
0, /* send size */
|
|
|
|
|
sizeof (struct syscall_msg_t), /* receive size */
|
|
|
|
|
inferior_wait_port_set, /* receive_name */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_MSG_TIMEOUT_NONE,
|
|
|
|
|
MACH_PORT_NULL);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_msg (intercepted sycall)", ret);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#ifdef DUMP_SYSCALL
|
|
|
|
|
print_msg (&syscall_in.header);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* ASSERT : msgh_local_port == fake_server */
|
|
|
|
|
|
|
|
|
|
if (notify_server (&syscall_in.header, &syscall_out.header))
|
|
|
|
|
error ("received a notify while intercepting syscalls");
|
|
|
|
|
|
|
|
|
|
if (syscall_in.header.msgh_id == MIG_EXEC_SYSCALL_ID)
|
|
|
|
|
{
|
|
|
|
|
xx_debug ("Received EXEC SYSCALL, counter = %d\n", exec_counter);
|
|
|
|
|
if (exec_counter == 1)
|
|
|
|
|
{
|
|
|
|
|
original_exec_reply = syscall_in.header.msgh_remote_port;
|
|
|
|
|
syscall_in.header.msgh_remote_port = exec_reply_send;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!terminal_initted)
|
|
|
|
|
{
|
|
|
|
|
/* Now that the child has exec'd we know it has already set its
|
1999-07-07 22:19:36 +02:00
|
|
|
|
process group. On POSIX systems, tcsetpgrp will fail with
|
|
|
|
|
EPERM if we try it before the child's setpgid. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Set up the "saved terminal modes" of the inferior
|
1999-07-07 22:19:36 +02:00
|
|
|
|
based on what modes we are starting it with. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
target_terminal_init ();
|
|
|
|
|
|
|
|
|
|
/* Install inferior's terminal modes. */
|
|
|
|
|
target_terminal_inferior ();
|
|
|
|
|
|
|
|
|
|
terminal_initted = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exec_counter--;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
syscall_in.header.msgh_local_port = syscall_in.header.msgh_remote_port;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
syscall_in.header.msgh_remote_port = original_server_send;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
reverse_msg_bits (&syscall_in.header, MACH_MSG_TYPE_COPY_SEND);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_msg_send (&syscall_in.header);
|
|
|
|
|
CHK ("Forwarded syscall", ret);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_port_move_member (mach_task_self (),
|
|
|
|
|
fake_server,
|
|
|
|
|
MACH_PORT_NULL);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CHK ("Moving fake syscall out of inferior_wait_port_set", ret);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_move_member (mach_task_self (),
|
|
|
|
|
exec_reply,
|
|
|
|
|
inferior_wait_port_set);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CHK ("Moving exec_reply to inferior_wait_port_set", ret);
|
|
|
|
|
|
|
|
|
|
ret = mach_msg (&syscall_in.header, /* header */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
MACH_RCV_MSG, /* options */
|
|
|
|
|
0, /* send size */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
sizeof (struct syscall_msg_t), /* receive size */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
inferior_wait_port_set, /* receive_name */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_MSG_TIMEOUT_NONE,
|
|
|
|
|
MACH_PORT_NULL);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_msg (exec reply)", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = task_suspend (inferior_task);
|
|
|
|
|
CHK ("Suspending inferior after last exec", ret);
|
|
|
|
|
|
|
|
|
|
must_suspend_thread = 0;
|
|
|
|
|
|
|
|
|
|
xx_debug ("Received exec reply from bsd server, suspended inferior task\n");
|
|
|
|
|
|
|
|
|
|
#ifdef DUMP_SYSCALL
|
1999-07-07 22:19:36 +02:00
|
|
|
|
print_msg (&syscall_in.header);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Message should appear as if it came from the unix server */
|
|
|
|
|
syscall_in.header.msgh_local_port = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
/* and go to the inferior task original reply port */
|
|
|
|
|
syscall_in.header.msgh_remote_port = original_exec_reply;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
reverse_msg_bits (&syscall_in.header, MACH_MSG_TYPE_MOVE_SEND_ONCE);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_msg_send (&syscall_in.header);
|
|
|
|
|
CHK ("Forwarding exec reply to inferior", ret);
|
|
|
|
|
|
|
|
|
|
/* Garbage collect */
|
|
|
|
|
ret = mach_port_deallocate (inferior_task,
|
|
|
|
|
original_server_port_name);
|
|
|
|
|
CHK ("deallocating fake server send right", ret);
|
|
|
|
|
|
|
|
|
|
ret = mach_port_insert_right (inferior_task,
|
|
|
|
|
original_server_port_name,
|
|
|
|
|
original_server_send,
|
|
|
|
|
MACH_MSG_TYPE_MOVE_SEND);
|
|
|
|
|
CHK ("Restoring the original bsd server send right", ret);
|
|
|
|
|
|
|
|
|
|
ret = mach_port_destroy (mach_task_self (),
|
|
|
|
|
fake_server);
|
|
|
|
|
fake_server = MACH_PORT_DEAD;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_destroy (fake_server)", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_port_destroy (mach_task_self (),
|
|
|
|
|
exec_reply);
|
|
|
|
|
exec_reply = MACH_PORT_DEAD;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_destroy (exec_reply)", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
xx_debug ("Done with exec call interception\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
consume_send_rights (thread_array_t thread_list, int thread_count)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int index;
|
|
|
|
|
|
|
|
|
|
if (!thread_count)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (index = 0; index < thread_count; index++)
|
|
|
|
|
{
|
|
|
|
|
/* Since thread kill command kills threads, don't check ret */
|
|
|
|
|
(void) mach_port_deallocate (mach_task_self (),
|
1999-07-07 22:19:36 +02:00
|
|
|
|
thread_list[index]);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* suspend/abort/resume a thread. */
|
2000-07-30 03:48:28 +02:00
|
|
|
|
setup_thread (mach_port_t thread, int what)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
if (what)
|
|
|
|
|
{
|
|
|
|
|
ret = thread_suspend (thread);
|
|
|
|
|
CHK ("setup_thread thread_suspend", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = thread_abort (thread);
|
|
|
|
|
CHK ("setup_thread thread_abort", ret);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ret = thread_resume (thread);
|
|
|
|
|
CHK ("setup_thread thread_resume", ret);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
map_slot_to_mid (int slot, thread_array_t threads, int thread_count)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
int deallocate = 0;
|
|
|
|
|
int index;
|
|
|
|
|
int mid;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!threads)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
deallocate++;
|
|
|
|
|
ret = task_threads (inferior_task, &threads, &thread_count);
|
|
|
|
|
CHK ("Can not select a thread from a dead task", ret);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (slot < 0 || slot >= thread_count)
|
|
|
|
|
{
|
|
|
|
|
if (deallocate)
|
|
|
|
|
{
|
|
|
|
|
consume_send_rights (threads, thread_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(void) vm_deallocate (mach_task_self (), (vm_address_t) threads,
|
|
|
|
|
(thread_count * sizeof (mach_port_t)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
if (slot < 0)
|
|
|
|
|
error ("invalid slot number");
|
|
|
|
|
else
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return -(slot + 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mid = map_port_name_to_mid (threads[slot], MACH_TYPE_THREAD);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (deallocate)
|
|
|
|
|
{
|
|
|
|
|
consume_send_rights (threads, thread_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(void) vm_deallocate (mach_task_self (), (vm_address_t) threads,
|
|
|
|
|
(thread_count * sizeof (mach_port_t)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return mid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
parse_thread_id (char *arg, int thread_count, int slots)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
int mid;
|
|
|
|
|
int slot;
|
|
|
|
|
int index;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (arg == 0)
|
|
|
|
|
return 0;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
while (*arg && (*arg == ' ' || *arg == '\t'))
|
|
|
|
|
arg++;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
if (!*arg)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return 0;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Currently parse MID and @SLOTNUMBER */
|
|
|
|
|
if (*arg != '@')
|
|
|
|
|
{
|
|
|
|
|
mid = atoi (arg);
|
|
|
|
|
if (mid <= 0)
|
|
|
|
|
error ("valid thread mid expected");
|
|
|
|
|
return mid;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
arg++;
|
|
|
|
|
slot = atoi (arg);
|
|
|
|
|
|
|
|
|
|
if (slot < 0)
|
|
|
|
|
error ("invalid slot number");
|
|
|
|
|
|
|
|
|
|
/* If you want slot numbers to remain slot numbers, set slots.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* Well, since 0 is reserved, return the ordinal number
|
|
|
|
|
* of the thread rather than the slot number. Awk, this
|
|
|
|
|
* counts as a kludge.
|
|
|
|
|
*/
|
|
|
|
|
if (slots)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return -(slot + 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (thread_count && slot >= thread_count)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return -(slot + 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
mid = map_slot_to_mid (slot);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return mid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* THREAD_ID 0 is special; it selects the first kernel
|
|
|
|
|
* thread from the list (i.e. SLOTNUMBER 0)
|
|
|
|
|
* This is used when starting the program with 'run' or when attaching.
|
|
|
|
|
*
|
|
|
|
|
* If FLAG is 0 the context is not changed, and the registers, frame, etc
|
|
|
|
|
* will continue to describe the old thread.
|
|
|
|
|
*
|
|
|
|
|
* If FLAG is nonzero, really select the thread.
|
|
|
|
|
* If FLAG is 2, the THREAD_ID is a slotnumber instead of a mid.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
kern_return_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
select_thread (mach_port_t task, int thread_id, int flag)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
thread_array_t thread_list;
|
|
|
|
|
int thread_count;
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
int index;
|
|
|
|
|
thread_t new_thread = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
if (thread_id < 0)
|
|
|
|
|
error ("Can't select cprocs without kernel thread");
|
|
|
|
|
|
|
|
|
|
ret = task_threads (task, &thread_list, &thread_count);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Can not select a thread from a dead task");
|
|
|
|
|
m3_kill_inferior ();
|
|
|
|
|
return KERN_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (thread_count == 0)
|
|
|
|
|
{
|
|
|
|
|
/* The task can not do anything anymore, but it still
|
|
|
|
|
* exists as a container for memory and ports.
|
|
|
|
|
*/
|
|
|
|
|
registers_changed ();
|
|
|
|
|
warning ("Task %d has no threads",
|
|
|
|
|
map_port_name_to_mid (task, MACH_TYPE_TASK));
|
|
|
|
|
current_thread = MACH_PORT_NULL;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(void) vm_deallocate (mach_task_self (),
|
|
|
|
|
(vm_address_t) thread_list,
|
|
|
|
|
(thread_count * sizeof (mach_port_t)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return KERN_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!thread_id || flag == 2)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
/* First thread or a slotnumber */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!thread_id)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
new_thread = thread_list[0];
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (thread_id < thread_count)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
new_thread = thread_list[thread_id];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(void) vm_deallocate (mach_task_self (),
|
|
|
|
|
(vm_address_t) thread_list,
|
|
|
|
|
(thread_count * sizeof (mach_port_t)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("No such thread slot number : %d", thread_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (index = 0; index < thread_count; index++)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (thread_id == map_port_name_to_mid (thread_list[index],
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_TYPE_THREAD))
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
new_thread = thread_list[index];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
index = -1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (index != -1)
|
|
|
|
|
error ("No thread with mid %d", thread_id);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Notify when the selected thread dies */
|
|
|
|
|
request_notify (new_thread, MACH_NOTIFY_DEAD_NAME, MACH_TYPE_THREAD);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
ret = vm_deallocate (mach_task_self (),
|
|
|
|
|
(vm_address_t) thread_list,
|
|
|
|
|
(thread_count * sizeof (mach_port_t)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CHK ("vm_deallocate", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
if (!flag)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
current_thread = new_thread;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
#if 0
|
|
|
|
|
if (MACH_PORT_VALID (current_thread))
|
|
|
|
|
{
|
|
|
|
|
/* Store the gdb's view of the thread we are deselecting
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* @@ I think gdb updates registers immediately when they are
|
|
|
|
|
* changed, so don't do this.
|
|
|
|
|
*/
|
|
|
|
|
ret = thread_abort (current_thread);
|
|
|
|
|
CHK ("Could not abort system calls when saving state of old thread",
|
|
|
|
|
ret);
|
|
|
|
|
target_prepare_to_store ();
|
|
|
|
|
target_store_registers (-1);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
registers_changed ();
|
|
|
|
|
|
|
|
|
|
current_thread = new_thread;
|
|
|
|
|
|
|
|
|
|
ret = thread_abort (current_thread);
|
|
|
|
|
CHK ("Could not abort system calls when selecting a thread", ret);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
stop_pc = read_pc ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
flush_cached_frames ();
|
|
|
|
|
|
|
|
|
|
select_frame (get_current_frame (), 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return KERN_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Switch to use thread named NEW_THREAD.
|
|
|
|
|
* Return it's MID
|
|
|
|
|
*/
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
switch_to_thread (thread_t new_thread)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
thread_t saved_thread = current_thread;
|
|
|
|
|
int mid;
|
|
|
|
|
|
|
|
|
|
mid = map_port_name_to_mid (new_thread,
|
|
|
|
|
MACH_TYPE_THREAD);
|
|
|
|
|
if (mid == -1)
|
|
|
|
|
warning ("Can't map thread name 0x%x to mid", new_thread);
|
|
|
|
|
else if (select_thread (inferior_task, mid, 1) != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
if (current_thread)
|
|
|
|
|
current_thread = saved_thread;
|
|
|
|
|
error ("Could not select thread %d", mid);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return mid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Do this in gdb after doing FORK but before STARTUP_INFERIOR.
|
|
|
|
|
* Note that the registers are not yet valid in the inferior task.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_trace_him (int pid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
push_target (&m3_ops);
|
|
|
|
|
|
|
|
|
|
inferior_task = task_by_pid (pid);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (inferior_task))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("Can not map Unix pid %d to Mach task", pid);
|
|
|
|
|
|
|
|
|
|
/* Clean up previous notifications and create new ones */
|
|
|
|
|
setup_notify_port (1);
|
|
|
|
|
|
|
|
|
|
/* When notification appears, the inferior task has died */
|
|
|
|
|
request_notify (inferior_task, MACH_NOTIFY_DEAD_NAME, MACH_TYPE_TASK);
|
|
|
|
|
|
|
|
|
|
emulator_present = have_emulator_p (inferior_task);
|
|
|
|
|
|
|
|
|
|
/* By default, select the first thread,
|
|
|
|
|
* If task has no threads, gives a warning
|
|
|
|
|
* Does not fetch registers, since they are not yet valid.
|
|
|
|
|
*/
|
|
|
|
|
select_thread (inferior_task, 0, 0);
|
|
|
|
|
|
|
|
|
|
inferior_exception_port = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
setup_exception_port ();
|
|
|
|
|
|
|
|
|
|
xx_debug ("Now the debugged task is created\n");
|
|
|
|
|
|
|
|
|
|
/* One trap to exec the shell, one to exec the program being debugged. */
|
|
|
|
|
intercept_exec_calls (2);
|
|
|
|
|
|
|
|
|
|
return pid;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
setup_exception_port (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_allocate (mach_task_self (),
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_PORT_RIGHT_RECEIVE,
|
|
|
|
|
&inferior_exception_port);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_allocate", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* add send right */
|
|
|
|
|
ret = mach_port_insert_right (mach_task_self (),
|
|
|
|
|
inferior_exception_port,
|
|
|
|
|
inferior_exception_port,
|
|
|
|
|
MACH_MSG_TYPE_MAKE_SEND);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_insert_right", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_move_member (mach_task_self (),
|
1999-04-16 03:35:26 +02:00
|
|
|
|
inferior_exception_port,
|
|
|
|
|
inferior_wait_port_set);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_move_member", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = task_get_special_port (inferior_task,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
TASK_EXCEPTION_PORT,
|
|
|
|
|
&inferior_old_exception_port);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("task_get_special_port(old exc)", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = task_set_special_port (inferior_task,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
TASK_EXCEPTION_PORT,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
inferior_exception_port);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("task_set_special_port", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_port_deallocate (mach_task_self (),
|
|
|
|
|
inferior_exception_port);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mack_port_deallocate", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
/* When notify appears, the inferior_task's exception
|
|
|
|
|
* port has been destroyed.
|
|
|
|
|
*
|
|
|
|
|
* Not used, since the dead_name_notification already
|
|
|
|
|
* appears when task dies.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
request_notify (inferior_exception_port,
|
|
|
|
|
MACH_NOTIFY_NO_SENDERS,
|
|
|
|
|
MACH_TYPE_EXCEPTION_PORT);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Nonzero if gdb is waiting for a message */
|
|
|
|
|
int mach_really_waiting;
|
|
|
|
|
|
|
|
|
|
/* Wait for the inferior to stop for some reason.
|
|
|
|
|
- Loop on notifications until inferior_task dies.
|
|
|
|
|
- Loop on exceptions until stopped_in_exception comes true.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(e.g. we receive a single step trace trap)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
- a message arrives to gdb's message port
|
|
|
|
|
|
|
|
|
|
There is no other way to exit this loop.
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
Returns the inferior_ptid for rest of gdb.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
Side effects: Set *OURSTATUS. */
|
2001-05-04 06:15:33 +02:00
|
|
|
|
ptid_t
|
|
|
|
|
mach_really_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
int w;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct msg
|
|
|
|
|
{
|
|
|
|
|
mach_msg_header_t header;
|
|
|
|
|
mach_msg_type_t foo;
|
|
|
|
|
int data[8000];
|
|
|
|
|
}
|
|
|
|
|
in_msg, out_msg;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Either notify (death), exception or message can stop the inferior */
|
|
|
|
|
stopped_in_exception = FALSE;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
QUIT;
|
|
|
|
|
|
|
|
|
|
stop_exception = stop_code = stop_subcode = -1;
|
|
|
|
|
stop_thread = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
mach_really_waiting = 1;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_msg (&in_msg.header, /* header */
|
|
|
|
|
MACH_RCV_MSG, /* options */
|
|
|
|
|
0, /* send size */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
sizeof (struct msg), /* receive size */
|
|
|
|
|
currently_waiting_for, /* receive name */
|
|
|
|
|
MACH_MSG_TIMEOUT_NONE,
|
|
|
|
|
MACH_PORT_NULL);
|
|
|
|
|
mach_really_waiting = 0;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_msg (receive)", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Check if we received a notify of the childs' death */
|
|
|
|
|
if (notify_server (&in_msg.header, &out_msg.header))
|
|
|
|
|
{
|
|
|
|
|
/* If inferior_task is null then the inferior has
|
|
|
|
|
gone away and we want to return to command level.
|
|
|
|
|
Otherwise it was just an informative message and we
|
|
|
|
|
need to look to see if there are any more. */
|
|
|
|
|
if (inferior_task != MACH_PORT_NULL)
|
|
|
|
|
continue;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Collect Unix exit status for gdb */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
wait3 (&w, WNOHANG, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* This mess is here to check that the rest of
|
|
|
|
|
* gdb knows that the inferior died. It also
|
|
|
|
|
* tries to hack around the fact that Mach 3.0 (mk69)
|
|
|
|
|
* unix server (ux28) does not always know what
|
|
|
|
|
* has happened to it's children when mach-magic
|
|
|
|
|
* is applied on them.
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if ((!WIFEXITED (w) && WIFSTOPPED (w)) ||
|
|
|
|
|
(WIFEXITED (w) && WEXITSTATUS (w) > 0377))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
WSETEXIT (w, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("Using exit value 0 for terminated task");
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
else if (!WIFEXITED (w))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int sig = WTERMSIG (w);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Signals cause problems. Warn the user. */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (sig != SIGKILL) /* Bad luck if garbage matches this */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("The terminating signal stuff may be nonsense");
|
|
|
|
|
else if (sig > NSIG)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
WSETEXIT (w, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("Using exit value 0 for terminated task");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
store_waitstatus (ourstatus, w);
|
2001-05-04 06:15:33 +02:00
|
|
|
|
return inferior_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hmm. Check for exception, as it was not a notification.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
exc_server() does an upcall to catch_exception_raise()
|
|
|
|
|
if this rpc is an exception. Further actions are decided
|
|
|
|
|
there.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!exc_server (&in_msg.header, &out_msg.header))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* Not an exception, check for message.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* Messages don't come from the inferior, or if they
|
|
|
|
|
* do they better be asynchronous or it will hang.
|
|
|
|
|
*/
|
|
|
|
|
if (gdb_message_server (&in_msg.header))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
error ("Unrecognized message received in mach_really_wait");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Send the reply of the exception rpc to the suspended task */
|
|
|
|
|
ret = mach_msg_send (&out_msg.header);
|
|
|
|
|
CHK ("mach_msg_send (exc reply)", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (stopped_in_exception)
|
|
|
|
|
{
|
|
|
|
|
/* Get unix state. May be changed in mach3_exception_actions() */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
wait3 (&w, WNOHANG, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
mach3_exception_actions (&w, FALSE, "Task");
|
|
|
|
|
|
|
|
|
|
store_waitstatus (ourstatus, w);
|
2001-05-04 06:15:33 +02:00
|
|
|
|
return inferior_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Called by macro DO_QUIT() in utils.c(quit).
|
|
|
|
|
* This is called just before calling error() to return to command level
|
|
|
|
|
*/
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach3_quit (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
kern_return_t ret;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (mach_really_waiting)
|
|
|
|
|
{
|
|
|
|
|
ret = task_suspend (inferior_task);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Could not suspend task for interrupt: %s",
|
|
|
|
|
mach_error_string (ret));
|
|
|
|
|
mach_really_waiting = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
must_suspend_thread = 0;
|
|
|
|
|
mach_really_waiting = 0;
|
|
|
|
|
|
|
|
|
|
mid = map_port_name_to_mid (current_thread, MACH_TYPE_THREAD);
|
|
|
|
|
if (mid == -1)
|
|
|
|
|
{
|
|
|
|
|
warning ("Selecting first existing kernel thread");
|
|
|
|
|
mid = 0;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
current_thread = MACH_PORT_NULL; /* Force setup */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
select_thread (inferior_task, mid, 1);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
/* bogus bogus bogus. It is NOT OK to quit out of target_wait. */
|
|
|
|
|
|
|
|
|
|
/* If ^C is typed when we are waiting for a message
|
|
|
|
|
* and your Unix server is able to notice that we
|
|
|
|
|
* should quit now.
|
|
|
|
|
*
|
|
|
|
|
* Called by REQUEST_QUIT() from utils.c(request_quit)
|
|
|
|
|
*/
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach3_request_quit (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (mach_really_waiting)
|
|
|
|
|
immediate_quit = 1;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Gdb message server.
|
|
|
|
|
* Currently implemented is the STOP message, that causes
|
|
|
|
|
* gdb to return to the command level like ^C had been typed from terminal.
|
|
|
|
|
*/
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
gdb_message_server (mach_msg_header_t *InP)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
int mid;
|
|
|
|
|
|
|
|
|
|
if (InP->msgh_local_port == our_message_port)
|
|
|
|
|
{
|
|
|
|
|
/* A message coming to our_message_port. Check validity */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
switch (InP->msgh_id)
|
|
|
|
|
{
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
case GDB_MESSAGE_ID_STOP:
|
|
|
|
|
ret = task_suspend (inferior_task);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
warning ("Could not suspend task for stop message: %s",
|
|
|
|
|
mach_error_string (ret));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* QUIT in mach_really_wait() loop. */
|
|
|
|
|
request_quit (0);
|
|
|
|
|
break;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
default:
|
|
|
|
|
warning ("Invalid message id %d received, ignored.",
|
|
|
|
|
InP->msgh_id);
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Message not handled by this server */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* NOTE: This is not an RPC call. It is a simpleroutine.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* This is not called from this gdb code.
|
|
|
|
|
*
|
|
|
|
|
* It may be called by another debugger to cause this
|
|
|
|
|
* debugger to enter command level:
|
|
|
|
|
*
|
|
|
|
|
* (gdb) set stop_inferior_gdb ()
|
|
|
|
|
* (gdb) continue
|
|
|
|
|
*
|
|
|
|
|
* External program "stop-gdb" implements this also.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
stop_inferior_gdb (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
/* Code generated by mig, with minor cleanups :-)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* simpleroutine stop_inferior_gdb (our_message_port : mach_port_t);
|
|
|
|
|
*/
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
mach_msg_header_t Head;
|
|
|
|
|
}
|
|
|
|
|
Request;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Request Mess;
|
|
|
|
|
|
|
|
|
|
register Request *InP = &Mess;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
InP->Head.msgh_bits = MACH_MSGH_BITS (MACH_MSG_TYPE_COPY_SEND, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* msgh_size passed as argument */
|
|
|
|
|
InP->Head.msgh_remote_port = our_message_port;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
InP->Head.msgh_local_port = MACH_PORT_NULL;
|
|
|
|
|
InP->Head.msgh_seqno = 0;
|
|
|
|
|
InP->Head.msgh_id = GDB_MESSAGE_ID_STOP;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_msg (&InP->Head,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
MACH_SEND_MSG | MACH_MSG_OPTION_NONE,
|
|
|
|
|
sizeof (Request),
|
1999-04-16 03:35:26 +02:00
|
|
|
|
0,
|
|
|
|
|
MACH_PORT_NULL,
|
|
|
|
|
MACH_MSG_TIMEOUT_NONE,
|
|
|
|
|
MACH_PORT_NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef THREAD_ALLOWED_TO_BREAK
|
|
|
|
|
/*
|
|
|
|
|
* Return 1 if the MID specifies the thread that caused the
|
|
|
|
|
* last exception.
|
|
|
|
|
* Since catch_exception_raise() selects the thread causing
|
|
|
|
|
* the last exception to current_thread, we just check that
|
|
|
|
|
* it is selected and the last exception was a breakpoint.
|
|
|
|
|
*/
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach_thread_for_breakpoint (int mid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int cmid = map_port_name_to_mid (current_thread, MACH_TYPE_THREAD);
|
|
|
|
|
|
|
|
|
|
if (mid < 0)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mid = map_slot_to_mid (-(mid + 1), 0, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (mid < 0)
|
|
|
|
|
return 0; /* Don't stop, no such slot */
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!mid || cmid == -1)
|
|
|
|
|
return 1; /* stop */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return cmid == mid && stop_exception == EXC_BREAKPOINT;
|
|
|
|
|
}
|
|
|
|
|
#endif /* THREAD_ALLOWED_TO_BREAK */
|
|
|
|
|
|
|
|
|
|
#ifdef THREAD_PARSE_ID
|
|
|
|
|
/*
|
|
|
|
|
* Map a thread id string (MID or a @SLOTNUMBER)
|
|
|
|
|
* to a thread-id.
|
|
|
|
|
*
|
|
|
|
|
* 0 matches all threads.
|
|
|
|
|
* Otherwise the meaning is defined only in this file.
|
|
|
|
|
* (mach_thread_for_breakpoint uses it)
|
|
|
|
|
*
|
|
|
|
|
* @@ This allows non-existent MIDs to be specified.
|
|
|
|
|
* It now also allows non-existent slots to be
|
|
|
|
|
* specified. (Slot numbers stored are negative,
|
|
|
|
|
* and the magnitude is one greater than the actual
|
|
|
|
|
* slot index. (Since 0 is reserved))
|
|
|
|
|
*/
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach_thread_parse_id (char *arg)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
if (arg == 0)
|
* gdbarch.sh, hp-psymtab-read.c, hpread.c, m3-nat.c, mcore-tdep.c,
mips-tdep.c, monitor.c, regcache.c, remote-es.c, ser-unix.c,
somread.c, tracepoint.c: Fix spelling errors in comments.
* gdbarch.c: Regenerate.
* gnu-nat.c (S_exception_raise_request): Fix typos and spelling
errors in strings.
* m3-nat.c (intercept_exec_calls, mach_thread_parse_id): Likewise.
* mcore-tdep.c (mcore_analyze_prologue): Likewise.
* mips-tdep.c (mips16_next_pc, _initialize_mips_tdep): Likewise.
* remote-e7000.c (e7000_start_remote): Likewise.
* remote-rdp.c (handle_swi): Likewise.
* remote-vx.c (vx_load_command): Likewise.
* sh-tdep.c (sh_do_pseudo_register): Likewise.
* sol-thread.c (td_err_string): Likewise.
* symtab.c (decode_line_2): Likewise.
-------------------------------------------------------------------
2000-10-30 22:50:58 +01:00
|
|
|
|
error ("thread id expected");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mid = parse_thread_id (arg, 0, 1);
|
|
|
|
|
|
|
|
|
|
return mid;
|
|
|
|
|
}
|
|
|
|
|
#endif /* THREAD_PARSE_ID */
|
|
|
|
|
|
|
|
|
|
#ifdef THREAD_OUTPUT_ID
|
|
|
|
|
char *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach_thread_output_id (int mid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
static char foobar[20];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (mid > 0)
|
|
|
|
|
sprintf (foobar, "mid %d", mid);
|
|
|
|
|
else if (mid < 0)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sprintf (foobar, "@%d", -(mid + 1));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
sprintf (foobar, "*any thread*");
|
|
|
|
|
|
|
|
|
|
return foobar;
|
|
|
|
|
}
|
|
|
|
|
#endif /* THREAD_OUTPUT_ID */
|
|
|
|
|
|
|
|
|
|
/* Called with hook PREPARE_TO_PROCEED() from infrun.c.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* If we have switched threads and stopped at breakpoint return 1 otherwise 0.
|
|
|
|
|
*
|
|
|
|
|
* if SELECT_IT is nonzero, reselect the thread that was active when
|
|
|
|
|
* we stopped at a breakpoint.
|
|
|
|
|
*
|
2001-04-06 19:53:39 +02:00
|
|
|
|
* Note that this implementation is potentially redundant now that
|
|
|
|
|
* default_prepare_to_proceed() has been added.
|
2001-06-06 18:31:32 +02:00
|
|
|
|
*
|
|
|
|
|
* FIXME This may not support switching threads after Ctrl-C
|
|
|
|
|
* correctly. The default implementation does support this.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*/
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach3_prepare_to_proceed (int select_it)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (stop_thread &&
|
|
|
|
|
stop_thread != current_thread &&
|
|
|
|
|
stop_exception == EXC_BREAKPOINT)
|
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!select_it)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
mid = switch_to_thread (stop_thread);
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* this stuff here is an upcall via libmach/excServer.c
|
|
|
|
|
and mach_really_wait which does the actual upcall.
|
|
|
|
|
|
|
|
|
|
The code will pass the exception to the inferior if:
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
- The task that signaled is not the inferior task
|
|
|
|
|
(e.g. when debugging another debugger)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
- The user has explicitely requested to pass on the exceptions.
|
|
|
|
|
(e.g to the default unix exception handler, which maps
|
|
|
|
|
exceptions to signals, or the user has her own exception handler)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
- If the thread that signaled is being single-stepped and it
|
|
|
|
|
has set it's own exception port and the exception is not
|
|
|
|
|
EXC_BREAKPOINT. (Maybe this is not desirable?)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
kern_return_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
catch_exception_raise (mach_port_t port, thread_t thread, task_t task,
|
|
|
|
|
int exception, int code, int subcode)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
boolean_t signal_thread;
|
|
|
|
|
int mid = map_port_name_to_mid (thread, MACH_TYPE_THREAD);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (thread))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
/* If the exception was sent and thread dies before we
|
1999-07-07 22:19:36 +02:00
|
|
|
|
receive it, THREAD will be MACH_PORT_DEAD
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
current_thread = thread = MACH_PORT_NULL;
|
|
|
|
|
error ("Received exception from nonexistent thread");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if the task died in transit.
|
|
|
|
|
* @@ Isn't the thread also invalid in such case?
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (task))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
current_thread = thread = MACH_PORT_NULL;
|
|
|
|
|
error ("Received exception from nonexistent task");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (exception < 0 || exception > MAX_EXCEPTION)
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
|
|
|
|
"catch_exception_raise: unknown exception code %d thread %d",
|
1999-08-09 23:36:23 +02:00
|
|
|
|
exception,
|
|
|
|
|
mid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (inferior_task))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("got an exception, but inferior_task is null or dead");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
stop_exception = exception;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
stop_code = code;
|
|
|
|
|
stop_subcode = subcode;
|
|
|
|
|
stop_thread = thread;
|
|
|
|
|
|
|
|
|
|
signal_thread = exception != EXC_BREAKPOINT &&
|
|
|
|
|
port == singlestepped_thread_port &&
|
|
|
|
|
MACH_PORT_VALID (thread_saved_exception_port);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* If it was not our inferior or if we want to forward
|
|
|
|
|
* the exception to the inferior's handler, do it here
|
|
|
|
|
*
|
|
|
|
|
* Note: If you have forwarded EXC_BREAKPOINT I trust you know why.
|
|
|
|
|
*/
|
|
|
|
|
if (task != inferior_task ||
|
1999-07-07 22:19:36 +02:00
|
|
|
|
signal_thread ||
|
|
|
|
|
exception_map[exception].forward)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
mach_port_t eport = inferior_old_exception_port;
|
|
|
|
|
|
|
|
|
|
if (signal_thread)
|
|
|
|
|
{
|
|
|
|
|
/*
|
1999-07-07 22:19:36 +02:00
|
|
|
|
GDB now forwards the exeption to thread's original handler,
|
|
|
|
|
since the user propably knows what he is doing.
|
|
|
|
|
Give a message, though.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*/
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach3_exception_actions ((WAITTYPE *) NULL, TRUE, "Thread");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
eport = thread_saved_exception_port;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Send the exception to the original handler */
|
|
|
|
|
ret = exception_raise (eport,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
thread,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
task,
|
|
|
|
|
exception,
|
|
|
|
|
code,
|
|
|
|
|
subcode);
|
|
|
|
|
|
|
|
|
|
(void) mach_port_deallocate (mach_task_self (), task);
|
|
|
|
|
(void) mach_port_deallocate (mach_task_self (), thread);
|
|
|
|
|
|
|
|
|
|
/* If we come here, we don't want to trace any more, since we
|
|
|
|
|
* will never stop for tracing anyway.
|
|
|
|
|
*/
|
|
|
|
|
discard_single_step (thread);
|
|
|
|
|
|
|
|
|
|
/* Do not stop the inferior */
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Now gdb handles the exception */
|
|
|
|
|
stopped_in_exception = TRUE;
|
|
|
|
|
|
|
|
|
|
ret = task_suspend (task);
|
|
|
|
|
CHK ("Error suspending inferior after exception", ret);
|
|
|
|
|
|
|
|
|
|
must_suspend_thread = 0;
|
|
|
|
|
|
|
|
|
|
if (current_thread != thread)
|
|
|
|
|
{
|
|
|
|
|
if (MACH_PORT_VALID (singlestepped_thread_port))
|
|
|
|
|
/* Cleanup discards single stepping */
|
|
|
|
|
error ("Exception from thread %d while singlestepping thread %d",
|
|
|
|
|
mid,
|
|
|
|
|
map_port_name_to_mid (current_thread, MACH_TYPE_THREAD));
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Then select the thread that caused the exception */
|
|
|
|
|
if (select_thread (inferior_task, mid, 0) != KERN_SUCCESS)
|
|
|
|
|
error ("Could not select thread %d causing exception", mid);
|
|
|
|
|
else
|
|
|
|
|
warning ("Gdb selected thread %d", mid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If we receive an exception that is not breakpoint
|
|
|
|
|
* exception, we interrupt the single step and return to
|
|
|
|
|
* debugger. Trace condition is cleared.
|
|
|
|
|
*/
|
|
|
|
|
if (MACH_PORT_VALID (singlestepped_thread_port))
|
|
|
|
|
{
|
|
|
|
|
if (stop_exception != EXC_BREAKPOINT)
|
|
|
|
|
warning ("Single step interrupted by exception");
|
|
|
|
|
else if (port == singlestepped_thread_port)
|
|
|
|
|
{
|
|
|
|
|
/* Single step exception occurred, remove trace bit
|
|
|
|
|
* and return to gdb.
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (current_thread))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("Single stepped thread is not valid");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Resume threads, but leave the task suspended */
|
|
|
|
|
resume_all_threads (0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
warning ("Breakpoint while single stepping?");
|
|
|
|
|
|
|
|
|
|
discard_single_step (current_thread);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
(void) mach_port_deallocate (mach_task_self (), task);
|
|
|
|
|
(void) mach_port_deallocate (mach_task_self (), thread);
|
|
|
|
|
|
|
|
|
|
return KERN_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
port_valid (mach_port_t port, int mask)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
mach_port_type_t type;
|
|
|
|
|
|
|
|
|
|
ret = mach_port_type (mach_task_self (),
|
|
|
|
|
port,
|
|
|
|
|
&type);
|
|
|
|
|
if (ret != KERN_SUCCESS || (type & mask) != mask)
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* @@ No vm read cache implemented yet */
|
|
|
|
|
boolean_t vm_read_cache_valid = FALSE;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Read inferior task's LEN bytes from ADDR and copy it to MYADDR
|
|
|
|
|
* in gdb's address space.
|
|
|
|
|
*
|
|
|
|
|
* Return 0 on failure; number of bytes read otherwise.
|
|
|
|
|
*/
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach3_read_inferior (CORE_ADDR addr, char *myaddr, int length)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
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_memory;
|
|
|
|
|
int copy_count;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Get memory from inferior with page aligned addresses */
|
|
|
|
|
ret = vm_read (inferior_task,
|
|
|
|
|
low_address,
|
|
|
|
|
aligned_length,
|
|
|
|
|
&copied_memory,
|
|
|
|
|
©_count);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
/* the problem is that the inferior might be killed for whatever reason
|
|
|
|
|
* before we go to mach_really_wait. This is one place that ought to
|
|
|
|
|
* catch many of those errors.
|
|
|
|
|
* @@ A better fix would be to make all external events to GDB
|
|
|
|
|
* to arrive via a SINGLE port set. (Including user input!)
|
|
|
|
|
*/
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!port_valid (inferior_task, MACH_PORT_TYPE_SEND))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
m3_kill_inferior ();
|
|
|
|
|
error ("Inferior killed (task port invalid)");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
#ifdef OSF
|
|
|
|
|
extern int errno;
|
|
|
|
|
/* valprint.c gives nicer format if this does not
|
|
|
|
|
screw it. Eamonn seems to like this, so I enable
|
|
|
|
|
it if OSF is defined...
|
|
|
|
|
*/
|
|
|
|
|
warning ("[read inferior %x failed: %s]",
|
|
|
|
|
addr, mach_error_string (ret));
|
|
|
|
|
errno = 0;
|
|
|
|
|
#endif
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
memcpy (myaddr, (char *) addr - low_address + copied_memory, length);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = vm_deallocate (mach_task_self (),
|
|
|
|
|
copied_memory,
|
|
|
|
|
copy_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach3_read_inferior vm_deallocate failed", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define CHK_GOTO_OUT(str,ret) \
|
|
|
|
|
do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0)
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct vm_region_list
|
|
|
|
|
{
|
1999-04-16 03:35:26 +02:00
|
|
|
|
struct vm_region_list *next;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
vm_prot_t protection;
|
|
|
|
|
vm_address_t start;
|
|
|
|
|
vm_size_t length;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
};
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct obstack region_obstack;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Write inferior task's LEN bytes from ADDR and copy it to MYADDR
|
|
|
|
|
* in gdb's address space.
|
|
|
|
|
*/
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach3_write_inferior (CORE_ADDR addr, char *myaddr, int length)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
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_memory;
|
|
|
|
|
int copy_count;
|
|
|
|
|
int deallocate = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
char *errstr = "Bug in mach3_write_inferior";
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
struct vm_region_list *region_element;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct vm_region_list *region_head = (struct vm_region_list *) NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Get memory from inferior with page aligned addresses */
|
|
|
|
|
ret = vm_read (inferior_task,
|
|
|
|
|
low_address,
|
|
|
|
|
aligned_length,
|
|
|
|
|
&copied_memory,
|
|
|
|
|
©_count);
|
|
|
|
|
CHK_GOTO_OUT ("mach3_write_inferior vm_read failed", ret);
|
|
|
|
|
|
|
|
|
|
deallocate++;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
memcpy ((char *) addr - low_address + copied_memory, myaddr, length);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
obstack_init (®ion_obstack);
|
|
|
|
|
|
|
|
|
|
/* Do writes atomically.
|
|
|
|
|
* First check for holes and unwritable memory.
|
|
|
|
|
*/
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
vm_size_t remaining_length = aligned_length;
|
|
|
|
|
vm_address_t region_address = low_address;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
struct vm_region_list *scan;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
while (region_address < low_address + aligned_length)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
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;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
vm_size_t region_length = remaining_length;
|
|
|
|
|
vm_address_t old_address = region_address;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = vm_region (inferior_task,
|
|
|
|
|
®ion_address,
|
|
|
|
|
®ion_length,
|
|
|
|
|
&protection,
|
|
|
|
|
&max_protection,
|
|
|
|
|
&inheritance,
|
|
|
|
|
&shared,
|
|
|
|
|
&object_name,
|
|
|
|
|
&offset);
|
|
|
|
|
CHK_GOTO_OUT ("vm_region failed", ret);
|
|
|
|
|
|
|
|
|
|
/* Check for holes in memory */
|
|
|
|
|
if (old_address != region_address)
|
|
|
|
|
{
|
|
|
|
|
warning ("No memory at 0x%x. Nothing written",
|
|
|
|
|
old_address);
|
|
|
|
|
ret = KERN_SUCCESS;
|
|
|
|
|
length = 0;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!(max_protection & VM_PROT_WRITE))
|
|
|
|
|
{
|
|
|
|
|
warning ("Memory at address 0x%x is unwritable. Nothing written",
|
|
|
|
|
old_address);
|
|
|
|
|
ret = KERN_SUCCESS;
|
|
|
|
|
length = 0;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Chain the regions for later use */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
region_element =
|
1999-04-16 03:35:26 +02:00
|
|
|
|
(struct vm_region_list *)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
obstack_alloc (®ion_obstack, sizeof (struct vm_region_list));
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
region_element->protection = protection;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
region_element->start = region_address;
|
|
|
|
|
region_element->length = region_length;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Chain the regions along with protections */
|
|
|
|
|
region_element->next = region_head;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
region_head = region_element;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
region_address += region_length;
|
|
|
|
|
remaining_length = remaining_length - region_length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If things fail after this, we give up.
|
|
|
|
|
* Somebody is messing up inferior_task's mappings.
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Enable writes to the chained vm regions */
|
|
|
|
|
for (scan = region_head; scan; scan = scan->next)
|
|
|
|
|
{
|
|
|
|
|
boolean_t protection_changed = FALSE;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (!(scan->protection & VM_PROT_WRITE))
|
|
|
|
|
{
|
|
|
|
|
ret = vm_protect (inferior_task,
|
|
|
|
|
scan->start,
|
|
|
|
|
scan->length,
|
|
|
|
|
FALSE,
|
|
|
|
|
scan->protection | VM_PROT_WRITE);
|
|
|
|
|
CHK_GOTO_OUT ("vm_protect: enable write failed", ret);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = vm_write (inferior_task,
|
|
|
|
|
low_address,
|
|
|
|
|
copied_memory,
|
|
|
|
|
aligned_length);
|
|
|
|
|
CHK_GOTO_OUT ("vm_write failed", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Set up the original region protections, if they were changed */
|
|
|
|
|
for (scan = region_head; scan; scan = scan->next)
|
|
|
|
|
{
|
|
|
|
|
boolean_t protection_changed = FALSE;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (!(scan->protection & VM_PROT_WRITE))
|
|
|
|
|
{
|
|
|
|
|
ret = vm_protect (inferior_task,
|
|
|
|
|
scan->start,
|
|
|
|
|
scan->length,
|
|
|
|
|
FALSE,
|
|
|
|
|
scan->protection);
|
|
|
|
|
CHK_GOTO_OUT ("vm_protect: enable write failed", ret);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
out:
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (deallocate)
|
|
|
|
|
{
|
|
|
|
|
obstack_free (®ion_obstack, 0);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
(void) vm_deallocate (mach_task_self (),
|
|
|
|
|
copied_memory,
|
|
|
|
|
copy_count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("%s %s", errstr, mach_error_string (ret));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return length;
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-15 09:08:11 +02:00
|
|
|
|
/* Return 0 on failure, number of bytes handled otherwise. TARGET is
|
|
|
|
|
ignored. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static int
|
2000-09-15 09:08:11 +02:00
|
|
|
|
m3_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
|
|
|
|
|
struct target_ops *target)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int result;
|
|
|
|
|
|
|
|
|
|
if (write)
|
|
|
|
|
result = mach3_write_inferior (memaddr, myaddr, len);
|
|
|
|
|
else
|
1999-07-07 22:19:36 +02:00
|
|
|
|
result = mach3_read_inferior (memaddr, myaddr, len);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static char *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
translate_state (int state)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case TH_STATE_RUNNING:
|
|
|
|
|
return ("R");
|
|
|
|
|
case TH_STATE_STOPPED:
|
|
|
|
|
return ("S");
|
|
|
|
|
case TH_STATE_WAITING:
|
|
|
|
|
return ("W");
|
|
|
|
|
case TH_STATE_UNINTERRUPTIBLE:
|
|
|
|
|
return ("U");
|
|
|
|
|
case TH_STATE_HALTED:
|
|
|
|
|
return ("H");
|
|
|
|
|
default:
|
|
|
|
|
return ("?");
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
translate_cstate (int state)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
case CPROC_RUNNING:
|
|
|
|
|
return "R";
|
|
|
|
|
case CPROC_SWITCHING:
|
|
|
|
|
return "S";
|
|
|
|
|
case CPROC_BLOCKED:
|
|
|
|
|
return "B";
|
|
|
|
|
case CPROC_CONDWAIT:
|
|
|
|
|
return "C";
|
|
|
|
|
case CPROC_CONDWAIT | CPROC_SWITCHING:
|
|
|
|
|
return "CS";
|
|
|
|
|
default:
|
|
|
|
|
return "?";
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* type == MACH_MSG_TYPE_COPY_SEND || type == MACH_MSG_TYPE_MAKE_SEND */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t /* no mach_port_name_t found in include files. */
|
2000-07-30 03:48:28 +02:00
|
|
|
|
map_inferior_port_name (mach_port_t inferior_name, mach_msg_type_name_t type)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mach_msg_type_name_t acquired;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t iport;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = mach_port_extract_right (inferior_task,
|
|
|
|
|
inferior_name,
|
|
|
|
|
type,
|
|
|
|
|
&iport,
|
|
|
|
|
&acquired);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("mach_port_extract_right (map_inferior_port_name)", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (acquired != MACH_MSG_TYPE_PORT_SEND)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
error ("Incorrect right extracted, (map_inferior_port_name)");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_port_deallocate (mach_task_self (),
|
|
|
|
|
iport);
|
|
|
|
|
CHK ("Deallocating mapped port (map_inferior_port_name)", ret);
|
|
|
|
|
|
|
|
|
|
return iport;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Naming convention:
|
|
|
|
|
* Always return user defined name if found.
|
|
|
|
|
* _K == A kernel thread with no matching CPROC
|
|
|
|
|
* _C == A cproc with no current cthread
|
|
|
|
|
* _t == A cthread with no user defined name
|
|
|
|
|
*
|
|
|
|
|
* The digits that follow the _names are the SLOT number of the
|
|
|
|
|
* kernel thread if there is such a thing, otherwise just a negation
|
|
|
|
|
* of the sequential number of such cprocs.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static char buf[7];
|
|
|
|
|
|
|
|
|
|
static char *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
get_thread_name (gdb_thread_t one_cproc, int id)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (one_cproc)
|
|
|
|
|
if (one_cproc->cthread == NULL)
|
|
|
|
|
{
|
|
|
|
|
/* cproc not mapped to any cthread */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sprintf (buf, "_C%d", id);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
else if (!one_cproc->cthread->name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
/* cproc and cthread, but no name */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sprintf (buf, "_t%d", id);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return (char *) (one_cproc->cthread->name);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (id < 0)
|
|
|
|
|
warning ("Inconsistency in thread name id %d", id);
|
|
|
|
|
|
|
|
|
|
/* Kernel thread without cproc */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sprintf (buf, "_K%d", id);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2000-09-15 09:08:11 +02:00
|
|
|
|
fetch_thread_info (mach_port_t task, gdb_thread_t *mthreads_out)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_array_t th_table;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int th_count;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
gdb_thread_t mthreads = NULL;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int index;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = task_threads (task, &th_table, &th_count);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Error getting inferior's thread list:%s",
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_error_string (ret));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
m3_kill_inferior ();
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mthreads = (gdb_thread_t)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
obstack_alloc
|
|
|
|
|
(cproc_obstack,
|
|
|
|
|
th_count * sizeof (struct gdb_thread));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
for (index = 0; index < th_count; index++)
|
|
|
|
|
{
|
|
|
|
|
thread_t saved_thread = MACH_PORT_NULL;
|
|
|
|
|
int mid;
|
|
|
|
|
|
|
|
|
|
if (must_suspend_thread)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
setup_thread (th_table[index], 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (th_table[index] != current_thread)
|
|
|
|
|
{
|
|
|
|
|
saved_thread = current_thread;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
mid = switch_to_thread (th_table[index]);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mthreads[index].name = th_table[index];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mthreads[index].cproc = NULL; /* map_cprocs_to_kernel_threads() */
|
|
|
|
|
mthreads[index].in_emulator = FALSE;
|
|
|
|
|
mthreads[index].slotid = index;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mthreads[index].sp = read_register (SP_REGNUM);
|
|
|
|
|
mthreads[index].fp = read_register (FP_REGNUM);
|
|
|
|
|
mthreads[index].pc = read_pc ();
|
|
|
|
|
|
|
|
|
|
if (MACH_PORT_VALID (saved_thread))
|
|
|
|
|
mid = switch_to_thread (saved_thread);
|
|
|
|
|
|
|
|
|
|
if (must_suspend_thread)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
setup_thread (th_table[index], 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
consume_send_rights (th_table, th_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = vm_deallocate (mach_task_self (), (vm_address_t) th_table,
|
|
|
|
|
(th_count * sizeof (mach_port_t)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Error trying to deallocate thread list : %s",
|
|
|
|
|
mach_error_string (ret));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*mthreads_out = mthreads;
|
|
|
|
|
|
|
|
|
|
return th_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Current emulator always saves the USP on top of
|
|
|
|
|
* emulator stack below struct emul_stack_top stuff.
|
|
|
|
|
*/
|
|
|
|
|
CORE_ADDR
|
2000-07-30 03:48:28 +02:00
|
|
|
|
fetch_usp_from_emulator_stack (CORE_ADDR sp)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
CORE_ADDR stack_pointer;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sp = (sp & ~(EMULATOR_STACK_SIZE - 1)) +
|
|
|
|
|
EMULATOR_STACK_SIZE - sizeof (struct emul_stack_top);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (mach3_read_inferior (sp,
|
|
|
|
|
&stack_pointer,
|
|
|
|
|
sizeof (CORE_ADDR)) != sizeof (CORE_ADDR))
|
|
|
|
|
{
|
|
|
|
|
warning ("Can't read user sp from emulator stack address 0x%x", sp);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return stack_pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef MK67
|
|
|
|
|
|
|
|
|
|
/* get_emulation_vector() interface was changed after mk67 */
|
|
|
|
|
#define EMUL_VECTOR_COUNT 400 /* Value does not matter too much */
|
|
|
|
|
|
|
|
|
|
#endif /* MK67 */
|
|
|
|
|
|
|
|
|
|
/* Check if the emulator exists at task's address space.
|
|
|
|
|
*/
|
|
|
|
|
boolean_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
have_emulator_p (task_t task)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#ifndef EMUL_VECTOR_COUNT
|
1999-07-07 22:19:36 +02:00
|
|
|
|
vm_offset_t *emulation_vector;
|
|
|
|
|
int n;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#else
|
1999-07-07 22:19:36 +02:00
|
|
|
|
vm_offset_t emulation_vector[EMUL_VECTOR_COUNT];
|
|
|
|
|
int n = EMUL_VECTOR_COUNT;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int i;
|
|
|
|
|
int vector_start;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = task_get_emulation_vector (task,
|
|
|
|
|
&vector_start,
|
|
|
|
|
#ifndef EMUL_VECTOR_COUNT
|
|
|
|
|
&emulation_vector,
|
|
|
|
|
#else
|
|
|
|
|
emulation_vector,
|
|
|
|
|
#endif
|
|
|
|
|
&n);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("task_get_emulation_vector", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
xx_debug ("%d vectors from %d at 0x%08x\n",
|
|
|
|
|
n, vector_start, emulation_vector);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
vm_offset_t entry = emulation_vector[i];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (EMULATOR_BASE <= entry && entry <= EMULATOR_END)
|
|
|
|
|
return TRUE;
|
|
|
|
|
else if (entry)
|
|
|
|
|
{
|
|
|
|
|
static boolean_t informed = FALSE;
|
|
|
|
|
if (!informed)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
warning ("Emulation vector address 0x08%x outside emulator space",
|
|
|
|
|
entry);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
informed = TRUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Map cprocs to kernel threads and vice versa. */
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
map_cprocs_to_kernel_threads (gdb_thread_t cprocs, gdb_thread_t mthreads,
|
|
|
|
|
int thread_count)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int index;
|
|
|
|
|
gdb_thread_t scan;
|
|
|
|
|
boolean_t all_mapped = TRUE;
|
|
|
|
|
LONGEST stack_base;
|
|
|
|
|
LONGEST stack_size;
|
|
|
|
|
|
|
|
|
|
for (scan = cprocs; scan; scan = scan->next)
|
|
|
|
|
{
|
|
|
|
|
/* Default to: no kernel thread for this cproc */
|
|
|
|
|
scan->reverse_map = -1;
|
|
|
|
|
|
|
|
|
|
/* Check if the cproc is found by its stack */
|
|
|
|
|
for (index = 0; index < thread_count; index++)
|
|
|
|
|
{
|
|
|
|
|
stack_base =
|
|
|
|
|
extract_signed_integer (scan->raw_cproc + CPROC_BASE_OFFSET,
|
|
|
|
|
CPROC_BASE_SIZE);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
stack_size =
|
1999-04-16 03:35:26 +02:00
|
|
|
|
extract_signed_integer (scan->raw_cproc + CPROC_SIZE_OFFSET,
|
|
|
|
|
CPROC_SIZE_SIZE);
|
|
|
|
|
if ((mthreads + index)->sp > stack_base &&
|
|
|
|
|
(mthreads + index)->sp <= stack_base + stack_size)
|
|
|
|
|
{
|
|
|
|
|
(mthreads + index)->cproc = scan;
|
|
|
|
|
scan->reverse_map = index;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
all_mapped &= (scan->reverse_map != -1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check for threads that are currently in the emulator.
|
|
|
|
|
* If so, they have a different stack, and the still unmapped
|
|
|
|
|
* cprocs may well get mapped to these threads.
|
|
|
|
|
*
|
|
|
|
|
* If:
|
|
|
|
|
* - cproc stack does not match any kernel thread stack pointer
|
|
|
|
|
* - there is at least one extra kernel thread
|
|
|
|
|
* that has no cproc mapped above.
|
|
|
|
|
* - some kernel thread stack pointer points to emulator space
|
|
|
|
|
* then we find the user stack pointer saved in the emulator
|
|
|
|
|
* stack, and try to map that to the cprocs.
|
|
|
|
|
*
|
|
|
|
|
* Also set in_emulator for kernel threads.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
*/
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (emulator_present)
|
|
|
|
|
{
|
|
|
|
|
for (index = 0; index < thread_count; index++)
|
|
|
|
|
{
|
|
|
|
|
CORE_ADDR emul_sp;
|
|
|
|
|
CORE_ADDR usp;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
gdb_thread_t mthread = (mthreads + index);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
emul_sp = mthread->sp;
|
|
|
|
|
|
|
|
|
|
if (mthread->cproc == NULL &&
|
|
|
|
|
EMULATOR_BASE <= emul_sp && emul_sp <= EMULATOR_END)
|
|
|
|
|
{
|
|
|
|
|
mthread->in_emulator = emulator_present;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (!all_mapped && cprocs)
|
|
|
|
|
{
|
|
|
|
|
usp = fetch_usp_from_emulator_stack (emul_sp);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* @@ Could be more accurate */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!usp)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("Zero stack pointer read from emulator?");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Try to match this stack pointer to the cprocs that
|
|
|
|
|
* don't yet have a kernel thread.
|
|
|
|
|
*/
|
|
|
|
|
for (scan = cprocs; scan; scan = scan->next)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Check is this unmapped CPROC stack contains
|
|
|
|
|
* the user stack pointer saved in the
|
|
|
|
|
* emulator.
|
|
|
|
|
*/
|
|
|
|
|
if (scan->reverse_map == -1)
|
|
|
|
|
{
|
|
|
|
|
stack_base =
|
|
|
|
|
extract_signed_integer
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(scan->raw_cproc + CPROC_BASE_OFFSET,
|
|
|
|
|
CPROC_BASE_SIZE);
|
|
|
|
|
stack_size =
|
1999-04-16 03:35:26 +02:00
|
|
|
|
extract_signed_integer
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(scan->raw_cproc + CPROC_SIZE_OFFSET,
|
|
|
|
|
CPROC_SIZE_SIZE);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (usp > stack_base &&
|
|
|
|
|
usp <= stack_base + stack_size)
|
|
|
|
|
{
|
|
|
|
|
mthread->cproc = scan;
|
|
|
|
|
scan->reverse_map = index;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Format of the thread_list command
|
|
|
|
|
*
|
1999-07-07 22:19:36 +02:00
|
|
|
|
* slot mid sel name emul ks susp cstate wired address
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*/
|
|
|
|
|
#define TL_FORMAT "%-2.2s %5d%c %-10.10s %1.1s%s%-5.5s %-2.2s %-5.5s "
|
|
|
|
|
|
|
|
|
|
#define TL_HEADER "\n@ MID Name KState CState Where\n"
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
print_tl_address (struct ui_file *stream, CORE_ADDR pc)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!lookup_minimal_symbol_by_pc (pc))
|
|
|
|
|
fprintf_filtered (stream, local_hex_format (), pc);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
extern int addressprint;
|
|
|
|
|
extern int asm_demangle;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int store = addressprint;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
addressprint = 0;
|
|
|
|
|
print_address_symbolic (pc, stream, asm_demangle, "");
|
|
|
|
|
addressprint = store;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For thread names, but also for gdb_message_port external name */
|
|
|
|
|
#define MAX_NAME_LEN 50
|
|
|
|
|
|
|
|
|
|
/* Returns the address of variable NAME or 0 if not found */
|
|
|
|
|
CORE_ADDR
|
2000-07-30 03:48:28 +02:00
|
|
|
|
lookup_address_of_variable (char *name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct symbol *sym;
|
|
|
|
|
CORE_ADDR symaddr = 0;
|
|
|
|
|
struct minimal_symbol *msymbol;
|
|
|
|
|
|
|
|
|
|
sym = lookup_symbol (name,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(struct block *) NULL,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
VAR_NAMESPACE,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(int *) NULL,
|
|
|
|
|
(struct symtab **) NULL);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (sym)
|
|
|
|
|
symaddr = SYMBOL_VALUE (sym);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!symaddr)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
msymbol = lookup_minimal_symbol (name, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
if (msymbol && msymbol->type == mst_data)
|
|
|
|
|
symaddr = SYMBOL_VALUE_ADDRESS (msymbol);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return symaddr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gdb_thread_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
get_cprocs (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
gdb_thread_t cproc_head;
|
|
|
|
|
gdb_thread_t cproc_copy;
|
|
|
|
|
CORE_ADDR their_cprocs;
|
2000-08-09 22:09:01 +02:00
|
|
|
|
char *buf;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
char *name;
|
|
|
|
|
cthread_t cthread;
|
|
|
|
|
CORE_ADDR symaddr;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
2000-08-09 22:09:01 +02:00
|
|
|
|
buf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
symaddr = lookup_address_of_variable ("cproc_list");
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!symaddr)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
/* cproc_list is not in a file compiled with debugging
|
1999-07-07 22:19:36 +02:00
|
|
|
|
symbols, but don't give up yet */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
symaddr = lookup_address_of_variable ("cprocs");
|
|
|
|
|
|
|
|
|
|
if (symaddr)
|
|
|
|
|
{
|
|
|
|
|
static int informed = 0;
|
|
|
|
|
if (!informed)
|
|
|
|
|
{
|
|
|
|
|
informed++;
|
|
|
|
|
warning ("Your program is loaded with an old threads library.");
|
|
|
|
|
warning ("GDB does not know the old form of threads");
|
|
|
|
|
warning ("so things may not work.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Stripped or no -lthreads loaded or "cproc_list" is in wrong segment. */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!symaddr)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
/* Get the address of the first cproc in the task */
|
|
|
|
|
if (!mach3_read_inferior (symaddr,
|
|
|
|
|
buf,
|
|
|
|
|
TARGET_PTR_BIT / HOST_CHAR_BIT))
|
|
|
|
|
error ("Can't read cproc master list at address (0x%x).", symaddr);
|
|
|
|
|
their_cprocs = extract_address (buf, TARGET_PTR_BIT / HOST_CHAR_BIT);
|
|
|
|
|
|
|
|
|
|
/* Scan the CPROCs in the task.
|
|
|
|
|
CPROCs are chained with LIST field, not NEXT field, which
|
|
|
|
|
chains mutexes, condition variables and queues */
|
|
|
|
|
|
|
|
|
|
cproc_head = NULL;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
while (their_cprocs != (CORE_ADDR) 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
CORE_ADDR cproc_copy_incarnation;
|
|
|
|
|
cproc_copy = (gdb_thread_t) obstack_alloc (cproc_obstack,
|
|
|
|
|
sizeof (struct gdb_thread));
|
|
|
|
|
|
|
|
|
|
if (!mach3_read_inferior (their_cprocs,
|
|
|
|
|
&cproc_copy->raw_cproc[0],
|
|
|
|
|
CPROC_SIZE))
|
1999-07-07 22:19:36 +02:00
|
|
|
|
error ("Can't read next cproc at 0x%x.", their_cprocs);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
their_cprocs =
|
|
|
|
|
extract_address (cproc_copy->raw_cproc + CPROC_LIST_OFFSET,
|
|
|
|
|
CPROC_LIST_SIZE);
|
|
|
|
|
cproc_copy_incarnation =
|
|
|
|
|
extract_address (cproc_copy->raw_cproc + CPROC_INCARNATION_OFFSET,
|
|
|
|
|
CPROC_INCARNATION_SIZE);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (cproc_copy_incarnation == (CORE_ADDR) 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
cproc_copy->cthread = NULL;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* This CPROC has an attached CTHREAD. Get its name */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
cthread = (cthread_t) obstack_alloc (cproc_obstack,
|
|
|
|
|
sizeof (struct cthread));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (!mach3_read_inferior (cproc_copy_incarnation,
|
|
|
|
|
cthread,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sizeof (struct cthread)))
|
|
|
|
|
error ("Can't read next thread at 0x%x.",
|
|
|
|
|
cproc_copy_incarnation);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
cproc_copy->cthread = cthread;
|
|
|
|
|
|
|
|
|
|
if (cthread->name)
|
|
|
|
|
{
|
|
|
|
|
name = (char *) obstack_alloc (cproc_obstack, MAX_NAME_LEN);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!mach3_read_inferior (cthread->name, name, MAX_NAME_LEN))
|
|
|
|
|
error ("Can't read next thread's name at 0x%x.", cthread->name);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
cthread->name = name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* insert in front */
|
|
|
|
|
cproc_copy->next = cproc_head;
|
|
|
|
|
cproc_head = cproc_copy;
|
|
|
|
|
}
|
|
|
|
|
return cproc_head;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef FETCH_CPROC_STATE
|
|
|
|
|
/*
|
|
|
|
|
* Check if your machine does not grok the way this routine
|
|
|
|
|
* fetches the FP,PC and SP of a cproc that is not
|
|
|
|
|
* currently attached to any kernel thread (e.g. its cproc.context
|
|
|
|
|
* field points to the place in stack where the context
|
|
|
|
|
* is saved).
|
|
|
|
|
*
|
|
|
|
|
* If it doesn't, define your own routine.
|
|
|
|
|
*/
|
|
|
|
|
#define FETCH_CPROC_STATE(mth) mach3_cproc_state (mth)
|
|
|
|
|
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach3_cproc_state (gdb_thread_t mthread)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int context;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!mthread || !mthread->cproc)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
context = extract_signed_integer
|
|
|
|
|
(mthread->cproc->raw_cproc + CPROC_CONTEXT_OFFSET,
|
|
|
|
|
CPROC_CONTEXT_SIZE);
|
|
|
|
|
if (context == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
mthread->sp = context + MACHINE_CPROC_SP_OFFSET;
|
|
|
|
|
|
|
|
|
|
if (mach3_read_inferior (context + MACHINE_CPROC_PC_OFFSET,
|
|
|
|
|
&mthread->pc,
|
|
|
|
|
sizeof (CORE_ADDR)) != sizeof (CORE_ADDR))
|
|
|
|
|
{
|
|
|
|
|
warning ("Can't read cproc pc from inferior");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mach3_read_inferior (context + MACHINE_CPROC_FP_OFFSET,
|
|
|
|
|
&mthread->fp,
|
|
|
|
|
sizeof (CORE_ADDR)) != sizeof (CORE_ADDR))
|
|
|
|
|
{
|
|
|
|
|
warning ("Can't read cproc fp from inferior");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#endif /* FETCH_CPROC_STATE */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
thread_list_command (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
thread_basic_info_data_t ths;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int thread_count;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
gdb_thread_t cprocs;
|
|
|
|
|
gdb_thread_t scan;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int index;
|
|
|
|
|
char *name;
|
|
|
|
|
char selected;
|
|
|
|
|
char *wired;
|
|
|
|
|
int infoCnt;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
kern_return_t ret;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_t mid_or_port;
|
|
|
|
|
gdb_thread_t their_threads;
|
|
|
|
|
gdb_thread_t kthread;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
int neworder = 1;
|
|
|
|
|
|
|
|
|
|
char *fmt = "There are %d kernel threads in task %d.\n";
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
int tmid = map_port_name_to_mid (inferior_task, MACH_TYPE_TASK);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_ERROR_NO_INFERIOR;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_count = fetch_thread_info (inferior_task,
|
|
|
|
|
&their_threads);
|
|
|
|
|
if (thread_count == -1)
|
|
|
|
|
return;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (thread_count == 1)
|
|
|
|
|
fmt = "There is %d kernel thread in task %d.\n";
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
printf_filtered (fmt, thread_count, tmid);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
puts_filtered (TL_HEADER);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
cprocs = get_cprocs ();
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
map_cprocs_to_kernel_threads (cprocs, their_threads, thread_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
for (scan = cprocs; scan; scan = scan->next)
|
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
char buf[10];
|
|
|
|
|
char slot[3];
|
|
|
|
|
int cproc_state =
|
1999-07-07 22:19:36 +02:00
|
|
|
|
extract_signed_integer
|
|
|
|
|
(scan->raw_cproc + CPROC_STATE_OFFSET, CPROC_STATE_SIZE);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
selected = ' ';
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* a wired cproc? */
|
|
|
|
|
wired = (extract_address (scan->raw_cproc + CPROC_WIRED_OFFSET,
|
|
|
|
|
CPROC_WIRED_SIZE)
|
|
|
|
|
? "wired" : "");
|
|
|
|
|
|
|
|
|
|
if (scan->reverse_map != -1)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kthread = (their_threads + scan->reverse_map);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kthread = NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (kthread)
|
|
|
|
|
{
|
|
|
|
|
/* These cprocs have a kernel thread */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mid = map_port_name_to_mid (kthread->name, MACH_TYPE_THREAD);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
infoCnt = THREAD_BASIC_INFO_COUNT;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = thread_info (kthread->name,
|
|
|
|
|
THREAD_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(thread_info_t) & ths,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&infoCnt);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Unable to get basic info on thread %d : %s",
|
|
|
|
|
mid,
|
|
|
|
|
mach_error_string (ret));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Who is the first to have more than 100 threads */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sprintf (slot, "%d", kthread->slotid % 100);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (kthread->name == current_thread)
|
|
|
|
|
selected = '*';
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ths.suspend_count)
|
|
|
|
|
sprintf (buf, "%d", ths.suspend_count);
|
|
|
|
|
else
|
|
|
|
|
buf[0] = '\000';
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
if (ths.flags & TH_FLAGS_SWAPPED)
|
|
|
|
|
strcat (buf, "S");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (ths.flags & TH_FLAGS_IDLE)
|
|
|
|
|
strcat (buf, "I");
|
|
|
|
|
|
|
|
|
|
printf_filtered (TL_FORMAT,
|
|
|
|
|
slot,
|
|
|
|
|
mid,
|
|
|
|
|
selected,
|
|
|
|
|
get_thread_name (scan, kthread->slotid),
|
|
|
|
|
kthread->in_emulator ? "E" : "",
|
|
|
|
|
translate_state (ths.run_state),
|
|
|
|
|
buf,
|
|
|
|
|
translate_cstate (cproc_state),
|
|
|
|
|
wired);
|
|
|
|
|
print_tl_address (gdb_stdout, kthread->pc);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* These cprocs don't have a kernel thread.
|
|
|
|
|
* find out the calling frame with
|
|
|
|
|
* FETCH_CPROC_STATE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
struct gdb_thread state;
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
/* jtv -> emcmanus: why do you want this here? */
|
|
|
|
|
if (scan->incarnation == NULL)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
continue; /* EMcM */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
printf_filtered (TL_FORMAT,
|
|
|
|
|
"-",
|
|
|
|
|
-neworder, /* Pseudo MID */
|
|
|
|
|
selected,
|
|
|
|
|
get_thread_name (scan, -neworder),
|
|
|
|
|
"",
|
|
|
|
|
"-", /* kernel state */
|
|
|
|
|
"",
|
|
|
|
|
translate_cstate (cproc_state),
|
|
|
|
|
"");
|
|
|
|
|
state.cproc = scan;
|
|
|
|
|
|
|
|
|
|
if (FETCH_CPROC_STATE (&state) == -1)
|
|
|
|
|
puts_filtered ("???");
|
|
|
|
|
else
|
|
|
|
|
print_tl_address (gdb_stdout, state.pc);
|
|
|
|
|
|
|
|
|
|
neworder++;
|
|
|
|
|
}
|
|
|
|
|
puts_filtered ("\n");
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Scan for kernel threads without cprocs */
|
|
|
|
|
for (index = 0; index < thread_count; index++)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!their_threads[index].cproc)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int mid;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
char buf[10];
|
|
|
|
|
char slot[3];
|
|
|
|
|
|
|
|
|
|
mach_port_t name = their_threads[index].name;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mid = map_port_name_to_mid (name, MACH_TYPE_THREAD);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
infoCnt = THREAD_BASIC_INFO_COUNT;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
ret = thread_info (name,
|
|
|
|
|
THREAD_BASIC_INFO,
|
|
|
|
|
(thread_info_t) & ths,
|
|
|
|
|
&infoCnt);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Unable to get basic info on thread %d : %s",
|
|
|
|
|
mid,
|
|
|
|
|
mach_error_string (ret));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sprintf (slot, "%d", index % 100);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (name == current_thread)
|
|
|
|
|
selected = '*';
|
|
|
|
|
else
|
|
|
|
|
selected = ' ';
|
|
|
|
|
|
|
|
|
|
if (ths.suspend_count)
|
|
|
|
|
sprintf (buf, "%d", ths.suspend_count);
|
|
|
|
|
else
|
|
|
|
|
buf[0] = '\000';
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
if (ths.flags & TH_FLAGS_SWAPPED)
|
|
|
|
|
strcat (buf, "S");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (ths.flags & TH_FLAGS_IDLE)
|
|
|
|
|
strcat (buf, "I");
|
|
|
|
|
|
|
|
|
|
printf_filtered (TL_FORMAT,
|
|
|
|
|
slot,
|
|
|
|
|
mid,
|
|
|
|
|
selected,
|
|
|
|
|
get_thread_name (NULL, index),
|
|
|
|
|
their_threads[index].in_emulator ? "E" : "",
|
|
|
|
|
translate_state (ths.run_state),
|
|
|
|
|
buf,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
"", /* No cproc state */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
""); /* Can't be wired */
|
|
|
|
|
print_tl_address (gdb_stdout, their_threads[index].pc);
|
|
|
|
|
puts_filtered ("\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
obstack_free (cproc_obstack, 0);
|
|
|
|
|
obstack_init (cproc_obstack);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
thread_select_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
thread_array_t thread_list;
|
|
|
|
|
int thread_count;
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
int is_slot = 0;
|
|
|
|
|
|
|
|
|
|
MACH_ERROR_NO_INFERIOR;
|
|
|
|
|
|
|
|
|
|
if (!args)
|
|
|
|
|
error_no_arg ("MID or @SLOTNUMBER to specify a thread to select");
|
|
|
|
|
|
|
|
|
|
while (*args == ' ' || *args == '\t')
|
|
|
|
|
args++;
|
|
|
|
|
|
|
|
|
|
if (*args == '@')
|
|
|
|
|
{
|
|
|
|
|
is_slot++;
|
|
|
|
|
args++;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mid = atoi (args);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (mid == 0)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!is_slot || *args != '0') /* Rudimentary checks */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("You must select threads by MID or @SLOTNUMBER");
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (select_thread (inferior_task, mid, is_slot ? 2 : 1) != KERN_SUCCESS)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (from_tty)
|
|
|
|
|
printf_filtered ("Thread %d selected\n",
|
|
|
|
|
is_slot ? map_port_name_to_mid (current_thread,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
MACH_TYPE_THREAD) : mid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
thread_trace (mach_port_t thread, boolean_t set)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int flavor = TRACE_FLAVOR;
|
|
|
|
|
unsigned int stateCnt = TRACE_FLAVOR_SIZE;
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
thread_state_data_t state;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (thread))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("thread_trace: invalid thread");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (must_suspend_thread)
|
|
|
|
|
setup_thread (thread, 1);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = thread_get_state (thread, flavor, state, &stateCnt);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CHK ("thread_trace: error reading thread state", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (set)
|
|
|
|
|
{
|
|
|
|
|
TRACE_SET (thread, state);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!TRACE_CLEAR (thread, state))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (must_suspend_thread)
|
|
|
|
|
setup_thread (thread, 0);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = thread_set_state (thread, flavor, state, stateCnt);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CHK ("thread_trace: error writing thread state", ret);
|
|
|
|
|
if (must_suspend_thread)
|
|
|
|
|
setup_thread (thread, 0);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#ifdef FLUSH_INFERIOR_CACHE
|
|
|
|
|
|
|
|
|
|
/* When over-writing code on some machines the I-Cache must be flushed
|
|
|
|
|
explicitly, because it is not kept coherent by the lazy hardware.
|
|
|
|
|
This definitely includes breakpoints, for instance, or else we
|
|
|
|
|
end up looping in mysterious Bpt traps */
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
flush_inferior_icache (CORE_ADDR pc, int amount)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
vm_machine_attribute_val_t flush = MATTR_VAL_ICACHE_FLUSH;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = vm_machine_attribute (inferior_task,
|
|
|
|
|
pc,
|
|
|
|
|
amount,
|
|
|
|
|
MATTR_CACHE,
|
|
|
|
|
&flush);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
warning ("Error flushing inferior's cache : %s",
|
|
|
|
|
mach_error_string (ret));
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif /* FLUSH_INFERIOR_CACHE */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static
|
2000-07-30 03:48:28 +02:00
|
|
|
|
suspend_all_threads (int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
|
|
|
|
thread_array_t thread_list;
|
|
|
|
|
int thread_count, index;
|
|
|
|
|
int infoCnt;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_basic_info_data_t th_info;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = task_threads (inferior_task, &thread_list, &thread_count);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("Could not suspend inferior threads.");
|
|
|
|
|
m3_kill_inferior ();
|
|
|
|
|
return_to_top_level (RETURN_ERROR);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
for (index = 0; index < thread_count; index++)
|
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mid = map_port_name_to_mid (thread_list[index],
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_TYPE_THREAD);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
ret = thread_suspend (thread_list[index]);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
warning ("Error trying to suspend thread %d : %s",
|
|
|
|
|
mid, mach_error_string (ret));
|
|
|
|
|
|
|
|
|
|
if (from_tty)
|
|
|
|
|
{
|
|
|
|
|
infoCnt = THREAD_BASIC_INFO_COUNT;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = thread_info (thread_list[index],
|
1999-04-16 03:35:26 +02:00
|
|
|
|
THREAD_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(thread_info_t) & th_info,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&infoCnt);
|
|
|
|
|
CHK ("suspend can't get thread info", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("Thread %d suspend count is %d",
|
|
|
|
|
mid, th_info.suspend_count);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
consume_send_rights (thread_list, thread_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = vm_deallocate (mach_task_self (),
|
|
|
|
|
(vm_address_t) thread_list,
|
|
|
|
|
(thread_count * sizeof (int)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CHK ("Error trying to deallocate thread list", ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
thread_suspend_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int mid;
|
|
|
|
|
mach_port_t saved_thread;
|
|
|
|
|
int infoCnt;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_basic_info_data_t th_info;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_ERROR_NO_INFERIOR;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!strcasecmp (args, "all"))
|
|
|
|
|
{
|
|
|
|
|
suspend_all_threads (from_tty);
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
saved_thread = current_thread;
|
|
|
|
|
|
|
|
|
|
mid = parse_thread_id (args, 0, 0);
|
|
|
|
|
|
|
|
|
|
if (mid < 0)
|
|
|
|
|
error ("You can suspend only existing kernel threads with MID or @SLOTNUMBER");
|
|
|
|
|
|
|
|
|
|
if (mid == 0)
|
|
|
|
|
mid = map_port_name_to_mid (current_thread, MACH_TYPE_THREAD);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
else if (select_thread (inferior_task, mid, 0) != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
if (current_thread)
|
|
|
|
|
current_thread = saved_thread;
|
|
|
|
|
error ("Could not select thread %d", mid);
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = thread_suspend (current_thread);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
warning ("thread_suspend failed : %s",
|
|
|
|
|
mach_error_string (ret));
|
|
|
|
|
|
|
|
|
|
infoCnt = THREAD_BASIC_INFO_COUNT;
|
|
|
|
|
ret = thread_info (current_thread,
|
|
|
|
|
THREAD_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(thread_info_t) & th_info,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&infoCnt);
|
|
|
|
|
CHK ("suspend can't get thread info", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("Thread %d suspend count is %d", mid, th_info.suspend_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
current_thread = saved_thread;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
resume_all_threads (int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
|
|
|
|
thread_array_t thread_list;
|
|
|
|
|
int thread_count, index;
|
|
|
|
|
int mid;
|
|
|
|
|
int infoCnt;
|
|
|
|
|
thread_basic_info_data_t th_info;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = task_threads (inferior_task, &thread_list, &thread_count);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
m3_kill_inferior ();
|
|
|
|
|
error ("task_threads", mach_error_string (ret));
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
for (index = 0; index < thread_count; index++)
|
|
|
|
|
{
|
|
|
|
|
infoCnt = THREAD_BASIC_INFO_COUNT;
|
|
|
|
|
ret = thread_info (thread_list[index],
|
|
|
|
|
THREAD_BASIC_INFO,
|
|
|
|
|
(thread_info_t) & th_info,
|
|
|
|
|
&infoCnt);
|
|
|
|
|
CHK ("resume_all can't get thread info", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mid = map_port_name_to_mid (thread_list[index],
|
|
|
|
|
MACH_TYPE_THREAD);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!th_info.suspend_count)
|
|
|
|
|
{
|
|
|
|
|
if (mid != -1 && from_tty)
|
|
|
|
|
warning ("Thread %d is not suspended", mid);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = thread_resume (thread_list[index]);
|
|
|
|
|
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
warning ("Error trying to resume thread %d : %s",
|
|
|
|
|
mid, mach_error_string (ret));
|
|
|
|
|
else if (mid != -1 && from_tty)
|
|
|
|
|
warning ("Thread %d suspend count is %d",
|
|
|
|
|
mid, --th_info.suspend_count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
consume_send_rights (thread_list, thread_count);
|
|
|
|
|
ret = vm_deallocate (mach_task_self (),
|
|
|
|
|
(vm_address_t) thread_list,
|
|
|
|
|
(thread_count * sizeof (int)));
|
|
|
|
|
CHK ("Error trying to deallocate thread list", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
thread_resume_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
mach_port_t saved_thread;
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
thread_basic_info_data_t th_info;
|
|
|
|
|
int infoCnt = THREAD_BASIC_INFO_COUNT;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_ERROR_NO_INFERIOR;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!strcasecmp (args, "all"))
|
|
|
|
|
{
|
|
|
|
|
resume_all_threads (from_tty);
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
saved_thread = current_thread;
|
|
|
|
|
|
|
|
|
|
mid = parse_thread_id (args, 0, 0);
|
|
|
|
|
|
|
|
|
|
if (mid < 0)
|
|
|
|
|
error ("You can resume only existing kernel threads with MID or @SLOTNUMBER");
|
|
|
|
|
|
|
|
|
|
if (mid == 0)
|
|
|
|
|
mid = map_port_name_to_mid (current_thread, MACH_TYPE_THREAD);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
else if (select_thread (inferior_task, mid, 0) != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
if (current_thread)
|
|
|
|
|
current_thread = saved_thread;
|
|
|
|
|
return_to_top_level (RETURN_ERROR);
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
ret = thread_info (current_thread,
|
|
|
|
|
THREAD_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(thread_info_t) & th_info,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&infoCnt);
|
|
|
|
|
CHK ("resume can't get thread info", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
if (!th_info.suspend_count)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("Thread %d is not suspended", mid);
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = thread_resume (current_thread);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
warning ("thread_resume failed : %s",
|
|
|
|
|
mach_error_string (ret));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
th_info.suspend_count--;
|
|
|
|
|
warning ("Thread %d suspend count is %d", mid, th_info.suspend_count);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
out:
|
1999-04-16 03:35:26 +02:00
|
|
|
|
current_thread = saved_thread;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
thread_kill_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int mid;
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
int thread_count;
|
|
|
|
|
thread_array_t thread_table;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int index;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
mach_port_t thread_to_kill = MACH_PORT_NULL;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_ERROR_NO_INFERIOR;
|
|
|
|
|
|
|
|
|
|
if (!args)
|
|
|
|
|
error_no_arg ("thread mid to kill from the inferior task");
|
|
|
|
|
|
|
|
|
|
mid = parse_thread_id (args, 0, 0);
|
|
|
|
|
|
|
|
|
|
if (mid < 0)
|
|
|
|
|
error ("You can kill only existing kernel threads with MID or @SLOTNUMBER");
|
|
|
|
|
|
|
|
|
|
if (mid)
|
|
|
|
|
{
|
|
|
|
|
ret = machid_mach_port (mid_server, mid_auth, mid, &thread_to_kill);
|
|
|
|
|
CHK ("thread_kill_command: machid_mach_port map failed", ret);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
mid = map_port_name_to_mid (current_thread, MACH_TYPE_THREAD);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Don't allow gdb to kill *any* thread in the system. Use mkill program for that */
|
|
|
|
|
ret = task_threads (inferior_task, &thread_table, &thread_count);
|
|
|
|
|
CHK ("Error getting inferior's thread list", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (thread_to_kill == current_thread)
|
|
|
|
|
{
|
|
|
|
|
ret = thread_terminate (thread_to_kill);
|
|
|
|
|
CHK ("Thread could not be terminated", ret);
|
|
|
|
|
|
|
|
|
|
if (select_thread (inferior_task, 0, 1) != KERN_SUCCESS)
|
|
|
|
|
warning ("Last thread was killed, use \"kill\" command to kill task");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
for (index = 0; index < thread_count; index++)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (thread_table[index] == thread_to_kill)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
ret = thread_terminate (thread_to_kill);
|
|
|
|
|
CHK ("Thread could not be terminated", ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (thread_count > 1)
|
|
|
|
|
consume_send_rights (thread_table, thread_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
ret = vm_deallocate (mach_task_self (), (vm_address_t) thread_table,
|
|
|
|
|
(thread_count * sizeof (mach_port_t)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CHK ("Error trying to deallocate thread list", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("Thread %d killed", mid);
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Task specific commands; add more if you like */
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
task_resume_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
task_basic_info_data_t ta_info;
|
|
|
|
|
int infoCnt = TASK_BASIC_INFO_COUNT;
|
|
|
|
|
int mid = map_port_name_to_mid (inferior_task, MACH_TYPE_TASK);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_ERROR_NO_INFERIOR;
|
|
|
|
|
|
|
|
|
|
/* Would be trivial to change, but is it desirable? */
|
|
|
|
|
if (args)
|
|
|
|
|
error ("Currently gdb can resume only it's inferior task");
|
|
|
|
|
|
|
|
|
|
ret = task_info (inferior_task,
|
|
|
|
|
TASK_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(task_info_t) & ta_info,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&infoCnt);
|
|
|
|
|
CHK ("task_resume_command: task_info failed", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ta_info.suspend_count == 0)
|
|
|
|
|
error ("Inferior task %d is not suspended", mid);
|
|
|
|
|
else if (ta_info.suspend_count == 1 &&
|
|
|
|
|
from_tty &&
|
1999-07-07 22:19:36 +02:00
|
|
|
|
!query ("Suspend count is now 1. Do you know what you are doing? "))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("Task not resumed");
|
|
|
|
|
|
|
|
|
|
ret = task_resume (inferior_task);
|
|
|
|
|
CHK ("task_resume_command: task_resume", ret);
|
|
|
|
|
|
|
|
|
|
if (ta_info.suspend_count == 1)
|
|
|
|
|
{
|
|
|
|
|
warning ("Inferior task %d is no longer suspended", mid);
|
|
|
|
|
must_suspend_thread = 1;
|
|
|
|
|
/* @@ This is not complete: Registers change all the time when not
|
1999-07-07 22:19:36 +02:00
|
|
|
|
suspended! */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
registers_changed ();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
warning ("Inferior task %d suspend count is now %d",
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mid, ta_info.suspend_count - 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
task_suspend_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
task_basic_info_data_t ta_info;
|
|
|
|
|
int infoCnt = TASK_BASIC_INFO_COUNT;
|
|
|
|
|
int mid = map_port_name_to_mid (inferior_task, MACH_TYPE_TASK);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_ERROR_NO_INFERIOR;
|
|
|
|
|
|
|
|
|
|
/* Would be trivial to change, but is it desirable? */
|
|
|
|
|
if (args)
|
|
|
|
|
error ("Currently gdb can suspend only it's inferior task");
|
|
|
|
|
|
|
|
|
|
ret = task_suspend (inferior_task);
|
|
|
|
|
CHK ("task_suspend_command: task_suspend", ret);
|
|
|
|
|
|
|
|
|
|
must_suspend_thread = 0;
|
|
|
|
|
|
|
|
|
|
ret = task_info (inferior_task,
|
|
|
|
|
TASK_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(task_info_t) & ta_info,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&infoCnt);
|
|
|
|
|
CHK ("task_suspend_command: task_info failed", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("Inferior task %d suspend count is now %d",
|
|
|
|
|
mid, ta_info.suspend_count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
get_size (int bytes)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
static char size[30];
|
|
|
|
|
int zz = bytes / 1024;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (zz / 1024)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sprintf (size, "%-2.1f M", ((float) bytes) / (1024.0 * 1024.0));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
sprintf (size, "%d K", zz);
|
|
|
|
|
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Does this require the target task to be suspended?? I don't think so. */
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
task_info_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int mid = -5;
|
|
|
|
|
mach_port_t task;
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
task_basic_info_data_t ta_info;
|
|
|
|
|
int infoCnt = TASK_BASIC_INFO_COUNT;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int page_size = round_page (1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
int thread_count = 0;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (MACH_PORT_VALID (inferior_task))
|
|
|
|
|
mid = map_port_name_to_mid (inferior_task,
|
|
|
|
|
MACH_TYPE_TASK);
|
|
|
|
|
|
|
|
|
|
task = inferior_task;
|
|
|
|
|
|
|
|
|
|
if (args)
|
|
|
|
|
{
|
|
|
|
|
int tmid = atoi (args);
|
|
|
|
|
|
|
|
|
|
if (tmid <= 0)
|
|
|
|
|
error ("Invalid mid %d for task info", tmid);
|
|
|
|
|
|
|
|
|
|
if (tmid != mid)
|
|
|
|
|
{
|
|
|
|
|
mid = tmid;
|
|
|
|
|
ret = machid_mach_port (mid_server, mid_auth, tmid, &task);
|
|
|
|
|
CHK ("task_info_command: machid_mach_port map failed", ret);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mid < 0)
|
|
|
|
|
error ("You have to give the task MID as an argument");
|
|
|
|
|
|
|
|
|
|
ret = task_info (task,
|
|
|
|
|
TASK_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(task_info_t) & ta_info,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&infoCnt);
|
|
|
|
|
CHK ("task_info_command: task_info failed", ret);
|
|
|
|
|
|
|
|
|
|
printf_filtered ("\nTask info for task %d:\n\n", mid);
|
|
|
|
|
printf_filtered (" Suspend count : %d\n", ta_info.suspend_count);
|
|
|
|
|
printf_filtered (" Base priority : %d\n", ta_info.base_priority);
|
|
|
|
|
printf_filtered (" Virtual size : %s\n", get_size (ta_info.virtual_size));
|
|
|
|
|
printf_filtered (" Resident size : %s\n", get_size (ta_info.resident_size));
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
thread_array_t thread_list;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = task_threads (task, &thread_list, &thread_count);
|
|
|
|
|
CHK ("task_info_command: task_threads", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
printf_filtered (" Thread count : %d\n", thread_count);
|
|
|
|
|
|
|
|
|
|
consume_send_rights (thread_list, thread_count);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = vm_deallocate (mach_task_self (),
|
|
|
|
|
(vm_address_t) thread_list,
|
|
|
|
|
(thread_count * sizeof (int)));
|
|
|
|
|
CHK ("Error trying to deallocate thread list", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
if (have_emulator_p (task))
|
|
|
|
|
printf_filtered (" Emulator at : 0x%x..0x%x\n",
|
|
|
|
|
EMULATOR_BASE, EMULATOR_END);
|
|
|
|
|
else
|
|
|
|
|
printf_filtered (" No emulator.\n");
|
|
|
|
|
|
|
|
|
|
if (thread_count && task == inferior_task)
|
|
|
|
|
printf_filtered ("\nUse the \"thread list\" command to see the threads\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* You may either FORWARD the exception to the inferior, or KEEP
|
|
|
|
|
* it and return to GDB command level.
|
|
|
|
|
*
|
|
|
|
|
* exception mid [ forward | keep ]
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
exception_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
char *scan = args;
|
|
|
|
|
int exception;
|
|
|
|
|
int len;
|
|
|
|
|
|
|
|
|
|
if (!args)
|
|
|
|
|
error_no_arg ("exception number action");
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
while (*scan == ' ' || *scan == '\t')
|
|
|
|
|
scan++;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if ('0' <= *scan && *scan <= '9')
|
|
|
|
|
while ('0' <= *scan && *scan <= '9')
|
|
|
|
|
scan++;
|
|
|
|
|
else
|
|
|
|
|
error ("exception number action");
|
|
|
|
|
|
|
|
|
|
exception = atoi (args);
|
|
|
|
|
if (exception <= 0 || exception > MAX_EXCEPTION)
|
|
|
|
|
error ("Allowed exception numbers are in range 1..%d",
|
|
|
|
|
MAX_EXCEPTION);
|
|
|
|
|
|
|
|
|
|
if (*scan != ' ' && *scan != '\t')
|
|
|
|
|
error ("exception number must be followed by a space");
|
|
|
|
|
else
|
1999-07-07 22:19:36 +02:00
|
|
|
|
while (*scan == ' ' || *scan == '\t')
|
|
|
|
|
scan++;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
args = scan;
|
|
|
|
|
len = 0;
|
|
|
|
|
while (*scan)
|
|
|
|
|
{
|
|
|
|
|
len++;
|
|
|
|
|
scan++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!len)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
error ("exception number action");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (!strncasecmp (args, "forward", len))
|
1999-07-07 22:19:36 +02:00
|
|
|
|
exception_map[exception].forward = TRUE;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else if (!strncasecmp (args, "keep", len))
|
1999-07-07 22:19:36 +02:00
|
|
|
|
exception_map[exception].forward = FALSE;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
error ("exception action is either \"keep\" or \"forward\"");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
print_exception_info (int exception)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
boolean_t forward = exception_map[exception].forward;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
printf_filtered ("%s\t(%d): ", exception_map[exception].name,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
exception);
|
|
|
|
|
if (!forward)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (exception_map[exception].sigmap != SIG_UNKNOWN)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
printf_filtered ("keep and handle as signal %d\n",
|
1999-07-07 22:19:36 +02:00
|
|
|
|
exception_map[exception].sigmap);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
printf_filtered ("keep and handle as unknown signal %d\n",
|
1999-07-07 22:19:36 +02:00
|
|
|
|
exception_map[exception].sigmap);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
printf_filtered ("forward exception to inferior\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
exception_info (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int exception;
|
|
|
|
|
|
|
|
|
|
if (!args)
|
|
|
|
|
for (exception = 1; exception <= MAX_EXCEPTION; exception++)
|
|
|
|
|
print_exception_info (exception);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
exception = atoi (args);
|
|
|
|
|
|
|
|
|
|
if (exception <= 0 || exception > MAX_EXCEPTION)
|
|
|
|
|
error ("Invalid exception number, values from 1 to %d allowed",
|
|
|
|
|
MAX_EXCEPTION);
|
|
|
|
|
print_exception_info (exception);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check for actions for mach exceptions.
|
|
|
|
|
*/
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mach3_exception_actions (WAITTYPE *w, boolean_t force_print_only, char *who)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
boolean_t force_print = FALSE;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (force_print_only ||
|
|
|
|
|
exception_map[stop_exception].sigmap == SIG_UNKNOWN)
|
|
|
|
|
force_print = TRUE;
|
|
|
|
|
else
|
|
|
|
|
WSETSTOP (*w, exception_map[stop_exception].sigmap);
|
|
|
|
|
|
|
|
|
|
if (exception_map[stop_exception].print || force_print)
|
|
|
|
|
{
|
|
|
|
|
target_terminal_ours ();
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
printf_filtered ("\n%s received %s exception : ",
|
|
|
|
|
who,
|
|
|
|
|
exception_map[stop_exception].name);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
wrap_here (" ");
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
switch (stop_exception)
|
|
|
|
|
{
|
|
|
|
|
case EXC_BAD_ACCESS:
|
|
|
|
|
printf_filtered ("referencing address 0x%x : %s\n",
|
|
|
|
|
stop_subcode,
|
|
|
|
|
mach_error_string (stop_code));
|
|
|
|
|
break;
|
|
|
|
|
case EXC_BAD_INSTRUCTION:
|
|
|
|
|
printf_filtered
|
|
|
|
|
("illegal or undefined instruction. code %d subcode %d\n",
|
|
|
|
|
stop_code, stop_subcode);
|
|
|
|
|
break;
|
|
|
|
|
case EXC_ARITHMETIC:
|
|
|
|
|
printf_filtered ("code %d\n", stop_code);
|
|
|
|
|
break;
|
|
|
|
|
case EXC_EMULATION:
|
|
|
|
|
printf_filtered ("code %d subcode %d\n", stop_code, stop_subcode);
|
|
|
|
|
break;
|
|
|
|
|
case EXC_SOFTWARE:
|
|
|
|
|
printf_filtered ("%s specific, code 0x%x\n",
|
|
|
|
|
stop_code < 0xffff ? "hardware" : "os emulation",
|
|
|
|
|
stop_code);
|
|
|
|
|
break;
|
|
|
|
|
case EXC_BREAKPOINT:
|
|
|
|
|
printf_filtered ("type %d (machine dependent)\n",
|
|
|
|
|
stop_code);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
|
|
|
|
"Unknown exception");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
setup_notify_port (int create_new)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
if (MACH_PORT_VALID (our_notify_port))
|
|
|
|
|
{
|
|
|
|
|
ret = mach_port_destroy (mach_task_self (), our_notify_port);
|
|
|
|
|
CHK ("Could not destroy our_notify_port", ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
our_notify_port = MACH_PORT_NULL;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
notify_chain = (port_chain_t) NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
port_chain_destroy (port_chain_obstack);
|
|
|
|
|
|
|
|
|
|
if (create_new)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_allocate (mach_task_self (),
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_PORT_RIGHT_RECEIVE,
|
|
|
|
|
&our_notify_port);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
|
|
|
|
"Creating notify port %s", mach_error_string (ret));
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
ret = mach_port_move_member (mach_task_self (),
|
|
|
|
|
our_notify_port,
|
|
|
|
|
inferior_wait_port_set);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
|
|
|
|
"initial move member %s", mach_error_string (ret));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Register our message port to the net name server
|
|
|
|
|
*
|
|
|
|
|
* Currently used only by the external stop-gdb program
|
|
|
|
|
* since ^C does not work if you would like to enter
|
|
|
|
|
* gdb command level while debugging your program.
|
|
|
|
|
*
|
|
|
|
|
* NOTE: If the message port is sometimes used for other
|
|
|
|
|
* purposes also, the NAME must not be a guessable one.
|
|
|
|
|
* Then, there should be a way to change it.
|
|
|
|
|
*/
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
char registered_name[MAX_NAME_LEN];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
message_port_info (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (registered_name[0])
|
|
|
|
|
printf_filtered ("gdb's message port name: '%s'\n",
|
|
|
|
|
registered_name);
|
|
|
|
|
else
|
|
|
|
|
printf_filtered ("gdb's message port is not currently registered\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
gdb_register_port (char *name, mach_port_t port)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
static int already_signed = 0;
|
|
|
|
|
int len;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (port) || !name || !*name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("Invalid registration request");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!already_signed)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
ret = mach_port_insert_right (mach_task_self (),
|
|
|
|
|
our_message_port,
|
|
|
|
|
our_message_port,
|
|
|
|
|
MACH_MSG_TYPE_MAKE_SEND);
|
|
|
|
|
CHK ("Failed to create a signature to our_message_port", ret);
|
|
|
|
|
already_signed = 1;
|
|
|
|
|
}
|
|
|
|
|
else if (already_signed > 1)
|
|
|
|
|
{
|
|
|
|
|
ret = netname_check_out (name_server_port,
|
|
|
|
|
registered_name,
|
|
|
|
|
our_message_port);
|
|
|
|
|
CHK ("Failed to check out gdb's message port", ret);
|
|
|
|
|
registered_name[0] = '\000';
|
|
|
|
|
already_signed = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = netname_check_in (name_server_port, /* Name server port */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
name, /* Name of service */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
our_message_port, /* Signature */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
port); /* Creates a new send right */
|
|
|
|
|
CHK ("Failed to check in the port", ret);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
len = 0;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
while (len < MAX_NAME_LEN && *(name + len))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
registered_name[len] = *(name + len);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
len++;
|
|
|
|
|
}
|
|
|
|
|
registered_name[len] = '\000';
|
|
|
|
|
already_signed = 2;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
struct cmd_list_element *cmd_thread_list;
|
|
|
|
|
struct cmd_list_element *cmd_task_list;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/*ARGSUSED */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
thread_command (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
printf_unfiltered ("\"thread\" must be followed by the name of a thread command.\n");
|
|
|
|
|
help_list (cmd_thread_list, "thread ", -1, gdb_stdout);
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/*ARGSUSED */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
task_command (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
printf_unfiltered ("\"task\" must be followed by the name of a task command.\n");
|
|
|
|
|
help_list (cmd_task_list, "task ", -1, gdb_stdout);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
add_mach_specific_commands (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
/* Thread handling commands */
|
|
|
|
|
|
|
|
|
|
/* FIXME: Move our thread support into the generic thread.c stuff so we
|
|
|
|
|
can share that code. */
|
|
|
|
|
add_prefix_cmd ("mthread", class_stack, thread_command,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
"Generic command for handling Mach threads in the debugged task.",
|
|
|
|
|
&cmd_thread_list, "thread ", 0, &cmdlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
add_com_alias ("th", "mthread", class_stack, 1);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
add_cmd ("select", class_stack, thread_select_command,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
"Select and print MID of the selected thread",
|
|
|
|
|
&cmd_thread_list);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
add_cmd ("list", class_stack, thread_list_command,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
"List info of task's threads. Selected thread is marked with '*'",
|
|
|
|
|
&cmd_thread_list);
|
|
|
|
|
add_cmd ("suspend", class_run, thread_suspend_command,
|
|
|
|
|
"Suspend one or all of the threads in the selected task.",
|
|
|
|
|
&cmd_thread_list);
|
|
|
|
|
add_cmd ("resume", class_run, thread_resume_command,
|
|
|
|
|
"Resume one or all of the threads in the selected task.",
|
|
|
|
|
&cmd_thread_list);
|
|
|
|
|
add_cmd ("kill", class_run, thread_kill_command,
|
|
|
|
|
"Kill the specified thread MID from inferior task.",
|
|
|
|
|
&cmd_thread_list);
|
|
|
|
|
#if 0
|
|
|
|
|
/* The rest of this support (condition_thread) was not merged. It probably
|
|
|
|
|
should not be merged in this form, but instead added to the generic GDB
|
|
|
|
|
thread support. */
|
|
|
|
|
add_cmd ("break", class_breakpoint, condition_thread,
|
|
|
|
|
"Breakpoint N will only be effective for thread MID or @SLOT\n\
|
|
|
|
|
If MID/@SLOT is omitted allow all threads to break at breakpoint",
|
|
|
|
|
&cmd_thread_list);
|
|
|
|
|
#endif
|
|
|
|
|
/* Thread command shorthands (for backward compatibility) */
|
|
|
|
|
add_alias_cmd ("ts", "mthread select", 0, 0, &cmdlist);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
add_alias_cmd ("tl", "mthread list", 0, 0, &cmdlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* task handling commands */
|
|
|
|
|
|
|
|
|
|
add_prefix_cmd ("task", class_stack, task_command,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
"Generic command for handling debugged task.",
|
|
|
|
|
&cmd_task_list, "task ", 0, &cmdlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
add_com_alias ("ta", "task", class_stack, 1);
|
|
|
|
|
|
|
|
|
|
add_cmd ("suspend", class_run, task_suspend_command,
|
|
|
|
|
"Suspend the inferior task.",
|
|
|
|
|
&cmd_task_list);
|
|
|
|
|
add_cmd ("resume", class_run, task_resume_command,
|
|
|
|
|
"Resume the inferior task.",
|
|
|
|
|
&cmd_task_list);
|
|
|
|
|
add_cmd ("info", no_class, task_info_command,
|
|
|
|
|
"Print information about the specified task.",
|
|
|
|
|
&cmd_task_list);
|
|
|
|
|
|
|
|
|
|
/* Print my message port name */
|
|
|
|
|
|
|
|
|
|
add_info ("message-port", message_port_info,
|
|
|
|
|
"Returns the name of gdb's message port in the netnameserver");
|
|
|
|
|
|
|
|
|
|
/* Exception commands */
|
|
|
|
|
|
|
|
|
|
add_info ("exceptions", exception_info,
|
|
|
|
|
"What debugger does when program gets various exceptions.\n\
|
|
|
|
|
Specify an exception number as argument to print info on that\n\
|
|
|
|
|
exception only.");
|
|
|
|
|
|
|
|
|
|
add_com ("exception", class_run, exception_command,
|
|
|
|
|
"Specify how to handle an exception.\n\
|
|
|
|
|
Args are exception number followed by \"forward\" or \"keep\".\n\
|
|
|
|
|
`Forward' means forward the exception to the program's normal exception\n\
|
|
|
|
|
handler.\n\
|
|
|
|
|
`Keep' means reenter debugger if this exception happens, and GDB maps\n\
|
|
|
|
|
the exception to some signal (see info exception)\n\
|
|
|
|
|
Normally \"keep\" is used to return to GDB on exception.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kern_return_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
do_mach_notify_dead_name (mach_port_t notify, mach_port_t name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t kr = KERN_SUCCESS;
|
|
|
|
|
|
|
|
|
|
/* Find the thing that notified */
|
|
|
|
|
port_chain_t element = port_chain_member (notify_chain, name);
|
|
|
|
|
|
|
|
|
|
/* Take name of from unreceived dead name notification list */
|
|
|
|
|
notify_chain = port_chain_delete (notify_chain, name);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!element)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("Received a dead name notify from unchained port (0x%x)", name);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
switch (element->type)
|
|
|
|
|
{
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
case MACH_TYPE_THREAD:
|
|
|
|
|
target_terminal_ours_for_output ();
|
|
|
|
|
if (name == current_thread)
|
|
|
|
|
{
|
|
|
|
|
printf_filtered ("\nCurrent thread %d died", element->mid);
|
|
|
|
|
current_thread = MACH_PORT_NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
printf_filtered ("\nThread %d died", element->mid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
case MACH_TYPE_TASK:
|
|
|
|
|
target_terminal_ours_for_output ();
|
|
|
|
|
if (name != inferior_task)
|
|
|
|
|
printf_filtered ("Task %d died, but it was not the selected task",
|
|
|
|
|
element->mid);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
printf_filtered ("Current task %d died", element->mid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_port_destroy (mach_task_self (), name);
|
|
|
|
|
inferior_task = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
if (notify_chain)
|
|
|
|
|
warning ("There were still unreceived dead_name_notifications???");
|
|
|
|
|
|
|
|
|
|
/* Destroy the old notifications */
|
|
|
|
|
setup_notify_port (0);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
error ("Unregistered dead_name 0x%x notification received. Type is %d, mid is 0x%x",
|
|
|
|
|
name, element->type, element->mid);
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return KERN_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kern_return_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
do_mach_notify_msg_accepted (mach_port_t notify, mach_port_t name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("do_mach_notify_msg_accepted : notify %x, name %x",
|
|
|
|
|
notify, name);
|
|
|
|
|
return KERN_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kern_return_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
do_mach_notify_no_senders (mach_port_t notify, mach_port_mscount_t mscount)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("do_mach_notify_no_senders : notify %x, mscount %x",
|
|
|
|
|
notify, mscount);
|
|
|
|
|
return KERN_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kern_return_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
do_mach_notify_port_deleted (mach_port_t notify, mach_port_t name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("do_mach_notify_port_deleted : notify %x, name %x",
|
|
|
|
|
notify, name);
|
|
|
|
|
return KERN_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kern_return_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
do_mach_notify_port_destroyed (mach_port_t notify, mach_port_t rights)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
warning ("do_mach_notify_port_destroyed : notify %x, rights %x",
|
|
|
|
|
notify, rights);
|
|
|
|
|
return KERN_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kern_return_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
do_mach_notify_send_once (mach_port_t notify)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef DUMP_SYSCALL
|
|
|
|
|
/* MANY of these are generated. */
|
|
|
|
|
warning ("do_mach_notify_send_once : notify %x",
|
|
|
|
|
notify);
|
|
|
|
|
#endif
|
|
|
|
|
return KERN_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Kills the inferior. It's gone when you call this */
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
kill_inferior_fast (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
WAITTYPE w;
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
if (PIDGET (inferior_ptid) == 0 || PIDGET (inferior_ptid) == 1)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* kill() it, since the Unix server does not otherwise notice when
|
|
|
|
|
* killed with task_terminate().
|
|
|
|
|
*/
|
2001-05-04 06:15:33 +02:00
|
|
|
|
if (PIDGET (inferior_ptid) > 0)
|
|
|
|
|
kill (PIDGET (inferior_ptid), SIGKILL);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* It's propably terminate already */
|
|
|
|
|
(void) task_terminate (inferior_task);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
inferior_task = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
current_thread = MACH_PORT_NULL;
|
|
|
|
|
|
|
|
|
|
wait3 (&w, WNOHANG, 0);
|
|
|
|
|
|
|
|
|
|
setup_notify_port (0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_kill_inferior (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kill_inferior_fast ();
|
|
|
|
|
target_mourn_inferior ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Clean up after the inferior dies. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_mourn_inferior (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
unpush_target (&m3_ops);
|
|
|
|
|
generic_mourn_inferior ();
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Fork an inferior process, and start debugging it. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_create_inferior (char *exec_file, char *allargs, char **env)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
fork_inferior (exec_file, allargs, env, m3_trace_me, m3_trace_him, NULL, NULL);
|
|
|
|
|
/* We are at the first instruction we care about. */
|
|
|
|
|
/* Pedal to the metal... */
|
1999-10-06 01:13:56 +02:00
|
|
|
|
proceed ((CORE_ADDR) -1, 0, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mark our target-struct as eligible for stray "run" and "attach"
|
|
|
|
|
commands. */
|
|
|
|
|
static int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_can_run (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mach 3.0 does not need ptrace for anything
|
|
|
|
|
* Make sure nobody uses it on mach.
|
|
|
|
|
*/
|
2000-07-30 03:48:28 +02:00
|
|
|
|
ptrace (int a, int b, int c, int d)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
error ("Lose, Lose! Somebody called ptrace\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Resume execution of the inferior process.
|
|
|
|
|
If STEP is nonzero, single-step it.
|
|
|
|
|
If SIGNAL is nonzero, give it that signal. */
|
|
|
|
|
|
|
|
|
|
void
|
2001-05-04 06:15:33 +02:00
|
|
|
|
m3_resume (ptid_t ptid, int step, enum target_signal signal)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (step)
|
|
|
|
|
{
|
|
|
|
|
thread_basic_info_data_t th_info;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
unsigned int infoCnt = THREAD_BASIC_INFO_COUNT;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* There is no point in single stepping when current_thread
|
|
|
|
|
* is dead.
|
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (current_thread))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("No thread selected; can not single step");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* If current_thread is suspended, tracing it would never return.
|
|
|
|
|
*/
|
|
|
|
|
ret = thread_info (current_thread,
|
|
|
|
|
THREAD_BASIC_INFO,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(thread_info_t) & th_info,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&infoCnt);
|
|
|
|
|
CHK ("child_resume: can't get thread info", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (th_info.suspend_count)
|
|
|
|
|
error ("Can't trace a suspended thread. Use \"thread resume\" command to resume it");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vm_read_cache_valid = FALSE;
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
if (signal && PIDGET (inferior_ptid) > 0) /* Do not signal, if attached by MID */
|
|
|
|
|
kill (PIDGET (inferior_ptid), target_signal_to_host (signal));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (step)
|
|
|
|
|
{
|
|
|
|
|
suspend_all_threads (0);
|
|
|
|
|
|
|
|
|
|
setup_single_step (current_thread, TRUE);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = thread_resume (current_thread);
|
|
|
|
|
CHK ("thread_resume", ret);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = task_resume (inferior_task);
|
|
|
|
|
if (ret == KERN_FAILURE)
|
|
|
|
|
warning ("Task was not suspended");
|
|
|
|
|
else
|
|
|
|
|
CHK ("Resuming task", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* HACK HACK This is needed by the multiserver system HACK HACK */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
while ((ret = task_resume (inferior_task)) == KERN_SUCCESS)
|
|
|
|
|
/* make sure it really runs */ ;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* HACK HACK This is needed by the multiserver system HACK HACK */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef ATTACH_DETACH
|
|
|
|
|
|
|
|
|
|
/* Start debugging the process with the given task */
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
task_attach (task_t tid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
inferior_task = tid;
|
|
|
|
|
|
|
|
|
|
ret = task_suspend (inferior_task);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("task_attach: task_suspend", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
must_suspend_thread = 0;
|
|
|
|
|
|
|
|
|
|
setup_notify_port (1);
|
|
|
|
|
|
|
|
|
|
request_notify (inferior_task, MACH_NOTIFY_DEAD_NAME, MACH_TYPE_TASK);
|
|
|
|
|
|
|
|
|
|
setup_exception_port ();
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
emulator_present = have_emulator_p (inferior_task);
|
|
|
|
|
|
|
|
|
|
attach_flag = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Well, we can call error also here and leave the
|
|
|
|
|
* target stack inconsistent. Sigh.
|
|
|
|
|
* Fix this sometime (the only way to fail here is that
|
|
|
|
|
* the task has no threads at all, which is rare, but
|
|
|
|
|
* possible; or if the target task has died, which is also
|
|
|
|
|
* possible, but unlikely, since it has been suspended.
|
|
|
|
|
* (Someone must have killed it))
|
|
|
|
|
*/
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
attach_to_thread (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (select_thread (inferior_task, 0, 1) != KERN_SUCCESS)
|
|
|
|
|
error ("Could not select any threads to attach to");
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
mid_attach (int mid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = machid_mach_port (mid_server, mid_auth, mid, &inferior_task);
|
|
|
|
|
CHK ("mid_attach: machid_mach_port", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
task_attach (inferior_task);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return mid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Start debugging the process whose unix process-id is PID.
|
|
|
|
|
* A negative "pid" value is legal and signifies a mach_id not a unix pid.
|
|
|
|
|
*
|
|
|
|
|
* Prevent (possible unwanted) dangerous operations by enabled users
|
|
|
|
|
* like "atta 0" or "atta foo" (equal to the previous :-) and
|
|
|
|
|
* "atta pidself". Anyway, the latter is allowed by specifying a MID.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_do_attach (int pid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
if (pid == 0)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
error ("MID=0, Debugging the master unix server does not compute");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Foo. This assumes gdb has a unix pid */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (pid == getpid ())
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("I will debug myself only by mid. (Gdb would suspend itself!)");
|
|
|
|
|
|
|
|
|
|
if (pid < 0)
|
|
|
|
|
{
|
|
|
|
|
mid_attach (-(pid));
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
/* inferior_ptid will be NEGATIVE! */
|
|
|
|
|
inferior_ptid = pid_to_ptid (pid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
return PIDGET (inferior_ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inferior_task = task_by_pid (pid);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (!MACH_PORT_VALID (inferior_task))
|
|
|
|
|
error ("Cannot map Unix pid %d to Mach task port", pid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
task_attach (inferior_task);
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
inferior_ptid = pid_to_ptid (pid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
return PIDGET (inferior_ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Attach to process PID, then initialize for debugging it
|
|
|
|
|
and wait for the trace-trap that results from attaching. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_attach (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
char *exec_file;
|
|
|
|
|
int pid;
|
|
|
|
|
|
|
|
|
|
if (!args)
|
|
|
|
|
error_no_arg ("process-id to attach");
|
|
|
|
|
|
|
|
|
|
pid = atoi (args);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (pid == getpid ()) /* Trying to masturbate? */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
error ("I refuse to debug myself!");
|
|
|
|
|
|
|
|
|
|
if (from_tty)
|
|
|
|
|
{
|
|
|
|
|
exec_file = (char *) get_exec_file (0);
|
|
|
|
|
|
|
|
|
|
if (exec_file)
|
2001-05-04 06:15:33 +02:00
|
|
|
|
printf_unfiltered ("Attaching to program `%s', %s\n", exec_file,
|
|
|
|
|
target_pid_to_str (pid_to_ptid (pid)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
2001-05-04 06:15:33 +02:00
|
|
|
|
printf_unfiltered ("Attaching to %s\n",
|
|
|
|
|
target_pid_to_str (pid_to_ptid (pid)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
|
}
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
m3_do_attach (pid_to_ptid (pid));
|
|
|
|
|
inferior_ptid = pid_to_ptid (pid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
push_target (&m3_ops);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
deallocate_inferior_ports (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
kern_return_t ret;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
thread_array_t thread_list;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int thread_count, index;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (!MACH_PORT_VALID (inferior_task))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
ret = task_threads (inferior_task, &thread_list, &thread_count);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
warning ("deallocate_inferior_ports: task_threads",
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_error_string (ret));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get rid of send rights to task threads */
|
|
|
|
|
for (index = 0; index < thread_count; index++)
|
|
|
|
|
{
|
|
|
|
|
int rights;
|
|
|
|
|
ret = mach_port_get_refs (mach_task_self (),
|
|
|
|
|
thread_list[index],
|
|
|
|
|
MACH_PORT_RIGHT_SEND,
|
|
|
|
|
&rights);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("deallocate_inferior_ports: get refs", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (rights > 0)
|
|
|
|
|
{
|
|
|
|
|
ret = mach_port_mod_refs (mach_task_self (),
|
|
|
|
|
thread_list[index],
|
|
|
|
|
MACH_PORT_RIGHT_SEND,
|
|
|
|
|
-rights);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CHK ("deallocate_inferior_ports: mod refs", ret);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = mach_port_mod_refs (mach_task_self (),
|
|
|
|
|
inferior_exception_port,
|
|
|
|
|
MACH_PORT_RIGHT_RECEIVE,
|
|
|
|
|
-1);
|
|
|
|
|
CHK ("deallocate_inferior_ports: cannot get rid of exception port", ret);
|
|
|
|
|
|
|
|
|
|
ret = mach_port_deallocate (mach_task_self (),
|
|
|
|
|
inferior_task);
|
|
|
|
|
CHK ("deallocate_task_port: deallocating inferior_task", ret);
|
|
|
|
|
|
|
|
|
|
current_thread = MACH_PORT_NULL;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
inferior_task = MACH_PORT_NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Stop debugging the process whose number is PID
|
|
|
|
|
and continue it with signal number SIGNAL.
|
|
|
|
|
SIGNAL = 0 means just continue it. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_do_detach (int signal)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
MACH_ERROR_NO_INFERIOR;
|
|
|
|
|
|
|
|
|
|
if (current_thread != MACH_PORT_NULL)
|
|
|
|
|
{
|
|
|
|
|
/* Store the gdb's view of the thread we are deselecting
|
|
|
|
|
* before we detach.
|
|
|
|
|
* @@ I am really not sure if this is ever needeed.
|
|
|
|
|
*/
|
|
|
|
|
target_prepare_to_store ();
|
|
|
|
|
target_store_registers (-1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = task_set_special_port (inferior_task,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
TASK_EXCEPTION_PORT,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
inferior_old_exception_port);
|
|
|
|
|
CHK ("task_set_special_port", ret);
|
|
|
|
|
|
|
|
|
|
/* Discard all requested notifications */
|
|
|
|
|
setup_notify_port (0);
|
|
|
|
|
|
|
|
|
|
if (remove_breakpoints ())
|
|
|
|
|
warning ("Could not remove breakpoints when detaching");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
if (signal && PIDGET (inferior_ptid) > 0)
|
|
|
|
|
kill (PIDGET (inferior_ptid), signal);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* the task might be dead by now */
|
|
|
|
|
(void) task_resume (inferior_task);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
deallocate_inferior_ports ();
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
attach_flag = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Take a program previously attached to and detaches it.
|
|
|
|
|
The program resumes execution and will no longer stop
|
|
|
|
|
on signals, etc. We'd better not have left any breakpoints
|
|
|
|
|
in the program or it'll die when it hits one. For this
|
|
|
|
|
to work, it may be necessary for the process to have been
|
|
|
|
|
previously attached. It *might* work if the program was
|
|
|
|
|
started via fork. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_detach (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int siggnal = 0;
|
|
|
|
|
|
|
|
|
|
if (from_tty)
|
|
|
|
|
{
|
|
|
|
|
char *exec_file = get_exec_file (0);
|
|
|
|
|
if (exec_file == 0)
|
|
|
|
|
exec_file = "";
|
|
|
|
|
printf_unfiltered ("Detaching from program: %s %s\n",
|
2001-05-04 06:15:33 +02:00
|
|
|
|
exec_file, target_pid_to_str (inferior_ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
|
}
|
|
|
|
|
if (args)
|
|
|
|
|
siggnal = atoi (args);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
m3_do_detach (siggnal);
|
2001-05-04 06:15:33 +02:00
|
|
|
|
inferior_ptid = null_ptid;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
unpush_target (&m3_ops); /* Pop out of handling an inferior */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
#endif /* ATTACH_DETACH */
|
|
|
|
|
|
|
|
|
|
/* Get ready to modify the registers array. On machines which store
|
|
|
|
|
individual registers, this doesn't need to do anything. On machines
|
|
|
|
|
which store all the registers in one fell swoop, this makes sure
|
|
|
|
|
that registers contains all the registers from the program being
|
|
|
|
|
debugged. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_prepare_to_store (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef CHILD_PREPARE_TO_STORE
|
|
|
|
|
CHILD_PREPARE_TO_STORE ();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print status information about what we're accessing. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_files_info (struct target_ops *ignore)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
/* FIXME: should print MID and all that crap. */
|
|
|
|
|
printf_unfiltered ("\tUsing the running image of %s %s.\n",
|
2001-05-04 06:15:33 +02:00
|
|
|
|
attach_flag ? "attached" : "child", target_pid_to_str (inferior_ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_open (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
error ("Use the \"run\" command to start a Unix child process.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef DUMP_SYSCALL
|
|
|
|
|
#define STR(x) #x
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
char *bsd1_names[] =
|
|
|
|
|
{
|
1999-04-16 03:35:26 +02:00
|
|
|
|
"execve",
|
|
|
|
|
"fork",
|
|
|
|
|
"take_signal",
|
|
|
|
|
"sigreturn",
|
|
|
|
|
"getrusage",
|
|
|
|
|
"chdir",
|
|
|
|
|
"chroot",
|
|
|
|
|
"open",
|
|
|
|
|
"creat",
|
|
|
|
|
"mknod",
|
|
|
|
|
"link",
|
|
|
|
|
"symlink",
|
|
|
|
|
"unlink",
|
|
|
|
|
"access",
|
|
|
|
|
"stat",
|
|
|
|
|
"readlink",
|
|
|
|
|
"chmod",
|
|
|
|
|
"chown",
|
|
|
|
|
"utimes",
|
|
|
|
|
"truncate",
|
|
|
|
|
"rename",
|
|
|
|
|
"mkdir",
|
|
|
|
|
"rmdir",
|
|
|
|
|
"xutimes",
|
|
|
|
|
"mount",
|
|
|
|
|
"umount",
|
|
|
|
|
"acct",
|
|
|
|
|
"setquota",
|
|
|
|
|
"write_short",
|
|
|
|
|
"write_long",
|
|
|
|
|
"send_short",
|
|
|
|
|
"send_long",
|
|
|
|
|
"sendto_short",
|
|
|
|
|
"sendto_long",
|
|
|
|
|
"select",
|
|
|
|
|
"task_by_pid",
|
|
|
|
|
"recvfrom_short",
|
|
|
|
|
"recvfrom_long",
|
|
|
|
|
"setgroups",
|
|
|
|
|
"setrlimit",
|
|
|
|
|
"sigvec",
|
|
|
|
|
"sigstack",
|
|
|
|
|
"settimeofday",
|
|
|
|
|
"adjtime",
|
|
|
|
|
"setitimer",
|
|
|
|
|
"sethostname",
|
|
|
|
|
"bind",
|
|
|
|
|
"accept",
|
|
|
|
|
"connect",
|
|
|
|
|
"setsockopt",
|
|
|
|
|
"getsockopt",
|
|
|
|
|
"getsockname",
|
|
|
|
|
"getpeername",
|
|
|
|
|
"init_process",
|
|
|
|
|
"table_set",
|
|
|
|
|
"table_get",
|
|
|
|
|
"pioctl",
|
|
|
|
|
"emulator_error",
|
|
|
|
|
"readwrite",
|
|
|
|
|
"share_wakeup",
|
|
|
|
|
0,
|
|
|
|
|
"maprw_request_it",
|
|
|
|
|
"maprw_release_it",
|
|
|
|
|
"maprw_remap",
|
|
|
|
|
"pid_by_task",
|
|
|
|
|
};
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int bsd1_nnames = sizeof (bsd1_names) / sizeof (bsd1_names[0]);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
char *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
name_str (int name, char *buf)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
switch (name)
|
|
|
|
|
{
|
|
|
|
|
case MACH_MSG_TYPE_BOOLEAN:
|
|
|
|
|
return "boolean";
|
|
|
|
|
case MACH_MSG_TYPE_INTEGER_16:
|
|
|
|
|
return "short";
|
|
|
|
|
case MACH_MSG_TYPE_INTEGER_32:
|
|
|
|
|
return "long";
|
|
|
|
|
case MACH_MSG_TYPE_CHAR:
|
|
|
|
|
return "char";
|
|
|
|
|
case MACH_MSG_TYPE_BYTE:
|
|
|
|
|
return "byte";
|
|
|
|
|
case MACH_MSG_TYPE_REAL:
|
|
|
|
|
return "real";
|
|
|
|
|
case MACH_MSG_TYPE_STRING:
|
|
|
|
|
return "string";
|
|
|
|
|
default:
|
|
|
|
|
sprintf (buf, "%d", name);
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
id_str (int id, char *buf)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
char *p;
|
|
|
|
|
if (id >= 101000 && id < 101000 + bsd1_nnames)
|
|
|
|
|
{
|
|
|
|
|
if (p = bsd1_names[id - 101000])
|
|
|
|
|
return p;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (id == 102000)
|
|
|
|
|
return "psignal_retry";
|
|
|
|
|
if (id == 100000)
|
|
|
|
|
return "syscall";
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sprintf (buf, "%d", id);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
print_msg (mach_msg_header_t *mp)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
char *fmt_x = "%20s : 0x%08x\n";
|
|
|
|
|
char *fmt_d = "%20s : %10d\n";
|
|
|
|
|
char *fmt_s = "%20s : %s\n";
|
|
|
|
|
char buf[100];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
puts_filtered ("\n");
|
|
|
|
|
#define pr(fmt,h,x) printf_filtered(fmt,STR(x),(h).x)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
pr (fmt_x, (*mp), msgh_bits);
|
|
|
|
|
pr (fmt_d, (*mp), msgh_size);
|
|
|
|
|
pr (fmt_x, (*mp), msgh_remote_port);
|
|
|
|
|
pr (fmt_x, (*mp), msgh_local_port);
|
|
|
|
|
pr (fmt_d, (*mp), msgh_kind);
|
|
|
|
|
printf_filtered (fmt_s, STR (msgh_id), id_str (mp->msgh_id, buf));
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (debug_level > 1)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
char *p, *ep, *dp;
|
|
|
|
|
int plen;
|
|
|
|
|
p = (char *) mp;
|
|
|
|
|
ep = p + mp->msgh_size;
|
|
|
|
|
p += sizeof (*mp);
|
|
|
|
|
for (; p < ep; p += plen)
|
|
|
|
|
{
|
|
|
|
|
mach_msg_type_t *tp;
|
|
|
|
|
mach_msg_type_long_t *tlp;
|
|
|
|
|
int name, size, number;
|
|
|
|
|
tp = (mach_msg_type_t *) p;
|
|
|
|
|
if (tp->msgt_longform)
|
|
|
|
|
{
|
|
|
|
|
tlp = (mach_msg_type_long_t *) tp;
|
|
|
|
|
name = tlp->msgtl_name;
|
|
|
|
|
size = tlp->msgtl_size;
|
|
|
|
|
number = tlp->msgtl_number;
|
|
|
|
|
plen = sizeof (*tlp);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
name = tp->msgt_name;
|
|
|
|
|
size = tp->msgt_size;
|
|
|
|
|
number = tp->msgt_number;
|
|
|
|
|
plen = sizeof (*tp);
|
|
|
|
|
}
|
|
|
|
|
printf_filtered ("name=%-16s size=%2d number=%7d inline=%d long=%d deal=%d\n",
|
|
|
|
|
name_str (name, buf), size, number, tp->msgt_inline,
|
|
|
|
|
tp->msgt_longform, tp->msgt_deallocate);
|
|
|
|
|
dp = p + plen;
|
|
|
|
|
if (tp->msgt_inline)
|
|
|
|
|
{
|
|
|
|
|
int l;
|
|
|
|
|
l = size * number / 8;
|
|
|
|
|
l = (l + sizeof (long) - 1) & ~((sizeof (long)) - 1);
|
|
|
|
|
plen += l;
|
|
|
|
|
print_data (dp, size, number);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
plen += sizeof (int *);
|
|
|
|
|
}
|
|
|
|
|
printf_filtered ("plen=%d\n", plen);
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-30 03:48:28 +02:00
|
|
|
|
print_data (char *p, int size, int number)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int *ip;
|
|
|
|
|
short *sp;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
switch (size)
|
|
|
|
|
{
|
|
|
|
|
case 8:
|
|
|
|
|
for (i = 0; i < number; i++)
|
|
|
|
|
{
|
|
|
|
|
printf_filtered (" %02x", p[i]);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 16:
|
|
|
|
|
sp = (short *) p;
|
|
|
|
|
for (i = 0; i < number; i++)
|
|
|
|
|
{
|
|
|
|
|
printf_filtered (" %04x", sp[i]);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 32:
|
|
|
|
|
ip = (int *) p;
|
|
|
|
|
for (i = 0; i < number; i++)
|
|
|
|
|
{
|
|
|
|
|
printf_filtered (" %08x", ip[i]);
|
|
|
|
|
}
|
|
|
|
|
break;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
puts_filtered ("\n");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif /* DUMP_SYSCALL */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_stop (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
error ("to_stop target function not implemented");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
m3_pid_to_exec_file (int pid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
error ("to_pid_to_exec_file target function not implemented");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return NULL; /* To keep all compilers happy. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
init_m3_ops (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
m3_ops.to_shortname = "mach";
|
|
|
|
|
m3_ops.to_longname = "Mach child process";
|
|
|
|
|
m3_ops.to_doc = "Mach child process (started by the \"run\" command).";
|
|
|
|
|
m3_ops.to_open = m3_open;
|
|
|
|
|
m3_ops.to_attach = m3_attach;
|
|
|
|
|
m3_ops.to_detach = m3_detach;
|
|
|
|
|
m3_ops.to_resume = m3_resume;
|
2001-05-04 06:15:33 +02:00
|
|
|
|
m3_ops.to_wait = mach_really_wait;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
m3_ops.to_fetch_registers = fetch_inferior_registers;
|
|
|
|
|
m3_ops.to_store_registers = store_inferior_registers;
|
|
|
|
|
m3_ops.to_prepare_to_store = m3_prepare_to_store;
|
|
|
|
|
m3_ops.to_xfer_memory = m3_xfer_memory;
|
|
|
|
|
m3_ops.to_files_info = m3_files_info;
|
|
|
|
|
m3_ops.to_insert_breakpoint = memory_insert_breakpoint;
|
|
|
|
|
m3_ops.to_remove_breakpoint = memory_remove_breakpoint;
|
|
|
|
|
m3_ops.to_terminal_init = terminal_init_inferior;
|
|
|
|
|
m3_ops.to_terminal_inferior = terminal_inferior;
|
|
|
|
|
m3_ops.to_terminal_ours_for_output = terminal_ours_for_output;
|
|
|
|
|
m3_ops.to_terminal_ours = terminal_ours;
|
|
|
|
|
m3_ops.to_terminal_info = child_terminal_info;
|
|
|
|
|
m3_ops.to_kill = m3_kill_inferior;
|
|
|
|
|
m3_ops.to_create_inferior = m3_create_inferior;
|
|
|
|
|
m3_ops.to_mourn_inferior = m3_mourn_inferior;
|
|
|
|
|
m3_ops.to_can_run = m3_can_run;
|
|
|
|
|
m3_ops.to_stop = m3_stop;
|
|
|
|
|
m3_ops.to_pid_to_exec_file = m3_pid_to_exec_file;
|
|
|
|
|
m3_ops.to_stratum = process_stratum;
|
|
|
|
|
m3_ops.to_has_all_memory = 1;
|
|
|
|
|
m3_ops.to_has_memory = 1;
|
|
|
|
|
m3_ops.to_has_stack = 1;
|
|
|
|
|
m3_ops.to_has_registers = 1;
|
|
|
|
|
m3_ops.to_has_execution = 1;
|
|
|
|
|
m3_ops.to_magic = OPS_MAGIC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
_initialize_m3_nat (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
kern_return_t ret;
|
|
|
|
|
|
|
|
|
|
init_m3_ops ();
|
|
|
|
|
add_target (&m3_ops);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_allocate (mach_task_self (),
|
|
|
|
|
MACH_PORT_RIGHT_PORT_SET,
|
|
|
|
|
&inferior_wait_port_set);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
|
|
|
|
"initial port set %s", mach_error_string (ret));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* mach_really_wait now waits for this */
|
|
|
|
|
currently_waiting_for = inferior_wait_port_set;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = netname_look_up (name_server_port, hostname, "MachID", &mid_server);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
mid_server = MACH_PORT_NULL;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("initialize machid: netname_lookup_up(MachID) : %s",
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mach_error_string (ret));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
warning ("Some (most?) features disabled...");
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
|
|
|
|
mid_auth = mach_privileged_host_port ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (mid_auth == MACH_PORT_NULL)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
mid_auth = mach_task_self ();
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
obstack_init (port_chain_obstack);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
ret = mach_port_allocate (mach_task_self (),
|
1999-04-16 03:35:26 +02:00
|
|
|
|
MACH_PORT_RIGHT_RECEIVE,
|
|
|
|
|
&thread_exception_port);
|
|
|
|
|
CHK ("Creating thread_exception_port for single stepping", ret);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ret = mach_port_insert_right (mach_task_self (),
|
|
|
|
|
thread_exception_port,
|
|
|
|
|
thread_exception_port,
|
|
|
|
|
MACH_MSG_TYPE_MAKE_SEND);
|
|
|
|
|
CHK ("Inserting send right to thread_exception_port", ret);
|
|
|
|
|
|
|
|
|
|
/* Allocate message port */
|
|
|
|
|
ret = mach_port_allocate (mach_task_self (),
|
|
|
|
|
MACH_PORT_RIGHT_RECEIVE,
|
|
|
|
|
&our_message_port);
|
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
warning ("Creating message port %s", mach_error_string (ret));
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
char buf[MAX_NAME_LEN];
|
|
|
|
|
ret = mach_port_move_member (mach_task_self (),
|
|
|
|
|
our_message_port,
|
|
|
|
|
inferior_wait_port_set);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (ret != KERN_SUCCESS)
|
|
|
|
|
warning ("message move member %s", mach_error_string (ret));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* @@@@ No way to change message port name currently */
|
|
|
|
|
/* Foo. This assumes gdb has a unix pid */
|
|
|
|
|
sprintf (buf, "gdb-%d", getpid ());
|
|
|
|
|
gdb_register_port (buf, our_message_port);
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Heap for thread commands */
|
|
|
|
|
obstack_init (cproc_obstack);
|
|
|
|
|
|
|
|
|
|
add_mach_specific_commands ();
|
|
|
|
|
}
|