4 * Copyright (c) 2003-2005 Fabrice Bellard
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.
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.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu-common.h"
21 #ifdef CONFIG_USER_ONLY
33 #include "qemu-char.h"
39 #define MAX_PACKET_LENGTH 4096
41 #include "qemu_socket.h"
49 GDB_SIGNAL_UNKNOWN
= 143
52 #ifdef CONFIG_USER_ONLY
54 /* Map target signal numbers to GDB protocol signal numbers and vice
55 * versa. For user emulation's currently supported systems, we can
56 * assume most signals are defined.
59 static int gdb_signal_table
[] = {
219 /* In system mode we only need SIGINT and SIGTRAP; other signals
220 are not yet supported. */
227 static int gdb_signal_table
[] = {
237 #ifdef CONFIG_USER_ONLY
238 static int target_signal_to_gdb (int sig
)
241 for (i
= 0; i
< ARRAY_SIZE (gdb_signal_table
); i
++)
242 if (gdb_signal_table
[i
] == sig
)
244 return GDB_SIGNAL_UNKNOWN
;
248 static int gdb_signal_to_target (int sig
)
250 if (sig
< ARRAY_SIZE (gdb_signal_table
))
251 return gdb_signal_table
[sig
];
258 typedef struct GDBRegisterState
{
264 struct GDBRegisterState
*next
;
275 typedef struct GDBState
{
276 CPUState
*c_cpu
; /* current CPU for step/continue ops */
277 CPUState
*g_cpu
; /* current CPU for other ops */
278 CPUState
*query_cpu
; /* for q{f|s}ThreadInfo */
279 enum RSState state
; /* parsing state */
280 char line_buf
[MAX_PACKET_LENGTH
];
283 uint8_t last_packet
[MAX_PACKET_LENGTH
+ 4];
286 #ifdef CONFIG_USER_ONLY
290 CharDriverState
*chr
;
291 CharDriverState
*mon_chr
;
295 /* By default use no IRQs and no timers while single stepping so as to
296 * make single stepping like an ICE HW step.
298 static int sstep_flags
= SSTEP_ENABLE
|SSTEP_NOIRQ
|SSTEP_NOTIMER
;
300 static GDBState
*gdbserver_state
;
302 /* This is an ugly hack to cope with both new and old gdb.
303 If gdb sends qXfer:features:read then assume we're talking to a newish
304 gdb that understands target descriptions. */
305 static int gdb_has_xml
;
307 #ifdef CONFIG_USER_ONLY
308 /* XXX: This is not thread safe. Do we care? */
309 static int gdbserver_fd
= -1;
311 static int get_char(GDBState
*s
)
317 ret
= recv(s
->fd
, &ch
, 1, 0);
319 if (errno
== ECONNRESET
)
321 if (errno
!= EINTR
&& errno
!= EAGAIN
)
323 } else if (ret
== 0) {
335 static gdb_syscall_complete_cb gdb_current_syscall_cb
;
343 /* If gdb is connected when the first semihosting syscall occurs then use
344 remote gdb syscalls. Otherwise use native file IO. */
345 int use_gdb_syscalls(void)
347 if (gdb_syscall_mode
== GDB_SYS_UNKNOWN
) {
348 gdb_syscall_mode
= (gdbserver_state
? GDB_SYS_ENABLED
351 return gdb_syscall_mode
== GDB_SYS_ENABLED
;
354 /* Resume execution. */
355 static inline void gdb_continue(GDBState
*s
)
357 #ifdef CONFIG_USER_ONLY
358 s
->running_state
= 1;
364 static void put_buffer(GDBState
*s
, const uint8_t *buf
, int len
)
366 #ifdef CONFIG_USER_ONLY
370 ret
= send(s
->fd
, buf
, len
, 0);
372 if (errno
!= EINTR
&& errno
!= EAGAIN
)
380 qemu_chr_write(s
->chr
, buf
, len
);
384 static inline int fromhex(int v
)
386 if (v
>= '0' && v
<= '9')
388 else if (v
>= 'A' && v
<= 'F')
390 else if (v
>= 'a' && v
<= 'f')
396 static inline int tohex(int v
)
404 static void memtohex(char *buf
, const uint8_t *mem
, int len
)
409 for(i
= 0; i
< len
; i
++) {
411 *q
++ = tohex(c
>> 4);
412 *q
++ = tohex(c
& 0xf);
417 static void hextomem(uint8_t *mem
, const char *buf
, int len
)
421 for(i
= 0; i
< len
; i
++) {
422 mem
[i
] = (fromhex(buf
[0]) << 4) | fromhex(buf
[1]);
427 /* return -1 if error, 0 if OK */
428 static int put_packet_binary(GDBState
*s
, const char *buf
, int len
)
439 for(i
= 0; i
< len
; i
++) {
443 *(p
++) = tohex((csum
>> 4) & 0xf);
444 *(p
++) = tohex((csum
) & 0xf);
446 s
->last_packet_len
= p
- s
->last_packet
;
447 put_buffer(s
, (uint8_t *)s
->last_packet
, s
->last_packet_len
);
449 #ifdef CONFIG_USER_ONLY
462 /* return -1 if error, 0 if OK */
463 static int put_packet(GDBState
*s
, const char *buf
)
466 printf("reply='%s'\n", buf
);
469 return put_packet_binary(s
, buf
, strlen(buf
));
472 /* The GDB remote protocol transfers values in target byte order. This means
473 we can use the raw memory access routines to access the value buffer.
474 Conveniently, these also handle the case where the buffer is mis-aligned.
476 #define GET_REG8(val) do { \
477 stb_p(mem_buf, val); \
480 #define GET_REG16(val) do { \
481 stw_p(mem_buf, val); \
484 #define GET_REG32(val) do { \
485 stl_p(mem_buf, val); \
488 #define GET_REG64(val) do { \
489 stq_p(mem_buf, val); \
493 #if TARGET_LONG_BITS == 64
494 #define GET_REGL(val) GET_REG64(val)
495 #define ldtul_p(addr) ldq_p(addr)
497 #define GET_REGL(val) GET_REG32(val)
498 #define ldtul_p(addr) ldl_p(addr)
501 #if defined(TARGET_I386)
504 static const int gpr_map
[16] = {
505 R_EAX
, R_EBX
, R_ECX
, R_EDX
, R_ESI
, R_EDI
, R_EBP
, R_ESP
,
506 8, 9, 10, 11, 12, 13, 14, 15
509 #define gpr_map gpr_map32
511 static const int gpr_map32
[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
513 #define NUM_CORE_REGS (CPU_NB_REGS * 2 + 25)
515 #define IDX_IP_REG CPU_NB_REGS
516 #define IDX_FLAGS_REG (IDX_IP_REG + 1)
517 #define IDX_SEG_REGS (IDX_FLAGS_REG + 1)
518 #define IDX_FP_REGS (IDX_SEG_REGS + 6)
519 #define IDX_XMM_REGS (IDX_FP_REGS + 16)
520 #define IDX_MXCSR_REG (IDX_XMM_REGS + CPU_NB_REGS)
522 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
524 if (n
< CPU_NB_REGS
) {
525 if (TARGET_LONG_BITS
== 64 && env
->hflags
& HF_CS64_MASK
) {
526 GET_REG64(env
->regs
[gpr_map
[n
]]);
527 } else if (n
< CPU_NB_REGS32
) {
528 GET_REG32(env
->regs
[gpr_map32
[n
]]);
530 } else if (n
>= IDX_FP_REGS
&& n
< IDX_FP_REGS
+ 8) {
531 #ifdef USE_X86LDOUBLE
532 /* FIXME: byteswap float values - after fixing fpregs layout. */
533 memcpy(mem_buf
, &env
->fpregs
[n
- IDX_FP_REGS
], 10);
535 memset(mem_buf
, 0, 10);
538 } else if (n
>= IDX_XMM_REGS
&& n
< IDX_XMM_REGS
+ CPU_NB_REGS
) {
540 if (n
< CPU_NB_REGS32
||
541 (TARGET_LONG_BITS
== 64 && env
->hflags
& HF_CS64_MASK
)) {
542 stq_p(mem_buf
, env
->xmm_regs
[n
].XMM_Q(0));
543 stq_p(mem_buf
+ 8, env
->xmm_regs
[n
].XMM_Q(1));
549 if (TARGET_LONG_BITS
== 64 && env
->hflags
& HF_CS64_MASK
) {
554 case IDX_FLAGS_REG
: GET_REG32(env
->eflags
);
556 case IDX_SEG_REGS
: GET_REG32(env
->segs
[R_CS
].selector
);
557 case IDX_SEG_REGS
+ 1: GET_REG32(env
->segs
[R_SS
].selector
);
558 case IDX_SEG_REGS
+ 2: GET_REG32(env
->segs
[R_DS
].selector
);
559 case IDX_SEG_REGS
+ 3: GET_REG32(env
->segs
[R_ES
].selector
);
560 case IDX_SEG_REGS
+ 4: GET_REG32(env
->segs
[R_FS
].selector
);
561 case IDX_SEG_REGS
+ 5: GET_REG32(env
->segs
[R_GS
].selector
);
563 case IDX_FP_REGS
+ 8: GET_REG32(env
->fpuc
);
564 case IDX_FP_REGS
+ 9: GET_REG32((env
->fpus
& ~0x3800) |
565 (env
->fpstt
& 0x7) << 11);
566 case IDX_FP_REGS
+ 10: GET_REG32(0); /* ftag */
567 case IDX_FP_REGS
+ 11: GET_REG32(0); /* fiseg */
568 case IDX_FP_REGS
+ 12: GET_REG32(0); /* fioff */
569 case IDX_FP_REGS
+ 13: GET_REG32(0); /* foseg */
570 case IDX_FP_REGS
+ 14: GET_REG32(0); /* fooff */
571 case IDX_FP_REGS
+ 15: GET_REG32(0); /* fop */
573 case IDX_MXCSR_REG
: GET_REG32(env
->mxcsr
);
579 static int cpu_x86_gdb_load_seg(CPUState
*env
, int sreg
, uint8_t *mem_buf
)
581 uint16_t selector
= ldl_p(mem_buf
);
583 if (selector
!= env
->segs
[sreg
].selector
) {
584 #if defined(CONFIG_USER_ONLY)
585 cpu_x86_load_seg(env
, sreg
, selector
);
587 unsigned int limit
, flags
;
590 if (!(env
->cr
[0] & CR0_PE_MASK
) || (env
->eflags
& VM_MASK
)) {
591 base
= selector
<< 4;
595 if (!cpu_x86_get_descr_debug(env
, selector
, &base
, &limit
, &flags
))
598 cpu_x86_load_seg_cache(env
, sreg
, selector
, base
, limit
, flags
);
604 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
608 if (n
< CPU_NB_REGS
) {
609 if (TARGET_LONG_BITS
== 64 && env
->hflags
& HF_CS64_MASK
) {
610 env
->regs
[gpr_map
[n
]] = ldtul_p(mem_buf
);
611 return sizeof(target_ulong
);
612 } else if (n
< CPU_NB_REGS32
) {
614 env
->regs
[n
] &= ~0xffffffffUL
;
615 env
->regs
[n
] |= (uint32_t)ldl_p(mem_buf
);
618 } else if (n
>= IDX_FP_REGS
&& n
< IDX_FP_REGS
+ 8) {
619 #ifdef USE_X86LDOUBLE
620 /* FIXME: byteswap float values - after fixing fpregs layout. */
621 memcpy(&env
->fpregs
[n
- IDX_FP_REGS
], mem_buf
, 10);
624 } else if (n
>= IDX_XMM_REGS
&& n
< IDX_XMM_REGS
+ CPU_NB_REGS
) {
626 if (n
< CPU_NB_REGS32
||
627 (TARGET_LONG_BITS
== 64 && env
->hflags
& HF_CS64_MASK
)) {
628 env
->xmm_regs
[n
].XMM_Q(0) = ldq_p(mem_buf
);
629 env
->xmm_regs
[n
].XMM_Q(1) = ldq_p(mem_buf
+ 8);
635 if (TARGET_LONG_BITS
== 64 && env
->hflags
& HF_CS64_MASK
) {
636 env
->eip
= ldq_p(mem_buf
);
639 env
->eip
&= ~0xffffffffUL
;
640 env
->eip
|= (uint32_t)ldl_p(mem_buf
);
644 env
->eflags
= ldl_p(mem_buf
);
647 case IDX_SEG_REGS
: return cpu_x86_gdb_load_seg(env
, R_CS
, mem_buf
);
648 case IDX_SEG_REGS
+ 1: return cpu_x86_gdb_load_seg(env
, R_SS
, mem_buf
);
649 case IDX_SEG_REGS
+ 2: return cpu_x86_gdb_load_seg(env
, R_DS
, mem_buf
);
650 case IDX_SEG_REGS
+ 3: return cpu_x86_gdb_load_seg(env
, R_ES
, mem_buf
);
651 case IDX_SEG_REGS
+ 4: return cpu_x86_gdb_load_seg(env
, R_FS
, mem_buf
);
652 case IDX_SEG_REGS
+ 5: return cpu_x86_gdb_load_seg(env
, R_GS
, mem_buf
);
654 case IDX_FP_REGS
+ 8:
655 env
->fpuc
= ldl_p(mem_buf
);
657 case IDX_FP_REGS
+ 9:
658 tmp
= ldl_p(mem_buf
);
659 env
->fpstt
= (tmp
>> 11) & 7;
660 env
->fpus
= tmp
& ~0x3800;
662 case IDX_FP_REGS
+ 10: /* ftag */ return 4;
663 case IDX_FP_REGS
+ 11: /* fiseg */ return 4;
664 case IDX_FP_REGS
+ 12: /* fioff */ return 4;
665 case IDX_FP_REGS
+ 13: /* foseg */ return 4;
666 case IDX_FP_REGS
+ 14: /* fooff */ return 4;
667 case IDX_FP_REGS
+ 15: /* fop */ return 4;
670 env
->mxcsr
= ldl_p(mem_buf
);
674 /* Unrecognised register. */
678 #elif defined (TARGET_PPC)
680 /* Old gdb always expects FP registers. Newer (xml-aware) gdb only
681 expects whatever the target description contains. Due to a
682 historical mishap the FP registers appear in between core integer
683 regs and PC, MSR, CR, and so forth. We hack round this by giving the
684 FP regs zero size when talking to a newer gdb. */
685 #define NUM_CORE_REGS 71
686 #if defined (TARGET_PPC64)
687 #define GDB_CORE_XML "power64-core.xml"
689 #define GDB_CORE_XML "power-core.xml"
692 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
696 GET_REGL(env
->gpr
[n
]);
701 stfq_p(mem_buf
, env
->fpr
[n
-32]);
705 case 64: GET_REGL(env
->nip
);
706 case 65: GET_REGL(env
->msr
);
711 for (i
= 0; i
< 8; i
++)
712 cr
|= env
->crf
[i
] << (32 - ((i
+ 1) * 4));
715 case 67: GET_REGL(env
->lr
);
716 case 68: GET_REGL(env
->ctr
);
717 case 69: GET_REGL(env
->xer
);
722 GET_REG32(0); /* fpscr */
729 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
733 env
->gpr
[n
] = ldtul_p(mem_buf
);
734 return sizeof(target_ulong
);
739 env
->fpr
[n
-32] = ldfq_p(mem_buf
);
744 env
->nip
= ldtul_p(mem_buf
);
745 return sizeof(target_ulong
);
747 ppc_store_msr(env
, ldtul_p(mem_buf
));
748 return sizeof(target_ulong
);
751 uint32_t cr
= ldl_p(mem_buf
);
753 for (i
= 0; i
< 8; i
++)
754 env
->crf
[i
] = (cr
>> (32 - ((i
+ 1) * 4))) & 0xF;
758 env
->lr
= ldtul_p(mem_buf
);
759 return sizeof(target_ulong
);
761 env
->ctr
= ldtul_p(mem_buf
);
762 return sizeof(target_ulong
);
764 env
->xer
= ldtul_p(mem_buf
);
765 return sizeof(target_ulong
);
776 #elif defined (TARGET_SPARC)
778 #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
779 #define NUM_CORE_REGS 86
781 #define NUM_CORE_REGS 72
785 #define GET_REGA(val) GET_REG32(val)
787 #define GET_REGA(val) GET_REGL(val)
790 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
794 GET_REGA(env
->gregs
[n
]);
797 /* register window */
798 GET_REGA(env
->regwptr
[n
- 8]);
800 #if defined(TARGET_ABI32) || !defined(TARGET_SPARC64)
803 GET_REG32(*((uint32_t *)&env
->fpr
[n
- 32]));
805 /* Y, PSR, WIM, TBR, PC, NPC, FPSR, CPSR */
807 case 64: GET_REGA(env
->y
);
808 case 65: GET_REGA(GET_PSR(env
));
809 case 66: GET_REGA(env
->wim
);
810 case 67: GET_REGA(env
->tbr
);
811 case 68: GET_REGA(env
->pc
);
812 case 69: GET_REGA(env
->npc
);
813 case 70: GET_REGA(env
->fsr
);
814 case 71: GET_REGA(0); /* csr */
815 default: GET_REGA(0);
820 GET_REG32(*((uint32_t *)&env
->fpr
[n
- 32]));
823 /* f32-f62 (double width, even numbers only) */
826 val
= (uint64_t)*((uint32_t *)&env
->fpr
[(n
- 64) * 2 + 32]) << 32;
827 val
|= *((uint32_t *)&env
->fpr
[(n
- 64) * 2 + 33]);
831 case 80: GET_REGL(env
->pc
);
832 case 81: GET_REGL(env
->npc
);
833 case 82: GET_REGL(((uint64_t)GET_CCR(env
) << 32) |
834 ((env
->asi
& 0xff) << 24) |
835 ((env
->pstate
& 0xfff) << 8) |
837 case 83: GET_REGL(env
->fsr
);
838 case 84: GET_REGL(env
->fprs
);
839 case 85: GET_REGL(env
->y
);
845 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
847 #if defined(TARGET_ABI32)
850 tmp
= ldl_p(mem_buf
);
854 tmp
= ldtul_p(mem_buf
);
861 /* register window */
862 env
->regwptr
[n
- 8] = tmp
;
864 #if defined(TARGET_ABI32) || !defined(TARGET_SPARC64)
867 *((uint32_t *)&env
->fpr
[n
- 32]) = tmp
;
869 /* Y, PSR, WIM, TBR, PC, NPC, FPSR, CPSR */
871 case 64: env
->y
= tmp
; break;
872 case 65: PUT_PSR(env
, tmp
); break;
873 case 66: env
->wim
= tmp
; break;
874 case 67: env
->tbr
= tmp
; break;
875 case 68: env
->pc
= tmp
; break;
876 case 69: env
->npc
= tmp
; break;
877 case 70: env
->fsr
= tmp
; break;
885 env
->fpr
[n
] = ldfl_p(mem_buf
);
888 /* f32-f62 (double width, even numbers only) */
889 *((uint32_t *)&env
->fpr
[(n
- 64) * 2 + 32]) = tmp
>> 32;
890 *((uint32_t *)&env
->fpr
[(n
- 64) * 2 + 33]) = tmp
;
893 case 80: env
->pc
= tmp
; break;
894 case 81: env
->npc
= tmp
; break;
896 PUT_CCR(env
, tmp
>> 32);
897 env
->asi
= (tmp
>> 24) & 0xff;
898 env
->pstate
= (tmp
>> 8) & 0xfff;
899 PUT_CWP64(env
, tmp
& 0xff);
901 case 83: env
->fsr
= tmp
; break;
902 case 84: env
->fprs
= tmp
; break;
903 case 85: env
->y
= tmp
; break;
910 #elif defined (TARGET_ARM)
912 /* Old gdb always expect FPA registers. Newer (xml-aware) gdb only expect
913 whatever the target description contains. Due to a historical mishap
914 the FPA registers appear in between core integer regs and the CPSR.
915 We hack round this by giving the FPA regs zero size when talking to a
917 #define NUM_CORE_REGS 26
918 #define GDB_CORE_XML "arm-core.xml"
920 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
923 /* Core integer register. */
924 GET_REG32(env
->regs
[n
]);
930 memset(mem_buf
, 0, 12);
935 /* FPA status register. */
941 GET_REG32(cpsr_read(env
));
943 /* Unknown register. */
947 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
951 tmp
= ldl_p(mem_buf
);
953 /* Mask out low bit of PC to workaround gdb bugs. This will probably
954 cause problems if we ever implement the Jazelle DBX extensions. */
959 /* Core integer register. */
963 if (n
< 24) { /* 16-23 */
964 /* FPA registers (ignored). */
971 /* FPA status register (ignored). */
977 cpsr_write (env
, tmp
, 0xffffffff);
980 /* Unknown register. */
984 #elif defined (TARGET_M68K)
986 #define NUM_CORE_REGS 18
988 #define GDB_CORE_XML "cf-core.xml"
990 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
994 GET_REG32(env
->dregs
[n
]);
997 GET_REG32(env
->aregs
[n
- 8]);
1000 case 16: GET_REG32(env
->sr
);
1001 case 17: GET_REG32(env
->pc
);
1004 /* FP registers not included here because they vary between
1005 ColdFire and m68k. Use XML bits for these. */
1009 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1013 tmp
= ldl_p(mem_buf
);
1017 env
->dregs
[n
] = tmp
;
1020 env
->aregs
[n
- 8] = tmp
;
1023 case 16: env
->sr
= tmp
; break;
1024 case 17: env
->pc
= tmp
; break;
1030 #elif defined (TARGET_MIPS)
1032 #define NUM_CORE_REGS 73
1034 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1037 GET_REGL(env
->active_tc
.gpr
[n
]);
1039 if (env
->CP0_Config1
& (1 << CP0C1_FP
)) {
1040 if (n
>= 38 && n
< 70) {
1041 if (env
->CP0_Status
& (1 << CP0St_FR
))
1042 GET_REGL(env
->active_fpu
.fpr
[n
- 38].d
);
1044 GET_REGL(env
->active_fpu
.fpr
[n
- 38].w
[FP_ENDIAN_IDX
]);
1047 case 70: GET_REGL((int32_t)env
->active_fpu
.fcr31
);
1048 case 71: GET_REGL((int32_t)env
->active_fpu
.fcr0
);
1052 case 32: GET_REGL((int32_t)env
->CP0_Status
);
1053 case 33: GET_REGL(env
->active_tc
.LO
[0]);
1054 case 34: GET_REGL(env
->active_tc
.HI
[0]);
1055 case 35: GET_REGL(env
->CP0_BadVAddr
);
1056 case 36: GET_REGL((int32_t)env
->CP0_Cause
);
1057 case 37: GET_REGL(env
->active_tc
.PC
);
1058 case 72: GET_REGL(0); /* fp */
1059 case 89: GET_REGL((int32_t)env
->CP0_PRid
);
1061 if (n
>= 73 && n
<= 88) {
1062 /* 16 embedded regs. */
1069 /* convert MIPS rounding mode in FCR31 to IEEE library */
1070 static unsigned int ieee_rm
[] =
1072 float_round_nearest_even
,
1073 float_round_to_zero
,
1077 #define RESTORE_ROUNDING_MODE \
1078 set_float_rounding_mode(ieee_rm[env->active_fpu.fcr31 & 3], &env->active_fpu.fp_status)
1080 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1084 tmp
= ldtul_p(mem_buf
);
1087 env
->active_tc
.gpr
[n
] = tmp
;
1088 return sizeof(target_ulong
);
1090 if (env
->CP0_Config1
& (1 << CP0C1_FP
)
1091 && n
>= 38 && n
< 73) {
1093 if (env
->CP0_Status
& (1 << CP0St_FR
))
1094 env
->active_fpu
.fpr
[n
- 38].d
= tmp
;
1096 env
->active_fpu
.fpr
[n
- 38].w
[FP_ENDIAN_IDX
] = tmp
;
1100 env
->active_fpu
.fcr31
= tmp
& 0xFF83FFFF;
1101 /* set rounding mode */
1102 RESTORE_ROUNDING_MODE
;
1103 #ifndef CONFIG_SOFTFLOAT
1104 /* no floating point exception for native float */
1105 SET_FP_ENABLE(env
->active_fpu
.fcr31
, 0);
1108 case 71: env
->active_fpu
.fcr0
= tmp
; break;
1110 return sizeof(target_ulong
);
1113 case 32: env
->CP0_Status
= tmp
; break;
1114 case 33: env
->active_tc
.LO
[0] = tmp
; break;
1115 case 34: env
->active_tc
.HI
[0] = tmp
; break;
1116 case 35: env
->CP0_BadVAddr
= tmp
; break;
1117 case 36: env
->CP0_Cause
= tmp
; break;
1118 case 37: env
->active_tc
.PC
= tmp
; break;
1119 case 72: /* fp, ignored */ break;
1123 /* Other registers are readonly. Ignore writes. */
1127 return sizeof(target_ulong
);
1129 #elif defined (TARGET_SH4)
1131 /* Hint: Use "set architecture sh4" in GDB to see fpu registers */
1132 /* FIXME: We should use XML for this. */
1134 #define NUM_CORE_REGS 59
1136 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1139 if ((env
->sr
& (SR_MD
| SR_RB
)) == (SR_MD
| SR_RB
)) {
1140 GET_REGL(env
->gregs
[n
+ 16]);
1142 GET_REGL(env
->gregs
[n
]);
1144 } else if (n
< 16) {
1145 GET_REGL(env
->gregs
[n
- 8]);
1146 } else if (n
>= 25 && n
< 41) {
1147 GET_REGL(env
->fregs
[(n
- 25) + ((env
->fpscr
& FPSCR_FR
) ? 16 : 0)]);
1148 } else if (n
>= 43 && n
< 51) {
1149 GET_REGL(env
->gregs
[n
- 43]);
1150 } else if (n
>= 51 && n
< 59) {
1151 GET_REGL(env
->gregs
[n
- (51 - 16)]);
1154 case 16: GET_REGL(env
->pc
);
1155 case 17: GET_REGL(env
->pr
);
1156 case 18: GET_REGL(env
->gbr
);
1157 case 19: GET_REGL(env
->vbr
);
1158 case 20: GET_REGL(env
->mach
);
1159 case 21: GET_REGL(env
->macl
);
1160 case 22: GET_REGL(env
->sr
);
1161 case 23: GET_REGL(env
->fpul
);
1162 case 24: GET_REGL(env
->fpscr
);
1163 case 41: GET_REGL(env
->ssr
);
1164 case 42: GET_REGL(env
->spc
);
1170 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1174 tmp
= ldl_p(mem_buf
);
1177 if ((env
->sr
& (SR_MD
| SR_RB
)) == (SR_MD
| SR_RB
)) {
1178 env
->gregs
[n
+ 16] = tmp
;
1180 env
->gregs
[n
] = tmp
;
1183 } else if (n
< 16) {
1184 env
->gregs
[n
- 8] = tmp
;
1186 } else if (n
>= 25 && n
< 41) {
1187 env
->fregs
[(n
- 25) + ((env
->fpscr
& FPSCR_FR
) ? 16 : 0)] = tmp
;
1188 } else if (n
>= 43 && n
< 51) {
1189 env
->gregs
[n
- 43] = tmp
;
1191 } else if (n
>= 51 && n
< 59) {
1192 env
->gregs
[n
- (51 - 16)] = tmp
;
1196 case 16: env
->pc
= tmp
;
1197 case 17: env
->pr
= tmp
;
1198 case 18: env
->gbr
= tmp
;
1199 case 19: env
->vbr
= tmp
;
1200 case 20: env
->mach
= tmp
;
1201 case 21: env
->macl
= tmp
;
1202 case 22: env
->sr
= tmp
;
1203 case 23: env
->fpul
= tmp
;
1204 case 24: env
->fpscr
= tmp
;
1205 case 41: env
->ssr
= tmp
;
1206 case 42: env
->spc
= tmp
;
1212 #elif defined (TARGET_MICROBLAZE)
1214 #define NUM_CORE_REGS (32 + 5)
1216 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1219 GET_REG32(env
->regs
[n
]);
1221 GET_REG32(env
->sregs
[n
- 32]);
1226 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1230 if (n
> NUM_CORE_REGS
)
1233 tmp
= ldl_p(mem_buf
);
1238 env
->sregs
[n
- 32] = tmp
;
1242 #elif defined (TARGET_CRIS)
1244 #define NUM_CORE_REGS 49
1246 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1250 srs
= env
->pregs
[PR_SRS
];
1252 GET_REG32(env
->regs
[n
]);
1255 if (n
>= 21 && n
< 32) {
1256 GET_REG32(env
->pregs
[n
- 16]);
1258 if (n
>= 33 && n
< 49) {
1259 GET_REG32(env
->sregs
[srs
][n
- 33]);
1262 case 16: GET_REG8(env
->pregs
[0]);
1263 case 17: GET_REG8(env
->pregs
[1]);
1264 case 18: GET_REG32(env
->pregs
[2]);
1265 case 19: GET_REG8(srs
);
1266 case 20: GET_REG16(env
->pregs
[4]);
1267 case 32: GET_REG32(env
->pc
);
1273 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1280 tmp
= ldl_p(mem_buf
);
1286 if (n
>= 21 && n
< 32) {
1287 env
->pregs
[n
- 16] = tmp
;
1290 /* FIXME: Should support function regs be writable? */
1294 case 18: env
->pregs
[PR_PID
] = tmp
; break;
1297 case 32: env
->pc
= tmp
; break;
1302 #elif defined (TARGET_ALPHA)
1304 #define NUM_CORE_REGS 65
1306 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1309 GET_REGL(env
->ir
[n
]);
1317 val
= *((uint64_t *)&env
->fir
[n
-32]);
1321 GET_REGL(env
->fpcr
);
1333 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1336 tmp
= ldtul_p(mem_buf
);
1342 if (n
> 31 && n
< 63) {
1343 env
->fir
[n
- 32] = ldfl_p(mem_buf
);
1354 #define NUM_CORE_REGS 0
1356 static int cpu_gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1361 static int cpu_gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int n
)
1368 static int num_g_regs
= NUM_CORE_REGS
;
1371 /* Encode data using the encoding for 'x' packets. */
1372 static int memtox(char *buf
, const char *mem
, int len
)
1380 case '#': case '$': case '*': case '}':
1392 static const char *get_feature_xml(const char *p
, const char **newp
)
1394 extern const char *const xml_builtin
[][2];
1398 static char target_xml
[1024];
1401 while (p
[len
] && p
[len
] != ':')
1406 if (strncmp(p
, "target.xml", len
) == 0) {
1407 /* Generate the XML description for this CPU. */
1408 if (!target_xml
[0]) {
1409 GDBRegisterState
*r
;
1411 snprintf(target_xml
, sizeof(target_xml
),
1412 "<?xml version=\"1.0\"?>"
1413 "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">"
1415 "<xi:include href=\"%s\"/>",
1418 for (r
= first_cpu
->gdb_regs
; r
; r
= r
->next
) {
1419 pstrcat(target_xml
, sizeof(target_xml
), "<xi:include href=\"");
1420 pstrcat(target_xml
, sizeof(target_xml
), r
->xml
);
1421 pstrcat(target_xml
, sizeof(target_xml
), "\"/>");
1423 pstrcat(target_xml
, sizeof(target_xml
), "</target>");
1427 for (i
= 0; ; i
++) {
1428 name
= xml_builtin
[i
][0];
1429 if (!name
|| (strncmp(name
, p
, len
) == 0 && strlen(name
) == len
))
1432 return name
? xml_builtin
[i
][1] : NULL
;
1436 static int gdb_read_register(CPUState
*env
, uint8_t *mem_buf
, int reg
)
1438 GDBRegisterState
*r
;
1440 if (reg
< NUM_CORE_REGS
)
1441 return cpu_gdb_read_register(env
, mem_buf
, reg
);
1443 for (r
= env
->gdb_regs
; r
; r
= r
->next
) {
1444 if (r
->base_reg
<= reg
&& reg
< r
->base_reg
+ r
->num_regs
) {
1445 return r
->get_reg(env
, mem_buf
, reg
- r
->base_reg
);
1451 static int gdb_write_register(CPUState
*env
, uint8_t *mem_buf
, int reg
)
1453 GDBRegisterState
*r
;
1455 if (reg
< NUM_CORE_REGS
)
1456 return cpu_gdb_write_register(env
, mem_buf
, reg
);
1458 for (r
= env
->gdb_regs
; r
; r
= r
->next
) {
1459 if (r
->base_reg
<= reg
&& reg
< r
->base_reg
+ r
->num_regs
) {
1460 return r
->set_reg(env
, mem_buf
, reg
- r
->base_reg
);
1466 /* Register a supplemental set of CPU registers. If g_pos is nonzero it
1467 specifies the first register number and these registers are included in
1468 a standard "g" packet. Direction is relative to gdb, i.e. get_reg is
1469 gdb reading a CPU register, and set_reg is gdb modifying a CPU register.
1472 void gdb_register_coprocessor(CPUState
* env
,
1473 gdb_reg_cb get_reg
, gdb_reg_cb set_reg
,
1474 int num_regs
, const char *xml
, int g_pos
)
1476 GDBRegisterState
*s
;
1477 GDBRegisterState
**p
;
1478 static int last_reg
= NUM_CORE_REGS
;
1480 s
= (GDBRegisterState
*)qemu_mallocz(sizeof(GDBRegisterState
));
1481 s
->base_reg
= last_reg
;
1482 s
->num_regs
= num_regs
;
1483 s
->get_reg
= get_reg
;
1484 s
->set_reg
= set_reg
;
1488 /* Check for duplicates. */
1489 if (strcmp((*p
)->xml
, xml
) == 0)
1493 /* Add to end of list. */
1494 last_reg
+= num_regs
;
1497 if (g_pos
!= s
->base_reg
) {
1498 fprintf(stderr
, "Error: Bad gdb register numbering for '%s'\n"
1499 "Expected %d got %d\n", xml
, g_pos
, s
->base_reg
);
1501 num_g_regs
= last_reg
;
1506 #ifndef CONFIG_USER_ONLY
1507 static const int xlat_gdb_type
[] = {
1508 [GDB_WATCHPOINT_WRITE
] = BP_GDB
| BP_MEM_WRITE
,
1509 [GDB_WATCHPOINT_READ
] = BP_GDB
| BP_MEM_READ
,
1510 [GDB_WATCHPOINT_ACCESS
] = BP_GDB
| BP_MEM_ACCESS
,
1514 static int gdb_breakpoint_insert(target_ulong addr
, target_ulong len
, int type
)
1520 return kvm_insert_breakpoint(gdbserver_state
->c_cpu
, addr
, len
, type
);
1523 case GDB_BREAKPOINT_SW
:
1524 case GDB_BREAKPOINT_HW
:
1525 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1526 err
= cpu_breakpoint_insert(env
, addr
, BP_GDB
, NULL
);
1531 #ifndef CONFIG_USER_ONLY
1532 case GDB_WATCHPOINT_WRITE
:
1533 case GDB_WATCHPOINT_READ
:
1534 case GDB_WATCHPOINT_ACCESS
:
1535 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1536 err
= cpu_watchpoint_insert(env
, addr
, len
, xlat_gdb_type
[type
],
1548 static int gdb_breakpoint_remove(target_ulong addr
, target_ulong len
, int type
)
1554 return kvm_remove_breakpoint(gdbserver_state
->c_cpu
, addr
, len
, type
);
1557 case GDB_BREAKPOINT_SW
:
1558 case GDB_BREAKPOINT_HW
:
1559 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1560 err
= cpu_breakpoint_remove(env
, addr
, BP_GDB
);
1565 #ifndef CONFIG_USER_ONLY
1566 case GDB_WATCHPOINT_WRITE
:
1567 case GDB_WATCHPOINT_READ
:
1568 case GDB_WATCHPOINT_ACCESS
:
1569 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1570 err
= cpu_watchpoint_remove(env
, addr
, len
, xlat_gdb_type
[type
]);
1581 static void gdb_breakpoint_remove_all(void)
1585 if (kvm_enabled()) {
1586 kvm_remove_all_breakpoints(gdbserver_state
->c_cpu
);
1590 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1591 cpu_breakpoint_remove_all(env
, BP_GDB
);
1592 #ifndef CONFIG_USER_ONLY
1593 cpu_watchpoint_remove_all(env
, BP_GDB
);
1598 static void gdb_set_cpu_pc(GDBState
*s
, target_ulong pc
)
1600 #if defined(TARGET_I386)
1601 cpu_synchronize_state(s
->c_cpu
);
1603 #elif defined (TARGET_PPC)
1605 #elif defined (TARGET_SPARC)
1607 s
->c_cpu
->npc
= pc
+ 4;
1608 #elif defined (TARGET_ARM)
1609 s
->c_cpu
->regs
[15] = pc
;
1610 #elif defined (TARGET_SH4)
1612 #elif defined (TARGET_MIPS)
1613 s
->c_cpu
->active_tc
.PC
= pc
;
1614 #elif defined (TARGET_MICROBLAZE)
1615 s
->c_cpu
->sregs
[SR_PC
] = pc
;
1616 #elif defined (TARGET_CRIS)
1618 #elif defined (TARGET_ALPHA)
1623 static inline int gdb_id(CPUState
*env
)
1625 #if defined(CONFIG_USER_ONLY) && defined(CONFIG_USE_NPTL)
1626 return env
->host_tid
;
1628 return env
->cpu_index
+ 1;
1632 static CPUState
*find_cpu(uint32_t thread_id
)
1636 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1637 if (gdb_id(env
) == thread_id
) {
1645 static int gdb_handle_packet(GDBState
*s
, const char *line_buf
)
1650 int ch
, reg_size
, type
, res
;
1651 char buf
[MAX_PACKET_LENGTH
];
1652 uint8_t mem_buf
[MAX_PACKET_LENGTH
];
1654 target_ulong addr
, len
;
1657 printf("command='%s'\n", line_buf
);
1663 /* TODO: Make this return the correct value for user-mode. */
1664 snprintf(buf
, sizeof(buf
), "T%02xthread:%02x;", GDB_SIGNAL_TRAP
,
1667 /* Remove all the breakpoints when this query is issued,
1668 * because gdb is doing and initial connect and the state
1669 * should be cleaned up.
1671 gdb_breakpoint_remove_all();
1675 addr
= strtoull(p
, (char **)&p
, 16);
1676 gdb_set_cpu_pc(s
, addr
);
1682 s
->signal
= gdb_signal_to_target (strtoul(p
, (char **)&p
, 16));
1683 if (s
->signal
== -1)
1688 if (strncmp(p
, "Cont", 4) == 0) {
1689 int res_signal
, res_thread
;
1693 put_packet(s
, "vCont;c;C;s;S");
1708 if (action
== 'C' || action
== 'S') {
1709 signal
= strtoul(p
, (char **)&p
, 16);
1710 } else if (action
!= 'c' && action
!= 's') {
1716 thread
= strtoull(p
+1, (char **)&p
, 16);
1718 action
= tolower(action
);
1719 if (res
== 0 || (res
== 'c' && action
== 's')) {
1721 res_signal
= signal
;
1722 res_thread
= thread
;
1726 if (res_thread
!= -1 && res_thread
!= 0) {
1727 env
= find_cpu(res_thread
);
1729 put_packet(s
, "E22");
1735 cpu_single_step(s
->c_cpu
, sstep_flags
);
1737 s
->signal
= res_signal
;
1743 goto unknown_command
;
1746 /* Kill the target */
1747 fprintf(stderr
, "\nQEMU: Terminated via GDBstub\n");
1751 gdb_breakpoint_remove_all();
1753 put_packet(s
, "OK");
1757 addr
= strtoull(p
, (char **)&p
, 16);
1758 gdb_set_cpu_pc(s
, addr
);
1760 cpu_single_step(s
->c_cpu
, sstep_flags
);
1768 ret
= strtoull(p
, (char **)&p
, 16);
1771 err
= strtoull(p
, (char **)&p
, 16);
1778 if (gdb_current_syscall_cb
)
1779 gdb_current_syscall_cb(s
->c_cpu
, ret
, err
);
1781 put_packet(s
, "T02");
1788 cpu_synchronize_state(s
->g_cpu
);
1790 for (addr
= 0; addr
< num_g_regs
; addr
++) {
1791 reg_size
= gdb_read_register(s
->g_cpu
, mem_buf
+ len
, addr
);
1794 memtohex(buf
, mem_buf
, len
);
1798 cpu_synchronize_state(s
->g_cpu
);
1799 registers
= mem_buf
;
1800 len
= strlen(p
) / 2;
1801 hextomem((uint8_t *)registers
, p
, len
);
1802 for (addr
= 0; addr
< num_g_regs
&& len
> 0; addr
++) {
1803 reg_size
= gdb_write_register(s
->g_cpu
, registers
, addr
);
1805 registers
+= reg_size
;
1807 put_packet(s
, "OK");
1810 addr
= strtoull(p
, (char **)&p
, 16);
1813 len
= strtoull(p
, NULL
, 16);
1814 if (cpu_memory_rw_debug(s
->g_cpu
, addr
, mem_buf
, len
, 0) != 0) {
1815 put_packet (s
, "E14");
1817 memtohex(buf
, mem_buf
, len
);
1822 addr
= strtoull(p
, (char **)&p
, 16);
1825 len
= strtoull(p
, (char **)&p
, 16);
1828 hextomem(mem_buf
, p
, len
);
1829 if (cpu_memory_rw_debug(s
->g_cpu
, addr
, mem_buf
, len
, 1) != 0)
1830 put_packet(s
, "E14");
1832 put_packet(s
, "OK");
1835 /* Older gdb are really dumb, and don't use 'g' if 'p' is avaialable.
1836 This works, but can be very slow. Anything new enough to
1837 understand XML also knows how to use this properly. */
1839 goto unknown_command
;
1840 addr
= strtoull(p
, (char **)&p
, 16);
1841 reg_size
= gdb_read_register(s
->g_cpu
, mem_buf
, addr
);
1843 memtohex(buf
, mem_buf
, reg_size
);
1846 put_packet(s
, "E14");
1851 goto unknown_command
;
1852 addr
= strtoull(p
, (char **)&p
, 16);
1855 reg_size
= strlen(p
) / 2;
1856 hextomem(mem_buf
, p
, reg_size
);
1857 gdb_write_register(s
->g_cpu
, mem_buf
, addr
);
1858 put_packet(s
, "OK");
1862 type
= strtoul(p
, (char **)&p
, 16);
1865 addr
= strtoull(p
, (char **)&p
, 16);
1868 len
= strtoull(p
, (char **)&p
, 16);
1870 res
= gdb_breakpoint_insert(addr
, len
, type
);
1872 res
= gdb_breakpoint_remove(addr
, len
, type
);
1874 put_packet(s
, "OK");
1875 else if (res
== -ENOSYS
)
1878 put_packet(s
, "E22");
1882 thread
= strtoull(p
, (char **)&p
, 16);
1883 if (thread
== -1 || thread
== 0) {
1884 put_packet(s
, "OK");
1887 env
= find_cpu(thread
);
1889 put_packet(s
, "E22");
1895 put_packet(s
, "OK");
1899 put_packet(s
, "OK");
1902 put_packet(s
, "E22");
1907 thread
= strtoull(p
, (char **)&p
, 16);
1908 env
= find_cpu(thread
);
1911 put_packet(s
, "OK");
1913 put_packet(s
, "E22");
1918 /* parse any 'q' packets here */
1919 if (!strcmp(p
,"qemu.sstepbits")) {
1920 /* Query Breakpoint bit definitions */
1921 snprintf(buf
, sizeof(buf
), "ENABLE=%x,NOIRQ=%x,NOTIMER=%x",
1927 } else if (strncmp(p
,"qemu.sstep",10) == 0) {
1928 /* Display or change the sstep_flags */
1931 /* Display current setting */
1932 snprintf(buf
, sizeof(buf
), "0x%x", sstep_flags
);
1937 type
= strtoul(p
, (char **)&p
, 16);
1939 put_packet(s
, "OK");
1941 } else if (strcmp(p
,"C") == 0) {
1942 /* "Current thread" remains vague in the spec, so always return
1943 * the first CPU (gdb returns the first thread). */
1944 put_packet(s
, "QC1");
1946 } else if (strcmp(p
,"fThreadInfo") == 0) {
1947 s
->query_cpu
= first_cpu
;
1948 goto report_cpuinfo
;
1949 } else if (strcmp(p
,"sThreadInfo") == 0) {
1952 snprintf(buf
, sizeof(buf
), "m%x", gdb_id(s
->query_cpu
));
1954 s
->query_cpu
= s
->query_cpu
->next_cpu
;
1958 } else if (strncmp(p
,"ThreadExtraInfo,", 16) == 0) {
1959 thread
= strtoull(p
+16, (char **)&p
, 16);
1960 env
= find_cpu(thread
);
1962 cpu_synchronize_state(env
);
1963 len
= snprintf((char *)mem_buf
, sizeof(mem_buf
),
1964 "CPU#%d [%s]", env
->cpu_index
,
1965 env
->halted
? "halted " : "running");
1966 memtohex(buf
, mem_buf
, len
);
1971 #ifdef CONFIG_USER_ONLY
1972 else if (strncmp(p
, "Offsets", 7) == 0) {
1973 TaskState
*ts
= s
->c_cpu
->opaque
;
1975 snprintf(buf
, sizeof(buf
),
1976 "Text=" TARGET_ABI_FMT_lx
";Data=" TARGET_ABI_FMT_lx
1977 ";Bss=" TARGET_ABI_FMT_lx
,
1978 ts
->info
->code_offset
,
1979 ts
->info
->data_offset
,
1980 ts
->info
->data_offset
);
1984 #else /* !CONFIG_USER_ONLY */
1985 else if (strncmp(p
, "Rcmd,", 5) == 0) {
1986 int len
= strlen(p
+ 5);
1988 if ((len
% 2) != 0) {
1989 put_packet(s
, "E01");
1992 hextomem(mem_buf
, p
+ 5, len
);
1995 qemu_chr_read(s
->mon_chr
, mem_buf
, len
);
1996 put_packet(s
, "OK");
1999 #endif /* !CONFIG_USER_ONLY */
2000 if (strncmp(p
, "Supported", 9) == 0) {
2001 snprintf(buf
, sizeof(buf
), "PacketSize=%x", MAX_PACKET_LENGTH
);
2003 pstrcat(buf
, sizeof(buf
), ";qXfer:features:read+");
2009 if (strncmp(p
, "Xfer:features:read:", 19) == 0) {
2011 target_ulong total_len
;
2015 xml
= get_feature_xml(p
, &p
);
2017 snprintf(buf
, sizeof(buf
), "E00");
2024 addr
= strtoul(p
, (char **)&p
, 16);
2027 len
= strtoul(p
, (char **)&p
, 16);
2029 total_len
= strlen(xml
);
2030 if (addr
> total_len
) {
2031 snprintf(buf
, sizeof(buf
), "E00");
2035 if (len
> (MAX_PACKET_LENGTH
- 5) / 2)
2036 len
= (MAX_PACKET_LENGTH
- 5) / 2;
2037 if (len
< total_len
- addr
) {
2039 len
= memtox(buf
+ 1, xml
+ addr
, len
);
2042 len
= memtox(buf
+ 1, xml
+ addr
, total_len
- addr
);
2044 put_packet_binary(s
, buf
, len
+ 1);
2048 /* Unrecognised 'q' command. */
2049 goto unknown_command
;
2053 /* put empty packet */
2061 void gdb_set_stop_cpu(CPUState
*env
)
2063 gdbserver_state
->c_cpu
= env
;
2064 gdbserver_state
->g_cpu
= env
;
2067 #ifndef CONFIG_USER_ONLY
2068 static void gdb_vm_state_change(void *opaque
, int running
, int reason
)
2070 GDBState
*s
= gdbserver_state
;
2071 CPUState
*env
= s
->c_cpu
;
2076 if (running
|| (reason
!= EXCP_DEBUG
&& reason
!= EXCP_INTERRUPT
) ||
2077 s
->state
== RS_INACTIVE
|| s
->state
== RS_SYSCALL
)
2080 /* disable single step if it was enable */
2081 cpu_single_step(env
, 0);
2083 if (reason
== EXCP_DEBUG
) {
2084 if (env
->watchpoint_hit
) {
2085 switch (env
->watchpoint_hit
->flags
& BP_MEM_ACCESS
) {
2096 snprintf(buf
, sizeof(buf
),
2097 "T%02xthread:%02x;%swatch:" TARGET_FMT_lx
";",
2098 GDB_SIGNAL_TRAP
, gdb_id(env
), type
,
2099 env
->watchpoint_hit
->vaddr
);
2101 env
->watchpoint_hit
= NULL
;
2105 ret
= GDB_SIGNAL_TRAP
;
2107 ret
= GDB_SIGNAL_INT
;
2109 snprintf(buf
, sizeof(buf
), "T%02xthread:%02x;", ret
, gdb_id(env
));
2114 /* Send a gdb syscall request.
2115 This accepts limited printf-style format specifiers, specifically:
2116 %x - target_ulong argument printed in hex.
2117 %lx - 64-bit argument printed in hex.
2118 %s - string pointer (target_ulong) and length (int) pair. */
2119 void gdb_do_syscall(gdb_syscall_complete_cb cb
, const char *fmt
, ...)
2128 s
= gdbserver_state
;
2131 gdb_current_syscall_cb
= cb
;
2132 s
->state
= RS_SYSCALL
;
2133 #ifndef CONFIG_USER_ONLY
2134 vm_stop(EXCP_DEBUG
);
2145 addr
= va_arg(va
, target_ulong
);
2146 p
+= snprintf(p
, &buf
[sizeof(buf
)] - p
, TARGET_FMT_lx
, addr
);
2149 if (*(fmt
++) != 'x')
2151 i64
= va_arg(va
, uint64_t);
2152 p
+= snprintf(p
, &buf
[sizeof(buf
)] - p
, "%" PRIx64
, i64
);
2155 addr
= va_arg(va
, target_ulong
);
2156 p
+= snprintf(p
, &buf
[sizeof(buf
)] - p
, TARGET_FMT_lx
"/%x",
2157 addr
, va_arg(va
, int));
2161 fprintf(stderr
, "gdbstub: Bad syscall format string '%s'\n",
2172 #ifdef CONFIG_USER_ONLY
2173 gdb_handlesig(s
->c_cpu
, 0);
2179 static void gdb_read_byte(GDBState
*s
, int ch
)
2184 #ifndef CONFIG_USER_ONLY
2185 if (s
->last_packet_len
) {
2186 /* Waiting for a response to the last packet. If we see the start
2187 of a new command then abandon the previous response. */
2190 printf("Got NACK, retransmitting\n");
2192 put_buffer(s
, (uint8_t *)s
->last_packet
, s
->last_packet_len
);
2196 printf("Got ACK\n");
2198 printf("Got '%c' when expecting ACK/NACK\n", ch
);
2200 if (ch
== '+' || ch
== '$')
2201 s
->last_packet_len
= 0;
2206 /* when the CPU is running, we cannot do anything except stop
2207 it when receiving a char */
2208 vm_stop(EXCP_INTERRUPT
);
2215 s
->line_buf_index
= 0;
2216 s
->state
= RS_GETLINE
;
2221 s
->state
= RS_CHKSUM1
;
2222 } else if (s
->line_buf_index
>= sizeof(s
->line_buf
) - 1) {
2225 s
->line_buf
[s
->line_buf_index
++] = ch
;
2229 s
->line_buf
[s
->line_buf_index
] = '\0';
2230 s
->line_csum
= fromhex(ch
) << 4;
2231 s
->state
= RS_CHKSUM2
;
2234 s
->line_csum
|= fromhex(ch
);
2236 for(i
= 0; i
< s
->line_buf_index
; i
++) {
2237 csum
+= s
->line_buf
[i
];
2239 if (s
->line_csum
!= (csum
& 0xff)) {
2241 put_buffer(s
, &reply
, 1);
2245 put_buffer(s
, &reply
, 1);
2246 s
->state
= gdb_handle_packet(s
, s
->line_buf
);
2255 #ifdef CONFIG_USER_ONLY
2261 s
= gdbserver_state
;
2263 if (gdbserver_fd
< 0 || s
->fd
< 0)
2270 gdb_handlesig (CPUState
*env
, int sig
)
2276 s
= gdbserver_state
;
2277 if (gdbserver_fd
< 0 || s
->fd
< 0)
2280 /* disable single step if it was enabled */
2281 cpu_single_step(env
, 0);
2286 snprintf(buf
, sizeof(buf
), "S%02x", target_signal_to_gdb (sig
));
2289 /* put_packet() might have detected that the peer terminated the
2296 s
->running_state
= 0;
2297 while (s
->running_state
== 0) {
2298 n
= read (s
->fd
, buf
, 256);
2303 for (i
= 0; i
< n
; i
++)
2304 gdb_read_byte (s
, buf
[i
]);
2306 else if (n
== 0 || errno
!= EAGAIN
)
2308 /* XXX: Connection closed. Should probably wait for annother
2309 connection before continuing. */
2318 /* Tell the remote gdb that the process has exited. */
2319 void gdb_exit(CPUState
*env
, int code
)
2324 s
= gdbserver_state
;
2325 if (gdbserver_fd
< 0 || s
->fd
< 0)
2328 snprintf(buf
, sizeof(buf
), "W%02x", code
);
2332 /* Tell the remote gdb that the process has exited due to SIG. */
2333 void gdb_signalled(CPUState
*env
, int sig
)
2338 s
= gdbserver_state
;
2339 if (gdbserver_fd
< 0 || s
->fd
< 0)
2342 snprintf(buf
, sizeof(buf
), "X%02x", target_signal_to_gdb (sig
));
2346 static void gdb_accept(void)
2349 struct sockaddr_in sockaddr
;
2354 len
= sizeof(sockaddr
);
2355 fd
= accept(gdbserver_fd
, (struct sockaddr
*)&sockaddr
, &len
);
2356 if (fd
< 0 && errno
!= EINTR
) {
2359 } else if (fd
>= 0) {
2364 /* set short latency */
2366 setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, (char *)&val
, sizeof(val
));
2368 s
= qemu_mallocz(sizeof(GDBState
));
2369 s
->c_cpu
= first_cpu
;
2370 s
->g_cpu
= first_cpu
;
2374 gdbserver_state
= s
;
2376 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
2379 static int gdbserver_open(int port
)
2381 struct sockaddr_in sockaddr
;
2384 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
2390 /* allow fast reuse */
2392 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (char *)&val
, sizeof(val
));
2394 sockaddr
.sin_family
= AF_INET
;
2395 sockaddr
.sin_port
= htons(port
);
2396 sockaddr
.sin_addr
.s_addr
= 0;
2397 ret
= bind(fd
, (struct sockaddr
*)&sockaddr
, sizeof(sockaddr
));
2402 ret
= listen(fd
, 0);
2410 int gdbserver_start(int port
)
2412 gdbserver_fd
= gdbserver_open(port
);
2413 if (gdbserver_fd
< 0)
2415 /* accept connections */
2420 /* Disable gdb stub for child processes. */
2421 void gdbserver_fork(CPUState
*env
)
2423 GDBState
*s
= gdbserver_state
;
2424 if (gdbserver_fd
< 0 || s
->fd
< 0)
2428 cpu_breakpoint_remove_all(env
, BP_GDB
);
2429 cpu_watchpoint_remove_all(env
, BP_GDB
);
2432 static int gdb_chr_can_receive(void *opaque
)
2434 /* We can handle an arbitrarily large amount of data.
2435 Pick the maximum packet size, which is as good as anything. */
2436 return MAX_PACKET_LENGTH
;
2439 static void gdb_chr_receive(void *opaque
, const uint8_t *buf
, int size
)
2443 for (i
= 0; i
< size
; i
++) {
2444 gdb_read_byte(gdbserver_state
, buf
[i
]);
2448 static void gdb_chr_event(void *opaque
, int event
)
2451 case CHR_EVENT_OPENED
:
2452 vm_stop(EXCP_INTERRUPT
);
2460 static void gdb_monitor_output(GDBState
*s
, const char *msg
, int len
)
2462 char buf
[MAX_PACKET_LENGTH
];
2465 if (len
> (MAX_PACKET_LENGTH
/2) - 1)
2466 len
= (MAX_PACKET_LENGTH
/2) - 1;
2467 memtohex(buf
+ 1, (uint8_t *)msg
, len
);
2471 static int gdb_monitor_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
2473 const char *p
= (const char *)buf
;
2476 max_sz
= (sizeof(gdbserver_state
->last_packet
) - 2) / 2;
2478 if (len
<= max_sz
) {
2479 gdb_monitor_output(gdbserver_state
, p
, len
);
2482 gdb_monitor_output(gdbserver_state
, p
, max_sz
);
2490 static void gdb_sigterm_handler(int signal
)
2493 vm_stop(EXCP_INTERRUPT
);
2497 int gdbserver_start(const char *device
)
2500 char gdbstub_device_name
[128];
2501 CharDriverState
*chr
= NULL
;
2502 CharDriverState
*mon_chr
;
2506 if (strcmp(device
, "none") != 0) {
2507 if (strstart(device
, "tcp:", NULL
)) {
2508 /* enforce required TCP attributes */
2509 snprintf(gdbstub_device_name
, sizeof(gdbstub_device_name
),
2510 "%s,nowait,nodelay,server", device
);
2511 device
= gdbstub_device_name
;
2514 else if (strcmp(device
, "stdio") == 0) {
2515 struct sigaction act
;
2517 memset(&act
, 0, sizeof(act
));
2518 act
.sa_handler
= gdb_sigterm_handler
;
2519 sigaction(SIGINT
, &act
, NULL
);
2522 chr
= qemu_chr_open("gdb", device
, NULL
);
2526 qemu_chr_add_handlers(chr
, gdb_chr_can_receive
, gdb_chr_receive
,
2527 gdb_chr_event
, NULL
);
2530 s
= gdbserver_state
;
2532 s
= qemu_mallocz(sizeof(GDBState
));
2533 gdbserver_state
= s
;
2535 qemu_add_vm_change_state_handler(gdb_vm_state_change
, NULL
);
2537 /* Initialize a monitor terminal for gdb */
2538 mon_chr
= qemu_mallocz(sizeof(*mon_chr
));
2539 mon_chr
->chr_write
= gdb_monitor_write
;
2540 monitor_init(mon_chr
, 0);
2543 qemu_chr_close(s
->chr
);
2544 mon_chr
= s
->mon_chr
;
2545 memset(s
, 0, sizeof(GDBState
));
2547 s
->c_cpu
= first_cpu
;
2548 s
->g_cpu
= first_cpu
;
2550 s
->state
= chr
? RS_IDLE
: RS_INACTIVE
;
2551 s
->mon_chr
= mon_chr
;