* [Qemu-trivial] [PATCH v3] gdbstub.c: fix GDB connection segfault caused by empty machines
@ 2017-01-18 1:28 Ziyue Yang
2017-01-18 2:15 ` [Qemu-trivial] [Qemu-devel] " Fam Zheng
0 siblings, 1 reply; 3+ messages in thread
From: Ziyue Yang @ 2017-01-18 1:28 UTC (permalink / raw)
To: qemu-devel, qemu-trivial
Cc: Thomas Huth, Paolo Bonzini, Anthony Liguori, Ziyue Yang,
Ziyue Yang
From: Ziyue Yang <yzylivezh@hotmail.com>
This patch is to fix the segmentation fault caused by attaching
GDB to a QEMU instance initialized with "-M none" option.
The bug can be reproduced by
> ./qemu-system-x86_64 -M none -nographic -S -s
and attach a GDB to it by
> gdb -ex 'target remote :1234
The segmentation fault was originally caused by trying to read
the information about CPU when communicating with GDB. However,
it's impossible for any control flow to exist on an empty machine,
nor can CPU's be hot plugged to an empty machine later by QOM
commands. So I think simply disabling GDB connections on empty
machines makes sense.
Also some updates from fprintf(stderr, ...) to error_report.
Signed-off-by: Ziyue Yang <skiver.cloud.yzy@gmail.com>
---
gdbstub.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/gdbstub.c b/gdbstub.c
index de62d26..fe1d0f8 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -18,6 +18,7 @@
*/
#include "qemu/osdep.h"
#include "qapi/error.h"
+#include "qemu/error-report.h"
#include "qemu/cutils.h"
#include "cpu.h"
#ifdef CONFIG_USER_ONLY
@@ -636,8 +637,8 @@ void gdb_register_coprocessor(CPUState *cpu,
*p = s;
if (g_pos) {
if (g_pos != s->base_reg) {
- fprintf(stderr, "Error: Bad gdb register numbering for '%s'\n"
- "Expected %d got %d\n", xml, g_pos, s->base_reg);
+ error_report("Error: Bad gdb register numbering for '%s', "
+ "Expected %d got %d", xml, g_pos, s->base_reg);
} else {
cpu->gdb_num_g_regs = cpu->gdb_num_regs;
}
@@ -889,7 +890,7 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
}
case 'k':
/* Kill the target */
- fprintf(stderr, "\nQEMU: Terminated via GDBstub\n");
+ error_report("QEMU: Terminated via GDBstub");
exit(0);
case 'D':
/* Detach packet */
@@ -1357,8 +1358,8 @@ void gdb_do_syscallv(gdb_syscall_complete_cb cb, const char *fmt, va_list va)
break;
default:
bad_format:
- fprintf(stderr, "gdbstub: Bad syscall format string '%s'\n",
- fmt - 1);
+ error_report("gdbstub: Bad syscall format string '%s'",
+ fmt - 1);
break;
}
} else {
@@ -1731,6 +1732,12 @@ int gdbserver_start(const char *device)
CharDriverState *mon_chr;
ChardevCommon common = { 0 };
+ if (!first_cpu) {
+ error_report("gdbstub: meaningless to attach gdb to a "
+ "machine without any CPU.");
+ return -1;
+ }
+
if (!device)
return -1;
if (strcmp(device, "none") != 0) {
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH v3] gdbstub.c: fix GDB connection segfault caused by empty machines
2017-01-18 1:28 [Qemu-trivial] [PATCH v3] gdbstub.c: fix GDB connection segfault caused by empty machines Ziyue Yang
@ 2017-01-18 2:15 ` Fam Zheng
2017-01-18 3:25 ` Yang Ziyue
0 siblings, 1 reply; 3+ messages in thread
From: Fam Zheng @ 2017-01-18 2:15 UTC (permalink / raw)
To: Ziyue Yang
Cc: qemu-devel, qemu-trivial, Paolo Bonzini, Thomas Huth, Ziyue Yang,
Anthony Liguori
On Wed, 01/18 09:28, Ziyue Yang wrote:
> Also some updates from fprintf(stderr, ...) to error_report.
Looks like they belong to a separate patch.
Fam
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH v3] gdbstub.c: fix GDB connection segfault caused by empty machines
2017-01-18 2:15 ` [Qemu-trivial] [Qemu-devel] " Fam Zheng
@ 2017-01-18 3:25 ` Yang Ziyue
0 siblings, 0 replies; 3+ messages in thread
From: Yang Ziyue @ 2017-01-18 3:25 UTC (permalink / raw)
To: Fam Zheng
Cc: qemu-devel, qemu-trivial, Paolo Bonzini, Thomas Huth, Ziyue Yang,
Anthony Liguori
Hi Fam,
I've split the patch into 2 smaller ones and submitted them tagged with "v4".
Thanks!
Ziyue Yang
2017-01-18 10:15 GMT+08:00 Fam Zheng <famz@redhat.com>:
> On Wed, 01/18 09:28, Ziyue Yang wrote:
>> Also some updates from fprintf(stderr, ...) to error_report.
>
> Looks like they belong to a separate patch.
>
> Fam
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-01-18 3:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-18 1:28 [Qemu-trivial] [PATCH v3] gdbstub.c: fix GDB connection segfault caused by empty machines Ziyue Yang
2017-01-18 2:15 ` [Qemu-trivial] [Qemu-devel] " Fam Zheng
2017-01-18 3:25 ` Yang Ziyue
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).