blob: d6ab95006c46d71aa800868a11919875da2a3bd4 [file] [log] [blame]
bellardb4608c02003-06-27 17:34:32 +00001/*
2 * gdb server stub
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard34751872005-07-02 14:31:34 +00004 * Copyright (c) 2003-2005 Fabrice Bellard
bellardb4608c02003-06-27 17:34:32 +00005 *
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 Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
bellardb4608c02003-06-27 17:34:32 +000018 */
Peter Maydelld38ea872016-01-29 17:50:05 +000019#include "qemu/osdep.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010020#include "qapi/error.h"
Ziyue Yang508b4ec2017-01-18 16:02:41 +080021#include "qemu/error-report.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020022#include "qemu/cutils.h"
Paolo Bonzini33c11872016-03-15 16:58:45 +010023#include "cpu.h"
Doug Gale5c9522b2017-12-02 20:30:37 -050024#include "trace-root.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020025#ifdef CONFIG_USER_ONLY
bellard1fddef42005-04-17 19:16:13 +000026#include "qemu.h"
27#else
Paolo Bonzini83c90892012-12-17 18:19:49 +010028#include "monitor/monitor.h"
Marc-André Lureau8228e352017-01-26 17:19:46 +040029#include "chardev/char.h"
Marc-André Lureau4d43a602017-01-26 18:26:44 +040030#include "chardev/char-fe.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010031#include "sysemu/sysemu.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010032#include "exec/gdbstub.h"
bellard1fddef42005-04-17 19:16:13 +000033#endif
bellard67b915a2004-03-31 23:37:16 +000034
pbrook56aebc82008-10-11 17:55:29 +000035#define MAX_PACKET_LENGTH 4096
36
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010037#include "qemu/sockets.h"
Vincent Palatinb3946622017-01-10 11:59:55 +010038#include "sysemu/hw_accel.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010039#include "sysemu/kvm.h"
Leon Alraecfe67ce2015-06-19 14:17:45 +010040#include "exec/semihost.h"
Paolo Bonzini63c91552016-03-15 13:18:37 +010041#include "exec/exec-all.h"
aurel32ca587a82008-12-18 22:44:13 +000042
Jan Kiszkaa3919382015-02-07 09:38:44 +010043#ifdef CONFIG_USER_ONLY
44#define GDB_ATTACHED "0"
45#else
46#define GDB_ATTACHED "1"
47#endif
48
Andreas Färberf3659ee2013-06-27 19:09:09 +020049static inline int target_memory_rw_debug(CPUState *cpu, target_ulong addr,
50 uint8_t *buf, int len, bool is_write)
Fabien Chouteau44520db2011-09-08 12:48:16 +020051{
Andreas Färberf3659ee2013-06-27 19:09:09 +020052 CPUClass *cc = CPU_GET_CLASS(cpu);
53
54 if (cc->memory_rw_debug) {
55 return cc->memory_rw_debug(cpu, addr, buf, len, is_write);
56 }
57 return cpu_memory_rw_debug(cpu, addr, buf, len, is_write);
Fabien Chouteau44520db2011-09-08 12:48:16 +020058}
aurel32ca587a82008-12-18 22:44:13 +000059
Alex Bennéed2a6c852017-07-12 11:52:14 +010060/* Return the GDB index for a given vCPU state.
61 *
62 * For user mode this is simply the thread id. In system mode GDB
63 * numbers CPUs from 1 as 0 is reserved as an "any cpu" index.
64 */
65static inline int cpu_gdb_index(CPUState *cpu)
66{
67#if defined(CONFIG_USER_ONLY)
Alex Bennéebd88c782017-07-12 11:52:15 +010068 TaskState *ts = (TaskState *) cpu->opaque;
69 return ts->ts_tid;
Alex Bennéed2a6c852017-07-12 11:52:14 +010070#else
71 return cpu->cpu_index + 1;
72#endif
73}
74
aurel32ca587a82008-12-18 22:44:13 +000075enum {
76 GDB_SIGNAL_0 = 0,
77 GDB_SIGNAL_INT = 2,
Jan Kiszka425189a2011-03-22 11:02:09 +010078 GDB_SIGNAL_QUIT = 3,
aurel32ca587a82008-12-18 22:44:13 +000079 GDB_SIGNAL_TRAP = 5,
Jan Kiszka425189a2011-03-22 11:02:09 +010080 GDB_SIGNAL_ABRT = 6,
81 GDB_SIGNAL_ALRM = 14,
82 GDB_SIGNAL_IO = 23,
83 GDB_SIGNAL_XCPU = 24,
aurel32ca587a82008-12-18 22:44:13 +000084 GDB_SIGNAL_UNKNOWN = 143
85};
86
87#ifdef CONFIG_USER_ONLY
88
89/* Map target signal numbers to GDB protocol signal numbers and vice
90 * versa. For user emulation's currently supported systems, we can
91 * assume most signals are defined.
92 */
93
94static int gdb_signal_table[] = {
95 0,
96 TARGET_SIGHUP,
97 TARGET_SIGINT,
98 TARGET_SIGQUIT,
99 TARGET_SIGILL,
100 TARGET_SIGTRAP,
101 TARGET_SIGABRT,
102 -1, /* SIGEMT */
103 TARGET_SIGFPE,
104 TARGET_SIGKILL,
105 TARGET_SIGBUS,
106 TARGET_SIGSEGV,
107 TARGET_SIGSYS,
108 TARGET_SIGPIPE,
109 TARGET_SIGALRM,
110 TARGET_SIGTERM,
111 TARGET_SIGURG,
112 TARGET_SIGSTOP,
113 TARGET_SIGTSTP,
114 TARGET_SIGCONT,
115 TARGET_SIGCHLD,
116 TARGET_SIGTTIN,
117 TARGET_SIGTTOU,
118 TARGET_SIGIO,
119 TARGET_SIGXCPU,
120 TARGET_SIGXFSZ,
121 TARGET_SIGVTALRM,
122 TARGET_SIGPROF,
123 TARGET_SIGWINCH,
124 -1, /* SIGLOST */
125 TARGET_SIGUSR1,
126 TARGET_SIGUSR2,
blueswir1c72d5bf2009-01-15 17:27:45 +0000127#ifdef TARGET_SIGPWR
aurel32ca587a82008-12-18 22:44:13 +0000128 TARGET_SIGPWR,
blueswir1c72d5bf2009-01-15 17:27:45 +0000129#else
130 -1,
131#endif
aurel32ca587a82008-12-18 22:44:13 +0000132 -1, /* SIGPOLL */
133 -1,
134 -1,
135 -1,
136 -1,
137 -1,
138 -1,
139 -1,
140 -1,
141 -1,
142 -1,
143 -1,
blueswir1c72d5bf2009-01-15 17:27:45 +0000144#ifdef __SIGRTMIN
aurel32ca587a82008-12-18 22:44:13 +0000145 __SIGRTMIN + 1,
146 __SIGRTMIN + 2,
147 __SIGRTMIN + 3,
148 __SIGRTMIN + 4,
149 __SIGRTMIN + 5,
150 __SIGRTMIN + 6,
151 __SIGRTMIN + 7,
152 __SIGRTMIN + 8,
153 __SIGRTMIN + 9,
154 __SIGRTMIN + 10,
155 __SIGRTMIN + 11,
156 __SIGRTMIN + 12,
157 __SIGRTMIN + 13,
158 __SIGRTMIN + 14,
159 __SIGRTMIN + 15,
160 __SIGRTMIN + 16,
161 __SIGRTMIN + 17,
162 __SIGRTMIN + 18,
163 __SIGRTMIN + 19,
164 __SIGRTMIN + 20,
165 __SIGRTMIN + 21,
166 __SIGRTMIN + 22,
167 __SIGRTMIN + 23,
168 __SIGRTMIN + 24,
169 __SIGRTMIN + 25,
170 __SIGRTMIN + 26,
171 __SIGRTMIN + 27,
172 __SIGRTMIN + 28,
173 __SIGRTMIN + 29,
174 __SIGRTMIN + 30,
175 __SIGRTMIN + 31,
176 -1, /* SIGCANCEL */
177 __SIGRTMIN,
178 __SIGRTMIN + 32,
179 __SIGRTMIN + 33,
180 __SIGRTMIN + 34,
181 __SIGRTMIN + 35,
182 __SIGRTMIN + 36,
183 __SIGRTMIN + 37,
184 __SIGRTMIN + 38,
185 __SIGRTMIN + 39,
186 __SIGRTMIN + 40,
187 __SIGRTMIN + 41,
188 __SIGRTMIN + 42,
189 __SIGRTMIN + 43,
190 __SIGRTMIN + 44,
191 __SIGRTMIN + 45,
192 __SIGRTMIN + 46,
193 __SIGRTMIN + 47,
194 __SIGRTMIN + 48,
195 __SIGRTMIN + 49,
196 __SIGRTMIN + 50,
197 __SIGRTMIN + 51,
198 __SIGRTMIN + 52,
199 __SIGRTMIN + 53,
200 __SIGRTMIN + 54,
201 __SIGRTMIN + 55,
202 __SIGRTMIN + 56,
203 __SIGRTMIN + 57,
204 __SIGRTMIN + 58,
205 __SIGRTMIN + 59,
206 __SIGRTMIN + 60,
207 __SIGRTMIN + 61,
208 __SIGRTMIN + 62,
209 __SIGRTMIN + 63,
210 __SIGRTMIN + 64,
211 __SIGRTMIN + 65,
212 __SIGRTMIN + 66,
213 __SIGRTMIN + 67,
214 __SIGRTMIN + 68,
215 __SIGRTMIN + 69,
216 __SIGRTMIN + 70,
217 __SIGRTMIN + 71,
218 __SIGRTMIN + 72,
219 __SIGRTMIN + 73,
220 __SIGRTMIN + 74,
221 __SIGRTMIN + 75,
222 __SIGRTMIN + 76,
223 __SIGRTMIN + 77,
224 __SIGRTMIN + 78,
225 __SIGRTMIN + 79,
226 __SIGRTMIN + 80,
227 __SIGRTMIN + 81,
228 __SIGRTMIN + 82,
229 __SIGRTMIN + 83,
230 __SIGRTMIN + 84,
231 __SIGRTMIN + 85,
232 __SIGRTMIN + 86,
233 __SIGRTMIN + 87,
234 __SIGRTMIN + 88,
235 __SIGRTMIN + 89,
236 __SIGRTMIN + 90,
237 __SIGRTMIN + 91,
238 __SIGRTMIN + 92,
239 __SIGRTMIN + 93,
240 __SIGRTMIN + 94,
241 __SIGRTMIN + 95,
242 -1, /* SIGINFO */
243 -1, /* UNKNOWN */
244 -1, /* DEFAULT */
245 -1,
246 -1,
247 -1,
248 -1,
249 -1,
250 -1
blueswir1c72d5bf2009-01-15 17:27:45 +0000251#endif
aurel32ca587a82008-12-18 22:44:13 +0000252};
bellard8f447cc2006-06-14 15:21:14 +0000253#else
aurel32ca587a82008-12-18 22:44:13 +0000254/* In system mode we only need SIGINT and SIGTRAP; other signals
255 are not yet supported. */
256
257enum {
258 TARGET_SIGINT = 2,
259 TARGET_SIGTRAP = 5
260};
261
262static int gdb_signal_table[] = {
263 -1,
264 -1,
265 TARGET_SIGINT,
266 -1,
267 -1,
268 TARGET_SIGTRAP
269};
bellard8f447cc2006-06-14 15:21:14 +0000270#endif
bellardb4608c02003-06-27 17:34:32 +0000271
aurel32ca587a82008-12-18 22:44:13 +0000272#ifdef CONFIG_USER_ONLY
273static int target_signal_to_gdb (int sig)
274{
275 int i;
276 for (i = 0; i < ARRAY_SIZE (gdb_signal_table); i++)
277 if (gdb_signal_table[i] == sig)
278 return i;
279 return GDB_SIGNAL_UNKNOWN;
280}
281#endif
282
283static int gdb_signal_to_target (int sig)
284{
285 if (sig < ARRAY_SIZE (gdb_signal_table))
286 return gdb_signal_table[sig];
287 else
288 return -1;
289}
290
pbrook56aebc82008-10-11 17:55:29 +0000291typedef struct GDBRegisterState {
292 int base_reg;
293 int num_regs;
294 gdb_reg_cb get_reg;
295 gdb_reg_cb set_reg;
296 const char *xml;
297 struct GDBRegisterState *next;
298} GDBRegisterState;
299
bellard858693c2004-03-31 18:52:07 +0000300enum RSState {
aliguori36556b22009-03-28 18:05:53 +0000301 RS_INACTIVE,
bellard858693c2004-03-31 18:52:07 +0000302 RS_IDLE,
303 RS_GETLINE,
Doug Gale4bf43122017-05-01 12:22:10 -0400304 RS_GETLINE_ESC,
305 RS_GETLINE_RLE,
bellard858693c2004-03-31 18:52:07 +0000306 RS_CHKSUM1,
307 RS_CHKSUM2,
308};
bellard858693c2004-03-31 18:52:07 +0000309typedef struct GDBState {
Andreas Färber2e0f2cf2013-06-27 19:19:39 +0200310 CPUState *c_cpu; /* current CPU for step/continue ops */
311 CPUState *g_cpu; /* current CPU for other ops */
Andreas Färber52f34622013-06-27 13:44:40 +0200312 CPUState *query_cpu; /* for q{f|s}ThreadInfo */
bellard41625032005-04-24 10:07:11 +0000313 enum RSState state; /* parsing state */
pbrook56aebc82008-10-11 17:55:29 +0000314 char line_buf[MAX_PACKET_LENGTH];
bellard858693c2004-03-31 18:52:07 +0000315 int line_buf_index;
Doug Gale4bf43122017-05-01 12:22:10 -0400316 int line_sum; /* running checksum */
317 int line_csum; /* checksum at the end of the packet */
pbrook56aebc82008-10-11 17:55:29 +0000318 uint8_t last_packet[MAX_PACKET_LENGTH + 4];
pbrook4046d912007-01-28 01:53:16 +0000319 int last_packet_len;
edgar_igl1f487ee2008-05-17 22:20:53 +0000320 int signal;
bellard41625032005-04-24 10:07:11 +0000321#ifdef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +0000322 int fd;
bellard41625032005-04-24 10:07:11 +0000323 int running_state;
pbrook4046d912007-01-28 01:53:16 +0000324#else
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300325 CharBackend chr;
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +0300326 Chardev *mon_chr;
bellard41625032005-04-24 10:07:11 +0000327#endif
Meador Ingecdb432b2012-03-15 17:49:45 +0000328 char syscall_buf[256];
329 gdb_syscall_complete_cb current_syscall_cb;
bellard858693c2004-03-31 18:52:07 +0000330} GDBState;
bellardb4608c02003-06-27 17:34:32 +0000331
edgar_igl60897d32008-05-09 08:25:14 +0000332/* By default use no IRQs and no timers while single stepping so as to
333 * make single stepping like an ICE HW step.
334 */
335static int sstep_flags = SSTEP_ENABLE|SSTEP_NOIRQ|SSTEP_NOTIMER;
336
aliguori880a7572008-11-18 20:30:24 +0000337static GDBState *gdbserver_state;
338
Andreas Färber5b50e792013-06-29 04:18:45 +0200339bool gdb_has_xml;
pbrook56aebc82008-10-11 17:55:29 +0000340
bellard1fddef42005-04-17 19:16:13 +0000341#ifdef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +0000342/* XXX: This is not thread safe. Do we care? */
343static int gdbserver_fd = -1;
344
bellard858693c2004-03-31 18:52:07 +0000345static int get_char(GDBState *s)
bellardb4608c02003-06-27 17:34:32 +0000346{
347 uint8_t ch;
348 int ret;
349
350 for(;;) {
Blue Swirl00aa0042011-07-23 20:04:29 +0000351 ret = qemu_recv(s->fd, &ch, 1, 0);
bellardb4608c02003-06-27 17:34:32 +0000352 if (ret < 0) {
edgar_igl1f487ee2008-05-17 22:20:53 +0000353 if (errno == ECONNRESET)
354 s->fd = -1;
Peter Wu5819e3e2016-06-05 16:35:48 +0200355 if (errno != EINTR)
bellardb4608c02003-06-27 17:34:32 +0000356 return -1;
357 } else if (ret == 0) {
edgar_igl1f487ee2008-05-17 22:20:53 +0000358 close(s->fd);
359 s->fd = -1;
bellardb4608c02003-06-27 17:34:32 +0000360 return -1;
361 } else {
362 break;
363 }
364 }
365 return ch;
366}
pbrook4046d912007-01-28 01:53:16 +0000367#endif
bellardb4608c02003-06-27 17:34:32 +0000368
blueswir1654efcf2009-04-18 07:29:59 +0000369static enum {
pbrooka2d1eba2007-01-28 03:10:55 +0000370 GDB_SYS_UNKNOWN,
371 GDB_SYS_ENABLED,
372 GDB_SYS_DISABLED,
373} gdb_syscall_mode;
374
Liviu Ionescua38bb072014-12-11 12:07:48 +0000375/* Decide if either remote gdb syscalls or native file IO should be used. */
pbrooka2d1eba2007-01-28 03:10:55 +0000376int use_gdb_syscalls(void)
377{
Leon Alraecfe67ce2015-06-19 14:17:45 +0100378 SemihostingTarget target = semihosting_get_target();
379 if (target == SEMIHOSTING_TARGET_NATIVE) {
Liviu Ionescua38bb072014-12-11 12:07:48 +0000380 /* -semihosting-config target=native */
381 return false;
Leon Alraecfe67ce2015-06-19 14:17:45 +0100382 } else if (target == SEMIHOSTING_TARGET_GDB) {
Liviu Ionescua38bb072014-12-11 12:07:48 +0000383 /* -semihosting-config target=gdb */
384 return true;
385 }
386
387 /* -semihosting-config target=auto */
388 /* On the first call check if gdb is connected and remember. */
pbrooka2d1eba2007-01-28 03:10:55 +0000389 if (gdb_syscall_mode == GDB_SYS_UNKNOWN) {
aliguori880a7572008-11-18 20:30:24 +0000390 gdb_syscall_mode = (gdbserver_state ? GDB_SYS_ENABLED
391 : GDB_SYS_DISABLED);
pbrooka2d1eba2007-01-28 03:10:55 +0000392 }
393 return gdb_syscall_mode == GDB_SYS_ENABLED;
394}
395
edgar_iglba70a622008-03-14 06:10:42 +0000396/* Resume execution. */
397static inline void gdb_continue(GDBState *s)
398{
Doug Gale5c9522b2017-12-02 20:30:37 -0500399
edgar_iglba70a622008-03-14 06:10:42 +0000400#ifdef CONFIG_USER_ONLY
401 s->running_state = 1;
Doug Gale5c9522b2017-12-02 20:30:37 -0500402 trace_gdbstub_op_continue();
edgar_iglba70a622008-03-14 06:10:42 +0000403#else
Paolo Bonzini26ac7a32013-06-03 17:06:54 +0200404 if (!runstate_needs_reset()) {
Doug Gale5c9522b2017-12-02 20:30:37 -0500405 trace_gdbstub_op_continue();
Paolo Bonzini87f25c12013-05-30 13:20:40 +0200406 vm_start();
407 }
edgar_iglba70a622008-03-14 06:10:42 +0000408#endif
409}
410
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100411/*
412 * Resume execution, per CPU actions. For user-mode emulation it's
413 * equivalent to gdb_continue.
414 */
415static int gdb_continue_partial(GDBState *s, char *newstates)
416{
417 CPUState *cpu;
418 int res = 0;
419#ifdef CONFIG_USER_ONLY
420 /*
421 * This is not exactly accurate, but it's an improvement compared to the
422 * previous situation, where only one CPU would be single-stepped.
423 */
424 CPU_FOREACH(cpu) {
425 if (newstates[cpu->cpu_index] == 's') {
Doug Gale5c9522b2017-12-02 20:30:37 -0500426 trace_gdbstub_op_stepping(cpu->cpu_index);
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100427 cpu_single_step(cpu, sstep_flags);
428 }
429 }
430 s->running_state = 1;
431#else
432 int flag = 0;
433
434 if (!runstate_needs_reset()) {
435 if (vm_prepare_start()) {
436 return 0;
437 }
438
439 CPU_FOREACH(cpu) {
440 switch (newstates[cpu->cpu_index]) {
441 case 0:
442 case 1:
443 break; /* nothing to do here */
444 case 's':
Doug Gale5c9522b2017-12-02 20:30:37 -0500445 trace_gdbstub_op_stepping(cpu->cpu_index);
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100446 cpu_single_step(cpu, sstep_flags);
447 cpu_resume(cpu);
448 flag = 1;
449 break;
450 case 'c':
Doug Gale5c9522b2017-12-02 20:30:37 -0500451 trace_gdbstub_op_continue_cpu(cpu->cpu_index);
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100452 cpu_resume(cpu);
453 flag = 1;
454 break;
455 default:
456 res = -1;
457 break;
458 }
459 }
460 }
461 if (flag) {
462 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, true);
463 }
464#endif
465 return res;
466}
467
bellard858693c2004-03-31 18:52:07 +0000468static void put_buffer(GDBState *s, const uint8_t *buf, int len)
bellardb4608c02003-06-27 17:34:32 +0000469{
pbrook4046d912007-01-28 01:53:16 +0000470#ifdef CONFIG_USER_ONLY
bellardb4608c02003-06-27 17:34:32 +0000471 int ret;
472
473 while (len > 0) {
bellard8f447cc2006-06-14 15:21:14 +0000474 ret = send(s->fd, buf, len, 0);
bellardb4608c02003-06-27 17:34:32 +0000475 if (ret < 0) {
Peter Wu5819e3e2016-06-05 16:35:48 +0200476 if (errno != EINTR)
bellardb4608c02003-06-27 17:34:32 +0000477 return;
478 } else {
479 buf += ret;
480 len -= ret;
481 }
482 }
pbrook4046d912007-01-28 01:53:16 +0000483#else
Daniel P. Berrange6ab3fc32016-09-06 14:56:04 +0100484 /* XXX this blocks entire thread. Rewrite to use
485 * qemu_chr_fe_write and background I/O callbacks */
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300486 qemu_chr_fe_write_all(&s->chr, buf, len);
pbrook4046d912007-01-28 01:53:16 +0000487#endif
bellardb4608c02003-06-27 17:34:32 +0000488}
489
490static inline int fromhex(int v)
491{
492 if (v >= '0' && v <= '9')
493 return v - '0';
494 else if (v >= 'A' && v <= 'F')
495 return v - 'A' + 10;
496 else if (v >= 'a' && v <= 'f')
497 return v - 'a' + 10;
498 else
499 return 0;
500}
501
502static inline int tohex(int v)
503{
504 if (v < 10)
505 return v + '0';
506 else
507 return v - 10 + 'a';
508}
509
Philippe Mathieu-Daudé90057742018-04-08 11:59:33 -0300510/* writes 2*len+1 bytes in buf */
bellardb4608c02003-06-27 17:34:32 +0000511static void memtohex(char *buf, const uint8_t *mem, int len)
512{
513 int i, c;
514 char *q;
515 q = buf;
516 for(i = 0; i < len; i++) {
517 c = mem[i];
518 *q++ = tohex(c >> 4);
519 *q++ = tohex(c & 0xf);
520 }
521 *q = '\0';
522}
523
524static void hextomem(uint8_t *mem, const char *buf, int len)
525{
526 int i;
527
528 for(i = 0; i < len; i++) {
529 mem[i] = (fromhex(buf[0]) << 4) | fromhex(buf[1]);
530 buf += 2;
531 }
532}
533
Doug Gale5c9522b2017-12-02 20:30:37 -0500534static void hexdump(const char *buf, int len,
535 void (*trace_fn)(size_t ofs, char const *text))
536{
537 char line_buffer[3 * 16 + 4 + 16 + 1];
538
539 size_t i;
540 for (i = 0; i < len || (i & 0xF); ++i) {
541 size_t byte_ofs = i & 15;
542
543 if (byte_ofs == 0) {
544 memset(line_buffer, ' ', 3 * 16 + 4 + 16);
545 line_buffer[3 * 16 + 4 + 16] = 0;
546 }
547
548 size_t col_group = (i >> 2) & 3;
549 size_t hex_col = byte_ofs * 3 + col_group;
550 size_t txt_col = 3 * 16 + 4 + byte_ofs;
551
552 if (i < len) {
553 char value = buf[i];
554
555 line_buffer[hex_col + 0] = tohex((value >> 4) & 0xF);
556 line_buffer[hex_col + 1] = tohex((value >> 0) & 0xF);
557 line_buffer[txt_col + 0] = (value >= ' ' && value < 127)
558 ? value
559 : '.';
560 }
561
562 if (byte_ofs == 0xF)
563 trace_fn(i & -16, line_buffer);
564 }
565}
566
bellardb4608c02003-06-27 17:34:32 +0000567/* return -1 if error, 0 if OK */
Doug Gale5c9522b2017-12-02 20:30:37 -0500568static int put_packet_binary(GDBState *s, const char *buf, int len, bool dump)
bellardb4608c02003-06-27 17:34:32 +0000569{
pbrook56aebc82008-10-11 17:55:29 +0000570 int csum, i;
ths60fe76f2007-12-16 03:02:09 +0000571 uint8_t *p;
bellardb4608c02003-06-27 17:34:32 +0000572
Doug Gale5c9522b2017-12-02 20:30:37 -0500573 if (dump && trace_event_get_state_backends(TRACE_GDBSTUB_IO_BINARYREPLY)) {
574 hexdump(buf, len, trace_gdbstub_io_binaryreply);
575 }
576
bellardb4608c02003-06-27 17:34:32 +0000577 for(;;) {
pbrook4046d912007-01-28 01:53:16 +0000578 p = s->last_packet;
579 *(p++) = '$';
pbrook4046d912007-01-28 01:53:16 +0000580 memcpy(p, buf, len);
581 p += len;
bellardb4608c02003-06-27 17:34:32 +0000582 csum = 0;
583 for(i = 0; i < len; i++) {
584 csum += buf[i];
585 }
pbrook4046d912007-01-28 01:53:16 +0000586 *(p++) = '#';
587 *(p++) = tohex((csum >> 4) & 0xf);
588 *(p++) = tohex((csum) & 0xf);
bellardb4608c02003-06-27 17:34:32 +0000589
pbrook4046d912007-01-28 01:53:16 +0000590 s->last_packet_len = p - s->last_packet;
thsffe8ab82007-12-16 03:16:05 +0000591 put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
bellardb4608c02003-06-27 17:34:32 +0000592
pbrook4046d912007-01-28 01:53:16 +0000593#ifdef CONFIG_USER_ONLY
594 i = get_char(s);
595 if (i < 0)
bellardb4608c02003-06-27 17:34:32 +0000596 return -1;
pbrook4046d912007-01-28 01:53:16 +0000597 if (i == '+')
bellardb4608c02003-06-27 17:34:32 +0000598 break;
pbrook4046d912007-01-28 01:53:16 +0000599#else
600 break;
601#endif
bellardb4608c02003-06-27 17:34:32 +0000602 }
603 return 0;
604}
605
pbrook56aebc82008-10-11 17:55:29 +0000606/* return -1 if error, 0 if OK */
607static int put_packet(GDBState *s, const char *buf)
608{
Doug Gale5c9522b2017-12-02 20:30:37 -0500609 trace_gdbstub_io_reply(buf);
pbrook56aebc82008-10-11 17:55:29 +0000610
Doug Gale5c9522b2017-12-02 20:30:37 -0500611 return put_packet_binary(s, buf, strlen(buf), false);
pbrook56aebc82008-10-11 17:55:29 +0000612}
613
pbrook56aebc82008-10-11 17:55:29 +0000614/* Encode data using the encoding for 'x' packets. */
615static int memtox(char *buf, const char *mem, int len)
616{
617 char *p = buf;
618 char c;
619
620 while (len--) {
621 c = *(mem++);
622 switch (c) {
623 case '#': case '$': case '*': case '}':
624 *(p++) = '}';
625 *(p++) = c ^ 0x20;
626 break;
627 default:
628 *(p++) = c;
629 break;
630 }
631 }
632 return p - buf;
633}
634
Andreas Färber5b24c642013-07-07 15:08:22 +0200635static const char *get_feature_xml(const char *p, const char **newp,
636 CPUClass *cc)
pbrook56aebc82008-10-11 17:55:29 +0000637{
pbrook56aebc82008-10-11 17:55:29 +0000638 size_t len;
639 int i;
640 const char *name;
641 static char target_xml[1024];
642
643 len = 0;
644 while (p[len] && p[len] != ':')
645 len++;
646 *newp = p + len;
647
648 name = NULL;
649 if (strncmp(p, "target.xml", len) == 0) {
650 /* Generate the XML description for this CPU. */
651 if (!target_xml[0]) {
652 GDBRegisterState *r;
Andreas Färbereac8b352013-06-28 21:11:37 +0200653 CPUState *cpu = first_cpu;
pbrook56aebc82008-10-11 17:55:29 +0000654
David Hildenbrandb3820e62015-12-03 13:14:41 +0100655 pstrcat(target_xml, sizeof(target_xml),
656 "<?xml version=\"1.0\"?>"
657 "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">"
658 "<target>");
659 if (cc->gdb_arch_name) {
660 gchar *arch = cc->gdb_arch_name(cpu);
661 pstrcat(target_xml, sizeof(target_xml), "<architecture>");
662 pstrcat(target_xml, sizeof(target_xml), arch);
663 pstrcat(target_xml, sizeof(target_xml), "</architecture>");
664 g_free(arch);
665 }
666 pstrcat(target_xml, sizeof(target_xml), "<xi:include href=\"");
667 pstrcat(target_xml, sizeof(target_xml), cc->gdb_core_xml_file);
668 pstrcat(target_xml, sizeof(target_xml), "\"/>");
Andreas Färbereac8b352013-06-28 21:11:37 +0200669 for (r = cpu->gdb_regs; r; r = r->next) {
blueswir12dc766d2009-04-13 16:06:19 +0000670 pstrcat(target_xml, sizeof(target_xml), "<xi:include href=\"");
671 pstrcat(target_xml, sizeof(target_xml), r->xml);
672 pstrcat(target_xml, sizeof(target_xml), "\"/>");
pbrook56aebc82008-10-11 17:55:29 +0000673 }
blueswir12dc766d2009-04-13 16:06:19 +0000674 pstrcat(target_xml, sizeof(target_xml), "</target>");
pbrook56aebc82008-10-11 17:55:29 +0000675 }
676 return target_xml;
677 }
Abdallah Bouassida200bf5b2018-05-18 17:48:07 +0100678 if (cc->gdb_get_dynamic_xml) {
679 CPUState *cpu = first_cpu;
680 char *xmlname = g_strndup(p, len);
681 const char *xml = cc->gdb_get_dynamic_xml(cpu, xmlname);
682
683 g_free(xmlname);
684 if (xml) {
685 return xml;
686 }
687 }
pbrook56aebc82008-10-11 17:55:29 +0000688 for (i = 0; ; i++) {
689 name = xml_builtin[i][0];
690 if (!name || (strncmp(name, p, len) == 0 && strlen(name) == len))
691 break;
692 }
693 return name ? xml_builtin[i][1] : NULL;
694}
pbrook56aebc82008-10-11 17:55:29 +0000695
Andreas Färber385b9f02013-06-27 18:25:36 +0200696static int gdb_read_register(CPUState *cpu, uint8_t *mem_buf, int reg)
pbrook56aebc82008-10-11 17:55:29 +0000697{
Andreas Färbera0e372f2013-06-28 23:18:47 +0200698 CPUClass *cc = CPU_GET_CLASS(cpu);
Andreas Färber385b9f02013-06-27 18:25:36 +0200699 CPUArchState *env = cpu->env_ptr;
pbrook56aebc82008-10-11 17:55:29 +0000700 GDBRegisterState *r;
701
Andreas Färbera0e372f2013-06-28 23:18:47 +0200702 if (reg < cc->gdb_num_core_regs) {
Andreas Färber5b50e792013-06-29 04:18:45 +0200703 return cc->gdb_read_register(cpu, mem_buf, reg);
Andreas Färbera0e372f2013-06-28 23:18:47 +0200704 }
pbrook56aebc82008-10-11 17:55:29 +0000705
Andreas Färbereac8b352013-06-28 21:11:37 +0200706 for (r = cpu->gdb_regs; r; r = r->next) {
pbrook56aebc82008-10-11 17:55:29 +0000707 if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
708 return r->get_reg(env, mem_buf, reg - r->base_reg);
709 }
710 }
711 return 0;
712}
713
Andreas Färber385b9f02013-06-27 18:25:36 +0200714static int gdb_write_register(CPUState *cpu, uint8_t *mem_buf, int reg)
pbrook56aebc82008-10-11 17:55:29 +0000715{
Andreas Färbera0e372f2013-06-28 23:18:47 +0200716 CPUClass *cc = CPU_GET_CLASS(cpu);
Andreas Färber385b9f02013-06-27 18:25:36 +0200717 CPUArchState *env = cpu->env_ptr;
pbrook56aebc82008-10-11 17:55:29 +0000718 GDBRegisterState *r;
719
Andreas Färbera0e372f2013-06-28 23:18:47 +0200720 if (reg < cc->gdb_num_core_regs) {
Andreas Färber5b50e792013-06-29 04:18:45 +0200721 return cc->gdb_write_register(cpu, mem_buf, reg);
Andreas Färbera0e372f2013-06-28 23:18:47 +0200722 }
pbrook56aebc82008-10-11 17:55:29 +0000723
Andreas Färbereac8b352013-06-28 21:11:37 +0200724 for (r = cpu->gdb_regs; r; r = r->next) {
pbrook56aebc82008-10-11 17:55:29 +0000725 if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
726 return r->set_reg(env, mem_buf, reg - r->base_reg);
727 }
728 }
729 return 0;
730}
731
732/* Register a supplemental set of CPU registers. If g_pos is nonzero it
733 specifies the first register number and these registers are included in
734 a standard "g" packet. Direction is relative to gdb, i.e. get_reg is
735 gdb reading a CPU register, and set_reg is gdb modifying a CPU register.
736 */
737
Andreas Färber22169d42013-06-28 21:27:39 +0200738void gdb_register_coprocessor(CPUState *cpu,
739 gdb_reg_cb get_reg, gdb_reg_cb set_reg,
740 int num_regs, const char *xml, int g_pos)
pbrook56aebc82008-10-11 17:55:29 +0000741{
742 GDBRegisterState *s;
743 GDBRegisterState **p;
pbrook56aebc82008-10-11 17:55:29 +0000744
Andreas Färbereac8b352013-06-28 21:11:37 +0200745 p = &cpu->gdb_regs;
pbrook56aebc82008-10-11 17:55:29 +0000746 while (*p) {
747 /* Check for duplicates. */
748 if (strcmp((*p)->xml, xml) == 0)
749 return;
750 p = &(*p)->next;
751 }
Stefan Weil9643c252011-10-18 22:25:38 +0200752
753 s = g_new0(GDBRegisterState, 1);
Andreas Färbera0e372f2013-06-28 23:18:47 +0200754 s->base_reg = cpu->gdb_num_regs;
Stefan Weil9643c252011-10-18 22:25:38 +0200755 s->num_regs = num_regs;
756 s->get_reg = get_reg;
757 s->set_reg = set_reg;
758 s->xml = xml;
759
pbrook56aebc82008-10-11 17:55:29 +0000760 /* Add to end of list. */
Andreas Färbera0e372f2013-06-28 23:18:47 +0200761 cpu->gdb_num_regs += num_regs;
pbrook56aebc82008-10-11 17:55:29 +0000762 *p = s;
763 if (g_pos) {
764 if (g_pos != s->base_reg) {
Ziyue Yang7ae6c572017-01-18 16:03:29 +0800765 error_report("Error: Bad gdb register numbering for '%s', "
766 "expected %d got %d", xml, g_pos, s->base_reg);
Andreas Färber35143f02013-08-12 18:09:47 +0200767 } else {
768 cpu->gdb_num_g_regs = cpu->gdb_num_regs;
pbrook56aebc82008-10-11 17:55:29 +0000769 }
770 }
771}
772
aliguoria1d1bb32008-11-18 20:07:32 +0000773#ifndef CONFIG_USER_ONLY
Peter Maydell2472b6c2014-09-12 19:04:17 +0100774/* Translate GDB watchpoint type to a flags value for cpu_watchpoint_* */
775static inline int xlat_gdb_type(CPUState *cpu, int gdbtype)
776{
777 static const int xlat[] = {
778 [GDB_WATCHPOINT_WRITE] = BP_GDB | BP_MEM_WRITE,
779 [GDB_WATCHPOINT_READ] = BP_GDB | BP_MEM_READ,
780 [GDB_WATCHPOINT_ACCESS] = BP_GDB | BP_MEM_ACCESS,
781 };
782
783 CPUClass *cc = CPU_GET_CLASS(cpu);
784 int cputype = xlat[gdbtype];
785
786 if (cc->gdb_stop_before_watchpoint) {
787 cputype |= BP_STOP_BEFORE_ACCESS;
788 }
789 return cputype;
790}
aliguoria1d1bb32008-11-18 20:07:32 +0000791#endif
792
aliguori880a7572008-11-18 20:30:24 +0000793static int gdb_breakpoint_insert(target_ulong addr, target_ulong len, int type)
aliguoria1d1bb32008-11-18 20:07:32 +0000794{
Andreas Färber182735e2013-05-29 22:29:20 +0200795 CPUState *cpu;
aliguori880a7572008-11-18 20:30:24 +0000796 int err = 0;
797
Andreas Färber62278812013-06-27 17:12:06 +0200798 if (kvm_enabled()) {
Andreas Färber2e0f2cf2013-06-27 19:19:39 +0200799 return kvm_insert_breakpoint(gdbserver_state->c_cpu, addr, len, type);
Andreas Färber62278812013-06-27 17:12:06 +0200800 }
aliguorie22a25c2009-03-12 20:12:48 +0000801
aliguoria1d1bb32008-11-18 20:07:32 +0000802 switch (type) {
803 case GDB_BREAKPOINT_SW:
804 case GDB_BREAKPOINT_HW:
Andreas Färberbdc44642013-06-24 23:50:24 +0200805 CPU_FOREACH(cpu) {
Andreas Färberb3310ab2013-09-02 17:26:20 +0200806 err = cpu_breakpoint_insert(cpu, addr, BP_GDB, NULL);
807 if (err) {
aliguori880a7572008-11-18 20:30:24 +0000808 break;
Andreas Färberb3310ab2013-09-02 17:26:20 +0200809 }
aliguori880a7572008-11-18 20:30:24 +0000810 }
811 return err;
aliguoria1d1bb32008-11-18 20:07:32 +0000812#ifndef CONFIG_USER_ONLY
813 case GDB_WATCHPOINT_WRITE:
814 case GDB_WATCHPOINT_READ:
815 case GDB_WATCHPOINT_ACCESS:
Andreas Färberbdc44642013-06-24 23:50:24 +0200816 CPU_FOREACH(cpu) {
Peter Maydell2472b6c2014-09-12 19:04:17 +0100817 err = cpu_watchpoint_insert(cpu, addr, len,
818 xlat_gdb_type(cpu, type), NULL);
819 if (err) {
aliguori880a7572008-11-18 20:30:24 +0000820 break;
Peter Maydell2472b6c2014-09-12 19:04:17 +0100821 }
aliguori880a7572008-11-18 20:30:24 +0000822 }
823 return err;
aliguoria1d1bb32008-11-18 20:07:32 +0000824#endif
825 default:
826 return -ENOSYS;
827 }
828}
829
aliguori880a7572008-11-18 20:30:24 +0000830static int gdb_breakpoint_remove(target_ulong addr, target_ulong len, int type)
aliguoria1d1bb32008-11-18 20:07:32 +0000831{
Andreas Färber182735e2013-05-29 22:29:20 +0200832 CPUState *cpu;
aliguori880a7572008-11-18 20:30:24 +0000833 int err = 0;
834
Andreas Färber62278812013-06-27 17:12:06 +0200835 if (kvm_enabled()) {
Andreas Färber2e0f2cf2013-06-27 19:19:39 +0200836 return kvm_remove_breakpoint(gdbserver_state->c_cpu, addr, len, type);
Andreas Färber62278812013-06-27 17:12:06 +0200837 }
aliguorie22a25c2009-03-12 20:12:48 +0000838
aliguoria1d1bb32008-11-18 20:07:32 +0000839 switch (type) {
840 case GDB_BREAKPOINT_SW:
841 case GDB_BREAKPOINT_HW:
Andreas Färberbdc44642013-06-24 23:50:24 +0200842 CPU_FOREACH(cpu) {
Andreas Färberb3310ab2013-09-02 17:26:20 +0200843 err = cpu_breakpoint_remove(cpu, addr, BP_GDB);
844 if (err) {
aliguori880a7572008-11-18 20:30:24 +0000845 break;
Andreas Färberb3310ab2013-09-02 17:26:20 +0200846 }
aliguori880a7572008-11-18 20:30:24 +0000847 }
848 return err;
aliguoria1d1bb32008-11-18 20:07:32 +0000849#ifndef CONFIG_USER_ONLY
850 case GDB_WATCHPOINT_WRITE:
851 case GDB_WATCHPOINT_READ:
852 case GDB_WATCHPOINT_ACCESS:
Andreas Färberbdc44642013-06-24 23:50:24 +0200853 CPU_FOREACH(cpu) {
Peter Maydell2472b6c2014-09-12 19:04:17 +0100854 err = cpu_watchpoint_remove(cpu, addr, len,
855 xlat_gdb_type(cpu, type));
aliguori880a7572008-11-18 20:30:24 +0000856 if (err)
857 break;
858 }
859 return err;
aliguoria1d1bb32008-11-18 20:07:32 +0000860#endif
861 default:
862 return -ENOSYS;
863 }
864}
865
aliguori880a7572008-11-18 20:30:24 +0000866static void gdb_breakpoint_remove_all(void)
aliguoria1d1bb32008-11-18 20:07:32 +0000867{
Andreas Färber182735e2013-05-29 22:29:20 +0200868 CPUState *cpu;
aliguori880a7572008-11-18 20:30:24 +0000869
aliguorie22a25c2009-03-12 20:12:48 +0000870 if (kvm_enabled()) {
Andreas Färber2e0f2cf2013-06-27 19:19:39 +0200871 kvm_remove_all_breakpoints(gdbserver_state->c_cpu);
aliguorie22a25c2009-03-12 20:12:48 +0000872 return;
873 }
874
Andreas Färberbdc44642013-06-24 23:50:24 +0200875 CPU_FOREACH(cpu) {
Andreas Färberb3310ab2013-09-02 17:26:20 +0200876 cpu_breakpoint_remove_all(cpu, BP_GDB);
aliguoria1d1bb32008-11-18 20:07:32 +0000877#ifndef CONFIG_USER_ONLY
Andreas Färber75a34032013-09-02 16:57:02 +0200878 cpu_watchpoint_remove_all(cpu, BP_GDB);
aliguoria1d1bb32008-11-18 20:07:32 +0000879#endif
aliguori880a7572008-11-18 20:30:24 +0000880 }
aliguoria1d1bb32008-11-18 20:07:32 +0000881}
882
aurel32fab9d282009-04-08 21:29:37 +0000883static void gdb_set_cpu_pc(GDBState *s, target_ulong pc)
884{
Andreas Färber2e0f2cf2013-06-27 19:19:39 +0200885 CPUState *cpu = s->c_cpu;
Andreas Färberf45748f2013-06-21 19:09:18 +0200886
887 cpu_synchronize_state(cpu);
Peter Crosthwaite4a2b24e2015-06-23 20:19:21 -0700888 cpu_set_pc(cpu, pc);
aurel32fab9d282009-04-08 21:29:37 +0000889}
890
Andreas Färber2e0f2cf2013-06-27 19:19:39 +0200891static CPUState *find_cpu(uint32_t thread_id)
Nathan Froyd1e9fa732009-06-03 11:33:08 -0700892{
Andreas Färber0d342822012-12-17 07:12:13 +0100893 CPUState *cpu;
Nathan Froyd1e9fa732009-06-03 11:33:08 -0700894
Andreas Färberbdc44642013-06-24 23:50:24 +0200895 CPU_FOREACH(cpu) {
Alex Bennéed2a6c852017-07-12 11:52:14 +0100896 if (cpu_gdb_index(cpu) == thread_id) {
Andreas Färber2e0f2cf2013-06-27 19:19:39 +0200897 return cpu;
Andreas Färberaa48dd92013-07-09 20:50:52 +0200898 }
Nathan Froyd1e9fa732009-06-03 11:33:08 -0700899 }
Andreas Färberaa48dd92013-07-09 20:50:52 +0200900
901 return NULL;
Nathan Froyd1e9fa732009-06-03 11:33:08 -0700902}
903
Jan Kiszka4dabe742015-02-07 09:38:43 +0100904static int is_query_packet(const char *p, const char *query, char separator)
905{
906 unsigned int query_len = strlen(query);
907
908 return strncmp(p, query, query_len) == 0 &&
909 (p[query_len] == '\0' || p[query_len] == separator);
910}
911
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100912/**
913 * gdb_handle_vcont - Parses and handles a vCont packet.
914 * returns -ENOTSUP if a command is unsupported, -EINVAL or -ERANGE if there is
915 * a format error, 0 on success.
916 */
917static int gdb_handle_vcont(GDBState *s, const char *p)
918{
919 int res, idx, signal = 0;
920 char cur_action;
921 char *newstates;
922 unsigned long tmp;
923 CPUState *cpu;
924#ifdef CONFIG_USER_ONLY
925 int max_cpus = 1; /* global variable max_cpus exists only in system mode */
926
927 CPU_FOREACH(cpu) {
928 max_cpus = max_cpus <= cpu->cpu_index ? cpu->cpu_index + 1 : max_cpus;
929 }
930#endif
931 /* uninitialised CPUs stay 0 */
932 newstates = g_new0(char, max_cpus);
933
934 /* mark valid CPUs with 1 */
935 CPU_FOREACH(cpu) {
936 newstates[cpu->cpu_index] = 1;
937 }
938
939 /*
940 * res keeps track of what error we are returning, with -ENOTSUP meaning
941 * that the command is unknown or unsupported, thus returning an empty
942 * packet, while -EINVAL and -ERANGE cause an E22 packet, due to invalid,
943 * or incorrect parameters passed.
944 */
945 res = 0;
946 while (*p) {
947 if (*p++ != ';') {
948 res = -ENOTSUP;
949 goto out;
950 }
951
952 cur_action = *p++;
953 if (cur_action == 'C' || cur_action == 'S') {
Peter Maydell95a5bef2017-07-20 17:31:30 +0100954 cur_action = qemu_tolower(cur_action);
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100955 res = qemu_strtoul(p + 1, &p, 16, &tmp);
956 if (res) {
957 goto out;
958 }
959 signal = gdb_signal_to_target(tmp);
960 } else if (cur_action != 'c' && cur_action != 's') {
961 /* unknown/invalid/unsupported command */
962 res = -ENOTSUP;
963 goto out;
964 }
965 /* thread specification. special values: (none), -1 = all; 0 = any */
966 if ((p[0] == ':' && p[1] == '-' && p[2] == '1') || (p[0] != ':')) {
967 if (*p == ':') {
968 p += 3;
969 }
970 for (idx = 0; idx < max_cpus; idx++) {
971 if (newstates[idx] == 1) {
972 newstates[idx] = cur_action;
973 }
974 }
975 } else if (*p == ':') {
976 p++;
977 res = qemu_strtoul(p, &p, 16, &tmp);
978 if (res) {
979 goto out;
980 }
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100981
Alex Bennée5a6a1ad2017-07-12 11:52:16 +0100982 /* 0 means any thread, so we pick the first valid CPU */
983 cpu = tmp ? find_cpu(tmp) : first_cpu;
984
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100985 /* invalid CPU/thread specified */
Alex Bennée5a6a1ad2017-07-12 11:52:16 +0100986 if (!cpu) {
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100987 res = -EINVAL;
988 goto out;
989 }
Alex Bennée5a6a1ad2017-07-12 11:52:16 +0100990
Claudio Imbrenda544177a2017-02-14 18:07:48 +0100991 /* only use if no previous match occourred */
992 if (newstates[cpu->cpu_index] == 1) {
993 newstates[cpu->cpu_index] = cur_action;
994 }
995 }
996 }
997 s->signal = signal;
998 gdb_continue_partial(s, newstates);
999
1000out:
1001 g_free(newstates);
1002
1003 return res;
1004}
1005
aliguori880a7572008-11-18 20:30:24 +00001006static int gdb_handle_packet(GDBState *s, const char *line_buf)
bellardb4608c02003-06-27 17:34:32 +00001007{
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001008 CPUState *cpu;
Andreas Färber5b24c642013-07-07 15:08:22 +02001009 CPUClass *cc;
bellardb4608c02003-06-27 17:34:32 +00001010 const char *p;
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001011 uint32_t thread;
1012 int ch, reg_size, type, res;
pbrook56aebc82008-10-11 17:55:29 +00001013 uint8_t mem_buf[MAX_PACKET_LENGTH];
Philippe Mathieu-Daudé90057742018-04-08 11:59:33 -03001014 char buf[sizeof(mem_buf) + 1 /* trailing NUL */];
pbrook56aebc82008-10-11 17:55:29 +00001015 uint8_t *registers;
bellard9d9754a2006-06-25 15:32:37 +00001016 target_ulong addr, len;
ths3b46e622007-09-17 08:09:54 +00001017
Doug Gale5c9522b2017-12-02 20:30:37 -05001018 trace_gdbstub_io_command(line_buf);
Alex Bennée118e2262017-07-12 11:52:13 +01001019
bellard858693c2004-03-31 18:52:07 +00001020 p = line_buf;
1021 ch = *p++;
1022 switch(ch) {
1023 case '?':
bellard1fddef42005-04-17 19:16:13 +00001024 /* TODO: Make this return the correct value for user-mode. */
aurel32ca587a82008-12-18 22:44:13 +00001025 snprintf(buf, sizeof(buf), "T%02xthread:%02x;", GDB_SIGNAL_TRAP,
Alex Bennéed2a6c852017-07-12 11:52:14 +01001026 cpu_gdb_index(s->c_cpu));
bellard858693c2004-03-31 18:52:07 +00001027 put_packet(s, buf);
edgar_igl7d03f822008-05-17 18:58:29 +00001028 /* Remove all the breakpoints when this query is issued,
1029 * because gdb is doing and initial connect and the state
1030 * should be cleaned up.
1031 */
aliguori880a7572008-11-18 20:30:24 +00001032 gdb_breakpoint_remove_all();
bellard858693c2004-03-31 18:52:07 +00001033 break;
1034 case 'c':
1035 if (*p != '\0') {
bellard9d9754a2006-06-25 15:32:37 +00001036 addr = strtoull(p, (char **)&p, 16);
aurel32fab9d282009-04-08 21:29:37 +00001037 gdb_set_cpu_pc(s, addr);
bellard858693c2004-03-31 18:52:07 +00001038 }
aurel32ca587a82008-12-18 22:44:13 +00001039 s->signal = 0;
edgar_iglba70a622008-03-14 06:10:42 +00001040 gdb_continue(s);
Doug Gale5c9522b2017-12-02 20:30:37 -05001041 return RS_IDLE;
edgar_igl1f487ee2008-05-17 22:20:53 +00001042 case 'C':
aurel32ca587a82008-12-18 22:44:13 +00001043 s->signal = gdb_signal_to_target (strtoul(p, (char **)&p, 16));
1044 if (s->signal == -1)
1045 s->signal = 0;
edgar_igl1f487ee2008-05-17 22:20:53 +00001046 gdb_continue(s);
1047 return RS_IDLE;
Jan Kiszkadd32aa12009-06-27 09:53:51 +02001048 case 'v':
1049 if (strncmp(p, "Cont", 4) == 0) {
Jan Kiszkadd32aa12009-06-27 09:53:51 +02001050 p += 4;
1051 if (*p == '?') {
1052 put_packet(s, "vCont;c;C;s;S");
1053 break;
1054 }
Jan Kiszkadd32aa12009-06-27 09:53:51 +02001055
Claudio Imbrenda544177a2017-02-14 18:07:48 +01001056 res = gdb_handle_vcont(s, p);
1057
Jan Kiszkadd32aa12009-06-27 09:53:51 +02001058 if (res) {
Claudio Imbrenda544177a2017-02-14 18:07:48 +01001059 if ((res == -EINVAL) || (res == -ERANGE)) {
1060 put_packet(s, "E22");
1061 break;
Jan Kiszkadd32aa12009-06-27 09:53:51 +02001062 }
Claudio Imbrenda544177a2017-02-14 18:07:48 +01001063 goto unknown_command;
Jan Kiszkadd32aa12009-06-27 09:53:51 +02001064 }
1065 break;
1066 } else {
1067 goto unknown_command;
1068 }
edgar_igl7d03f822008-05-17 18:58:29 +00001069 case 'k':
1070 /* Kill the target */
Ziyue Yang7ae6c572017-01-18 16:03:29 +08001071 error_report("QEMU: Terminated via GDBstub");
edgar_igl7d03f822008-05-17 18:58:29 +00001072 exit(0);
1073 case 'D':
1074 /* Detach packet */
aliguori880a7572008-11-18 20:30:24 +00001075 gdb_breakpoint_remove_all();
Daniel Gutson7ea06da2010-02-26 14:13:50 -03001076 gdb_syscall_mode = GDB_SYS_DISABLED;
edgar_igl7d03f822008-05-17 18:58:29 +00001077 gdb_continue(s);
1078 put_packet(s, "OK");
1079 break;
bellard858693c2004-03-31 18:52:07 +00001080 case 's':
1081 if (*p != '\0') {
ths8fac5802007-07-12 10:05:07 +00001082 addr = strtoull(p, (char **)&p, 16);
aurel32fab9d282009-04-08 21:29:37 +00001083 gdb_set_cpu_pc(s, addr);
bellard858693c2004-03-31 18:52:07 +00001084 }
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001085 cpu_single_step(s->c_cpu, sstep_flags);
edgar_iglba70a622008-03-14 06:10:42 +00001086 gdb_continue(s);
Doug Gale5c9522b2017-12-02 20:30:37 -05001087 return RS_IDLE;
pbrooka2d1eba2007-01-28 03:10:55 +00001088 case 'F':
1089 {
1090 target_ulong ret;
1091 target_ulong err;
1092
1093 ret = strtoull(p, (char **)&p, 16);
1094 if (*p == ',') {
1095 p++;
1096 err = strtoull(p, (char **)&p, 16);
1097 } else {
1098 err = 0;
1099 }
1100 if (*p == ',')
1101 p++;
1102 type = *p;
Meador Ingecdb432b2012-03-15 17:49:45 +00001103 if (s->current_syscall_cb) {
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001104 s->current_syscall_cb(s->c_cpu, ret, err);
Meador Ingecdb432b2012-03-15 17:49:45 +00001105 s->current_syscall_cb = NULL;
1106 }
pbrooka2d1eba2007-01-28 03:10:55 +00001107 if (type == 'C') {
1108 put_packet(s, "T02");
1109 } else {
edgar_iglba70a622008-03-14 06:10:42 +00001110 gdb_continue(s);
pbrooka2d1eba2007-01-28 03:10:55 +00001111 }
1112 }
1113 break;
bellard858693c2004-03-31 18:52:07 +00001114 case 'g':
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001115 cpu_synchronize_state(s->g_cpu);
pbrook56aebc82008-10-11 17:55:29 +00001116 len = 0;
Andreas Färber35143f02013-08-12 18:09:47 +02001117 for (addr = 0; addr < s->g_cpu->gdb_num_g_regs; addr++) {
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001118 reg_size = gdb_read_register(s->g_cpu, mem_buf + len, addr);
pbrook56aebc82008-10-11 17:55:29 +00001119 len += reg_size;
1120 }
1121 memtohex(buf, mem_buf, len);
bellard858693c2004-03-31 18:52:07 +00001122 put_packet(s, buf);
1123 break;
1124 case 'G':
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001125 cpu_synchronize_state(s->g_cpu);
pbrook56aebc82008-10-11 17:55:29 +00001126 registers = mem_buf;
bellard858693c2004-03-31 18:52:07 +00001127 len = strlen(p) / 2;
1128 hextomem((uint8_t *)registers, p, len);
Andreas Färber35143f02013-08-12 18:09:47 +02001129 for (addr = 0; addr < s->g_cpu->gdb_num_g_regs && len > 0; addr++) {
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001130 reg_size = gdb_write_register(s->g_cpu, registers, addr);
pbrook56aebc82008-10-11 17:55:29 +00001131 len -= reg_size;
1132 registers += reg_size;
1133 }
bellard858693c2004-03-31 18:52:07 +00001134 put_packet(s, "OK");
1135 break;
1136 case 'm':
bellard9d9754a2006-06-25 15:32:37 +00001137 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00001138 if (*p == ',')
1139 p++;
bellard9d9754a2006-06-25 15:32:37 +00001140 len = strtoull(p, NULL, 16);
Kevin Wolf5accecb2015-10-13 09:38:50 +02001141
1142 /* memtohex() doubles the required space */
1143 if (len > MAX_PACKET_LENGTH / 2) {
1144 put_packet (s, "E22");
1145 break;
1146 }
1147
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001148 if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, false) != 0) {
bellard6f970bd2005-12-05 19:55:19 +00001149 put_packet (s, "E14");
1150 } else {
1151 memtohex(buf, mem_buf, len);
1152 put_packet(s, buf);
1153 }
bellard858693c2004-03-31 18:52:07 +00001154 break;
1155 case 'M':
bellard9d9754a2006-06-25 15:32:37 +00001156 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00001157 if (*p == ',')
1158 p++;
bellard9d9754a2006-06-25 15:32:37 +00001159 len = strtoull(p, (char **)&p, 16);
bellardb328f872005-01-17 22:03:16 +00001160 if (*p == ':')
bellard858693c2004-03-31 18:52:07 +00001161 p++;
Kevin Wolf5accecb2015-10-13 09:38:50 +02001162
1163 /* hextomem() reads 2*len bytes */
1164 if (len > strlen(p) / 2) {
1165 put_packet (s, "E22");
1166 break;
1167 }
bellard858693c2004-03-31 18:52:07 +00001168 hextomem(mem_buf, p, len);
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001169 if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len,
Andreas Färberf3659ee2013-06-27 19:09:09 +02001170 true) != 0) {
bellard905f20b2005-04-26 21:09:55 +00001171 put_packet(s, "E14");
Fabien Chouteau44520db2011-09-08 12:48:16 +02001172 } else {
bellard858693c2004-03-31 18:52:07 +00001173 put_packet(s, "OK");
Fabien Chouteau44520db2011-09-08 12:48:16 +02001174 }
bellard858693c2004-03-31 18:52:07 +00001175 break;
pbrook56aebc82008-10-11 17:55:29 +00001176 case 'p':
1177 /* Older gdb are really dumb, and don't use 'g' if 'p' is avaialable.
1178 This works, but can be very slow. Anything new enough to
1179 understand XML also knows how to use this properly. */
1180 if (!gdb_has_xml)
1181 goto unknown_command;
1182 addr = strtoull(p, (char **)&p, 16);
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001183 reg_size = gdb_read_register(s->g_cpu, mem_buf, addr);
pbrook56aebc82008-10-11 17:55:29 +00001184 if (reg_size) {
1185 memtohex(buf, mem_buf, reg_size);
1186 put_packet(s, buf);
1187 } else {
1188 put_packet(s, "E14");
1189 }
1190 break;
1191 case 'P':
1192 if (!gdb_has_xml)
1193 goto unknown_command;
1194 addr = strtoull(p, (char **)&p, 16);
1195 if (*p == '=')
1196 p++;
1197 reg_size = strlen(p) / 2;
1198 hextomem(mem_buf, p, reg_size);
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001199 gdb_write_register(s->g_cpu, mem_buf, addr);
pbrook56aebc82008-10-11 17:55:29 +00001200 put_packet(s, "OK");
1201 break;
bellard858693c2004-03-31 18:52:07 +00001202 case 'Z':
bellard858693c2004-03-31 18:52:07 +00001203 case 'z':
1204 type = strtoul(p, (char **)&p, 16);
1205 if (*p == ',')
1206 p++;
bellard9d9754a2006-06-25 15:32:37 +00001207 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00001208 if (*p == ',')
1209 p++;
bellard9d9754a2006-06-25 15:32:37 +00001210 len = strtoull(p, (char **)&p, 16);
aliguoria1d1bb32008-11-18 20:07:32 +00001211 if (ch == 'Z')
aliguori880a7572008-11-18 20:30:24 +00001212 res = gdb_breakpoint_insert(addr, len, type);
aliguoria1d1bb32008-11-18 20:07:32 +00001213 else
aliguori880a7572008-11-18 20:30:24 +00001214 res = gdb_breakpoint_remove(addr, len, type);
aliguoria1d1bb32008-11-18 20:07:32 +00001215 if (res >= 0)
1216 put_packet(s, "OK");
1217 else if (res == -ENOSYS)
pbrook0f459d12008-06-09 00:20:13 +00001218 put_packet(s, "");
aliguoria1d1bb32008-11-18 20:07:32 +00001219 else
1220 put_packet(s, "E22");
bellard858693c2004-03-31 18:52:07 +00001221 break;
aliguori880a7572008-11-18 20:30:24 +00001222 case 'H':
1223 type = *p++;
1224 thread = strtoull(p, (char **)&p, 16);
1225 if (thread == -1 || thread == 0) {
1226 put_packet(s, "OK");
1227 break;
1228 }
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001229 cpu = find_cpu(thread);
1230 if (cpu == NULL) {
aliguori880a7572008-11-18 20:30:24 +00001231 put_packet(s, "E22");
1232 break;
1233 }
1234 switch (type) {
1235 case 'c':
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001236 s->c_cpu = cpu;
aliguori880a7572008-11-18 20:30:24 +00001237 put_packet(s, "OK");
1238 break;
1239 case 'g':
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001240 s->g_cpu = cpu;
aliguori880a7572008-11-18 20:30:24 +00001241 put_packet(s, "OK");
1242 break;
1243 default:
1244 put_packet(s, "E22");
1245 break;
1246 }
1247 break;
1248 case 'T':
1249 thread = strtoull(p, (char **)&p, 16);
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001250 cpu = find_cpu(thread);
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001251
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001252 if (cpu != NULL) {
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001253 put_packet(s, "OK");
1254 } else {
aliguori880a7572008-11-18 20:30:24 +00001255 put_packet(s, "E22");
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001256 }
aliguori880a7572008-11-18 20:30:24 +00001257 break;
pbrook978efd62006-06-17 18:30:42 +00001258 case 'q':
edgar_igl60897d32008-05-09 08:25:14 +00001259 case 'Q':
1260 /* parse any 'q' packets here */
1261 if (!strcmp(p,"qemu.sstepbits")) {
1262 /* Query Breakpoint bit definitions */
blueswir1363a37d2008-08-21 17:58:08 +00001263 snprintf(buf, sizeof(buf), "ENABLE=%x,NOIRQ=%x,NOTIMER=%x",
1264 SSTEP_ENABLE,
1265 SSTEP_NOIRQ,
1266 SSTEP_NOTIMER);
edgar_igl60897d32008-05-09 08:25:14 +00001267 put_packet(s, buf);
1268 break;
Jan Kiszka4dabe742015-02-07 09:38:43 +01001269 } else if (is_query_packet(p, "qemu.sstep", '=')) {
edgar_igl60897d32008-05-09 08:25:14 +00001270 /* Display or change the sstep_flags */
1271 p += 10;
1272 if (*p != '=') {
1273 /* Display current setting */
blueswir1363a37d2008-08-21 17:58:08 +00001274 snprintf(buf, sizeof(buf), "0x%x", sstep_flags);
edgar_igl60897d32008-05-09 08:25:14 +00001275 put_packet(s, buf);
1276 break;
1277 }
1278 p++;
1279 type = strtoul(p, (char **)&p, 16);
1280 sstep_flags = type;
1281 put_packet(s, "OK");
1282 break;
aliguori880a7572008-11-18 20:30:24 +00001283 } else if (strcmp(p,"C") == 0) {
1284 /* "Current thread" remains vague in the spec, so always return
1285 * the first CPU (gdb returns the first thread). */
1286 put_packet(s, "QC1");
1287 break;
1288 } else if (strcmp(p,"fThreadInfo") == 0) {
Andreas Färber52f34622013-06-27 13:44:40 +02001289 s->query_cpu = first_cpu;
aliguori880a7572008-11-18 20:30:24 +00001290 goto report_cpuinfo;
1291 } else if (strcmp(p,"sThreadInfo") == 0) {
1292 report_cpuinfo:
1293 if (s->query_cpu) {
Alex Bennéed2a6c852017-07-12 11:52:14 +01001294 snprintf(buf, sizeof(buf), "m%x", cpu_gdb_index(s->query_cpu));
aliguori880a7572008-11-18 20:30:24 +00001295 put_packet(s, buf);
Andreas Färberbdc44642013-06-24 23:50:24 +02001296 s->query_cpu = CPU_NEXT(s->query_cpu);
aliguori880a7572008-11-18 20:30:24 +00001297 } else
1298 put_packet(s, "l");
1299 break;
1300 } else if (strncmp(p,"ThreadExtraInfo,", 16) == 0) {
1301 thread = strtoull(p+16, (char **)&p, 16);
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001302 cpu = find_cpu(thread);
1303 if (cpu != NULL) {
Andreas Färbercb446ec2013-05-01 14:24:52 +02001304 cpu_synchronize_state(cpu);
Kevin Wolf5accecb2015-10-13 09:38:50 +02001305 /* memtohex() doubles the required space */
1306 len = snprintf((char *)mem_buf, sizeof(buf) / 2,
Andreas Färber55e5c282012-12-17 06:18:02 +01001307 "CPU#%d [%s]", cpu->cpu_index,
Andreas Färber259186a2013-01-17 18:51:17 +01001308 cpu->halted ? "halted " : "running");
Doug Gale5c9522b2017-12-02 20:30:37 -05001309 trace_gdbstub_op_extra_info((char *)mem_buf);
Nathan Froyd1e9fa732009-06-03 11:33:08 -07001310 memtohex(buf, mem_buf, len);
1311 put_packet(s, buf);
1312 }
aliguori880a7572008-11-18 20:30:24 +00001313 break;
edgar_igl60897d32008-05-09 08:25:14 +00001314 }
blueswir10b8a9882009-03-07 10:51:36 +00001315#ifdef CONFIG_USER_ONLY
Jan Kiszka070949f2015-02-07 09:38:42 +01001316 else if (strcmp(p, "Offsets") == 0) {
Andreas Färber0429a972013-08-26 18:14:44 +02001317 TaskState *ts = s->c_cpu->opaque;
pbrook978efd62006-06-17 18:30:42 +00001318
blueswir1363a37d2008-08-21 17:58:08 +00001319 snprintf(buf, sizeof(buf),
1320 "Text=" TARGET_ABI_FMT_lx ";Data=" TARGET_ABI_FMT_lx
1321 ";Bss=" TARGET_ABI_FMT_lx,
1322 ts->info->code_offset,
1323 ts->info->data_offset,
1324 ts->info->data_offset);
pbrook978efd62006-06-17 18:30:42 +00001325 put_packet(s, buf);
1326 break;
1327 }
blueswir10b8a9882009-03-07 10:51:36 +00001328#else /* !CONFIG_USER_ONLY */
aliguori8a34a0f2009-03-05 23:01:55 +00001329 else if (strncmp(p, "Rcmd,", 5) == 0) {
1330 int len = strlen(p + 5);
1331
1332 if ((len % 2) != 0) {
1333 put_packet(s, "E01");
1334 break;
1335 }
aliguori8a34a0f2009-03-05 23:01:55 +00001336 len = len / 2;
Kevin Wolf5accecb2015-10-13 09:38:50 +02001337 hextomem(mem_buf, p + 5, len);
aliguori8a34a0f2009-03-05 23:01:55 +00001338 mem_buf[len++] = 0;
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001339 qemu_chr_be_write(s->mon_chr, mem_buf, len);
aliguori8a34a0f2009-03-05 23:01:55 +00001340 put_packet(s, "OK");
1341 break;
1342 }
blueswir10b8a9882009-03-07 10:51:36 +00001343#endif /* !CONFIG_USER_ONLY */
Jan Kiszka4dabe742015-02-07 09:38:43 +01001344 if (is_query_packet(p, "Supported", ':')) {
blueswir15b3715b2008-10-25 11:18:12 +00001345 snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH);
Andreas Färber5b24c642013-07-07 15:08:22 +02001346 cc = CPU_GET_CLASS(first_cpu);
1347 if (cc->gdb_core_xml_file != NULL) {
1348 pstrcat(buf, sizeof(buf), ";qXfer:features:read+");
1349 }
pbrook56aebc82008-10-11 17:55:29 +00001350 put_packet(s, buf);
1351 break;
1352 }
pbrook56aebc82008-10-11 17:55:29 +00001353 if (strncmp(p, "Xfer:features:read:", 19) == 0) {
1354 const char *xml;
1355 target_ulong total_len;
1356
Andreas Färber5b24c642013-07-07 15:08:22 +02001357 cc = CPU_GET_CLASS(first_cpu);
1358 if (cc->gdb_core_xml_file == NULL) {
1359 goto unknown_command;
1360 }
1361
Andreas Färber5b50e792013-06-29 04:18:45 +02001362 gdb_has_xml = true;
pbrook56aebc82008-10-11 17:55:29 +00001363 p += 19;
Andreas Färber5b24c642013-07-07 15:08:22 +02001364 xml = get_feature_xml(p, &p, cc);
pbrook56aebc82008-10-11 17:55:29 +00001365 if (!xml) {
blueswir15b3715b2008-10-25 11:18:12 +00001366 snprintf(buf, sizeof(buf), "E00");
pbrook56aebc82008-10-11 17:55:29 +00001367 put_packet(s, buf);
1368 break;
1369 }
1370
1371 if (*p == ':')
1372 p++;
1373 addr = strtoul(p, (char **)&p, 16);
1374 if (*p == ',')
1375 p++;
1376 len = strtoul(p, (char **)&p, 16);
1377
1378 total_len = strlen(xml);
1379 if (addr > total_len) {
blueswir15b3715b2008-10-25 11:18:12 +00001380 snprintf(buf, sizeof(buf), "E00");
pbrook56aebc82008-10-11 17:55:29 +00001381 put_packet(s, buf);
1382 break;
1383 }
1384 if (len > (MAX_PACKET_LENGTH - 5) / 2)
1385 len = (MAX_PACKET_LENGTH - 5) / 2;
1386 if (len < total_len - addr) {
1387 buf[0] = 'm';
1388 len = memtox(buf + 1, xml + addr, len);
1389 } else {
1390 buf[0] = 'l';
1391 len = memtox(buf + 1, xml + addr, total_len - addr);
1392 }
Doug Gale5c9522b2017-12-02 20:30:37 -05001393 put_packet_binary(s, buf, len + 1, true);
pbrook56aebc82008-10-11 17:55:29 +00001394 break;
1395 }
Jan Kiszkaa3919382015-02-07 09:38:44 +01001396 if (is_query_packet(p, "Attached", ':')) {
1397 put_packet(s, GDB_ATTACHED);
1398 break;
1399 }
pbrook56aebc82008-10-11 17:55:29 +00001400 /* Unrecognised 'q' command. */
1401 goto unknown_command;
1402
bellard858693c2004-03-31 18:52:07 +00001403 default:
pbrook56aebc82008-10-11 17:55:29 +00001404 unknown_command:
bellard858693c2004-03-31 18:52:07 +00001405 /* put empty packet */
1406 buf[0] = '\0';
1407 put_packet(s, buf);
1408 break;
1409 }
1410 return RS_IDLE;
1411}
1412
Andreas Färber64f6b342013-05-27 02:06:09 +02001413void gdb_set_stop_cpu(CPUState *cpu)
aliguori880a7572008-11-18 20:30:24 +00001414{
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001415 gdbserver_state->c_cpu = cpu;
1416 gdbserver_state->g_cpu = cpu;
aliguori880a7572008-11-18 20:30:24 +00001417}
1418
bellard1fddef42005-04-17 19:16:13 +00001419#ifndef CONFIG_USER_ONLY
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001420static void gdb_vm_state_change(void *opaque, int running, RunState state)
bellard858693c2004-03-31 18:52:07 +00001421{
aliguori880a7572008-11-18 20:30:24 +00001422 GDBState *s = gdbserver_state;
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001423 CPUState *cpu = s->c_cpu;
bellard858693c2004-03-31 18:52:07 +00001424 char buf[256];
aliguorid6fc1b32008-11-18 19:55:44 +00001425 const char *type;
bellard858693c2004-03-31 18:52:07 +00001426 int ret;
1427
Meador Ingecdb432b2012-03-15 17:49:45 +00001428 if (running || s->state == RS_INACTIVE) {
1429 return;
1430 }
1431 /* Is there a GDB syscall waiting to be sent? */
1432 if (s->current_syscall_cb) {
1433 put_packet(s, s->syscall_buf);
pbrooka2d1eba2007-01-28 03:10:55 +00001434 return;
Jan Kiszkae07bbac2011-02-09 16:29:40 +01001435 }
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001436 switch (state) {
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001437 case RUN_STATE_DEBUG:
Andreas Färberff4700b2013-08-26 18:23:18 +02001438 if (cpu->watchpoint_hit) {
1439 switch (cpu->watchpoint_hit->flags & BP_MEM_ACCESS) {
aliguoria1d1bb32008-11-18 20:07:32 +00001440 case BP_MEM_READ:
aliguorid6fc1b32008-11-18 19:55:44 +00001441 type = "r";
1442 break;
aliguoria1d1bb32008-11-18 20:07:32 +00001443 case BP_MEM_ACCESS:
aliguorid6fc1b32008-11-18 19:55:44 +00001444 type = "a";
1445 break;
1446 default:
1447 type = "";
1448 break;
1449 }
Doug Gale5c9522b2017-12-02 20:30:37 -05001450 trace_gdbstub_hit_watchpoint(type, cpu_gdb_index(cpu),
1451 (target_ulong)cpu->watchpoint_hit->vaddr);
aliguori880a7572008-11-18 20:30:24 +00001452 snprintf(buf, sizeof(buf),
1453 "T%02xthread:%02x;%swatch:" TARGET_FMT_lx ";",
Alex Bennéed2a6c852017-07-12 11:52:14 +01001454 GDB_SIGNAL_TRAP, cpu_gdb_index(cpu), type,
Andreas Färberff4700b2013-08-26 18:23:18 +02001455 (target_ulong)cpu->watchpoint_hit->vaddr);
1456 cpu->watchpoint_hit = NULL;
Jan Kiszka425189a2011-03-22 11:02:09 +01001457 goto send_packet;
Doug Gale5c9522b2017-12-02 20:30:37 -05001458 } else {
1459 trace_gdbstub_hit_break();
pbrook6658ffb2007-03-16 23:58:11 +00001460 }
Peter Crosthwaitebbd77c12015-06-23 19:31:15 -07001461 tb_flush(cpu);
aurel32ca587a82008-12-18 22:44:13 +00001462 ret = GDB_SIGNAL_TRAP;
Jan Kiszka425189a2011-03-22 11:02:09 +01001463 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001464 case RUN_STATE_PAUSED:
Doug Gale5c9522b2017-12-02 20:30:37 -05001465 trace_gdbstub_hit_paused();
aliguori9781e042009-01-22 17:15:29 +00001466 ret = GDB_SIGNAL_INT;
Jan Kiszka425189a2011-03-22 11:02:09 +01001467 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001468 case RUN_STATE_SHUTDOWN:
Doug Gale5c9522b2017-12-02 20:30:37 -05001469 trace_gdbstub_hit_shutdown();
Jan Kiszka425189a2011-03-22 11:02:09 +01001470 ret = GDB_SIGNAL_QUIT;
1471 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001472 case RUN_STATE_IO_ERROR:
Doug Gale5c9522b2017-12-02 20:30:37 -05001473 trace_gdbstub_hit_io_error();
Jan Kiszka425189a2011-03-22 11:02:09 +01001474 ret = GDB_SIGNAL_IO;
1475 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001476 case RUN_STATE_WATCHDOG:
Doug Gale5c9522b2017-12-02 20:30:37 -05001477 trace_gdbstub_hit_watchdog();
Jan Kiszka425189a2011-03-22 11:02:09 +01001478 ret = GDB_SIGNAL_ALRM;
1479 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001480 case RUN_STATE_INTERNAL_ERROR:
Doug Gale5c9522b2017-12-02 20:30:37 -05001481 trace_gdbstub_hit_internal_error();
Jan Kiszka425189a2011-03-22 11:02:09 +01001482 ret = GDB_SIGNAL_ABRT;
1483 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001484 case RUN_STATE_SAVE_VM:
1485 case RUN_STATE_RESTORE_VM:
Jan Kiszka425189a2011-03-22 11:02:09 +01001486 return;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001487 case RUN_STATE_FINISH_MIGRATE:
Jan Kiszka425189a2011-03-22 11:02:09 +01001488 ret = GDB_SIGNAL_XCPU;
1489 break;
1490 default:
Doug Gale5c9522b2017-12-02 20:30:37 -05001491 trace_gdbstub_hit_unknown(state);
Jan Kiszka425189a2011-03-22 11:02:09 +01001492 ret = GDB_SIGNAL_UNKNOWN;
1493 break;
bellardbbeb7b52006-04-23 18:42:15 +00001494 }
Jan Kiszka226d0072015-07-24 18:52:31 +02001495 gdb_set_stop_cpu(cpu);
Alex Bennéed2a6c852017-07-12 11:52:14 +01001496 snprintf(buf, sizeof(buf), "T%02xthread:%02x;", ret, cpu_gdb_index(cpu));
Jan Kiszka425189a2011-03-22 11:02:09 +01001497
1498send_packet:
bellard858693c2004-03-31 18:52:07 +00001499 put_packet(s, buf);
Jan Kiszka425189a2011-03-22 11:02:09 +01001500
1501 /* disable single step if it was enabled */
Andreas Färber3825b282013-06-24 18:41:06 +02001502 cpu_single_step(cpu, 0);
bellard858693c2004-03-31 18:52:07 +00001503}
bellard1fddef42005-04-17 19:16:13 +00001504#endif
bellard858693c2004-03-31 18:52:07 +00001505
pbrooka2d1eba2007-01-28 03:10:55 +00001506/* Send a gdb syscall request.
1507 This accepts limited printf-style format specifiers, specifically:
pbrooka87295e2007-05-26 15:09:38 +00001508 %x - target_ulong argument printed in hex.
1509 %lx - 64-bit argument printed in hex.
1510 %s - string pointer (target_ulong) and length (int) pair. */
Peter Maydell19239b32015-09-07 10:39:27 +01001511void gdb_do_syscallv(gdb_syscall_complete_cb cb, const char *fmt, va_list va)
pbrooka2d1eba2007-01-28 03:10:55 +00001512{
pbrooka2d1eba2007-01-28 03:10:55 +00001513 char *p;
Meador Ingecdb432b2012-03-15 17:49:45 +00001514 char *p_end;
pbrooka2d1eba2007-01-28 03:10:55 +00001515 target_ulong addr;
pbrooka87295e2007-05-26 15:09:38 +00001516 uint64_t i64;
pbrooka2d1eba2007-01-28 03:10:55 +00001517 GDBState *s;
1518
aliguori880a7572008-11-18 20:30:24 +00001519 s = gdbserver_state;
pbrooka2d1eba2007-01-28 03:10:55 +00001520 if (!s)
1521 return;
Meador Ingecdb432b2012-03-15 17:49:45 +00001522 s->current_syscall_cb = cb;
pbrooka2d1eba2007-01-28 03:10:55 +00001523#ifndef CONFIG_USER_ONLY
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001524 vm_stop(RUN_STATE_DEBUG);
pbrooka2d1eba2007-01-28 03:10:55 +00001525#endif
Meador Ingecdb432b2012-03-15 17:49:45 +00001526 p = s->syscall_buf;
1527 p_end = &s->syscall_buf[sizeof(s->syscall_buf)];
pbrooka2d1eba2007-01-28 03:10:55 +00001528 *(p++) = 'F';
1529 while (*fmt) {
1530 if (*fmt == '%') {
1531 fmt++;
1532 switch (*fmt++) {
1533 case 'x':
1534 addr = va_arg(va, target_ulong);
Meador Ingecdb432b2012-03-15 17:49:45 +00001535 p += snprintf(p, p_end - p, TARGET_FMT_lx, addr);
pbrooka2d1eba2007-01-28 03:10:55 +00001536 break;
pbrooka87295e2007-05-26 15:09:38 +00001537 case 'l':
1538 if (*(fmt++) != 'x')
1539 goto bad_format;
1540 i64 = va_arg(va, uint64_t);
Meador Ingecdb432b2012-03-15 17:49:45 +00001541 p += snprintf(p, p_end - p, "%" PRIx64, i64);
pbrooka87295e2007-05-26 15:09:38 +00001542 break;
pbrooka2d1eba2007-01-28 03:10:55 +00001543 case 's':
1544 addr = va_arg(va, target_ulong);
Meador Ingecdb432b2012-03-15 17:49:45 +00001545 p += snprintf(p, p_end - p, TARGET_FMT_lx "/%x",
blueswir1363a37d2008-08-21 17:58:08 +00001546 addr, va_arg(va, int));
pbrooka2d1eba2007-01-28 03:10:55 +00001547 break;
1548 default:
pbrooka87295e2007-05-26 15:09:38 +00001549 bad_format:
Ziyue Yang7ae6c572017-01-18 16:03:29 +08001550 error_report("gdbstub: Bad syscall format string '%s'",
1551 fmt - 1);
pbrooka2d1eba2007-01-28 03:10:55 +00001552 break;
1553 }
1554 } else {
1555 *(p++) = *(fmt++);
1556 }
1557 }
pbrook8a93e022007-08-06 13:19:15 +00001558 *p = 0;
pbrooka2d1eba2007-01-28 03:10:55 +00001559#ifdef CONFIG_USER_ONLY
Meador Ingecdb432b2012-03-15 17:49:45 +00001560 put_packet(s, s->syscall_buf);
Peter Maydell4f710862018-05-15 19:19:58 +01001561 /* Return control to gdb for it to process the syscall request.
1562 * Since the protocol requires that gdb hands control back to us
1563 * using a "here are the results" F packet, we don't need to check
1564 * gdb_handlesig's return value (which is the signal to deliver if
1565 * execution was resumed via a continue packet).
1566 */
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001567 gdb_handlesig(s->c_cpu, 0);
pbrooka2d1eba2007-01-28 03:10:55 +00001568#else
Meador Ingecdb432b2012-03-15 17:49:45 +00001569 /* In this case wait to send the syscall packet until notification that
1570 the CPU has stopped. This must be done because if the packet is sent
1571 now the reply from the syscall request could be received while the CPU
1572 is still in the running state, which can cause packets to be dropped
1573 and state transition 'T' packets to be sent while the syscall is still
1574 being processed. */
Paolo Bonzini9102ded2015-08-18 06:52:09 -07001575 qemu_cpu_kick(s->c_cpu);
pbrooka2d1eba2007-01-28 03:10:55 +00001576#endif
1577}
1578
Peter Maydell19239b32015-09-07 10:39:27 +01001579void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...)
1580{
1581 va_list va;
1582
1583 va_start(va, fmt);
1584 gdb_do_syscallv(cb, fmt, va);
1585 va_end(va);
1586}
1587
bellard6a00d602005-11-21 23:25:50 +00001588static void gdb_read_byte(GDBState *s, int ch)
bellard858693c2004-03-31 18:52:07 +00001589{
ths60fe76f2007-12-16 03:02:09 +00001590 uint8_t reply;
bellard858693c2004-03-31 18:52:07 +00001591
bellard1fddef42005-04-17 19:16:13 +00001592#ifndef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +00001593 if (s->last_packet_len) {
1594 /* Waiting for a response to the last packet. If we see the start
1595 of a new command then abandon the previous response. */
1596 if (ch == '-') {
Doug Gale5c9522b2017-12-02 20:30:37 -05001597 trace_gdbstub_err_got_nack();
thsffe8ab82007-12-16 03:16:05 +00001598 put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
Alex Bennée118e2262017-07-12 11:52:13 +01001599 } else if (ch == '+') {
Doug Gale5c9522b2017-12-02 20:30:37 -05001600 trace_gdbstub_io_got_ack();
Alex Bennée118e2262017-07-12 11:52:13 +01001601 } else {
Doug Gale5c9522b2017-12-02 20:30:37 -05001602 trace_gdbstub_io_got_unexpected((uint8_t)ch);
pbrook4046d912007-01-28 01:53:16 +00001603 }
Alex Bennée118e2262017-07-12 11:52:13 +01001604
pbrook4046d912007-01-28 01:53:16 +00001605 if (ch == '+' || ch == '$')
1606 s->last_packet_len = 0;
1607 if (ch != '$')
1608 return;
1609 }
Luiz Capitulino13548692011-07-29 15:36:43 -03001610 if (runstate_is_running()) {
bellard858693c2004-03-31 18:52:07 +00001611 /* when the CPU is running, we cannot do anything except stop
1612 it when receiving a char */
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001613 vm_stop(RUN_STATE_PAUSED);
ths5fafdf22007-09-16 21:08:06 +00001614 } else
bellard1fddef42005-04-17 19:16:13 +00001615#endif
bellard41625032005-04-24 10:07:11 +00001616 {
bellard858693c2004-03-31 18:52:07 +00001617 switch(s->state) {
1618 case RS_IDLE:
1619 if (ch == '$') {
Doug Gale4bf43122017-05-01 12:22:10 -04001620 /* start of command packet */
bellard858693c2004-03-31 18:52:07 +00001621 s->line_buf_index = 0;
Doug Gale4bf43122017-05-01 12:22:10 -04001622 s->line_sum = 0;
bellard858693c2004-03-31 18:52:07 +00001623 s->state = RS_GETLINE;
Doug Gale4bf43122017-05-01 12:22:10 -04001624 } else {
Doug Gale5c9522b2017-12-02 20:30:37 -05001625 trace_gdbstub_err_garbage((uint8_t)ch);
bellard4c3a88a2003-07-26 12:06:08 +00001626 }
1627 break;
bellard858693c2004-03-31 18:52:07 +00001628 case RS_GETLINE:
Doug Gale4bf43122017-05-01 12:22:10 -04001629 if (ch == '}') {
1630 /* start escape sequence */
1631 s->state = RS_GETLINE_ESC;
1632 s->line_sum += ch;
1633 } else if (ch == '*') {
1634 /* start run length encoding sequence */
1635 s->state = RS_GETLINE_RLE;
1636 s->line_sum += ch;
1637 } else if (ch == '#') {
1638 /* end of command, start of checksum*/
1639 s->state = RS_CHKSUM1;
bellard858693c2004-03-31 18:52:07 +00001640 } else if (s->line_buf_index >= sizeof(s->line_buf) - 1) {
Doug Gale5c9522b2017-12-02 20:30:37 -05001641 trace_gdbstub_err_overrun();
bellard858693c2004-03-31 18:52:07 +00001642 s->state = RS_IDLE;
1643 } else {
Doug Gale4bf43122017-05-01 12:22:10 -04001644 /* unescaped command character */
1645 s->line_buf[s->line_buf_index++] = ch;
1646 s->line_sum += ch;
1647 }
1648 break;
1649 case RS_GETLINE_ESC:
1650 if (ch == '#') {
1651 /* unexpected end of command in escape sequence */
1652 s->state = RS_CHKSUM1;
1653 } else if (s->line_buf_index >= sizeof(s->line_buf) - 1) {
1654 /* command buffer overrun */
Doug Gale5c9522b2017-12-02 20:30:37 -05001655 trace_gdbstub_err_overrun();
Doug Gale4bf43122017-05-01 12:22:10 -04001656 s->state = RS_IDLE;
1657 } else {
1658 /* parse escaped character and leave escape state */
1659 s->line_buf[s->line_buf_index++] = ch ^ 0x20;
1660 s->line_sum += ch;
1661 s->state = RS_GETLINE;
1662 }
1663 break;
1664 case RS_GETLINE_RLE:
1665 if (ch < ' ') {
1666 /* invalid RLE count encoding */
Doug Gale5c9522b2017-12-02 20:30:37 -05001667 trace_gdbstub_err_invalid_repeat((uint8_t)ch);
Doug Gale4bf43122017-05-01 12:22:10 -04001668 s->state = RS_GETLINE;
1669 } else {
1670 /* decode repeat length */
1671 int repeat = (unsigned char)ch - ' ' + 3;
1672 if (s->line_buf_index + repeat >= sizeof(s->line_buf) - 1) {
1673 /* that many repeats would overrun the command buffer */
Doug Gale5c9522b2017-12-02 20:30:37 -05001674 trace_gdbstub_err_overrun();
Doug Gale4bf43122017-05-01 12:22:10 -04001675 s->state = RS_IDLE;
1676 } else if (s->line_buf_index < 1) {
1677 /* got a repeat but we have nothing to repeat */
Doug Gale5c9522b2017-12-02 20:30:37 -05001678 trace_gdbstub_err_invalid_rle();
Doug Gale4bf43122017-05-01 12:22:10 -04001679 s->state = RS_GETLINE;
1680 } else {
1681 /* repeat the last character */
1682 memset(s->line_buf + s->line_buf_index,
1683 s->line_buf[s->line_buf_index - 1], repeat);
1684 s->line_buf_index += repeat;
1685 s->line_sum += ch;
1686 s->state = RS_GETLINE;
1687 }
bellard858693c2004-03-31 18:52:07 +00001688 }
1689 break;
1690 case RS_CHKSUM1:
Doug Gale4bf43122017-05-01 12:22:10 -04001691 /* get high hex digit of checksum */
1692 if (!isxdigit(ch)) {
Doug Gale5c9522b2017-12-02 20:30:37 -05001693 trace_gdbstub_err_checksum_invalid((uint8_t)ch);
Doug Gale4bf43122017-05-01 12:22:10 -04001694 s->state = RS_GETLINE;
1695 break;
1696 }
bellard858693c2004-03-31 18:52:07 +00001697 s->line_buf[s->line_buf_index] = '\0';
1698 s->line_csum = fromhex(ch) << 4;
1699 s->state = RS_CHKSUM2;
1700 break;
1701 case RS_CHKSUM2:
Doug Gale4bf43122017-05-01 12:22:10 -04001702 /* get low hex digit of checksum */
1703 if (!isxdigit(ch)) {
Doug Gale5c9522b2017-12-02 20:30:37 -05001704 trace_gdbstub_err_checksum_invalid((uint8_t)ch);
Doug Gale4bf43122017-05-01 12:22:10 -04001705 s->state = RS_GETLINE;
1706 break;
bellard858693c2004-03-31 18:52:07 +00001707 }
Doug Gale4bf43122017-05-01 12:22:10 -04001708 s->line_csum |= fromhex(ch);
1709
1710 if (s->line_csum != (s->line_sum & 0xff)) {
Doug Gale5c9522b2017-12-02 20:30:37 -05001711 trace_gdbstub_err_checksum_incorrect(s->line_sum, s->line_csum);
Doug Gale4bf43122017-05-01 12:22:10 -04001712 /* send NAK reply */
ths60fe76f2007-12-16 03:02:09 +00001713 reply = '-';
1714 put_buffer(s, &reply, 1);
bellard858693c2004-03-31 18:52:07 +00001715 s->state = RS_IDLE;
1716 } else {
Doug Gale4bf43122017-05-01 12:22:10 -04001717 /* send ACK reply */
ths60fe76f2007-12-16 03:02:09 +00001718 reply = '+';
1719 put_buffer(s, &reply, 1);
aliguori880a7572008-11-18 20:30:24 +00001720 s->state = gdb_handle_packet(s, s->line_buf);
bellard858693c2004-03-31 18:52:07 +00001721 }
bellardb4608c02003-06-27 17:34:32 +00001722 break;
pbrooka2d1eba2007-01-28 03:10:55 +00001723 default:
1724 abort();
bellardb4608c02003-06-27 17:34:32 +00001725 }
1726 }
bellard858693c2004-03-31 18:52:07 +00001727}
1728
Paul Brook0e1c9c52010-06-16 13:03:51 +01001729/* Tell the remote gdb that the process has exited. */
Andreas Färber9349b4f2012-03-14 01:38:32 +01001730void gdb_exit(CPUArchState *env, int code)
Paul Brook0e1c9c52010-06-16 13:03:51 +01001731{
1732 GDBState *s;
1733 char buf[4];
1734
1735 s = gdbserver_state;
1736 if (!s) {
1737 return;
1738 }
1739#ifdef CONFIG_USER_ONLY
1740 if (gdbserver_fd < 0 || s->fd < 0) {
1741 return;
1742 }
1743#endif
1744
Doug Gale5c9522b2017-12-02 20:30:37 -05001745 trace_gdbstub_op_exiting((uint8_t)code);
1746
Paul Brook0e1c9c52010-06-16 13:03:51 +01001747 snprintf(buf, sizeof(buf), "W%02x", (uint8_t)code);
1748 put_packet(s, buf);
Fabien Chouteaue2af15b2011-01-13 12:46:57 +01001749
1750#ifndef CONFIG_USER_ONLY
Marc-André Lureau1ce26102017-01-27 00:49:13 +04001751 qemu_chr_fe_deinit(&s->chr, true);
Fabien Chouteaue2af15b2011-01-13 12:46:57 +01001752#endif
Paul Brook0e1c9c52010-06-16 13:03:51 +01001753}
1754
bellard1fddef42005-04-17 19:16:13 +00001755#ifdef CONFIG_USER_ONLY
1756int
Andreas Färberdb6b81d2013-06-27 19:49:31 +02001757gdb_handlesig(CPUState *cpu, int sig)
bellard1fddef42005-04-17 19:16:13 +00001758{
Andreas Färber5ca666c2013-06-24 19:20:57 +02001759 GDBState *s;
1760 char buf[256];
1761 int n;
bellard1fddef42005-04-17 19:16:13 +00001762
Andreas Färber5ca666c2013-06-24 19:20:57 +02001763 s = gdbserver_state;
1764 if (gdbserver_fd < 0 || s->fd < 0) {
1765 return sig;
bellard1fddef42005-04-17 19:16:13 +00001766 }
1767
Andreas Färber5ca666c2013-06-24 19:20:57 +02001768 /* disable single step if it was enabled */
Andreas Färber3825b282013-06-24 18:41:06 +02001769 cpu_single_step(cpu, 0);
Peter Crosthwaitebbd77c12015-06-23 19:31:15 -07001770 tb_flush(cpu);
bellard1fddef42005-04-17 19:16:13 +00001771
Andreas Färber5ca666c2013-06-24 19:20:57 +02001772 if (sig != 0) {
1773 snprintf(buf, sizeof(buf), "S%02x", target_signal_to_gdb(sig));
1774 put_packet(s, buf);
1775 }
1776 /* put_packet() might have detected that the peer terminated the
1777 connection. */
1778 if (s->fd < 0) {
1779 return sig;
1780 }
1781
1782 sig = 0;
1783 s->state = RS_IDLE;
1784 s->running_state = 0;
1785 while (s->running_state == 0) {
1786 n = read(s->fd, buf, 256);
1787 if (n > 0) {
1788 int i;
1789
1790 for (i = 0; i < n; i++) {
1791 gdb_read_byte(s, buf[i]);
1792 }
Peter Wu5819e3e2016-06-05 16:35:48 +02001793 } else {
Andreas Färber5ca666c2013-06-24 19:20:57 +02001794 /* XXX: Connection closed. Should probably wait for another
1795 connection before continuing. */
Peter Wu5819e3e2016-06-05 16:35:48 +02001796 if (n == 0) {
1797 close(s->fd);
1798 }
1799 s->fd = -1;
Andreas Färber5ca666c2013-06-24 19:20:57 +02001800 return sig;
bellard1fddef42005-04-17 19:16:13 +00001801 }
Andreas Färber5ca666c2013-06-24 19:20:57 +02001802 }
1803 sig = s->signal;
1804 s->signal = 0;
1805 return sig;
bellard1fddef42005-04-17 19:16:13 +00001806}
bellarde9009672005-04-26 20:42:36 +00001807
aurel32ca587a82008-12-18 22:44:13 +00001808/* Tell the remote gdb that the process has exited due to SIG. */
Andreas Färber9349b4f2012-03-14 01:38:32 +01001809void gdb_signalled(CPUArchState *env, int sig)
aurel32ca587a82008-12-18 22:44:13 +00001810{
Andreas Färber5ca666c2013-06-24 19:20:57 +02001811 GDBState *s;
1812 char buf[4];
aurel32ca587a82008-12-18 22:44:13 +00001813
Andreas Färber5ca666c2013-06-24 19:20:57 +02001814 s = gdbserver_state;
1815 if (gdbserver_fd < 0 || s->fd < 0) {
1816 return;
1817 }
aurel32ca587a82008-12-18 22:44:13 +00001818
Andreas Färber5ca666c2013-06-24 19:20:57 +02001819 snprintf(buf, sizeof(buf), "X%02x", target_signal_to_gdb(sig));
1820 put_packet(s, buf);
aurel32ca587a82008-12-18 22:44:13 +00001821}
bellard1fddef42005-04-17 19:16:13 +00001822
Peter Maydell2f652222018-05-14 18:30:44 +01001823static bool gdb_accept(void)
bellard858693c2004-03-31 18:52:07 +00001824{
1825 GDBState *s;
1826 struct sockaddr_in sockaddr;
1827 socklen_t len;
MORITA Kazutakabf1c8522013-02-22 12:39:50 +09001828 int fd;
bellard858693c2004-03-31 18:52:07 +00001829
1830 for(;;) {
1831 len = sizeof(sockaddr);
1832 fd = accept(gdbserver_fd, (struct sockaddr *)&sockaddr, &len);
1833 if (fd < 0 && errno != EINTR) {
1834 perror("accept");
Peter Maydell2f652222018-05-14 18:30:44 +01001835 return false;
bellard858693c2004-03-31 18:52:07 +00001836 } else if (fd >= 0) {
Peter Maydellf5bdd782018-05-14 18:30:43 +01001837 qemu_set_cloexec(fd);
bellard858693c2004-03-31 18:52:07 +00001838 break;
1839 }
1840 }
1841
1842 /* set short latency */
Peter Maydell2f652222018-05-14 18:30:44 +01001843 if (socket_set_nodelay(fd)) {
1844 perror("setsockopt");
Philippe Mathieu-Daudéead75d82018-05-24 19:34:58 -03001845 close(fd);
Peter Maydell2f652222018-05-14 18:30:44 +01001846 return false;
1847 }
ths3b46e622007-09-17 08:09:54 +00001848
Anthony Liguori7267c092011-08-20 22:09:37 -05001849 s = g_malloc0(sizeof(GDBState));
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02001850 s->c_cpu = first_cpu;
1851 s->g_cpu = first_cpu;
bellard858693c2004-03-31 18:52:07 +00001852 s->fd = fd;
Andreas Färber5b50e792013-06-29 04:18:45 +02001853 gdb_has_xml = false;
bellard858693c2004-03-31 18:52:07 +00001854
aliguori880a7572008-11-18 20:30:24 +00001855 gdbserver_state = s;
Peter Maydell2f652222018-05-14 18:30:44 +01001856 return true;
bellard858693c2004-03-31 18:52:07 +00001857}
1858
1859static int gdbserver_open(int port)
1860{
1861 struct sockaddr_in sockaddr;
Sebastian Ottlik6669ca12013-10-02 12:23:13 +02001862 int fd, ret;
bellard858693c2004-03-31 18:52:07 +00001863
1864 fd = socket(PF_INET, SOCK_STREAM, 0);
1865 if (fd < 0) {
1866 perror("socket");
1867 return -1;
1868 }
Peter Maydellf5bdd782018-05-14 18:30:43 +01001869 qemu_set_cloexec(fd);
bellard858693c2004-03-31 18:52:07 +00001870
Sebastian Ottlik6669ca12013-10-02 12:23:13 +02001871 socket_set_fast_reuse(fd);
bellard858693c2004-03-31 18:52:07 +00001872
1873 sockaddr.sin_family = AF_INET;
1874 sockaddr.sin_port = htons(port);
1875 sockaddr.sin_addr.s_addr = 0;
1876 ret = bind(fd, (struct sockaddr *)&sockaddr, sizeof(sockaddr));
1877 if (ret < 0) {
1878 perror("bind");
Peter Maydellbb161722011-12-24 23:37:24 +00001879 close(fd);
bellard858693c2004-03-31 18:52:07 +00001880 return -1;
1881 }
Peter Wu96165b92016-05-04 11:32:17 +02001882 ret = listen(fd, 1);
bellard858693c2004-03-31 18:52:07 +00001883 if (ret < 0) {
1884 perror("listen");
Peter Maydellbb161722011-12-24 23:37:24 +00001885 close(fd);
bellard858693c2004-03-31 18:52:07 +00001886 return -1;
1887 }
bellard858693c2004-03-31 18:52:07 +00001888 return fd;
1889}
1890
1891int gdbserver_start(int port)
1892{
1893 gdbserver_fd = gdbserver_open(port);
1894 if (gdbserver_fd < 0)
1895 return -1;
1896 /* accept connections */
Peter Maydell2f652222018-05-14 18:30:44 +01001897 if (!gdb_accept()) {
1898 close(gdbserver_fd);
1899 gdbserver_fd = -1;
1900 return -1;
1901 }
bellardb4608c02003-06-27 17:34:32 +00001902 return 0;
1903}
aurel322b1319c2008-12-18 22:44:04 +00001904
1905/* Disable gdb stub for child processes. */
Peter Crosthwaitef7ec7f72015-06-23 19:31:16 -07001906void gdbserver_fork(CPUState *cpu)
aurel322b1319c2008-12-18 22:44:04 +00001907{
1908 GDBState *s = gdbserver_state;
Andreas Färber75a34032013-09-02 16:57:02 +02001909
1910 if (gdbserver_fd < 0 || s->fd < 0) {
1911 return;
1912 }
aurel322b1319c2008-12-18 22:44:04 +00001913 close(s->fd);
1914 s->fd = -1;
Andreas Färberb3310ab2013-09-02 17:26:20 +02001915 cpu_breakpoint_remove_all(cpu, BP_GDB);
Andreas Färber75a34032013-09-02 16:57:02 +02001916 cpu_watchpoint_remove_all(cpu, BP_GDB);
aurel322b1319c2008-12-18 22:44:04 +00001917}
pbrook4046d912007-01-28 01:53:16 +00001918#else
thsaa1f17c2007-07-11 22:48:58 +00001919static int gdb_chr_can_receive(void *opaque)
pbrook4046d912007-01-28 01:53:16 +00001920{
pbrook56aebc82008-10-11 17:55:29 +00001921 /* We can handle an arbitrarily large amount of data.
1922 Pick the maximum packet size, which is as good as anything. */
1923 return MAX_PACKET_LENGTH;
pbrook4046d912007-01-28 01:53:16 +00001924}
1925
thsaa1f17c2007-07-11 22:48:58 +00001926static void gdb_chr_receive(void *opaque, const uint8_t *buf, int size)
pbrook4046d912007-01-28 01:53:16 +00001927{
pbrook4046d912007-01-28 01:53:16 +00001928 int i;
1929
1930 for (i = 0; i < size; i++) {
aliguori880a7572008-11-18 20:30:24 +00001931 gdb_read_byte(gdbserver_state, buf[i]);
pbrook4046d912007-01-28 01:53:16 +00001932 }
1933}
1934
1935static void gdb_chr_event(void *opaque, int event)
1936{
1937 switch (event) {
Amit Shahb6b8df52009-10-07 18:31:16 +05301938 case CHR_EVENT_OPENED:
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001939 vm_stop(RUN_STATE_PAUSED);
Andreas Färber5b50e792013-06-29 04:18:45 +02001940 gdb_has_xml = false;
pbrook4046d912007-01-28 01:53:16 +00001941 break;
1942 default:
1943 break;
1944 }
1945}
1946
aliguori8a34a0f2009-03-05 23:01:55 +00001947static void gdb_monitor_output(GDBState *s, const char *msg, int len)
1948{
1949 char buf[MAX_PACKET_LENGTH];
1950
1951 buf[0] = 'O';
1952 if (len > (MAX_PACKET_LENGTH/2) - 1)
1953 len = (MAX_PACKET_LENGTH/2) - 1;
1954 memtohex(buf + 1, (uint8_t *)msg, len);
1955 put_packet(s, buf);
1956}
1957
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +03001958static int gdb_monitor_write(Chardev *chr, const uint8_t *buf, int len)
aliguori8a34a0f2009-03-05 23:01:55 +00001959{
1960 const char *p = (const char *)buf;
1961 int max_sz;
1962
1963 max_sz = (sizeof(gdbserver_state->last_packet) - 2) / 2;
1964 for (;;) {
1965 if (len <= max_sz) {
1966 gdb_monitor_output(gdbserver_state, p, len);
1967 break;
1968 }
1969 gdb_monitor_output(gdbserver_state, p, max_sz);
1970 p += max_sz;
1971 len -= max_sz;
1972 }
1973 return len;
1974}
1975
aliguori59030a82009-04-05 18:43:41 +00001976#ifndef _WIN32
1977static void gdb_sigterm_handler(int signal)
1978{
Luiz Capitulino13548692011-07-29 15:36:43 -03001979 if (runstate_is_running()) {
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001980 vm_stop(RUN_STATE_PAUSED);
Jan Kiszkae07bbac2011-02-09 16:29:40 +01001981 }
aliguori59030a82009-04-05 18:43:41 +00001982}
1983#endif
1984
Marc-André Lureau777357d2016-12-07 18:39:10 +03001985static void gdb_monitor_open(Chardev *chr, ChardevBackend *backend,
1986 bool *be_opened, Error **errp)
1987{
1988 *be_opened = false;
1989}
1990
1991static void char_gdb_class_init(ObjectClass *oc, void *data)
1992{
1993 ChardevClass *cc = CHARDEV_CLASS(oc);
1994
1995 cc->internal = true;
1996 cc->open = gdb_monitor_open;
1997 cc->chr_write = gdb_monitor_write;
1998}
1999
2000#define TYPE_CHARDEV_GDB "chardev-gdb"
2001
2002static const TypeInfo char_gdb_type_info = {
2003 .name = TYPE_CHARDEV_GDB,
2004 .parent = TYPE_CHARDEV,
2005 .class_init = char_gdb_class_init,
2006};
2007
aliguori59030a82009-04-05 18:43:41 +00002008int gdbserver_start(const char *device)
pbrook4046d912007-01-28 01:53:16 +00002009{
Doug Gale5c9522b2017-12-02 20:30:37 -05002010 trace_gdbstub_op_start(device);
2011
pbrook4046d912007-01-28 01:53:16 +00002012 GDBState *s;
aliguori59030a82009-04-05 18:43:41 +00002013 char gdbstub_device_name[128];
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +03002014 Chardev *chr = NULL;
2015 Chardev *mon_chr;
pbrook4046d912007-01-28 01:53:16 +00002016
Ziyue Yang508b4ec2017-01-18 16:02:41 +08002017 if (!first_cpu) {
2018 error_report("gdbstub: meaningless to attach gdb to a "
2019 "machine without any CPU.");
2020 return -1;
2021 }
2022
aliguori59030a82009-04-05 18:43:41 +00002023 if (!device)
2024 return -1;
2025 if (strcmp(device, "none") != 0) {
2026 if (strstart(device, "tcp:", NULL)) {
2027 /* enforce required TCP attributes */
2028 snprintf(gdbstub_device_name, sizeof(gdbstub_device_name),
2029 "%s,nowait,nodelay,server", device);
2030 device = gdbstub_device_name;
aliguori36556b22009-03-28 18:05:53 +00002031 }
aliguori59030a82009-04-05 18:43:41 +00002032#ifndef _WIN32
2033 else if (strcmp(device, "stdio") == 0) {
2034 struct sigaction act;
pbrookcfc34752007-02-22 01:48:01 +00002035
aliguori59030a82009-04-05 18:43:41 +00002036 memset(&act, 0, sizeof(act));
2037 act.sa_handler = gdb_sigterm_handler;
2038 sigaction(SIGINT, &act, NULL);
2039 }
2040#endif
Marc-André Lureaub4948be2016-10-22 12:52:46 +03002041 chr = qemu_chr_new_noreplay("gdb", device);
aliguori36556b22009-03-28 18:05:53 +00002042 if (!chr)
2043 return -1;
pbrookcfc34752007-02-22 01:48:01 +00002044 }
2045
aliguori36556b22009-03-28 18:05:53 +00002046 s = gdbserver_state;
2047 if (!s) {
Anthony Liguori7267c092011-08-20 22:09:37 -05002048 s = g_malloc0(sizeof(GDBState));
aliguori36556b22009-03-28 18:05:53 +00002049 gdbserver_state = s;
pbrook4046d912007-01-28 01:53:16 +00002050
aliguori36556b22009-03-28 18:05:53 +00002051 qemu_add_vm_change_state_handler(gdb_vm_state_change, NULL);
2052
2053 /* Initialize a monitor terminal for gdb */
Marc-André Lureau777357d2016-12-07 18:39:10 +03002054 mon_chr = qemu_chardev_new(NULL, TYPE_CHARDEV_GDB,
2055 NULL, &error_abort);
aliguori36556b22009-03-28 18:05:53 +00002056 monitor_init(mon_chr, 0);
2057 } else {
Marc-André Lureau1ce26102017-01-27 00:49:13 +04002058 qemu_chr_fe_deinit(&s->chr, true);
aliguori36556b22009-03-28 18:05:53 +00002059 mon_chr = s->mon_chr;
2060 memset(s, 0, sizeof(GDBState));
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +03002061 s->mon_chr = mon_chr;
aliguori36556b22009-03-28 18:05:53 +00002062 }
Andreas Färber2e0f2cf2013-06-27 19:19:39 +02002063 s->c_cpu = first_cpu;
2064 s->g_cpu = first_cpu;
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +03002065 if (chr) {
2066 qemu_chr_fe_init(&s->chr, chr, &error_abort);
Marc-André Lureau5345fdb2016-10-22 12:52:55 +03002067 qemu_chr_fe_set_handlers(&s->chr, gdb_chr_can_receive, gdb_chr_receive,
Anton Nefedov81517ba2017-07-06 15:08:49 +03002068 gdb_chr_event, NULL, NULL, NULL, true);
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +03002069 }
aliguori36556b22009-03-28 18:05:53 +00002070 s->state = chr ? RS_IDLE : RS_INACTIVE;
2071 s->mon_chr = mon_chr;
Meador Ingecdb432b2012-03-15 17:49:45 +00002072 s->current_syscall_cb = NULL;
aliguori8a34a0f2009-03-05 23:01:55 +00002073
pbrook4046d912007-01-28 01:53:16 +00002074 return 0;
2075}
Marc-André Lureau777357d2016-12-07 18:39:10 +03002076
KONRAD Frederic1bb982b2018-03-20 10:39:33 +01002077void gdbserver_cleanup(void)
2078{
2079 if (gdbserver_state) {
2080 put_packet(gdbserver_state, "W00");
2081 }
2082}
2083
Marc-André Lureau777357d2016-12-07 18:39:10 +03002084static void register_types(void)
2085{
2086 type_register_static(&char_gdb_type_info);
2087}
2088
2089type_init(register_types);
pbrook4046d912007-01-28 01:53:16 +00002090#endif