[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 6/8] gdbstub: i386: Fix gdb_get_reg16() parameter to unbreak gdb
From: |
Alex Bennée |
Subject: |
[PULL 6/8] gdbstub: i386: Fix gdb_get_reg16() parameter to unbreak gdb |
Date: |
Wed, 15 Apr 2020 11:42:09 +0100 |
From: Peter Xu <address@hidden>
We should only pass in gdb_get_reg16() with the GByteArray* object
itself, no need to shift. Without this patch, gdb remote attach will
crash QEMU:
(gdb) target remote :1234
Remote debugging using :1234
Remote communication error. Target disconnected.: Connection reset by peer.
$ qemu-system-x86_64 -m 1G -smp 4 ... -s
ERROR:qemu/gdbstub.c:1843:handle_read_all_regs: assertion failed: (len ==
gdbserver_state.mem_buf->len)
Bail out! ERROR:qemu/gdbstub.c:1843:handle_read_all_regs: assertion failed:
(len == gdbserver_state.mem_buf->len)
Fixes: a010bdbe719 ("extend GByteArray to read register helpers")
Signed-off-by: Peter Xu <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Signed-off-by: Alex Bennée <address@hidden>
Tested-by: Stefano Garzarella <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
Message-Id: <address@hidden>
Message-Id: <address@hidden>
diff --git a/target/i386/gdbstub.c b/target/i386/gdbstub.c
index f3d23b614ee..b98a99500ae 100644
--- a/target/i386/gdbstub.c
+++ b/target/i386/gdbstub.c
@@ -106,7 +106,7 @@ int x86_cpu_gdb_read_register(CPUState *cs, GByteArray
*mem_buf, int n)
} else if (n >= IDX_FP_REGS && n < IDX_FP_REGS + 8) {
floatx80 *fp = (floatx80 *) &env->fpregs[n - IDX_FP_REGS];
int len = gdb_get_reg64(mem_buf, cpu_to_le64(fp->low));
- len += gdb_get_reg16(mem_buf + len, cpu_to_le16(fp->high));
+ len += gdb_get_reg16(mem_buf, cpu_to_le16(fp->high));
return len;
} else if (n >= IDX_XMM_REGS && n < IDX_XMM_REGS + CPU_NB_REGS) {
n -= IDX_XMM_REGS;
--
2.20.1
- [PULL for 5.0-rc3 0/8] a few small fixes (docker, user, pie and gdbstub), Alex Bennée, 2020/04/15
- [PULL 2/8] configure: redirect sphinx-build check to config.log, Alex Bennée, 2020/04/15
- [PULL 1/8] tests/docker: add docs FEATURE flag and use for test-misc, Alex Bennée, 2020/04/15
- [PULL 3/8] configure: disable PIE for Windows builds, Alex Bennée, 2020/04/15
- [PULL 4/8] linux-user: fix /proc/self/stat handling, Alex Bennée, 2020/04/15
- [PULL 7/8] gdbstub: Do not use memset() on GByteArray, Alex Bennée, 2020/04/15
- [PULL 8/8] gdbstub: Introduce gdb_get_float32() to get 32-bit float registers, Alex Bennée, 2020/04/15
- [PULL 5/8] target/m68k/helper: Fix m68k_fpu_gdb_get_reg() use of GByteArray, Alex Bennée, 2020/04/15
- [PULL 6/8] gdbstub: i386: Fix gdb_get_reg16() parameter to unbreak gdb,
Alex Bennée <=
- Re: [PULL for 5.0-rc3 0/8] a few small fixes (docker, user, pie and gdbstub), Peter Maydell, 2020/04/15