2003-06-27 19:34:32 +02:00
|
|
|
/*
|
|
|
|
* gdb server stub
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2005-07-02 16:31:34 +02:00
|
|
|
* Copyright (c) 2003-2005 Fabrice Bellard
|
2003-06-27 19:34:32 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2003-06-27 19:34:32 +02:00
|
|
|
*/
|
2006-06-17 20:30:42 +02:00
|
|
|
#include "config.h"
|
2008-10-11 19:55:29 +02:00
|
|
|
#include "qemu-common.h"
|
2005-04-17 21:16:13 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2006-06-17 20:30:42 +02:00
|
|
|
#include <fcntl.h>
|
2005-04-17 21:16:13 +02:00
|
|
|
|
|
|
|
#include "qemu.h"
|
|
|
|
#else
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "monitor/monitor.h"
|
2013-04-08 16:55:25 +02:00
|
|
|
#include "sysemu/char.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/gdbstub.h"
|
2005-04-17 21:16:13 +02:00
|
|
|
#endif
|
2004-04-01 01:37:16 +02:00
|
|
|
|
2008-10-11 19:55:29 +02:00
|
|
|
#define MAX_PACKET_LENGTH 4096
|
|
|
|
|
2011-06-19 22:38:22 +02:00
|
|
|
#include "cpu.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/sockets.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/kvm.h"
|
2008-12-18 23:44:13 +01:00
|
|
|
|
2013-06-27 19:09:09 +02:00
|
|
|
static inline int target_memory_rw_debug(CPUState *cpu, target_ulong addr,
|
|
|
|
uint8_t *buf, int len, bool is_write)
|
2011-09-08 12:48:16 +02:00
|
|
|
{
|
2013-06-27 19:09:09 +02:00
|
|
|
CPUClass *cc = CPU_GET_CLASS(cpu);
|
|
|
|
|
|
|
|
if (cc->memory_rw_debug) {
|
|
|
|
return cc->memory_rw_debug(cpu, addr, buf, len, is_write);
|
|
|
|
}
|
|
|
|
return cpu_memory_rw_debug(cpu, addr, buf, len, is_write);
|
2011-09-08 12:48:16 +02:00
|
|
|
}
|
2008-12-18 23:44:13 +01:00
|
|
|
|
|
|
|
enum {
|
|
|
|
GDB_SIGNAL_0 = 0,
|
|
|
|
GDB_SIGNAL_INT = 2,
|
2011-03-22 11:02:09 +01:00
|
|
|
GDB_SIGNAL_QUIT = 3,
|
2008-12-18 23:44:13 +01:00
|
|
|
GDB_SIGNAL_TRAP = 5,
|
2011-03-22 11:02:09 +01:00
|
|
|
GDB_SIGNAL_ABRT = 6,
|
|
|
|
GDB_SIGNAL_ALRM = 14,
|
|
|
|
GDB_SIGNAL_IO = 23,
|
|
|
|
GDB_SIGNAL_XCPU = 24,
|
2008-12-18 23:44:13 +01:00
|
|
|
GDB_SIGNAL_UNKNOWN = 143
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
|
|
|
|
/* Map target signal numbers to GDB protocol signal numbers and vice
|
|
|
|
* versa. For user emulation's currently supported systems, we can
|
|
|
|
* assume most signals are defined.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int gdb_signal_table[] = {
|
|
|
|
0,
|
|
|
|
TARGET_SIGHUP,
|
|
|
|
TARGET_SIGINT,
|
|
|
|
TARGET_SIGQUIT,
|
|
|
|
TARGET_SIGILL,
|
|
|
|
TARGET_SIGTRAP,
|
|
|
|
TARGET_SIGABRT,
|
|
|
|
-1, /* SIGEMT */
|
|
|
|
TARGET_SIGFPE,
|
|
|
|
TARGET_SIGKILL,
|
|
|
|
TARGET_SIGBUS,
|
|
|
|
TARGET_SIGSEGV,
|
|
|
|
TARGET_SIGSYS,
|
|
|
|
TARGET_SIGPIPE,
|
|
|
|
TARGET_SIGALRM,
|
|
|
|
TARGET_SIGTERM,
|
|
|
|
TARGET_SIGURG,
|
|
|
|
TARGET_SIGSTOP,
|
|
|
|
TARGET_SIGTSTP,
|
|
|
|
TARGET_SIGCONT,
|
|
|
|
TARGET_SIGCHLD,
|
|
|
|
TARGET_SIGTTIN,
|
|
|
|
TARGET_SIGTTOU,
|
|
|
|
TARGET_SIGIO,
|
|
|
|
TARGET_SIGXCPU,
|
|
|
|
TARGET_SIGXFSZ,
|
|
|
|
TARGET_SIGVTALRM,
|
|
|
|
TARGET_SIGPROF,
|
|
|
|
TARGET_SIGWINCH,
|
|
|
|
-1, /* SIGLOST */
|
|
|
|
TARGET_SIGUSR1,
|
|
|
|
TARGET_SIGUSR2,
|
2009-01-15 18:27:45 +01:00
|
|
|
#ifdef TARGET_SIGPWR
|
2008-12-18 23:44:13 +01:00
|
|
|
TARGET_SIGPWR,
|
2009-01-15 18:27:45 +01:00
|
|
|
#else
|
|
|
|
-1,
|
|
|
|
#endif
|
2008-12-18 23:44:13 +01:00
|
|
|
-1, /* SIGPOLL */
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
2009-01-15 18:27:45 +01:00
|
|
|
#ifdef __SIGRTMIN
|
2008-12-18 23:44:13 +01:00
|
|
|
__SIGRTMIN + 1,
|
|
|
|
__SIGRTMIN + 2,
|
|
|
|
__SIGRTMIN + 3,
|
|
|
|
__SIGRTMIN + 4,
|
|
|
|
__SIGRTMIN + 5,
|
|
|
|
__SIGRTMIN + 6,
|
|
|
|
__SIGRTMIN + 7,
|
|
|
|
__SIGRTMIN + 8,
|
|
|
|
__SIGRTMIN + 9,
|
|
|
|
__SIGRTMIN + 10,
|
|
|
|
__SIGRTMIN + 11,
|
|
|
|
__SIGRTMIN + 12,
|
|
|
|
__SIGRTMIN + 13,
|
|
|
|
__SIGRTMIN + 14,
|
|
|
|
__SIGRTMIN + 15,
|
|
|
|
__SIGRTMIN + 16,
|
|
|
|
__SIGRTMIN + 17,
|
|
|
|
__SIGRTMIN + 18,
|
|
|
|
__SIGRTMIN + 19,
|
|
|
|
__SIGRTMIN + 20,
|
|
|
|
__SIGRTMIN + 21,
|
|
|
|
__SIGRTMIN + 22,
|
|
|
|
__SIGRTMIN + 23,
|
|
|
|
__SIGRTMIN + 24,
|
|
|
|
__SIGRTMIN + 25,
|
|
|
|
__SIGRTMIN + 26,
|
|
|
|
__SIGRTMIN + 27,
|
|
|
|
__SIGRTMIN + 28,
|
|
|
|
__SIGRTMIN + 29,
|
|
|
|
__SIGRTMIN + 30,
|
|
|
|
__SIGRTMIN + 31,
|
|
|
|
-1, /* SIGCANCEL */
|
|
|
|
__SIGRTMIN,
|
|
|
|
__SIGRTMIN + 32,
|
|
|
|
__SIGRTMIN + 33,
|
|
|
|
__SIGRTMIN + 34,
|
|
|
|
__SIGRTMIN + 35,
|
|
|
|
__SIGRTMIN + 36,
|
|
|
|
__SIGRTMIN + 37,
|
|
|
|
__SIGRTMIN + 38,
|
|
|
|
__SIGRTMIN + 39,
|
|
|
|
__SIGRTMIN + 40,
|
|
|
|
__SIGRTMIN + 41,
|
|
|
|
__SIGRTMIN + 42,
|
|
|
|
__SIGRTMIN + 43,
|
|
|
|
__SIGRTMIN + 44,
|
|
|
|
__SIGRTMIN + 45,
|
|
|
|
__SIGRTMIN + 46,
|
|
|
|
__SIGRTMIN + 47,
|
|
|
|
__SIGRTMIN + 48,
|
|
|
|
__SIGRTMIN + 49,
|
|
|
|
__SIGRTMIN + 50,
|
|
|
|
__SIGRTMIN + 51,
|
|
|
|
__SIGRTMIN + 52,
|
|
|
|
__SIGRTMIN + 53,
|
|
|
|
__SIGRTMIN + 54,
|
|
|
|
__SIGRTMIN + 55,
|
|
|
|
__SIGRTMIN + 56,
|
|
|
|
__SIGRTMIN + 57,
|
|
|
|
__SIGRTMIN + 58,
|
|
|
|
__SIGRTMIN + 59,
|
|
|
|
__SIGRTMIN + 60,
|
|
|
|
__SIGRTMIN + 61,
|
|
|
|
__SIGRTMIN + 62,
|
|
|
|
__SIGRTMIN + 63,
|
|
|
|
__SIGRTMIN + 64,
|
|
|
|
__SIGRTMIN + 65,
|
|
|
|
__SIGRTMIN + 66,
|
|
|
|
__SIGRTMIN + 67,
|
|
|
|
__SIGRTMIN + 68,
|
|
|
|
__SIGRTMIN + 69,
|
|
|
|
__SIGRTMIN + 70,
|
|
|
|
__SIGRTMIN + 71,
|
|
|
|
__SIGRTMIN + 72,
|
|
|
|
__SIGRTMIN + 73,
|
|
|
|
__SIGRTMIN + 74,
|
|
|
|
__SIGRTMIN + 75,
|
|
|
|
__SIGRTMIN + 76,
|
|
|
|
__SIGRTMIN + 77,
|
|
|
|
__SIGRTMIN + 78,
|
|
|
|
__SIGRTMIN + 79,
|
|
|
|
__SIGRTMIN + 80,
|
|
|
|
__SIGRTMIN + 81,
|
|
|
|
__SIGRTMIN + 82,
|
|
|
|
__SIGRTMIN + 83,
|
|
|
|
__SIGRTMIN + 84,
|
|
|
|
__SIGRTMIN + 85,
|
|
|
|
__SIGRTMIN + 86,
|
|
|
|
__SIGRTMIN + 87,
|
|
|
|
__SIGRTMIN + 88,
|
|
|
|
__SIGRTMIN + 89,
|
|
|
|
__SIGRTMIN + 90,
|
|
|
|
__SIGRTMIN + 91,
|
|
|
|
__SIGRTMIN + 92,
|
|
|
|
__SIGRTMIN + 93,
|
|
|
|
__SIGRTMIN + 94,
|
|
|
|
__SIGRTMIN + 95,
|
|
|
|
-1, /* SIGINFO */
|
|
|
|
-1, /* UNKNOWN */
|
|
|
|
-1, /* DEFAULT */
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1
|
2009-01-15 18:27:45 +01:00
|
|
|
#endif
|
2008-12-18 23:44:13 +01:00
|
|
|
};
|
2006-06-14 17:21:14 +02:00
|
|
|
#else
|
2008-12-18 23:44:13 +01:00
|
|
|
/* In system mode we only need SIGINT and SIGTRAP; other signals
|
|
|
|
are not yet supported. */
|
|
|
|
|
|
|
|
enum {
|
|
|
|
TARGET_SIGINT = 2,
|
|
|
|
TARGET_SIGTRAP = 5
|
|
|
|
};
|
|
|
|
|
|
|
|
static int gdb_signal_table[] = {
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
TARGET_SIGINT,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
TARGET_SIGTRAP
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
static int target_signal_to_gdb (int sig)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE (gdb_signal_table); i++)
|
|
|
|
if (gdb_signal_table[i] == sig)
|
|
|
|
return i;
|
|
|
|
return GDB_SIGNAL_UNKNOWN;
|
|
|
|
}
|
2006-06-14 17:21:14 +02:00
|
|
|
#endif
|
2003-06-27 19:34:32 +02:00
|
|
|
|
2008-12-18 23:44:13 +01:00
|
|
|
static int gdb_signal_to_target (int sig)
|
|
|
|
{
|
|
|
|
if (sig < ARRAY_SIZE (gdb_signal_table))
|
|
|
|
return gdb_signal_table[sig];
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-07-26 20:01:58 +02:00
|
|
|
//#define DEBUG_GDB
|
2003-06-27 19:34:32 +02:00
|
|
|
|
2008-10-11 19:55:29 +02:00
|
|
|
typedef struct GDBRegisterState {
|
|
|
|
int base_reg;
|
|
|
|
int num_regs;
|
|
|
|
gdb_reg_cb get_reg;
|
|
|
|
gdb_reg_cb set_reg;
|
|
|
|
const char *xml;
|
|
|
|
struct GDBRegisterState *next;
|
|
|
|
} GDBRegisterState;
|
|
|
|
|
2004-03-31 20:52:07 +02:00
|
|
|
enum RSState {
|
2009-03-28 19:05:53 +01:00
|
|
|
RS_INACTIVE,
|
2004-03-31 20:52:07 +02:00
|
|
|
RS_IDLE,
|
|
|
|
RS_GETLINE,
|
|
|
|
RS_CHKSUM1,
|
|
|
|
RS_CHKSUM2,
|
|
|
|
};
|
|
|
|
typedef struct GDBState {
|
2013-06-27 19:19:39 +02:00
|
|
|
CPUState *c_cpu; /* current CPU for step/continue ops */
|
|
|
|
CPUState *g_cpu; /* current CPU for other ops */
|
2013-06-27 13:44:40 +02:00
|
|
|
CPUState *query_cpu; /* for q{f|s}ThreadInfo */
|
2005-04-24 12:07:11 +02:00
|
|
|
enum RSState state; /* parsing state */
|
2008-10-11 19:55:29 +02:00
|
|
|
char line_buf[MAX_PACKET_LENGTH];
|
2004-03-31 20:52:07 +02:00
|
|
|
int line_buf_index;
|
|
|
|
int line_csum;
|
2008-10-11 19:55:29 +02:00
|
|
|
uint8_t last_packet[MAX_PACKET_LENGTH + 4];
|
2007-01-28 02:53:16 +01:00
|
|
|
int last_packet_len;
|
2008-05-18 00:20:53 +02:00
|
|
|
int signal;
|
2005-04-24 12:07:11 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2007-01-28 02:53:16 +01:00
|
|
|
int fd;
|
2005-04-24 12:07:11 +02:00
|
|
|
int running_state;
|
2007-01-28 02:53:16 +01:00
|
|
|
#else
|
|
|
|
CharDriverState *chr;
|
2009-03-06 00:01:55 +01:00
|
|
|
CharDriverState *mon_chr;
|
2005-04-24 12:07:11 +02:00
|
|
|
#endif
|
2012-03-15 18:49:45 +01:00
|
|
|
char syscall_buf[256];
|
|
|
|
gdb_syscall_complete_cb current_syscall_cb;
|
2004-03-31 20:52:07 +02:00
|
|
|
} GDBState;
|
2003-06-27 19:34:32 +02:00
|
|
|
|
2008-05-09 10:25:14 +02:00
|
|
|
/* By default use no IRQs and no timers while single stepping so as to
|
|
|
|
* make single stepping like an ICE HW step.
|
|
|
|
*/
|
|
|
|
static int sstep_flags = SSTEP_ENABLE|SSTEP_NOIRQ|SSTEP_NOTIMER;
|
|
|
|
|
2008-11-18 21:30:24 +01:00
|
|
|
static GDBState *gdbserver_state;
|
|
|
|
|
2013-06-29 04:18:45 +02:00
|
|
|
bool gdb_has_xml;
|
2008-10-11 19:55:29 +02:00
|
|
|
|
2014-12-11 13:07:48 +01:00
|
|
|
int semihosting_target = SEMIHOSTING_TARGET_AUTO;
|
|
|
|
|
2005-04-17 21:16:13 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2007-01-28 02:53:16 +01:00
|
|
|
/* XXX: This is not thread safe. Do we care? */
|
|
|
|
static int gdbserver_fd = -1;
|
|
|
|
|
2004-03-31 20:52:07 +02:00
|
|
|
static int get_char(GDBState *s)
|
2003-06-27 19:34:32 +02:00
|
|
|
{
|
|
|
|
uint8_t ch;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
for(;;) {
|
2011-07-23 22:04:29 +02:00
|
|
|
ret = qemu_recv(s->fd, &ch, 1, 0);
|
2003-06-27 19:34:32 +02:00
|
|
|
if (ret < 0) {
|
2008-05-18 00:20:53 +02:00
|
|
|
if (errno == ECONNRESET)
|
|
|
|
s->fd = -1;
|
2003-06-27 19:34:32 +02:00
|
|
|
if (errno != EINTR && errno != EAGAIN)
|
|
|
|
return -1;
|
|
|
|
} else if (ret == 0) {
|
2008-05-18 00:20:53 +02:00
|
|
|
close(s->fd);
|
|
|
|
s->fd = -1;
|
2003-06-27 19:34:32 +02:00
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ch;
|
|
|
|
}
|
2007-01-28 02:53:16 +01:00
|
|
|
#endif
|
2003-06-27 19:34:32 +02:00
|
|
|
|
2009-04-18 09:29:59 +02:00
|
|
|
static enum {
|
2007-01-28 04:10:55 +01:00
|
|
|
GDB_SYS_UNKNOWN,
|
|
|
|
GDB_SYS_ENABLED,
|
|
|
|
GDB_SYS_DISABLED,
|
|
|
|
} gdb_syscall_mode;
|
|
|
|
|
2014-12-11 13:07:48 +01:00
|
|
|
/* Decide if either remote gdb syscalls or native file IO should be used. */
|
2007-01-28 04:10:55 +01:00
|
|
|
int use_gdb_syscalls(void)
|
|
|
|
{
|
2014-12-11 13:07:48 +01:00
|
|
|
if (semihosting_target == SEMIHOSTING_TARGET_NATIVE) {
|
|
|
|
/* -semihosting-config target=native */
|
|
|
|
return false;
|
|
|
|
} else if (semihosting_target == SEMIHOSTING_TARGET_GDB) {
|
|
|
|
/* -semihosting-config target=gdb */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -semihosting-config target=auto */
|
|
|
|
/* On the first call check if gdb is connected and remember. */
|
2007-01-28 04:10:55 +01:00
|
|
|
if (gdb_syscall_mode == GDB_SYS_UNKNOWN) {
|
2008-11-18 21:30:24 +01:00
|
|
|
gdb_syscall_mode = (gdbserver_state ? GDB_SYS_ENABLED
|
|
|
|
: GDB_SYS_DISABLED);
|
2007-01-28 04:10:55 +01:00
|
|
|
}
|
|
|
|
return gdb_syscall_mode == GDB_SYS_ENABLED;
|
|
|
|
}
|
|
|
|
|
2008-03-14 07:10:42 +01:00
|
|
|
/* Resume execution. */
|
|
|
|
static inline void gdb_continue(GDBState *s)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
s->running_state = 1;
|
|
|
|
#else
|
2013-06-03 17:06:54 +02:00
|
|
|
if (!runstate_needs_reset()) {
|
2013-05-30 13:20:40 +02:00
|
|
|
vm_start();
|
|
|
|
}
|
2008-03-14 07:10:42 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-03-31 20:52:07 +02:00
|
|
|
static void put_buffer(GDBState *s, const uint8_t *buf, int len)
|
2003-06-27 19:34:32 +02:00
|
|
|
{
|
2007-01-28 02:53:16 +01:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2003-06-27 19:34:32 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
while (len > 0) {
|
2006-06-14 17:21:14 +02:00
|
|
|
ret = send(s->fd, buf, len, 0);
|
2003-06-27 19:34:32 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
if (errno != EINTR && errno != EAGAIN)
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
buf += ret;
|
|
|
|
len -= ret;
|
|
|
|
}
|
|
|
|
}
|
2007-01-28 02:53:16 +01:00
|
|
|
#else
|
2011-08-15 18:17:28 +02:00
|
|
|
qemu_chr_fe_write(s->chr, buf, len);
|
2007-01-28 02:53:16 +01:00
|
|
|
#endif
|
2003-06-27 19:34:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int fromhex(int v)
|
|
|
|
{
|
|
|
|
if (v >= '0' && v <= '9')
|
|
|
|
return v - '0';
|
|
|
|
else if (v >= 'A' && v <= 'F')
|
|
|
|
return v - 'A' + 10;
|
|
|
|
else if (v >= 'a' && v <= 'f')
|
|
|
|
return v - 'a' + 10;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int tohex(int v)
|
|
|
|
{
|
|
|
|
if (v < 10)
|
|
|
|
return v + '0';
|
|
|
|
else
|
|
|
|
return v - 10 + 'a';
|
|
|
|
}
|
|
|
|
|
|
|
|
static void memtohex(char *buf, const uint8_t *mem, int len)
|
|
|
|
{
|
|
|
|
int i, c;
|
|
|
|
char *q;
|
|
|
|
q = buf;
|
|
|
|
for(i = 0; i < len; i++) {
|
|
|
|
c = mem[i];
|
|
|
|
*q++ = tohex(c >> 4);
|
|
|
|
*q++ = tohex(c & 0xf);
|
|
|
|
}
|
|
|
|
*q = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
static void hextomem(uint8_t *mem, const char *buf, int len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i = 0; i < len; i++) {
|
|
|
|
mem[i] = (fromhex(buf[0]) << 4) | fromhex(buf[1]);
|
|
|
|
buf += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return -1 if error, 0 if OK */
|
2008-10-11 19:55:29 +02:00
|
|
|
static int put_packet_binary(GDBState *s, const char *buf, int len)
|
2003-06-27 19:34:32 +02:00
|
|
|
{
|
2008-10-11 19:55:29 +02:00
|
|
|
int csum, i;
|
2007-12-16 04:02:09 +01:00
|
|
|
uint8_t *p;
|
2003-06-27 19:34:32 +02:00
|
|
|
|
|
|
|
for(;;) {
|
2007-01-28 02:53:16 +01:00
|
|
|
p = s->last_packet;
|
|
|
|
*(p++) = '$';
|
|
|
|
memcpy(p, buf, len);
|
|
|
|
p += len;
|
2003-06-27 19:34:32 +02:00
|
|
|
csum = 0;
|
|
|
|
for(i = 0; i < len; i++) {
|
|
|
|
csum += buf[i];
|
|
|
|
}
|
2007-01-28 02:53:16 +01:00
|
|
|
*(p++) = '#';
|
|
|
|
*(p++) = tohex((csum >> 4) & 0xf);
|
|
|
|
*(p++) = tohex((csum) & 0xf);
|
2003-06-27 19:34:32 +02:00
|
|
|
|
2007-01-28 02:53:16 +01:00
|
|
|
s->last_packet_len = p - s->last_packet;
|
2007-12-16 04:16:05 +01:00
|
|
|
put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
|
2003-06-27 19:34:32 +02:00
|
|
|
|
2007-01-28 02:53:16 +01:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
i = get_char(s);
|
|
|
|
if (i < 0)
|
2003-06-27 19:34:32 +02:00
|
|
|
return -1;
|
2007-01-28 02:53:16 +01:00
|
|
|
if (i == '+')
|
2003-06-27 19:34:32 +02:00
|
|
|
break;
|
2007-01-28 02:53:16 +01:00
|
|
|
#else
|
|
|
|
break;
|
|
|
|
#endif
|
2003-06-27 19:34:32 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-11 19:55:29 +02:00
|
|
|
/* return -1 if error, 0 if OK */
|
|
|
|
static int put_packet(GDBState *s, const char *buf)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_GDB
|
|
|
|
printf("reply='%s'\n", buf);
|
|
|
|
#endif
|
2008-05-09 16:40:22 +02:00
|
|
|
|
2008-10-11 19:55:29 +02:00
|
|
|
return put_packet_binary(s, buf, strlen(buf));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Encode data using the encoding for 'x' packets. */
|
|
|
|
static int memtox(char *buf, const char *mem, int len)
|
|
|
|
{
|
|
|
|
char *p = buf;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
while (len--) {
|
|
|
|
c = *(mem++);
|
|
|
|
switch (c) {
|
|
|
|
case '#': case '$': case '*': case '}':
|
|
|
|
*(p++) = '}';
|
|
|
|
*(p++) = c ^ 0x20;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*(p++) = c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return p - buf;
|
|
|
|
}
|
2007-10-08 15:16:14 +02:00
|
|
|
|
2013-07-07 15:08:22 +02:00
|
|
|
static const char *get_feature_xml(const char *p, const char **newp,
|
|
|
|
CPUClass *cc)
|
2008-10-11 19:55:29 +02:00
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
int i;
|
|
|
|
const char *name;
|
|
|
|
static char target_xml[1024];
|
|
|
|
|
|
|
|
len = 0;
|
|
|
|
while (p[len] && p[len] != ':')
|
|
|
|
len++;
|
|
|
|
*newp = p + len;
|
|
|
|
|
|
|
|
name = NULL;
|
|
|
|
if (strncmp(p, "target.xml", len) == 0) {
|
|
|
|
/* Generate the XML description for this CPU. */
|
|
|
|
if (!target_xml[0]) {
|
|
|
|
GDBRegisterState *r;
|
2013-06-28 21:11:37 +02:00
|
|
|
CPUState *cpu = first_cpu;
|
2008-10-11 19:55:29 +02:00
|
|
|
|
2008-10-25 13:18:12 +02:00
|
|
|
snprintf(target_xml, sizeof(target_xml),
|
|
|
|
"<?xml version=\"1.0\"?>"
|
|
|
|
"<!DOCTYPE target SYSTEM \"gdb-target.dtd\">"
|
|
|
|
"<target>"
|
|
|
|
"<xi:include href=\"%s\"/>",
|
2013-07-07 15:08:22 +02:00
|
|
|
cc->gdb_core_xml_file);
|
2008-10-11 19:55:29 +02:00
|
|
|
|
2013-06-28 21:11:37 +02:00
|
|
|
for (r = cpu->gdb_regs; r; r = r->next) {
|
2009-04-13 18:06:19 +02:00
|
|
|
pstrcat(target_xml, sizeof(target_xml), "<xi:include href=\"");
|
|
|
|
pstrcat(target_xml, sizeof(target_xml), r->xml);
|
|
|
|
pstrcat(target_xml, sizeof(target_xml), "\"/>");
|
2008-10-11 19:55:29 +02:00
|
|
|
}
|
2009-04-13 18:06:19 +02:00
|
|
|
pstrcat(target_xml, sizeof(target_xml), "</target>");
|
2008-10-11 19:55:29 +02:00
|
|
|
}
|
|
|
|
return target_xml;
|
|
|
|
}
|
|
|
|
for (i = 0; ; i++) {
|
|
|
|
name = xml_builtin[i][0];
|
|
|
|
if (!name || (strncmp(name, p, len) == 0 && strlen(name) == len))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return name ? xml_builtin[i][1] : NULL;
|
|
|
|
}
|
2007-10-08 15:16:14 +02:00
|
|
|
|
2013-06-27 18:25:36 +02:00
|
|
|
static int gdb_read_register(CPUState *cpu, uint8_t *mem_buf, int reg)
|
2008-10-11 19:55:29 +02:00
|
|
|
{
|
2013-06-28 23:18:47 +02:00
|
|
|
CPUClass *cc = CPU_GET_CLASS(cpu);
|
2013-06-27 18:25:36 +02:00
|
|
|
CPUArchState *env = cpu->env_ptr;
|
2008-10-11 19:55:29 +02:00
|
|
|
GDBRegisterState *r;
|
2007-10-08 15:16:14 +02:00
|
|
|
|
2013-06-28 23:18:47 +02:00
|
|
|
if (reg < cc->gdb_num_core_regs) {
|
2013-06-29 04:18:45 +02:00
|
|
|
return cc->gdb_read_register(cpu, mem_buf, reg);
|
2013-06-28 23:18:47 +02:00
|
|
|
}
|
2007-10-08 15:16:14 +02:00
|
|
|
|
2013-06-28 21:11:37 +02:00
|
|
|
for (r = cpu->gdb_regs; r; r = r->next) {
|
2008-10-11 19:55:29 +02:00
|
|
|
if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
|
|
|
|
return r->get_reg(env, mem_buf, reg - r->base_reg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2007-10-08 15:16:14 +02:00
|
|
|
}
|
|
|
|
|
2013-06-27 18:25:36 +02:00
|
|
|
static int gdb_write_register(CPUState *cpu, uint8_t *mem_buf, int reg)
|
2007-10-08 15:16:14 +02:00
|
|
|
{
|
2013-06-28 23:18:47 +02:00
|
|
|
CPUClass *cc = CPU_GET_CLASS(cpu);
|
2013-06-27 18:25:36 +02:00
|
|
|
CPUArchState *env = cpu->env_ptr;
|
2008-10-11 19:55:29 +02:00
|
|
|
GDBRegisterState *r;
|
2007-10-08 15:16:14 +02:00
|
|
|
|
2013-06-28 23:18:47 +02:00
|
|
|
if (reg < cc->gdb_num_core_regs) {
|
2013-06-29 04:18:45 +02:00
|
|
|
return cc->gdb_write_register(cpu, mem_buf, reg);
|
2013-06-28 23:18:47 +02:00
|
|
|
}
|
2008-10-11 19:55:29 +02:00
|
|
|
|
2013-06-28 21:11:37 +02:00
|
|
|
for (r = cpu->gdb_regs; r; r = r->next) {
|
2008-10-11 19:55:29 +02:00
|
|
|
if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
|
|
|
|
return r->set_reg(env, mem_buf, reg - r->base_reg);
|
|
|
|
}
|
|
|
|
}
|
2004-01-04 16:48:38 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-11 19:55:29 +02:00
|
|
|
/* Register a supplemental set of CPU registers. If g_pos is nonzero it
|
|
|
|
specifies the first register number and these registers are included in
|
|
|
|
a standard "g" packet. Direction is relative to gdb, i.e. get_reg is
|
|
|
|
gdb reading a CPU register, and set_reg is gdb modifying a CPU register.
|
|
|
|
*/
|
|
|
|
|
2013-06-28 21:27:39 +02:00
|
|
|
void gdb_register_coprocessor(CPUState *cpu,
|
|
|
|
gdb_reg_cb get_reg, gdb_reg_cb set_reg,
|
|
|
|
int num_regs, const char *xml, int g_pos)
|
2004-01-04 16:48:38 +01:00
|
|
|
{
|
2008-10-11 19:55:29 +02:00
|
|
|
GDBRegisterState *s;
|
|
|
|
GDBRegisterState **p;
|
|
|
|
|
2013-06-28 21:11:37 +02:00
|
|
|
p = &cpu->gdb_regs;
|
2008-10-11 19:55:29 +02:00
|
|
|
while (*p) {
|
|
|
|
/* Check for duplicates. */
|
|
|
|
if (strcmp((*p)->xml, xml) == 0)
|
|
|
|
return;
|
|
|
|
p = &(*p)->next;
|
|
|
|
}
|
2011-10-18 22:25:38 +02:00
|
|
|
|
|
|
|
s = g_new0(GDBRegisterState, 1);
|
2013-06-28 23:18:47 +02:00
|
|
|
s->base_reg = cpu->gdb_num_regs;
|
2011-10-18 22:25:38 +02:00
|
|
|
s->num_regs = num_regs;
|
|
|
|
s->get_reg = get_reg;
|
|
|
|
s->set_reg = set_reg;
|
|
|
|
s->xml = xml;
|
|
|
|
|
2008-10-11 19:55:29 +02:00
|
|
|
/* Add to end of list. */
|
2013-06-28 23:18:47 +02:00
|
|
|
cpu->gdb_num_regs += num_regs;
|
2008-10-11 19:55:29 +02:00
|
|
|
*p = s;
|
|
|
|
if (g_pos) {
|
|
|
|
if (g_pos != s->base_reg) {
|
|
|
|
fprintf(stderr, "Error: Bad gdb register numbering for '%s'\n"
|
|
|
|
"Expected %d got %d\n", xml, g_pos, s->base_reg);
|
2013-08-12 18:09:47 +02:00
|
|
|
} else {
|
|
|
|
cpu->gdb_num_g_regs = cpu->gdb_num_regs;
|
2008-10-11 19:55:29 +02:00
|
|
|
}
|
|
|
|
}
|
2004-01-04 16:48:38 +01:00
|
|
|
}
|
|
|
|
|
2008-11-18 21:07:32 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2014-09-12 20:04:17 +02:00
|
|
|
/* Translate GDB watchpoint type to a flags value for cpu_watchpoint_* */
|
|
|
|
static inline int xlat_gdb_type(CPUState *cpu, int gdbtype)
|
|
|
|
{
|
|
|
|
static const int xlat[] = {
|
|
|
|
[GDB_WATCHPOINT_WRITE] = BP_GDB | BP_MEM_WRITE,
|
|
|
|
[GDB_WATCHPOINT_READ] = BP_GDB | BP_MEM_READ,
|
|
|
|
[GDB_WATCHPOINT_ACCESS] = BP_GDB | BP_MEM_ACCESS,
|
|
|
|
};
|
|
|
|
|
|
|
|
CPUClass *cc = CPU_GET_CLASS(cpu);
|
|
|
|
int cputype = xlat[gdbtype];
|
|
|
|
|
|
|
|
if (cc->gdb_stop_before_watchpoint) {
|
|
|
|
cputype |= BP_STOP_BEFORE_ACCESS;
|
|
|
|
}
|
|
|
|
return cputype;
|
|
|
|
}
|
2008-11-18 21:07:32 +01:00
|
|
|
#endif
|
|
|
|
|
2008-11-18 21:30:24 +01:00
|
|
|
static int gdb_breakpoint_insert(target_ulong addr, target_ulong len, int type)
|
2008-11-18 21:07:32 +01:00
|
|
|
{
|
2013-05-29 22:29:20 +02:00
|
|
|
CPUState *cpu;
|
2008-11-18 21:30:24 +01:00
|
|
|
int err = 0;
|
|
|
|
|
2013-06-27 17:12:06 +02:00
|
|
|
if (kvm_enabled()) {
|
2013-06-27 19:19:39 +02:00
|
|
|
return kvm_insert_breakpoint(gdbserver_state->c_cpu, addr, len, type);
|
2013-06-27 17:12:06 +02:00
|
|
|
}
|
2009-03-12 21:12:48 +01:00
|
|
|
|
2008-11-18 21:07:32 +01:00
|
|
|
switch (type) {
|
|
|
|
case GDB_BREAKPOINT_SW:
|
|
|
|
case GDB_BREAKPOINT_HW:
|
2013-06-24 23:50:24 +02:00
|
|
|
CPU_FOREACH(cpu) {
|
2013-09-02 17:26:20 +02:00
|
|
|
err = cpu_breakpoint_insert(cpu, addr, BP_GDB, NULL);
|
|
|
|
if (err) {
|
2008-11-18 21:30:24 +01:00
|
|
|
break;
|
2013-09-02 17:26:20 +02:00
|
|
|
}
|
2008-11-18 21:30:24 +01:00
|
|
|
}
|
|
|
|
return err;
|
2008-11-18 21:07:32 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
case GDB_WATCHPOINT_WRITE:
|
|
|
|
case GDB_WATCHPOINT_READ:
|
|
|
|
case GDB_WATCHPOINT_ACCESS:
|
2013-06-24 23:50:24 +02:00
|
|
|
CPU_FOREACH(cpu) {
|
2014-09-12 20:04:17 +02:00
|
|
|
err = cpu_watchpoint_insert(cpu, addr, len,
|
|
|
|
xlat_gdb_type(cpu, type), NULL);
|
|
|
|
if (err) {
|
2008-11-18 21:30:24 +01:00
|
|
|
break;
|
2014-09-12 20:04:17 +02:00
|
|
|
}
|
2008-11-18 21:30:24 +01:00
|
|
|
}
|
|
|
|
return err;
|
2008-11-18 21:07:32 +01:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-18 21:30:24 +01:00
|
|
|
static int gdb_breakpoint_remove(target_ulong addr, target_ulong len, int type)
|
2008-11-18 21:07:32 +01:00
|
|
|
{
|
2013-05-29 22:29:20 +02:00
|
|
|
CPUState *cpu;
|
2008-11-18 21:30:24 +01:00
|
|
|
int err = 0;
|
|
|
|
|
2013-06-27 17:12:06 +02:00
|
|
|
if (kvm_enabled()) {
|
2013-06-27 19:19:39 +02:00
|
|
|
return kvm_remove_breakpoint(gdbserver_state->c_cpu, addr, len, type);
|
2013-06-27 17:12:06 +02:00
|
|
|
}
|
2009-03-12 21:12:48 +01:00
|
|
|
|
2008-11-18 21:07:32 +01:00
|
|
|
switch (type) {
|
|
|
|
case GDB_BREAKPOINT_SW:
|
|
|
|
case GDB_BREAKPOINT_HW:
|
2013-06-24 23:50:24 +02:00
|
|
|
CPU_FOREACH(cpu) {
|
2013-09-02 17:26:20 +02:00
|
|
|
err = cpu_breakpoint_remove(cpu, addr, BP_GDB);
|
|
|
|
if (err) {
|
2008-11-18 21:30:24 +01:00
|
|
|
break;
|
2013-09-02 17:26:20 +02:00
|
|
|
}
|
2008-11-18 21:30:24 +01:00
|
|
|
}
|
|
|
|
return err;
|
2008-11-18 21:07:32 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
case GDB_WATCHPOINT_WRITE:
|
|
|
|
case GDB_WATCHPOINT_READ:
|
|
|
|
case GDB_WATCHPOINT_ACCESS:
|
2013-06-24 23:50:24 +02:00
|
|
|
CPU_FOREACH(cpu) {
|
2014-09-12 20:04:17 +02:00
|
|
|
err = cpu_watchpoint_remove(cpu, addr, len,
|
|
|
|
xlat_gdb_type(cpu, type));
|
2008-11-18 21:30:24 +01:00
|
|
|
if (err)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return err;
|
2008-11-18 21:07:32 +01:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-18 21:30:24 +01:00
|
|
|
static void gdb_breakpoint_remove_all(void)
|
2008-11-18 21:07:32 +01:00
|
|
|
{
|
2013-05-29 22:29:20 +02:00
|
|
|
CPUState *cpu;
|
2008-11-18 21:30:24 +01:00
|
|
|
|
2009-03-12 21:12:48 +01:00
|
|
|
if (kvm_enabled()) {
|
2013-06-27 19:19:39 +02:00
|
|
|
kvm_remove_all_breakpoints(gdbserver_state->c_cpu);
|
2009-03-12 21:12:48 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-24 23:50:24 +02:00
|
|
|
CPU_FOREACH(cpu) {
|
2013-09-02 17:26:20 +02:00
|
|
|
cpu_breakpoint_remove_all(cpu, BP_GDB);
|
2008-11-18 21:07:32 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2013-09-02 16:57:02 +02:00
|
|
|
cpu_watchpoint_remove_all(cpu, BP_GDB);
|
2008-11-18 21:07:32 +01:00
|
|
|
#endif
|
2008-11-18 21:30:24 +01:00
|
|
|
}
|
2008-11-18 21:07:32 +01:00
|
|
|
}
|
|
|
|
|
2009-04-08 23:29:37 +02:00
|
|
|
static void gdb_set_cpu_pc(GDBState *s, target_ulong pc)
|
|
|
|
{
|
2013-06-27 19:19:39 +02:00
|
|
|
CPUState *cpu = s->c_cpu;
|
2013-06-21 19:09:18 +02:00
|
|
|
CPUClass *cc = CPU_GET_CLASS(cpu);
|
|
|
|
|
|
|
|
cpu_synchronize_state(cpu);
|
|
|
|
if (cc->set_pc) {
|
|
|
|
cc->set_pc(cpu, pc);
|
2009-12-08 17:06:30 +01:00
|
|
|
}
|
2009-04-08 23:29:37 +02:00
|
|
|
}
|
|
|
|
|
2013-06-27 19:19:39 +02:00
|
|
|
static CPUState *find_cpu(uint32_t thread_id)
|
2009-06-03 20:33:08 +02:00
|
|
|
{
|
2012-12-17 07:12:13 +01:00
|
|
|
CPUState *cpu;
|
2009-06-03 20:33:08 +02:00
|
|
|
|
2013-06-24 23:50:24 +02:00
|
|
|
CPU_FOREACH(cpu) {
|
2013-07-09 20:50:52 +02:00
|
|
|
if (cpu_index(cpu) == thread_id) {
|
2013-06-27 19:19:39 +02:00
|
|
|
return cpu;
|
2013-07-09 20:50:52 +02:00
|
|
|
}
|
2009-06-03 20:33:08 +02:00
|
|
|
}
|
2013-07-09 20:50:52 +02:00
|
|
|
|
|
|
|
return NULL;
|
2009-06-03 20:33:08 +02:00
|
|
|
}
|
|
|
|
|
2008-11-18 21:30:24 +01:00
|
|
|
static int gdb_handle_packet(GDBState *s, const char *line_buf)
|
2003-06-27 19:34:32 +02:00
|
|
|
{
|
2013-06-27 19:19:39 +02:00
|
|
|
CPUState *cpu;
|
2013-07-07 15:08:22 +02:00
|
|
|
CPUClass *cc;
|
2003-06-27 19:34:32 +02:00
|
|
|
const char *p;
|
2009-06-03 20:33:08 +02:00
|
|
|
uint32_t thread;
|
|
|
|
int ch, reg_size, type, res;
|
2008-10-11 19:55:29 +02:00
|
|
|
char buf[MAX_PACKET_LENGTH];
|
|
|
|
uint8_t mem_buf[MAX_PACKET_LENGTH];
|
|
|
|
uint8_t *registers;
|
2006-06-25 17:32:37 +02:00
|
|
|
target_ulong addr, len;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2004-03-31 20:52:07 +02:00
|
|
|
#ifdef DEBUG_GDB
|
|
|
|
printf("command='%s'\n", line_buf);
|
|
|
|
#endif
|
|
|
|
p = line_buf;
|
|
|
|
ch = *p++;
|
|
|
|
switch(ch) {
|
|
|
|
case '?':
|
2005-04-17 21:16:13 +02:00
|
|
|
/* TODO: Make this return the correct value for user-mode. */
|
2008-12-18 23:44:13 +01:00
|
|
|
snprintf(buf, sizeof(buf), "T%02xthread:%02x;", GDB_SIGNAL_TRAP,
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu_index(s->c_cpu));
|
2004-03-31 20:52:07 +02:00
|
|
|
put_packet(s, buf);
|
2008-05-17 20:58:29 +02:00
|
|
|
/* Remove all the breakpoints when this query is issued,
|
|
|
|
* because gdb is doing and initial connect and the state
|
|
|
|
* should be cleaned up.
|
|
|
|
*/
|
2008-11-18 21:30:24 +01:00
|
|
|
gdb_breakpoint_remove_all();
|
2004-03-31 20:52:07 +02:00
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
if (*p != '\0') {
|
2006-06-25 17:32:37 +02:00
|
|
|
addr = strtoull(p, (char **)&p, 16);
|
2009-04-08 23:29:37 +02:00
|
|
|
gdb_set_cpu_pc(s, addr);
|
2004-03-31 20:52:07 +02:00
|
|
|
}
|
2008-12-18 23:44:13 +01:00
|
|
|
s->signal = 0;
|
2008-03-14 07:10:42 +01:00
|
|
|
gdb_continue(s);
|
2005-04-24 12:07:11 +02:00
|
|
|
return RS_IDLE;
|
2008-05-18 00:20:53 +02:00
|
|
|
case 'C':
|
2008-12-18 23:44:13 +01:00
|
|
|
s->signal = gdb_signal_to_target (strtoul(p, (char **)&p, 16));
|
|
|
|
if (s->signal == -1)
|
|
|
|
s->signal = 0;
|
2008-05-18 00:20:53 +02:00
|
|
|
gdb_continue(s);
|
|
|
|
return RS_IDLE;
|
2009-06-27 09:53:51 +02:00
|
|
|
case 'v':
|
|
|
|
if (strncmp(p, "Cont", 4) == 0) {
|
|
|
|
int res_signal, res_thread;
|
|
|
|
|
|
|
|
p += 4;
|
|
|
|
if (*p == '?') {
|
|
|
|
put_packet(s, "vCont;c;C;s;S");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
res = 0;
|
|
|
|
res_signal = 0;
|
|
|
|
res_thread = 0;
|
|
|
|
while (*p) {
|
|
|
|
int action, signal;
|
|
|
|
|
|
|
|
if (*p++ != ';') {
|
|
|
|
res = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
action = *p++;
|
|
|
|
signal = 0;
|
|
|
|
if (action == 'C' || action == 'S') {
|
2014-11-05 15:47:39 +01:00
|
|
|
signal = gdb_signal_to_target(strtoul(p, (char **)&p, 16));
|
|
|
|
if (signal == -1) {
|
|
|
|
signal = 0;
|
|
|
|
}
|
2009-06-27 09:53:51 +02:00
|
|
|
} else if (action != 'c' && action != 's') {
|
|
|
|
res = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
thread = 0;
|
|
|
|
if (*p == ':') {
|
|
|
|
thread = strtoull(p+1, (char **)&p, 16);
|
|
|
|
}
|
|
|
|
action = tolower(action);
|
|
|
|
if (res == 0 || (res == 'c' && action == 's')) {
|
|
|
|
res = action;
|
|
|
|
res_signal = signal;
|
|
|
|
res_thread = thread;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (res) {
|
|
|
|
if (res_thread != -1 && res_thread != 0) {
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu = find_cpu(res_thread);
|
|
|
|
if (cpu == NULL) {
|
2009-06-27 09:53:51 +02:00
|
|
|
put_packet(s, "E22");
|
|
|
|
break;
|
|
|
|
}
|
2013-06-27 19:19:39 +02:00
|
|
|
s->c_cpu = cpu;
|
2009-06-27 09:53:51 +02:00
|
|
|
}
|
|
|
|
if (res == 's') {
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu_single_step(s->c_cpu, sstep_flags);
|
2009-06-27 09:53:51 +02:00
|
|
|
}
|
|
|
|
s->signal = res_signal;
|
|
|
|
gdb_continue(s);
|
|
|
|
return RS_IDLE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
goto unknown_command;
|
|
|
|
}
|
2008-05-17 20:58:29 +02:00
|
|
|
case 'k':
|
2012-03-06 18:32:35 +01:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2008-05-17 20:58:29 +02:00
|
|
|
/* Kill the target */
|
|
|
|
fprintf(stderr, "\nQEMU: Terminated via GDBstub\n");
|
|
|
|
exit(0);
|
2012-03-06 18:32:35 +01:00
|
|
|
#endif
|
2008-05-17 20:58:29 +02:00
|
|
|
case 'D':
|
|
|
|
/* Detach packet */
|
2008-11-18 21:30:24 +01:00
|
|
|
gdb_breakpoint_remove_all();
|
2010-02-26 18:13:50 +01:00
|
|
|
gdb_syscall_mode = GDB_SYS_DISABLED;
|
2008-05-17 20:58:29 +02:00
|
|
|
gdb_continue(s);
|
|
|
|
put_packet(s, "OK");
|
|
|
|
break;
|
2004-03-31 20:52:07 +02:00
|
|
|
case 's':
|
|
|
|
if (*p != '\0') {
|
2007-07-12 12:05:07 +02:00
|
|
|
addr = strtoull(p, (char **)&p, 16);
|
2009-04-08 23:29:37 +02:00
|
|
|
gdb_set_cpu_pc(s, addr);
|
2004-03-31 20:52:07 +02:00
|
|
|
}
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu_single_step(s->c_cpu, sstep_flags);
|
2008-03-14 07:10:42 +01:00
|
|
|
gdb_continue(s);
|
2005-04-24 12:07:11 +02:00
|
|
|
return RS_IDLE;
|
2007-01-28 04:10:55 +01:00
|
|
|
case 'F':
|
|
|
|
{
|
|
|
|
target_ulong ret;
|
|
|
|
target_ulong err;
|
|
|
|
|
|
|
|
ret = strtoull(p, (char **)&p, 16);
|
|
|
|
if (*p == ',') {
|
|
|
|
p++;
|
|
|
|
err = strtoull(p, (char **)&p, 16);
|
|
|
|
} else {
|
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
if (*p == ',')
|
|
|
|
p++;
|
|
|
|
type = *p;
|
2012-03-15 18:49:45 +01:00
|
|
|
if (s->current_syscall_cb) {
|
2013-06-27 19:19:39 +02:00
|
|
|
s->current_syscall_cb(s->c_cpu, ret, err);
|
2012-03-15 18:49:45 +01:00
|
|
|
s->current_syscall_cb = NULL;
|
|
|
|
}
|
2007-01-28 04:10:55 +01:00
|
|
|
if (type == 'C') {
|
|
|
|
put_packet(s, "T02");
|
|
|
|
} else {
|
2008-03-14 07:10:42 +01:00
|
|
|
gdb_continue(s);
|
2007-01-28 04:10:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2004-03-31 20:52:07 +02:00
|
|
|
case 'g':
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu_synchronize_state(s->g_cpu);
|
2008-10-11 19:55:29 +02:00
|
|
|
len = 0;
|
2013-08-12 18:09:47 +02:00
|
|
|
for (addr = 0; addr < s->g_cpu->gdb_num_g_regs; addr++) {
|
2013-06-27 19:19:39 +02:00
|
|
|
reg_size = gdb_read_register(s->g_cpu, mem_buf + len, addr);
|
2008-10-11 19:55:29 +02:00
|
|
|
len += reg_size;
|
|
|
|
}
|
|
|
|
memtohex(buf, mem_buf, len);
|
2004-03-31 20:52:07 +02:00
|
|
|
put_packet(s, buf);
|
|
|
|
break;
|
|
|
|
case 'G':
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu_synchronize_state(s->g_cpu);
|
2008-10-11 19:55:29 +02:00
|
|
|
registers = mem_buf;
|
2004-03-31 20:52:07 +02:00
|
|
|
len = strlen(p) / 2;
|
|
|
|
hextomem((uint8_t *)registers, p, len);
|
2013-08-12 18:09:47 +02:00
|
|
|
for (addr = 0; addr < s->g_cpu->gdb_num_g_regs && len > 0; addr++) {
|
2013-06-27 19:19:39 +02:00
|
|
|
reg_size = gdb_write_register(s->g_cpu, registers, addr);
|
2008-10-11 19:55:29 +02:00
|
|
|
len -= reg_size;
|
|
|
|
registers += reg_size;
|
|
|
|
}
|
2004-03-31 20:52:07 +02:00
|
|
|
put_packet(s, "OK");
|
|
|
|
break;
|
|
|
|
case 'm':
|
2006-06-25 17:32:37 +02:00
|
|
|
addr = strtoull(p, (char **)&p, 16);
|
2004-03-31 20:52:07 +02:00
|
|
|
if (*p == ',')
|
|
|
|
p++;
|
2006-06-25 17:32:37 +02:00
|
|
|
len = strtoull(p, NULL, 16);
|
2013-06-27 19:19:39 +02:00
|
|
|
if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, false) != 0) {
|
2005-12-05 20:55:19 +01:00
|
|
|
put_packet (s, "E14");
|
|
|
|
} else {
|
|
|
|
memtohex(buf, mem_buf, len);
|
|
|
|
put_packet(s, buf);
|
|
|
|
}
|
2004-03-31 20:52:07 +02:00
|
|
|
break;
|
|
|
|
case 'M':
|
2006-06-25 17:32:37 +02:00
|
|
|
addr = strtoull(p, (char **)&p, 16);
|
2004-03-31 20:52:07 +02:00
|
|
|
if (*p == ',')
|
|
|
|
p++;
|
2006-06-25 17:32:37 +02:00
|
|
|
len = strtoull(p, (char **)&p, 16);
|
2005-01-17 23:03:16 +01:00
|
|
|
if (*p == ':')
|
2004-03-31 20:52:07 +02:00
|
|
|
p++;
|
|
|
|
hextomem(mem_buf, p, len);
|
2013-06-27 19:19:39 +02:00
|
|
|
if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len,
|
2013-06-27 19:09:09 +02:00
|
|
|
true) != 0) {
|
2005-04-26 23:09:55 +02:00
|
|
|
put_packet(s, "E14");
|
2011-09-08 12:48:16 +02:00
|
|
|
} else {
|
2004-03-31 20:52:07 +02:00
|
|
|
put_packet(s, "OK");
|
2011-09-08 12:48:16 +02:00
|
|
|
}
|
2004-03-31 20:52:07 +02:00
|
|
|
break;
|
2008-10-11 19:55:29 +02:00
|
|
|
case 'p':
|
|
|
|
/* Older gdb are really dumb, and don't use 'g' if 'p' is avaialable.
|
|
|
|
This works, but can be very slow. Anything new enough to
|
|
|
|
understand XML also knows how to use this properly. */
|
|
|
|
if (!gdb_has_xml)
|
|
|
|
goto unknown_command;
|
|
|
|
addr = strtoull(p, (char **)&p, 16);
|
2013-06-27 19:19:39 +02:00
|
|
|
reg_size = gdb_read_register(s->g_cpu, mem_buf, addr);
|
2008-10-11 19:55:29 +02:00
|
|
|
if (reg_size) {
|
|
|
|
memtohex(buf, mem_buf, reg_size);
|
|
|
|
put_packet(s, buf);
|
|
|
|
} else {
|
|
|
|
put_packet(s, "E14");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
if (!gdb_has_xml)
|
|
|
|
goto unknown_command;
|
|
|
|
addr = strtoull(p, (char **)&p, 16);
|
|
|
|
if (*p == '=')
|
|
|
|
p++;
|
|
|
|
reg_size = strlen(p) / 2;
|
|
|
|
hextomem(mem_buf, p, reg_size);
|
2013-06-27 19:19:39 +02:00
|
|
|
gdb_write_register(s->g_cpu, mem_buf, addr);
|
2008-10-11 19:55:29 +02:00
|
|
|
put_packet(s, "OK");
|
|
|
|
break;
|
2004-03-31 20:52:07 +02:00
|
|
|
case 'Z':
|
|
|
|
case 'z':
|
|
|
|
type = strtoul(p, (char **)&p, 16);
|
|
|
|
if (*p == ',')
|
|
|
|
p++;
|
2006-06-25 17:32:37 +02:00
|
|
|
addr = strtoull(p, (char **)&p, 16);
|
2004-03-31 20:52:07 +02:00
|
|
|
if (*p == ',')
|
|
|
|
p++;
|
2006-06-25 17:32:37 +02:00
|
|
|
len = strtoull(p, (char **)&p, 16);
|
2008-11-18 21:07:32 +01:00
|
|
|
if (ch == 'Z')
|
2008-11-18 21:30:24 +01:00
|
|
|
res = gdb_breakpoint_insert(addr, len, type);
|
2008-11-18 21:07:32 +01:00
|
|
|
else
|
2008-11-18 21:30:24 +01:00
|
|
|
res = gdb_breakpoint_remove(addr, len, type);
|
2008-11-18 21:07:32 +01:00
|
|
|
if (res >= 0)
|
|
|
|
put_packet(s, "OK");
|
|
|
|
else if (res == -ENOSYS)
|
2008-06-09 02:20:13 +02:00
|
|
|
put_packet(s, "");
|
2008-11-18 21:07:32 +01:00
|
|
|
else
|
|
|
|
put_packet(s, "E22");
|
2004-03-31 20:52:07 +02:00
|
|
|
break;
|
2008-11-18 21:30:24 +01:00
|
|
|
case 'H':
|
|
|
|
type = *p++;
|
|
|
|
thread = strtoull(p, (char **)&p, 16);
|
|
|
|
if (thread == -1 || thread == 0) {
|
|
|
|
put_packet(s, "OK");
|
|
|
|
break;
|
|
|
|
}
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu = find_cpu(thread);
|
|
|
|
if (cpu == NULL) {
|
2008-11-18 21:30:24 +01:00
|
|
|
put_packet(s, "E22");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (type) {
|
|
|
|
case 'c':
|
2013-06-27 19:19:39 +02:00
|
|
|
s->c_cpu = cpu;
|
2008-11-18 21:30:24 +01:00
|
|
|
put_packet(s, "OK");
|
|
|
|
break;
|
|
|
|
case 'g':
|
2013-06-27 19:19:39 +02:00
|
|
|
s->g_cpu = cpu;
|
2008-11-18 21:30:24 +01:00
|
|
|
put_packet(s, "OK");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
put_packet(s, "E22");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
thread = strtoull(p, (char **)&p, 16);
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu = find_cpu(thread);
|
2009-06-03 20:33:08 +02:00
|
|
|
|
2013-06-27 19:19:39 +02:00
|
|
|
if (cpu != NULL) {
|
2009-06-03 20:33:08 +02:00
|
|
|
put_packet(s, "OK");
|
|
|
|
} else {
|
2008-11-18 21:30:24 +01:00
|
|
|
put_packet(s, "E22");
|
2009-06-03 20:33:08 +02:00
|
|
|
}
|
2008-11-18 21:30:24 +01:00
|
|
|
break;
|
2006-06-17 20:30:42 +02:00
|
|
|
case 'q':
|
2008-05-09 10:25:14 +02:00
|
|
|
case 'Q':
|
|
|
|
/* parse any 'q' packets here */
|
|
|
|
if (!strcmp(p,"qemu.sstepbits")) {
|
|
|
|
/* Query Breakpoint bit definitions */
|
2008-08-21 19:58:08 +02:00
|
|
|
snprintf(buf, sizeof(buf), "ENABLE=%x,NOIRQ=%x,NOTIMER=%x",
|
|
|
|
SSTEP_ENABLE,
|
|
|
|
SSTEP_NOIRQ,
|
|
|
|
SSTEP_NOTIMER);
|
2008-05-09 10:25:14 +02:00
|
|
|
put_packet(s, buf);
|
|
|
|
break;
|
|
|
|
} else if (strncmp(p,"qemu.sstep",10) == 0) {
|
|
|
|
/* Display or change the sstep_flags */
|
|
|
|
p += 10;
|
|
|
|
if (*p != '=') {
|
|
|
|
/* Display current setting */
|
2008-08-21 19:58:08 +02:00
|
|
|
snprintf(buf, sizeof(buf), "0x%x", sstep_flags);
|
2008-05-09 10:25:14 +02:00
|
|
|
put_packet(s, buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
type = strtoul(p, (char **)&p, 16);
|
|
|
|
sstep_flags = type;
|
|
|
|
put_packet(s, "OK");
|
|
|
|
break;
|
2008-11-18 21:30:24 +01:00
|
|
|
} else if (strcmp(p,"C") == 0) {
|
|
|
|
/* "Current thread" remains vague in the spec, so always return
|
|
|
|
* the first CPU (gdb returns the first thread). */
|
|
|
|
put_packet(s, "QC1");
|
|
|
|
break;
|
|
|
|
} else if (strcmp(p,"fThreadInfo") == 0) {
|
2013-06-27 13:44:40 +02:00
|
|
|
s->query_cpu = first_cpu;
|
2008-11-18 21:30:24 +01:00
|
|
|
goto report_cpuinfo;
|
|
|
|
} else if (strcmp(p,"sThreadInfo") == 0) {
|
|
|
|
report_cpuinfo:
|
|
|
|
if (s->query_cpu) {
|
2013-06-27 13:44:40 +02:00
|
|
|
snprintf(buf, sizeof(buf), "m%x", cpu_index(s->query_cpu));
|
2008-11-18 21:30:24 +01:00
|
|
|
put_packet(s, buf);
|
2013-06-24 23:50:24 +02:00
|
|
|
s->query_cpu = CPU_NEXT(s->query_cpu);
|
2008-11-18 21:30:24 +01:00
|
|
|
} else
|
|
|
|
put_packet(s, "l");
|
|
|
|
break;
|
|
|
|
} else if (strncmp(p,"ThreadExtraInfo,", 16) == 0) {
|
|
|
|
thread = strtoull(p+16, (char **)&p, 16);
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu = find_cpu(thread);
|
|
|
|
if (cpu != NULL) {
|
2013-05-01 14:24:52 +02:00
|
|
|
cpu_synchronize_state(cpu);
|
2009-06-03 20:33:08 +02:00
|
|
|
len = snprintf((char *)mem_buf, sizeof(mem_buf),
|
2012-12-17 06:18:02 +01:00
|
|
|
"CPU#%d [%s]", cpu->cpu_index,
|
2013-01-17 18:51:17 +01:00
|
|
|
cpu->halted ? "halted " : "running");
|
2009-06-03 20:33:08 +02:00
|
|
|
memtohex(buf, mem_buf, len);
|
|
|
|
put_packet(s, buf);
|
|
|
|
}
|
2008-11-18 21:30:24 +01:00
|
|
|
break;
|
2008-05-09 10:25:14 +02:00
|
|
|
}
|
2009-03-07 11:51:36 +01:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2008-05-09 10:25:14 +02:00
|
|
|
else if (strncmp(p, "Offsets", 7) == 0) {
|
2013-08-26 18:14:44 +02:00
|
|
|
TaskState *ts = s->c_cpu->opaque;
|
2006-06-17 20:30:42 +02:00
|
|
|
|
2008-08-21 19:58:08 +02:00
|
|
|
snprintf(buf, sizeof(buf),
|
|
|
|
"Text=" TARGET_ABI_FMT_lx ";Data=" TARGET_ABI_FMT_lx
|
|
|
|
";Bss=" TARGET_ABI_FMT_lx,
|
|
|
|
ts->info->code_offset,
|
|
|
|
ts->info->data_offset,
|
|
|
|
ts->info->data_offset);
|
2006-06-17 20:30:42 +02:00
|
|
|
put_packet(s, buf);
|
|
|
|
break;
|
|
|
|
}
|
2009-03-07 11:51:36 +01:00
|
|
|
#else /* !CONFIG_USER_ONLY */
|
2009-03-06 00:01:55 +01:00
|
|
|
else if (strncmp(p, "Rcmd,", 5) == 0) {
|
|
|
|
int len = strlen(p + 5);
|
|
|
|
|
|
|
|
if ((len % 2) != 0) {
|
|
|
|
put_packet(s, "E01");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
hextomem(mem_buf, p + 5, len);
|
|
|
|
len = len / 2;
|
|
|
|
mem_buf[len++] = 0;
|
2011-08-15 18:17:30 +02:00
|
|
|
qemu_chr_be_write(s->mon_chr, mem_buf, len);
|
2009-03-06 00:01:55 +01:00
|
|
|
put_packet(s, "OK");
|
|
|
|
break;
|
|
|
|
}
|
2009-03-07 11:51:36 +01:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
2008-10-11 19:55:29 +02:00
|
|
|
if (strncmp(p, "Supported", 9) == 0) {
|
2008-10-25 13:18:12 +02:00
|
|
|
snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH);
|
2013-07-07 15:08:22 +02:00
|
|
|
cc = CPU_GET_CLASS(first_cpu);
|
|
|
|
if (cc->gdb_core_xml_file != NULL) {
|
|
|
|
pstrcat(buf, sizeof(buf), ";qXfer:features:read+");
|
|
|
|
}
|
2008-10-11 19:55:29 +02:00
|
|
|
put_packet(s, buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (strncmp(p, "Xfer:features:read:", 19) == 0) {
|
|
|
|
const char *xml;
|
|
|
|
target_ulong total_len;
|
|
|
|
|
2013-07-07 15:08:22 +02:00
|
|
|
cc = CPU_GET_CLASS(first_cpu);
|
|
|
|
if (cc->gdb_core_xml_file == NULL) {
|
|
|
|
goto unknown_command;
|
|
|
|
}
|
|
|
|
|
2013-06-29 04:18:45 +02:00
|
|
|
gdb_has_xml = true;
|
2008-10-11 19:55:29 +02:00
|
|
|
p += 19;
|
2013-07-07 15:08:22 +02:00
|
|
|
xml = get_feature_xml(p, &p, cc);
|
2008-10-11 19:55:29 +02:00
|
|
|
if (!xml) {
|
2008-10-25 13:18:12 +02:00
|
|
|
snprintf(buf, sizeof(buf), "E00");
|
2008-10-11 19:55:29 +02:00
|
|
|
put_packet(s, buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*p == ':')
|
|
|
|
p++;
|
|
|
|
addr = strtoul(p, (char **)&p, 16);
|
|
|
|
if (*p == ',')
|
|
|
|
p++;
|
|
|
|
len = strtoul(p, (char **)&p, 16);
|
|
|
|
|
|
|
|
total_len = strlen(xml);
|
|
|
|
if (addr > total_len) {
|
2008-10-25 13:18:12 +02:00
|
|
|
snprintf(buf, sizeof(buf), "E00");
|
2008-10-11 19:55:29 +02:00
|
|
|
put_packet(s, buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (len > (MAX_PACKET_LENGTH - 5) / 2)
|
|
|
|
len = (MAX_PACKET_LENGTH - 5) / 2;
|
|
|
|
if (len < total_len - addr) {
|
|
|
|
buf[0] = 'm';
|
|
|
|
len = memtox(buf + 1, xml + addr, len);
|
|
|
|
} else {
|
|
|
|
buf[0] = 'l';
|
|
|
|
len = memtox(buf + 1, xml + addr, total_len - addr);
|
|
|
|
}
|
|
|
|
put_packet_binary(s, buf, len + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Unrecognised 'q' command. */
|
|
|
|
goto unknown_command;
|
|
|
|
|
2004-03-31 20:52:07 +02:00
|
|
|
default:
|
2008-10-11 19:55:29 +02:00
|
|
|
unknown_command:
|
2004-03-31 20:52:07 +02:00
|
|
|
/* put empty packet */
|
|
|
|
buf[0] = '\0';
|
|
|
|
put_packet(s, buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return RS_IDLE;
|
|
|
|
}
|
|
|
|
|
2013-05-27 02:06:09 +02:00
|
|
|
void gdb_set_stop_cpu(CPUState *cpu)
|
2008-11-18 21:30:24 +01:00
|
|
|
{
|
2013-06-27 19:19:39 +02:00
|
|
|
gdbserver_state->c_cpu = cpu;
|
|
|
|
gdbserver_state->g_cpu = cpu;
|
2008-11-18 21:30:24 +01:00
|
|
|
}
|
|
|
|
|
2005-04-17 21:16:13 +02:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2011-07-29 19:26:33 +02:00
|
|
|
static void gdb_vm_state_change(void *opaque, int running, RunState state)
|
2004-03-31 20:52:07 +02:00
|
|
|
{
|
2008-11-18 21:30:24 +01:00
|
|
|
GDBState *s = gdbserver_state;
|
2013-06-27 19:19:39 +02:00
|
|
|
CPUArchState *env = s->c_cpu->env_ptr;
|
|
|
|
CPUState *cpu = s->c_cpu;
|
2004-03-31 20:52:07 +02:00
|
|
|
char buf[256];
|
2008-11-18 20:55:44 +01:00
|
|
|
const char *type;
|
2004-03-31 20:52:07 +02:00
|
|
|
int ret;
|
|
|
|
|
2012-03-15 18:49:45 +01:00
|
|
|
if (running || s->state == RS_INACTIVE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Is there a GDB syscall waiting to be sent? */
|
|
|
|
if (s->current_syscall_cb) {
|
|
|
|
put_packet(s, s->syscall_buf);
|
2007-01-28 04:10:55 +01:00
|
|
|
return;
|
2011-02-09 16:29:40 +01:00
|
|
|
}
|
2011-07-29 19:26:33 +02:00
|
|
|
switch (state) {
|
2011-09-30 19:45:27 +02:00
|
|
|
case RUN_STATE_DEBUG:
|
2013-08-26 18:23:18 +02:00
|
|
|
if (cpu->watchpoint_hit) {
|
|
|
|
switch (cpu->watchpoint_hit->flags & BP_MEM_ACCESS) {
|
2008-11-18 21:07:32 +01:00
|
|
|
case BP_MEM_READ:
|
2008-11-18 20:55:44 +01:00
|
|
|
type = "r";
|
|
|
|
break;
|
2008-11-18 21:07:32 +01:00
|
|
|
case BP_MEM_ACCESS:
|
2008-11-18 20:55:44 +01:00
|
|
|
type = "a";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
type = "";
|
|
|
|
break;
|
|
|
|
}
|
2008-11-18 21:30:24 +01:00
|
|
|
snprintf(buf, sizeof(buf),
|
|
|
|
"T%02xthread:%02x;%swatch:" TARGET_FMT_lx ";",
|
2012-12-17 07:12:13 +01:00
|
|
|
GDB_SIGNAL_TRAP, cpu_index(cpu), type,
|
2013-08-26 18:23:18 +02:00
|
|
|
(target_ulong)cpu->watchpoint_hit->vaddr);
|
|
|
|
cpu->watchpoint_hit = NULL;
|
2011-03-22 11:02:09 +01:00
|
|
|
goto send_packet;
|
2007-03-17 00:58:11 +01:00
|
|
|
}
|
2011-03-22 11:02:09 +01:00
|
|
|
tb_flush(env);
|
2008-12-18 23:44:13 +01:00
|
|
|
ret = GDB_SIGNAL_TRAP;
|
2011-03-22 11:02:09 +01:00
|
|
|
break;
|
2011-09-30 19:45:27 +02:00
|
|
|
case RUN_STATE_PAUSED:
|
2009-01-22 18:15:29 +01:00
|
|
|
ret = GDB_SIGNAL_INT;
|
2011-03-22 11:02:09 +01:00
|
|
|
break;
|
2011-09-30 19:45:27 +02:00
|
|
|
case RUN_STATE_SHUTDOWN:
|
2011-03-22 11:02:09 +01:00
|
|
|
ret = GDB_SIGNAL_QUIT;
|
|
|
|
break;
|
2011-09-30 19:45:27 +02:00
|
|
|
case RUN_STATE_IO_ERROR:
|
2011-03-22 11:02:09 +01:00
|
|
|
ret = GDB_SIGNAL_IO;
|
|
|
|
break;
|
2011-09-30 19:45:27 +02:00
|
|
|
case RUN_STATE_WATCHDOG:
|
2011-03-22 11:02:09 +01:00
|
|
|
ret = GDB_SIGNAL_ALRM;
|
|
|
|
break;
|
2011-09-30 19:45:27 +02:00
|
|
|
case RUN_STATE_INTERNAL_ERROR:
|
2011-03-22 11:02:09 +01:00
|
|
|
ret = GDB_SIGNAL_ABRT;
|
|
|
|
break;
|
2011-09-30 19:45:27 +02:00
|
|
|
case RUN_STATE_SAVE_VM:
|
|
|
|
case RUN_STATE_RESTORE_VM:
|
2011-03-22 11:02:09 +01:00
|
|
|
return;
|
2011-09-30 19:45:27 +02:00
|
|
|
case RUN_STATE_FINISH_MIGRATE:
|
2011-03-22 11:02:09 +01:00
|
|
|
ret = GDB_SIGNAL_XCPU;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = GDB_SIGNAL_UNKNOWN;
|
|
|
|
break;
|
2006-04-23 20:42:15 +02:00
|
|
|
}
|
2012-12-17 07:12:13 +01:00
|
|
|
snprintf(buf, sizeof(buf), "T%02xthread:%02x;", ret, cpu_index(cpu));
|
2011-03-22 11:02:09 +01:00
|
|
|
|
|
|
|
send_packet:
|
2004-03-31 20:52:07 +02:00
|
|
|
put_packet(s, buf);
|
2011-03-22 11:02:09 +01:00
|
|
|
|
|
|
|
/* disable single step if it was enabled */
|
2013-06-24 18:41:06 +02:00
|
|
|
cpu_single_step(cpu, 0);
|
2004-03-31 20:52:07 +02:00
|
|
|
}
|
2005-04-17 21:16:13 +02:00
|
|
|
#endif
|
2004-03-31 20:52:07 +02:00
|
|
|
|
2007-01-28 04:10:55 +01:00
|
|
|
/* Send a gdb syscall request.
|
|
|
|
This accepts limited printf-style format specifiers, specifically:
|
2007-05-26 17:09:38 +02:00
|
|
|
%x - target_ulong argument printed in hex.
|
|
|
|
%lx - 64-bit argument printed in hex.
|
|
|
|
%s - string pointer (target_ulong) and length (int) pair. */
|
2008-09-14 08:45:34 +02:00
|
|
|
void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...)
|
2007-01-28 04:10:55 +01:00
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
char *p;
|
2012-03-15 18:49:45 +01:00
|
|
|
char *p_end;
|
2007-01-28 04:10:55 +01:00
|
|
|
target_ulong addr;
|
2007-05-26 17:09:38 +02:00
|
|
|
uint64_t i64;
|
2007-01-28 04:10:55 +01:00
|
|
|
GDBState *s;
|
|
|
|
|
2008-11-18 21:30:24 +01:00
|
|
|
s = gdbserver_state;
|
2007-01-28 04:10:55 +01:00
|
|
|
if (!s)
|
|
|
|
return;
|
2012-03-15 18:49:45 +01:00
|
|
|
s->current_syscall_cb = cb;
|
2007-01-28 04:10:55 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2011-09-30 19:45:27 +02:00
|
|
|
vm_stop(RUN_STATE_DEBUG);
|
2007-01-28 04:10:55 +01:00
|
|
|
#endif
|
|
|
|
va_start(va, fmt);
|
2012-03-15 18:49:45 +01:00
|
|
|
p = s->syscall_buf;
|
|
|
|
p_end = &s->syscall_buf[sizeof(s->syscall_buf)];
|
2007-01-28 04:10:55 +01:00
|
|
|
*(p++) = 'F';
|
|
|
|
while (*fmt) {
|
|
|
|
if (*fmt == '%') {
|
|
|
|
fmt++;
|
|
|
|
switch (*fmt++) {
|
|
|
|
case 'x':
|
|
|
|
addr = va_arg(va, target_ulong);
|
2012-03-15 18:49:45 +01:00
|
|
|
p += snprintf(p, p_end - p, TARGET_FMT_lx, addr);
|
2007-01-28 04:10:55 +01:00
|
|
|
break;
|
2007-05-26 17:09:38 +02:00
|
|
|
case 'l':
|
|
|
|
if (*(fmt++) != 'x')
|
|
|
|
goto bad_format;
|
|
|
|
i64 = va_arg(va, uint64_t);
|
2012-03-15 18:49:45 +01:00
|
|
|
p += snprintf(p, p_end - p, "%" PRIx64, i64);
|
2007-05-26 17:09:38 +02:00
|
|
|
break;
|
2007-01-28 04:10:55 +01:00
|
|
|
case 's':
|
|
|
|
addr = va_arg(va, target_ulong);
|
2012-03-15 18:49:45 +01:00
|
|
|
p += snprintf(p, p_end - p, TARGET_FMT_lx "/%x",
|
2008-08-21 19:58:08 +02:00
|
|
|
addr, va_arg(va, int));
|
2007-01-28 04:10:55 +01:00
|
|
|
break;
|
|
|
|
default:
|
2007-05-26 17:09:38 +02:00
|
|
|
bad_format:
|
2007-01-28 04:10:55 +01:00
|
|
|
fprintf(stderr, "gdbstub: Bad syscall format string '%s'\n",
|
|
|
|
fmt - 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*(p++) = *(fmt++);
|
|
|
|
}
|
|
|
|
}
|
2007-08-06 15:19:15 +02:00
|
|
|
*p = 0;
|
2007-01-28 04:10:55 +01:00
|
|
|
va_end(va);
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
2012-03-15 18:49:45 +01:00
|
|
|
put_packet(s, s->syscall_buf);
|
2013-06-27 19:19:39 +02:00
|
|
|
gdb_handlesig(s->c_cpu, 0);
|
2007-01-28 04:10:55 +01:00
|
|
|
#else
|
2012-03-15 18:49:45 +01:00
|
|
|
/* In this case wait to send the syscall packet until notification that
|
|
|
|
the CPU has stopped. This must be done because if the packet is sent
|
|
|
|
now the reply from the syscall request could be received while the CPU
|
|
|
|
is still in the running state, which can cause packets to be dropped
|
|
|
|
and state transition 'T' packets to be sent while the syscall is still
|
|
|
|
being processed. */
|
2013-06-27 19:19:39 +02:00
|
|
|
cpu_exit(s->c_cpu);
|
2007-01-28 04:10:55 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-11-22 00:25:50 +01:00
|
|
|
static void gdb_read_byte(GDBState *s, int ch)
|
2004-03-31 20:52:07 +02:00
|
|
|
{
|
|
|
|
int i, csum;
|
2007-12-16 04:02:09 +01:00
|
|
|
uint8_t reply;
|
2004-03-31 20:52:07 +02:00
|
|
|
|
2005-04-17 21:16:13 +02:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2007-01-28 02:53:16 +01:00
|
|
|
if (s->last_packet_len) {
|
|
|
|
/* Waiting for a response to the last packet. If we see the start
|
|
|
|
of a new command then abandon the previous response. */
|
|
|
|
if (ch == '-') {
|
|
|
|
#ifdef DEBUG_GDB
|
|
|
|
printf("Got NACK, retransmitting\n");
|
|
|
|
#endif
|
2007-12-16 04:16:05 +01:00
|
|
|
put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
|
2007-01-28 02:53:16 +01:00
|
|
|
}
|
|
|
|
#ifdef DEBUG_GDB
|
|
|
|
else if (ch == '+')
|
|
|
|
printf("Got ACK\n");
|
|
|
|
else
|
|
|
|
printf("Got '%c' when expecting ACK/NACK\n", ch);
|
|
|
|
#endif
|
|
|
|
if (ch == '+' || ch == '$')
|
|
|
|
s->last_packet_len = 0;
|
|
|
|
if (ch != '$')
|
|
|
|
return;
|
|
|
|
}
|
2011-07-29 20:36:43 +02:00
|
|
|
if (runstate_is_running()) {
|
2004-03-31 20:52:07 +02:00
|
|
|
/* when the CPU is running, we cannot do anything except stop
|
|
|
|
it when receiving a char */
|
2011-09-30 19:45:27 +02:00
|
|
|
vm_stop(RUN_STATE_PAUSED);
|
2007-09-16 23:08:06 +02:00
|
|
|
} else
|
2005-04-17 21:16:13 +02:00
|
|
|
#endif
|
2005-04-24 12:07:11 +02:00
|
|
|
{
|
2004-03-31 20:52:07 +02:00
|
|
|
switch(s->state) {
|
|
|
|
case RS_IDLE:
|
|
|
|
if (ch == '$') {
|
|
|
|
s->line_buf_index = 0;
|
|
|
|
s->state = RS_GETLINE;
|
2003-07-29 22:50:33 +02:00
|
|
|
}
|
2003-06-27 19:34:32 +02:00
|
|
|
break;
|
2004-03-31 20:52:07 +02:00
|
|
|
case RS_GETLINE:
|
|
|
|
if (ch == '#') {
|
|
|
|
s->state = RS_CHKSUM1;
|
|
|
|
} else if (s->line_buf_index >= sizeof(s->line_buf) - 1) {
|
|
|
|
s->state = RS_IDLE;
|
2003-07-26 14:06:08 +02:00
|
|
|
} else {
|
2004-03-31 20:52:07 +02:00
|
|
|
s->line_buf[s->line_buf_index++] = ch;
|
2003-07-26 14:06:08 +02:00
|
|
|
}
|
|
|
|
break;
|
2004-03-31 20:52:07 +02:00
|
|
|
case RS_CHKSUM1:
|
|
|
|
s->line_buf[s->line_buf_index] = '\0';
|
|
|
|
s->line_csum = fromhex(ch) << 4;
|
|
|
|
s->state = RS_CHKSUM2;
|
|
|
|
break;
|
|
|
|
case RS_CHKSUM2:
|
|
|
|
s->line_csum |= fromhex(ch);
|
|
|
|
csum = 0;
|
|
|
|
for(i = 0; i < s->line_buf_index; i++) {
|
|
|
|
csum += s->line_buf[i];
|
|
|
|
}
|
|
|
|
if (s->line_csum != (csum & 0xff)) {
|
2007-12-16 04:02:09 +01:00
|
|
|
reply = '-';
|
|
|
|
put_buffer(s, &reply, 1);
|
2004-03-31 20:52:07 +02:00
|
|
|
s->state = RS_IDLE;
|
2003-07-26 14:06:08 +02:00
|
|
|
} else {
|
2007-12-16 04:02:09 +01:00
|
|
|
reply = '+';
|
|
|
|
put_buffer(s, &reply, 1);
|
2008-11-18 21:30:24 +01:00
|
|
|
s->state = gdb_handle_packet(s, s->line_buf);
|
2003-07-26 14:06:08 +02:00
|
|
|
}
|
|
|
|
break;
|
2007-01-28 04:10:55 +01:00
|
|
|
default:
|
|
|
|
abort();
|
2004-03-31 20:52:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-16 14:03:51 +02:00
|
|
|
/* Tell the remote gdb that the process has exited. */
|
2012-03-14 01:38:32 +01:00
|
|
|
void gdb_exit(CPUArchState *env, int code)
|
2010-06-16 14:03:51 +02:00
|
|
|
{
|
|
|
|
GDBState *s;
|
|
|
|
char buf[4];
|
|
|
|
|
|
|
|
s = gdbserver_state;
|
|
|
|
if (!s) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
if (gdbserver_fd < 0 || s->fd < 0) {
|
|
|
|
return;
|
|
|
|
}
|
2015-03-02 13:26:58 +01:00
|
|
|
#else
|
|
|
|
if (!s->chr) {
|
|
|
|
return;
|
|
|
|
}
|
2010-06-16 14:03:51 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "W%02x", (uint8_t)code);
|
|
|
|
put_packet(s, buf);
|
2011-01-13 12:46:57 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2015-03-02 13:26:58 +01:00
|
|
|
qemu_chr_delete(s->chr);
|
2011-01-13 12:46:57 +01:00
|
|
|
#endif
|
2010-06-16 14:03:51 +02:00
|
|
|
}
|
|
|
|
|
2005-04-17 21:16:13 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2008-12-18 23:44:13 +01:00
|
|
|
int
|
|
|
|
gdb_queuesig (void)
|
|
|
|
{
|
|
|
|
GDBState *s;
|
|
|
|
|
|
|
|
s = gdbserver_state;
|
|
|
|
|
|
|
|
if (gdbserver_fd < 0 || s->fd < 0)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-04-17 21:16:13 +02:00
|
|
|
int
|
2013-06-27 19:49:31 +02:00
|
|
|
gdb_handlesig(CPUState *cpu, int sig)
|
2005-04-17 21:16:13 +02:00
|
|
|
{
|
2013-06-27 19:49:31 +02:00
|
|
|
CPUArchState *env = cpu->env_ptr;
|
2013-06-24 19:20:57 +02:00
|
|
|
GDBState *s;
|
|
|
|
char buf[256];
|
|
|
|
int n;
|
2005-04-17 21:16:13 +02:00
|
|
|
|
2013-06-24 19:20:57 +02:00
|
|
|
s = gdbserver_state;
|
|
|
|
if (gdbserver_fd < 0 || s->fd < 0) {
|
|
|
|
return sig;
|
|
|
|
}
|
2005-04-17 21:16:13 +02:00
|
|
|
|
2013-06-24 19:20:57 +02:00
|
|
|
/* disable single step if it was enabled */
|
2013-06-24 18:41:06 +02:00
|
|
|
cpu_single_step(cpu, 0);
|
2013-06-24 19:20:57 +02:00
|
|
|
tb_flush(env);
|
2005-04-17 21:16:13 +02:00
|
|
|
|
2013-06-24 19:20:57 +02:00
|
|
|
if (sig != 0) {
|
|
|
|
snprintf(buf, sizeof(buf), "S%02x", target_signal_to_gdb(sig));
|
|
|
|
put_packet(s, buf);
|
|
|
|
}
|
|
|
|
/* put_packet() might have detected that the peer terminated the
|
|
|
|
connection. */
|
|
|
|
if (s->fd < 0) {
|
|
|
|
return sig;
|
|
|
|
}
|
2005-04-17 21:16:13 +02:00
|
|
|
|
2013-06-24 19:20:57 +02:00
|
|
|
sig = 0;
|
|
|
|
s->state = RS_IDLE;
|
|
|
|
s->running_state = 0;
|
|
|
|
while (s->running_state == 0) {
|
|
|
|
n = read(s->fd, buf, 256);
|
|
|
|
if (n > 0) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
gdb_read_byte(s, buf[i]);
|
|
|
|
}
|
|
|
|
} else if (n == 0 || errno != EAGAIN) {
|
|
|
|
/* XXX: Connection closed. Should probably wait for another
|
|
|
|
connection before continuing. */
|
|
|
|
return sig;
|
2005-04-17 21:16:13 +02:00
|
|
|
}
|
2013-06-24 19:20:57 +02:00
|
|
|
}
|
|
|
|
sig = s->signal;
|
|
|
|
s->signal = 0;
|
|
|
|
return sig;
|
2005-04-17 21:16:13 +02:00
|
|
|
}
|
2005-04-26 22:42:36 +02:00
|
|
|
|
2008-12-18 23:44:13 +01:00
|
|
|
/* Tell the remote gdb that the process has exited due to SIG. */
|
2012-03-14 01:38:32 +01:00
|
|
|
void gdb_signalled(CPUArchState *env, int sig)
|
2008-12-18 23:44:13 +01:00
|
|
|
{
|
2013-06-24 19:20:57 +02:00
|
|
|
GDBState *s;
|
|
|
|
char buf[4];
|
2008-12-18 23:44:13 +01:00
|
|
|
|
2013-06-24 19:20:57 +02:00
|
|
|
s = gdbserver_state;
|
|
|
|
if (gdbserver_fd < 0 || s->fd < 0) {
|
|
|
|
return;
|
|
|
|
}
|
2008-12-18 23:44:13 +01:00
|
|
|
|
2013-06-24 19:20:57 +02:00
|
|
|
snprintf(buf, sizeof(buf), "X%02x", target_signal_to_gdb(sig));
|
|
|
|
put_packet(s, buf);
|
2008-12-18 23:44:13 +01:00
|
|
|
}
|
2005-04-17 21:16:13 +02:00
|
|
|
|
2008-11-18 21:30:24 +01:00
|
|
|
static void gdb_accept(void)
|
2004-03-31 20:52:07 +02:00
|
|
|
{
|
|
|
|
GDBState *s;
|
|
|
|
struct sockaddr_in sockaddr;
|
|
|
|
socklen_t len;
|
2013-02-22 04:39:50 +01:00
|
|
|
int fd;
|
2004-03-31 20:52:07 +02:00
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
len = sizeof(sockaddr);
|
|
|
|
fd = accept(gdbserver_fd, (struct sockaddr *)&sockaddr, &len);
|
|
|
|
if (fd < 0 && errno != EINTR) {
|
|
|
|
perror("accept");
|
|
|
|
return;
|
|
|
|
} else if (fd >= 0) {
|
2009-12-02 12:24:42 +01:00
|
|
|
#ifndef _WIN32
|
|
|
|
fcntl(fd, F_SETFD, FD_CLOEXEC);
|
|
|
|
#endif
|
2003-06-27 19:34:32 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-03-31 20:52:07 +02:00
|
|
|
|
|
|
|
/* set short latency */
|
2013-02-22 04:39:50 +01:00
|
|
|
socket_set_nodelay(fd);
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2011-08-21 05:09:37 +02:00
|
|
|
s = g_malloc0(sizeof(GDBState));
|
2013-06-27 19:19:39 +02:00
|
|
|
s->c_cpu = first_cpu;
|
|
|
|
s->g_cpu = first_cpu;
|
2004-03-31 20:52:07 +02:00
|
|
|
s->fd = fd;
|
2013-06-29 04:18:45 +02:00
|
|
|
gdb_has_xml = false;
|
2004-03-31 20:52:07 +02:00
|
|
|
|
2008-11-18 21:30:24 +01:00
|
|
|
gdbserver_state = s;
|
2007-01-28 04:10:55 +01:00
|
|
|
|
2004-03-31 20:52:07 +02:00
|
|
|
fcntl(fd, F_SETFL, O_NONBLOCK);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gdbserver_open(int port)
|
|
|
|
{
|
|
|
|
struct sockaddr_in sockaddr;
|
2013-10-02 12:23:13 +02:00
|
|
|
int fd, ret;
|
2004-03-31 20:52:07 +02:00
|
|
|
|
|
|
|
fd = socket(PF_INET, SOCK_STREAM, 0);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror("socket");
|
|
|
|
return -1;
|
|
|
|
}
|
2009-12-02 12:24:42 +01:00
|
|
|
#ifndef _WIN32
|
|
|
|
fcntl(fd, F_SETFD, FD_CLOEXEC);
|
|
|
|
#endif
|
2004-03-31 20:52:07 +02:00
|
|
|
|
2013-10-02 12:23:13 +02:00
|
|
|
socket_set_fast_reuse(fd);
|
2004-03-31 20:52:07 +02:00
|
|
|
|
|
|
|
sockaddr.sin_family = AF_INET;
|
|
|
|
sockaddr.sin_port = htons(port);
|
|
|
|
sockaddr.sin_addr.s_addr = 0;
|
|
|
|
ret = bind(fd, (struct sockaddr *)&sockaddr, sizeof(sockaddr));
|
|
|
|
if (ret < 0) {
|
|
|
|
perror("bind");
|
2011-12-25 00:37:24 +01:00
|
|
|
close(fd);
|
2004-03-31 20:52:07 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret = listen(fd, 0);
|
|
|
|
if (ret < 0) {
|
|
|
|
perror("listen");
|
2011-12-25 00:37:24 +01:00
|
|
|
close(fd);
|
2004-03-31 20:52:07 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
int gdbserver_start(int port)
|
|
|
|
{
|
|
|
|
gdbserver_fd = gdbserver_open(port);
|
|
|
|
if (gdbserver_fd < 0)
|
|
|
|
return -1;
|
|
|
|
/* accept connections */
|
2008-11-18 21:30:24 +01:00
|
|
|
gdb_accept();
|
2007-01-28 02:53:16 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2008-12-18 23:44:04 +01:00
|
|
|
|
|
|
|
/* Disable gdb stub for child processes. */
|
2012-03-14 01:38:32 +01:00
|
|
|
void gdbserver_fork(CPUArchState *env)
|
2008-12-18 23:44:04 +01:00
|
|
|
{
|
2013-09-02 16:57:02 +02:00
|
|
|
CPUState *cpu = ENV_GET_CPU(env);
|
2008-12-18 23:44:04 +01:00
|
|
|
GDBState *s = gdbserver_state;
|
2013-09-02 16:57:02 +02:00
|
|
|
|
|
|
|
if (gdbserver_fd < 0 || s->fd < 0) {
|
|
|
|
return;
|
|
|
|
}
|
2008-12-18 23:44:04 +01:00
|
|
|
close(s->fd);
|
|
|
|
s->fd = -1;
|
2013-09-02 17:26:20 +02:00
|
|
|
cpu_breakpoint_remove_all(cpu, BP_GDB);
|
2013-09-02 16:57:02 +02:00
|
|
|
cpu_watchpoint_remove_all(cpu, BP_GDB);
|
2008-12-18 23:44:04 +01:00
|
|
|
}
|
2005-04-17 21:16:13 +02:00
|
|
|
#else
|
2007-07-12 00:48:58 +02:00
|
|
|
static int gdb_chr_can_receive(void *opaque)
|
2007-01-28 02:53:16 +01:00
|
|
|
{
|
2008-10-11 19:55:29 +02:00
|
|
|
/* We can handle an arbitrarily large amount of data.
|
|
|
|
Pick the maximum packet size, which is as good as anything. */
|
|
|
|
return MAX_PACKET_LENGTH;
|
2007-01-28 02:53:16 +01:00
|
|
|
}
|
|
|
|
|
2007-07-12 00:48:58 +02:00
|
|
|
static void gdb_chr_receive(void *opaque, const uint8_t *buf, int size)
|
2007-01-28 02:53:16 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
2008-11-18 21:30:24 +01:00
|
|
|
gdb_read_byte(gdbserver_state, buf[i]);
|
2007-01-28 02:53:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gdb_chr_event(void *opaque, int event)
|
|
|
|
{
|
|
|
|
switch (event) {
|
2009-10-07 15:01:16 +02:00
|
|
|
case CHR_EVENT_OPENED:
|
2011-09-30 19:45:27 +02:00
|
|
|
vm_stop(RUN_STATE_PAUSED);
|
2013-06-29 04:18:45 +02:00
|
|
|
gdb_has_xml = false;
|
2007-01-28 02:53:16 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-06 00:01:55 +01:00
|
|
|
static void gdb_monitor_output(GDBState *s, const char *msg, int len)
|
|
|
|
{
|
|
|
|
char buf[MAX_PACKET_LENGTH];
|
|
|
|
|
|
|
|
buf[0] = 'O';
|
|
|
|
if (len > (MAX_PACKET_LENGTH/2) - 1)
|
|
|
|
len = (MAX_PACKET_LENGTH/2) - 1;
|
|
|
|
memtohex(buf + 1, (uint8_t *)msg, len);
|
|
|
|
put_packet(s, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gdb_monitor_write(CharDriverState *chr, const uint8_t *buf, int len)
|
|
|
|
{
|
|
|
|
const char *p = (const char *)buf;
|
|
|
|
int max_sz;
|
|
|
|
|
|
|
|
max_sz = (sizeof(gdbserver_state->last_packet) - 2) / 2;
|
|
|
|
for (;;) {
|
|
|
|
if (len <= max_sz) {
|
|
|
|
gdb_monitor_output(gdbserver_state, p, len);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
gdb_monitor_output(gdbserver_state, p, max_sz);
|
|
|
|
p += max_sz;
|
|
|
|
len -= max_sz;
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2009-04-05 20:43:41 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
static void gdb_sigterm_handler(int signal)
|
|
|
|
{
|
2011-07-29 20:36:43 +02:00
|
|
|
if (runstate_is_running()) {
|
2011-09-30 19:45:27 +02:00
|
|
|
vm_stop(RUN_STATE_PAUSED);
|
2011-02-09 16:29:40 +01:00
|
|
|
}
|
2009-04-05 20:43:41 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int gdbserver_start(const char *device)
|
2007-01-28 02:53:16 +01:00
|
|
|
{
|
|
|
|
GDBState *s;
|
2009-04-05 20:43:41 +02:00
|
|
|
char gdbstub_device_name[128];
|
2009-03-28 19:05:53 +01:00
|
|
|
CharDriverState *chr = NULL;
|
|
|
|
CharDriverState *mon_chr;
|
2007-02-22 02:48:01 +01:00
|
|
|
|
2009-04-05 20:43:41 +02:00
|
|
|
if (!device)
|
|
|
|
return -1;
|
|
|
|
if (strcmp(device, "none") != 0) {
|
|
|
|
if (strstart(device, "tcp:", NULL)) {
|
|
|
|
/* enforce required TCP attributes */
|
|
|
|
snprintf(gdbstub_device_name, sizeof(gdbstub_device_name),
|
|
|
|
"%s,nowait,nodelay,server", device);
|
|
|
|
device = gdbstub_device_name;
|
2009-03-28 19:05:53 +01:00
|
|
|
}
|
2009-04-05 20:43:41 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
else if (strcmp(device, "stdio") == 0) {
|
|
|
|
struct sigaction act;
|
2007-01-28 02:53:16 +01:00
|
|
|
|
2009-04-05 20:43:41 +02:00
|
|
|
memset(&act, 0, sizeof(act));
|
|
|
|
act.sa_handler = gdb_sigterm_handler;
|
|
|
|
sigaction(SIGINT, &act, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
2011-08-15 18:17:36 +02:00
|
|
|
chr = qemu_chr_new("gdb", device, NULL);
|
2009-03-28 19:05:53 +01:00
|
|
|
if (!chr)
|
|
|
|
return -1;
|
|
|
|
|
2013-03-27 20:29:40 +01:00
|
|
|
qemu_chr_fe_claim_no_fail(chr);
|
2009-03-28 19:05:53 +01:00
|
|
|
qemu_chr_add_handlers(chr, gdb_chr_can_receive, gdb_chr_receive,
|
|
|
|
gdb_chr_event, NULL);
|
2007-02-22 02:48:01 +01:00
|
|
|
}
|
|
|
|
|
2009-03-28 19:05:53 +01:00
|
|
|
s = gdbserver_state;
|
|
|
|
if (!s) {
|
2011-08-21 05:09:37 +02:00
|
|
|
s = g_malloc0(sizeof(GDBState));
|
2009-03-28 19:05:53 +01:00
|
|
|
gdbserver_state = s;
|
2007-01-28 02:53:16 +01:00
|
|
|
|
2009-03-28 19:05:53 +01:00
|
|
|
qemu_add_vm_change_state_handler(gdb_vm_state_change, NULL);
|
|
|
|
|
|
|
|
/* Initialize a monitor terminal for gdb */
|
2014-09-10 16:34:14 +02:00
|
|
|
mon_chr = qemu_chr_alloc();
|
2009-03-28 19:05:53 +01:00
|
|
|
mon_chr->chr_write = gdb_monitor_write;
|
|
|
|
monitor_init(mon_chr, 0);
|
|
|
|
} else {
|
|
|
|
if (s->chr)
|
2011-08-15 18:17:38 +02:00
|
|
|
qemu_chr_delete(s->chr);
|
2009-03-28 19:05:53 +01:00
|
|
|
mon_chr = s->mon_chr;
|
|
|
|
memset(s, 0, sizeof(GDBState));
|
|
|
|
}
|
2013-06-27 19:19:39 +02:00
|
|
|
s->c_cpu = first_cpu;
|
|
|
|
s->g_cpu = first_cpu;
|
2007-01-28 02:53:16 +01:00
|
|
|
s->chr = chr;
|
2009-03-28 19:05:53 +01:00
|
|
|
s->state = chr ? RS_IDLE : RS_INACTIVE;
|
|
|
|
s->mon_chr = mon_chr;
|
2012-03-15 18:49:45 +01:00
|
|
|
s->current_syscall_cb = NULL;
|
2009-03-06 00:01:55 +01:00
|
|
|
|
2003-06-27 19:34:32 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2007-01-28 02:53:16 +01:00
|
|
|
#endif
|