blob: 9ffb376eb4e685012a3058fd420c85bfbcc64903 [file] [log] [blame]
bellardb4608c02003-06-27 17:34:32 +00001/*
2 * gdb server stub
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard34751872005-07-02 14:31:34 +00004 * Copyright (c) 2003-2005 Fabrice Bellard
bellardb4608c02003-06-27 17:34:32 +00005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
bellardb4608c02003-06-27 17:34:32 +000018 */
pbrook978efd62006-06-17 18:30:42 +000019#include "config.h"
pbrook56aebc82008-10-11 17:55:29 +000020#include "qemu-common.h"
bellard1fddef42005-04-17 19:16:13 +000021#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>
pbrook978efd62006-06-17 18:30:42 +000028#include <fcntl.h>
bellard1fddef42005-04-17 19:16:13 +000029
30#include "qemu.h"
31#else
Paolo Bonzini83c90892012-12-17 18:19:49 +010032#include "monitor/monitor.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +020033#include "sysemu/char.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010034#include "sysemu/sysemu.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010035#include "exec/gdbstub.h"
bellard1fddef42005-04-17 19:16:13 +000036#endif
bellard67b915a2004-03-31 23:37:16 +000037
pbrook56aebc82008-10-11 17:55:29 +000038#define MAX_PACKET_LENGTH 4096
39
Blue Swirl2b41f102011-06-19 20:38:22 +000040#include "cpu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010041#include "qemu/sockets.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010042#include "sysemu/kvm.h"
Richard Henderson6ee77b12012-08-23 10:44:45 -070043#include "qemu/bitops.h"
aurel32ca587a82008-12-18 22:44:13 +000044
Fabien Chouteau44520db2011-09-08 12:48:16 +020045#ifndef TARGET_CPU_MEMORY_RW_DEBUG
Andreas Färber9349b4f2012-03-14 01:38:32 +010046static inline int target_memory_rw_debug(CPUArchState *env, target_ulong addr,
Fabien Chouteau44520db2011-09-08 12:48:16 +020047 uint8_t *buf, int len, int is_write)
48{
49 return cpu_memory_rw_debug(env, addr, buf, len, is_write);
50}
51#else
52/* target_memory_rw_debug() defined in cpu.h */
53#endif
aurel32ca587a82008-12-18 22:44:13 +000054
55enum {
56 GDB_SIGNAL_0 = 0,
57 GDB_SIGNAL_INT = 2,
Jan Kiszka425189a2011-03-22 11:02:09 +010058 GDB_SIGNAL_QUIT = 3,
aurel32ca587a82008-12-18 22:44:13 +000059 GDB_SIGNAL_TRAP = 5,
Jan Kiszka425189a2011-03-22 11:02:09 +010060 GDB_SIGNAL_ABRT = 6,
61 GDB_SIGNAL_ALRM = 14,
62 GDB_SIGNAL_IO = 23,
63 GDB_SIGNAL_XCPU = 24,
aurel32ca587a82008-12-18 22:44:13 +000064 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,
blueswir1c72d5bf2009-01-15 17:27:45 +0000107#ifdef TARGET_SIGPWR
aurel32ca587a82008-12-18 22:44:13 +0000108 TARGET_SIGPWR,
blueswir1c72d5bf2009-01-15 17:27:45 +0000109#else
110 -1,
111#endif
aurel32ca587a82008-12-18 22:44:13 +0000112 -1, /* SIGPOLL */
113 -1,
114 -1,
115 -1,
116 -1,
117 -1,
118 -1,
119 -1,
120 -1,
121 -1,
122 -1,
123 -1,
blueswir1c72d5bf2009-01-15 17:27:45 +0000124#ifdef __SIGRTMIN
aurel32ca587a82008-12-18 22:44:13 +0000125 __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
blueswir1c72d5bf2009-01-15 17:27:45 +0000231#endif
aurel32ca587a82008-12-18 22:44:13 +0000232};
bellard8f447cc2006-06-14 15:21:14 +0000233#else
aurel32ca587a82008-12-18 22:44:13 +0000234/* 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};
bellard8f447cc2006-06-14 15:21:14 +0000250#endif
bellardb4608c02003-06-27 17:34:32 +0000251
aurel32ca587a82008-12-18 22:44:13 +0000252#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}
261#endif
262
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
bellard4abe6152003-07-26 18:01:58 +0000271//#define DEBUG_GDB
bellardb4608c02003-06-27 17:34:32 +0000272
pbrook56aebc82008-10-11 17:55:29 +0000273typedef 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
bellard858693c2004-03-31 18:52:07 +0000282enum RSState {
aliguori36556b22009-03-28 18:05:53 +0000283 RS_INACTIVE,
bellard858693c2004-03-31 18:52:07 +0000284 RS_IDLE,
285 RS_GETLINE,
286 RS_CHKSUM1,
287 RS_CHKSUM2,
288};
bellard858693c2004-03-31 18:52:07 +0000289typedef struct GDBState {
Andreas Färber9349b4f2012-03-14 01:38:32 +0100290 CPUArchState *c_cpu; /* current CPU for step/continue ops */
291 CPUArchState *g_cpu; /* current CPU for other ops */
292 CPUArchState *query_cpu; /* for q{f|s}ThreadInfo */
bellard41625032005-04-24 10:07:11 +0000293 enum RSState state; /* parsing state */
pbrook56aebc82008-10-11 17:55:29 +0000294 char line_buf[MAX_PACKET_LENGTH];
bellard858693c2004-03-31 18:52:07 +0000295 int line_buf_index;
296 int line_csum;
pbrook56aebc82008-10-11 17:55:29 +0000297 uint8_t last_packet[MAX_PACKET_LENGTH + 4];
pbrook4046d912007-01-28 01:53:16 +0000298 int last_packet_len;
edgar_igl1f487ee2008-05-17 22:20:53 +0000299 int signal;
bellard41625032005-04-24 10:07:11 +0000300#ifdef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +0000301 int fd;
bellard41625032005-04-24 10:07:11 +0000302 int running_state;
pbrook4046d912007-01-28 01:53:16 +0000303#else
304 CharDriverState *chr;
aliguori8a34a0f2009-03-05 23:01:55 +0000305 CharDriverState *mon_chr;
bellard41625032005-04-24 10:07:11 +0000306#endif
Meador Ingecdb432b2012-03-15 17:49:45 +0000307 char syscall_buf[256];
308 gdb_syscall_complete_cb current_syscall_cb;
bellard858693c2004-03-31 18:52:07 +0000309} GDBState;
bellardb4608c02003-06-27 17:34:32 +0000310
edgar_igl60897d32008-05-09 08:25:14 +0000311/* 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
aliguori880a7572008-11-18 20:30:24 +0000316static GDBState *gdbserver_state;
317
pbrook56aebc82008-10-11 17:55:29 +0000318/* This is an ugly hack to cope with both new and old gdb.
319 If gdb sends qXfer:features:read then assume we're talking to a newish
320 gdb that understands target descriptions. */
321static int gdb_has_xml;
322
bellard1fddef42005-04-17 19:16:13 +0000323#ifdef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +0000324/* XXX: This is not thread safe. Do we care? */
325static int gdbserver_fd = -1;
326
bellard858693c2004-03-31 18:52:07 +0000327static int get_char(GDBState *s)
bellardb4608c02003-06-27 17:34:32 +0000328{
329 uint8_t ch;
330 int ret;
331
332 for(;;) {
Blue Swirl00aa0042011-07-23 20:04:29 +0000333 ret = qemu_recv(s->fd, &ch, 1, 0);
bellardb4608c02003-06-27 17:34:32 +0000334 if (ret < 0) {
edgar_igl1f487ee2008-05-17 22:20:53 +0000335 if (errno == ECONNRESET)
336 s->fd = -1;
bellardb4608c02003-06-27 17:34:32 +0000337 if (errno != EINTR && errno != EAGAIN)
338 return -1;
339 } else if (ret == 0) {
edgar_igl1f487ee2008-05-17 22:20:53 +0000340 close(s->fd);
341 s->fd = -1;
bellardb4608c02003-06-27 17:34:32 +0000342 return -1;
343 } else {
344 break;
345 }
346 }
347 return ch;
348}
pbrook4046d912007-01-28 01:53:16 +0000349#endif
bellardb4608c02003-06-27 17:34:32 +0000350
blueswir1654efcf2009-04-18 07:29:59 +0000351static enum {
pbrooka2d1eba2007-01-28 03:10:55 +0000352 GDB_SYS_UNKNOWN,
353 GDB_SYS_ENABLED,
354 GDB_SYS_DISABLED,
355} gdb_syscall_mode;
356
357/* If gdb is connected when the first semihosting syscall occurs then use
358 remote gdb syscalls. Otherwise use native file IO. */
359int use_gdb_syscalls(void)
360{
361 if (gdb_syscall_mode == GDB_SYS_UNKNOWN) {
aliguori880a7572008-11-18 20:30:24 +0000362 gdb_syscall_mode = (gdbserver_state ? GDB_SYS_ENABLED
363 : GDB_SYS_DISABLED);
pbrooka2d1eba2007-01-28 03:10:55 +0000364 }
365 return gdb_syscall_mode == GDB_SYS_ENABLED;
366}
367
edgar_iglba70a622008-03-14 06:10:42 +0000368/* Resume execution. */
369static inline void gdb_continue(GDBState *s)
370{
371#ifdef CONFIG_USER_ONLY
372 s->running_state = 1;
373#else
Paolo Bonzinibc7d0e62013-06-03 17:06:55 +0200374 if (runstate_check(RUN_STATE_GUEST_PANICKED)) {
375 runstate_set(RUN_STATE_DEBUG);
376 }
Paolo Bonzini26ac7a32013-06-03 17:06:54 +0200377 if (!runstate_needs_reset()) {
Paolo Bonzini87f25c12013-05-30 13:20:40 +0200378 vm_start();
379 }
edgar_iglba70a622008-03-14 06:10:42 +0000380#endif
381}
382
bellard858693c2004-03-31 18:52:07 +0000383static void put_buffer(GDBState *s, const uint8_t *buf, int len)
bellardb4608c02003-06-27 17:34:32 +0000384{
pbrook4046d912007-01-28 01:53:16 +0000385#ifdef CONFIG_USER_ONLY
bellardb4608c02003-06-27 17:34:32 +0000386 int ret;
387
388 while (len > 0) {
bellard8f447cc2006-06-14 15:21:14 +0000389 ret = send(s->fd, buf, len, 0);
bellardb4608c02003-06-27 17:34:32 +0000390 if (ret < 0) {
391 if (errno != EINTR && errno != EAGAIN)
392 return;
393 } else {
394 buf += ret;
395 len -= ret;
396 }
397 }
pbrook4046d912007-01-28 01:53:16 +0000398#else
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500399 qemu_chr_fe_write(s->chr, buf, len);
pbrook4046d912007-01-28 01:53:16 +0000400#endif
bellardb4608c02003-06-27 17:34:32 +0000401}
402
403static inline int fromhex(int v)
404{
405 if (v >= '0' && v <= '9')
406 return v - '0';
407 else if (v >= 'A' && v <= 'F')
408 return v - 'A' + 10;
409 else if (v >= 'a' && v <= 'f')
410 return v - 'a' + 10;
411 else
412 return 0;
413}
414
415static inline int tohex(int v)
416{
417 if (v < 10)
418 return v + '0';
419 else
420 return v - 10 + 'a';
421}
422
423static void memtohex(char *buf, const uint8_t *mem, int len)
424{
425 int i, c;
426 char *q;
427 q = buf;
428 for(i = 0; i < len; i++) {
429 c = mem[i];
430 *q++ = tohex(c >> 4);
431 *q++ = tohex(c & 0xf);
432 }
433 *q = '\0';
434}
435
436static void hextomem(uint8_t *mem, const char *buf, int len)
437{
438 int i;
439
440 for(i = 0; i < len; i++) {
441 mem[i] = (fromhex(buf[0]) << 4) | fromhex(buf[1]);
442 buf += 2;
443 }
444}
445
bellardb4608c02003-06-27 17:34:32 +0000446/* return -1 if error, 0 if OK */
pbrook56aebc82008-10-11 17:55:29 +0000447static int put_packet_binary(GDBState *s, const char *buf, int len)
bellardb4608c02003-06-27 17:34:32 +0000448{
pbrook56aebc82008-10-11 17:55:29 +0000449 int csum, i;
ths60fe76f2007-12-16 03:02:09 +0000450 uint8_t *p;
bellardb4608c02003-06-27 17:34:32 +0000451
bellardb4608c02003-06-27 17:34:32 +0000452 for(;;) {
pbrook4046d912007-01-28 01:53:16 +0000453 p = s->last_packet;
454 *(p++) = '$';
pbrook4046d912007-01-28 01:53:16 +0000455 memcpy(p, buf, len);
456 p += len;
bellardb4608c02003-06-27 17:34:32 +0000457 csum = 0;
458 for(i = 0; i < len; i++) {
459 csum += buf[i];
460 }
pbrook4046d912007-01-28 01:53:16 +0000461 *(p++) = '#';
462 *(p++) = tohex((csum >> 4) & 0xf);
463 *(p++) = tohex((csum) & 0xf);
bellardb4608c02003-06-27 17:34:32 +0000464
pbrook4046d912007-01-28 01:53:16 +0000465 s->last_packet_len = p - s->last_packet;
thsffe8ab82007-12-16 03:16:05 +0000466 put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
bellardb4608c02003-06-27 17:34:32 +0000467
pbrook4046d912007-01-28 01:53:16 +0000468#ifdef CONFIG_USER_ONLY
469 i = get_char(s);
470 if (i < 0)
bellardb4608c02003-06-27 17:34:32 +0000471 return -1;
pbrook4046d912007-01-28 01:53:16 +0000472 if (i == '+')
bellardb4608c02003-06-27 17:34:32 +0000473 break;
pbrook4046d912007-01-28 01:53:16 +0000474#else
475 break;
476#endif
bellardb4608c02003-06-27 17:34:32 +0000477 }
478 return 0;
479}
480
pbrook56aebc82008-10-11 17:55:29 +0000481/* return -1 if error, 0 if OK */
482static int put_packet(GDBState *s, const char *buf)
483{
484#ifdef DEBUG_GDB
485 printf("reply='%s'\n", buf);
486#endif
487
488 return put_packet_binary(s, buf, strlen(buf));
489}
490
491/* The GDB remote protocol transfers values in target byte order. This means
492 we can use the raw memory access routines to access the value buffer.
493 Conveniently, these also handle the case where the buffer is mis-aligned.
494 */
495#define GET_REG8(val) do { \
496 stb_p(mem_buf, val); \
497 return 1; \
498 } while(0)
499#define GET_REG16(val) do { \
500 stw_p(mem_buf, val); \
501 return 2; \
502 } while(0)
503#define GET_REG32(val) do { \
504 stl_p(mem_buf, val); \
505 return 4; \
506 } while(0)
507#define GET_REG64(val) do { \
508 stq_p(mem_buf, val); \
509 return 8; \
510 } while(0)
511
512#if TARGET_LONG_BITS == 64
513#define GET_REGL(val) GET_REG64(val)
514#define ldtul_p(addr) ldq_p(addr)
515#else
516#define GET_REGL(val) GET_REG32(val)
517#define ldtul_p(addr) ldl_p(addr)
518#endif
519
edgar_iglfde3fd62008-05-09 08:50:01 +0000520#if defined(TARGET_I386)
balrog5ad265e2007-10-31 00:21:35 +0000521
522#ifdef TARGET_X86_64
pbrook56aebc82008-10-11 17:55:29 +0000523static const int gpr_map[16] = {
bellard79808572008-05-09 14:40:22 +0000524 R_EAX, R_EBX, R_ECX, R_EDX, R_ESI, R_EDI, R_EBP, R_ESP,
pbrook56aebc82008-10-11 17:55:29 +0000525 8, 9, 10, 11, 12, 13, 14, 15
bellard79808572008-05-09 14:40:22 +0000526};
bellard79808572008-05-09 14:40:22 +0000527#else
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200528#define gpr_map gpr_map32
bellard79808572008-05-09 14:40:22 +0000529#endif
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200530static const int gpr_map32[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
pbrook56aebc82008-10-11 17:55:29 +0000531
532#define NUM_CORE_REGS (CPU_NB_REGS * 2 + 25)
533
Jan Kiszkab1631e72009-06-27 09:53:51 +0200534#define IDX_IP_REG CPU_NB_REGS
535#define IDX_FLAGS_REG (IDX_IP_REG + 1)
536#define IDX_SEG_REGS (IDX_FLAGS_REG + 1)
537#define IDX_FP_REGS (IDX_SEG_REGS + 6)
538#define IDX_XMM_REGS (IDX_FP_REGS + 16)
539#define IDX_MXCSR_REG (IDX_XMM_REGS + CPU_NB_REGS)
540
Andreas Färberf3840912012-02-20 06:44:56 +0100541static int cpu_gdb_read_register(CPUX86State *env, uint8_t *mem_buf, int n)
pbrook56aebc82008-10-11 17:55:29 +0000542{
543 if (n < CPU_NB_REGS) {
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200544 if (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK) {
545 GET_REG64(env->regs[gpr_map[n]]);
546 } else if (n < CPU_NB_REGS32) {
547 GET_REG32(env->regs[gpr_map32[n]]);
548 }
Jan Kiszkab1631e72009-06-27 09:53:51 +0200549 } else if (n >= IDX_FP_REGS && n < IDX_FP_REGS + 8) {
pbrook56aebc82008-10-11 17:55:29 +0000550#ifdef USE_X86LDOUBLE
Jan Kiszkab1631e72009-06-27 09:53:51 +0200551 /* FIXME: byteswap float values - after fixing fpregs layout. */
552 memcpy(mem_buf, &env->fpregs[n - IDX_FP_REGS], 10);
pbrook56aebc82008-10-11 17:55:29 +0000553#else
554 memset(mem_buf, 0, 10);
555#endif
556 return 10;
Jan Kiszkab1631e72009-06-27 09:53:51 +0200557 } else if (n >= IDX_XMM_REGS && n < IDX_XMM_REGS + CPU_NB_REGS) {
558 n -= IDX_XMM_REGS;
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200559 if (n < CPU_NB_REGS32 ||
560 (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK)) {
561 stq_p(mem_buf, env->xmm_regs[n].XMM_Q(0));
562 stq_p(mem_buf + 8, env->xmm_regs[n].XMM_Q(1));
563 return 16;
564 }
pbrook56aebc82008-10-11 17:55:29 +0000565 } else {
pbrook56aebc82008-10-11 17:55:29 +0000566 switch (n) {
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200567 case IDX_IP_REG:
568 if (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK) {
569 GET_REG64(env->eip);
570 } else {
571 GET_REG32(env->eip);
572 }
Jan Kiszkab1631e72009-06-27 09:53:51 +0200573 case IDX_FLAGS_REG: GET_REG32(env->eflags);
574
575 case IDX_SEG_REGS: GET_REG32(env->segs[R_CS].selector);
576 case IDX_SEG_REGS + 1: GET_REG32(env->segs[R_SS].selector);
577 case IDX_SEG_REGS + 2: GET_REG32(env->segs[R_DS].selector);
578 case IDX_SEG_REGS + 3: GET_REG32(env->segs[R_ES].selector);
579 case IDX_SEG_REGS + 4: GET_REG32(env->segs[R_FS].selector);
580 case IDX_SEG_REGS + 5: GET_REG32(env->segs[R_GS].selector);
581
582 case IDX_FP_REGS + 8: GET_REG32(env->fpuc);
583 case IDX_FP_REGS + 9: GET_REG32((env->fpus & ~0x3800) |
584 (env->fpstt & 0x7) << 11);
585 case IDX_FP_REGS + 10: GET_REG32(0); /* ftag */
586 case IDX_FP_REGS + 11: GET_REG32(0); /* fiseg */
587 case IDX_FP_REGS + 12: GET_REG32(0); /* fioff */
588 case IDX_FP_REGS + 13: GET_REG32(0); /* foseg */
589 case IDX_FP_REGS + 14: GET_REG32(0); /* fooff */
590 case IDX_FP_REGS + 15: GET_REG32(0); /* fop */
591
592 case IDX_MXCSR_REG: GET_REG32(env->mxcsr);
pbrook56aebc82008-10-11 17:55:29 +0000593 }
bellard79808572008-05-09 14:40:22 +0000594 }
pbrook56aebc82008-10-11 17:55:29 +0000595 return 0;
bellard79808572008-05-09 14:40:22 +0000596}
597
Andreas Färberf3840912012-02-20 06:44:56 +0100598static int cpu_x86_gdb_load_seg(CPUX86State *env, int sreg, uint8_t *mem_buf)
Jan Kiszka84273172009-06-27 09:53:51 +0200599{
600 uint16_t selector = ldl_p(mem_buf);
601
602 if (selector != env->segs[sreg].selector) {
603#if defined(CONFIG_USER_ONLY)
604 cpu_x86_load_seg(env, sreg, selector);
605#else
606 unsigned int limit, flags;
607 target_ulong base;
608
609 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
610 base = selector << 4;
611 limit = 0xffff;
612 flags = 0;
613 } else {
614 if (!cpu_x86_get_descr_debug(env, selector, &base, &limit, &flags))
615 return 4;
616 }
617 cpu_x86_load_seg_cache(env, sreg, selector, base, limit, flags);
618#endif
619 }
620 return 4;
621}
622
Andreas Färberf3840912012-02-20 06:44:56 +0100623static int cpu_gdb_write_register(CPUX86State *env, uint8_t *mem_buf, int n)
bellard79808572008-05-09 14:40:22 +0000624{
pbrook56aebc82008-10-11 17:55:29 +0000625 uint32_t tmp;
626
Jan Kiszkab1631e72009-06-27 09:53:51 +0200627 if (n < CPU_NB_REGS) {
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200628 if (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK) {
629 env->regs[gpr_map[n]] = ldtul_p(mem_buf);
630 return sizeof(target_ulong);
631 } else if (n < CPU_NB_REGS32) {
632 n = gpr_map32[n];
633 env->regs[n] &= ~0xffffffffUL;
634 env->regs[n] |= (uint32_t)ldl_p(mem_buf);
635 return 4;
636 }
Jan Kiszkab1631e72009-06-27 09:53:51 +0200637 } else if (n >= IDX_FP_REGS && n < IDX_FP_REGS + 8) {
pbrook56aebc82008-10-11 17:55:29 +0000638#ifdef USE_X86LDOUBLE
Jan Kiszkab1631e72009-06-27 09:53:51 +0200639 /* FIXME: byteswap float values - after fixing fpregs layout. */
640 memcpy(&env->fpregs[n - IDX_FP_REGS], mem_buf, 10);
pbrook56aebc82008-10-11 17:55:29 +0000641#endif
642 return 10;
Jan Kiszkab1631e72009-06-27 09:53:51 +0200643 } else if (n >= IDX_XMM_REGS && n < IDX_XMM_REGS + CPU_NB_REGS) {
644 n -= IDX_XMM_REGS;
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200645 if (n < CPU_NB_REGS32 ||
646 (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK)) {
647 env->xmm_regs[n].XMM_Q(0) = ldq_p(mem_buf);
648 env->xmm_regs[n].XMM_Q(1) = ldq_p(mem_buf + 8);
649 return 16;
650 }
pbrook56aebc82008-10-11 17:55:29 +0000651 } else {
Jan Kiszkab1631e72009-06-27 09:53:51 +0200652 switch (n) {
653 case IDX_IP_REG:
Jan Kiszka5f30fa12009-09-17 18:14:13 +0200654 if (TARGET_LONG_BITS == 64 && env->hflags & HF_CS64_MASK) {
655 env->eip = ldq_p(mem_buf);
656 return 8;
657 } else {
658 env->eip &= ~0xffffffffUL;
659 env->eip |= (uint32_t)ldl_p(mem_buf);
660 return 4;
661 }
Jan Kiszkab1631e72009-06-27 09:53:51 +0200662 case IDX_FLAGS_REG:
663 env->eflags = ldl_p(mem_buf);
664 return 4;
665
Jan Kiszka84273172009-06-27 09:53:51 +0200666 case IDX_SEG_REGS: return cpu_x86_gdb_load_seg(env, R_CS, mem_buf);
667 case IDX_SEG_REGS + 1: return cpu_x86_gdb_load_seg(env, R_SS, mem_buf);
668 case IDX_SEG_REGS + 2: return cpu_x86_gdb_load_seg(env, R_DS, mem_buf);
669 case IDX_SEG_REGS + 3: return cpu_x86_gdb_load_seg(env, R_ES, mem_buf);
670 case IDX_SEG_REGS + 4: return cpu_x86_gdb_load_seg(env, R_FS, mem_buf);
671 case IDX_SEG_REGS + 5: return cpu_x86_gdb_load_seg(env, R_GS, mem_buf);
Jan Kiszkab1631e72009-06-27 09:53:51 +0200672
673 case IDX_FP_REGS + 8:
674 env->fpuc = ldl_p(mem_buf);
675 return 4;
676 case IDX_FP_REGS + 9:
677 tmp = ldl_p(mem_buf);
678 env->fpstt = (tmp >> 11) & 7;
679 env->fpus = tmp & ~0x3800;
680 return 4;
681 case IDX_FP_REGS + 10: /* ftag */ return 4;
682 case IDX_FP_REGS + 11: /* fiseg */ return 4;
683 case IDX_FP_REGS + 12: /* fioff */ return 4;
684 case IDX_FP_REGS + 13: /* foseg */ return 4;
685 case IDX_FP_REGS + 14: /* fooff */ return 4;
686 case IDX_FP_REGS + 15: /* fop */ return 4;
687
688 case IDX_MXCSR_REG:
689 env->mxcsr = ldl_p(mem_buf);
690 return 4;
bellard79808572008-05-09 14:40:22 +0000691 }
bellard79808572008-05-09 14:40:22 +0000692 }
pbrook56aebc82008-10-11 17:55:29 +0000693 /* Unrecognised register. */
694 return 0;
bellard6da41ea2004-01-04 15:48:38 +0000695}
696
bellard9e62fd72004-01-05 22:49:06 +0000697#elif defined (TARGET_PPC)
pbrook56aebc82008-10-11 17:55:29 +0000698
aurel32e571cb42009-01-24 15:07:42 +0000699/* Old gdb always expects FP registers. Newer (xml-aware) gdb only
700 expects whatever the target description contains. Due to a
701 historical mishap the FP registers appear in between core integer
702 regs and PC, MSR, CR, and so forth. We hack round this by giving the
703 FP regs zero size when talking to a newer gdb. */
pbrook56aebc82008-10-11 17:55:29 +0000704#define NUM_CORE_REGS 71
aurel32e571cb42009-01-24 15:07:42 +0000705#if defined (TARGET_PPC64)
706#define GDB_CORE_XML "power64-core.xml"
707#else
708#define GDB_CORE_XML "power-core.xml"
709#endif
pbrook56aebc82008-10-11 17:55:29 +0000710
Andreas Färberf3840912012-02-20 06:44:56 +0100711static int cpu_gdb_read_register(CPUPPCState *env, uint8_t *mem_buf, int n)
bellard9e62fd72004-01-05 22:49:06 +0000712{
pbrook56aebc82008-10-11 17:55:29 +0000713 if (n < 32) {
714 /* gprs */
715 GET_REGL(env->gpr[n]);
716 } else if (n < 64) {
717 /* fprs */
aurel32e571cb42009-01-24 15:07:42 +0000718 if (gdb_has_xml)
719 return 0;
aurel328d4acf92008-11-30 16:23:18 +0000720 stfq_p(mem_buf, env->fpr[n-32]);
pbrook56aebc82008-10-11 17:55:29 +0000721 return 8;
722 } else {
723 switch (n) {
724 case 64: GET_REGL(env->nip);
725 case 65: GET_REGL(env->msr);
726 case 66:
727 {
728 uint32_t cr = 0;
729 int i;
730 for (i = 0; i < 8; i++)
731 cr |= env->crf[i] << (32 - ((i + 1) * 4));
732 GET_REG32(cr);
733 }
734 case 67: GET_REGL(env->lr);
735 case 68: GET_REGL(env->ctr);
aurel323d7b4172008-10-21 11:28:46 +0000736 case 69: GET_REGL(env->xer);
aurel32e571cb42009-01-24 15:07:42 +0000737 case 70:
738 {
739 if (gdb_has_xml)
740 return 0;
Fabien Chouteau5a576fb2011-09-01 04:56:00 +0000741 GET_REG32(env->fpscr);
aurel32e571cb42009-01-24 15:07:42 +0000742 }
pbrook56aebc82008-10-11 17:55:29 +0000743 }
bellard9e62fd72004-01-05 22:49:06 +0000744 }
pbrook56aebc82008-10-11 17:55:29 +0000745 return 0;
bellard9e62fd72004-01-05 22:49:06 +0000746}
747
Andreas Färberf3840912012-02-20 06:44:56 +0100748static int cpu_gdb_write_register(CPUPPCState *env, uint8_t *mem_buf, int n)
bellard9e62fd72004-01-05 22:49:06 +0000749{
pbrook56aebc82008-10-11 17:55:29 +0000750 if (n < 32) {
751 /* gprs */
752 env->gpr[n] = ldtul_p(mem_buf);
753 return sizeof(target_ulong);
754 } else if (n < 64) {
755 /* fprs */
aurel32e571cb42009-01-24 15:07:42 +0000756 if (gdb_has_xml)
757 return 0;
aurel328d4acf92008-11-30 16:23:18 +0000758 env->fpr[n-32] = ldfq_p(mem_buf);
pbrook56aebc82008-10-11 17:55:29 +0000759 return 8;
760 } else {
761 switch (n) {
762 case 64:
763 env->nip = ldtul_p(mem_buf);
764 return sizeof(target_ulong);
765 case 65:
766 ppc_store_msr(env, ldtul_p(mem_buf));
767 return sizeof(target_ulong);
768 case 66:
769 {
770 uint32_t cr = ldl_p(mem_buf);
771 int i;
772 for (i = 0; i < 8; i++)
773 env->crf[i] = (cr >> (32 - ((i + 1) * 4))) & 0xF;
774 return 4;
775 }
776 case 67:
777 env->lr = ldtul_p(mem_buf);
778 return sizeof(target_ulong);
779 case 68:
780 env->ctr = ldtul_p(mem_buf);
781 return sizeof(target_ulong);
782 case 69:
aurel323d7b4172008-10-21 11:28:46 +0000783 env->xer = ldtul_p(mem_buf);
784 return sizeof(target_ulong);
pbrook56aebc82008-10-11 17:55:29 +0000785 case 70:
786 /* fpscr */
aurel32e571cb42009-01-24 15:07:42 +0000787 if (gdb_has_xml)
788 return 0;
Fabien Chouteaud6478bc2013-03-19 07:41:53 +0000789 store_fpscr(env, ldtul_p(mem_buf), 0xffffffff);
790 return sizeof(target_ulong);
pbrook56aebc82008-10-11 17:55:29 +0000791 }
bellard9e62fd72004-01-05 22:49:06 +0000792 }
pbrook56aebc82008-10-11 17:55:29 +0000793 return 0;
bellarde95c8d52004-09-30 22:22:08 +0000794}
pbrook56aebc82008-10-11 17:55:29 +0000795
bellarde95c8d52004-09-30 22:22:08 +0000796#elif defined (TARGET_SPARC)
bellarde95c8d52004-09-30 22:22:08 +0000797
pbrook56aebc82008-10-11 17:55:29 +0000798#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
799#define NUM_CORE_REGS 86
800#else
blueswir15a377912009-01-13 16:28:01 +0000801#define NUM_CORE_REGS 72
pbrook56aebc82008-10-11 17:55:29 +0000802#endif
803
804#ifdef TARGET_ABI32
805#define GET_REGA(val) GET_REG32(val)
806#else
807#define GET_REGA(val) GET_REGL(val)
808#endif
809
Andreas Färberf3840912012-02-20 06:44:56 +0100810static int cpu_gdb_read_register(CPUSPARCState *env, uint8_t *mem_buf, int n)
pbrook56aebc82008-10-11 17:55:29 +0000811{
812 if (n < 8) {
813 /* g0..g7 */
814 GET_REGA(env->gregs[n]);
bellarde95c8d52004-09-30 22:22:08 +0000815 }
pbrook56aebc82008-10-11 17:55:29 +0000816 if (n < 32) {
817 /* register window */
818 GET_REGA(env->regwptr[n - 8]);
bellarde95c8d52004-09-30 22:22:08 +0000819 }
pbrook56aebc82008-10-11 17:55:29 +0000820#if defined(TARGET_ABI32) || !defined(TARGET_SPARC64)
821 if (n < 64) {
822 /* fprs */
Richard Henderson30038fd2011-10-17 10:42:49 -0700823 if (n & 1) {
824 GET_REG32(env->fpr[(n - 32) / 2].l.lower);
825 } else {
826 GET_REG32(env->fpr[(n - 32) / 2].l.upper);
827 }
bellarde95c8d52004-09-30 22:22:08 +0000828 }
829 /* Y, PSR, WIM, TBR, PC, NPC, FPSR, CPSR */
pbrook56aebc82008-10-11 17:55:29 +0000830 switch (n) {
831 case 64: GET_REGA(env->y);
Blue Swirl5a834bb2010-05-09 20:19:04 +0000832 case 65: GET_REGA(cpu_get_psr(env));
pbrook56aebc82008-10-11 17:55:29 +0000833 case 66: GET_REGA(env->wim);
834 case 67: GET_REGA(env->tbr);
835 case 68: GET_REGA(env->pc);
836 case 69: GET_REGA(env->npc);
837 case 70: GET_REGA(env->fsr);
838 case 71: GET_REGA(0); /* csr */
blueswir15a377912009-01-13 16:28:01 +0000839 default: GET_REGA(0);
bellard34751872005-07-02 14:31:34 +0000840 }
bellard34751872005-07-02 14:31:34 +0000841#else
pbrook56aebc82008-10-11 17:55:29 +0000842 if (n < 64) {
843 /* f0-f31 */
Richard Henderson30038fd2011-10-17 10:42:49 -0700844 if (n & 1) {
845 GET_REG32(env->fpr[(n - 32) / 2].l.lower);
846 } else {
847 GET_REG32(env->fpr[(n - 32) / 2].l.upper);
848 }
bellard34751872005-07-02 14:31:34 +0000849 }
pbrook56aebc82008-10-11 17:55:29 +0000850 if (n < 80) {
851 /* f32-f62 (double width, even numbers only) */
Richard Henderson30038fd2011-10-17 10:42:49 -0700852 GET_REG64(env->fpr[(n - 32) / 2].ll);
pbrook56aebc82008-10-11 17:55:29 +0000853 }
854 switch (n) {
855 case 80: GET_REGL(env->pc);
856 case 81: GET_REGL(env->npc);
Blue Swirl5a834bb2010-05-09 20:19:04 +0000857 case 82: GET_REGL((cpu_get_ccr(env) << 32) |
858 ((env->asi & 0xff) << 24) |
859 ((env->pstate & 0xfff) << 8) |
860 cpu_get_cwp64(env));
pbrook56aebc82008-10-11 17:55:29 +0000861 case 83: GET_REGL(env->fsr);
862 case 84: GET_REGL(env->fprs);
863 case 85: GET_REGL(env->y);
864 }
bellard34751872005-07-02 14:31:34 +0000865#endif
pbrook56aebc82008-10-11 17:55:29 +0000866 return 0;
bellarde95c8d52004-09-30 22:22:08 +0000867}
868
Andreas Färberf3840912012-02-20 06:44:56 +0100869static int cpu_gdb_write_register(CPUSPARCState *env, uint8_t *mem_buf, int n)
bellarde95c8d52004-09-30 22:22:08 +0000870{
pbrook56aebc82008-10-11 17:55:29 +0000871#if defined(TARGET_ABI32)
872 abi_ulong tmp;
873
874 tmp = ldl_p(mem_buf);
blueswir196d19122008-06-07 08:03:05 +0000875#else
pbrook56aebc82008-10-11 17:55:29 +0000876 target_ulong tmp;
877
878 tmp = ldtul_p(mem_buf);
blueswir196d19122008-06-07 08:03:05 +0000879#endif
bellarde95c8d52004-09-30 22:22:08 +0000880
pbrook56aebc82008-10-11 17:55:29 +0000881 if (n < 8) {
882 /* g0..g7 */
883 env->gregs[n] = tmp;
884 } else if (n < 32) {
885 /* register window */
886 env->regwptr[n - 8] = tmp;
bellarde95c8d52004-09-30 22:22:08 +0000887 }
pbrook56aebc82008-10-11 17:55:29 +0000888#if defined(TARGET_ABI32) || !defined(TARGET_SPARC64)
889 else if (n < 64) {
890 /* fprs */
Richard Henderson30038fd2011-10-17 10:42:49 -0700891 /* f0-f31 */
892 if (n & 1) {
893 env->fpr[(n - 32) / 2].l.lower = tmp;
894 } else {
895 env->fpr[(n - 32) / 2].l.upper = tmp;
896 }
pbrook56aebc82008-10-11 17:55:29 +0000897 } else {
898 /* Y, PSR, WIM, TBR, PC, NPC, FPSR, CPSR */
899 switch (n) {
900 case 64: env->y = tmp; break;
Blue Swirl5a834bb2010-05-09 20:19:04 +0000901 case 65: cpu_put_psr(env, tmp); break;
pbrook56aebc82008-10-11 17:55:29 +0000902 case 66: env->wim = tmp; break;
903 case 67: env->tbr = tmp; break;
904 case 68: env->pc = tmp; break;
905 case 69: env->npc = tmp; break;
906 case 70: env->fsr = tmp; break;
907 default: return 0;
908 }
bellarde95c8d52004-09-30 22:22:08 +0000909 }
pbrook56aebc82008-10-11 17:55:29 +0000910 return 4;
bellard34751872005-07-02 14:31:34 +0000911#else
pbrook56aebc82008-10-11 17:55:29 +0000912 else if (n < 64) {
913 /* f0-f31 */
Richard Henderson30038fd2011-10-17 10:42:49 -0700914 tmp = ldl_p(mem_buf);
915 if (n & 1) {
916 env->fpr[(n - 32) / 2].l.lower = tmp;
917 } else {
918 env->fpr[(n - 32) / 2].l.upper = tmp;
919 }
pbrook56aebc82008-10-11 17:55:29 +0000920 return 4;
921 } else if (n < 80) {
922 /* f32-f62 (double width, even numbers only) */
Richard Henderson30038fd2011-10-17 10:42:49 -0700923 env->fpr[(n - 32) / 2].ll = tmp;
pbrook56aebc82008-10-11 17:55:29 +0000924 } else {
925 switch (n) {
926 case 80: env->pc = tmp; break;
927 case 81: env->npc = tmp; break;
928 case 82:
Blue Swirl5a834bb2010-05-09 20:19:04 +0000929 cpu_put_ccr(env, tmp >> 32);
pbrook56aebc82008-10-11 17:55:29 +0000930 env->asi = (tmp >> 24) & 0xff;
931 env->pstate = (tmp >> 8) & 0xfff;
Blue Swirl5a834bb2010-05-09 20:19:04 +0000932 cpu_put_cwp64(env, tmp & 0xff);
pbrook56aebc82008-10-11 17:55:29 +0000933 break;
934 case 83: env->fsr = tmp; break;
935 case 84: env->fprs = tmp; break;
936 case 85: env->y = tmp; break;
937 default: return 0;
938 }
bellard34751872005-07-02 14:31:34 +0000939 }
pbrook56aebc82008-10-11 17:55:29 +0000940 return 8;
bellard34751872005-07-02 14:31:34 +0000941#endif
bellard9e62fd72004-01-05 22:49:06 +0000942}
bellard1fddef42005-04-17 19:16:13 +0000943#elif defined (TARGET_ARM)
pbrook56aebc82008-10-11 17:55:29 +0000944
945/* Old gdb always expect FPA registers. Newer (xml-aware) gdb only expect
946 whatever the target description contains. Due to a historical mishap
947 the FPA registers appear in between core integer regs and the CPSR.
948 We hack round this by giving the FPA regs zero size when talking to a
949 newer gdb. */
950#define NUM_CORE_REGS 26
951#define GDB_CORE_XML "arm-core.xml"
952
Andreas Färberf3840912012-02-20 06:44:56 +0100953static int cpu_gdb_read_register(CPUARMState *env, uint8_t *mem_buf, int n)
bellard1fddef42005-04-17 19:16:13 +0000954{
pbrook56aebc82008-10-11 17:55:29 +0000955 if (n < 16) {
956 /* Core integer register. */
957 GET_REG32(env->regs[n]);
958 }
959 if (n < 24) {
960 /* FPA registers. */
961 if (gdb_has_xml)
962 return 0;
963 memset(mem_buf, 0, 12);
964 return 12;
965 }
966 switch (n) {
967 case 24:
968 /* FPA status register. */
969 if (gdb_has_xml)
970 return 0;
971 GET_REG32(0);
972 case 25:
973 /* CPSR */
974 GET_REG32(cpsr_read(env));
975 }
976 /* Unknown register. */
977 return 0;
bellard1fddef42005-04-17 19:16:13 +0000978}
979
Andreas Färberf3840912012-02-20 06:44:56 +0100980static int cpu_gdb_write_register(CPUARMState *env, uint8_t *mem_buf, int n)
bellard1fddef42005-04-17 19:16:13 +0000981{
pbrook56aebc82008-10-11 17:55:29 +0000982 uint32_t tmp;
bellard1fddef42005-04-17 19:16:13 +0000983
pbrook56aebc82008-10-11 17:55:29 +0000984 tmp = ldl_p(mem_buf);
985
986 /* Mask out low bit of PC to workaround gdb bugs. This will probably
987 cause problems if we ever implement the Jazelle DBX extensions. */
988 if (n == 15)
989 tmp &= ~1;
990
991 if (n < 16) {
992 /* Core integer register. */
993 env->regs[n] = tmp;
994 return 4;
995 }
996 if (n < 24) { /* 16-23 */
997 /* FPA registers (ignored). */
998 if (gdb_has_xml)
999 return 0;
1000 return 12;
1001 }
1002 switch (n) {
1003 case 24:
1004 /* FPA status register (ignored). */
1005 if (gdb_has_xml)
1006 return 0;
1007 return 4;
1008 case 25:
1009 /* CPSR */
1010 cpsr_write (env, tmp, 0xffffffff);
1011 return 4;
1012 }
1013 /* Unknown register. */
1014 return 0;
bellard1fddef42005-04-17 19:16:13 +00001015}
pbrook56aebc82008-10-11 17:55:29 +00001016
pbrooke6e59062006-10-22 00:18:54 +00001017#elif defined (TARGET_M68K)
pbrook56aebc82008-10-11 17:55:29 +00001018
1019#define NUM_CORE_REGS 18
1020
1021#define GDB_CORE_XML "cf-core.xml"
1022
Andreas Färberf3840912012-02-20 06:44:56 +01001023static int cpu_gdb_read_register(CPUM68KState *env, uint8_t *mem_buf, int n)
pbrooke6e59062006-10-22 00:18:54 +00001024{
pbrook56aebc82008-10-11 17:55:29 +00001025 if (n < 8) {
1026 /* D0-D7 */
1027 GET_REG32(env->dregs[n]);
1028 } else if (n < 16) {
1029 /* A0-A7 */
1030 GET_REG32(env->aregs[n - 8]);
1031 } else {
1032 switch (n) {
1033 case 16: GET_REG32(env->sr);
1034 case 17: GET_REG32(env->pc);
1035 }
pbrooke6e59062006-10-22 00:18:54 +00001036 }
pbrook56aebc82008-10-11 17:55:29 +00001037 /* FP registers not included here because they vary between
1038 ColdFire and m68k. Use XML bits for these. */
1039 return 0;
pbrooke6e59062006-10-22 00:18:54 +00001040}
1041
Andreas Färberf3840912012-02-20 06:44:56 +01001042static int cpu_gdb_write_register(CPUM68KState *env, uint8_t *mem_buf, int n)
pbrooke6e59062006-10-22 00:18:54 +00001043{
pbrook56aebc82008-10-11 17:55:29 +00001044 uint32_t tmp;
pbrooke6e59062006-10-22 00:18:54 +00001045
pbrook56aebc82008-10-11 17:55:29 +00001046 tmp = ldl_p(mem_buf);
1047
1048 if (n < 8) {
1049 /* D0-D7 */
1050 env->dregs[n] = tmp;
Kazu Hiratab3d6b952010-01-14 09:08:00 -08001051 } else if (n < 16) {
pbrook56aebc82008-10-11 17:55:29 +00001052 /* A0-A7 */
1053 env->aregs[n - 8] = tmp;
1054 } else {
1055 switch (n) {
1056 case 16: env->sr = tmp; break;
1057 case 17: env->pc = tmp; break;
1058 default: return 0;
1059 }
pbrooke6e59062006-10-22 00:18:54 +00001060 }
pbrook56aebc82008-10-11 17:55:29 +00001061 return 4;
pbrooke6e59062006-10-22 00:18:54 +00001062}
bellard6f970bd2005-12-05 19:55:19 +00001063#elif defined (TARGET_MIPS)
pbrook56aebc82008-10-11 17:55:29 +00001064
1065#define NUM_CORE_REGS 73
1066
Andreas Färberf3840912012-02-20 06:44:56 +01001067static int cpu_gdb_read_register(CPUMIPSState *env, uint8_t *mem_buf, int n)
bellard6f970bd2005-12-05 19:55:19 +00001068{
pbrook56aebc82008-10-11 17:55:29 +00001069 if (n < 32) {
1070 GET_REGL(env->active_tc.gpr[n]);
1071 }
1072 if (env->CP0_Config1 & (1 << CP0C1_FP)) {
1073 if (n >= 38 && n < 70) {
ths7ac256b2007-10-25 21:30:37 +00001074 if (env->CP0_Status & (1 << CP0St_FR))
pbrook56aebc82008-10-11 17:55:29 +00001075 GET_REGL(env->active_fpu.fpr[n - 38].d);
ths7ac256b2007-10-25 21:30:37 +00001076 else
pbrook56aebc82008-10-11 17:55:29 +00001077 GET_REGL(env->active_fpu.fpr[n - 38].w[FP_ENDIAN_IDX]);
1078 }
1079 switch (n) {
1080 case 70: GET_REGL((int32_t)env->active_fpu.fcr31);
1081 case 71: GET_REGL((int32_t)env->active_fpu.fcr0);
1082 }
1083 }
1084 switch (n) {
1085 case 32: GET_REGL((int32_t)env->CP0_Status);
1086 case 33: GET_REGL(env->active_tc.LO[0]);
1087 case 34: GET_REGL(env->active_tc.HI[0]);
1088 case 35: GET_REGL(env->CP0_BadVAddr);
1089 case 36: GET_REGL((int32_t)env->CP0_Cause);
Nathan Froydff1d1972009-12-08 08:06:30 -08001090 case 37: GET_REGL(env->active_tc.PC | !!(env->hflags & MIPS_HFLAG_M16));
pbrook56aebc82008-10-11 17:55:29 +00001091 case 72: GET_REGL(0); /* fp */
1092 case 89: GET_REGL((int32_t)env->CP0_PRid);
1093 }
1094 if (n >= 73 && n <= 88) {
1095 /* 16 embedded regs. */
1096 GET_REGL(0);
1097 }
ths36d23952007-02-28 22:37:42 +00001098
pbrook56aebc82008-10-11 17:55:29 +00001099 return 0;
bellard6f970bd2005-12-05 19:55:19 +00001100}
1101
ths8e33c082006-12-11 19:22:27 +00001102/* convert MIPS rounding mode in FCR31 to IEEE library */
1103static unsigned int ieee_rm[] =
1104 {
1105 float_round_nearest_even,
1106 float_round_to_zero,
1107 float_round_up,
1108 float_round_down
1109 };
1110#define RESTORE_ROUNDING_MODE \
thsf01be152008-09-18 11:57:27 +00001111 set_float_rounding_mode(ieee_rm[env->active_fpu.fcr31 & 3], &env->active_fpu.fp_status)
ths8e33c082006-12-11 19:22:27 +00001112
Andreas Färberf3840912012-02-20 06:44:56 +01001113static int cpu_gdb_write_register(CPUMIPSState *env, uint8_t *mem_buf, int n)
bellard6f970bd2005-12-05 19:55:19 +00001114{
pbrook56aebc82008-10-11 17:55:29 +00001115 target_ulong tmp;
bellard6f970bd2005-12-05 19:55:19 +00001116
pbrook56aebc82008-10-11 17:55:29 +00001117 tmp = ldtul_p(mem_buf);
bellard6f970bd2005-12-05 19:55:19 +00001118
pbrook56aebc82008-10-11 17:55:29 +00001119 if (n < 32) {
1120 env->active_tc.gpr[n] = tmp;
1121 return sizeof(target_ulong);
1122 }
1123 if (env->CP0_Config1 & (1 << CP0C1_FP)
1124 && n >= 38 && n < 73) {
1125 if (n < 70) {
ths7ac256b2007-10-25 21:30:37 +00001126 if (env->CP0_Status & (1 << CP0St_FR))
pbrook56aebc82008-10-11 17:55:29 +00001127 env->active_fpu.fpr[n - 38].d = tmp;
ths7ac256b2007-10-25 21:30:37 +00001128 else
pbrook56aebc82008-10-11 17:55:29 +00001129 env->active_fpu.fpr[n - 38].w[FP_ENDIAN_IDX] = tmp;
1130 }
1131 switch (n) {
1132 case 70:
1133 env->active_fpu.fcr31 = tmp & 0xFF83FFFF;
1134 /* set rounding mode */
1135 RESTORE_ROUNDING_MODE;
pbrook56aebc82008-10-11 17:55:29 +00001136 break;
1137 case 71: env->active_fpu.fcr0 = tmp; break;
1138 }
1139 return sizeof(target_ulong);
1140 }
1141 switch (n) {
1142 case 32: env->CP0_Status = tmp; break;
1143 case 33: env->active_tc.LO[0] = tmp; break;
1144 case 34: env->active_tc.HI[0] = tmp; break;
1145 case 35: env->CP0_BadVAddr = tmp; break;
1146 case 36: env->CP0_Cause = tmp; break;
Nathan Froydff1d1972009-12-08 08:06:30 -08001147 case 37:
1148 env->active_tc.PC = tmp & ~(target_ulong)1;
1149 if (tmp & 1) {
1150 env->hflags |= MIPS_HFLAG_M16;
1151 } else {
1152 env->hflags &= ~(MIPS_HFLAG_M16);
1153 }
1154 break;
pbrook56aebc82008-10-11 17:55:29 +00001155 case 72: /* fp, ignored */ break;
1156 default:
1157 if (n > 89)
1158 return 0;
1159 /* Other registers are readonly. Ignore writes. */
1160 break;
1161 }
1162
1163 return sizeof(target_ulong);
bellard6f970bd2005-12-05 19:55:19 +00001164}
Jia Liufc043552012-07-20 15:50:50 +08001165#elif defined(TARGET_OPENRISC)
1166
1167#define NUM_CORE_REGS (32 + 3)
1168
1169static int cpu_gdb_read_register(CPUOpenRISCState *env, uint8_t *mem_buf, int n)
1170{
1171 if (n < 32) {
1172 GET_REG32(env->gpr[n]);
1173 } else {
1174 switch (n) {
1175 case 32: /* PPC */
1176 GET_REG32(env->ppc);
1177 break;
1178
1179 case 33: /* NPC */
1180 GET_REG32(env->npc);
1181 break;
1182
1183 case 34: /* SR */
1184 GET_REG32(env->sr);
1185 break;
1186
1187 default:
1188 break;
1189 }
1190 }
1191 return 0;
1192}
1193
1194static int cpu_gdb_write_register(CPUOpenRISCState *env,
1195 uint8_t *mem_buf, int n)
1196{
1197 uint32_t tmp;
1198
1199 if (n > NUM_CORE_REGS) {
1200 return 0;
1201 }
1202
1203 tmp = ldl_p(mem_buf);
1204
1205 if (n < 32) {
1206 env->gpr[n] = tmp;
1207 } else {
1208 switch (n) {
1209 case 32: /* PPC */
1210 env->ppc = tmp;
1211 break;
1212
1213 case 33: /* NPC */
1214 env->npc = tmp;
1215 break;
1216
1217 case 34: /* SR */
1218 env->sr = tmp;
1219 break;
1220
1221 default:
1222 break;
1223 }
1224 }
1225 return 4;
1226}
bellardfdf9b3e2006-04-27 21:07:38 +00001227#elif defined (TARGET_SH4)
ths6ef99fc2007-05-13 16:36:24 +00001228
1229/* Hint: Use "set architecture sh4" in GDB to see fpu registers */
pbrook56aebc82008-10-11 17:55:29 +00001230/* FIXME: We should use XML for this. */
ths6ef99fc2007-05-13 16:36:24 +00001231
pbrook56aebc82008-10-11 17:55:29 +00001232#define NUM_CORE_REGS 59
1233
Andreas Färberf3840912012-02-20 06:44:56 +01001234static int cpu_gdb_read_register(CPUSH4State *env, uint8_t *mem_buf, int n)
bellardfdf9b3e2006-04-27 21:07:38 +00001235{
Aurelien Jarnoeca5c302012-09-16 13:12:21 +02001236 switch (n) {
1237 case 0 ... 7:
pbrook56aebc82008-10-11 17:55:29 +00001238 if ((env->sr & (SR_MD | SR_RB)) == (SR_MD | SR_RB)) {
1239 GET_REGL(env->gregs[n + 16]);
1240 } else {
1241 GET_REGL(env->gregs[n]);
1242 }
Aurelien Jarnoeca5c302012-09-16 13:12:21 +02001243 case 8 ... 15:
takasi-y@ops.dti.ne.jpe192a452010-02-18 00:53:29 +09001244 GET_REGL(env->gregs[n]);
Aurelien Jarnoeca5c302012-09-16 13:12:21 +02001245 case 16:
1246 GET_REGL(env->pc);
1247 case 17:
1248 GET_REGL(env->pr);
1249 case 18:
1250 GET_REGL(env->gbr);
1251 case 19:
1252 GET_REGL(env->vbr);
1253 case 20:
1254 GET_REGL(env->mach);
1255 case 21:
1256 GET_REGL(env->macl);
1257 case 22:
1258 GET_REGL(env->sr);
1259 case 23:
1260 GET_REGL(env->fpul);
1261 case 24:
1262 GET_REGL(env->fpscr);
1263 case 25 ... 40:
1264 if (env->fpscr & FPSCR_FR) {
1265 stfl_p(mem_buf, env->fregs[n - 9]);
1266 } else {
1267 stfl_p(mem_buf, env->fregs[n - 25]);
1268 }
1269 return 4;
1270 case 41:
1271 GET_REGL(env->ssr);
1272 case 42:
1273 GET_REGL(env->spc);
1274 case 43 ... 50:
1275 GET_REGL(env->gregs[n - 43]);
1276 case 51 ... 58:
1277 GET_REGL(env->gregs[n - (51 - 16)]);
pbrook56aebc82008-10-11 17:55:29 +00001278 }
bellardfdf9b3e2006-04-27 21:07:38 +00001279
pbrook56aebc82008-10-11 17:55:29 +00001280 return 0;
bellardfdf9b3e2006-04-27 21:07:38 +00001281}
1282
Andreas Färberf3840912012-02-20 06:44:56 +01001283static int cpu_gdb_write_register(CPUSH4State *env, uint8_t *mem_buf, int n)
bellardfdf9b3e2006-04-27 21:07:38 +00001284{
pbrook56aebc82008-10-11 17:55:29 +00001285 switch (n) {
Aurelien Jarnoeca5c302012-09-16 13:12:21 +02001286 case 0 ... 7:
1287 if ((env->sr & (SR_MD | SR_RB)) == (SR_MD | SR_RB)) {
1288 env->gregs[n + 16] = ldl_p(mem_buf);
1289 } else {
1290 env->gregs[n] = ldl_p(mem_buf);
1291 }
1292 break;
1293 case 8 ... 15:
1294 env->gregs[n] = ldl_p(mem_buf);
1295 break;
1296 case 16:
1297 env->pc = ldl_p(mem_buf);
1298 break;
1299 case 17:
1300 env->pr = ldl_p(mem_buf);
1301 break;
1302 case 18:
1303 env->gbr = ldl_p(mem_buf);
1304 break;
1305 case 19:
1306 env->vbr = ldl_p(mem_buf);
1307 break;
1308 case 20:
1309 env->mach = ldl_p(mem_buf);
1310 break;
1311 case 21:
1312 env->macl = ldl_p(mem_buf);
1313 break;
1314 case 22:
1315 env->sr = ldl_p(mem_buf);
1316 break;
1317 case 23:
1318 env->fpul = ldl_p(mem_buf);
1319 break;
1320 case 24:
1321 env->fpscr = ldl_p(mem_buf);
1322 break;
1323 case 25 ... 40:
1324 if (env->fpscr & FPSCR_FR) {
1325 env->fregs[n - 9] = ldfl_p(mem_buf);
1326 } else {
1327 env->fregs[n - 25] = ldfl_p(mem_buf);
1328 }
1329 break;
1330 case 41:
1331 env->ssr = ldl_p(mem_buf);
1332 break;
1333 case 42:
1334 env->spc = ldl_p(mem_buf);
1335 break;
1336 case 43 ... 50:
1337 env->gregs[n - 43] = ldl_p(mem_buf);
1338 break;
1339 case 51 ... 58:
1340 env->gregs[n - (51 - 16)] = ldl_p(mem_buf);
1341 break;
pbrook56aebc82008-10-11 17:55:29 +00001342 default: return 0;
1343 }
1344
1345 return 4;
bellardfdf9b3e2006-04-27 21:07:38 +00001346}
Edgar E. Iglesiasd74d6a92009-05-20 20:16:31 +02001347#elif defined (TARGET_MICROBLAZE)
1348
1349#define NUM_CORE_REGS (32 + 5)
1350
Andreas Färberf3840912012-02-20 06:44:56 +01001351static int cpu_gdb_read_register(CPUMBState *env, uint8_t *mem_buf, int n)
Edgar E. Iglesiasd74d6a92009-05-20 20:16:31 +02001352{
1353 if (n < 32) {
1354 GET_REG32(env->regs[n]);
1355 } else {
1356 GET_REG32(env->sregs[n - 32]);
1357 }
1358 return 0;
1359}
1360
Andreas Färberf3840912012-02-20 06:44:56 +01001361static int cpu_gdb_write_register(CPUMBState *env, uint8_t *mem_buf, int n)
Edgar E. Iglesiasd74d6a92009-05-20 20:16:31 +02001362{
1363 uint32_t tmp;
1364
1365 if (n > NUM_CORE_REGS)
1366 return 0;
1367
1368 tmp = ldl_p(mem_buf);
1369
1370 if (n < 32) {
1371 env->regs[n] = tmp;
1372 } else {
1373 env->sregs[n - 32] = tmp;
1374 }
1375 return 4;
1376}
thsf1ccf902007-10-08 13:16:14 +00001377#elif defined (TARGET_CRIS)
1378
pbrook56aebc82008-10-11 17:55:29 +00001379#define NUM_CORE_REGS 49
1380
Edgar E. Iglesias4a0b59f2010-02-20 19:51:56 +01001381static int
Andreas Färberf3840912012-02-20 06:44:56 +01001382read_register_crisv10(CPUCRISState *env, uint8_t *mem_buf, int n)
Edgar E. Iglesias4a0b59f2010-02-20 19:51:56 +01001383{
1384 if (n < 15) {
1385 GET_REG32(env->regs[n]);
1386 }
1387
1388 if (n == 15) {
1389 GET_REG32(env->pc);
1390 }
1391
1392 if (n < 32) {
1393 switch (n) {
1394 case 16:
1395 GET_REG8(env->pregs[n - 16]);
1396 break;
1397 case 17:
1398 GET_REG8(env->pregs[n - 16]);
1399 break;
1400 case 20:
1401 case 21:
1402 GET_REG16(env->pregs[n - 16]);
1403 break;
1404 default:
1405 if (n >= 23) {
1406 GET_REG32(env->pregs[n - 16]);
1407 }
1408 break;
1409 }
1410 }
1411 return 0;
1412}
1413
Andreas Färberf3840912012-02-20 06:44:56 +01001414static int cpu_gdb_read_register(CPUCRISState *env, uint8_t *mem_buf, int n)
thsf1ccf902007-10-08 13:16:14 +00001415{
pbrook56aebc82008-10-11 17:55:29 +00001416 uint8_t srs;
1417
Edgar E. Iglesias4a0b59f2010-02-20 19:51:56 +01001418 if (env->pregs[PR_VR] < 32)
1419 return read_register_crisv10(env, mem_buf, n);
1420
pbrook56aebc82008-10-11 17:55:29 +00001421 srs = env->pregs[PR_SRS];
1422 if (n < 16) {
1423 GET_REG32(env->regs[n]);
1424 }
1425
1426 if (n >= 21 && n < 32) {
1427 GET_REG32(env->pregs[n - 16]);
1428 }
1429 if (n >= 33 && n < 49) {
1430 GET_REG32(env->sregs[srs][n - 33]);
1431 }
1432 switch (n) {
1433 case 16: GET_REG8(env->pregs[0]);
1434 case 17: GET_REG8(env->pregs[1]);
1435 case 18: GET_REG32(env->pregs[2]);
1436 case 19: GET_REG8(srs);
1437 case 20: GET_REG16(env->pregs[4]);
1438 case 32: GET_REG32(env->pc);
1439 }
1440
1441 return 0;
thsf1ccf902007-10-08 13:16:14 +00001442}
1443
Andreas Färberf3840912012-02-20 06:44:56 +01001444static int cpu_gdb_write_register(CPUCRISState *env, uint8_t *mem_buf, int n)
thsf1ccf902007-10-08 13:16:14 +00001445{
pbrook56aebc82008-10-11 17:55:29 +00001446 uint32_t tmp;
thsf1ccf902007-10-08 13:16:14 +00001447
pbrook56aebc82008-10-11 17:55:29 +00001448 if (n > 49)
1449 return 0;
thsf1ccf902007-10-08 13:16:14 +00001450
pbrook56aebc82008-10-11 17:55:29 +00001451 tmp = ldl_p(mem_buf);
thsf1ccf902007-10-08 13:16:14 +00001452
pbrook56aebc82008-10-11 17:55:29 +00001453 if (n < 16) {
1454 env->regs[n] = tmp;
1455 }
thsf1ccf902007-10-08 13:16:14 +00001456
edgar_igld7b69672008-10-11 19:32:21 +00001457 if (n >= 21 && n < 32) {
1458 env->pregs[n - 16] = tmp;
1459 }
1460
1461 /* FIXME: Should support function regs be writable? */
pbrook56aebc82008-10-11 17:55:29 +00001462 switch (n) {
1463 case 16: return 1;
1464 case 17: return 1;
edgar_igld7b69672008-10-11 19:32:21 +00001465 case 18: env->pregs[PR_PID] = tmp; break;
pbrook56aebc82008-10-11 17:55:29 +00001466 case 19: return 1;
1467 case 20: return 2;
1468 case 32: env->pc = tmp; break;
1469 }
thsf1ccf902007-10-08 13:16:14 +00001470
pbrook56aebc82008-10-11 17:55:29 +00001471 return 4;
thsf1ccf902007-10-08 13:16:14 +00001472}
aurel3219bf5172008-12-07 23:26:32 +00001473#elif defined (TARGET_ALPHA)
1474
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001475#define NUM_CORE_REGS 67
aurel3219bf5172008-12-07 23:26:32 +00001476
Andreas Färberf3840912012-02-20 06:44:56 +01001477static int cpu_gdb_read_register(CPUAlphaState *env, uint8_t *mem_buf, int n)
aurel3219bf5172008-12-07 23:26:32 +00001478{
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001479 uint64_t val;
1480 CPU_DoubleU d;
aurel3219bf5172008-12-07 23:26:32 +00001481
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001482 switch (n) {
1483 case 0 ... 30:
1484 val = env->ir[n];
1485 break;
1486 case 32 ... 62:
1487 d.d = env->fir[n - 32];
1488 val = d.ll;
1489 break;
1490 case 63:
1491 val = cpu_alpha_load_fpcr(env);
1492 break;
1493 case 64:
1494 val = env->pc;
1495 break;
1496 case 66:
1497 val = env->unique;
1498 break;
1499 case 31:
1500 case 65:
1501 /* 31 really is the zero register; 65 is unassigned in the
1502 gdb protocol, but is still required to occupy 8 bytes. */
1503 val = 0;
1504 break;
1505 default:
1506 return 0;
aurel3219bf5172008-12-07 23:26:32 +00001507 }
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001508 GET_REGL(val);
aurel3219bf5172008-12-07 23:26:32 +00001509}
1510
Andreas Färberf3840912012-02-20 06:44:56 +01001511static int cpu_gdb_write_register(CPUAlphaState *env, uint8_t *mem_buf, int n)
aurel3219bf5172008-12-07 23:26:32 +00001512{
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001513 target_ulong tmp = ldtul_p(mem_buf);
1514 CPU_DoubleU d;
aurel3219bf5172008-12-07 23:26:32 +00001515
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001516 switch (n) {
1517 case 0 ... 30:
aurel3219bf5172008-12-07 23:26:32 +00001518 env->ir[n] = tmp;
Richard Henderson7c5a90d2009-12-31 11:54:01 -08001519 break;
1520 case 32 ... 62:
1521 d.ll = tmp;
1522 env->fir[n - 32] = d.d;
1523 break;
1524 case 63:
1525 cpu_alpha_store_fpcr(env, tmp);
1526 break;
1527 case 64:
1528 env->pc = tmp;
1529 break;
1530 case 66:
1531 env->unique = tmp;
1532 break;
1533 case 31:
1534 case 65:
1535 /* 31 really is the zero register; 65 is unassigned in the
1536 gdb protocol, but is still required to occupy 8 bytes. */
1537 break;
1538 default:
1539 return 0;
aurel3219bf5172008-12-07 23:26:32 +00001540 }
aurel3219bf5172008-12-07 23:26:32 +00001541 return 8;
1542}
Alexander Grafafcb0e42009-12-05 12:44:29 +01001543#elif defined (TARGET_S390X)
1544
Richard Henderson6ee77b12012-08-23 10:44:45 -07001545#define NUM_CORE_REGS S390_NUM_REGS
Alexander Grafafcb0e42009-12-05 12:44:29 +01001546
Andreas Färberf3840912012-02-20 06:44:56 +01001547static int cpu_gdb_read_register(CPUS390XState *env, uint8_t *mem_buf, int n)
Alexander Grafafcb0e42009-12-05 12:44:29 +01001548{
Richard Henderson6ee77b12012-08-23 10:44:45 -07001549 uint64_t val;
1550 int cc_op;
1551
Alexander Grafafcb0e42009-12-05 12:44:29 +01001552 switch (n) {
Richard Henderson6ee77b12012-08-23 10:44:45 -07001553 case S390_PSWM_REGNUM:
1554 cc_op = calc_cc(env, env->cc_op, env->cc_src, env->cc_dst, env->cc_vr);
1555 val = deposit64(env->psw.mask, 44, 2, cc_op);
1556 GET_REGL(val);
1557 break;
1558 case S390_PSWA_REGNUM:
1559 GET_REGL(env->psw.addr);
1560 break;
1561 case S390_R0_REGNUM ... S390_R15_REGNUM:
1562 GET_REGL(env->regs[n-S390_R0_REGNUM]);
1563 break;
1564 case S390_A0_REGNUM ... S390_A15_REGNUM:
1565 GET_REG32(env->aregs[n-S390_A0_REGNUM]);
1566 break;
1567 case S390_FPC_REGNUM:
1568 GET_REG32(env->fpc);
1569 break;
1570 case S390_F0_REGNUM ... S390_F15_REGNUM:
1571 GET_REG64(env->fregs[n-S390_F0_REGNUM].ll);
1572 break;
Alexander Grafafcb0e42009-12-05 12:44:29 +01001573 }
1574
1575 return 0;
1576}
1577
Andreas Färberf3840912012-02-20 06:44:56 +01001578static int cpu_gdb_write_register(CPUS390XState *env, uint8_t *mem_buf, int n)
Alexander Grafafcb0e42009-12-05 12:44:29 +01001579{
1580 target_ulong tmpl;
1581 uint32_t tmp32;
1582 int r = 8;
1583 tmpl = ldtul_p(mem_buf);
1584 tmp32 = ldl_p(mem_buf);
1585
1586 switch (n) {
Richard Henderson6ee77b12012-08-23 10:44:45 -07001587 case S390_PSWM_REGNUM:
1588 env->psw.mask = tmpl;
1589 env->cc_op = extract64(tmpl, 44, 2);
1590 break;
1591 case S390_PSWA_REGNUM:
1592 env->psw.addr = tmpl;
1593 break;
1594 case S390_R0_REGNUM ... S390_R15_REGNUM:
1595 env->regs[n-S390_R0_REGNUM] = tmpl;
1596 break;
1597 case S390_A0_REGNUM ... S390_A15_REGNUM:
1598 env->aregs[n-S390_A0_REGNUM] = tmp32;
1599 r = 4;
1600 break;
1601 case S390_FPC_REGNUM:
1602 env->fpc = tmp32;
1603 r = 4;
1604 break;
1605 case S390_F0_REGNUM ... S390_F15_REGNUM:
1606 env->fregs[n-S390_F0_REGNUM].ll = tmpl;
1607 break;
1608 default:
1609 return 0;
Alexander Grafafcb0e42009-12-05 12:44:29 +01001610 }
Alexander Grafafcb0e42009-12-05 12:44:29 +01001611 return r;
1612}
Michael Walle0c45d3d2011-02-17 23:45:06 +01001613#elif defined (TARGET_LM32)
1614
Paolo Bonzini0d09e412013-02-05 17:06:20 +01001615#include "hw/lm32/lm32_pic.h"
Michael Walle0c45d3d2011-02-17 23:45:06 +01001616#define NUM_CORE_REGS (32 + 7)
1617
Andreas Färberf3840912012-02-20 06:44:56 +01001618static int cpu_gdb_read_register(CPULM32State *env, uint8_t *mem_buf, int n)
Michael Walle0c45d3d2011-02-17 23:45:06 +01001619{
1620 if (n < 32) {
1621 GET_REG32(env->regs[n]);
1622 } else {
1623 switch (n) {
1624 case 32:
1625 GET_REG32(env->pc);
1626 break;
1627 /* FIXME: put in right exception ID */
1628 case 33:
1629 GET_REG32(0);
1630 break;
1631 case 34:
1632 GET_REG32(env->eba);
1633 break;
1634 case 35:
1635 GET_REG32(env->deba);
1636 break;
1637 case 36:
1638 GET_REG32(env->ie);
1639 break;
1640 case 37:
1641 GET_REG32(lm32_pic_get_im(env->pic_state));
1642 break;
1643 case 38:
1644 GET_REG32(lm32_pic_get_ip(env->pic_state));
1645 break;
1646 }
1647 }
1648 return 0;
1649}
1650
Andreas Färberf3840912012-02-20 06:44:56 +01001651static int cpu_gdb_write_register(CPULM32State *env, uint8_t *mem_buf, int n)
Michael Walle0c45d3d2011-02-17 23:45:06 +01001652{
1653 uint32_t tmp;
1654
1655 if (n > NUM_CORE_REGS) {
1656 return 0;
1657 }
1658
1659 tmp = ldl_p(mem_buf);
1660
1661 if (n < 32) {
1662 env->regs[n] = tmp;
1663 } else {
1664 switch (n) {
1665 case 32:
1666 env->pc = tmp;
1667 break;
1668 case 34:
1669 env->eba = tmp;
1670 break;
1671 case 35:
1672 env->deba = tmp;
1673 break;
1674 case 36:
1675 env->ie = tmp;
1676 break;
1677 case 37:
1678 lm32_pic_set_im(env->pic_state, tmp);
1679 break;
1680 case 38:
1681 lm32_pic_set_ip(env->pic_state, tmp);
1682 break;
1683 }
1684 }
1685 return 4;
1686}
Max Filippovccfcaba2011-09-06 03:55:52 +04001687#elif defined(TARGET_XTENSA)
1688
1689/* Use num_core_regs to see only non-privileged registers in an unmodified gdb.
1690 * Use num_regs to see all registers. gdb modification is required for that:
1691 * reset bit 0 in the 'flags' field of the registers definitions in the
1692 * gdb/xtensa-config.c inside gdb source tree or inside gdb overlay.
1693 */
1694#define NUM_CORE_REGS (env->config->gdb_regmap.num_regs)
1695#define num_g_regs NUM_CORE_REGS
1696
Andreas Färberf3840912012-02-20 06:44:56 +01001697static int cpu_gdb_read_register(CPUXtensaState *env, uint8_t *mem_buf, int n)
Max Filippovccfcaba2011-09-06 03:55:52 +04001698{
1699 const XtensaGdbReg *reg = env->config->gdb_regmap.reg + n;
1700
1701 if (n < 0 || n >= env->config->gdb_regmap.num_regs) {
1702 return 0;
1703 }
1704
1705 switch (reg->type) {
1706 case 9: /*pc*/
1707 GET_REG32(env->pc);
1708 break;
1709
1710 case 1: /*ar*/
1711 xtensa_sync_phys_from_window(env);
1712 GET_REG32(env->phys_regs[(reg->targno & 0xff) % env->config->nareg]);
1713 break;
1714
1715 case 2: /*SR*/
1716 GET_REG32(env->sregs[reg->targno & 0xff]);
1717 break;
1718
1719 case 3: /*UR*/
1720 GET_REG32(env->uregs[reg->targno & 0xff]);
1721 break;
1722
Max Filippovdd519cb2012-09-19 04:23:54 +04001723 case 4: /*f*/
1724 GET_REG32(float32_val(env->fregs[reg->targno & 0x0f]));
1725 break;
1726
Max Filippovccfcaba2011-09-06 03:55:52 +04001727 case 8: /*a*/
1728 GET_REG32(env->regs[reg->targno & 0x0f]);
1729 break;
1730
1731 default:
1732 qemu_log("%s from reg %d of unsupported type %d\n",
1733 __func__, n, reg->type);
1734 return 0;
1735 }
1736}
1737
Andreas Färberf3840912012-02-20 06:44:56 +01001738static int cpu_gdb_write_register(CPUXtensaState *env, uint8_t *mem_buf, int n)
Max Filippovccfcaba2011-09-06 03:55:52 +04001739{
1740 uint32_t tmp;
1741 const XtensaGdbReg *reg = env->config->gdb_regmap.reg + n;
1742
1743 if (n < 0 || n >= env->config->gdb_regmap.num_regs) {
1744 return 0;
1745 }
1746
1747 tmp = ldl_p(mem_buf);
1748
1749 switch (reg->type) {
1750 case 9: /*pc*/
1751 env->pc = tmp;
1752 break;
1753
1754 case 1: /*ar*/
1755 env->phys_regs[(reg->targno & 0xff) % env->config->nareg] = tmp;
1756 xtensa_sync_window_from_phys(env);
1757 break;
1758
1759 case 2: /*SR*/
1760 env->sregs[reg->targno & 0xff] = tmp;
1761 break;
1762
1763 case 3: /*UR*/
1764 env->uregs[reg->targno & 0xff] = tmp;
1765 break;
1766
Max Filippovdd519cb2012-09-19 04:23:54 +04001767 case 4: /*f*/
1768 env->fregs[reg->targno & 0x0f] = make_float32(tmp);
1769 break;
1770
Max Filippovccfcaba2011-09-06 03:55:52 +04001771 case 8: /*a*/
1772 env->regs[reg->targno & 0x0f] = tmp;
1773 break;
1774
1775 default:
1776 qemu_log("%s to reg %d of unsupported type %d\n",
1777 __func__, n, reg->type);
1778 return 0;
1779 }
1780
1781 return 4;
1782}
bellard1fddef42005-04-17 19:16:13 +00001783#else
pbrook56aebc82008-10-11 17:55:29 +00001784
1785#define NUM_CORE_REGS 0
1786
Andreas Färber9349b4f2012-03-14 01:38:32 +01001787static int cpu_gdb_read_register(CPUArchState *env, uint8_t *mem_buf, int n)
bellard6da41ea2004-01-04 15:48:38 +00001788{
1789 return 0;
1790}
1791
Andreas Färber9349b4f2012-03-14 01:38:32 +01001792static int cpu_gdb_write_register(CPUArchState *env, uint8_t *mem_buf, int n)
bellard6da41ea2004-01-04 15:48:38 +00001793{
pbrook56aebc82008-10-11 17:55:29 +00001794 return 0;
bellard6da41ea2004-01-04 15:48:38 +00001795}
1796
1797#endif
bellardb4608c02003-06-27 17:34:32 +00001798
Max Filippovccfcaba2011-09-06 03:55:52 +04001799#if !defined(TARGET_XTENSA)
pbrook56aebc82008-10-11 17:55:29 +00001800static int num_g_regs = NUM_CORE_REGS;
Max Filippovccfcaba2011-09-06 03:55:52 +04001801#endif
pbrook56aebc82008-10-11 17:55:29 +00001802
1803#ifdef GDB_CORE_XML
1804/* Encode data using the encoding for 'x' packets. */
1805static int memtox(char *buf, const char *mem, int len)
1806{
1807 char *p = buf;
1808 char c;
1809
1810 while (len--) {
1811 c = *(mem++);
1812 switch (c) {
1813 case '#': case '$': case '*': case '}':
1814 *(p++) = '}';
1815 *(p++) = c ^ 0x20;
1816 break;
1817 default:
1818 *(p++) = c;
1819 break;
1820 }
1821 }
1822 return p - buf;
1823}
1824
aurel323faf7782008-12-07 23:26:17 +00001825static const char *get_feature_xml(const char *p, const char **newp)
pbrook56aebc82008-10-11 17:55:29 +00001826{
pbrook56aebc82008-10-11 17:55:29 +00001827 size_t len;
1828 int i;
1829 const char *name;
1830 static char target_xml[1024];
1831
1832 len = 0;
1833 while (p[len] && p[len] != ':')
1834 len++;
1835 *newp = p + len;
1836
1837 name = NULL;
1838 if (strncmp(p, "target.xml", len) == 0) {
1839 /* Generate the XML description for this CPU. */
1840 if (!target_xml[0]) {
1841 GDBRegisterState *r;
1842
blueswir15b3715b2008-10-25 11:18:12 +00001843 snprintf(target_xml, sizeof(target_xml),
1844 "<?xml version=\"1.0\"?>"
1845 "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">"
1846 "<target>"
1847 "<xi:include href=\"%s\"/>",
1848 GDB_CORE_XML);
pbrook56aebc82008-10-11 17:55:29 +00001849
aliguori880a7572008-11-18 20:30:24 +00001850 for (r = first_cpu->gdb_regs; r; r = r->next) {
blueswir12dc766d2009-04-13 16:06:19 +00001851 pstrcat(target_xml, sizeof(target_xml), "<xi:include href=\"");
1852 pstrcat(target_xml, sizeof(target_xml), r->xml);
1853 pstrcat(target_xml, sizeof(target_xml), "\"/>");
pbrook56aebc82008-10-11 17:55:29 +00001854 }
blueswir12dc766d2009-04-13 16:06:19 +00001855 pstrcat(target_xml, sizeof(target_xml), "</target>");
pbrook56aebc82008-10-11 17:55:29 +00001856 }
1857 return target_xml;
1858 }
1859 for (i = 0; ; i++) {
1860 name = xml_builtin[i][0];
1861 if (!name || (strncmp(name, p, len) == 0 && strlen(name) == len))
1862 break;
1863 }
1864 return name ? xml_builtin[i][1] : NULL;
1865}
1866#endif
1867
Andreas Färber9349b4f2012-03-14 01:38:32 +01001868static int gdb_read_register(CPUArchState *env, uint8_t *mem_buf, int reg)
pbrook56aebc82008-10-11 17:55:29 +00001869{
1870 GDBRegisterState *r;
1871
1872 if (reg < NUM_CORE_REGS)
1873 return cpu_gdb_read_register(env, mem_buf, reg);
1874
1875 for (r = env->gdb_regs; r; r = r->next) {
1876 if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
1877 return r->get_reg(env, mem_buf, reg - r->base_reg);
1878 }
1879 }
1880 return 0;
1881}
1882
Andreas Färber9349b4f2012-03-14 01:38:32 +01001883static int gdb_write_register(CPUArchState *env, uint8_t *mem_buf, int reg)
pbrook56aebc82008-10-11 17:55:29 +00001884{
1885 GDBRegisterState *r;
1886
1887 if (reg < NUM_CORE_REGS)
1888 return cpu_gdb_write_register(env, mem_buf, reg);
1889
1890 for (r = env->gdb_regs; r; r = r->next) {
1891 if (r->base_reg <= reg && reg < r->base_reg + r->num_regs) {
1892 return r->set_reg(env, mem_buf, reg - r->base_reg);
1893 }
1894 }
1895 return 0;
1896}
1897
Max Filippovccfcaba2011-09-06 03:55:52 +04001898#if !defined(TARGET_XTENSA)
pbrook56aebc82008-10-11 17:55:29 +00001899/* Register a supplemental set of CPU registers. If g_pos is nonzero it
1900 specifies the first register number and these registers are included in
1901 a standard "g" packet. Direction is relative to gdb, i.e. get_reg is
1902 gdb reading a CPU register, and set_reg is gdb modifying a CPU register.
1903 */
1904
Andreas Färber9349b4f2012-03-14 01:38:32 +01001905void gdb_register_coprocessor(CPUArchState * env,
pbrook56aebc82008-10-11 17:55:29 +00001906 gdb_reg_cb get_reg, gdb_reg_cb set_reg,
1907 int num_regs, const char *xml, int g_pos)
1908{
1909 GDBRegisterState *s;
1910 GDBRegisterState **p;
1911 static int last_reg = NUM_CORE_REGS;
1912
pbrook56aebc82008-10-11 17:55:29 +00001913 p = &env->gdb_regs;
1914 while (*p) {
1915 /* Check for duplicates. */
1916 if (strcmp((*p)->xml, xml) == 0)
1917 return;
1918 p = &(*p)->next;
1919 }
Stefan Weil9643c252011-10-18 22:25:38 +02001920
1921 s = g_new0(GDBRegisterState, 1);
1922 s->base_reg = last_reg;
1923 s->num_regs = num_regs;
1924 s->get_reg = get_reg;
1925 s->set_reg = set_reg;
1926 s->xml = xml;
1927
pbrook56aebc82008-10-11 17:55:29 +00001928 /* Add to end of list. */
1929 last_reg += num_regs;
1930 *p = s;
1931 if (g_pos) {
1932 if (g_pos != s->base_reg) {
1933 fprintf(stderr, "Error: Bad gdb register numbering for '%s'\n"
1934 "Expected %d got %d\n", xml, g_pos, s->base_reg);
1935 } else {
1936 num_g_regs = last_reg;
1937 }
1938 }
1939}
Max Filippovccfcaba2011-09-06 03:55:52 +04001940#endif
pbrook56aebc82008-10-11 17:55:29 +00001941
aliguoria1d1bb32008-11-18 20:07:32 +00001942#ifndef CONFIG_USER_ONLY
1943static const int xlat_gdb_type[] = {
1944 [GDB_WATCHPOINT_WRITE] = BP_GDB | BP_MEM_WRITE,
1945 [GDB_WATCHPOINT_READ] = BP_GDB | BP_MEM_READ,
1946 [GDB_WATCHPOINT_ACCESS] = BP_GDB | BP_MEM_ACCESS,
1947};
1948#endif
1949
aliguori880a7572008-11-18 20:30:24 +00001950static int gdb_breakpoint_insert(target_ulong addr, target_ulong len, int type)
aliguoria1d1bb32008-11-18 20:07:32 +00001951{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001952 CPUArchState *env;
aliguori880a7572008-11-18 20:30:24 +00001953 int err = 0;
1954
aliguorie22a25c2009-03-12 20:12:48 +00001955 if (kvm_enabled())
1956 return kvm_insert_breakpoint(gdbserver_state->c_cpu, addr, len, type);
1957
aliguoria1d1bb32008-11-18 20:07:32 +00001958 switch (type) {
1959 case GDB_BREAKPOINT_SW:
1960 case GDB_BREAKPOINT_HW:
aliguori880a7572008-11-18 20:30:24 +00001961 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1962 err = cpu_breakpoint_insert(env, addr, BP_GDB, NULL);
1963 if (err)
1964 break;
1965 }
1966 return err;
aliguoria1d1bb32008-11-18 20:07:32 +00001967#ifndef CONFIG_USER_ONLY
1968 case GDB_WATCHPOINT_WRITE:
1969 case GDB_WATCHPOINT_READ:
1970 case GDB_WATCHPOINT_ACCESS:
aliguori880a7572008-11-18 20:30:24 +00001971 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1972 err = cpu_watchpoint_insert(env, addr, len, xlat_gdb_type[type],
1973 NULL);
1974 if (err)
1975 break;
1976 }
1977 return err;
aliguoria1d1bb32008-11-18 20:07:32 +00001978#endif
1979 default:
1980 return -ENOSYS;
1981 }
1982}
1983
aliguori880a7572008-11-18 20:30:24 +00001984static int gdb_breakpoint_remove(target_ulong addr, target_ulong len, int type)
aliguoria1d1bb32008-11-18 20:07:32 +00001985{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001986 CPUArchState *env;
aliguori880a7572008-11-18 20:30:24 +00001987 int err = 0;
1988
aliguorie22a25c2009-03-12 20:12:48 +00001989 if (kvm_enabled())
1990 return kvm_remove_breakpoint(gdbserver_state->c_cpu, addr, len, type);
1991
aliguoria1d1bb32008-11-18 20:07:32 +00001992 switch (type) {
1993 case GDB_BREAKPOINT_SW:
1994 case GDB_BREAKPOINT_HW:
aliguori880a7572008-11-18 20:30:24 +00001995 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1996 err = cpu_breakpoint_remove(env, addr, BP_GDB);
1997 if (err)
1998 break;
1999 }
2000 return err;
aliguoria1d1bb32008-11-18 20:07:32 +00002001#ifndef CONFIG_USER_ONLY
2002 case GDB_WATCHPOINT_WRITE:
2003 case GDB_WATCHPOINT_READ:
2004 case GDB_WATCHPOINT_ACCESS:
aliguori880a7572008-11-18 20:30:24 +00002005 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2006 err = cpu_watchpoint_remove(env, addr, len, xlat_gdb_type[type]);
2007 if (err)
2008 break;
2009 }
2010 return err;
aliguoria1d1bb32008-11-18 20:07:32 +00002011#endif
2012 default:
2013 return -ENOSYS;
2014 }
2015}
2016
aliguori880a7572008-11-18 20:30:24 +00002017static void gdb_breakpoint_remove_all(void)
aliguoria1d1bb32008-11-18 20:07:32 +00002018{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002019 CPUArchState *env;
aliguori880a7572008-11-18 20:30:24 +00002020
aliguorie22a25c2009-03-12 20:12:48 +00002021 if (kvm_enabled()) {
2022 kvm_remove_all_breakpoints(gdbserver_state->c_cpu);
2023 return;
2024 }
2025
aliguori880a7572008-11-18 20:30:24 +00002026 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2027 cpu_breakpoint_remove_all(env, BP_GDB);
aliguoria1d1bb32008-11-18 20:07:32 +00002028#ifndef CONFIG_USER_ONLY
aliguori880a7572008-11-18 20:30:24 +00002029 cpu_watchpoint_remove_all(env, BP_GDB);
aliguoria1d1bb32008-11-18 20:07:32 +00002030#endif
aliguori880a7572008-11-18 20:30:24 +00002031 }
aliguoria1d1bb32008-11-18 20:07:32 +00002032}
2033
aurel32fab9d282009-04-08 21:29:37 +00002034static void gdb_set_cpu_pc(GDBState *s, target_ulong pc)
2035{
Avi Kivity4c0960c2009-08-17 23:19:53 +03002036 cpu_synchronize_state(s->c_cpu);
Peter Maydella896d032012-03-12 06:24:45 +00002037#if defined(TARGET_I386)
aurel32fab9d282009-04-08 21:29:37 +00002038 s->c_cpu->eip = pc;
aurel32fab9d282009-04-08 21:29:37 +00002039#elif defined (TARGET_PPC)
2040 s->c_cpu->nip = pc;
2041#elif defined (TARGET_SPARC)
2042 s->c_cpu->pc = pc;
2043 s->c_cpu->npc = pc + 4;
2044#elif defined (TARGET_ARM)
2045 s->c_cpu->regs[15] = pc;
2046#elif defined (TARGET_SH4)
2047 s->c_cpu->pc = pc;
2048#elif defined (TARGET_MIPS)
Nathan Froydff1d1972009-12-08 08:06:30 -08002049 s->c_cpu->active_tc.PC = pc & ~(target_ulong)1;
2050 if (pc & 1) {
2051 s->c_cpu->hflags |= MIPS_HFLAG_M16;
2052 } else {
2053 s->c_cpu->hflags &= ~(MIPS_HFLAG_M16);
2054 }
Edgar E. Iglesiasd74d6a92009-05-20 20:16:31 +02002055#elif defined (TARGET_MICROBLAZE)
2056 s->c_cpu->sregs[SR_PC] = pc;
Jia Liufc043552012-07-20 15:50:50 +08002057#elif defined(TARGET_OPENRISC)
2058 s->c_cpu->pc = pc;
aurel32fab9d282009-04-08 21:29:37 +00002059#elif defined (TARGET_CRIS)
2060 s->c_cpu->pc = pc;
2061#elif defined (TARGET_ALPHA)
2062 s->c_cpu->pc = pc;
Alexander Grafafcb0e42009-12-05 12:44:29 +01002063#elif defined (TARGET_S390X)
Alexander Grafafcb0e42009-12-05 12:44:29 +01002064 s->c_cpu->psw.addr = pc;
Michael Walle0c45d3d2011-02-17 23:45:06 +01002065#elif defined (TARGET_LM32)
2066 s->c_cpu->pc = pc;
Max Filippovccfcaba2011-09-06 03:55:52 +04002067#elif defined(TARGET_XTENSA)
2068 s->c_cpu->pc = pc;
aurel32fab9d282009-04-08 21:29:37 +00002069#endif
2070}
2071
Andreas Färber9349b4f2012-03-14 01:38:32 +01002072static CPUArchState *find_cpu(uint32_t thread_id)
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002073{
Andreas Färber0d342822012-12-17 07:12:13 +01002074 CPUState *cpu;
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002075
Andreas Färberc52a6b62013-05-17 17:49:10 +02002076 cpu = qemu_get_cpu(thread_id);
2077 if (cpu == NULL) {
2078 return NULL;
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002079 }
Andreas Färberc52a6b62013-05-17 17:49:10 +02002080 return cpu->env_ptr;
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002081}
2082
aliguori880a7572008-11-18 20:30:24 +00002083static int gdb_handle_packet(GDBState *s, const char *line_buf)
bellardb4608c02003-06-27 17:34:32 +00002084{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002085 CPUArchState *env;
bellardb4608c02003-06-27 17:34:32 +00002086 const char *p;
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002087 uint32_t thread;
2088 int ch, reg_size, type, res;
pbrook56aebc82008-10-11 17:55:29 +00002089 char buf[MAX_PACKET_LENGTH];
2090 uint8_t mem_buf[MAX_PACKET_LENGTH];
2091 uint8_t *registers;
bellard9d9754a2006-06-25 15:32:37 +00002092 target_ulong addr, len;
ths3b46e622007-09-17 08:09:54 +00002093
bellard858693c2004-03-31 18:52:07 +00002094#ifdef DEBUG_GDB
2095 printf("command='%s'\n", line_buf);
bellard4c3a88a2003-07-26 12:06:08 +00002096#endif
bellard858693c2004-03-31 18:52:07 +00002097 p = line_buf;
2098 ch = *p++;
2099 switch(ch) {
2100 case '?':
bellard1fddef42005-04-17 19:16:13 +00002101 /* TODO: Make this return the correct value for user-mode. */
aurel32ca587a82008-12-18 22:44:13 +00002102 snprintf(buf, sizeof(buf), "T%02xthread:%02x;", GDB_SIGNAL_TRAP,
Andreas Färber0d342822012-12-17 07:12:13 +01002103 cpu_index(ENV_GET_CPU(s->c_cpu)));
bellard858693c2004-03-31 18:52:07 +00002104 put_packet(s, buf);
edgar_igl7d03f822008-05-17 18:58:29 +00002105 /* Remove all the breakpoints when this query is issued,
2106 * because gdb is doing and initial connect and the state
2107 * should be cleaned up.
2108 */
aliguori880a7572008-11-18 20:30:24 +00002109 gdb_breakpoint_remove_all();
bellard858693c2004-03-31 18:52:07 +00002110 break;
2111 case 'c':
2112 if (*p != '\0') {
bellard9d9754a2006-06-25 15:32:37 +00002113 addr = strtoull(p, (char **)&p, 16);
aurel32fab9d282009-04-08 21:29:37 +00002114 gdb_set_cpu_pc(s, addr);
bellard858693c2004-03-31 18:52:07 +00002115 }
aurel32ca587a82008-12-18 22:44:13 +00002116 s->signal = 0;
edgar_iglba70a622008-03-14 06:10:42 +00002117 gdb_continue(s);
bellard41625032005-04-24 10:07:11 +00002118 return RS_IDLE;
edgar_igl1f487ee2008-05-17 22:20:53 +00002119 case 'C':
aurel32ca587a82008-12-18 22:44:13 +00002120 s->signal = gdb_signal_to_target (strtoul(p, (char **)&p, 16));
2121 if (s->signal == -1)
2122 s->signal = 0;
edgar_igl1f487ee2008-05-17 22:20:53 +00002123 gdb_continue(s);
2124 return RS_IDLE;
Jan Kiszkadd32aa12009-06-27 09:53:51 +02002125 case 'v':
2126 if (strncmp(p, "Cont", 4) == 0) {
2127 int res_signal, res_thread;
2128
2129 p += 4;
2130 if (*p == '?') {
2131 put_packet(s, "vCont;c;C;s;S");
2132 break;
2133 }
2134 res = 0;
2135 res_signal = 0;
2136 res_thread = 0;
2137 while (*p) {
2138 int action, signal;
2139
2140 if (*p++ != ';') {
2141 res = 0;
2142 break;
2143 }
2144 action = *p++;
2145 signal = 0;
2146 if (action == 'C' || action == 'S') {
2147 signal = strtoul(p, (char **)&p, 16);
2148 } else if (action != 'c' && action != 's') {
2149 res = 0;
2150 break;
2151 }
2152 thread = 0;
2153 if (*p == ':') {
2154 thread = strtoull(p+1, (char **)&p, 16);
2155 }
2156 action = tolower(action);
2157 if (res == 0 || (res == 'c' && action == 's')) {
2158 res = action;
2159 res_signal = signal;
2160 res_thread = thread;
2161 }
2162 }
2163 if (res) {
2164 if (res_thread != -1 && res_thread != 0) {
2165 env = find_cpu(res_thread);
2166 if (env == NULL) {
2167 put_packet(s, "E22");
2168 break;
2169 }
2170 s->c_cpu = env;
2171 }
2172 if (res == 's') {
2173 cpu_single_step(s->c_cpu, sstep_flags);
2174 }
2175 s->signal = res_signal;
2176 gdb_continue(s);
2177 return RS_IDLE;
2178 }
2179 break;
2180 } else {
2181 goto unknown_command;
2182 }
edgar_igl7d03f822008-05-17 18:58:29 +00002183 case 'k':
Jan Kiszka00e94db2012-03-06 18:32:35 +01002184#ifdef CONFIG_USER_ONLY
edgar_igl7d03f822008-05-17 18:58:29 +00002185 /* Kill the target */
2186 fprintf(stderr, "\nQEMU: Terminated via GDBstub\n");
2187 exit(0);
Jan Kiszka00e94db2012-03-06 18:32:35 +01002188#endif
edgar_igl7d03f822008-05-17 18:58:29 +00002189 case 'D':
2190 /* Detach packet */
aliguori880a7572008-11-18 20:30:24 +00002191 gdb_breakpoint_remove_all();
Daniel Gutson7ea06da2010-02-26 14:13:50 -03002192 gdb_syscall_mode = GDB_SYS_DISABLED;
edgar_igl7d03f822008-05-17 18:58:29 +00002193 gdb_continue(s);
2194 put_packet(s, "OK");
2195 break;
bellard858693c2004-03-31 18:52:07 +00002196 case 's':
2197 if (*p != '\0') {
ths8fac5802007-07-12 10:05:07 +00002198 addr = strtoull(p, (char **)&p, 16);
aurel32fab9d282009-04-08 21:29:37 +00002199 gdb_set_cpu_pc(s, addr);
bellard858693c2004-03-31 18:52:07 +00002200 }
aliguori880a7572008-11-18 20:30:24 +00002201 cpu_single_step(s->c_cpu, sstep_flags);
edgar_iglba70a622008-03-14 06:10:42 +00002202 gdb_continue(s);
bellard41625032005-04-24 10:07:11 +00002203 return RS_IDLE;
pbrooka2d1eba2007-01-28 03:10:55 +00002204 case 'F':
2205 {
2206 target_ulong ret;
2207 target_ulong err;
2208
2209 ret = strtoull(p, (char **)&p, 16);
2210 if (*p == ',') {
2211 p++;
2212 err = strtoull(p, (char **)&p, 16);
2213 } else {
2214 err = 0;
2215 }
2216 if (*p == ',')
2217 p++;
2218 type = *p;
Meador Ingecdb432b2012-03-15 17:49:45 +00002219 if (s->current_syscall_cb) {
2220 s->current_syscall_cb(s->c_cpu, ret, err);
2221 s->current_syscall_cb = NULL;
2222 }
pbrooka2d1eba2007-01-28 03:10:55 +00002223 if (type == 'C') {
2224 put_packet(s, "T02");
2225 } else {
edgar_iglba70a622008-03-14 06:10:42 +00002226 gdb_continue(s);
pbrooka2d1eba2007-01-28 03:10:55 +00002227 }
2228 }
2229 break;
bellard858693c2004-03-31 18:52:07 +00002230 case 'g':
Avi Kivity4c0960c2009-08-17 23:19:53 +03002231 cpu_synchronize_state(s->g_cpu);
Max Filippovccfcaba2011-09-06 03:55:52 +04002232 env = s->g_cpu;
pbrook56aebc82008-10-11 17:55:29 +00002233 len = 0;
2234 for (addr = 0; addr < num_g_regs; addr++) {
aliguori880a7572008-11-18 20:30:24 +00002235 reg_size = gdb_read_register(s->g_cpu, mem_buf + len, addr);
pbrook56aebc82008-10-11 17:55:29 +00002236 len += reg_size;
2237 }
2238 memtohex(buf, mem_buf, len);
bellard858693c2004-03-31 18:52:07 +00002239 put_packet(s, buf);
2240 break;
2241 case 'G':
Avi Kivity4c0960c2009-08-17 23:19:53 +03002242 cpu_synchronize_state(s->g_cpu);
Max Filippovccfcaba2011-09-06 03:55:52 +04002243 env = s->g_cpu;
pbrook56aebc82008-10-11 17:55:29 +00002244 registers = mem_buf;
bellard858693c2004-03-31 18:52:07 +00002245 len = strlen(p) / 2;
2246 hextomem((uint8_t *)registers, p, len);
pbrook56aebc82008-10-11 17:55:29 +00002247 for (addr = 0; addr < num_g_regs && len > 0; addr++) {
aliguori880a7572008-11-18 20:30:24 +00002248 reg_size = gdb_write_register(s->g_cpu, registers, addr);
pbrook56aebc82008-10-11 17:55:29 +00002249 len -= reg_size;
2250 registers += reg_size;
2251 }
bellard858693c2004-03-31 18:52:07 +00002252 put_packet(s, "OK");
2253 break;
2254 case 'm':
bellard9d9754a2006-06-25 15:32:37 +00002255 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00002256 if (*p == ',')
2257 p++;
bellard9d9754a2006-06-25 15:32:37 +00002258 len = strtoull(p, NULL, 16);
Fabien Chouteau44520db2011-09-08 12:48:16 +02002259 if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, 0) != 0) {
bellard6f970bd2005-12-05 19:55:19 +00002260 put_packet (s, "E14");
2261 } else {
2262 memtohex(buf, mem_buf, len);
2263 put_packet(s, buf);
2264 }
bellard858693c2004-03-31 18:52:07 +00002265 break;
2266 case 'M':
bellard9d9754a2006-06-25 15:32:37 +00002267 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00002268 if (*p == ',')
2269 p++;
bellard9d9754a2006-06-25 15:32:37 +00002270 len = strtoull(p, (char **)&p, 16);
bellardb328f872005-01-17 22:03:16 +00002271 if (*p == ':')
bellard858693c2004-03-31 18:52:07 +00002272 p++;
2273 hextomem(mem_buf, p, len);
Fabien Chouteau44520db2011-09-08 12:48:16 +02002274 if (target_memory_rw_debug(s->g_cpu, addr, mem_buf, len, 1) != 0) {
bellard905f20b2005-04-26 21:09:55 +00002275 put_packet(s, "E14");
Fabien Chouteau44520db2011-09-08 12:48:16 +02002276 } else {
bellard858693c2004-03-31 18:52:07 +00002277 put_packet(s, "OK");
Fabien Chouteau44520db2011-09-08 12:48:16 +02002278 }
bellard858693c2004-03-31 18:52:07 +00002279 break;
pbrook56aebc82008-10-11 17:55:29 +00002280 case 'p':
2281 /* Older gdb are really dumb, and don't use 'g' if 'p' is avaialable.
2282 This works, but can be very slow. Anything new enough to
2283 understand XML also knows how to use this properly. */
2284 if (!gdb_has_xml)
2285 goto unknown_command;
2286 addr = strtoull(p, (char **)&p, 16);
aliguori880a7572008-11-18 20:30:24 +00002287 reg_size = gdb_read_register(s->g_cpu, mem_buf, addr);
pbrook56aebc82008-10-11 17:55:29 +00002288 if (reg_size) {
2289 memtohex(buf, mem_buf, reg_size);
2290 put_packet(s, buf);
2291 } else {
2292 put_packet(s, "E14");
2293 }
2294 break;
2295 case 'P':
2296 if (!gdb_has_xml)
2297 goto unknown_command;
2298 addr = strtoull(p, (char **)&p, 16);
2299 if (*p == '=')
2300 p++;
2301 reg_size = strlen(p) / 2;
2302 hextomem(mem_buf, p, reg_size);
aliguori880a7572008-11-18 20:30:24 +00002303 gdb_write_register(s->g_cpu, mem_buf, addr);
pbrook56aebc82008-10-11 17:55:29 +00002304 put_packet(s, "OK");
2305 break;
bellard858693c2004-03-31 18:52:07 +00002306 case 'Z':
bellard858693c2004-03-31 18:52:07 +00002307 case 'z':
2308 type = strtoul(p, (char **)&p, 16);
2309 if (*p == ',')
2310 p++;
bellard9d9754a2006-06-25 15:32:37 +00002311 addr = strtoull(p, (char **)&p, 16);
bellard858693c2004-03-31 18:52:07 +00002312 if (*p == ',')
2313 p++;
bellard9d9754a2006-06-25 15:32:37 +00002314 len = strtoull(p, (char **)&p, 16);
aliguoria1d1bb32008-11-18 20:07:32 +00002315 if (ch == 'Z')
aliguori880a7572008-11-18 20:30:24 +00002316 res = gdb_breakpoint_insert(addr, len, type);
aliguoria1d1bb32008-11-18 20:07:32 +00002317 else
aliguori880a7572008-11-18 20:30:24 +00002318 res = gdb_breakpoint_remove(addr, len, type);
aliguoria1d1bb32008-11-18 20:07:32 +00002319 if (res >= 0)
2320 put_packet(s, "OK");
2321 else if (res == -ENOSYS)
pbrook0f459d12008-06-09 00:20:13 +00002322 put_packet(s, "");
aliguoria1d1bb32008-11-18 20:07:32 +00002323 else
2324 put_packet(s, "E22");
bellard858693c2004-03-31 18:52:07 +00002325 break;
aliguori880a7572008-11-18 20:30:24 +00002326 case 'H':
2327 type = *p++;
2328 thread = strtoull(p, (char **)&p, 16);
2329 if (thread == -1 || thread == 0) {
2330 put_packet(s, "OK");
2331 break;
2332 }
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002333 env = find_cpu(thread);
aliguori880a7572008-11-18 20:30:24 +00002334 if (env == NULL) {
2335 put_packet(s, "E22");
2336 break;
2337 }
2338 switch (type) {
2339 case 'c':
2340 s->c_cpu = env;
2341 put_packet(s, "OK");
2342 break;
2343 case 'g':
2344 s->g_cpu = env;
2345 put_packet(s, "OK");
2346 break;
2347 default:
2348 put_packet(s, "E22");
2349 break;
2350 }
2351 break;
2352 case 'T':
2353 thread = strtoull(p, (char **)&p, 16);
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002354 env = find_cpu(thread);
2355
2356 if (env != NULL) {
2357 put_packet(s, "OK");
2358 } else {
aliguori880a7572008-11-18 20:30:24 +00002359 put_packet(s, "E22");
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002360 }
aliguori880a7572008-11-18 20:30:24 +00002361 break;
pbrook978efd62006-06-17 18:30:42 +00002362 case 'q':
edgar_igl60897d32008-05-09 08:25:14 +00002363 case 'Q':
2364 /* parse any 'q' packets here */
2365 if (!strcmp(p,"qemu.sstepbits")) {
2366 /* Query Breakpoint bit definitions */
blueswir1363a37d2008-08-21 17:58:08 +00002367 snprintf(buf, sizeof(buf), "ENABLE=%x,NOIRQ=%x,NOTIMER=%x",
2368 SSTEP_ENABLE,
2369 SSTEP_NOIRQ,
2370 SSTEP_NOTIMER);
edgar_igl60897d32008-05-09 08:25:14 +00002371 put_packet(s, buf);
2372 break;
2373 } else if (strncmp(p,"qemu.sstep",10) == 0) {
2374 /* Display or change the sstep_flags */
2375 p += 10;
2376 if (*p != '=') {
2377 /* Display current setting */
blueswir1363a37d2008-08-21 17:58:08 +00002378 snprintf(buf, sizeof(buf), "0x%x", sstep_flags);
edgar_igl60897d32008-05-09 08:25:14 +00002379 put_packet(s, buf);
2380 break;
2381 }
2382 p++;
2383 type = strtoul(p, (char **)&p, 16);
2384 sstep_flags = type;
2385 put_packet(s, "OK");
2386 break;
aliguori880a7572008-11-18 20:30:24 +00002387 } else if (strcmp(p,"C") == 0) {
2388 /* "Current thread" remains vague in the spec, so always return
2389 * the first CPU (gdb returns the first thread). */
2390 put_packet(s, "QC1");
2391 break;
2392 } else if (strcmp(p,"fThreadInfo") == 0) {
2393 s->query_cpu = first_cpu;
2394 goto report_cpuinfo;
2395 } else if (strcmp(p,"sThreadInfo") == 0) {
2396 report_cpuinfo:
2397 if (s->query_cpu) {
Andreas Färber0d342822012-12-17 07:12:13 +01002398 snprintf(buf, sizeof(buf), "m%x",
2399 cpu_index(ENV_GET_CPU(s->query_cpu)));
aliguori880a7572008-11-18 20:30:24 +00002400 put_packet(s, buf);
2401 s->query_cpu = s->query_cpu->next_cpu;
2402 } else
2403 put_packet(s, "l");
2404 break;
2405 } else if (strncmp(p,"ThreadExtraInfo,", 16) == 0) {
2406 thread = strtoull(p+16, (char **)&p, 16);
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002407 env = find_cpu(thread);
2408 if (env != NULL) {
Andreas Färber55e5c282012-12-17 06:18:02 +01002409 CPUState *cpu = ENV_GET_CPU(env);
Avi Kivity4c0960c2009-08-17 23:19:53 +03002410 cpu_synchronize_state(env);
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002411 len = snprintf((char *)mem_buf, sizeof(mem_buf),
Andreas Färber55e5c282012-12-17 06:18:02 +01002412 "CPU#%d [%s]", cpu->cpu_index,
Andreas Färber259186a2013-01-17 18:51:17 +01002413 cpu->halted ? "halted " : "running");
Nathan Froyd1e9fa732009-06-03 11:33:08 -07002414 memtohex(buf, mem_buf, len);
2415 put_packet(s, buf);
2416 }
aliguori880a7572008-11-18 20:30:24 +00002417 break;
edgar_igl60897d32008-05-09 08:25:14 +00002418 }
blueswir10b8a9882009-03-07 10:51:36 +00002419#ifdef CONFIG_USER_ONLY
edgar_igl60897d32008-05-09 08:25:14 +00002420 else if (strncmp(p, "Offsets", 7) == 0) {
aliguori880a7572008-11-18 20:30:24 +00002421 TaskState *ts = s->c_cpu->opaque;
pbrook978efd62006-06-17 18:30:42 +00002422
blueswir1363a37d2008-08-21 17:58:08 +00002423 snprintf(buf, sizeof(buf),
2424 "Text=" TARGET_ABI_FMT_lx ";Data=" TARGET_ABI_FMT_lx
2425 ";Bss=" TARGET_ABI_FMT_lx,
2426 ts->info->code_offset,
2427 ts->info->data_offset,
2428 ts->info->data_offset);
pbrook978efd62006-06-17 18:30:42 +00002429 put_packet(s, buf);
2430 break;
2431 }
blueswir10b8a9882009-03-07 10:51:36 +00002432#else /* !CONFIG_USER_ONLY */
aliguori8a34a0f2009-03-05 23:01:55 +00002433 else if (strncmp(p, "Rcmd,", 5) == 0) {
2434 int len = strlen(p + 5);
2435
2436 if ((len % 2) != 0) {
2437 put_packet(s, "E01");
2438 break;
2439 }
2440 hextomem(mem_buf, p + 5, len);
2441 len = len / 2;
2442 mem_buf[len++] = 0;
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002443 qemu_chr_be_write(s->mon_chr, mem_buf, len);
aliguori8a34a0f2009-03-05 23:01:55 +00002444 put_packet(s, "OK");
2445 break;
2446 }
blueswir10b8a9882009-03-07 10:51:36 +00002447#endif /* !CONFIG_USER_ONLY */
pbrook56aebc82008-10-11 17:55:29 +00002448 if (strncmp(p, "Supported", 9) == 0) {
blueswir15b3715b2008-10-25 11:18:12 +00002449 snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH);
pbrook56aebc82008-10-11 17:55:29 +00002450#ifdef GDB_CORE_XML
blueswir12dc766d2009-04-13 16:06:19 +00002451 pstrcat(buf, sizeof(buf), ";qXfer:features:read+");
pbrook56aebc82008-10-11 17:55:29 +00002452#endif
2453 put_packet(s, buf);
2454 break;
2455 }
2456#ifdef GDB_CORE_XML
2457 if (strncmp(p, "Xfer:features:read:", 19) == 0) {
2458 const char *xml;
2459 target_ulong total_len;
2460
2461 gdb_has_xml = 1;
2462 p += 19;
aliguori880a7572008-11-18 20:30:24 +00002463 xml = get_feature_xml(p, &p);
pbrook56aebc82008-10-11 17:55:29 +00002464 if (!xml) {
blueswir15b3715b2008-10-25 11:18:12 +00002465 snprintf(buf, sizeof(buf), "E00");
pbrook56aebc82008-10-11 17:55:29 +00002466 put_packet(s, buf);
2467 break;
2468 }
2469
2470 if (*p == ':')
2471 p++;
2472 addr = strtoul(p, (char **)&p, 16);
2473 if (*p == ',')
2474 p++;
2475 len = strtoul(p, (char **)&p, 16);
2476
2477 total_len = strlen(xml);
2478 if (addr > total_len) {
blueswir15b3715b2008-10-25 11:18:12 +00002479 snprintf(buf, sizeof(buf), "E00");
pbrook56aebc82008-10-11 17:55:29 +00002480 put_packet(s, buf);
2481 break;
2482 }
2483 if (len > (MAX_PACKET_LENGTH - 5) / 2)
2484 len = (MAX_PACKET_LENGTH - 5) / 2;
2485 if (len < total_len - addr) {
2486 buf[0] = 'm';
2487 len = memtox(buf + 1, xml + addr, len);
2488 } else {
2489 buf[0] = 'l';
2490 len = memtox(buf + 1, xml + addr, total_len - addr);
2491 }
2492 put_packet_binary(s, buf, len + 1);
2493 break;
2494 }
2495#endif
2496 /* Unrecognised 'q' command. */
2497 goto unknown_command;
2498
bellard858693c2004-03-31 18:52:07 +00002499 default:
pbrook56aebc82008-10-11 17:55:29 +00002500 unknown_command:
bellard858693c2004-03-31 18:52:07 +00002501 /* put empty packet */
2502 buf[0] = '\0';
2503 put_packet(s, buf);
2504 break;
2505 }
2506 return RS_IDLE;
2507}
2508
Andreas Färber9349b4f2012-03-14 01:38:32 +01002509void gdb_set_stop_cpu(CPUArchState *env)
aliguori880a7572008-11-18 20:30:24 +00002510{
2511 gdbserver_state->c_cpu = env;
2512 gdbserver_state->g_cpu = env;
2513}
2514
bellard1fddef42005-04-17 19:16:13 +00002515#ifndef CONFIG_USER_ONLY
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03002516static void gdb_vm_state_change(void *opaque, int running, RunState state)
bellard858693c2004-03-31 18:52:07 +00002517{
aliguori880a7572008-11-18 20:30:24 +00002518 GDBState *s = gdbserver_state;
Andreas Färber9349b4f2012-03-14 01:38:32 +01002519 CPUArchState *env = s->c_cpu;
Andreas Färber0d342822012-12-17 07:12:13 +01002520 CPUState *cpu = ENV_GET_CPU(env);
bellard858693c2004-03-31 18:52:07 +00002521 char buf[256];
aliguorid6fc1b32008-11-18 19:55:44 +00002522 const char *type;
bellard858693c2004-03-31 18:52:07 +00002523 int ret;
2524
Meador Ingecdb432b2012-03-15 17:49:45 +00002525 if (running || s->state == RS_INACTIVE) {
2526 return;
2527 }
2528 /* Is there a GDB syscall waiting to be sent? */
2529 if (s->current_syscall_cb) {
2530 put_packet(s, s->syscall_buf);
pbrooka2d1eba2007-01-28 03:10:55 +00002531 return;
Jan Kiszkae07bbac2011-02-09 16:29:40 +01002532 }
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03002533 switch (state) {
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002534 case RUN_STATE_DEBUG:
aliguori880a7572008-11-18 20:30:24 +00002535 if (env->watchpoint_hit) {
2536 switch (env->watchpoint_hit->flags & BP_MEM_ACCESS) {
aliguoria1d1bb32008-11-18 20:07:32 +00002537 case BP_MEM_READ:
aliguorid6fc1b32008-11-18 19:55:44 +00002538 type = "r";
2539 break;
aliguoria1d1bb32008-11-18 20:07:32 +00002540 case BP_MEM_ACCESS:
aliguorid6fc1b32008-11-18 19:55:44 +00002541 type = "a";
2542 break;
2543 default:
2544 type = "";
2545 break;
2546 }
aliguori880a7572008-11-18 20:30:24 +00002547 snprintf(buf, sizeof(buf),
2548 "T%02xthread:%02x;%swatch:" TARGET_FMT_lx ";",
Andreas Färber0d342822012-12-17 07:12:13 +01002549 GDB_SIGNAL_TRAP, cpu_index(cpu), type,
aliguori880a7572008-11-18 20:30:24 +00002550 env->watchpoint_hit->vaddr);
aliguori880a7572008-11-18 20:30:24 +00002551 env->watchpoint_hit = NULL;
Jan Kiszka425189a2011-03-22 11:02:09 +01002552 goto send_packet;
pbrook6658ffb2007-03-16 23:58:11 +00002553 }
Jan Kiszka425189a2011-03-22 11:02:09 +01002554 tb_flush(env);
aurel32ca587a82008-12-18 22:44:13 +00002555 ret = GDB_SIGNAL_TRAP;
Jan Kiszka425189a2011-03-22 11:02:09 +01002556 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002557 case RUN_STATE_PAUSED:
aliguori9781e042009-01-22 17:15:29 +00002558 ret = GDB_SIGNAL_INT;
Jan Kiszka425189a2011-03-22 11:02:09 +01002559 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002560 case RUN_STATE_SHUTDOWN:
Jan Kiszka425189a2011-03-22 11:02:09 +01002561 ret = GDB_SIGNAL_QUIT;
2562 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002563 case RUN_STATE_IO_ERROR:
Jan Kiszka425189a2011-03-22 11:02:09 +01002564 ret = GDB_SIGNAL_IO;
2565 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002566 case RUN_STATE_WATCHDOG:
Jan Kiszka425189a2011-03-22 11:02:09 +01002567 ret = GDB_SIGNAL_ALRM;
2568 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002569 case RUN_STATE_INTERNAL_ERROR:
Jan Kiszka425189a2011-03-22 11:02:09 +01002570 ret = GDB_SIGNAL_ABRT;
2571 break;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002572 case RUN_STATE_SAVE_VM:
2573 case RUN_STATE_RESTORE_VM:
Jan Kiszka425189a2011-03-22 11:02:09 +01002574 return;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002575 case RUN_STATE_FINISH_MIGRATE:
Jan Kiszka425189a2011-03-22 11:02:09 +01002576 ret = GDB_SIGNAL_XCPU;
2577 break;
2578 default:
2579 ret = GDB_SIGNAL_UNKNOWN;
2580 break;
bellardbbeb7b52006-04-23 18:42:15 +00002581 }
Andreas Färber0d342822012-12-17 07:12:13 +01002582 snprintf(buf, sizeof(buf), "T%02xthread:%02x;", ret, cpu_index(cpu));
Jan Kiszka425189a2011-03-22 11:02:09 +01002583
2584send_packet:
bellard858693c2004-03-31 18:52:07 +00002585 put_packet(s, buf);
Jan Kiszka425189a2011-03-22 11:02:09 +01002586
2587 /* disable single step if it was enabled */
2588 cpu_single_step(env, 0);
bellard858693c2004-03-31 18:52:07 +00002589}
bellard1fddef42005-04-17 19:16:13 +00002590#endif
bellard858693c2004-03-31 18:52:07 +00002591
pbrooka2d1eba2007-01-28 03:10:55 +00002592/* Send a gdb syscall request.
2593 This accepts limited printf-style format specifiers, specifically:
pbrooka87295e2007-05-26 15:09:38 +00002594 %x - target_ulong argument printed in hex.
2595 %lx - 64-bit argument printed in hex.
2596 %s - string pointer (target_ulong) and length (int) pair. */
blueswir17ccfb2e2008-09-14 06:45:34 +00002597void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...)
pbrooka2d1eba2007-01-28 03:10:55 +00002598{
2599 va_list va;
pbrooka2d1eba2007-01-28 03:10:55 +00002600 char *p;
Meador Ingecdb432b2012-03-15 17:49:45 +00002601 char *p_end;
pbrooka2d1eba2007-01-28 03:10:55 +00002602 target_ulong addr;
pbrooka87295e2007-05-26 15:09:38 +00002603 uint64_t i64;
pbrooka2d1eba2007-01-28 03:10:55 +00002604 GDBState *s;
2605
aliguori880a7572008-11-18 20:30:24 +00002606 s = gdbserver_state;
pbrooka2d1eba2007-01-28 03:10:55 +00002607 if (!s)
2608 return;
Meador Ingecdb432b2012-03-15 17:49:45 +00002609 s->current_syscall_cb = cb;
pbrooka2d1eba2007-01-28 03:10:55 +00002610#ifndef CONFIG_USER_ONLY
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002611 vm_stop(RUN_STATE_DEBUG);
pbrooka2d1eba2007-01-28 03:10:55 +00002612#endif
pbrooka2d1eba2007-01-28 03:10:55 +00002613 va_start(va, fmt);
Meador Ingecdb432b2012-03-15 17:49:45 +00002614 p = s->syscall_buf;
2615 p_end = &s->syscall_buf[sizeof(s->syscall_buf)];
pbrooka2d1eba2007-01-28 03:10:55 +00002616 *(p++) = 'F';
2617 while (*fmt) {
2618 if (*fmt == '%') {
2619 fmt++;
2620 switch (*fmt++) {
2621 case 'x':
2622 addr = va_arg(va, target_ulong);
Meador Ingecdb432b2012-03-15 17:49:45 +00002623 p += snprintf(p, p_end - p, TARGET_FMT_lx, addr);
pbrooka2d1eba2007-01-28 03:10:55 +00002624 break;
pbrooka87295e2007-05-26 15:09:38 +00002625 case 'l':
2626 if (*(fmt++) != 'x')
2627 goto bad_format;
2628 i64 = va_arg(va, uint64_t);
Meador Ingecdb432b2012-03-15 17:49:45 +00002629 p += snprintf(p, p_end - p, "%" PRIx64, i64);
pbrooka87295e2007-05-26 15:09:38 +00002630 break;
pbrooka2d1eba2007-01-28 03:10:55 +00002631 case 's':
2632 addr = va_arg(va, target_ulong);
Meador Ingecdb432b2012-03-15 17:49:45 +00002633 p += snprintf(p, p_end - p, TARGET_FMT_lx "/%x",
blueswir1363a37d2008-08-21 17:58:08 +00002634 addr, va_arg(va, int));
pbrooka2d1eba2007-01-28 03:10:55 +00002635 break;
2636 default:
pbrooka87295e2007-05-26 15:09:38 +00002637 bad_format:
pbrooka2d1eba2007-01-28 03:10:55 +00002638 fprintf(stderr, "gdbstub: Bad syscall format string '%s'\n",
2639 fmt - 1);
2640 break;
2641 }
2642 } else {
2643 *(p++) = *(fmt++);
2644 }
2645 }
pbrook8a93e022007-08-06 13:19:15 +00002646 *p = 0;
pbrooka2d1eba2007-01-28 03:10:55 +00002647 va_end(va);
pbrooka2d1eba2007-01-28 03:10:55 +00002648#ifdef CONFIG_USER_ONLY
Meador Ingecdb432b2012-03-15 17:49:45 +00002649 put_packet(s, s->syscall_buf);
aliguori880a7572008-11-18 20:30:24 +00002650 gdb_handlesig(s->c_cpu, 0);
pbrooka2d1eba2007-01-28 03:10:55 +00002651#else
Meador Ingecdb432b2012-03-15 17:49:45 +00002652 /* In this case wait to send the syscall packet until notification that
2653 the CPU has stopped. This must be done because if the packet is sent
2654 now the reply from the syscall request could be received while the CPU
2655 is still in the running state, which can cause packets to be dropped
2656 and state transition 'T' packets to be sent while the syscall is still
2657 being processed. */
aurel323098dba2009-03-07 21:28:24 +00002658 cpu_exit(s->c_cpu);
pbrooka2d1eba2007-01-28 03:10:55 +00002659#endif
2660}
2661
bellard6a00d602005-11-21 23:25:50 +00002662static void gdb_read_byte(GDBState *s, int ch)
bellard858693c2004-03-31 18:52:07 +00002663{
2664 int i, csum;
ths60fe76f2007-12-16 03:02:09 +00002665 uint8_t reply;
bellard858693c2004-03-31 18:52:07 +00002666
bellard1fddef42005-04-17 19:16:13 +00002667#ifndef CONFIG_USER_ONLY
pbrook4046d912007-01-28 01:53:16 +00002668 if (s->last_packet_len) {
2669 /* Waiting for a response to the last packet. If we see the start
2670 of a new command then abandon the previous response. */
2671 if (ch == '-') {
2672#ifdef DEBUG_GDB
2673 printf("Got NACK, retransmitting\n");
2674#endif
thsffe8ab82007-12-16 03:16:05 +00002675 put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len);
pbrook4046d912007-01-28 01:53:16 +00002676 }
2677#ifdef DEBUG_GDB
2678 else if (ch == '+')
2679 printf("Got ACK\n");
2680 else
2681 printf("Got '%c' when expecting ACK/NACK\n", ch);
2682#endif
2683 if (ch == '+' || ch == '$')
2684 s->last_packet_len = 0;
2685 if (ch != '$')
2686 return;
2687 }
Luiz Capitulino13548692011-07-29 15:36:43 -03002688 if (runstate_is_running()) {
bellard858693c2004-03-31 18:52:07 +00002689 /* when the CPU is running, we cannot do anything except stop
2690 it when receiving a char */
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002691 vm_stop(RUN_STATE_PAUSED);
ths5fafdf22007-09-16 21:08:06 +00002692 } else
bellard1fddef42005-04-17 19:16:13 +00002693#endif
bellard41625032005-04-24 10:07:11 +00002694 {
bellard858693c2004-03-31 18:52:07 +00002695 switch(s->state) {
2696 case RS_IDLE:
2697 if (ch == '$') {
2698 s->line_buf_index = 0;
2699 s->state = RS_GETLINE;
bellard4c3a88a2003-07-26 12:06:08 +00002700 }
2701 break;
bellard858693c2004-03-31 18:52:07 +00002702 case RS_GETLINE:
2703 if (ch == '#') {
2704 s->state = RS_CHKSUM1;
2705 } else if (s->line_buf_index >= sizeof(s->line_buf) - 1) {
2706 s->state = RS_IDLE;
2707 } else {
2708 s->line_buf[s->line_buf_index++] = ch;
2709 }
2710 break;
2711 case RS_CHKSUM1:
2712 s->line_buf[s->line_buf_index] = '\0';
2713 s->line_csum = fromhex(ch) << 4;
2714 s->state = RS_CHKSUM2;
2715 break;
2716 case RS_CHKSUM2:
2717 s->line_csum |= fromhex(ch);
2718 csum = 0;
2719 for(i = 0; i < s->line_buf_index; i++) {
2720 csum += s->line_buf[i];
2721 }
2722 if (s->line_csum != (csum & 0xff)) {
ths60fe76f2007-12-16 03:02:09 +00002723 reply = '-';
2724 put_buffer(s, &reply, 1);
bellard858693c2004-03-31 18:52:07 +00002725 s->state = RS_IDLE;
2726 } else {
ths60fe76f2007-12-16 03:02:09 +00002727 reply = '+';
2728 put_buffer(s, &reply, 1);
aliguori880a7572008-11-18 20:30:24 +00002729 s->state = gdb_handle_packet(s, s->line_buf);
bellard858693c2004-03-31 18:52:07 +00002730 }
bellardb4608c02003-06-27 17:34:32 +00002731 break;
pbrooka2d1eba2007-01-28 03:10:55 +00002732 default:
2733 abort();
bellardb4608c02003-06-27 17:34:32 +00002734 }
2735 }
bellard858693c2004-03-31 18:52:07 +00002736}
2737
Paul Brook0e1c9c52010-06-16 13:03:51 +01002738/* Tell the remote gdb that the process has exited. */
Andreas Färber9349b4f2012-03-14 01:38:32 +01002739void gdb_exit(CPUArchState *env, int code)
Paul Brook0e1c9c52010-06-16 13:03:51 +01002740{
2741 GDBState *s;
2742 char buf[4];
2743
2744 s = gdbserver_state;
2745 if (!s) {
2746 return;
2747 }
2748#ifdef CONFIG_USER_ONLY
2749 if (gdbserver_fd < 0 || s->fd < 0) {
2750 return;
2751 }
2752#endif
2753
2754 snprintf(buf, sizeof(buf), "W%02x", (uint8_t)code);
2755 put_packet(s, buf);
Fabien Chouteaue2af15b2011-01-13 12:46:57 +01002756
2757#ifndef CONFIG_USER_ONLY
2758 if (s->chr) {
Anthony Liguori70f24fb2011-08-15 11:17:38 -05002759 qemu_chr_delete(s->chr);
Fabien Chouteaue2af15b2011-01-13 12:46:57 +01002760 }
2761#endif
Paul Brook0e1c9c52010-06-16 13:03:51 +01002762}
2763
bellard1fddef42005-04-17 19:16:13 +00002764#ifdef CONFIG_USER_ONLY
2765int
aurel32ca587a82008-12-18 22:44:13 +00002766gdb_queuesig (void)
2767{
2768 GDBState *s;
2769
2770 s = gdbserver_state;
2771
2772 if (gdbserver_fd < 0 || s->fd < 0)
2773 return 0;
2774 else
2775 return 1;
2776}
2777
2778int
Andreas Färber9349b4f2012-03-14 01:38:32 +01002779gdb_handlesig (CPUArchState *env, int sig)
bellard1fddef42005-04-17 19:16:13 +00002780{
2781 GDBState *s;
2782 char buf[256];
2783 int n;
2784
aliguori880a7572008-11-18 20:30:24 +00002785 s = gdbserver_state;
edgar_igl1f487ee2008-05-17 22:20:53 +00002786 if (gdbserver_fd < 0 || s->fd < 0)
2787 return sig;
bellard1fddef42005-04-17 19:16:13 +00002788
2789 /* disable single step if it was enabled */
2790 cpu_single_step(env, 0);
2791 tb_flush(env);
2792
2793 if (sig != 0)
2794 {
aurel32ca587a82008-12-18 22:44:13 +00002795 snprintf(buf, sizeof(buf), "S%02x", target_signal_to_gdb (sig));
bellard1fddef42005-04-17 19:16:13 +00002796 put_packet(s, buf);
2797 }
edgar_igl1f487ee2008-05-17 22:20:53 +00002798 /* put_packet() might have detected that the peer terminated the
2799 connection. */
2800 if (s->fd < 0)
2801 return sig;
bellard1fddef42005-04-17 19:16:13 +00002802
bellard1fddef42005-04-17 19:16:13 +00002803 sig = 0;
2804 s->state = RS_IDLE;
bellard41625032005-04-24 10:07:11 +00002805 s->running_state = 0;
2806 while (s->running_state == 0) {
bellard1fddef42005-04-17 19:16:13 +00002807 n = read (s->fd, buf, 256);
2808 if (n > 0)
2809 {
2810 int i;
2811
2812 for (i = 0; i < n; i++)
bellard6a00d602005-11-21 23:25:50 +00002813 gdb_read_byte (s, buf[i]);
bellard1fddef42005-04-17 19:16:13 +00002814 }
2815 else if (n == 0 || errno != EAGAIN)
2816 {
Stefan Weile7d81002011-12-10 00:19:46 +01002817 /* XXX: Connection closed. Should probably wait for another
bellard1fddef42005-04-17 19:16:13 +00002818 connection before continuing. */
2819 return sig;
2820 }
bellard41625032005-04-24 10:07:11 +00002821 }
edgar_igl1f487ee2008-05-17 22:20:53 +00002822 sig = s->signal;
2823 s->signal = 0;
bellard1fddef42005-04-17 19:16:13 +00002824 return sig;
2825}
bellarde9009672005-04-26 20:42:36 +00002826
aurel32ca587a82008-12-18 22:44:13 +00002827/* Tell the remote gdb that the process has exited due to SIG. */
Andreas Färber9349b4f2012-03-14 01:38:32 +01002828void gdb_signalled(CPUArchState *env, int sig)
aurel32ca587a82008-12-18 22:44:13 +00002829{
2830 GDBState *s;
2831 char buf[4];
2832
2833 s = gdbserver_state;
2834 if (gdbserver_fd < 0 || s->fd < 0)
2835 return;
2836
2837 snprintf(buf, sizeof(buf), "X%02x", target_signal_to_gdb (sig));
2838 put_packet(s, buf);
2839}
bellard1fddef42005-04-17 19:16:13 +00002840
aliguori880a7572008-11-18 20:30:24 +00002841static void gdb_accept(void)
bellard858693c2004-03-31 18:52:07 +00002842{
2843 GDBState *s;
2844 struct sockaddr_in sockaddr;
2845 socklen_t len;
MORITA Kazutakabf1c8522013-02-22 12:39:50 +09002846 int fd;
bellard858693c2004-03-31 18:52:07 +00002847
2848 for(;;) {
2849 len = sizeof(sockaddr);
2850 fd = accept(gdbserver_fd, (struct sockaddr *)&sockaddr, &len);
2851 if (fd < 0 && errno != EINTR) {
2852 perror("accept");
2853 return;
2854 } else if (fd >= 0) {
Kevin Wolf40ff6d72009-12-02 12:24:42 +01002855#ifndef _WIN32
2856 fcntl(fd, F_SETFD, FD_CLOEXEC);
2857#endif
bellard858693c2004-03-31 18:52:07 +00002858 break;
2859 }
2860 }
2861
2862 /* set short latency */
MORITA Kazutakabf1c8522013-02-22 12:39:50 +09002863 socket_set_nodelay(fd);
ths3b46e622007-09-17 08:09:54 +00002864
Anthony Liguori7267c092011-08-20 22:09:37 -05002865 s = g_malloc0(sizeof(GDBState));
aliguori880a7572008-11-18 20:30:24 +00002866 s->c_cpu = first_cpu;
2867 s->g_cpu = first_cpu;
bellard858693c2004-03-31 18:52:07 +00002868 s->fd = fd;
pbrook56aebc82008-10-11 17:55:29 +00002869 gdb_has_xml = 0;
bellard858693c2004-03-31 18:52:07 +00002870
aliguori880a7572008-11-18 20:30:24 +00002871 gdbserver_state = s;
pbrooka2d1eba2007-01-28 03:10:55 +00002872
bellard858693c2004-03-31 18:52:07 +00002873 fcntl(fd, F_SETFL, O_NONBLOCK);
bellard858693c2004-03-31 18:52:07 +00002874}
2875
2876static int gdbserver_open(int port)
2877{
2878 struct sockaddr_in sockaddr;
2879 int fd, val, ret;
2880
2881 fd = socket(PF_INET, SOCK_STREAM, 0);
2882 if (fd < 0) {
2883 perror("socket");
2884 return -1;
2885 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01002886#ifndef _WIN32
2887 fcntl(fd, F_SETFD, FD_CLOEXEC);
2888#endif
bellard858693c2004-03-31 18:52:07 +00002889
2890 /* allow fast reuse */
2891 val = 1;
Stefan Weil9957fc72013-03-08 19:58:32 +01002892 qemu_setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
bellard858693c2004-03-31 18:52:07 +00002893
2894 sockaddr.sin_family = AF_INET;
2895 sockaddr.sin_port = htons(port);
2896 sockaddr.sin_addr.s_addr = 0;
2897 ret = bind(fd, (struct sockaddr *)&sockaddr, sizeof(sockaddr));
2898 if (ret < 0) {
2899 perror("bind");
Peter Maydellbb161722011-12-24 23:37:24 +00002900 close(fd);
bellard858693c2004-03-31 18:52:07 +00002901 return -1;
2902 }
2903 ret = listen(fd, 0);
2904 if (ret < 0) {
2905 perror("listen");
Peter Maydellbb161722011-12-24 23:37:24 +00002906 close(fd);
bellard858693c2004-03-31 18:52:07 +00002907 return -1;
2908 }
bellard858693c2004-03-31 18:52:07 +00002909 return fd;
2910}
2911
2912int gdbserver_start(int port)
2913{
2914 gdbserver_fd = gdbserver_open(port);
2915 if (gdbserver_fd < 0)
2916 return -1;
2917 /* accept connections */
aliguori880a7572008-11-18 20:30:24 +00002918 gdb_accept();
bellardb4608c02003-06-27 17:34:32 +00002919 return 0;
2920}
aurel322b1319c2008-12-18 22:44:04 +00002921
2922/* Disable gdb stub for child processes. */
Andreas Färber9349b4f2012-03-14 01:38:32 +01002923void gdbserver_fork(CPUArchState *env)
aurel322b1319c2008-12-18 22:44:04 +00002924{
2925 GDBState *s = gdbserver_state;
edgar_igl9f6164d2009-01-07 10:22:28 +00002926 if (gdbserver_fd < 0 || s->fd < 0)
aurel322b1319c2008-12-18 22:44:04 +00002927 return;
2928 close(s->fd);
2929 s->fd = -1;
2930 cpu_breakpoint_remove_all(env, BP_GDB);
2931 cpu_watchpoint_remove_all(env, BP_GDB);
2932}
pbrook4046d912007-01-28 01:53:16 +00002933#else
thsaa1f17c2007-07-11 22:48:58 +00002934static int gdb_chr_can_receive(void *opaque)
pbrook4046d912007-01-28 01:53:16 +00002935{
pbrook56aebc82008-10-11 17:55:29 +00002936 /* We can handle an arbitrarily large amount of data.
2937 Pick the maximum packet size, which is as good as anything. */
2938 return MAX_PACKET_LENGTH;
pbrook4046d912007-01-28 01:53:16 +00002939}
2940
thsaa1f17c2007-07-11 22:48:58 +00002941static void gdb_chr_receive(void *opaque, const uint8_t *buf, int size)
pbrook4046d912007-01-28 01:53:16 +00002942{
pbrook4046d912007-01-28 01:53:16 +00002943 int i;
2944
2945 for (i = 0; i < size; i++) {
aliguori880a7572008-11-18 20:30:24 +00002946 gdb_read_byte(gdbserver_state, buf[i]);
pbrook4046d912007-01-28 01:53:16 +00002947 }
2948}
2949
2950static void gdb_chr_event(void *opaque, int event)
2951{
2952 switch (event) {
Amit Shahb6b8df52009-10-07 18:31:16 +05302953 case CHR_EVENT_OPENED:
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002954 vm_stop(RUN_STATE_PAUSED);
pbrook56aebc82008-10-11 17:55:29 +00002955 gdb_has_xml = 0;
pbrook4046d912007-01-28 01:53:16 +00002956 break;
2957 default:
2958 break;
2959 }
2960}
2961
aliguori8a34a0f2009-03-05 23:01:55 +00002962static void gdb_monitor_output(GDBState *s, const char *msg, int len)
2963{
2964 char buf[MAX_PACKET_LENGTH];
2965
2966 buf[0] = 'O';
2967 if (len > (MAX_PACKET_LENGTH/2) - 1)
2968 len = (MAX_PACKET_LENGTH/2) - 1;
2969 memtohex(buf + 1, (uint8_t *)msg, len);
2970 put_packet(s, buf);
2971}
2972
2973static int gdb_monitor_write(CharDriverState *chr, const uint8_t *buf, int len)
2974{
2975 const char *p = (const char *)buf;
2976 int max_sz;
2977
2978 max_sz = (sizeof(gdbserver_state->last_packet) - 2) / 2;
2979 for (;;) {
2980 if (len <= max_sz) {
2981 gdb_monitor_output(gdbserver_state, p, len);
2982 break;
2983 }
2984 gdb_monitor_output(gdbserver_state, p, max_sz);
2985 p += max_sz;
2986 len -= max_sz;
2987 }
2988 return len;
2989}
2990
aliguori59030a82009-04-05 18:43:41 +00002991#ifndef _WIN32
2992static void gdb_sigterm_handler(int signal)
2993{
Luiz Capitulino13548692011-07-29 15:36:43 -03002994 if (runstate_is_running()) {
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002995 vm_stop(RUN_STATE_PAUSED);
Jan Kiszkae07bbac2011-02-09 16:29:40 +01002996 }
aliguori59030a82009-04-05 18:43:41 +00002997}
2998#endif
2999
3000int gdbserver_start(const char *device)
pbrook4046d912007-01-28 01:53:16 +00003001{
3002 GDBState *s;
aliguori59030a82009-04-05 18:43:41 +00003003 char gdbstub_device_name[128];
aliguori36556b22009-03-28 18:05:53 +00003004 CharDriverState *chr = NULL;
3005 CharDriverState *mon_chr;
pbrook4046d912007-01-28 01:53:16 +00003006
aliguori59030a82009-04-05 18:43:41 +00003007 if (!device)
3008 return -1;
3009 if (strcmp(device, "none") != 0) {
3010 if (strstart(device, "tcp:", NULL)) {
3011 /* enforce required TCP attributes */
3012 snprintf(gdbstub_device_name, sizeof(gdbstub_device_name),
3013 "%s,nowait,nodelay,server", device);
3014 device = gdbstub_device_name;
aliguori36556b22009-03-28 18:05:53 +00003015 }
aliguori59030a82009-04-05 18:43:41 +00003016#ifndef _WIN32
3017 else if (strcmp(device, "stdio") == 0) {
3018 struct sigaction act;
pbrookcfc34752007-02-22 01:48:01 +00003019
aliguori59030a82009-04-05 18:43:41 +00003020 memset(&act, 0, sizeof(act));
3021 act.sa_handler = gdb_sigterm_handler;
3022 sigaction(SIGINT, &act, NULL);
3023 }
3024#endif
Anthony Liguori27143a42011-08-15 11:17:36 -05003025 chr = qemu_chr_new("gdb", device, NULL);
aliguori36556b22009-03-28 18:05:53 +00003026 if (!chr)
3027 return -1;
3028
Hans de Goede456d6062013-03-27 20:29:40 +01003029 qemu_chr_fe_claim_no_fail(chr);
aliguori36556b22009-03-28 18:05:53 +00003030 qemu_chr_add_handlers(chr, gdb_chr_can_receive, gdb_chr_receive,
3031 gdb_chr_event, NULL);
pbrookcfc34752007-02-22 01:48:01 +00003032 }
3033
aliguori36556b22009-03-28 18:05:53 +00003034 s = gdbserver_state;
3035 if (!s) {
Anthony Liguori7267c092011-08-20 22:09:37 -05003036 s = g_malloc0(sizeof(GDBState));
aliguori36556b22009-03-28 18:05:53 +00003037 gdbserver_state = s;
pbrook4046d912007-01-28 01:53:16 +00003038
aliguori36556b22009-03-28 18:05:53 +00003039 qemu_add_vm_change_state_handler(gdb_vm_state_change, NULL);
3040
3041 /* Initialize a monitor terminal for gdb */
Anthony Liguori7267c092011-08-20 22:09:37 -05003042 mon_chr = g_malloc0(sizeof(*mon_chr));
aliguori36556b22009-03-28 18:05:53 +00003043 mon_chr->chr_write = gdb_monitor_write;
3044 monitor_init(mon_chr, 0);
3045 } else {
3046 if (s->chr)
Anthony Liguori70f24fb2011-08-15 11:17:38 -05003047 qemu_chr_delete(s->chr);
aliguori36556b22009-03-28 18:05:53 +00003048 mon_chr = s->mon_chr;
3049 memset(s, 0, sizeof(GDBState));
3050 }
aliguori880a7572008-11-18 20:30:24 +00003051 s->c_cpu = first_cpu;
3052 s->g_cpu = first_cpu;
pbrook4046d912007-01-28 01:53:16 +00003053 s->chr = chr;
aliguori36556b22009-03-28 18:05:53 +00003054 s->state = chr ? RS_IDLE : RS_INACTIVE;
3055 s->mon_chr = mon_chr;
Meador Ingecdb432b2012-03-15 17:49:45 +00003056 s->current_syscall_cb = NULL;
aliguori8a34a0f2009-03-05 23:01:55 +00003057
pbrook4046d912007-01-28 01:53:16 +00003058 return 0;
3059}
3060#endif