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