]> git.proxmox.com Git - mirror_qemu.git/blame - gdbstub.c
gdbstub: Add infrastructure to parse cmd packets
[mirror_qemu.git] / gdbstub.c
CommitLineData
b4608c04
FB
1/*
2 * gdb server stub
5fafdf24 3 *
3475187d 4 * Copyright (c) 2003-2005 Fabrice Bellard
b4608c04
FB
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
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
b4608c04 18 */
856dfd8a 19
d38ea87a 20#include "qemu/osdep.h"
a8d25326 21#include "qemu-common.h"
da34e65c 22#include "qapi/error.h"
508b4ecc 23#include "qemu/error-report.h"
856dfd8a 24#include "qemu/ctype.h"
f348b6d1 25#include "qemu/cutils.h"
0b8fa32f 26#include "qemu/module.h"
5c9522b3 27#include "trace-root.h"
f348b6d1 28#ifdef CONFIG_USER_ONLY
1fddef4b
FB
29#include "qemu.h"
30#else
83c9089e 31#include "monitor/monitor.h"
8228e353 32#include "chardev/char.h"
4d43a603 33#include "chardev/char-fe.h"
9c17d615 34#include "sysemu/sysemu.h"
022c62cb 35#include "exec/gdbstub.h"
8f468636 36#include "hw/cpu/cluster.h"
1fddef4b 37#endif
67b915a5 38
56aebc89
PB
39#define MAX_PACKET_LENGTH 4096
40
1de7afc9 41#include "qemu/sockets.h"
b3946626 42#include "sysemu/hw_accel.h"
9c17d615 43#include "sysemu/kvm.h"
f1672e6f 44#include "hw/semihosting/semihost.h"
63c91552 45#include "exec/exec-all.h"
ca587a8e 46
a3919386
JK
47#ifdef CONFIG_USER_ONLY
48#define GDB_ATTACHED "0"
49#else
50#define GDB_ATTACHED "1"
51#endif
52
f3659eee
AF
53static inline int target_memory_rw_debug(CPUState *cpu, target_ulong addr,
54 uint8_t *buf, int len, bool is_write)
44520db1 55{
f3659eee
AF
56 CPUClass *cc = CPU_GET_CLASS(cpu);
57
58 if (cc->memory_rw_debug) {
59 return cc->memory_rw_debug(cpu, addr, buf, len, is_write);
60 }
61 return cpu_memory_rw_debug(cpu, addr, buf, len, is_write);
44520db1 62}
ca587a8e 63
d2a6c857
AB
64/* Return the GDB index for a given vCPU state.
65 *
66 * For user mode this is simply the thread id. In system mode GDB
67 * numbers CPUs from 1 as 0 is reserved as an "any cpu" index.
68 */
69static inline int cpu_gdb_index(CPUState *cpu)
70{
71#if defined(CONFIG_USER_ONLY)
bd88c780
AB
72 TaskState *ts = (TaskState *) cpu->opaque;
73 return ts->ts_tid;
d2a6c857
AB
74#else
75 return cpu->cpu_index + 1;
76#endif
77}
78
ca587a8e
AJ
79enum {
80 GDB_SIGNAL_0 = 0,
81 GDB_SIGNAL_INT = 2,
425189a8 82 GDB_SIGNAL_QUIT = 3,
ca587a8e 83 GDB_SIGNAL_TRAP = 5,
425189a8
JK
84 GDB_SIGNAL_ABRT = 6,
85 GDB_SIGNAL_ALRM = 14,
86 GDB_SIGNAL_IO = 23,
87 GDB_SIGNAL_XCPU = 24,
ca587a8e
AJ
88 GDB_SIGNAL_UNKNOWN = 143
89};
90
91#ifdef CONFIG_USER_ONLY
92
93/* Map target signal numbers to GDB protocol signal numbers and vice
94 * versa. For user emulation's currently supported systems, we can
95 * assume most signals are defined.
96 */
97
98static int gdb_signal_table[] = {
99 0,
100 TARGET_SIGHUP,
101 TARGET_SIGINT,
102 TARGET_SIGQUIT,
103 TARGET_SIGILL,
104 TARGET_SIGTRAP,
105 TARGET_SIGABRT,
106 -1, /* SIGEMT */
107 TARGET_SIGFPE,
108 TARGET_SIGKILL,
109 TARGET_SIGBUS,
110 TARGET_SIGSEGV,
111 TARGET_SIGSYS,
112 TARGET_SIGPIPE,
113 TARGET_SIGALRM,
114 TARGET_SIGTERM,
115 TARGET_SIGURG,
116 TARGET_SIGSTOP,
117 TARGET_SIGTSTP,
118 TARGET_SIGCONT,
119 TARGET_SIGCHLD,
120 TARGET_SIGTTIN,
121 TARGET_SIGTTOU,
122 TARGET_SIGIO,
123 TARGET_SIGXCPU,
124 TARGET_SIGXFSZ,
125 TARGET_SIGVTALRM,
126 TARGET_SIGPROF,
127 TARGET_SIGWINCH,
128 -1, /* SIGLOST */
129 TARGET_SIGUSR1,
130 TARGET_SIGUSR2,
c72d5bf8 131#ifdef TARGET_SIGPWR
ca587a8e 132 TARGET_SIGPWR,
c72d5bf8
BS
133#else
134 -1,
135#endif
ca587a8e
AJ
136 -1, /* SIGPOLL */
137 -1,
138 -1,
139 -1,
140 -1,
141 -1,
142 -1,
143 -1,
144 -1,
145 -1,
146 -1,
147 -1,
c72d5bf8 148#ifdef __SIGRTMIN
ca587a8e
AJ
149 __SIGRTMIN + 1,
150 __SIGRTMIN + 2,
151 __SIGRTMIN + 3,
152 __SIGRTMIN + 4,
153 __SIGRTMIN + 5,
154 __SIGRTMIN + 6,
155 __SIGRTMIN + 7,
156 __SIGRTMIN + 8,
157 __SIGRTMIN + 9,
158 __SIGRTMIN + 10,
159 __SIGRTMIN + 11,
160 __SIGRTMIN + 12,
161 __SIGRTMIN + 13,
162 __SIGRTMIN + 14,
163 __SIGRTMIN + 15,
164 __SIGRTMIN + 16,
165 __SIGRTMIN + 17,
166 __SIGRTMIN + 18,
167 __SIGRTMIN + 19,
168 __SIGRTMIN + 20,
169 __SIGRTMIN + 21,
170 __SIGRTMIN + 22,
171 __SIGRTMIN + 23,
172 __SIGRTMIN + 24,
173 __SIGRTMIN + 25,
174 __SIGRTMIN + 26,
175 __SIGRTMIN + 27,
176 __SIGRTMIN + 28,
177 __SIGRTMIN + 29,
178 __SIGRTMIN + 30,
179 __SIGRTMIN + 31,
180 -1, /* SIGCANCEL */
181 __SIGRTMIN,
182 __SIGRTMIN + 32,
183 __SIGRTMIN + 33,
184 __SIGRTMIN + 34,
185 __SIGRTMIN + 35,
186 __SIGRTMIN + 36,
187 __SIGRTMIN + 37,
188 __SIGRTMIN + 38,
189 __SIGRTMIN + 39,
190 __SIGRTMIN + 40,
191 __SIGRTMIN + 41,
192 __SIGRTMIN + 42,
193 __SIGRTMIN + 43,
194 __SIGRTMIN + 44,
195 __SIGRTMIN + 45,
196 __SIGRTMIN + 46,
197 __SIGRTMIN + 47,
198 __SIGRTMIN + 48,
199 __SIGRTMIN + 49,
200 __SIGRTMIN + 50,
201 __SIGRTMIN + 51,
202 __SIGRTMIN + 52,
203 __SIGRTMIN + 53,
204 __SIGRTMIN + 54,
205 __SIGRTMIN + 55,
206 __SIGRTMIN + 56,
207 __SIGRTMIN + 57,
208 __SIGRTMIN + 58,
209 __SIGRTMIN + 59,
210 __SIGRTMIN + 60,
211 __SIGRTMIN + 61,
212 __SIGRTMIN + 62,
213 __SIGRTMIN + 63,
214 __SIGRTMIN + 64,
215 __SIGRTMIN + 65,
216 __SIGRTMIN + 66,
217 __SIGRTMIN + 67,
218 __SIGRTMIN + 68,
219 __SIGRTMIN + 69,
220 __SIGRTMIN + 70,
221 __SIGRTMIN + 71,
222 __SIGRTMIN + 72,
223 __SIGRTMIN + 73,
224 __SIGRTMIN + 74,
225 __SIGRTMIN + 75,
226 __SIGRTMIN + 76,
227 __SIGRTMIN + 77,
228 __SIGRTMIN + 78,
229 __SIGRTMIN + 79,
230 __SIGRTMIN + 80,
231 __SIGRTMIN + 81,
232 __SIGRTMIN + 82,
233 __SIGRTMIN + 83,
234 __SIGRTMIN + 84,
235 __SIGRTMIN + 85,
236 __SIGRTMIN + 86,
237 __SIGRTMIN + 87,
238 __SIGRTMIN + 88,
239 __SIGRTMIN + 89,
240 __SIGRTMIN + 90,
241 __SIGRTMIN + 91,
242 __SIGRTMIN + 92,
243 __SIGRTMIN + 93,
244 __SIGRTMIN + 94,
245 __SIGRTMIN + 95,
246 -1, /* SIGINFO */
247 -1, /* UNKNOWN */
248 -1, /* DEFAULT */
249 -1,
250 -1,
251 -1,
252 -1,
253 -1,
254 -1
c72d5bf8 255#endif
ca587a8e 256};
8f447cc7 257#else
ca587a8e
AJ
258/* In system mode we only need SIGINT and SIGTRAP; other signals
259 are not yet supported. */
260
261enum {
262 TARGET_SIGINT = 2,
263 TARGET_SIGTRAP = 5
264};
265
266static int gdb_signal_table[] = {
267 -1,
268 -1,
269 TARGET_SIGINT,
270 -1,
271 -1,
272 TARGET_SIGTRAP
273};
274#endif
275
276#ifdef CONFIG_USER_ONLY
277static int target_signal_to_gdb (int sig)
278{
279 int i;
280 for (i = 0; i < ARRAY_SIZE (gdb_signal_table); i++)
281 if (gdb_signal_table[i] == sig)
282 return i;
283 return GDB_SIGNAL_UNKNOWN;
284}
8f447cc7 285#endif
b4608c04 286
ca587a8e
AJ
287static int gdb_signal_to_target (int sig)
288{
289 if (sig < ARRAY_SIZE (gdb_signal_table))
290 return gdb_signal_table[sig];
291 else
292 return -1;
293}
294
56aebc89
PB
295typedef struct GDBRegisterState {
296 int base_reg;
297 int num_regs;
298 gdb_reg_cb get_reg;
299 gdb_reg_cb set_reg;
300 const char *xml;
301 struct GDBRegisterState *next;
302} GDBRegisterState;
303
8f468636
LM
304typedef struct GDBProcess {
305 uint32_t pid;
306 bool attached;
c145eeae
LM
307
308 char target_xml[1024];
8f468636
LM
309} GDBProcess;
310
858693c6 311enum RSState {
36556b20 312 RS_INACTIVE,
858693c6
FB
313 RS_IDLE,
314 RS_GETLINE,
4bf43122
DG
315 RS_GETLINE_ESC,
316 RS_GETLINE_RLE,
858693c6
FB
317 RS_CHKSUM1,
318 RS_CHKSUM2,
319};
858693c6 320typedef struct GDBState {
2e0f2cfb
AF
321 CPUState *c_cpu; /* current CPU for step/continue ops */
322 CPUState *g_cpu; /* current CPU for other ops */
52f34623 323 CPUState *query_cpu; /* for q{f|s}ThreadInfo */
41625033 324 enum RSState state; /* parsing state */
56aebc89 325 char line_buf[MAX_PACKET_LENGTH];
858693c6 326 int line_buf_index;
4bf43122
DG
327 int line_sum; /* running checksum */
328 int line_csum; /* checksum at the end of the packet */
56aebc89 329 uint8_t last_packet[MAX_PACKET_LENGTH + 4];
4046d913 330 int last_packet_len;
1f487ee9 331 int signal;
41625033 332#ifdef CONFIG_USER_ONLY
4046d913 333 int fd;
41625033 334 int running_state;
4046d913 335#else
32a6ebec 336 CharBackend chr;
0ec7b3e7 337 Chardev *mon_chr;
41625033 338#endif
8f468636
LM
339 bool multiprocess;
340 GDBProcess *processes;
341 int process_num;
cdb432b2
MI
342 char syscall_buf[256];
343 gdb_syscall_complete_cb current_syscall_cb;
858693c6 344} GDBState;
b4608c04 345
60897d36
EI
346/* By default use no IRQs and no timers while single stepping so as to
347 * make single stepping like an ICE HW step.
348 */
349static int sstep_flags = SSTEP_ENABLE|SSTEP_NOIRQ|SSTEP_NOTIMER;
350
880a7578
AL
351static GDBState *gdbserver_state;
352
5b50e790 353bool gdb_has_xml;
56aebc89 354
1fddef4b 355#ifdef CONFIG_USER_ONLY
4046d913
PB
356/* XXX: This is not thread safe. Do we care? */
357static int gdbserver_fd = -1;
358
858693c6 359static int get_char(GDBState *s)
b4608c04
FB
360{
361 uint8_t ch;
362 int ret;
363
364 for(;;) {
00aa0040 365 ret = qemu_recv(s->fd, &ch, 1, 0);
b4608c04 366 if (ret < 0) {
1f487ee9
EI
367 if (errno == ECONNRESET)
368 s->fd = -1;
5819e3e0 369 if (errno != EINTR)
b4608c04
FB
370 return -1;
371 } else if (ret == 0) {
1f487ee9
EI
372 close(s->fd);
373 s->fd = -1;
b4608c04
FB
374 return -1;
375 } else {
376 break;
377 }
378 }
379 return ch;
380}
4046d913 381#endif
b4608c04 382
654efcf3 383static enum {
a2d1ebaf
PB
384 GDB_SYS_UNKNOWN,
385 GDB_SYS_ENABLED,
386 GDB_SYS_DISABLED,
387} gdb_syscall_mode;
388
a38bb079 389/* Decide if either remote gdb syscalls or native file IO should be used. */
a2d1ebaf
PB
390int use_gdb_syscalls(void)
391{
cfe67cef
LA
392 SemihostingTarget target = semihosting_get_target();
393 if (target == SEMIHOSTING_TARGET_NATIVE) {
a38bb079
LI
394 /* -semihosting-config target=native */
395 return false;
cfe67cef 396 } else if (target == SEMIHOSTING_TARGET_GDB) {
a38bb079
LI
397 /* -semihosting-config target=gdb */
398 return true;
399 }
400
401 /* -semihosting-config target=auto */
402 /* On the first call check if gdb is connected and remember. */
a2d1ebaf 403 if (gdb_syscall_mode == GDB_SYS_UNKNOWN) {
880a7578
AL
404 gdb_syscall_mode = (gdbserver_state ? GDB_SYS_ENABLED
405 : GDB_SYS_DISABLED);
a2d1ebaf
PB
406 }
407 return gdb_syscall_mode == GDB_SYS_ENABLED;
408}
409
ba70a624
EI
410/* Resume execution. */
411static inline void gdb_continue(GDBState *s)
412{
5c9522b3 413
ba70a624
EI
414#ifdef CONFIG_USER_ONLY
415 s->running_state = 1;
5c9522b3 416 trace_gdbstub_op_continue();
ba70a624 417#else
26ac7a31 418 if (!runstate_needs_reset()) {
5c9522b3 419 trace_gdbstub_op_continue();
87f25c12
PB
420 vm_start();
421 }
ba70a624
EI
422#endif
423}
424
544177ad
CI
425/*
426 * Resume execution, per CPU actions. For user-mode emulation it's
427 * equivalent to gdb_continue.
428 */
429static int gdb_continue_partial(GDBState *s, char *newstates)
430{
431 CPUState *cpu;
432 int res = 0;
433#ifdef CONFIG_USER_ONLY
434 /*
435 * This is not exactly accurate, but it's an improvement compared to the
436 * previous situation, where only one CPU would be single-stepped.
437 */
438 CPU_FOREACH(cpu) {
439 if (newstates[cpu->cpu_index] == 's') {
5c9522b3 440 trace_gdbstub_op_stepping(cpu->cpu_index);
544177ad
CI
441 cpu_single_step(cpu, sstep_flags);
442 }
443 }
444 s->running_state = 1;
445#else
446 int flag = 0;
447
448 if (!runstate_needs_reset()) {
449 if (vm_prepare_start()) {
450 return 0;
451 }
452
453 CPU_FOREACH(cpu) {
454 switch (newstates[cpu->cpu_index]) {
455 case 0:
456 case 1:
457 break; /* nothing to do here */
458 case 's':
5c9522b3 459 trace_gdbstub_op_stepping(cpu->cpu_index);
544177ad
CI
460 cpu_single_step(cpu, sstep_flags);
461 cpu_resume(cpu);
462 flag = 1;
463 break;
464 case 'c':
5c9522b3 465 trace_gdbstub_op_continue_cpu(cpu->cpu_index);
544177ad
CI
466 cpu_resume(cpu);
467 flag = 1;
468 break;
469 default:
470 res = -1;
471 break;
472 }
473 }
474 }
475 if (flag) {
476 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, true);
477 }
478#endif
479 return res;
480}
481
858693c6 482static void put_buffer(GDBState *s, const uint8_t *buf, int len)
b4608c04 483{
4046d913 484#ifdef CONFIG_USER_ONLY
b4608c04
FB
485 int ret;
486
487 while (len > 0) {
8f447cc7 488 ret = send(s->fd, buf, len, 0);
b4608c04 489 if (ret < 0) {
5819e3e0 490 if (errno != EINTR)
b4608c04
FB
491 return;
492 } else {
493 buf += ret;
494 len -= ret;
495 }
496 }
4046d913 497#else
6ab3fc32
DB
498 /* XXX this blocks entire thread. Rewrite to use
499 * qemu_chr_fe_write and background I/O callbacks */
5345fdb4 500 qemu_chr_fe_write_all(&s->chr, buf, len);
4046d913 501#endif
b4608c04
FB
502}
503
504static inline int fromhex(int v)
505{
506 if (v >= '0' && v <= '9')
507 return v - '0';
508 else if (v >= 'A' && v <= 'F')
509 return v - 'A' + 10;
510 else if (v >= 'a' && v <= 'f')
511 return v - 'a' + 10;
512 else
513 return 0;
514}
515
516static inline int tohex(int v)
517{
518 if (v < 10)
519 return v + '0';
520 else
521 return v - 10 + 'a';
522}
523
9005774b 524/* writes 2*len+1 bytes in buf */
b4608c04
FB
525static void memtohex(char *buf, const uint8_t *mem, int len)
526{
527 int i, c;
528 char *q;
529 q = buf;
530 for(i = 0; i < len; i++) {
531 c = mem[i];
532 *q++ = tohex(c >> 4);
533 *q++ = tohex(c & 0xf);
534 }
535 *q = '\0';
536}
537
538static void hextomem(uint8_t *mem, const char *buf, int len)
539{
540 int i;
541
542 for(i = 0; i < len; i++) {
543 mem[i] = (fromhex(buf[0]) << 4) | fromhex(buf[1]);
544 buf += 2;
545 }
546}
547
5c9522b3
DG
548static void hexdump(const char *buf, int len,
549 void (*trace_fn)(size_t ofs, char const *text))
550{
551 char line_buffer[3 * 16 + 4 + 16 + 1];
552
553 size_t i;
554 for (i = 0; i < len || (i & 0xF); ++i) {
555 size_t byte_ofs = i & 15;
556
557 if (byte_ofs == 0) {
558 memset(line_buffer, ' ', 3 * 16 + 4 + 16);
559 line_buffer[3 * 16 + 4 + 16] = 0;
560 }
561
562 size_t col_group = (i >> 2) & 3;
563 size_t hex_col = byte_ofs * 3 + col_group;
564 size_t txt_col = 3 * 16 + 4 + byte_ofs;
565
566 if (i < len) {
567 char value = buf[i];
568
569 line_buffer[hex_col + 0] = tohex((value >> 4) & 0xF);
570 line_buffer[hex_col + 1] = tohex((value >> 0) & 0xF);
571 line_buffer[txt_col + 0] = (value >= ' ' && value < 127)
572 ? value
573 : '.';
574 }
575
576 if (byte_ofs == 0xF)
577 trace_fn(i & -16, line_buffer);
578 }
579}
580
b4608c04 581/* return -1 if error, 0 if OK */
5c9522b3 582static int put_packet_binary(GDBState *s, const char *buf, int len, bool dump)
b4608c04 583{
56aebc89 584 int csum, i;
60fe76f3 585 uint8_t *p;
b4608c04 586
5c9522b3
DG
587 if (dump && trace_event_get_state_backends(TRACE_GDBSTUB_IO_BINARYREPLY)) {
588 hexdump(buf, len, trace_gdbstub_io_binaryreply);
589 }
590
b4608c04 591 for(;;) {
4046d913
PB
592 p = s->last_packet;
593 *(p++) = '$';
4046d913
PB
594 memcpy(p, buf, len);
595 p += len;
b4608c04
FB
596 csum = 0;
597 for(i = 0; i < len; i++) {
598 csum += buf[i];
599 }
4046d913
PB
600 *(p++) = '#';
601 *(p++) = tohex((csum >> 4) & 0xf);
602 *(p++) = tohex((csum) & 0xf);
b4608c04 603
4046d913 604 s->last_packet_len = p - s->last_packet;
ffe8ab83 605 put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
b4608c04 606
4046d913
PB
607#ifdef CONFIG_USER_ONLY
608 i = get_char(s);
609 if (i < 0)
b4608c04 610 return -1;
4046d913 611 if (i == '+')
b4608c04 612 break;
4046d913
PB
613#else
614 break;
615#endif
b4608c04
FB
616 }
617 return 0;
618}
619
56aebc89
PB
620/* return -1 if error, 0 if OK */
621static int put_packet(GDBState *s, const char *buf)
622{
5c9522b3 623 trace_gdbstub_io_reply(buf);
79808573 624
5c9522b3 625 return put_packet_binary(s, buf, strlen(buf), false);
56aebc89
PB
626}
627
56aebc89
PB
628/* Encode data using the encoding for 'x' packets. */
629static int memtox(char *buf, const char *mem, int len)
630{
631 char *p = buf;
632 char c;
633
634 while (len--) {
635 c = *(mem++);
636 switch (c) {
637 case '#': case '$': case '*': case '}':
638 *(p++) = '}';
639 *(p++) = c ^ 0x20;
640 break;
641 default:
642 *(p++) = c;
643 break;
644 }
645 }
646 return p - buf;
647}
f1ccf904 648
1a227336
LM
649static uint32_t gdb_get_cpu_pid(const GDBState *s, CPUState *cpu)
650{
46f5abc0
PM
651 /* TODO: In user mode, we should use the task state PID */
652 if (cpu->cluster_index == UNASSIGNED_CLUSTER_INDEX) {
1a227336 653 /* Return the default process' PID */
46f5abc0 654 return s->processes[s->process_num - 1].pid;
1a227336 655 }
46f5abc0 656 return cpu->cluster_index + 1;
1a227336
LM
657}
658
7d8c87da
LM
659static GDBProcess *gdb_get_process(const GDBState *s, uint32_t pid)
660{
661 int i;
662
663 if (!pid) {
664 /* 0 means any process, we take the first one */
665 return &s->processes[0];
666 }
667
668 for (i = 0; i < s->process_num; i++) {
669 if (s->processes[i].pid == pid) {
670 return &s->processes[i];
671 }
672 }
673
674 return NULL;
675}
676
677static GDBProcess *gdb_get_cpu_process(const GDBState *s, CPUState *cpu)
678{
679 return gdb_get_process(s, gdb_get_cpu_pid(s, cpu));
680}
681
682static CPUState *find_cpu(uint32_t thread_id)
683{
684 CPUState *cpu;
685
686 CPU_FOREACH(cpu) {
687 if (cpu_gdb_index(cpu) == thread_id) {
688 return cpu;
689 }
690 }
691
692 return NULL;
693}
694
e40e5204
LM
695static CPUState *get_first_cpu_in_process(const GDBState *s,
696 GDBProcess *process)
697{
698 CPUState *cpu;
699
700 CPU_FOREACH(cpu) {
701 if (gdb_get_cpu_pid(s, cpu) == process->pid) {
702 return cpu;
703 }
704 }
705
706 return NULL;
707}
708
709static CPUState *gdb_next_cpu_in_process(const GDBState *s, CPUState *cpu)
710{
711 uint32_t pid = gdb_get_cpu_pid(s, cpu);
712 cpu = CPU_NEXT(cpu);
713
714 while (cpu) {
715 if (gdb_get_cpu_pid(s, cpu) == pid) {
716 break;
717 }
718
719 cpu = CPU_NEXT(cpu);
720 }
721
722 return cpu;
723}
724
e40e5204
LM
725/* Return the cpu following @cpu, while ignoring unattached processes. */
726static CPUState *gdb_next_attached_cpu(const GDBState *s, CPUState *cpu)
727{
728 cpu = CPU_NEXT(cpu);
729
730 while (cpu) {
731 if (gdb_get_cpu_process(s, cpu)->attached) {
732 break;
733 }
734
735 cpu = CPU_NEXT(cpu);
736 }
737
738 return cpu;
739}
740
741/* Return the first attached cpu */
742static CPUState *gdb_first_attached_cpu(const GDBState *s)
743{
744 CPUState *cpu = first_cpu;
745 GDBProcess *process = gdb_get_cpu_process(s, cpu);
746
747 if (!process->attached) {
748 return gdb_next_attached_cpu(s, cpu);
749 }
750
751 return cpu;
752}
753
ab65eed3
LM
754static CPUState *gdb_get_cpu(const GDBState *s, uint32_t pid, uint32_t tid)
755{
756 GDBProcess *process;
757 CPUState *cpu;
758
759 if (!pid && !tid) {
760 /* 0 means any process/thread, we take the first attached one */
761 return gdb_first_attached_cpu(s);
762 } else if (pid && !tid) {
763 /* any thread in a specific process */
764 process = gdb_get_process(s, pid);
765
766 if (process == NULL) {
767 return NULL;
768 }
769
770 if (!process->attached) {
771 return NULL;
772 }
773
774 return get_first_cpu_in_process(s, process);
775 } else {
776 /* a specific thread */
777 cpu = find_cpu(tid);
778
779 if (cpu == NULL) {
780 return NULL;
781 }
782
783 process = gdb_get_cpu_process(s, cpu);
784
785 if (pid && process->pid != pid) {
786 return NULL;
787 }
788
789 if (!process->attached) {
790 return NULL;
791 }
792
793 return cpu;
794 }
795}
796
c145eeae
LM
797static const char *get_feature_xml(const GDBState *s, const char *p,
798 const char **newp, GDBProcess *process)
56aebc89 799{
56aebc89
PB
800 size_t len;
801 int i;
802 const char *name;
c145eeae
LM
803 CPUState *cpu = get_first_cpu_in_process(s, process);
804 CPUClass *cc = CPU_GET_CLASS(cpu);
56aebc89
PB
805
806 len = 0;
807 while (p[len] && p[len] != ':')
808 len++;
809 *newp = p + len;
810
811 name = NULL;
812 if (strncmp(p, "target.xml", len) == 0) {
c145eeae
LM
813 char *buf = process->target_xml;
814 const size_t buf_sz = sizeof(process->target_xml);
815
56aebc89 816 /* Generate the XML description for this CPU. */
c145eeae 817 if (!buf[0]) {
56aebc89
PB
818 GDBRegisterState *r;
819
c145eeae 820 pstrcat(buf, buf_sz,
b3820e6c
DH
821 "<?xml version=\"1.0\"?>"
822 "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">"
823 "<target>");
824 if (cc->gdb_arch_name) {
825 gchar *arch = cc->gdb_arch_name(cpu);
c145eeae
LM
826 pstrcat(buf, buf_sz, "<architecture>");
827 pstrcat(buf, buf_sz, arch);
828 pstrcat(buf, buf_sz, "</architecture>");
b3820e6c
DH
829 g_free(arch);
830 }
c145eeae
LM
831 pstrcat(buf, buf_sz, "<xi:include href=\"");
832 pstrcat(buf, buf_sz, cc->gdb_core_xml_file);
833 pstrcat(buf, buf_sz, "\"/>");
eac8b355 834 for (r = cpu->gdb_regs; r; r = r->next) {
c145eeae
LM
835 pstrcat(buf, buf_sz, "<xi:include href=\"");
836 pstrcat(buf, buf_sz, r->xml);
837 pstrcat(buf, buf_sz, "\"/>");
56aebc89 838 }
c145eeae 839 pstrcat(buf, buf_sz, "</target>");
56aebc89 840 }
c145eeae 841 return buf;
56aebc89 842 }
200bf5b7 843 if (cc->gdb_get_dynamic_xml) {
200bf5b7
AB
844 char *xmlname = g_strndup(p, len);
845 const char *xml = cc->gdb_get_dynamic_xml(cpu, xmlname);
846
847 g_free(xmlname);
848 if (xml) {
849 return xml;
850 }
851 }
56aebc89
PB
852 for (i = 0; ; i++) {
853 name = xml_builtin[i][0];
854 if (!name || (strncmp(name, p, len) == 0 && strlen(name) == len))
855 break;
856 }
857 return name ? xml_builtin[i][1] : NULL;
858}
f1ccf904 859
385b9f0e 860static int gdb_read_register(CPUState *cpu, uint8_t *mem_buf, int reg)
56aebc89 861{
a0e372f0 862 CPUClass *cc = CPU_GET_CLASS(cpu);
385b9f0e 863 CPUArchState *env = cpu->env_ptr;
56aebc89 864 GDBRegisterState *r;
f1ccf904 865
a0e372f0 866 if (reg < cc->gdb_num_core_regs) {
5b50e790 867 return cc->gdb_read_register(cpu, mem_buf, reg);
a0e372f0 868 }
f1ccf904 869
eac8b355 870 for (r = cpu->gdb_regs; r; r = r->next) {
56aebc89
PB
871 if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
872 return r->get_reg(env, mem_buf, reg - r->base_reg);
873 }
874 }
875 return 0;
f1ccf904
TS
876}
877
385b9f0e 878static int gdb_write_register(CPUState *cpu, uint8_t *mem_buf, int reg)
f1ccf904 879{
a0e372f0 880 CPUClass *cc = CPU_GET_CLASS(cpu);
385b9f0e 881 CPUArchState *env = cpu->env_ptr;
56aebc89 882 GDBRegisterState *r;
f1ccf904 883
a0e372f0 884 if (reg < cc->gdb_num_core_regs) {
5b50e790 885 return cc->gdb_write_register(cpu, mem_buf, reg);
a0e372f0 886 }
56aebc89 887
eac8b355 888 for (r = cpu->gdb_regs; r; r = r->next) {
56aebc89
PB
889 if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
890 return r->set_reg(env, mem_buf, reg - r->base_reg);
891 }
892 }
6da41eaf
FB
893 return 0;
894}
895
56aebc89
PB
896/* Register a supplemental set of CPU registers. If g_pos is nonzero it
897 specifies the first register number and these registers are included in
898 a standard "g" packet. Direction is relative to gdb, i.e. get_reg is
899 gdb reading a CPU register, and set_reg is gdb modifying a CPU register.
900 */
901
22169d41
AF
902void gdb_register_coprocessor(CPUState *cpu,
903 gdb_reg_cb get_reg, gdb_reg_cb set_reg,
904 int num_regs, const char *xml, int g_pos)
6da41eaf 905{
56aebc89
PB
906 GDBRegisterState *s;
907 GDBRegisterState **p;
56aebc89 908
eac8b355 909 p = &cpu->gdb_regs;
56aebc89
PB
910 while (*p) {
911 /* Check for duplicates. */
912 if (strcmp((*p)->xml, xml) == 0)
913 return;
914 p = &(*p)->next;
915 }
9643c25f
SW
916
917 s = g_new0(GDBRegisterState, 1);
a0e372f0 918 s->base_reg = cpu->gdb_num_regs;
9643c25f
SW
919 s->num_regs = num_regs;
920 s->get_reg = get_reg;
921 s->set_reg = set_reg;
922 s->xml = xml;
923
56aebc89 924 /* Add to end of list. */
a0e372f0 925 cpu->gdb_num_regs += num_regs;
56aebc89
PB
926 *p = s;
927 if (g_pos) {
928 if (g_pos != s->base_reg) {
7ae6c571
ZY
929 error_report("Error: Bad gdb register numbering for '%s', "
930 "expected %d got %d", xml, g_pos, s->base_reg);
35143f01
AF
931 } else {
932 cpu->gdb_num_g_regs = cpu->gdb_num_regs;
56aebc89
PB
933 }
934 }
6da41eaf
FB
935}
936
a1d1bb31 937#ifndef CONFIG_USER_ONLY
2472b6c0
PM
938/* Translate GDB watchpoint type to a flags value for cpu_watchpoint_* */
939static inline int xlat_gdb_type(CPUState *cpu, int gdbtype)
940{
941 static const int xlat[] = {
942 [GDB_WATCHPOINT_WRITE] = BP_GDB | BP_MEM_WRITE,
943 [GDB_WATCHPOINT_READ] = BP_GDB | BP_MEM_READ,
944 [GDB_WATCHPOINT_ACCESS] = BP_GDB | BP_MEM_ACCESS,
945 };
946
947 CPUClass *cc = CPU_GET_CLASS(cpu);
948 int cputype = xlat[gdbtype];
949
950 if (cc->gdb_stop_before_watchpoint) {
951 cputype |= BP_STOP_BEFORE_ACCESS;
952 }
953 return cputype;
954}
a1d1bb31
AL
955#endif
956
880a7578 957static int gdb_breakpoint_insert(target_ulong addr, target_ulong len, int type)
a1d1bb31 958{
182735ef 959 CPUState *cpu;
880a7578
AL
960 int err = 0;
961
62278814 962 if (kvm_enabled()) {
2e0f2cfb 963 return kvm_insert_breakpoint(gdbserver_state->c_cpu, addr, len, type);
62278814 964 }
e22a25c9 965
a1d1bb31
AL
966 switch (type) {
967 case GDB_BREAKPOINT_SW:
968 case GDB_BREAKPOINT_HW:
bdc44640 969 CPU_FOREACH(cpu) {
b3310ab3
AF
970 err = cpu_breakpoint_insert(cpu, addr, BP_GDB, NULL);
971 if (err) {
880a7578 972 break;
b3310ab3 973 }
880a7578
AL
974 }
975 return err;
a1d1bb31
AL
976#ifndef CONFIG_USER_ONLY
977 case GDB_WATCHPOINT_WRITE:
978 case GDB_WATCHPOINT_READ:
979 case GDB_WATCHPOINT_ACCESS:
bdc44640 980 CPU_FOREACH(cpu) {
2472b6c0
PM
981 err = cpu_watchpoint_insert(cpu, addr, len,
982 xlat_gdb_type(cpu, type), NULL);
983 if (err) {
880a7578 984 break;
2472b6c0 985 }
880a7578
AL
986 }
987 return err;
a1d1bb31
AL
988#endif
989 default:
990 return -ENOSYS;
991 }
992}
993
880a7578 994static int gdb_breakpoint_remove(target_ulong addr, target_ulong len, int type)
a1d1bb31 995{
182735ef 996 CPUState *cpu;
880a7578
AL
997 int err = 0;
998
62278814 999 if (kvm_enabled()) {
2e0f2cfb 1000 return kvm_remove_breakpoint(gdbserver_state->c_cpu, addr, len, type);
62278814 1001 }
e22a25c9 1002
a1d1bb31
AL
1003 switch (type) {
1004 case GDB_BREAKPOINT_SW:
1005 case GDB_BREAKPOINT_HW:
bdc44640 1006 CPU_FOREACH(cpu) {
b3310ab3
AF
1007 err = cpu_breakpoint_remove(cpu, addr, BP_GDB);
1008 if (err) {
880a7578 1009 break;
b3310ab3 1010 }
880a7578
AL
1011 }
1012 return err;
a1d1bb31
AL
1013#ifndef CONFIG_USER_ONLY
1014 case GDB_WATCHPOINT_WRITE:
1015 case GDB_WATCHPOINT_READ:
1016 case GDB_WATCHPOINT_ACCESS:
bdc44640 1017 CPU_FOREACH(cpu) {
2472b6c0
PM
1018 err = cpu_watchpoint_remove(cpu, addr, len,
1019 xlat_gdb_type(cpu, type));
880a7578
AL
1020 if (err)
1021 break;
1022 }
1023 return err;
a1d1bb31
AL
1024#endif
1025 default:
1026 return -ENOSYS;
1027 }
1028}
1029
546f3c67
LM
1030static inline void gdb_cpu_breakpoint_remove_all(CPUState *cpu)
1031{
1032 cpu_breakpoint_remove_all(cpu, BP_GDB);
1033#ifndef CONFIG_USER_ONLY
1034 cpu_watchpoint_remove_all(cpu, BP_GDB);
1035#endif
1036}
1037
1038static void gdb_process_breakpoint_remove_all(const GDBState *s, GDBProcess *p)
1039{
1040 CPUState *cpu = get_first_cpu_in_process(s, p);
1041
1042 while (cpu) {
1043 gdb_cpu_breakpoint_remove_all(cpu);
1044 cpu = gdb_next_cpu_in_process(s, cpu);
1045 }
1046}
1047
880a7578 1048static void gdb_breakpoint_remove_all(void)
a1d1bb31 1049{
182735ef 1050 CPUState *cpu;
880a7578 1051
e22a25c9 1052 if (kvm_enabled()) {
2e0f2cfb 1053 kvm_remove_all_breakpoints(gdbserver_state->c_cpu);
e22a25c9
AL
1054 return;
1055 }
1056
bdc44640 1057 CPU_FOREACH(cpu) {
546f3c67 1058 gdb_cpu_breakpoint_remove_all(cpu);
880a7578 1059 }
a1d1bb31
AL
1060}
1061
fab9d284
AJ
1062static void gdb_set_cpu_pc(GDBState *s, target_ulong pc)
1063{
2e0f2cfb 1064 CPUState *cpu = s->c_cpu;
f45748f1
AF
1065
1066 cpu_synchronize_state(cpu);
4a2b24ed 1067 cpu_set_pc(cpu, pc);
fab9d284
AJ
1068}
1069
1a227336
LM
1070static char *gdb_fmt_thread_id(const GDBState *s, CPUState *cpu,
1071 char *buf, size_t buf_size)
1072{
1073 if (s->multiprocess) {
1074 snprintf(buf, buf_size, "p%02x.%02x",
1075 gdb_get_cpu_pid(s, cpu), cpu_gdb_index(cpu));
1076 } else {
1077 snprintf(buf, buf_size, "%02x", cpu_gdb_index(cpu));
1078 }
1079
1080 return buf;
1081}
1082
7d8c87da
LM
1083typedef enum GDBThreadIdKind {
1084 GDB_ONE_THREAD = 0,
1085 GDB_ALL_THREADS, /* One process, all threads */
1086 GDB_ALL_PROCESSES,
1087 GDB_READ_THREAD_ERR
1088} GDBThreadIdKind;
1089
1090static GDBThreadIdKind read_thread_id(const char *buf, const char **end_buf,
1091 uint32_t *pid, uint32_t *tid)
1092{
1093 unsigned long p, t;
1094 int ret;
1095
1096 if (*buf == 'p') {
1097 buf++;
1098 ret = qemu_strtoul(buf, &buf, 16, &p);
1099
1100 if (ret) {
1101 return GDB_READ_THREAD_ERR;
1102 }
1103
1104 /* Skip '.' */
1105 buf++;
1106 } else {
1107 p = 1;
1108 }
1109
1110 ret = qemu_strtoul(buf, &buf, 16, &t);
1111
1112 if (ret) {
1113 return GDB_READ_THREAD_ERR;
1114 }
1115
1116 *end_buf = buf;
1117
1118 if (p == -1) {
1119 return GDB_ALL_PROCESSES;
1120 }
1121
1122 if (pid) {
1123 *pid = p;
1124 }
1125
1126 if (t == -1) {
1127 return GDB_ALL_THREADS;
1128 }
1129
1130 if (tid) {
1131 *tid = t;
1132 }
1133
1134 return GDB_ONE_THREAD;
1135}
1136
4dabe747
JK
1137static int is_query_packet(const char *p, const char *query, char separator)
1138{
1139 unsigned int query_len = strlen(query);
1140
1141 return strncmp(p, query, query_len) == 0 &&
1142 (p[query_len] == '\0' || p[query_len] == separator);
1143}
1144
544177ad
CI
1145/**
1146 * gdb_handle_vcont - Parses and handles a vCont packet.
1147 * returns -ENOTSUP if a command is unsupported, -EINVAL or -ERANGE if there is
1148 * a format error, 0 on success.
1149 */
1150static int gdb_handle_vcont(GDBState *s, const char *p)
1151{
e40e5204 1152 int res, signal = 0;
544177ad
CI
1153 char cur_action;
1154 char *newstates;
1155 unsigned long tmp;
e40e5204
LM
1156 uint32_t pid, tid;
1157 GDBProcess *process;
544177ad 1158 CPUState *cpu;
c99ef792 1159 GDBThreadIdKind kind;
544177ad
CI
1160#ifdef CONFIG_USER_ONLY
1161 int max_cpus = 1; /* global variable max_cpus exists only in system mode */
1162
1163 CPU_FOREACH(cpu) {
1164 max_cpus = max_cpus <= cpu->cpu_index ? cpu->cpu_index + 1 : max_cpus;
1165 }
1166#endif
1167 /* uninitialised CPUs stay 0 */
1168 newstates = g_new0(char, max_cpus);
1169
1170 /* mark valid CPUs with 1 */
1171 CPU_FOREACH(cpu) {
1172 newstates[cpu->cpu_index] = 1;
1173 }
1174
1175 /*
1176 * res keeps track of what error we are returning, with -ENOTSUP meaning
1177 * that the command is unknown or unsupported, thus returning an empty
1178 * packet, while -EINVAL and -ERANGE cause an E22 packet, due to invalid,
1179 * or incorrect parameters passed.
1180 */
1181 res = 0;
1182 while (*p) {
1183 if (*p++ != ';') {
1184 res = -ENOTSUP;
1185 goto out;
1186 }
1187
1188 cur_action = *p++;
1189 if (cur_action == 'C' || cur_action == 'S') {
95a5befc 1190 cur_action = qemu_tolower(cur_action);
544177ad
CI
1191 res = qemu_strtoul(p + 1, &p, 16, &tmp);
1192 if (res) {
1193 goto out;
1194 }
1195 signal = gdb_signal_to_target(tmp);
1196 } else if (cur_action != 'c' && cur_action != 's') {
1197 /* unknown/invalid/unsupported command */
1198 res = -ENOTSUP;
1199 goto out;
1200 }
e40e5204 1201
c99ef792
LM
1202 if (*p == '\0' || *p == ';') {
1203 /*
1204 * No thread specifier, action is on "all threads". The
1205 * specification is unclear regarding the process to act on. We
1206 * choose all processes.
1207 */
1208 kind = GDB_ALL_PROCESSES;
1209 } else if (*p++ == ':') {
1210 kind = read_thread_id(p, &p, &pid, &tid);
1211 } else {
e40e5204
LM
1212 res = -ENOTSUP;
1213 goto out;
1214 }
1215
c99ef792 1216 switch (kind) {
e40e5204
LM
1217 case GDB_READ_THREAD_ERR:
1218 res = -EINVAL;
1219 goto out;
1220
1221 case GDB_ALL_PROCESSES:
1222 cpu = gdb_first_attached_cpu(s);
1223 while (cpu) {
1224 if (newstates[cpu->cpu_index] == 1) {
1225 newstates[cpu->cpu_index] = cur_action;
544177ad 1226 }
e40e5204
LM
1227
1228 cpu = gdb_next_attached_cpu(s, cpu);
544177ad 1229 }
e40e5204
LM
1230 break;
1231
1232 case GDB_ALL_THREADS:
1233 process = gdb_get_process(s, pid);
1234
1235 if (!process->attached) {
1236 res = -EINVAL;
544177ad
CI
1237 goto out;
1238 }
5a6a1ad1 1239
e40e5204
LM
1240 cpu = get_first_cpu_in_process(s, process);
1241 while (cpu) {
1242 if (newstates[cpu->cpu_index] == 1) {
1243 newstates[cpu->cpu_index] = cur_action;
1244 }
1245
1246 cpu = gdb_next_cpu_in_process(s, cpu);
1247 }
1248 break;
1249
1250 case GDB_ONE_THREAD:
1251 cpu = gdb_get_cpu(s, pid, tid);
544177ad 1252
544177ad 1253 /* invalid CPU/thread specified */
5a6a1ad1 1254 if (!cpu) {
544177ad
CI
1255 res = -EINVAL;
1256 goto out;
1257 }
5a6a1ad1 1258
544177ad
CI
1259 /* only use if no previous match occourred */
1260 if (newstates[cpu->cpu_index] == 1) {
1261 newstates[cpu->cpu_index] = cur_action;
1262 }
e40e5204 1263 break;
544177ad
CI
1264 }
1265 }
1266 s->signal = signal;
1267 gdb_continue_partial(s, newstates);
1268
1269out:
1270 g_free(newstates);
1271
1272 return res;
1273}
1274
d14055dc
JD
1275typedef union GdbCmdVariant {
1276 const char *data;
1277 uint8_t opcode;
1278 unsigned long val_ul;
1279 unsigned long long val_ull;
1280 struct {
1281 GDBThreadIdKind kind;
1282 uint32_t pid;
1283 uint32_t tid;
1284 } thread_id;
1285} GdbCmdVariant;
1286
1287static const char *cmd_next_param(const char *param, const char delimiter)
1288{
1289 static const char all_delimiters[] = ",;:=";
1290 char curr_delimiters[2] = {0};
1291 const char *delimiters;
1292
1293 if (delimiter == '?') {
1294 delimiters = all_delimiters;
1295 } else if (delimiter == '0') {
1296 return strchr(param, '\0');
1297 } else if (delimiter == '.' && *param) {
1298 return param + 1;
1299 } else {
1300 curr_delimiters[0] = delimiter;
1301 delimiters = curr_delimiters;
1302 }
1303
1304 param += strcspn(param, delimiters);
1305 if (*param) {
1306 param++;
1307 }
1308 return param;
1309}
1310
1311static int cmd_parse_params(const char *data, const char *schema,
1312 GdbCmdVariant *params, int *num_params)
1313{
1314 int curr_param;
1315 const char *curr_schema, *curr_data;
1316
1317 *num_params = 0;
1318
1319 if (!schema) {
1320 return 0;
1321 }
1322
1323 curr_schema = schema;
1324 curr_param = 0;
1325 curr_data = data;
1326 while (curr_schema[0] && curr_schema[1] && *curr_data) {
1327 switch (curr_schema[0]) {
1328 case 'l':
1329 if (qemu_strtoul(curr_data, &curr_data, 16,
1330 &params[curr_param].val_ul)) {
1331 return -EINVAL;
1332 }
1333 curr_param++;
1334 curr_data = cmd_next_param(curr_data, curr_schema[1]);
1335 break;
1336 case 'L':
1337 if (qemu_strtou64(curr_data, &curr_data, 16,
1338 (uint64_t *)&params[curr_param].val_ull)) {
1339 return -EINVAL;
1340 }
1341 curr_param++;
1342 curr_data = cmd_next_param(curr_data, curr_schema[1]);
1343 break;
1344 case 's':
1345 params[curr_param].data = curr_data;
1346 curr_param++;
1347 curr_data = cmd_next_param(curr_data, curr_schema[1]);
1348 break;
1349 case 'o':
1350 params[curr_param].opcode = *(uint8_t *)curr_data;
1351 curr_param++;
1352 curr_data = cmd_next_param(curr_data, curr_schema[1]);
1353 break;
1354 case 't':
1355 params[curr_param].thread_id.kind =
1356 read_thread_id(curr_data, &curr_data,
1357 &params[curr_param].thread_id.pid,
1358 &params[curr_param].thread_id.tid);
1359 curr_param++;
1360 curr_data = cmd_next_param(curr_data, curr_schema[1]);
1361 break;
1362 case '?':
1363 curr_data = cmd_next_param(curr_data, curr_schema[1]);
1364 break;
1365 default:
1366 return -EINVAL;
1367 }
1368 curr_schema += 2;
1369 }
1370
1371 *num_params = curr_param;
1372 return 0;
1373}
1374
1375typedef struct GdbCmdContext {
1376 GDBState *s;
1377 GdbCmdVariant *params;
1378 int num_params;
1379 uint8_t mem_buf[MAX_PACKET_LENGTH];
1380 char str_buf[MAX_PACKET_LENGTH + 1];
1381} GdbCmdContext;
1382
1383typedef void (*GdbCmdHandler)(GdbCmdContext *gdb_ctx, void *user_ctx);
1384
1385/*
1386 * cmd_startswith -> cmd is compared using startswith
1387 *
1388 *
1389 * schema definitions:
1390 * Each schema parameter entry consists of 2 chars,
1391 * the first char represents the parameter type handling
1392 * the second char represents the delimiter for the next parameter
1393 *
1394 * Currently supported schema types:
1395 * 'l' -> unsigned long (stored in .val_ul)
1396 * 'L' -> unsigned long long (stored in .val_ull)
1397 * 's' -> string (stored in .data)
1398 * 'o' -> single char (stored in .opcode)
1399 * 't' -> thread id (stored in .thread_id)
1400 * '?' -> skip according to delimiter
1401 *
1402 * Currently supported delimiters:
1403 * '?' -> Stop at any delimiter (",;:=\0")
1404 * '0' -> Stop at "\0"
1405 * '.' -> Skip 1 char unless reached "\0"
1406 * Any other value is treated as the delimiter value itself
1407 */
1408typedef struct GdbCmdParseEntry {
1409 GdbCmdHandler handler;
1410 const char *cmd;
1411 bool cmd_startswith;
1412 const char *schema;
1413} GdbCmdParseEntry;
1414
1415static inline int startswith(const char *string, const char *pattern)
1416{
1417 return !strncmp(string, pattern, strlen(pattern));
1418}
1419
1420static int process_string_cmd(
1421 GDBState *s, void *user_ctx, const char *data,
1422 const GdbCmdParseEntry *cmds, int num_cmds)
1423 __attribute__((unused));
1424
1425static int process_string_cmd(GDBState *s, void *user_ctx, const char *data,
1426 const GdbCmdParseEntry *cmds, int num_cmds)
1427{
1428 int i, schema_len, max_num_params = 0;
1429 GdbCmdContext gdb_ctx;
1430
1431 if (!cmds) {
1432 return -1;
1433 }
1434
1435 for (i = 0; i < num_cmds; i++) {
1436 const GdbCmdParseEntry *cmd = &cmds[i];
1437 g_assert(cmd->handler && cmd->cmd);
1438
1439 if ((cmd->cmd_startswith && !startswith(data, cmd->cmd)) ||
1440 (!cmd->cmd_startswith && strcmp(cmd->cmd, data))) {
1441 continue;
1442 }
1443
1444 if (cmd->schema) {
1445 schema_len = strlen(cmd->schema);
1446 if (schema_len % 2) {
1447 return -2;
1448 }
1449
1450 max_num_params = schema_len / 2;
1451 }
1452
1453 gdb_ctx.params =
1454 (GdbCmdVariant *)alloca(sizeof(*gdb_ctx.params) * max_num_params);
1455 memset(gdb_ctx.params, 0, sizeof(*gdb_ctx.params) * max_num_params);
1456
1457 if (cmd_parse_params(&data[strlen(cmd->cmd)], cmd->schema,
1458 gdb_ctx.params, &gdb_ctx.num_params)) {
1459 return -1;
1460 }
1461
1462 gdb_ctx.s = s;
1463 cmd->handler(&gdb_ctx, user_ctx);
1464 return 0;
1465 }
1466
1467 return -1;
1468}
1469
880a7578 1470static int gdb_handle_packet(GDBState *s, const char *line_buf)
b4608c04 1471{
2e0f2cfb 1472 CPUState *cpu;
c145eeae 1473 GDBProcess *process;
5b24c641 1474 CPUClass *cc;
b4608c04 1475 const char *p;
7d8c87da 1476 uint32_t pid, tid;
1e9fa730 1477 int ch, reg_size, type, res;
56aebc89 1478 uint8_t mem_buf[MAX_PACKET_LENGTH];
9005774b 1479 char buf[sizeof(mem_buf) + 1 /* trailing NUL */];
1a227336 1480 char thread_id[16];
56aebc89 1481 uint8_t *registers;
9d9754a3 1482 target_ulong addr, len;
7d8c87da 1483 GDBThreadIdKind thread_kind;
3b46e624 1484
5c9522b3 1485 trace_gdbstub_io_command(line_buf);
118e2268 1486
858693c6
FB
1487 p = line_buf;
1488 ch = *p++;
1489 switch(ch) {
53fd6554
LM
1490 case '!':
1491 put_packet(s, "OK");
1492 break;
858693c6 1493 case '?':
1fddef4b 1494 /* TODO: Make this return the correct value for user-mode. */
1a227336
LM
1495 snprintf(buf, sizeof(buf), "T%02xthread:%s;", GDB_SIGNAL_TRAP,
1496 gdb_fmt_thread_id(s, s->c_cpu, thread_id, sizeof(thread_id)));
858693c6 1497 put_packet(s, buf);
7d03f82f
EI
1498 /* Remove all the breakpoints when this query is issued,
1499 * because gdb is doing and initial connect and the state
1500 * should be cleaned up.
1501 */
880a7578 1502 gdb_breakpoint_remove_all();
858693c6
FB
1503 break;
1504 case 'c':
1505 if (*p != '\0') {
9d9754a3 1506 addr = strtoull(p, (char **)&p, 16);
fab9d284 1507 gdb_set_cpu_pc(s, addr);
858693c6 1508 }
ca587a8e 1509 s->signal = 0;
ba70a624 1510 gdb_continue(s);
5c9522b3 1511 return RS_IDLE;
1f487ee9 1512 case 'C':
ca587a8e
AJ
1513 s->signal = gdb_signal_to_target (strtoul(p, (char **)&p, 16));
1514 if (s->signal == -1)
1515 s->signal = 0;
1f487ee9
EI
1516 gdb_continue(s);
1517 return RS_IDLE;
dd32aa10
JK
1518 case 'v':
1519 if (strncmp(p, "Cont", 4) == 0) {
dd32aa10
JK
1520 p += 4;
1521 if (*p == '?') {
1522 put_packet(s, "vCont;c;C;s;S");
1523 break;
1524 }
544177ad
CI
1525
1526 res = gdb_handle_vcont(s, p);
1527
dd32aa10 1528 if (res) {
544177ad
CI
1529 if ((res == -EINVAL) || (res == -ERANGE)) {
1530 put_packet(s, "E22");
1531 break;
dd32aa10 1532 }
544177ad 1533 goto unknown_command;
dd32aa10
JK
1534 }
1535 break;
3f940dc9
LM
1536 } else if (strncmp(p, "Attach;", 7) == 0) {
1537 unsigned long pid;
1538
1539 p += 7;
1540
1541 if (qemu_strtoul(p, &p, 16, &pid)) {
1542 put_packet(s, "E22");
1543 break;
1544 }
1545
1546 process = gdb_get_process(s, pid);
1547
1548 if (process == NULL) {
1549 put_packet(s, "E22");
1550 break;
1551 }
1552
1553 cpu = get_first_cpu_in_process(s, process);
1554
1555 if (cpu == NULL) {
1556 /* Refuse to attach an empty process */
1557 put_packet(s, "E22");
1558 break;
1559 }
1560
1561 process->attached = true;
1562
1563 s->g_cpu = cpu;
1564 s->c_cpu = cpu;
1565
1566 snprintf(buf, sizeof(buf), "T%02xthread:%s;", GDB_SIGNAL_TRAP,
1567 gdb_fmt_thread_id(s, cpu, thread_id, sizeof(thread_id)));
1568
1569 put_packet(s, buf);
1570 break;
45a4de25
MF
1571 } else if (strncmp(p, "Kill;", 5) == 0) {
1572 /* Kill the target */
0f8b09b2 1573 put_packet(s, "OK");
45a4de25
MF
1574 error_report("QEMU: Terminated via GDBstub");
1575 exit(0);
dd32aa10
JK
1576 } else {
1577 goto unknown_command;
1578 }
7d03f82f
EI
1579 case 'k':
1580 /* Kill the target */
7ae6c571 1581 error_report("QEMU: Terminated via GDBstub");
7d03f82f
EI
1582 exit(0);
1583 case 'D':
1584 /* Detach packet */
546f3c67
LM
1585 pid = 1;
1586
1587 if (s->multiprocess) {
1588 unsigned long lpid;
1589 if (*p != ';') {
1590 put_packet(s, "E22");
1591 break;
1592 }
1593
1594 if (qemu_strtoul(p + 1, &p, 16, &lpid)) {
1595 put_packet(s, "E22");
1596 break;
1597 }
1598
1599 pid = lpid;
1600 }
1601
1602 process = gdb_get_process(s, pid);
1603 gdb_process_breakpoint_remove_all(s, process);
1604 process->attached = false;
1605
1606 if (pid == gdb_get_cpu_pid(s, s->c_cpu)) {
1607 s->c_cpu = gdb_first_attached_cpu(s);
1608 }
1609
1610 if (pid == gdb_get_cpu_pid(s, s->g_cpu)) {
1611 s->g_cpu = gdb_first_attached_cpu(s);
1612 }
1613
1614 if (s->c_cpu == NULL) {
1615 /* No more process attached */
1616 gdb_syscall_mode = GDB_SYS_DISABLED;
1617 gdb_continue(s);
1618 }
7d03f82f
EI
1619 put_packet(s, "OK");
1620 break;
858693c6
FB
1621 case 's':
1622 if (*p != '\0') {
8fac5803 1623 addr = strtoull(p, (char **)&p, 16);
fab9d284 1624 gdb_set_cpu_pc(s, addr);
858693c6 1625 }
2e0f2cfb 1626 cpu_single_step(s->c_cpu, sstep_flags);
ba70a624 1627 gdb_continue(s);
5c9522b3 1628 return RS_IDLE;
a2d1ebaf
PB
1629 case 'F':
1630 {
1631 target_ulong ret;
1632 target_ulong err;
1633
1634 ret = strtoull(p, (char **)&p, 16);
1635 if (*p == ',') {
1636 p++;
1637 err = strtoull(p, (char **)&p, 16);
1638 } else {
1639 err = 0;
1640 }
1641 if (*p == ',')
1642 p++;
1643 type = *p;
cdb432b2 1644 if (s->current_syscall_cb) {
2e0f2cfb 1645 s->current_syscall_cb(s->c_cpu, ret, err);
cdb432b2
MI
1646 s->current_syscall_cb = NULL;
1647 }
a2d1ebaf
PB
1648 if (type == 'C') {
1649 put_packet(s, "T02");
1650 } else {
ba70a624 1651 gdb_continue(s);
a2d1ebaf
PB
1652 }
1653 }
1654 break;
858693c6 1655 case 'g':
2e0f2cfb 1656 cpu_synchronize_state(s->g_cpu);
56aebc89 1657 len = 0;
35143f01 1658 for (addr = 0; addr < s->g_cpu->gdb_num_g_regs; addr++) {
2e0f2cfb 1659 reg_size = gdb_read_register(s->g_cpu, mem_buf + len, addr);
56aebc89
PB
1660 len += reg_size;
1661 }
1662 memtohex(buf, mem_buf, len);
858693c6
FB
1663 put_packet(s, buf);
1664 break;
1665 case 'G':
2e0f2cfb 1666 cpu_synchronize_state(s->g_cpu);
56aebc89 1667 registers = mem_buf;
858693c6
FB
1668 len = strlen(p) / 2;
1669 hextomem((uint8_t *)registers, p, len);
35143f01 1670 for (addr = 0; addr < s->g_cpu->gdb_num_g_regs && len > 0; addr++) {
2e0f2cfb 1671 reg_size = gdb_write_register(s->g_cpu, registers, addr);
56aebc89
PB
1672 len -= reg_size;
1673 registers += reg_size;
1674 }
858693c6
FB
1675 put_packet(s, "OK");
1676 break;
1677 case 'm':
9d9754a3 1678 addr = strtoull(p, (char **)&p, 16);
858693c6
FB
1679 if (*p == ',')
1680 p++;
9d9754a3 1681 len = strtoull(p, NULL, 16);
5accecb3
KW
1682
1683 /* memtohex() doubles the required space */
1684 if (len > MAX_PACKET_LENGTH / 2) {
1685 put_packet (s, "E22");
1686 break;
1687 }
1688
2e0f2cfb 1689 if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, false) != 0) {
6f970bd9
FB
1690 put_packet (s, "E14");
1691 } else {
1692 memtohex(buf, mem_buf, len);
1693 put_packet(s, buf);
1694 }
858693c6
FB
1695 break;
1696 case 'M':
9d9754a3 1697 addr = strtoull(p, (char **)&p, 16);
858693c6
FB
1698 if (*p == ',')
1699 p++;
9d9754a3 1700 len = strtoull(p, (char **)&p, 16);
b328f873 1701 if (*p == ':')
858693c6 1702 p++;
5accecb3
KW
1703
1704 /* hextomem() reads 2*len bytes */
1705 if (len > strlen(p) / 2) {
1706 put_packet (s, "E22");
1707 break;
1708 }
858693c6 1709 hextomem(mem_buf, p, len);
2e0f2cfb 1710 if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len,
f3659eee 1711 true) != 0) {
905f20b1 1712 put_packet(s, "E14");
44520db1 1713 } else {
858693c6 1714 put_packet(s, "OK");
44520db1 1715 }
858693c6 1716 break;
56aebc89
PB
1717 case 'p':
1718 /* Older gdb are really dumb, and don't use 'g' if 'p' is avaialable.
1719 This works, but can be very slow. Anything new enough to
1720 understand XML also knows how to use this properly. */
1721 if (!gdb_has_xml)
1722 goto unknown_command;
1723 addr = strtoull(p, (char **)&p, 16);
2e0f2cfb 1724 reg_size = gdb_read_register(s->g_cpu, mem_buf, addr);
56aebc89
PB
1725 if (reg_size) {
1726 memtohex(buf, mem_buf, reg_size);
1727 put_packet(s, buf);
1728 } else {
1729 put_packet(s, "E14");
1730 }
1731 break;
1732 case 'P':
1733 if (!gdb_has_xml)
1734 goto unknown_command;
1735 addr = strtoull(p, (char **)&p, 16);
1736 if (*p == '=')
1737 p++;
1738 reg_size = strlen(p) / 2;
1739 hextomem(mem_buf, p, reg_size);
2e0f2cfb 1740 gdb_write_register(s->g_cpu, mem_buf, addr);
56aebc89
PB
1741 put_packet(s, "OK");
1742 break;
858693c6 1743 case 'Z':
858693c6
FB
1744 case 'z':
1745 type = strtoul(p, (char **)&p, 16);
1746 if (*p == ',')
1747 p++;
9d9754a3 1748 addr = strtoull(p, (char **)&p, 16);
858693c6
FB
1749 if (*p == ',')
1750 p++;
9d9754a3 1751 len = strtoull(p, (char **)&p, 16);
a1d1bb31 1752 if (ch == 'Z')
880a7578 1753 res = gdb_breakpoint_insert(addr, len, type);
a1d1bb31 1754 else
880a7578 1755 res = gdb_breakpoint_remove(addr, len, type);
a1d1bb31
AL
1756 if (res >= 0)
1757 put_packet(s, "OK");
1758 else if (res == -ENOSYS)
0f459d16 1759 put_packet(s, "");
a1d1bb31
AL
1760 else
1761 put_packet(s, "E22");
858693c6 1762 break;
880a7578
AL
1763 case 'H':
1764 type = *p++;
7d8c87da
LM
1765
1766 thread_kind = read_thread_id(p, &p, &pid, &tid);
1767 if (thread_kind == GDB_READ_THREAD_ERR) {
1768 put_packet(s, "E22");
1769 break;
1770 }
1771
1772 if (thread_kind != GDB_ONE_THREAD) {
880a7578
AL
1773 put_packet(s, "OK");
1774 break;
1775 }
7d8c87da 1776 cpu = gdb_get_cpu(s, pid, tid);
2e0f2cfb 1777 if (cpu == NULL) {
880a7578
AL
1778 put_packet(s, "E22");
1779 break;
1780 }
1781 switch (type) {
1782 case 'c':
2e0f2cfb 1783 s->c_cpu = cpu;
880a7578
AL
1784 put_packet(s, "OK");
1785 break;
1786 case 'g':
2e0f2cfb 1787 s->g_cpu = cpu;
880a7578
AL
1788 put_packet(s, "OK");
1789 break;
1790 default:
1791 put_packet(s, "E22");
1792 break;
1793 }
1794 break;
1795 case 'T':
7d8c87da
LM
1796 thread_kind = read_thread_id(p, &p, &pid, &tid);
1797 if (thread_kind == GDB_READ_THREAD_ERR) {
1798 put_packet(s, "E22");
1799 break;
1800 }
1801 cpu = gdb_get_cpu(s, pid, tid);
1e9fa730 1802
2e0f2cfb 1803 if (cpu != NULL) {
1e9fa730
NF
1804 put_packet(s, "OK");
1805 } else {
880a7578 1806 put_packet(s, "E22");
1e9fa730 1807 }
880a7578 1808 break;
978efd6a 1809 case 'q':
60897d36
EI
1810 case 'Q':
1811 /* parse any 'q' packets here */
1812 if (!strcmp(p,"qemu.sstepbits")) {
1813 /* Query Breakpoint bit definitions */
363a37d5
BS
1814 snprintf(buf, sizeof(buf), "ENABLE=%x,NOIRQ=%x,NOTIMER=%x",
1815 SSTEP_ENABLE,
1816 SSTEP_NOIRQ,
1817 SSTEP_NOTIMER);
60897d36
EI
1818 put_packet(s, buf);
1819 break;
4dabe747 1820 } else if (is_query_packet(p, "qemu.sstep", '=')) {
60897d36
EI
1821 /* Display or change the sstep_flags */
1822 p += 10;
1823 if (*p != '=') {
1824 /* Display current setting */
363a37d5 1825 snprintf(buf, sizeof(buf), "0x%x", sstep_flags);
60897d36
EI
1826 put_packet(s, buf);
1827 break;
1828 }
1829 p++;
1830 type = strtoul(p, (char **)&p, 16);
1831 sstep_flags = type;
1832 put_packet(s, "OK");
1833 break;
880a7578 1834 } else if (strcmp(p,"C") == 0) {
8dbbe9ac
LM
1835 /*
1836 * "Current thread" remains vague in the spec, so always return
1837 * the first thread of the current process (gdb returns the
1838 * first thread).
1839 */
1840 cpu = get_first_cpu_in_process(s, gdb_get_cpu_process(s, s->g_cpu));
1841 snprintf(buf, sizeof(buf), "QC%s",
1842 gdb_fmt_thread_id(s, cpu, thread_id, sizeof(thread_id)));
1843 put_packet(s, buf);
880a7578
AL
1844 break;
1845 } else if (strcmp(p,"fThreadInfo") == 0) {
7cf48f67 1846 s->query_cpu = gdb_first_attached_cpu(s);
880a7578
AL
1847 goto report_cpuinfo;
1848 } else if (strcmp(p,"sThreadInfo") == 0) {
1849 report_cpuinfo:
1850 if (s->query_cpu) {
7cf48f67
LM
1851 snprintf(buf, sizeof(buf), "m%s",
1852 gdb_fmt_thread_id(s, s->query_cpu,
1853 thread_id, sizeof(thread_id)));
880a7578 1854 put_packet(s, buf);
7cf48f67 1855 s->query_cpu = gdb_next_attached_cpu(s, s->query_cpu);
880a7578
AL
1856 } else
1857 put_packet(s, "l");
1858 break;
1859 } else if (strncmp(p,"ThreadExtraInfo,", 16) == 0) {
7cf48f67
LM
1860 if (read_thread_id(p + 16, &p, &pid, &tid) == GDB_READ_THREAD_ERR) {
1861 put_packet(s, "E22");
1862 break;
1863 }
1864 cpu = gdb_get_cpu(s, pid, tid);
2e0f2cfb 1865 if (cpu != NULL) {
cb446eca 1866 cpu_synchronize_state(cpu);
7cf48f67
LM
1867
1868 if (s->multiprocess && (s->process_num > 1)) {
1869 /* Print the CPU model and name in multiprocess mode */
1870 ObjectClass *oc = object_get_class(OBJECT(cpu));
1871 const char *cpu_model = object_class_get_name(oc);
1872 char *cpu_name =
1873 object_get_canonical_path_component(OBJECT(cpu));
1874 len = snprintf((char *)mem_buf, sizeof(buf) / 2,
1875 "%s %s [%s]", cpu_model, cpu_name,
1876 cpu->halted ? "halted " : "running");
1877 g_free(cpu_name);
1878 } else {
1879 /* memtohex() doubles the required space */
1880 len = snprintf((char *)mem_buf, sizeof(buf) / 2,
1881 "CPU#%d [%s]", cpu->cpu_index,
1882 cpu->halted ? "halted " : "running");
1883 }
5c9522b3 1884 trace_gdbstub_op_extra_info((char *)mem_buf);
1e9fa730
NF
1885 memtohex(buf, mem_buf, len);
1886 put_packet(s, buf);
1887 }
880a7578 1888 break;
60897d36 1889 }
0b8a988c 1890#ifdef CONFIG_USER_ONLY
070949f3 1891 else if (strcmp(p, "Offsets") == 0) {
0429a971 1892 TaskState *ts = s->c_cpu->opaque;
978efd6a 1893
363a37d5
BS
1894 snprintf(buf, sizeof(buf),
1895 "Text=" TARGET_ABI_FMT_lx ";Data=" TARGET_ABI_FMT_lx
1896 ";Bss=" TARGET_ABI_FMT_lx,
1897 ts->info->code_offset,
1898 ts->info->data_offset,
1899 ts->info->data_offset);
978efd6a
PB
1900 put_packet(s, buf);
1901 break;
1902 }
0b8a988c 1903#else /* !CONFIG_USER_ONLY */
8a34a0fb
AL
1904 else if (strncmp(p, "Rcmd,", 5) == 0) {
1905 int len = strlen(p + 5);
1906
1907 if ((len % 2) != 0) {
1908 put_packet(s, "E01");
1909 break;
1910 }
8a34a0fb 1911 len = len / 2;
5accecb3 1912 hextomem(mem_buf, p + 5, len);
8a34a0fb 1913 mem_buf[len++] = 0;
fa5efccb 1914 qemu_chr_be_write(s->mon_chr, mem_buf, len);
8a34a0fb
AL
1915 put_packet(s, "OK");
1916 break;
1917 }
0b8a988c 1918#endif /* !CONFIG_USER_ONLY */
4dabe747 1919 if (is_query_packet(p, "Supported", ':')) {
5b3715bf 1920 snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH);
5b24c641
AF
1921 cc = CPU_GET_CLASS(first_cpu);
1922 if (cc->gdb_core_xml_file != NULL) {
1923 pstrcat(buf, sizeof(buf), ";qXfer:features:read+");
1924 }
364fce6f
LM
1925
1926 if (strstr(p, "multiprocess+")) {
1927 s->multiprocess = true;
1928 }
1929 pstrcat(buf, sizeof(buf), ";multiprocess+");
1930
56aebc89
PB
1931 put_packet(s, buf);
1932 break;
1933 }
56aebc89
PB
1934 if (strncmp(p, "Xfer:features:read:", 19) == 0) {
1935 const char *xml;
1936 target_ulong total_len;
1937
c145eeae
LM
1938 process = gdb_get_cpu_process(s, s->g_cpu);
1939 cc = CPU_GET_CLASS(s->g_cpu);
5b24c641
AF
1940 if (cc->gdb_core_xml_file == NULL) {
1941 goto unknown_command;
1942 }
1943
5b50e790 1944 gdb_has_xml = true;
56aebc89 1945 p += 19;
c145eeae 1946 xml = get_feature_xml(s, p, &p, process);
56aebc89 1947 if (!xml) {
5b3715bf 1948 snprintf(buf, sizeof(buf), "E00");
56aebc89
PB
1949 put_packet(s, buf);
1950 break;
1951 }
1952
1953 if (*p == ':')
1954 p++;
1955 addr = strtoul(p, (char **)&p, 16);
1956 if (*p == ',')
1957 p++;
1958 len = strtoul(p, (char **)&p, 16);
1959
1960 total_len = strlen(xml);
1961 if (addr > total_len) {
5b3715bf 1962 snprintf(buf, sizeof(buf), "E00");
56aebc89
PB
1963 put_packet(s, buf);
1964 break;
1965 }
1966 if (len > (MAX_PACKET_LENGTH - 5) / 2)
1967 len = (MAX_PACKET_LENGTH - 5) / 2;
1968 if (len < total_len - addr) {
1969 buf[0] = 'm';
1970 len = memtox(buf + 1, xml + addr, len);
1971 } else {
1972 buf[0] = 'l';
1973 len = memtox(buf + 1, xml + addr, total_len - addr);
1974 }
5c9522b3 1975 put_packet_binary(s, buf, len + 1, true);
56aebc89
PB
1976 break;
1977 }
a3919386
JK
1978 if (is_query_packet(p, "Attached", ':')) {
1979 put_packet(s, GDB_ATTACHED);
1980 break;
1981 }
56aebc89
PB
1982 /* Unrecognised 'q' command. */
1983 goto unknown_command;
1984
858693c6 1985 default:
56aebc89 1986 unknown_command:
858693c6
FB
1987 /* put empty packet */
1988 buf[0] = '\0';
1989 put_packet(s, buf);
1990 break;
1991 }
1992 return RS_IDLE;
1993}
1994
64f6b346 1995void gdb_set_stop_cpu(CPUState *cpu)
880a7578 1996{
160d858d
LM
1997 GDBProcess *p = gdb_get_cpu_process(gdbserver_state, cpu);
1998
1999 if (!p->attached) {
2000 /*
2001 * Having a stop CPU corresponding to a process that is not attached
2002 * confuses GDB. So we ignore the request.
2003 */
2004 return;
2005 }
2006
2e0f2cfb
AF
2007 gdbserver_state->c_cpu = cpu;
2008 gdbserver_state->g_cpu = cpu;
880a7578
AL
2009}
2010
1fddef4b 2011#ifndef CONFIG_USER_ONLY
1dfb4dd9 2012static void gdb_vm_state_change(void *opaque, int running, RunState state)
858693c6 2013{
880a7578 2014 GDBState *s = gdbserver_state;
2e0f2cfb 2015 CPUState *cpu = s->c_cpu;
858693c6 2016 char buf[256];
95567c27 2017 char thread_id[16];
d6fc1b39 2018 const char *type;
858693c6
FB
2019 int ret;
2020
cdb432b2
MI
2021 if (running || s->state == RS_INACTIVE) {
2022 return;
2023 }
2024 /* Is there a GDB syscall waiting to be sent? */
2025 if (s->current_syscall_cb) {
2026 put_packet(s, s->syscall_buf);
a2d1ebaf 2027 return;
e07bbac5 2028 }
95567c27
LM
2029
2030 if (cpu == NULL) {
2031 /* No process attached */
2032 return;
2033 }
2034
2035 gdb_fmt_thread_id(s, cpu, thread_id, sizeof(thread_id));
2036
1dfb4dd9 2037 switch (state) {
0461d5a6 2038 case RUN_STATE_DEBUG:
ff4700b0
AF
2039 if (cpu->watchpoint_hit) {
2040 switch (cpu->watchpoint_hit->flags & BP_MEM_ACCESS) {
a1d1bb31 2041 case BP_MEM_READ:
d6fc1b39
AL
2042 type = "r";
2043 break;
a1d1bb31 2044 case BP_MEM_ACCESS:
d6fc1b39
AL
2045 type = "a";
2046 break;
2047 default:
2048 type = "";
2049 break;
2050 }
5c9522b3
DG
2051 trace_gdbstub_hit_watchpoint(type, cpu_gdb_index(cpu),
2052 (target_ulong)cpu->watchpoint_hit->vaddr);
880a7578 2053 snprintf(buf, sizeof(buf),
95567c27
LM
2054 "T%02xthread:%s;%swatch:" TARGET_FMT_lx ";",
2055 GDB_SIGNAL_TRAP, thread_id, type,
ff4700b0
AF
2056 (target_ulong)cpu->watchpoint_hit->vaddr);
2057 cpu->watchpoint_hit = NULL;
425189a8 2058 goto send_packet;
5c9522b3
DG
2059 } else {
2060 trace_gdbstub_hit_break();
6658ffb8 2061 }
bbd77c18 2062 tb_flush(cpu);
ca587a8e 2063 ret = GDB_SIGNAL_TRAP;
425189a8 2064 break;
0461d5a6 2065 case RUN_STATE_PAUSED:
5c9522b3 2066 trace_gdbstub_hit_paused();
9781e040 2067 ret = GDB_SIGNAL_INT;
425189a8 2068 break;
0461d5a6 2069 case RUN_STATE_SHUTDOWN:
5c9522b3 2070 trace_gdbstub_hit_shutdown();
425189a8
JK
2071 ret = GDB_SIGNAL_QUIT;
2072 break;
0461d5a6 2073 case RUN_STATE_IO_ERROR:
5c9522b3 2074 trace_gdbstub_hit_io_error();
425189a8
JK
2075 ret = GDB_SIGNAL_IO;
2076 break;
0461d5a6 2077 case RUN_STATE_WATCHDOG:
5c9522b3 2078 trace_gdbstub_hit_watchdog();
425189a8
JK
2079 ret = GDB_SIGNAL_ALRM;
2080 break;
0461d5a6 2081 case RUN_STATE_INTERNAL_ERROR:
5c9522b3 2082 trace_gdbstub_hit_internal_error();
425189a8
JK
2083 ret = GDB_SIGNAL_ABRT;
2084 break;
0461d5a6
LC
2085 case RUN_STATE_SAVE_VM:
2086 case RUN_STATE_RESTORE_VM:
425189a8 2087 return;
0461d5a6 2088 case RUN_STATE_FINISH_MIGRATE:
425189a8
JK
2089 ret = GDB_SIGNAL_XCPU;
2090 break;
2091 default:
5c9522b3 2092 trace_gdbstub_hit_unknown(state);
425189a8
JK
2093 ret = GDB_SIGNAL_UNKNOWN;
2094 break;
bbeb7b5c 2095 }
226d007d 2096 gdb_set_stop_cpu(cpu);
95567c27 2097 snprintf(buf, sizeof(buf), "T%02xthread:%s;", ret, thread_id);
425189a8
JK
2098
2099send_packet:
858693c6 2100 put_packet(s, buf);
425189a8
JK
2101
2102 /* disable single step if it was enabled */
3825b28f 2103 cpu_single_step(cpu, 0);
858693c6 2104}
1fddef4b 2105#endif
858693c6 2106
a2d1ebaf
PB
2107/* Send a gdb syscall request.
2108 This accepts limited printf-style format specifiers, specifically:
a87295e8
PB
2109 %x - target_ulong argument printed in hex.
2110 %lx - 64-bit argument printed in hex.
2111 %s - string pointer (target_ulong) and length (int) pair. */
19239b39 2112void gdb_do_syscallv(gdb_syscall_complete_cb cb, const char *fmt, va_list va)
a2d1ebaf 2113{
a2d1ebaf 2114 char *p;
cdb432b2 2115 char *p_end;
a2d1ebaf 2116 target_ulong addr;
a87295e8 2117 uint64_t i64;
a2d1ebaf
PB
2118 GDBState *s;
2119
880a7578 2120 s = gdbserver_state;
a2d1ebaf
PB
2121 if (!s)
2122 return;
cdb432b2 2123 s->current_syscall_cb = cb;
a2d1ebaf 2124#ifndef CONFIG_USER_ONLY
0461d5a6 2125 vm_stop(RUN_STATE_DEBUG);
a2d1ebaf 2126#endif
cdb432b2
MI
2127 p = s->syscall_buf;
2128 p_end = &s->syscall_buf[sizeof(s->syscall_buf)];
a2d1ebaf
PB
2129 *(p++) = 'F';
2130 while (*fmt) {
2131 if (*fmt == '%') {
2132 fmt++;
2133 switch (*fmt++) {
2134 case 'x':
2135 addr = va_arg(va, target_ulong);
cdb432b2 2136 p += snprintf(p, p_end - p, TARGET_FMT_lx, addr);
a2d1ebaf 2137 break;
a87295e8
PB
2138 case 'l':
2139 if (*(fmt++) != 'x')
2140 goto bad_format;
2141 i64 = va_arg(va, uint64_t);
cdb432b2 2142 p += snprintf(p, p_end - p, "%" PRIx64, i64);
a87295e8 2143 break;
a2d1ebaf
PB
2144 case 's':
2145 addr = va_arg(va, target_ulong);
cdb432b2 2146 p += snprintf(p, p_end - p, TARGET_FMT_lx "/%x",
363a37d5 2147 addr, va_arg(va, int));
a2d1ebaf
PB
2148 break;
2149 default:
a87295e8 2150 bad_format:
7ae6c571
ZY
2151 error_report("gdbstub: Bad syscall format string '%s'",
2152 fmt - 1);
a2d1ebaf
PB
2153 break;
2154 }
2155 } else {
2156 *(p++) = *(fmt++);
2157 }
2158 }
8a93e02a 2159 *p = 0;
a2d1ebaf 2160#ifdef CONFIG_USER_ONLY
cdb432b2 2161 put_packet(s, s->syscall_buf);
4f710866
PM
2162 /* Return control to gdb for it to process the syscall request.
2163 * Since the protocol requires that gdb hands control back to us
2164 * using a "here are the results" F packet, we don't need to check
2165 * gdb_handlesig's return value (which is the signal to deliver if
2166 * execution was resumed via a continue packet).
2167 */
2e0f2cfb 2168 gdb_handlesig(s->c_cpu, 0);
a2d1ebaf 2169#else
cdb432b2
MI
2170 /* In this case wait to send the syscall packet until notification that
2171 the CPU has stopped. This must be done because if the packet is sent
2172 now the reply from the syscall request could be received while the CPU
2173 is still in the running state, which can cause packets to be dropped
2174 and state transition 'T' packets to be sent while the syscall is still
2175 being processed. */
9102deda 2176 qemu_cpu_kick(s->c_cpu);
a2d1ebaf
PB
2177#endif
2178}
2179
19239b39
PM
2180void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...)
2181{
2182 va_list va;
2183
2184 va_start(va, fmt);
2185 gdb_do_syscallv(cb, fmt, va);
2186 va_end(va);
2187}
2188
33c846ef 2189static void gdb_read_byte(GDBState *s, uint8_t ch)
858693c6 2190{
60fe76f3 2191 uint8_t reply;
858693c6 2192
1fddef4b 2193#ifndef CONFIG_USER_ONLY
4046d913
PB
2194 if (s->last_packet_len) {
2195 /* Waiting for a response to the last packet. If we see the start
2196 of a new command then abandon the previous response. */
2197 if (ch == '-') {
5c9522b3 2198 trace_gdbstub_err_got_nack();
ffe8ab83 2199 put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
118e2268 2200 } else if (ch == '+') {
5c9522b3 2201 trace_gdbstub_io_got_ack();
118e2268 2202 } else {
33c846ef 2203 trace_gdbstub_io_got_unexpected(ch);
4046d913 2204 }
118e2268 2205
4046d913
PB
2206 if (ch == '+' || ch == '$')
2207 s->last_packet_len = 0;
2208 if (ch != '$')
2209 return;
2210 }
1354869c 2211 if (runstate_is_running()) {
858693c6
FB
2212 /* when the CPU is running, we cannot do anything except stop
2213 it when receiving a char */
0461d5a6 2214 vm_stop(RUN_STATE_PAUSED);
5fafdf24 2215 } else
1fddef4b 2216#endif
41625033 2217 {
858693c6
FB
2218 switch(s->state) {
2219 case RS_IDLE:
2220 if (ch == '$') {
4bf43122 2221 /* start of command packet */
858693c6 2222 s->line_buf_index = 0;
4bf43122 2223 s->line_sum = 0;
858693c6 2224 s->state = RS_GETLINE;
4bf43122 2225 } else {
33c846ef 2226 trace_gdbstub_err_garbage(ch);
c33a346e 2227 }
b4608c04 2228 break;
858693c6 2229 case RS_GETLINE:
4bf43122
DG
2230 if (ch == '}') {
2231 /* start escape sequence */
2232 s->state = RS_GETLINE_ESC;
2233 s->line_sum += ch;
2234 } else if (ch == '*') {
2235 /* start run length encoding sequence */
2236 s->state = RS_GETLINE_RLE;
2237 s->line_sum += ch;
2238 } else if (ch == '#') {
2239 /* end of command, start of checksum*/
2240 s->state = RS_CHKSUM1;
2241 } else if (s->line_buf_index >= sizeof(s->line_buf) - 1) {
5c9522b3 2242 trace_gdbstub_err_overrun();
4bf43122
DG
2243 s->state = RS_IDLE;
2244 } else {
2245 /* unescaped command character */
2246 s->line_buf[s->line_buf_index++] = ch;
2247 s->line_sum += ch;
2248 }
2249 break;
2250 case RS_GETLINE_ESC:
858693c6 2251 if (ch == '#') {
4bf43122
DG
2252 /* unexpected end of command in escape sequence */
2253 s->state = RS_CHKSUM1;
858693c6 2254 } else if (s->line_buf_index >= sizeof(s->line_buf) - 1) {
4bf43122 2255 /* command buffer overrun */
5c9522b3 2256 trace_gdbstub_err_overrun();
858693c6 2257 s->state = RS_IDLE;
4c3a88a2 2258 } else {
4bf43122
DG
2259 /* parse escaped character and leave escape state */
2260 s->line_buf[s->line_buf_index++] = ch ^ 0x20;
2261 s->line_sum += ch;
2262 s->state = RS_GETLINE;
2263 }
2264 break;
2265 case RS_GETLINE_RLE:
046aba16
MA
2266 /*
2267 * Run-length encoding is explained in "Debugging with GDB /
2268 * Appendix E GDB Remote Serial Protocol / Overview".
2269 */
2270 if (ch < ' ' || ch == '#' || ch == '$' || ch > 126) {
4bf43122 2271 /* invalid RLE count encoding */
33c846ef 2272 trace_gdbstub_err_invalid_repeat(ch);
4bf43122
DG
2273 s->state = RS_GETLINE;
2274 } else {
2275 /* decode repeat length */
33c846ef 2276 int repeat = ch - ' ' + 3;
4bf43122
DG
2277 if (s->line_buf_index + repeat >= sizeof(s->line_buf) - 1) {
2278 /* that many repeats would overrun the command buffer */
5c9522b3 2279 trace_gdbstub_err_overrun();
4bf43122
DG
2280 s->state = RS_IDLE;
2281 } else if (s->line_buf_index < 1) {
2282 /* got a repeat but we have nothing to repeat */
5c9522b3 2283 trace_gdbstub_err_invalid_rle();
4bf43122
DG
2284 s->state = RS_GETLINE;
2285 } else {
2286 /* repeat the last character */
2287 memset(s->line_buf + s->line_buf_index,
2288 s->line_buf[s->line_buf_index - 1], repeat);
2289 s->line_buf_index += repeat;
2290 s->line_sum += ch;
2291 s->state = RS_GETLINE;
2292 }
4c3a88a2
FB
2293 }
2294 break;
858693c6 2295 case RS_CHKSUM1:
4bf43122
DG
2296 /* get high hex digit of checksum */
2297 if (!isxdigit(ch)) {
33c846ef 2298 trace_gdbstub_err_checksum_invalid(ch);
4bf43122
DG
2299 s->state = RS_GETLINE;
2300 break;
2301 }
858693c6
FB
2302 s->line_buf[s->line_buf_index] = '\0';
2303 s->line_csum = fromhex(ch) << 4;
2304 s->state = RS_CHKSUM2;
2305 break;
2306 case RS_CHKSUM2:
4bf43122
DG
2307 /* get low hex digit of checksum */
2308 if (!isxdigit(ch)) {
33c846ef 2309 trace_gdbstub_err_checksum_invalid(ch);
4bf43122
DG
2310 s->state = RS_GETLINE;
2311 break;
858693c6 2312 }
4bf43122
DG
2313 s->line_csum |= fromhex(ch);
2314
2315 if (s->line_csum != (s->line_sum & 0xff)) {
5c9522b3 2316 trace_gdbstub_err_checksum_incorrect(s->line_sum, s->line_csum);
4bf43122 2317 /* send NAK reply */
60fe76f3
TS
2318 reply = '-';
2319 put_buffer(s, &reply, 1);
858693c6 2320 s->state = RS_IDLE;
4c3a88a2 2321 } else {
4bf43122 2322 /* send ACK reply */
60fe76f3
TS
2323 reply = '+';
2324 put_buffer(s, &reply, 1);
880a7578 2325 s->state = gdb_handle_packet(s, s->line_buf);
4c3a88a2
FB
2326 }
2327 break;
a2d1ebaf
PB
2328 default:
2329 abort();
858693c6
FB
2330 }
2331 }
2332}
2333
0e1c9c54 2334/* Tell the remote gdb that the process has exited. */
9349b4f9 2335void gdb_exit(CPUArchState *env, int code)
0e1c9c54
PB
2336{
2337 GDBState *s;
2338 char buf[4];
2339
2340 s = gdbserver_state;
2341 if (!s) {
2342 return;
2343 }
2344#ifdef CONFIG_USER_ONLY
2345 if (gdbserver_fd < 0 || s->fd < 0) {
2346 return;
2347 }
2348#endif
2349
5c9522b3
DG
2350 trace_gdbstub_op_exiting((uint8_t)code);
2351
0e1c9c54
PB
2352 snprintf(buf, sizeof(buf), "W%02x", (uint8_t)code);
2353 put_packet(s, buf);
e2af15b2
FC
2354
2355#ifndef CONFIG_USER_ONLY
1ce2610c 2356 qemu_chr_fe_deinit(&s->chr, true);
e2af15b2 2357#endif
0e1c9c54
PB
2358}
2359
8f468636
LM
2360/*
2361 * Create the process that will contain all the "orphan" CPUs (that are not
2362 * part of a CPU cluster). Note that if this process contains no CPUs, it won't
2363 * be attachable and thus will be invisible to the user.
2364 */
2365static void create_default_process(GDBState *s)
2366{
2367 GDBProcess *process;
2368 int max_pid = 0;
2369
2370 if (s->process_num) {
2371 max_pid = s->processes[s->process_num - 1].pid;
2372 }
2373
2374 s->processes = g_renew(GDBProcess, s->processes, ++s->process_num);
2375 process = &s->processes[s->process_num - 1];
2376
2377 /* We need an available PID slot for this process */
2378 assert(max_pid < UINT32_MAX);
2379
2380 process->pid = max_pid + 1;
2381 process->attached = false;
c145eeae 2382 process->target_xml[0] = '\0';
8f468636
LM
2383}
2384
1fddef4b
FB
2385#ifdef CONFIG_USER_ONLY
2386int
db6b81d4 2387gdb_handlesig(CPUState *cpu, int sig)
1fddef4b 2388{
5ca666c7
AF
2389 GDBState *s;
2390 char buf[256];
2391 int n;
1fddef4b 2392
5ca666c7
AF
2393 s = gdbserver_state;
2394 if (gdbserver_fd < 0 || s->fd < 0) {
2395 return sig;
2396 }
1fddef4b 2397
5ca666c7 2398 /* disable single step if it was enabled */
3825b28f 2399 cpu_single_step(cpu, 0);
bbd77c18 2400 tb_flush(cpu);
1fddef4b 2401
5ca666c7
AF
2402 if (sig != 0) {
2403 snprintf(buf, sizeof(buf), "S%02x", target_signal_to_gdb(sig));
2404 put_packet(s, buf);
2405 }
2406 /* put_packet() might have detected that the peer terminated the
2407 connection. */
2408 if (s->fd < 0) {
2409 return sig;
2410 }
1fddef4b 2411
5ca666c7
AF
2412 sig = 0;
2413 s->state = RS_IDLE;
2414 s->running_state = 0;
2415 while (s->running_state == 0) {
2416 n = read(s->fd, buf, 256);
2417 if (n > 0) {
2418 int i;
2419
2420 for (i = 0; i < n; i++) {
2421 gdb_read_byte(s, buf[i]);
2422 }
5819e3e0 2423 } else {
5ca666c7
AF
2424 /* XXX: Connection closed. Should probably wait for another
2425 connection before continuing. */
5819e3e0
PW
2426 if (n == 0) {
2427 close(s->fd);
2428 }
2429 s->fd = -1;
5ca666c7 2430 return sig;
1fddef4b 2431 }
5ca666c7
AF
2432 }
2433 sig = s->signal;
2434 s->signal = 0;
2435 return sig;
1fddef4b 2436}
e9009676 2437
ca587a8e 2438/* Tell the remote gdb that the process has exited due to SIG. */
9349b4f9 2439void gdb_signalled(CPUArchState *env, int sig)
ca587a8e 2440{
5ca666c7
AF
2441 GDBState *s;
2442 char buf[4];
ca587a8e 2443
5ca666c7
AF
2444 s = gdbserver_state;
2445 if (gdbserver_fd < 0 || s->fd < 0) {
2446 return;
2447 }
ca587a8e 2448
5ca666c7
AF
2449 snprintf(buf, sizeof(buf), "X%02x", target_signal_to_gdb(sig));
2450 put_packet(s, buf);
ca587a8e 2451}
1fddef4b 2452
2f652224 2453static bool gdb_accept(void)
858693c6
FB
2454{
2455 GDBState *s;
2456 struct sockaddr_in sockaddr;
2457 socklen_t len;
bf1c852a 2458 int fd;
858693c6
FB
2459
2460 for(;;) {
2461 len = sizeof(sockaddr);
2462 fd = accept(gdbserver_fd, (struct sockaddr *)&sockaddr, &len);
2463 if (fd < 0 && errno != EINTR) {
2464 perror("accept");
2f652224 2465 return false;
858693c6 2466 } else if (fd >= 0) {
f5bdd781 2467 qemu_set_cloexec(fd);
b4608c04
FB
2468 break;
2469 }
2470 }
858693c6
FB
2471
2472 /* set short latency */
2f652224
PM
2473 if (socket_set_nodelay(fd)) {
2474 perror("setsockopt");
ead75d84 2475 close(fd);
2f652224
PM
2476 return false;
2477 }
3b46e624 2478
7267c094 2479 s = g_malloc0(sizeof(GDBState));
8f468636 2480 create_default_process(s);
970ed906
LM
2481 s->processes[0].attached = true;
2482 s->c_cpu = gdb_first_attached_cpu(s);
2483 s->g_cpu = s->c_cpu;
858693c6 2484 s->fd = fd;
5b50e790 2485 gdb_has_xml = false;
858693c6 2486
880a7578 2487 gdbserver_state = s;
2f652224 2488 return true;
858693c6
FB
2489}
2490
2491static int gdbserver_open(int port)
2492{
2493 struct sockaddr_in sockaddr;
6669ca13 2494 int fd, ret;
858693c6
FB
2495
2496 fd = socket(PF_INET, SOCK_STREAM, 0);
2497 if (fd < 0) {
2498 perror("socket");
2499 return -1;
2500 }
f5bdd781 2501 qemu_set_cloexec(fd);
858693c6 2502
6669ca13 2503 socket_set_fast_reuse(fd);
858693c6
FB
2504
2505 sockaddr.sin_family = AF_INET;
2506 sockaddr.sin_port = htons(port);
2507 sockaddr.sin_addr.s_addr = 0;
2508 ret = bind(fd, (struct sockaddr *)&sockaddr, sizeof(sockaddr));
2509 if (ret < 0) {
2510 perror("bind");
bb16172c 2511 close(fd);
858693c6
FB
2512 return -1;
2513 }
96165b9e 2514 ret = listen(fd, 1);
858693c6
FB
2515 if (ret < 0) {
2516 perror("listen");
bb16172c 2517 close(fd);
858693c6
FB
2518 return -1;
2519 }
858693c6
FB
2520 return fd;
2521}
2522
2523int gdbserver_start(int port)
2524{
2525 gdbserver_fd = gdbserver_open(port);
2526 if (gdbserver_fd < 0)
2527 return -1;
2528 /* accept connections */
2f652224
PM
2529 if (!gdb_accept()) {
2530 close(gdbserver_fd);
2531 gdbserver_fd = -1;
2532 return -1;
2533 }
4046d913
PB
2534 return 0;
2535}
2b1319c8
AJ
2536
2537/* Disable gdb stub for child processes. */
f7ec7f7b 2538void gdbserver_fork(CPUState *cpu)
2b1319c8
AJ
2539{
2540 GDBState *s = gdbserver_state;
75a34036
AF
2541
2542 if (gdbserver_fd < 0 || s->fd < 0) {
2543 return;
2544 }
2b1319c8
AJ
2545 close(s->fd);
2546 s->fd = -1;
b3310ab3 2547 cpu_breakpoint_remove_all(cpu, BP_GDB);
75a34036 2548 cpu_watchpoint_remove_all(cpu, BP_GDB);
2b1319c8 2549}
1fddef4b 2550#else
aa1f17c1 2551static int gdb_chr_can_receive(void *opaque)
4046d913 2552{
56aebc89
PB
2553 /* We can handle an arbitrarily large amount of data.
2554 Pick the maximum packet size, which is as good as anything. */
2555 return MAX_PACKET_LENGTH;
4046d913
PB
2556}
2557
aa1f17c1 2558static void gdb_chr_receive(void *opaque, const uint8_t *buf, int size)
4046d913 2559{
4046d913
PB
2560 int i;
2561
2562 for (i = 0; i < size; i++) {
880a7578 2563 gdb_read_byte(gdbserver_state, buf[i]);
4046d913
PB
2564 }
2565}
2566
2567static void gdb_chr_event(void *opaque, int event)
2568{
970ed906
LM
2569 int i;
2570 GDBState *s = (GDBState *) opaque;
2571
4046d913 2572 switch (event) {
b6b8df56 2573 case CHR_EVENT_OPENED:
970ed906
LM
2574 /* Start with first process attached, others detached */
2575 for (i = 0; i < s->process_num; i++) {
2576 s->processes[i].attached = !i;
2577 }
2578
2579 s->c_cpu = gdb_first_attached_cpu(s);
2580 s->g_cpu = s->c_cpu;
2581
0461d5a6 2582 vm_stop(RUN_STATE_PAUSED);
5b50e790 2583 gdb_has_xml = false;
4046d913
PB
2584 break;
2585 default:
2586 break;
2587 }
2588}
2589
8a34a0fb
AL
2590static void gdb_monitor_output(GDBState *s, const char *msg, int len)
2591{
2592 char buf[MAX_PACKET_LENGTH];
2593
2594 buf[0] = 'O';
2595 if (len > (MAX_PACKET_LENGTH/2) - 1)
2596 len = (MAX_PACKET_LENGTH/2) - 1;
2597 memtohex(buf + 1, (uint8_t *)msg, len);
2598 put_packet(s, buf);
2599}
2600
0ec7b3e7 2601static int gdb_monitor_write(Chardev *chr, const uint8_t *buf, int len)
8a34a0fb
AL
2602{
2603 const char *p = (const char *)buf;
2604 int max_sz;
2605
2606 max_sz = (sizeof(gdbserver_state->last_packet) - 2) / 2;
2607 for (;;) {
2608 if (len <= max_sz) {
2609 gdb_monitor_output(gdbserver_state, p, len);
2610 break;
2611 }
2612 gdb_monitor_output(gdbserver_state, p, max_sz);
2613 p += max_sz;
2614 len -= max_sz;
2615 }
2616 return len;
2617}
2618
59030a8c
AL
2619#ifndef _WIN32
2620static void gdb_sigterm_handler(int signal)
2621{
1354869c 2622 if (runstate_is_running()) {
0461d5a6 2623 vm_stop(RUN_STATE_PAUSED);
e07bbac5 2624 }
59030a8c
AL
2625}
2626#endif
2627
777357d7
MAL
2628static void gdb_monitor_open(Chardev *chr, ChardevBackend *backend,
2629 bool *be_opened, Error **errp)
2630{
2631 *be_opened = false;
2632}
2633
2634static void char_gdb_class_init(ObjectClass *oc, void *data)
2635{
2636 ChardevClass *cc = CHARDEV_CLASS(oc);
2637
2638 cc->internal = true;
2639 cc->open = gdb_monitor_open;
2640 cc->chr_write = gdb_monitor_write;
2641}
2642
2643#define TYPE_CHARDEV_GDB "chardev-gdb"
2644
2645static const TypeInfo char_gdb_type_info = {
2646 .name = TYPE_CHARDEV_GDB,
2647 .parent = TYPE_CHARDEV,
2648 .class_init = char_gdb_class_init,
2649};
2650
8f468636
LM
2651static int find_cpu_clusters(Object *child, void *opaque)
2652{
2653 if (object_dynamic_cast(child, TYPE_CPU_CLUSTER)) {
2654 GDBState *s = (GDBState *) opaque;
2655 CPUClusterState *cluster = CPU_CLUSTER(child);
2656 GDBProcess *process;
2657
2658 s->processes = g_renew(GDBProcess, s->processes, ++s->process_num);
2659
2660 process = &s->processes[s->process_num - 1];
2661
2662 /*
2663 * GDB process IDs -1 and 0 are reserved. To avoid subtle errors at
2664 * runtime, we enforce here that the machine does not use a cluster ID
2665 * that would lead to PID 0.
2666 */
2667 assert(cluster->cluster_id != UINT32_MAX);
2668 process->pid = cluster->cluster_id + 1;
2669 process->attached = false;
c145eeae 2670 process->target_xml[0] = '\0';
8f468636
LM
2671
2672 return 0;
2673 }
2674
2675 return object_child_foreach(child, find_cpu_clusters, opaque);
2676}
2677
2678static int pid_order(const void *a, const void *b)
2679{
2680 GDBProcess *pa = (GDBProcess *) a;
2681 GDBProcess *pb = (GDBProcess *) b;
2682
2683 if (pa->pid < pb->pid) {
2684 return -1;
2685 } else if (pa->pid > pb->pid) {
2686 return 1;
2687 } else {
2688 return 0;
2689 }
2690}
2691
2692static void create_processes(GDBState *s)
2693{
2694 object_child_foreach(object_get_root(), find_cpu_clusters, s);
2695
2696 if (s->processes) {
2697 /* Sort by PID */
2698 qsort(s->processes, s->process_num, sizeof(s->processes[0]), pid_order);
2699 }
2700
2701 create_default_process(s);
2702}
2703
2704static void cleanup_processes(GDBState *s)
2705{
2706 g_free(s->processes);
2707 s->process_num = 0;
2708 s->processes = NULL;
2709}
2710
59030a8c 2711int gdbserver_start(const char *device)
4046d913 2712{
5c9522b3
DG
2713 trace_gdbstub_op_start(device);
2714
4046d913 2715 GDBState *s;
59030a8c 2716 char gdbstub_device_name[128];
0ec7b3e7
MAL
2717 Chardev *chr = NULL;
2718 Chardev *mon_chr;
cfc3475a 2719
508b4ecc
ZY
2720 if (!first_cpu) {
2721 error_report("gdbstub: meaningless to attach gdb to a "
2722 "machine without any CPU.");
2723 return -1;
2724 }
2725
59030a8c
AL
2726 if (!device)
2727 return -1;
2728 if (strcmp(device, "none") != 0) {
2729 if (strstart(device, "tcp:", NULL)) {
2730 /* enforce required TCP attributes */
2731 snprintf(gdbstub_device_name, sizeof(gdbstub_device_name),
2732 "%s,nowait,nodelay,server", device);
2733 device = gdbstub_device_name;
36556b20 2734 }
59030a8c
AL
2735#ifndef _WIN32
2736 else if (strcmp(device, "stdio") == 0) {
2737 struct sigaction act;
4046d913 2738
59030a8c
AL
2739 memset(&act, 0, sizeof(act));
2740 act.sa_handler = gdb_sigterm_handler;
2741 sigaction(SIGINT, &act, NULL);
2742 }
2743#endif
95e30b2a
MAL
2744 /*
2745 * FIXME: it's a bit weird to allow using a mux chardev here
2746 * and implicitly setup a monitor. We may want to break this.
2747 */
4ad6f6cb 2748 chr = qemu_chr_new_noreplay("gdb", device, true, NULL);
36556b20
AL
2749 if (!chr)
2750 return -1;
cfc3475a
PB
2751 }
2752
36556b20
AL
2753 s = gdbserver_state;
2754 if (!s) {
7267c094 2755 s = g_malloc0(sizeof(GDBState));
36556b20 2756 gdbserver_state = s;
4046d913 2757
36556b20
AL
2758 qemu_add_vm_change_state_handler(gdb_vm_state_change, NULL);
2759
2760 /* Initialize a monitor terminal for gdb */
777357d7 2761 mon_chr = qemu_chardev_new(NULL, TYPE_CHARDEV_GDB,
4ad6f6cb 2762 NULL, NULL, &error_abort);
36556b20
AL
2763 monitor_init(mon_chr, 0);
2764 } else {
1ce2610c 2765 qemu_chr_fe_deinit(&s->chr, true);
36556b20 2766 mon_chr = s->mon_chr;
8f468636 2767 cleanup_processes(s);
36556b20 2768 memset(s, 0, sizeof(GDBState));
32a6ebec 2769 s->mon_chr = mon_chr;
36556b20 2770 }
8f468636
LM
2771
2772 create_processes(s);
2773
32a6ebec
MAL
2774 if (chr) {
2775 qemu_chr_fe_init(&s->chr, chr, &error_abort);
5345fdb4 2776 qemu_chr_fe_set_handlers(&s->chr, gdb_chr_can_receive, gdb_chr_receive,
970ed906 2777 gdb_chr_event, NULL, s, NULL, true);
32a6ebec 2778 }
36556b20
AL
2779 s->state = chr ? RS_IDLE : RS_INACTIVE;
2780 s->mon_chr = mon_chr;
cdb432b2 2781 s->current_syscall_cb = NULL;
8a34a0fb 2782
b4608c04
FB
2783 return 0;
2784}
777357d7 2785
1bb982b8
KF
2786void gdbserver_cleanup(void)
2787{
2788 if (gdbserver_state) {
2789 put_packet(gdbserver_state, "W00");
2790 }
2791}
2792
777357d7
MAL
2793static void register_types(void)
2794{
2795 type_register_static(&char_gdb_type_info);
2796}
2797
2798type_init(register_types);
4046d913 2799#endif