bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * gdb server stub |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003-2005 Fabrice Bellard |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
Blue Swirl | 8167ee8 | 2009-07-16 20:47:01 +0000 | [diff] [blame] | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 18 | */ |
pbrook | 978efd6 | 2006-06-17 18:30:42 +0000 | [diff] [blame] | 19 | #include "config.h" |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 20 | #include "qemu-common.h" |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 21 | #ifdef CONFIG_USER_ONLY |
| 22 | #include <stdlib.h> |
| 23 | #include <stdio.h> |
| 24 | #include <stdarg.h> |
| 25 | #include <string.h> |
| 26 | #include <errno.h> |
| 27 | #include <unistd.h> |
pbrook | 978efd6 | 2006-06-17 18:30:42 +0000 | [diff] [blame] | 28 | #include <fcntl.h> |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 29 | |
| 30 | #include "qemu.h" |
| 31 | #else |
Paolo Bonzini | 83c9089 | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 32 | #include "monitor/monitor.h" |
Paolo Bonzini | dccfcd0 | 2013-04-08 16:55:25 +0200 | [diff] [blame] | 33 | #include "sysemu/char.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 34 | #include "sysemu/sysemu.h" |
Paolo Bonzini | 022c62c | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 35 | #include "exec/gdbstub.h" |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 36 | #endif |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 37 | |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 38 | #define MAX_PACKET_LENGTH 4096 |
| 39 | |
Blue Swirl | 2b41f10 | 2011-06-19 20:38:22 +0000 | [diff] [blame] | 40 | #include "cpu.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 41 | #include "qemu/sockets.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 42 | #include "sysemu/kvm.h" |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 43 | |
Andreas Färber | f3659ee | 2013-06-27 19:09:09 +0200 | [diff] [blame] | 44 | static inline int target_memory_rw_debug(CPUState *cpu, target_ulong addr, |
| 45 | uint8_t *buf, int len, bool is_write) |
Fabien Chouteau | 44520db | 2011-09-08 12:48:16 +0200 | [diff] [blame] | 46 | { |
Andreas Färber | f3659ee | 2013-06-27 19:09:09 +0200 | [diff] [blame] | 47 | CPUClass *cc = CPU_GET_CLASS(cpu); |
| 48 | |
| 49 | if (cc->memory_rw_debug) { |
| 50 | return cc->memory_rw_debug(cpu, addr, buf, len, is_write); |
| 51 | } |
| 52 | return cpu_memory_rw_debug(cpu, addr, buf, len, is_write); |
Fabien Chouteau | 44520db | 2011-09-08 12:48:16 +0200 | [diff] [blame] | 53 | } |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 54 | |
| 55 | enum { |
| 56 | GDB_SIGNAL_0 = 0, |
| 57 | GDB_SIGNAL_INT = 2, |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 58 | GDB_SIGNAL_QUIT = 3, |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 59 | GDB_SIGNAL_TRAP = 5, |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 60 | GDB_SIGNAL_ABRT = 6, |
| 61 | GDB_SIGNAL_ALRM = 14, |
| 62 | GDB_SIGNAL_IO = 23, |
| 63 | GDB_SIGNAL_XCPU = 24, |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 64 | GDB_SIGNAL_UNKNOWN = 143 |
| 65 | }; |
| 66 | |
| 67 | #ifdef CONFIG_USER_ONLY |
| 68 | |
| 69 | /* Map target signal numbers to GDB protocol signal numbers and vice |
| 70 | * versa. For user emulation's currently supported systems, we can |
| 71 | * assume most signals are defined. |
| 72 | */ |
| 73 | |
| 74 | static int gdb_signal_table[] = { |
| 75 | 0, |
| 76 | TARGET_SIGHUP, |
| 77 | TARGET_SIGINT, |
| 78 | TARGET_SIGQUIT, |
| 79 | TARGET_SIGILL, |
| 80 | TARGET_SIGTRAP, |
| 81 | TARGET_SIGABRT, |
| 82 | -1, /* SIGEMT */ |
| 83 | TARGET_SIGFPE, |
| 84 | TARGET_SIGKILL, |
| 85 | TARGET_SIGBUS, |
| 86 | TARGET_SIGSEGV, |
| 87 | TARGET_SIGSYS, |
| 88 | TARGET_SIGPIPE, |
| 89 | TARGET_SIGALRM, |
| 90 | TARGET_SIGTERM, |
| 91 | TARGET_SIGURG, |
| 92 | TARGET_SIGSTOP, |
| 93 | TARGET_SIGTSTP, |
| 94 | TARGET_SIGCONT, |
| 95 | TARGET_SIGCHLD, |
| 96 | TARGET_SIGTTIN, |
| 97 | TARGET_SIGTTOU, |
| 98 | TARGET_SIGIO, |
| 99 | TARGET_SIGXCPU, |
| 100 | TARGET_SIGXFSZ, |
| 101 | TARGET_SIGVTALRM, |
| 102 | TARGET_SIGPROF, |
| 103 | TARGET_SIGWINCH, |
| 104 | -1, /* SIGLOST */ |
| 105 | TARGET_SIGUSR1, |
| 106 | TARGET_SIGUSR2, |
blueswir1 | c72d5bf | 2009-01-15 17:27:45 +0000 | [diff] [blame] | 107 | #ifdef TARGET_SIGPWR |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 108 | TARGET_SIGPWR, |
blueswir1 | c72d5bf | 2009-01-15 17:27:45 +0000 | [diff] [blame] | 109 | #else |
| 110 | -1, |
| 111 | #endif |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 112 | -1, /* SIGPOLL */ |
| 113 | -1, |
| 114 | -1, |
| 115 | -1, |
| 116 | -1, |
| 117 | -1, |
| 118 | -1, |
| 119 | -1, |
| 120 | -1, |
| 121 | -1, |
| 122 | -1, |
| 123 | -1, |
blueswir1 | c72d5bf | 2009-01-15 17:27:45 +0000 | [diff] [blame] | 124 | #ifdef __SIGRTMIN |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 125 | __SIGRTMIN + 1, |
| 126 | __SIGRTMIN + 2, |
| 127 | __SIGRTMIN + 3, |
| 128 | __SIGRTMIN + 4, |
| 129 | __SIGRTMIN + 5, |
| 130 | __SIGRTMIN + 6, |
| 131 | __SIGRTMIN + 7, |
| 132 | __SIGRTMIN + 8, |
| 133 | __SIGRTMIN + 9, |
| 134 | __SIGRTMIN + 10, |
| 135 | __SIGRTMIN + 11, |
| 136 | __SIGRTMIN + 12, |
| 137 | __SIGRTMIN + 13, |
| 138 | __SIGRTMIN + 14, |
| 139 | __SIGRTMIN + 15, |
| 140 | __SIGRTMIN + 16, |
| 141 | __SIGRTMIN + 17, |
| 142 | __SIGRTMIN + 18, |
| 143 | __SIGRTMIN + 19, |
| 144 | __SIGRTMIN + 20, |
| 145 | __SIGRTMIN + 21, |
| 146 | __SIGRTMIN + 22, |
| 147 | __SIGRTMIN + 23, |
| 148 | __SIGRTMIN + 24, |
| 149 | __SIGRTMIN + 25, |
| 150 | __SIGRTMIN + 26, |
| 151 | __SIGRTMIN + 27, |
| 152 | __SIGRTMIN + 28, |
| 153 | __SIGRTMIN + 29, |
| 154 | __SIGRTMIN + 30, |
| 155 | __SIGRTMIN + 31, |
| 156 | -1, /* SIGCANCEL */ |
| 157 | __SIGRTMIN, |
| 158 | __SIGRTMIN + 32, |
| 159 | __SIGRTMIN + 33, |
| 160 | __SIGRTMIN + 34, |
| 161 | __SIGRTMIN + 35, |
| 162 | __SIGRTMIN + 36, |
| 163 | __SIGRTMIN + 37, |
| 164 | __SIGRTMIN + 38, |
| 165 | __SIGRTMIN + 39, |
| 166 | __SIGRTMIN + 40, |
| 167 | __SIGRTMIN + 41, |
| 168 | __SIGRTMIN + 42, |
| 169 | __SIGRTMIN + 43, |
| 170 | __SIGRTMIN + 44, |
| 171 | __SIGRTMIN + 45, |
| 172 | __SIGRTMIN + 46, |
| 173 | __SIGRTMIN + 47, |
| 174 | __SIGRTMIN + 48, |
| 175 | __SIGRTMIN + 49, |
| 176 | __SIGRTMIN + 50, |
| 177 | __SIGRTMIN + 51, |
| 178 | __SIGRTMIN + 52, |
| 179 | __SIGRTMIN + 53, |
| 180 | __SIGRTMIN + 54, |
| 181 | __SIGRTMIN + 55, |
| 182 | __SIGRTMIN + 56, |
| 183 | __SIGRTMIN + 57, |
| 184 | __SIGRTMIN + 58, |
| 185 | __SIGRTMIN + 59, |
| 186 | __SIGRTMIN + 60, |
| 187 | __SIGRTMIN + 61, |
| 188 | __SIGRTMIN + 62, |
| 189 | __SIGRTMIN + 63, |
| 190 | __SIGRTMIN + 64, |
| 191 | __SIGRTMIN + 65, |
| 192 | __SIGRTMIN + 66, |
| 193 | __SIGRTMIN + 67, |
| 194 | __SIGRTMIN + 68, |
| 195 | __SIGRTMIN + 69, |
| 196 | __SIGRTMIN + 70, |
| 197 | __SIGRTMIN + 71, |
| 198 | __SIGRTMIN + 72, |
| 199 | __SIGRTMIN + 73, |
| 200 | __SIGRTMIN + 74, |
| 201 | __SIGRTMIN + 75, |
| 202 | __SIGRTMIN + 76, |
| 203 | __SIGRTMIN + 77, |
| 204 | __SIGRTMIN + 78, |
| 205 | __SIGRTMIN + 79, |
| 206 | __SIGRTMIN + 80, |
| 207 | __SIGRTMIN + 81, |
| 208 | __SIGRTMIN + 82, |
| 209 | __SIGRTMIN + 83, |
| 210 | __SIGRTMIN + 84, |
| 211 | __SIGRTMIN + 85, |
| 212 | __SIGRTMIN + 86, |
| 213 | __SIGRTMIN + 87, |
| 214 | __SIGRTMIN + 88, |
| 215 | __SIGRTMIN + 89, |
| 216 | __SIGRTMIN + 90, |
| 217 | __SIGRTMIN + 91, |
| 218 | __SIGRTMIN + 92, |
| 219 | __SIGRTMIN + 93, |
| 220 | __SIGRTMIN + 94, |
| 221 | __SIGRTMIN + 95, |
| 222 | -1, /* SIGINFO */ |
| 223 | -1, /* UNKNOWN */ |
| 224 | -1, /* DEFAULT */ |
| 225 | -1, |
| 226 | -1, |
| 227 | -1, |
| 228 | -1, |
| 229 | -1, |
| 230 | -1 |
blueswir1 | c72d5bf | 2009-01-15 17:27:45 +0000 | [diff] [blame] | 231 | #endif |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 232 | }; |
bellard | 8f447cc | 2006-06-14 15:21:14 +0000 | [diff] [blame] | 233 | #else |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 234 | /* In system mode we only need SIGINT and SIGTRAP; other signals |
| 235 | are not yet supported. */ |
| 236 | |
| 237 | enum { |
| 238 | TARGET_SIGINT = 2, |
| 239 | TARGET_SIGTRAP = 5 |
| 240 | }; |
| 241 | |
| 242 | static int gdb_signal_table[] = { |
| 243 | -1, |
| 244 | -1, |
| 245 | TARGET_SIGINT, |
| 246 | -1, |
| 247 | -1, |
| 248 | TARGET_SIGTRAP |
| 249 | }; |
bellard | 8f447cc | 2006-06-14 15:21:14 +0000 | [diff] [blame] | 250 | #endif |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 251 | |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 252 | #ifdef CONFIG_USER_ONLY |
| 253 | static int target_signal_to_gdb (int sig) |
| 254 | { |
| 255 | int i; |
| 256 | for (i = 0; i < ARRAY_SIZE (gdb_signal_table); i++) |
| 257 | if (gdb_signal_table[i] == sig) |
| 258 | return i; |
| 259 | return GDB_SIGNAL_UNKNOWN; |
| 260 | } |
| 261 | #endif |
| 262 | |
| 263 | static int gdb_signal_to_target (int sig) |
| 264 | { |
| 265 | if (sig < ARRAY_SIZE (gdb_signal_table)) |
| 266 | return gdb_signal_table[sig]; |
| 267 | else |
| 268 | return -1; |
| 269 | } |
| 270 | |
bellard | 4abe615 | 2003-07-26 18:01:58 +0000 | [diff] [blame] | 271 | //#define DEBUG_GDB |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 272 | |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 273 | typedef struct GDBRegisterState { |
| 274 | int base_reg; |
| 275 | int num_regs; |
| 276 | gdb_reg_cb get_reg; |
| 277 | gdb_reg_cb set_reg; |
| 278 | const char *xml; |
| 279 | struct GDBRegisterState *next; |
| 280 | } GDBRegisterState; |
| 281 | |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 282 | enum RSState { |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 283 | RS_INACTIVE, |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 284 | RS_IDLE, |
| 285 | RS_GETLINE, |
| 286 | RS_CHKSUM1, |
| 287 | RS_CHKSUM2, |
| 288 | }; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 289 | typedef struct GDBState { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 290 | CPUState *c_cpu; /* current CPU for step/continue ops */ |
| 291 | CPUState *g_cpu; /* current CPU for other ops */ |
Andreas Färber | 52f3462 | 2013-06-27 13:44:40 +0200 | [diff] [blame] | 292 | CPUState *query_cpu; /* for q{f|s}ThreadInfo */ |
bellard | 4162503 | 2005-04-24 10:07:11 +0000 | [diff] [blame] | 293 | enum RSState state; /* parsing state */ |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 294 | char line_buf[MAX_PACKET_LENGTH]; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 295 | int line_buf_index; |
| 296 | int line_csum; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 297 | uint8_t last_packet[MAX_PACKET_LENGTH + 4]; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 298 | int last_packet_len; |
edgar_igl | 1f487ee | 2008-05-17 22:20:53 +0000 | [diff] [blame] | 299 | int signal; |
bellard | 4162503 | 2005-04-24 10:07:11 +0000 | [diff] [blame] | 300 | #ifdef CONFIG_USER_ONLY |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 301 | int fd; |
bellard | 4162503 | 2005-04-24 10:07:11 +0000 | [diff] [blame] | 302 | int running_state; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 303 | #else |
| 304 | CharDriverState *chr; |
aliguori | 8a34a0f | 2009-03-05 23:01:55 +0000 | [diff] [blame] | 305 | CharDriverState *mon_chr; |
bellard | 4162503 | 2005-04-24 10:07:11 +0000 | [diff] [blame] | 306 | #endif |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 307 | char syscall_buf[256]; |
| 308 | gdb_syscall_complete_cb current_syscall_cb; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 309 | } GDBState; |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 310 | |
edgar_igl | 60897d3 | 2008-05-09 08:25:14 +0000 | [diff] [blame] | 311 | /* By default use no IRQs and no timers while single stepping so as to |
| 312 | * make single stepping like an ICE HW step. |
| 313 | */ |
| 314 | static int sstep_flags = SSTEP_ENABLE|SSTEP_NOIRQ|SSTEP_NOTIMER; |
| 315 | |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 316 | static GDBState *gdbserver_state; |
| 317 | |
Andreas Färber | 5b50e79 | 2013-06-29 04:18:45 +0200 | [diff] [blame] | 318 | bool gdb_has_xml; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 319 | |
Liviu Ionescu | a38bb07 | 2014-12-11 12:07:48 +0000 | [diff] [blame] | 320 | int semihosting_target = SEMIHOSTING_TARGET_AUTO; |
| 321 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 322 | #ifdef CONFIG_USER_ONLY |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 323 | /* XXX: This is not thread safe. Do we care? */ |
| 324 | static int gdbserver_fd = -1; |
| 325 | |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 326 | static int get_char(GDBState *s) |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 327 | { |
| 328 | uint8_t ch; |
| 329 | int ret; |
| 330 | |
| 331 | for(;;) { |
Blue Swirl | 00aa004 | 2011-07-23 20:04:29 +0000 | [diff] [blame] | 332 | ret = qemu_recv(s->fd, &ch, 1, 0); |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 333 | if (ret < 0) { |
edgar_igl | 1f487ee | 2008-05-17 22:20:53 +0000 | [diff] [blame] | 334 | if (errno == ECONNRESET) |
| 335 | s->fd = -1; |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 336 | if (errno != EINTR && errno != EAGAIN) |
| 337 | return -1; |
| 338 | } else if (ret == 0) { |
edgar_igl | 1f487ee | 2008-05-17 22:20:53 +0000 | [diff] [blame] | 339 | close(s->fd); |
| 340 | s->fd = -1; |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 341 | return -1; |
| 342 | } else { |
| 343 | break; |
| 344 | } |
| 345 | } |
| 346 | return ch; |
| 347 | } |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 348 | #endif |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 349 | |
blueswir1 | 654efcf | 2009-04-18 07:29:59 +0000 | [diff] [blame] | 350 | static enum { |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 351 | GDB_SYS_UNKNOWN, |
| 352 | GDB_SYS_ENABLED, |
| 353 | GDB_SYS_DISABLED, |
| 354 | } gdb_syscall_mode; |
| 355 | |
Liviu Ionescu | a38bb07 | 2014-12-11 12:07:48 +0000 | [diff] [blame] | 356 | /* Decide if either remote gdb syscalls or native file IO should be used. */ |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 357 | int use_gdb_syscalls(void) |
| 358 | { |
Liviu Ionescu | a38bb07 | 2014-12-11 12:07:48 +0000 | [diff] [blame] | 359 | if (semihosting_target == SEMIHOSTING_TARGET_NATIVE) { |
| 360 | /* -semihosting-config target=native */ |
| 361 | return false; |
| 362 | } else if (semihosting_target == SEMIHOSTING_TARGET_GDB) { |
| 363 | /* -semihosting-config target=gdb */ |
| 364 | return true; |
| 365 | } |
| 366 | |
| 367 | /* -semihosting-config target=auto */ |
| 368 | /* On the first call check if gdb is connected and remember. */ |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 369 | if (gdb_syscall_mode == GDB_SYS_UNKNOWN) { |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 370 | gdb_syscall_mode = (gdbserver_state ? GDB_SYS_ENABLED |
| 371 | : GDB_SYS_DISABLED); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 372 | } |
| 373 | return gdb_syscall_mode == GDB_SYS_ENABLED; |
| 374 | } |
| 375 | |
edgar_igl | ba70a62 | 2008-03-14 06:10:42 +0000 | [diff] [blame] | 376 | /* Resume execution. */ |
| 377 | static inline void gdb_continue(GDBState *s) |
| 378 | { |
| 379 | #ifdef CONFIG_USER_ONLY |
| 380 | s->running_state = 1; |
| 381 | #else |
Paolo Bonzini | 26ac7a3 | 2013-06-03 17:06:54 +0200 | [diff] [blame] | 382 | if (!runstate_needs_reset()) { |
Paolo Bonzini | 87f25c1 | 2013-05-30 13:20:40 +0200 | [diff] [blame] | 383 | vm_start(); |
| 384 | } |
edgar_igl | ba70a62 | 2008-03-14 06:10:42 +0000 | [diff] [blame] | 385 | #endif |
| 386 | } |
| 387 | |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 388 | static void put_buffer(GDBState *s, const uint8_t *buf, int len) |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 389 | { |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 390 | #ifdef CONFIG_USER_ONLY |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 391 | int ret; |
| 392 | |
| 393 | while (len > 0) { |
bellard | 8f447cc | 2006-06-14 15:21:14 +0000 | [diff] [blame] | 394 | ret = send(s->fd, buf, len, 0); |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 395 | if (ret < 0) { |
| 396 | if (errno != EINTR && errno != EAGAIN) |
| 397 | return; |
| 398 | } else { |
| 399 | buf += ret; |
| 400 | len -= ret; |
| 401 | } |
| 402 | } |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 403 | #else |
Anthony Liguori | 2cc6e0a | 2011-08-15 11:17:28 -0500 | [diff] [blame] | 404 | qemu_chr_fe_write(s->chr, buf, len); |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 405 | #endif |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | static inline int fromhex(int v) |
| 409 | { |
| 410 | if (v >= '0' && v <= '9') |
| 411 | return v - '0'; |
| 412 | else if (v >= 'A' && v <= 'F') |
| 413 | return v - 'A' + 10; |
| 414 | else if (v >= 'a' && v <= 'f') |
| 415 | return v - 'a' + 10; |
| 416 | else |
| 417 | return 0; |
| 418 | } |
| 419 | |
| 420 | static inline int tohex(int v) |
| 421 | { |
| 422 | if (v < 10) |
| 423 | return v + '0'; |
| 424 | else |
| 425 | return v - 10 + 'a'; |
| 426 | } |
| 427 | |
| 428 | static void memtohex(char *buf, const uint8_t *mem, int len) |
| 429 | { |
| 430 | int i, c; |
| 431 | char *q; |
| 432 | q = buf; |
| 433 | for(i = 0; i < len; i++) { |
| 434 | c = mem[i]; |
| 435 | *q++ = tohex(c >> 4); |
| 436 | *q++ = tohex(c & 0xf); |
| 437 | } |
| 438 | *q = '\0'; |
| 439 | } |
| 440 | |
| 441 | static void hextomem(uint8_t *mem, const char *buf, int len) |
| 442 | { |
| 443 | int i; |
| 444 | |
| 445 | for(i = 0; i < len; i++) { |
| 446 | mem[i] = (fromhex(buf[0]) << 4) | fromhex(buf[1]); |
| 447 | buf += 2; |
| 448 | } |
| 449 | } |
| 450 | |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 451 | /* return -1 if error, 0 if OK */ |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 452 | static int put_packet_binary(GDBState *s, const char *buf, int len) |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 453 | { |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 454 | int csum, i; |
ths | 60fe76f | 2007-12-16 03:02:09 +0000 | [diff] [blame] | 455 | uint8_t *p; |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 456 | |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 457 | for(;;) { |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 458 | p = s->last_packet; |
| 459 | *(p++) = '$'; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 460 | memcpy(p, buf, len); |
| 461 | p += len; |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 462 | csum = 0; |
| 463 | for(i = 0; i < len; i++) { |
| 464 | csum += buf[i]; |
| 465 | } |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 466 | *(p++) = '#'; |
| 467 | *(p++) = tohex((csum >> 4) & 0xf); |
| 468 | *(p++) = tohex((csum) & 0xf); |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 469 | |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 470 | s->last_packet_len = p - s->last_packet; |
ths | ffe8ab8 | 2007-12-16 03:16:05 +0000 | [diff] [blame] | 471 | put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len); |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 472 | |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 473 | #ifdef CONFIG_USER_ONLY |
| 474 | i = get_char(s); |
| 475 | if (i < 0) |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 476 | return -1; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 477 | if (i == '+') |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 478 | break; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 479 | #else |
| 480 | break; |
| 481 | #endif |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 482 | } |
| 483 | return 0; |
| 484 | } |
| 485 | |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 486 | /* return -1 if error, 0 if OK */ |
| 487 | static int put_packet(GDBState *s, const char *buf) |
| 488 | { |
| 489 | #ifdef DEBUG_GDB |
| 490 | printf("reply='%s'\n", buf); |
| 491 | #endif |
| 492 | |
| 493 | return put_packet_binary(s, buf, strlen(buf)); |
| 494 | } |
| 495 | |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 496 | /* Encode data using the encoding for 'x' packets. */ |
| 497 | static int memtox(char *buf, const char *mem, int len) |
| 498 | { |
| 499 | char *p = buf; |
| 500 | char c; |
| 501 | |
| 502 | while (len--) { |
| 503 | c = *(mem++); |
| 504 | switch (c) { |
| 505 | case '#': case '$': case '*': case '}': |
| 506 | *(p++) = '}'; |
| 507 | *(p++) = c ^ 0x20; |
| 508 | break; |
| 509 | default: |
| 510 | *(p++) = c; |
| 511 | break; |
| 512 | } |
| 513 | } |
| 514 | return p - buf; |
| 515 | } |
| 516 | |
Andreas Färber | 5b24c64 | 2013-07-07 15:08:22 +0200 | [diff] [blame] | 517 | static const char *get_feature_xml(const char *p, const char **newp, |
| 518 | CPUClass *cc) |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 519 | { |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 520 | size_t len; |
| 521 | int i; |
| 522 | const char *name; |
| 523 | static char target_xml[1024]; |
| 524 | |
| 525 | len = 0; |
| 526 | while (p[len] && p[len] != ':') |
| 527 | len++; |
| 528 | *newp = p + len; |
| 529 | |
| 530 | name = NULL; |
| 531 | if (strncmp(p, "target.xml", len) == 0) { |
| 532 | /* Generate the XML description for this CPU. */ |
| 533 | if (!target_xml[0]) { |
| 534 | GDBRegisterState *r; |
Andreas Färber | eac8b35 | 2013-06-28 21:11:37 +0200 | [diff] [blame] | 535 | CPUState *cpu = first_cpu; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 536 | |
blueswir1 | 5b3715b | 2008-10-25 11:18:12 +0000 | [diff] [blame] | 537 | snprintf(target_xml, sizeof(target_xml), |
| 538 | "<?xml version=\"1.0\"?>" |
| 539 | "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">" |
| 540 | "<target>" |
| 541 | "<xi:include href=\"%s\"/>", |
Andreas Färber | 5b24c64 | 2013-07-07 15:08:22 +0200 | [diff] [blame] | 542 | cc->gdb_core_xml_file); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 543 | |
Andreas Färber | eac8b35 | 2013-06-28 21:11:37 +0200 | [diff] [blame] | 544 | for (r = cpu->gdb_regs; r; r = r->next) { |
blueswir1 | 2dc766d | 2009-04-13 16:06:19 +0000 | [diff] [blame] | 545 | pstrcat(target_xml, sizeof(target_xml), "<xi:include href=\""); |
| 546 | pstrcat(target_xml, sizeof(target_xml), r->xml); |
| 547 | pstrcat(target_xml, sizeof(target_xml), "\"/>"); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 548 | } |
blueswir1 | 2dc766d | 2009-04-13 16:06:19 +0000 | [diff] [blame] | 549 | pstrcat(target_xml, sizeof(target_xml), "</target>"); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 550 | } |
| 551 | return target_xml; |
| 552 | } |
| 553 | for (i = 0; ; i++) { |
| 554 | name = xml_builtin[i][0]; |
| 555 | if (!name || (strncmp(name, p, len) == 0 && strlen(name) == len)) |
| 556 | break; |
| 557 | } |
| 558 | return name ? xml_builtin[i][1] : NULL; |
| 559 | } |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 560 | |
Andreas Färber | 385b9f0 | 2013-06-27 18:25:36 +0200 | [diff] [blame] | 561 | static int gdb_read_register(CPUState *cpu, uint8_t *mem_buf, int reg) |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 562 | { |
Andreas Färber | a0e372f | 2013-06-28 23:18:47 +0200 | [diff] [blame] | 563 | CPUClass *cc = CPU_GET_CLASS(cpu); |
Andreas Färber | 385b9f0 | 2013-06-27 18:25:36 +0200 | [diff] [blame] | 564 | CPUArchState *env = cpu->env_ptr; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 565 | GDBRegisterState *r; |
| 566 | |
Andreas Färber | a0e372f | 2013-06-28 23:18:47 +0200 | [diff] [blame] | 567 | if (reg < cc->gdb_num_core_regs) { |
Andreas Färber | 5b50e79 | 2013-06-29 04:18:45 +0200 | [diff] [blame] | 568 | return cc->gdb_read_register(cpu, mem_buf, reg); |
Andreas Färber | a0e372f | 2013-06-28 23:18:47 +0200 | [diff] [blame] | 569 | } |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 570 | |
Andreas Färber | eac8b35 | 2013-06-28 21:11:37 +0200 | [diff] [blame] | 571 | for (r = cpu->gdb_regs; r; r = r->next) { |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 572 | if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) { |
| 573 | return r->get_reg(env, mem_buf, reg - r->base_reg); |
| 574 | } |
| 575 | } |
| 576 | return 0; |
| 577 | } |
| 578 | |
Andreas Färber | 385b9f0 | 2013-06-27 18:25:36 +0200 | [diff] [blame] | 579 | static int gdb_write_register(CPUState *cpu, uint8_t *mem_buf, int reg) |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 580 | { |
Andreas Färber | a0e372f | 2013-06-28 23:18:47 +0200 | [diff] [blame] | 581 | CPUClass *cc = CPU_GET_CLASS(cpu); |
Andreas Färber | 385b9f0 | 2013-06-27 18:25:36 +0200 | [diff] [blame] | 582 | CPUArchState *env = cpu->env_ptr; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 583 | GDBRegisterState *r; |
| 584 | |
Andreas Färber | a0e372f | 2013-06-28 23:18:47 +0200 | [diff] [blame] | 585 | if (reg < cc->gdb_num_core_regs) { |
Andreas Färber | 5b50e79 | 2013-06-29 04:18:45 +0200 | [diff] [blame] | 586 | return cc->gdb_write_register(cpu, mem_buf, reg); |
Andreas Färber | a0e372f | 2013-06-28 23:18:47 +0200 | [diff] [blame] | 587 | } |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 588 | |
Andreas Färber | eac8b35 | 2013-06-28 21:11:37 +0200 | [diff] [blame] | 589 | for (r = cpu->gdb_regs; r; r = r->next) { |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 590 | if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) { |
| 591 | return r->set_reg(env, mem_buf, reg - r->base_reg); |
| 592 | } |
| 593 | } |
| 594 | return 0; |
| 595 | } |
| 596 | |
| 597 | /* Register a supplemental set of CPU registers. If g_pos is nonzero it |
| 598 | specifies the first register number and these registers are included in |
| 599 | a standard "g" packet. Direction is relative to gdb, i.e. get_reg is |
| 600 | gdb reading a CPU register, and set_reg is gdb modifying a CPU register. |
| 601 | */ |
| 602 | |
Andreas Färber | 22169d4 | 2013-06-28 21:27:39 +0200 | [diff] [blame] | 603 | void gdb_register_coprocessor(CPUState *cpu, |
| 604 | gdb_reg_cb get_reg, gdb_reg_cb set_reg, |
| 605 | int num_regs, const char *xml, int g_pos) |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 606 | { |
| 607 | GDBRegisterState *s; |
| 608 | GDBRegisterState **p; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 609 | |
Andreas Färber | eac8b35 | 2013-06-28 21:11:37 +0200 | [diff] [blame] | 610 | p = &cpu->gdb_regs; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 611 | while (*p) { |
| 612 | /* Check for duplicates. */ |
| 613 | if (strcmp((*p)->xml, xml) == 0) |
| 614 | return; |
| 615 | p = &(*p)->next; |
| 616 | } |
Stefan Weil | 9643c25 | 2011-10-18 22:25:38 +0200 | [diff] [blame] | 617 | |
| 618 | s = g_new0(GDBRegisterState, 1); |
Andreas Färber | a0e372f | 2013-06-28 23:18:47 +0200 | [diff] [blame] | 619 | s->base_reg = cpu->gdb_num_regs; |
Stefan Weil | 9643c25 | 2011-10-18 22:25:38 +0200 | [diff] [blame] | 620 | s->num_regs = num_regs; |
| 621 | s->get_reg = get_reg; |
| 622 | s->set_reg = set_reg; |
| 623 | s->xml = xml; |
| 624 | |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 625 | /* Add to end of list. */ |
Andreas Färber | a0e372f | 2013-06-28 23:18:47 +0200 | [diff] [blame] | 626 | cpu->gdb_num_regs += num_regs; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 627 | *p = s; |
| 628 | if (g_pos) { |
| 629 | if (g_pos != s->base_reg) { |
| 630 | fprintf(stderr, "Error: Bad gdb register numbering for '%s'\n" |
| 631 | "Expected %d got %d\n", xml, g_pos, s->base_reg); |
Andreas Färber | 35143f0 | 2013-08-12 18:09:47 +0200 | [diff] [blame] | 632 | } else { |
| 633 | cpu->gdb_num_g_regs = cpu->gdb_num_regs; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 634 | } |
| 635 | } |
| 636 | } |
| 637 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 638 | #ifndef CONFIG_USER_ONLY |
Peter Maydell | 2472b6c | 2014-09-12 19:04:17 +0100 | [diff] [blame] | 639 | /* Translate GDB watchpoint type to a flags value for cpu_watchpoint_* */ |
| 640 | static inline int xlat_gdb_type(CPUState *cpu, int gdbtype) |
| 641 | { |
| 642 | static const int xlat[] = { |
| 643 | [GDB_WATCHPOINT_WRITE] = BP_GDB | BP_MEM_WRITE, |
| 644 | [GDB_WATCHPOINT_READ] = BP_GDB | BP_MEM_READ, |
| 645 | [GDB_WATCHPOINT_ACCESS] = BP_GDB | BP_MEM_ACCESS, |
| 646 | }; |
| 647 | |
| 648 | CPUClass *cc = CPU_GET_CLASS(cpu); |
| 649 | int cputype = xlat[gdbtype]; |
| 650 | |
| 651 | if (cc->gdb_stop_before_watchpoint) { |
| 652 | cputype |= BP_STOP_BEFORE_ACCESS; |
| 653 | } |
| 654 | return cputype; |
| 655 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 656 | #endif |
| 657 | |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 658 | static int gdb_breakpoint_insert(target_ulong addr, target_ulong len, int type) |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 659 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 660 | CPUState *cpu; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 661 | int err = 0; |
| 662 | |
Andreas Färber | 6227881 | 2013-06-27 17:12:06 +0200 | [diff] [blame] | 663 | if (kvm_enabled()) { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 664 | return kvm_insert_breakpoint(gdbserver_state->c_cpu, addr, len, type); |
Andreas Färber | 6227881 | 2013-06-27 17:12:06 +0200 | [diff] [blame] | 665 | } |
aliguori | e22a25c | 2009-03-12 20:12:48 +0000 | [diff] [blame] | 666 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 667 | switch (type) { |
| 668 | case GDB_BREAKPOINT_SW: |
| 669 | case GDB_BREAKPOINT_HW: |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 670 | CPU_FOREACH(cpu) { |
Andreas Färber | b3310ab | 2013-09-02 17:26:20 +0200 | [diff] [blame] | 671 | err = cpu_breakpoint_insert(cpu, addr, BP_GDB, NULL); |
| 672 | if (err) { |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 673 | break; |
Andreas Färber | b3310ab | 2013-09-02 17:26:20 +0200 | [diff] [blame] | 674 | } |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 675 | } |
| 676 | return err; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 677 | #ifndef CONFIG_USER_ONLY |
| 678 | case GDB_WATCHPOINT_WRITE: |
| 679 | case GDB_WATCHPOINT_READ: |
| 680 | case GDB_WATCHPOINT_ACCESS: |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 681 | CPU_FOREACH(cpu) { |
Peter Maydell | 2472b6c | 2014-09-12 19:04:17 +0100 | [diff] [blame] | 682 | err = cpu_watchpoint_insert(cpu, addr, len, |
| 683 | xlat_gdb_type(cpu, type), NULL); |
| 684 | if (err) { |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 685 | break; |
Peter Maydell | 2472b6c | 2014-09-12 19:04:17 +0100 | [diff] [blame] | 686 | } |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 687 | } |
| 688 | return err; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 689 | #endif |
| 690 | default: |
| 691 | return -ENOSYS; |
| 692 | } |
| 693 | } |
| 694 | |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 695 | static int gdb_breakpoint_remove(target_ulong addr, target_ulong len, int type) |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 696 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 697 | CPUState *cpu; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 698 | int err = 0; |
| 699 | |
Andreas Färber | 6227881 | 2013-06-27 17:12:06 +0200 | [diff] [blame] | 700 | if (kvm_enabled()) { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 701 | return kvm_remove_breakpoint(gdbserver_state->c_cpu, addr, len, type); |
Andreas Färber | 6227881 | 2013-06-27 17:12:06 +0200 | [diff] [blame] | 702 | } |
aliguori | e22a25c | 2009-03-12 20:12:48 +0000 | [diff] [blame] | 703 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 704 | switch (type) { |
| 705 | case GDB_BREAKPOINT_SW: |
| 706 | case GDB_BREAKPOINT_HW: |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 707 | CPU_FOREACH(cpu) { |
Andreas Färber | b3310ab | 2013-09-02 17:26:20 +0200 | [diff] [blame] | 708 | err = cpu_breakpoint_remove(cpu, addr, BP_GDB); |
| 709 | if (err) { |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 710 | break; |
Andreas Färber | b3310ab | 2013-09-02 17:26:20 +0200 | [diff] [blame] | 711 | } |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 712 | } |
| 713 | return err; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 714 | #ifndef CONFIG_USER_ONLY |
| 715 | case GDB_WATCHPOINT_WRITE: |
| 716 | case GDB_WATCHPOINT_READ: |
| 717 | case GDB_WATCHPOINT_ACCESS: |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 718 | CPU_FOREACH(cpu) { |
Peter Maydell | 2472b6c | 2014-09-12 19:04:17 +0100 | [diff] [blame] | 719 | err = cpu_watchpoint_remove(cpu, addr, len, |
| 720 | xlat_gdb_type(cpu, type)); |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 721 | if (err) |
| 722 | break; |
| 723 | } |
| 724 | return err; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 725 | #endif |
| 726 | default: |
| 727 | return -ENOSYS; |
| 728 | } |
| 729 | } |
| 730 | |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 731 | static void gdb_breakpoint_remove_all(void) |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 732 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 733 | CPUState *cpu; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 734 | |
aliguori | e22a25c | 2009-03-12 20:12:48 +0000 | [diff] [blame] | 735 | if (kvm_enabled()) { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 736 | kvm_remove_all_breakpoints(gdbserver_state->c_cpu); |
aliguori | e22a25c | 2009-03-12 20:12:48 +0000 | [diff] [blame] | 737 | return; |
| 738 | } |
| 739 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 740 | CPU_FOREACH(cpu) { |
Andreas Färber | b3310ab | 2013-09-02 17:26:20 +0200 | [diff] [blame] | 741 | cpu_breakpoint_remove_all(cpu, BP_GDB); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 742 | #ifndef CONFIG_USER_ONLY |
Andreas Färber | 75a3403 | 2013-09-02 16:57:02 +0200 | [diff] [blame] | 743 | cpu_watchpoint_remove_all(cpu, BP_GDB); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 744 | #endif |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 745 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 746 | } |
| 747 | |
aurel32 | fab9d28 | 2009-04-08 21:29:37 +0000 | [diff] [blame] | 748 | static void gdb_set_cpu_pc(GDBState *s, target_ulong pc) |
| 749 | { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 750 | CPUState *cpu = s->c_cpu; |
Andreas Färber | f45748f | 2013-06-21 19:09:18 +0200 | [diff] [blame] | 751 | CPUClass *cc = CPU_GET_CLASS(cpu); |
| 752 | |
| 753 | cpu_synchronize_state(cpu); |
| 754 | if (cc->set_pc) { |
| 755 | cc->set_pc(cpu, pc); |
Nathan Froyd | ff1d197 | 2009-12-08 08:06:30 -0800 | [diff] [blame] | 756 | } |
aurel32 | fab9d28 | 2009-04-08 21:29:37 +0000 | [diff] [blame] | 757 | } |
| 758 | |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 759 | static CPUState *find_cpu(uint32_t thread_id) |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 760 | { |
Andreas Färber | 0d34282 | 2012-12-17 07:12:13 +0100 | [diff] [blame] | 761 | CPUState *cpu; |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 762 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 763 | CPU_FOREACH(cpu) { |
Andreas Färber | aa48dd9 | 2013-07-09 20:50:52 +0200 | [diff] [blame] | 764 | if (cpu_index(cpu) == thread_id) { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 765 | return cpu; |
Andreas Färber | aa48dd9 | 2013-07-09 20:50:52 +0200 | [diff] [blame] | 766 | } |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 767 | } |
Andreas Färber | aa48dd9 | 2013-07-09 20:50:52 +0200 | [diff] [blame] | 768 | |
| 769 | return NULL; |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 770 | } |
| 771 | |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 772 | static int gdb_handle_packet(GDBState *s, const char *line_buf) |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 773 | { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 774 | CPUState *cpu; |
Andreas Färber | 5b24c64 | 2013-07-07 15:08:22 +0200 | [diff] [blame] | 775 | CPUClass *cc; |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 776 | const char *p; |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 777 | uint32_t thread; |
| 778 | int ch, reg_size, type, res; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 779 | char buf[MAX_PACKET_LENGTH]; |
| 780 | uint8_t mem_buf[MAX_PACKET_LENGTH]; |
| 781 | uint8_t *registers; |
bellard | 9d9754a | 2006-06-25 15:32:37 +0000 | [diff] [blame] | 782 | target_ulong addr, len; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 783 | |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 784 | #ifdef DEBUG_GDB |
| 785 | printf("command='%s'\n", line_buf); |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 786 | #endif |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 787 | p = line_buf; |
| 788 | ch = *p++; |
| 789 | switch(ch) { |
| 790 | case '?': |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 791 | /* TODO: Make this return the correct value for user-mode. */ |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 792 | snprintf(buf, sizeof(buf), "T%02xthread:%02x;", GDB_SIGNAL_TRAP, |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 793 | cpu_index(s->c_cpu)); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 794 | put_packet(s, buf); |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 795 | /* Remove all the breakpoints when this query is issued, |
| 796 | * because gdb is doing and initial connect and the state |
| 797 | * should be cleaned up. |
| 798 | */ |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 799 | gdb_breakpoint_remove_all(); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 800 | break; |
| 801 | case 'c': |
| 802 | if (*p != '\0') { |
bellard | 9d9754a | 2006-06-25 15:32:37 +0000 | [diff] [blame] | 803 | addr = strtoull(p, (char **)&p, 16); |
aurel32 | fab9d28 | 2009-04-08 21:29:37 +0000 | [diff] [blame] | 804 | gdb_set_cpu_pc(s, addr); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 805 | } |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 806 | s->signal = 0; |
edgar_igl | ba70a62 | 2008-03-14 06:10:42 +0000 | [diff] [blame] | 807 | gdb_continue(s); |
bellard | 4162503 | 2005-04-24 10:07:11 +0000 | [diff] [blame] | 808 | return RS_IDLE; |
edgar_igl | 1f487ee | 2008-05-17 22:20:53 +0000 | [diff] [blame] | 809 | case 'C': |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 810 | s->signal = gdb_signal_to_target (strtoul(p, (char **)&p, 16)); |
| 811 | if (s->signal == -1) |
| 812 | s->signal = 0; |
edgar_igl | 1f487ee | 2008-05-17 22:20:53 +0000 | [diff] [blame] | 813 | gdb_continue(s); |
| 814 | return RS_IDLE; |
Jan Kiszka | dd32aa1 | 2009-06-27 09:53:51 +0200 | [diff] [blame] | 815 | case 'v': |
| 816 | if (strncmp(p, "Cont", 4) == 0) { |
| 817 | int res_signal, res_thread; |
| 818 | |
| 819 | p += 4; |
| 820 | if (*p == '?') { |
| 821 | put_packet(s, "vCont;c;C;s;S"); |
| 822 | break; |
| 823 | } |
| 824 | res = 0; |
| 825 | res_signal = 0; |
| 826 | res_thread = 0; |
| 827 | while (*p) { |
| 828 | int action, signal; |
| 829 | |
| 830 | if (*p++ != ';') { |
| 831 | res = 0; |
| 832 | break; |
| 833 | } |
| 834 | action = *p++; |
| 835 | signal = 0; |
| 836 | if (action == 'C' || action == 'S') { |
Martin Simmons | f17b069 | 2014-11-05 14:47:39 +0000 | [diff] [blame] | 837 | signal = gdb_signal_to_target(strtoul(p, (char **)&p, 16)); |
| 838 | if (signal == -1) { |
| 839 | signal = 0; |
| 840 | } |
Jan Kiszka | dd32aa1 | 2009-06-27 09:53:51 +0200 | [diff] [blame] | 841 | } else if (action != 'c' && action != 's') { |
| 842 | res = 0; |
| 843 | break; |
| 844 | } |
| 845 | thread = 0; |
| 846 | if (*p == ':') { |
| 847 | thread = strtoull(p+1, (char **)&p, 16); |
| 848 | } |
| 849 | action = tolower(action); |
| 850 | if (res == 0 || (res == 'c' && action == 's')) { |
| 851 | res = action; |
| 852 | res_signal = signal; |
| 853 | res_thread = thread; |
| 854 | } |
| 855 | } |
| 856 | if (res) { |
| 857 | if (res_thread != -1 && res_thread != 0) { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 858 | cpu = find_cpu(res_thread); |
| 859 | if (cpu == NULL) { |
Jan Kiszka | dd32aa1 | 2009-06-27 09:53:51 +0200 | [diff] [blame] | 860 | put_packet(s, "E22"); |
| 861 | break; |
| 862 | } |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 863 | s->c_cpu = cpu; |
Jan Kiszka | dd32aa1 | 2009-06-27 09:53:51 +0200 | [diff] [blame] | 864 | } |
| 865 | if (res == 's') { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 866 | cpu_single_step(s->c_cpu, sstep_flags); |
Jan Kiszka | dd32aa1 | 2009-06-27 09:53:51 +0200 | [diff] [blame] | 867 | } |
| 868 | s->signal = res_signal; |
| 869 | gdb_continue(s); |
| 870 | return RS_IDLE; |
| 871 | } |
| 872 | break; |
| 873 | } else { |
| 874 | goto unknown_command; |
| 875 | } |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 876 | case 'k': |
Jan Kiszka | 00e94db | 2012-03-06 18:32:35 +0100 | [diff] [blame] | 877 | #ifdef CONFIG_USER_ONLY |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 878 | /* Kill the target */ |
| 879 | fprintf(stderr, "\nQEMU: Terminated via GDBstub\n"); |
| 880 | exit(0); |
Jan Kiszka | 00e94db | 2012-03-06 18:32:35 +0100 | [diff] [blame] | 881 | #endif |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 882 | case 'D': |
| 883 | /* Detach packet */ |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 884 | gdb_breakpoint_remove_all(); |
Daniel Gutson | 7ea06da | 2010-02-26 14:13:50 -0300 | [diff] [blame] | 885 | gdb_syscall_mode = GDB_SYS_DISABLED; |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 886 | gdb_continue(s); |
| 887 | put_packet(s, "OK"); |
| 888 | break; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 889 | case 's': |
| 890 | if (*p != '\0') { |
ths | 8fac580 | 2007-07-12 10:05:07 +0000 | [diff] [blame] | 891 | addr = strtoull(p, (char **)&p, 16); |
aurel32 | fab9d28 | 2009-04-08 21:29:37 +0000 | [diff] [blame] | 892 | gdb_set_cpu_pc(s, addr); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 893 | } |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 894 | cpu_single_step(s->c_cpu, sstep_flags); |
edgar_igl | ba70a62 | 2008-03-14 06:10:42 +0000 | [diff] [blame] | 895 | gdb_continue(s); |
bellard | 4162503 | 2005-04-24 10:07:11 +0000 | [diff] [blame] | 896 | return RS_IDLE; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 897 | case 'F': |
| 898 | { |
| 899 | target_ulong ret; |
| 900 | target_ulong err; |
| 901 | |
| 902 | ret = strtoull(p, (char **)&p, 16); |
| 903 | if (*p == ',') { |
| 904 | p++; |
| 905 | err = strtoull(p, (char **)&p, 16); |
| 906 | } else { |
| 907 | err = 0; |
| 908 | } |
| 909 | if (*p == ',') |
| 910 | p++; |
| 911 | type = *p; |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 912 | if (s->current_syscall_cb) { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 913 | s->current_syscall_cb(s->c_cpu, ret, err); |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 914 | s->current_syscall_cb = NULL; |
| 915 | } |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 916 | if (type == 'C') { |
| 917 | put_packet(s, "T02"); |
| 918 | } else { |
edgar_igl | ba70a62 | 2008-03-14 06:10:42 +0000 | [diff] [blame] | 919 | gdb_continue(s); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 920 | } |
| 921 | } |
| 922 | break; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 923 | case 'g': |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 924 | cpu_synchronize_state(s->g_cpu); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 925 | len = 0; |
Andreas Färber | 35143f0 | 2013-08-12 18:09:47 +0200 | [diff] [blame] | 926 | for (addr = 0; addr < s->g_cpu->gdb_num_g_regs; addr++) { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 927 | reg_size = gdb_read_register(s->g_cpu, mem_buf + len, addr); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 928 | len += reg_size; |
| 929 | } |
| 930 | memtohex(buf, mem_buf, len); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 931 | put_packet(s, buf); |
| 932 | break; |
| 933 | case 'G': |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 934 | cpu_synchronize_state(s->g_cpu); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 935 | registers = mem_buf; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 936 | len = strlen(p) / 2; |
| 937 | hextomem((uint8_t *)registers, p, len); |
Andreas Färber | 35143f0 | 2013-08-12 18:09:47 +0200 | [diff] [blame] | 938 | for (addr = 0; addr < s->g_cpu->gdb_num_g_regs && len > 0; addr++) { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 939 | reg_size = gdb_write_register(s->g_cpu, registers, addr); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 940 | len -= reg_size; |
| 941 | registers += reg_size; |
| 942 | } |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 943 | put_packet(s, "OK"); |
| 944 | break; |
| 945 | case 'm': |
bellard | 9d9754a | 2006-06-25 15:32:37 +0000 | [diff] [blame] | 946 | addr = strtoull(p, (char **)&p, 16); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 947 | if (*p == ',') |
| 948 | p++; |
bellard | 9d9754a | 2006-06-25 15:32:37 +0000 | [diff] [blame] | 949 | len = strtoull(p, NULL, 16); |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 950 | if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, false) != 0) { |
bellard | 6f970bd | 2005-12-05 19:55:19 +0000 | [diff] [blame] | 951 | put_packet (s, "E14"); |
| 952 | } else { |
| 953 | memtohex(buf, mem_buf, len); |
| 954 | put_packet(s, buf); |
| 955 | } |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 956 | break; |
| 957 | case 'M': |
bellard | 9d9754a | 2006-06-25 15:32:37 +0000 | [diff] [blame] | 958 | addr = strtoull(p, (char **)&p, 16); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 959 | if (*p == ',') |
| 960 | p++; |
bellard | 9d9754a | 2006-06-25 15:32:37 +0000 | [diff] [blame] | 961 | len = strtoull(p, (char **)&p, 16); |
bellard | b328f87 | 2005-01-17 22:03:16 +0000 | [diff] [blame] | 962 | if (*p == ':') |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 963 | p++; |
| 964 | hextomem(mem_buf, p, len); |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 965 | if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, |
Andreas Färber | f3659ee | 2013-06-27 19:09:09 +0200 | [diff] [blame] | 966 | true) != 0) { |
bellard | 905f20b | 2005-04-26 21:09:55 +0000 | [diff] [blame] | 967 | put_packet(s, "E14"); |
Fabien Chouteau | 44520db | 2011-09-08 12:48:16 +0200 | [diff] [blame] | 968 | } else { |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 969 | put_packet(s, "OK"); |
Fabien Chouteau | 44520db | 2011-09-08 12:48:16 +0200 | [diff] [blame] | 970 | } |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 971 | break; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 972 | case 'p': |
| 973 | /* Older gdb are really dumb, and don't use 'g' if 'p' is avaialable. |
| 974 | This works, but can be very slow. Anything new enough to |
| 975 | understand XML also knows how to use this properly. */ |
| 976 | if (!gdb_has_xml) |
| 977 | goto unknown_command; |
| 978 | addr = strtoull(p, (char **)&p, 16); |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 979 | reg_size = gdb_read_register(s->g_cpu, mem_buf, addr); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 980 | if (reg_size) { |
| 981 | memtohex(buf, mem_buf, reg_size); |
| 982 | put_packet(s, buf); |
| 983 | } else { |
| 984 | put_packet(s, "E14"); |
| 985 | } |
| 986 | break; |
| 987 | case 'P': |
| 988 | if (!gdb_has_xml) |
| 989 | goto unknown_command; |
| 990 | addr = strtoull(p, (char **)&p, 16); |
| 991 | if (*p == '=') |
| 992 | p++; |
| 993 | reg_size = strlen(p) / 2; |
| 994 | hextomem(mem_buf, p, reg_size); |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 995 | gdb_write_register(s->g_cpu, mem_buf, addr); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 996 | put_packet(s, "OK"); |
| 997 | break; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 998 | case 'Z': |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 999 | case 'z': |
| 1000 | type = strtoul(p, (char **)&p, 16); |
| 1001 | if (*p == ',') |
| 1002 | p++; |
bellard | 9d9754a | 2006-06-25 15:32:37 +0000 | [diff] [blame] | 1003 | addr = strtoull(p, (char **)&p, 16); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1004 | if (*p == ',') |
| 1005 | p++; |
bellard | 9d9754a | 2006-06-25 15:32:37 +0000 | [diff] [blame] | 1006 | len = strtoull(p, (char **)&p, 16); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1007 | if (ch == 'Z') |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1008 | res = gdb_breakpoint_insert(addr, len, type); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1009 | else |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1010 | res = gdb_breakpoint_remove(addr, len, type); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1011 | if (res >= 0) |
| 1012 | put_packet(s, "OK"); |
| 1013 | else if (res == -ENOSYS) |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1014 | put_packet(s, ""); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1015 | else |
| 1016 | put_packet(s, "E22"); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1017 | break; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1018 | case 'H': |
| 1019 | type = *p++; |
| 1020 | thread = strtoull(p, (char **)&p, 16); |
| 1021 | if (thread == -1 || thread == 0) { |
| 1022 | put_packet(s, "OK"); |
| 1023 | break; |
| 1024 | } |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1025 | cpu = find_cpu(thread); |
| 1026 | if (cpu == NULL) { |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1027 | put_packet(s, "E22"); |
| 1028 | break; |
| 1029 | } |
| 1030 | switch (type) { |
| 1031 | case 'c': |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1032 | s->c_cpu = cpu; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1033 | put_packet(s, "OK"); |
| 1034 | break; |
| 1035 | case 'g': |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1036 | s->g_cpu = cpu; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1037 | put_packet(s, "OK"); |
| 1038 | break; |
| 1039 | default: |
| 1040 | put_packet(s, "E22"); |
| 1041 | break; |
| 1042 | } |
| 1043 | break; |
| 1044 | case 'T': |
| 1045 | thread = strtoull(p, (char **)&p, 16); |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1046 | cpu = find_cpu(thread); |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 1047 | |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1048 | if (cpu != NULL) { |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 1049 | put_packet(s, "OK"); |
| 1050 | } else { |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1051 | put_packet(s, "E22"); |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 1052 | } |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1053 | break; |
pbrook | 978efd6 | 2006-06-17 18:30:42 +0000 | [diff] [blame] | 1054 | case 'q': |
edgar_igl | 60897d3 | 2008-05-09 08:25:14 +0000 | [diff] [blame] | 1055 | case 'Q': |
| 1056 | /* parse any 'q' packets here */ |
| 1057 | if (!strcmp(p,"qemu.sstepbits")) { |
| 1058 | /* Query Breakpoint bit definitions */ |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1059 | snprintf(buf, sizeof(buf), "ENABLE=%x,NOIRQ=%x,NOTIMER=%x", |
| 1060 | SSTEP_ENABLE, |
| 1061 | SSTEP_NOIRQ, |
| 1062 | SSTEP_NOTIMER); |
edgar_igl | 60897d3 | 2008-05-09 08:25:14 +0000 | [diff] [blame] | 1063 | put_packet(s, buf); |
| 1064 | break; |
| 1065 | } else if (strncmp(p,"qemu.sstep",10) == 0) { |
| 1066 | /* Display or change the sstep_flags */ |
| 1067 | p += 10; |
| 1068 | if (*p != '=') { |
| 1069 | /* Display current setting */ |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1070 | snprintf(buf, sizeof(buf), "0x%x", sstep_flags); |
edgar_igl | 60897d3 | 2008-05-09 08:25:14 +0000 | [diff] [blame] | 1071 | put_packet(s, buf); |
| 1072 | break; |
| 1073 | } |
| 1074 | p++; |
| 1075 | type = strtoul(p, (char **)&p, 16); |
| 1076 | sstep_flags = type; |
| 1077 | put_packet(s, "OK"); |
| 1078 | break; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1079 | } else if (strcmp(p,"C") == 0) { |
| 1080 | /* "Current thread" remains vague in the spec, so always return |
| 1081 | * the first CPU (gdb returns the first thread). */ |
| 1082 | put_packet(s, "QC1"); |
| 1083 | break; |
| 1084 | } else if (strcmp(p,"fThreadInfo") == 0) { |
Andreas Färber | 52f3462 | 2013-06-27 13:44:40 +0200 | [diff] [blame] | 1085 | s->query_cpu = first_cpu; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1086 | goto report_cpuinfo; |
| 1087 | } else if (strcmp(p,"sThreadInfo") == 0) { |
| 1088 | report_cpuinfo: |
| 1089 | if (s->query_cpu) { |
Andreas Färber | 52f3462 | 2013-06-27 13:44:40 +0200 | [diff] [blame] | 1090 | snprintf(buf, sizeof(buf), "m%x", cpu_index(s->query_cpu)); |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1091 | put_packet(s, buf); |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1092 | s->query_cpu = CPU_NEXT(s->query_cpu); |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1093 | } else |
| 1094 | put_packet(s, "l"); |
| 1095 | break; |
| 1096 | } else if (strncmp(p,"ThreadExtraInfo,", 16) == 0) { |
| 1097 | thread = strtoull(p+16, (char **)&p, 16); |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1098 | cpu = find_cpu(thread); |
| 1099 | if (cpu != NULL) { |
Andreas Färber | cb446ec | 2013-05-01 14:24:52 +0200 | [diff] [blame] | 1100 | cpu_synchronize_state(cpu); |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 1101 | len = snprintf((char *)mem_buf, sizeof(mem_buf), |
Andreas Färber | 55e5c28 | 2012-12-17 06:18:02 +0100 | [diff] [blame] | 1102 | "CPU#%d [%s]", cpu->cpu_index, |
Andreas Färber | 259186a | 2013-01-17 18:51:17 +0100 | [diff] [blame] | 1103 | cpu->halted ? "halted " : "running"); |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 1104 | memtohex(buf, mem_buf, len); |
| 1105 | put_packet(s, buf); |
| 1106 | } |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1107 | break; |
edgar_igl | 60897d3 | 2008-05-09 08:25:14 +0000 | [diff] [blame] | 1108 | } |
blueswir1 | 0b8a988 | 2009-03-07 10:51:36 +0000 | [diff] [blame] | 1109 | #ifdef CONFIG_USER_ONLY |
edgar_igl | 60897d3 | 2008-05-09 08:25:14 +0000 | [diff] [blame] | 1110 | else if (strncmp(p, "Offsets", 7) == 0) { |
Andreas Färber | 0429a97 | 2013-08-26 18:14:44 +0200 | [diff] [blame] | 1111 | TaskState *ts = s->c_cpu->opaque; |
pbrook | 978efd6 | 2006-06-17 18:30:42 +0000 | [diff] [blame] | 1112 | |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1113 | snprintf(buf, sizeof(buf), |
| 1114 | "Text=" TARGET_ABI_FMT_lx ";Data=" TARGET_ABI_FMT_lx |
| 1115 | ";Bss=" TARGET_ABI_FMT_lx, |
| 1116 | ts->info->code_offset, |
| 1117 | ts->info->data_offset, |
| 1118 | ts->info->data_offset); |
pbrook | 978efd6 | 2006-06-17 18:30:42 +0000 | [diff] [blame] | 1119 | put_packet(s, buf); |
| 1120 | break; |
| 1121 | } |
blueswir1 | 0b8a988 | 2009-03-07 10:51:36 +0000 | [diff] [blame] | 1122 | #else /* !CONFIG_USER_ONLY */ |
aliguori | 8a34a0f | 2009-03-05 23:01:55 +0000 | [diff] [blame] | 1123 | else if (strncmp(p, "Rcmd,", 5) == 0) { |
| 1124 | int len = strlen(p + 5); |
| 1125 | |
| 1126 | if ((len % 2) != 0) { |
| 1127 | put_packet(s, "E01"); |
| 1128 | break; |
| 1129 | } |
| 1130 | hextomem(mem_buf, p + 5, len); |
| 1131 | len = len / 2; |
| 1132 | mem_buf[len++] = 0; |
Anthony Liguori | fa5efcc | 2011-08-15 11:17:30 -0500 | [diff] [blame] | 1133 | qemu_chr_be_write(s->mon_chr, mem_buf, len); |
aliguori | 8a34a0f | 2009-03-05 23:01:55 +0000 | [diff] [blame] | 1134 | put_packet(s, "OK"); |
| 1135 | break; |
| 1136 | } |
blueswir1 | 0b8a988 | 2009-03-07 10:51:36 +0000 | [diff] [blame] | 1137 | #endif /* !CONFIG_USER_ONLY */ |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1138 | if (strncmp(p, "Supported", 9) == 0) { |
blueswir1 | 5b3715b | 2008-10-25 11:18:12 +0000 | [diff] [blame] | 1139 | snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH); |
Andreas Färber | 5b24c64 | 2013-07-07 15:08:22 +0200 | [diff] [blame] | 1140 | cc = CPU_GET_CLASS(first_cpu); |
| 1141 | if (cc->gdb_core_xml_file != NULL) { |
| 1142 | pstrcat(buf, sizeof(buf), ";qXfer:features:read+"); |
| 1143 | } |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1144 | put_packet(s, buf); |
| 1145 | break; |
| 1146 | } |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1147 | if (strncmp(p, "Xfer:features:read:", 19) == 0) { |
| 1148 | const char *xml; |
| 1149 | target_ulong total_len; |
| 1150 | |
Andreas Färber | 5b24c64 | 2013-07-07 15:08:22 +0200 | [diff] [blame] | 1151 | cc = CPU_GET_CLASS(first_cpu); |
| 1152 | if (cc->gdb_core_xml_file == NULL) { |
| 1153 | goto unknown_command; |
| 1154 | } |
| 1155 | |
Andreas Färber | 5b50e79 | 2013-06-29 04:18:45 +0200 | [diff] [blame] | 1156 | gdb_has_xml = true; |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1157 | p += 19; |
Andreas Färber | 5b24c64 | 2013-07-07 15:08:22 +0200 | [diff] [blame] | 1158 | xml = get_feature_xml(p, &p, cc); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1159 | if (!xml) { |
blueswir1 | 5b3715b | 2008-10-25 11:18:12 +0000 | [diff] [blame] | 1160 | snprintf(buf, sizeof(buf), "E00"); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1161 | put_packet(s, buf); |
| 1162 | break; |
| 1163 | } |
| 1164 | |
| 1165 | if (*p == ':') |
| 1166 | p++; |
| 1167 | addr = strtoul(p, (char **)&p, 16); |
| 1168 | if (*p == ',') |
| 1169 | p++; |
| 1170 | len = strtoul(p, (char **)&p, 16); |
| 1171 | |
| 1172 | total_len = strlen(xml); |
| 1173 | if (addr > total_len) { |
blueswir1 | 5b3715b | 2008-10-25 11:18:12 +0000 | [diff] [blame] | 1174 | snprintf(buf, sizeof(buf), "E00"); |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1175 | put_packet(s, buf); |
| 1176 | break; |
| 1177 | } |
| 1178 | if (len > (MAX_PACKET_LENGTH - 5) / 2) |
| 1179 | len = (MAX_PACKET_LENGTH - 5) / 2; |
| 1180 | if (len < total_len - addr) { |
| 1181 | buf[0] = 'm'; |
| 1182 | len = memtox(buf + 1, xml + addr, len); |
| 1183 | } else { |
| 1184 | buf[0] = 'l'; |
| 1185 | len = memtox(buf + 1, xml + addr, total_len - addr); |
| 1186 | } |
| 1187 | put_packet_binary(s, buf, len + 1); |
| 1188 | break; |
| 1189 | } |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1190 | /* Unrecognised 'q' command. */ |
| 1191 | goto unknown_command; |
| 1192 | |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1193 | default: |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1194 | unknown_command: |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1195 | /* put empty packet */ |
| 1196 | buf[0] = '\0'; |
| 1197 | put_packet(s, buf); |
| 1198 | break; |
| 1199 | } |
| 1200 | return RS_IDLE; |
| 1201 | } |
| 1202 | |
Andreas Färber | 64f6b34 | 2013-05-27 02:06:09 +0200 | [diff] [blame] | 1203 | void gdb_set_stop_cpu(CPUState *cpu) |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1204 | { |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1205 | gdbserver_state->c_cpu = cpu; |
| 1206 | gdbserver_state->g_cpu = cpu; |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1207 | } |
| 1208 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1209 | #ifndef CONFIG_USER_ONLY |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 1210 | static void gdb_vm_state_change(void *opaque, int running, RunState state) |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1211 | { |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1212 | GDBState *s = gdbserver_state; |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1213 | CPUArchState *env = s->c_cpu->env_ptr; |
| 1214 | CPUState *cpu = s->c_cpu; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1215 | char buf[256]; |
aliguori | d6fc1b3 | 2008-11-18 19:55:44 +0000 | [diff] [blame] | 1216 | const char *type; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1217 | int ret; |
| 1218 | |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1219 | if (running || s->state == RS_INACTIVE) { |
| 1220 | return; |
| 1221 | } |
| 1222 | /* Is there a GDB syscall waiting to be sent? */ |
| 1223 | if (s->current_syscall_cb) { |
| 1224 | put_packet(s, s->syscall_buf); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1225 | return; |
Jan Kiszka | e07bbac | 2011-02-09 16:29:40 +0100 | [diff] [blame] | 1226 | } |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 1227 | switch (state) { |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1228 | case RUN_STATE_DEBUG: |
Andreas Färber | ff4700b | 2013-08-26 18:23:18 +0200 | [diff] [blame] | 1229 | if (cpu->watchpoint_hit) { |
| 1230 | switch (cpu->watchpoint_hit->flags & BP_MEM_ACCESS) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1231 | case BP_MEM_READ: |
aliguori | d6fc1b3 | 2008-11-18 19:55:44 +0000 | [diff] [blame] | 1232 | type = "r"; |
| 1233 | break; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1234 | case BP_MEM_ACCESS: |
aliguori | d6fc1b3 | 2008-11-18 19:55:44 +0000 | [diff] [blame] | 1235 | type = "a"; |
| 1236 | break; |
| 1237 | default: |
| 1238 | type = ""; |
| 1239 | break; |
| 1240 | } |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1241 | snprintf(buf, sizeof(buf), |
| 1242 | "T%02xthread:%02x;%swatch:" TARGET_FMT_lx ";", |
Andreas Färber | 0d34282 | 2012-12-17 07:12:13 +0100 | [diff] [blame] | 1243 | GDB_SIGNAL_TRAP, cpu_index(cpu), type, |
Andreas Färber | ff4700b | 2013-08-26 18:23:18 +0200 | [diff] [blame] | 1244 | (target_ulong)cpu->watchpoint_hit->vaddr); |
| 1245 | cpu->watchpoint_hit = NULL; |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1246 | goto send_packet; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1247 | } |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1248 | tb_flush(env); |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 1249 | ret = GDB_SIGNAL_TRAP; |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1250 | break; |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1251 | case RUN_STATE_PAUSED: |
aliguori | 9781e04 | 2009-01-22 17:15:29 +0000 | [diff] [blame] | 1252 | ret = GDB_SIGNAL_INT; |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1253 | break; |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1254 | case RUN_STATE_SHUTDOWN: |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1255 | ret = GDB_SIGNAL_QUIT; |
| 1256 | break; |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1257 | case RUN_STATE_IO_ERROR: |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1258 | ret = GDB_SIGNAL_IO; |
| 1259 | break; |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1260 | case RUN_STATE_WATCHDOG: |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1261 | ret = GDB_SIGNAL_ALRM; |
| 1262 | break; |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1263 | case RUN_STATE_INTERNAL_ERROR: |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1264 | ret = GDB_SIGNAL_ABRT; |
| 1265 | break; |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1266 | case RUN_STATE_SAVE_VM: |
| 1267 | case RUN_STATE_RESTORE_VM: |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1268 | return; |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1269 | case RUN_STATE_FINISH_MIGRATE: |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1270 | ret = GDB_SIGNAL_XCPU; |
| 1271 | break; |
| 1272 | default: |
| 1273 | ret = GDB_SIGNAL_UNKNOWN; |
| 1274 | break; |
bellard | bbeb7b5 | 2006-04-23 18:42:15 +0000 | [diff] [blame] | 1275 | } |
Andreas Färber | 0d34282 | 2012-12-17 07:12:13 +0100 | [diff] [blame] | 1276 | snprintf(buf, sizeof(buf), "T%02xthread:%02x;", ret, cpu_index(cpu)); |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1277 | |
| 1278 | send_packet: |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1279 | put_packet(s, buf); |
Jan Kiszka | 425189a | 2011-03-22 11:02:09 +0100 | [diff] [blame] | 1280 | |
| 1281 | /* disable single step if it was enabled */ |
Andreas Färber | 3825b28 | 2013-06-24 18:41:06 +0200 | [diff] [blame] | 1282 | cpu_single_step(cpu, 0); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1283 | } |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1284 | #endif |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1285 | |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1286 | /* Send a gdb syscall request. |
| 1287 | This accepts limited printf-style format specifiers, specifically: |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 1288 | %x - target_ulong argument printed in hex. |
| 1289 | %lx - 64-bit argument printed in hex. |
| 1290 | %s - string pointer (target_ulong) and length (int) pair. */ |
blueswir1 | 7ccfb2e | 2008-09-14 06:45:34 +0000 | [diff] [blame] | 1291 | void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...) |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1292 | { |
| 1293 | va_list va; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1294 | char *p; |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1295 | char *p_end; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1296 | target_ulong addr; |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 1297 | uint64_t i64; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1298 | GDBState *s; |
| 1299 | |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1300 | s = gdbserver_state; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1301 | if (!s) |
| 1302 | return; |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1303 | s->current_syscall_cb = cb; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1304 | #ifndef CONFIG_USER_ONLY |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1305 | vm_stop(RUN_STATE_DEBUG); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1306 | #endif |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1307 | va_start(va, fmt); |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1308 | p = s->syscall_buf; |
| 1309 | p_end = &s->syscall_buf[sizeof(s->syscall_buf)]; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1310 | *(p++) = 'F'; |
| 1311 | while (*fmt) { |
| 1312 | if (*fmt == '%') { |
| 1313 | fmt++; |
| 1314 | switch (*fmt++) { |
| 1315 | case 'x': |
| 1316 | addr = va_arg(va, target_ulong); |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1317 | p += snprintf(p, p_end - p, TARGET_FMT_lx, addr); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1318 | break; |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 1319 | case 'l': |
| 1320 | if (*(fmt++) != 'x') |
| 1321 | goto bad_format; |
| 1322 | i64 = va_arg(va, uint64_t); |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1323 | p += snprintf(p, p_end - p, "%" PRIx64, i64); |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 1324 | break; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1325 | case 's': |
| 1326 | addr = va_arg(va, target_ulong); |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1327 | p += snprintf(p, p_end - p, TARGET_FMT_lx "/%x", |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1328 | addr, va_arg(va, int)); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1329 | break; |
| 1330 | default: |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 1331 | bad_format: |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1332 | fprintf(stderr, "gdbstub: Bad syscall format string '%s'\n", |
| 1333 | fmt - 1); |
| 1334 | break; |
| 1335 | } |
| 1336 | } else { |
| 1337 | *(p++) = *(fmt++); |
| 1338 | } |
| 1339 | } |
pbrook | 8a93e02 | 2007-08-06 13:19:15 +0000 | [diff] [blame] | 1340 | *p = 0; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1341 | va_end(va); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1342 | #ifdef CONFIG_USER_ONLY |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1343 | put_packet(s, s->syscall_buf); |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1344 | gdb_handlesig(s->c_cpu, 0); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1345 | #else |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1346 | /* In this case wait to send the syscall packet until notification that |
| 1347 | the CPU has stopped. This must be done because if the packet is sent |
| 1348 | now the reply from the syscall request could be received while the CPU |
| 1349 | is still in the running state, which can cause packets to be dropped |
| 1350 | and state transition 'T' packets to be sent while the syscall is still |
| 1351 | being processed. */ |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1352 | cpu_exit(s->c_cpu); |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1353 | #endif |
| 1354 | } |
| 1355 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1356 | static void gdb_read_byte(GDBState *s, int ch) |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1357 | { |
| 1358 | int i, csum; |
ths | 60fe76f | 2007-12-16 03:02:09 +0000 | [diff] [blame] | 1359 | uint8_t reply; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1360 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1361 | #ifndef CONFIG_USER_ONLY |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1362 | if (s->last_packet_len) { |
| 1363 | /* Waiting for a response to the last packet. If we see the start |
| 1364 | of a new command then abandon the previous response. */ |
| 1365 | if (ch == '-') { |
| 1366 | #ifdef DEBUG_GDB |
| 1367 | printf("Got NACK, retransmitting\n"); |
| 1368 | #endif |
ths | ffe8ab8 | 2007-12-16 03:16:05 +0000 | [diff] [blame] | 1369 | put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len); |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1370 | } |
| 1371 | #ifdef DEBUG_GDB |
| 1372 | else if (ch == '+') |
| 1373 | printf("Got ACK\n"); |
| 1374 | else |
| 1375 | printf("Got '%c' when expecting ACK/NACK\n", ch); |
| 1376 | #endif |
| 1377 | if (ch == '+' || ch == '$') |
| 1378 | s->last_packet_len = 0; |
| 1379 | if (ch != '$') |
| 1380 | return; |
| 1381 | } |
Luiz Capitulino | 1354869 | 2011-07-29 15:36:43 -0300 | [diff] [blame] | 1382 | if (runstate_is_running()) { |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1383 | /* when the CPU is running, we cannot do anything except stop |
| 1384 | it when receiving a char */ |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1385 | vm_stop(RUN_STATE_PAUSED); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1386 | } else |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1387 | #endif |
bellard | 4162503 | 2005-04-24 10:07:11 +0000 | [diff] [blame] | 1388 | { |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1389 | switch(s->state) { |
| 1390 | case RS_IDLE: |
| 1391 | if (ch == '$') { |
| 1392 | s->line_buf_index = 0; |
| 1393 | s->state = RS_GETLINE; |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1394 | } |
| 1395 | break; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1396 | case RS_GETLINE: |
| 1397 | if (ch == '#') { |
| 1398 | s->state = RS_CHKSUM1; |
| 1399 | } else if (s->line_buf_index >= sizeof(s->line_buf) - 1) { |
| 1400 | s->state = RS_IDLE; |
| 1401 | } else { |
| 1402 | s->line_buf[s->line_buf_index++] = ch; |
| 1403 | } |
| 1404 | break; |
| 1405 | case RS_CHKSUM1: |
| 1406 | s->line_buf[s->line_buf_index] = '\0'; |
| 1407 | s->line_csum = fromhex(ch) << 4; |
| 1408 | s->state = RS_CHKSUM2; |
| 1409 | break; |
| 1410 | case RS_CHKSUM2: |
| 1411 | s->line_csum |= fromhex(ch); |
| 1412 | csum = 0; |
| 1413 | for(i = 0; i < s->line_buf_index; i++) { |
| 1414 | csum += s->line_buf[i]; |
| 1415 | } |
| 1416 | if (s->line_csum != (csum & 0xff)) { |
ths | 60fe76f | 2007-12-16 03:02:09 +0000 | [diff] [blame] | 1417 | reply = '-'; |
| 1418 | put_buffer(s, &reply, 1); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1419 | s->state = RS_IDLE; |
| 1420 | } else { |
ths | 60fe76f | 2007-12-16 03:02:09 +0000 | [diff] [blame] | 1421 | reply = '+'; |
| 1422 | put_buffer(s, &reply, 1); |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1423 | s->state = gdb_handle_packet(s, s->line_buf); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1424 | } |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 1425 | break; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1426 | default: |
| 1427 | abort(); |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 1428 | } |
| 1429 | } |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1430 | } |
| 1431 | |
Paul Brook | 0e1c9c5 | 2010-06-16 13:03:51 +0100 | [diff] [blame] | 1432 | /* Tell the remote gdb that the process has exited. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1433 | void gdb_exit(CPUArchState *env, int code) |
Paul Brook | 0e1c9c5 | 2010-06-16 13:03:51 +0100 | [diff] [blame] | 1434 | { |
| 1435 | GDBState *s; |
| 1436 | char buf[4]; |
| 1437 | |
| 1438 | s = gdbserver_state; |
| 1439 | if (!s) { |
| 1440 | return; |
| 1441 | } |
| 1442 | #ifdef CONFIG_USER_ONLY |
| 1443 | if (gdbserver_fd < 0 || s->fd < 0) { |
| 1444 | return; |
| 1445 | } |
| 1446 | #endif |
| 1447 | |
| 1448 | snprintf(buf, sizeof(buf), "W%02x", (uint8_t)code); |
| 1449 | put_packet(s, buf); |
Fabien Chouteau | e2af15b | 2011-01-13 12:46:57 +0100 | [diff] [blame] | 1450 | |
| 1451 | #ifndef CONFIG_USER_ONLY |
| 1452 | if (s->chr) { |
Anthony Liguori | 70f24fb | 2011-08-15 11:17:38 -0500 | [diff] [blame] | 1453 | qemu_chr_delete(s->chr); |
Fabien Chouteau | e2af15b | 2011-01-13 12:46:57 +0100 | [diff] [blame] | 1454 | } |
| 1455 | #endif |
Paul Brook | 0e1c9c5 | 2010-06-16 13:03:51 +0100 | [diff] [blame] | 1456 | } |
| 1457 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1458 | #ifdef CONFIG_USER_ONLY |
| 1459 | int |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 1460 | gdb_queuesig (void) |
| 1461 | { |
| 1462 | GDBState *s; |
| 1463 | |
| 1464 | s = gdbserver_state; |
| 1465 | |
| 1466 | if (gdbserver_fd < 0 || s->fd < 0) |
| 1467 | return 0; |
| 1468 | else |
| 1469 | return 1; |
| 1470 | } |
| 1471 | |
| 1472 | int |
Andreas Färber | db6b81d | 2013-06-27 19:49:31 +0200 | [diff] [blame] | 1473 | gdb_handlesig(CPUState *cpu, int sig) |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1474 | { |
Andreas Färber | db6b81d | 2013-06-27 19:49:31 +0200 | [diff] [blame] | 1475 | CPUArchState *env = cpu->env_ptr; |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1476 | GDBState *s; |
| 1477 | char buf[256]; |
| 1478 | int n; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1479 | |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1480 | s = gdbserver_state; |
| 1481 | if (gdbserver_fd < 0 || s->fd < 0) { |
| 1482 | return sig; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1483 | } |
| 1484 | |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1485 | /* disable single step if it was enabled */ |
Andreas Färber | 3825b28 | 2013-06-24 18:41:06 +0200 | [diff] [blame] | 1486 | cpu_single_step(cpu, 0); |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1487 | tb_flush(env); |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1488 | |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1489 | if (sig != 0) { |
| 1490 | snprintf(buf, sizeof(buf), "S%02x", target_signal_to_gdb(sig)); |
| 1491 | put_packet(s, buf); |
| 1492 | } |
| 1493 | /* put_packet() might have detected that the peer terminated the |
| 1494 | connection. */ |
| 1495 | if (s->fd < 0) { |
| 1496 | return sig; |
| 1497 | } |
| 1498 | |
| 1499 | sig = 0; |
| 1500 | s->state = RS_IDLE; |
| 1501 | s->running_state = 0; |
| 1502 | while (s->running_state == 0) { |
| 1503 | n = read(s->fd, buf, 256); |
| 1504 | if (n > 0) { |
| 1505 | int i; |
| 1506 | |
| 1507 | for (i = 0; i < n; i++) { |
| 1508 | gdb_read_byte(s, buf[i]); |
| 1509 | } |
| 1510 | } else if (n == 0 || errno != EAGAIN) { |
| 1511 | /* XXX: Connection closed. Should probably wait for another |
| 1512 | connection before continuing. */ |
| 1513 | return sig; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1514 | } |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1515 | } |
| 1516 | sig = s->signal; |
| 1517 | s->signal = 0; |
| 1518 | return sig; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1519 | } |
bellard | e900967 | 2005-04-26 20:42:36 +0000 | [diff] [blame] | 1520 | |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 1521 | /* Tell the remote gdb that the process has exited due to SIG. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1522 | void gdb_signalled(CPUArchState *env, int sig) |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 1523 | { |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1524 | GDBState *s; |
| 1525 | char buf[4]; |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 1526 | |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1527 | s = gdbserver_state; |
| 1528 | if (gdbserver_fd < 0 || s->fd < 0) { |
| 1529 | return; |
| 1530 | } |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 1531 | |
Andreas Färber | 5ca666c | 2013-06-24 19:20:57 +0200 | [diff] [blame] | 1532 | snprintf(buf, sizeof(buf), "X%02x", target_signal_to_gdb(sig)); |
| 1533 | put_packet(s, buf); |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 1534 | } |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1535 | |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1536 | static void gdb_accept(void) |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1537 | { |
| 1538 | GDBState *s; |
| 1539 | struct sockaddr_in sockaddr; |
| 1540 | socklen_t len; |
MORITA Kazutaka | bf1c852 | 2013-02-22 12:39:50 +0900 | [diff] [blame] | 1541 | int fd; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1542 | |
| 1543 | for(;;) { |
| 1544 | len = sizeof(sockaddr); |
| 1545 | fd = accept(gdbserver_fd, (struct sockaddr *)&sockaddr, &len); |
| 1546 | if (fd < 0 && errno != EINTR) { |
| 1547 | perror("accept"); |
| 1548 | return; |
| 1549 | } else if (fd >= 0) { |
Kevin Wolf | 40ff6d7 | 2009-12-02 12:24:42 +0100 | [diff] [blame] | 1550 | #ifndef _WIN32 |
| 1551 | fcntl(fd, F_SETFD, FD_CLOEXEC); |
| 1552 | #endif |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1553 | break; |
| 1554 | } |
| 1555 | } |
| 1556 | |
| 1557 | /* set short latency */ |
MORITA Kazutaka | bf1c852 | 2013-02-22 12:39:50 +0900 | [diff] [blame] | 1558 | socket_set_nodelay(fd); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1559 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1560 | s = g_malloc0(sizeof(GDBState)); |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1561 | s->c_cpu = first_cpu; |
| 1562 | s->g_cpu = first_cpu; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1563 | s->fd = fd; |
Andreas Färber | 5b50e79 | 2013-06-29 04:18:45 +0200 | [diff] [blame] | 1564 | gdb_has_xml = false; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1565 | |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1566 | gdbserver_state = s; |
pbrook | a2d1eba | 2007-01-28 03:10:55 +0000 | [diff] [blame] | 1567 | |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1568 | fcntl(fd, F_SETFL, O_NONBLOCK); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1569 | } |
| 1570 | |
| 1571 | static int gdbserver_open(int port) |
| 1572 | { |
| 1573 | struct sockaddr_in sockaddr; |
Sebastian Ottlik | 6669ca1 | 2013-10-02 12:23:13 +0200 | [diff] [blame] | 1574 | int fd, ret; |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1575 | |
| 1576 | fd = socket(PF_INET, SOCK_STREAM, 0); |
| 1577 | if (fd < 0) { |
| 1578 | perror("socket"); |
| 1579 | return -1; |
| 1580 | } |
Kevin Wolf | 40ff6d7 | 2009-12-02 12:24:42 +0100 | [diff] [blame] | 1581 | #ifndef _WIN32 |
| 1582 | fcntl(fd, F_SETFD, FD_CLOEXEC); |
| 1583 | #endif |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1584 | |
Sebastian Ottlik | 6669ca1 | 2013-10-02 12:23:13 +0200 | [diff] [blame] | 1585 | socket_set_fast_reuse(fd); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1586 | |
| 1587 | sockaddr.sin_family = AF_INET; |
| 1588 | sockaddr.sin_port = htons(port); |
| 1589 | sockaddr.sin_addr.s_addr = 0; |
| 1590 | ret = bind(fd, (struct sockaddr *)&sockaddr, sizeof(sockaddr)); |
| 1591 | if (ret < 0) { |
| 1592 | perror("bind"); |
Peter Maydell | bb16172 | 2011-12-24 23:37:24 +0000 | [diff] [blame] | 1593 | close(fd); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1594 | return -1; |
| 1595 | } |
| 1596 | ret = listen(fd, 0); |
| 1597 | if (ret < 0) { |
| 1598 | perror("listen"); |
Peter Maydell | bb16172 | 2011-12-24 23:37:24 +0000 | [diff] [blame] | 1599 | close(fd); |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1600 | return -1; |
| 1601 | } |
bellard | 858693c | 2004-03-31 18:52:07 +0000 | [diff] [blame] | 1602 | return fd; |
| 1603 | } |
| 1604 | |
| 1605 | int gdbserver_start(int port) |
| 1606 | { |
| 1607 | gdbserver_fd = gdbserver_open(port); |
| 1608 | if (gdbserver_fd < 0) |
| 1609 | return -1; |
| 1610 | /* accept connections */ |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1611 | gdb_accept(); |
bellard | b4608c0 | 2003-06-27 17:34:32 +0000 | [diff] [blame] | 1612 | return 0; |
| 1613 | } |
aurel32 | 2b1319c | 2008-12-18 22:44:04 +0000 | [diff] [blame] | 1614 | |
| 1615 | /* Disable gdb stub for child processes. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1616 | void gdbserver_fork(CPUArchState *env) |
aurel32 | 2b1319c | 2008-12-18 22:44:04 +0000 | [diff] [blame] | 1617 | { |
Andreas Färber | 75a3403 | 2013-09-02 16:57:02 +0200 | [diff] [blame] | 1618 | CPUState *cpu = ENV_GET_CPU(env); |
aurel32 | 2b1319c | 2008-12-18 22:44:04 +0000 | [diff] [blame] | 1619 | GDBState *s = gdbserver_state; |
Andreas Färber | 75a3403 | 2013-09-02 16:57:02 +0200 | [diff] [blame] | 1620 | |
| 1621 | if (gdbserver_fd < 0 || s->fd < 0) { |
| 1622 | return; |
| 1623 | } |
aurel32 | 2b1319c | 2008-12-18 22:44:04 +0000 | [diff] [blame] | 1624 | close(s->fd); |
| 1625 | s->fd = -1; |
Andreas Färber | b3310ab | 2013-09-02 17:26:20 +0200 | [diff] [blame] | 1626 | cpu_breakpoint_remove_all(cpu, BP_GDB); |
Andreas Färber | 75a3403 | 2013-09-02 16:57:02 +0200 | [diff] [blame] | 1627 | cpu_watchpoint_remove_all(cpu, BP_GDB); |
aurel32 | 2b1319c | 2008-12-18 22:44:04 +0000 | [diff] [blame] | 1628 | } |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1629 | #else |
ths | aa1f17c | 2007-07-11 22:48:58 +0000 | [diff] [blame] | 1630 | static int gdb_chr_can_receive(void *opaque) |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1631 | { |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1632 | /* We can handle an arbitrarily large amount of data. |
| 1633 | Pick the maximum packet size, which is as good as anything. */ |
| 1634 | return MAX_PACKET_LENGTH; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1635 | } |
| 1636 | |
ths | aa1f17c | 2007-07-11 22:48:58 +0000 | [diff] [blame] | 1637 | static void gdb_chr_receive(void *opaque, const uint8_t *buf, int size) |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1638 | { |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1639 | int i; |
| 1640 | |
| 1641 | for (i = 0; i < size; i++) { |
aliguori | 880a757 | 2008-11-18 20:30:24 +0000 | [diff] [blame] | 1642 | gdb_read_byte(gdbserver_state, buf[i]); |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1643 | } |
| 1644 | } |
| 1645 | |
| 1646 | static void gdb_chr_event(void *opaque, int event) |
| 1647 | { |
| 1648 | switch (event) { |
Amit Shah | b6b8df5 | 2009-10-07 18:31:16 +0530 | [diff] [blame] | 1649 | case CHR_EVENT_OPENED: |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1650 | vm_stop(RUN_STATE_PAUSED); |
Andreas Färber | 5b50e79 | 2013-06-29 04:18:45 +0200 | [diff] [blame] | 1651 | gdb_has_xml = false; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1652 | break; |
| 1653 | default: |
| 1654 | break; |
| 1655 | } |
| 1656 | } |
| 1657 | |
aliguori | 8a34a0f | 2009-03-05 23:01:55 +0000 | [diff] [blame] | 1658 | static void gdb_monitor_output(GDBState *s, const char *msg, int len) |
| 1659 | { |
| 1660 | char buf[MAX_PACKET_LENGTH]; |
| 1661 | |
| 1662 | buf[0] = 'O'; |
| 1663 | if (len > (MAX_PACKET_LENGTH/2) - 1) |
| 1664 | len = (MAX_PACKET_LENGTH/2) - 1; |
| 1665 | memtohex(buf + 1, (uint8_t *)msg, len); |
| 1666 | put_packet(s, buf); |
| 1667 | } |
| 1668 | |
| 1669 | static int gdb_monitor_write(CharDriverState *chr, const uint8_t *buf, int len) |
| 1670 | { |
| 1671 | const char *p = (const char *)buf; |
| 1672 | int max_sz; |
| 1673 | |
| 1674 | max_sz = (sizeof(gdbserver_state->last_packet) - 2) / 2; |
| 1675 | for (;;) { |
| 1676 | if (len <= max_sz) { |
| 1677 | gdb_monitor_output(gdbserver_state, p, len); |
| 1678 | break; |
| 1679 | } |
| 1680 | gdb_monitor_output(gdbserver_state, p, max_sz); |
| 1681 | p += max_sz; |
| 1682 | len -= max_sz; |
| 1683 | } |
| 1684 | return len; |
| 1685 | } |
| 1686 | |
aliguori | 59030a8 | 2009-04-05 18:43:41 +0000 | [diff] [blame] | 1687 | #ifndef _WIN32 |
| 1688 | static void gdb_sigterm_handler(int signal) |
| 1689 | { |
Luiz Capitulino | 1354869 | 2011-07-29 15:36:43 -0300 | [diff] [blame] | 1690 | if (runstate_is_running()) { |
Luiz Capitulino | 0461d5a | 2011-09-30 14:45:27 -0300 | [diff] [blame] | 1691 | vm_stop(RUN_STATE_PAUSED); |
Jan Kiszka | e07bbac | 2011-02-09 16:29:40 +0100 | [diff] [blame] | 1692 | } |
aliguori | 59030a8 | 2009-04-05 18:43:41 +0000 | [diff] [blame] | 1693 | } |
| 1694 | #endif |
| 1695 | |
| 1696 | int gdbserver_start(const char *device) |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1697 | { |
| 1698 | GDBState *s; |
aliguori | 59030a8 | 2009-04-05 18:43:41 +0000 | [diff] [blame] | 1699 | char gdbstub_device_name[128]; |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1700 | CharDriverState *chr = NULL; |
| 1701 | CharDriverState *mon_chr; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1702 | |
aliguori | 59030a8 | 2009-04-05 18:43:41 +0000 | [diff] [blame] | 1703 | if (!device) |
| 1704 | return -1; |
| 1705 | if (strcmp(device, "none") != 0) { |
| 1706 | if (strstart(device, "tcp:", NULL)) { |
| 1707 | /* enforce required TCP attributes */ |
| 1708 | snprintf(gdbstub_device_name, sizeof(gdbstub_device_name), |
| 1709 | "%s,nowait,nodelay,server", device); |
| 1710 | device = gdbstub_device_name; |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1711 | } |
aliguori | 59030a8 | 2009-04-05 18:43:41 +0000 | [diff] [blame] | 1712 | #ifndef _WIN32 |
| 1713 | else if (strcmp(device, "stdio") == 0) { |
| 1714 | struct sigaction act; |
pbrook | cfc3475 | 2007-02-22 01:48:01 +0000 | [diff] [blame] | 1715 | |
aliguori | 59030a8 | 2009-04-05 18:43:41 +0000 | [diff] [blame] | 1716 | memset(&act, 0, sizeof(act)); |
| 1717 | act.sa_handler = gdb_sigterm_handler; |
| 1718 | sigaction(SIGINT, &act, NULL); |
| 1719 | } |
| 1720 | #endif |
Anthony Liguori | 27143a4 | 2011-08-15 11:17:36 -0500 | [diff] [blame] | 1721 | chr = qemu_chr_new("gdb", device, NULL); |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1722 | if (!chr) |
| 1723 | return -1; |
| 1724 | |
Hans de Goede | 456d606 | 2013-03-27 20:29:40 +0100 | [diff] [blame] | 1725 | qemu_chr_fe_claim_no_fail(chr); |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1726 | qemu_chr_add_handlers(chr, gdb_chr_can_receive, gdb_chr_receive, |
| 1727 | gdb_chr_event, NULL); |
pbrook | cfc3475 | 2007-02-22 01:48:01 +0000 | [diff] [blame] | 1728 | } |
| 1729 | |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1730 | s = gdbserver_state; |
| 1731 | if (!s) { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1732 | s = g_malloc0(sizeof(GDBState)); |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1733 | gdbserver_state = s; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1734 | |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1735 | qemu_add_vm_change_state_handler(gdb_vm_state_change, NULL); |
| 1736 | |
| 1737 | /* Initialize a monitor terminal for gdb */ |
Pavel Dovgalyuk | 462efe9 | 2014-09-10 18:34:14 +0400 | [diff] [blame] | 1738 | mon_chr = qemu_chr_alloc(); |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1739 | mon_chr->chr_write = gdb_monitor_write; |
| 1740 | monitor_init(mon_chr, 0); |
| 1741 | } else { |
| 1742 | if (s->chr) |
Anthony Liguori | 70f24fb | 2011-08-15 11:17:38 -0500 | [diff] [blame] | 1743 | qemu_chr_delete(s->chr); |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1744 | mon_chr = s->mon_chr; |
| 1745 | memset(s, 0, sizeof(GDBState)); |
| 1746 | } |
Andreas Färber | 2e0f2cf | 2013-06-27 19:19:39 +0200 | [diff] [blame] | 1747 | s->c_cpu = first_cpu; |
| 1748 | s->g_cpu = first_cpu; |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1749 | s->chr = chr; |
aliguori | 36556b2 | 2009-03-28 18:05:53 +0000 | [diff] [blame] | 1750 | s->state = chr ? RS_IDLE : RS_INACTIVE; |
| 1751 | s->mon_chr = mon_chr; |
Meador Inge | cdb432b | 2012-03-15 17:49:45 +0000 | [diff] [blame] | 1752 | s->current_syscall_cb = NULL; |
aliguori | 8a34a0f | 2009-03-05 23:01:55 +0000 | [diff] [blame] | 1753 | |
pbrook | 4046d91 | 2007-01-28 01:53:16 +0000 | [diff] [blame] | 1754 | return 0; |
| 1755 | } |
| 1756 | #endif |