From: Yang Ziyue <skiver.cloud.yzy@gmail.com>
To: Thomas Huth <thuth@redhat.com>
Cc: qemu-devel@nongnu.org, qemu-trivial@nongnu.org,
Paolo Bonzini <pbonzini@redhat.com>,
Anthony Liguori <aliguori@us.ibm.com>,
Ziyue Yang <yzylivezh@hotmail.com>
Subject: Re: [Qemu-devel] [PATCH] gdbstub.c: fix GDB connection segfault caused by empty machines
Date: Wed, 18 Jan 2017 09:16:06 +0800 [thread overview]
Message-ID: <CAHkcwaemKr-d2qZRHYYUR1ry_spP_8ch2B886q6wxqv4WorBYA@mail.gmail.com> (raw)
In-Reply-To: <c1e01bb3-6dd1-dfe1-1659-8b7b9b683d63@redhat.com>
2017-01-18 1:27 GMT+08:00 Thomas Huth <thuth@redhat.com>:
>
> On 17.01.2017 16:19, Ziyue Yang wrote:
> > 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.
>
> Yes, this sounds like a proper and easy fix for the problem.
>
> > Signed-off-by: Ziyue Yang <skiver.cloud.yzy@gmail.com>
> > ---
> > gdbstub.c | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
> > diff --git a/gdbstub.c b/gdbstub.c
> > index de62d26..413e817 100644
> > --- a/gdbstub.c
> > +++ b/gdbstub.c
> > @@ -1731,6 +1731,12 @@ int gdbserver_start(const char *device)
> > CharDriverState *mon_chr;
> > ChardevCommon common = { 0 };
> >
> > + if (!first_cpu) {
> > + fprintf(stderr, "gdbstub: meaningless to attach gdb to a "
> > + "machine without any CPU.\n");
> > + return -1;
> > + }
>
> Could you maybe rather use error_report() instead of fprintf()? I think
> that's the preferred way to print out an error in QEMU nowadays.
Sure. I've sent a v2 version patch fixing that.
>
>
> Thomas
>
prev parent reply other threads:[~2017-01-18 1:16 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-17 15:19 [Qemu-devel] [PATCH] gdbstub.c: fix GDB connection segfault caused by empty machines Ziyue Yang
2017-01-17 17:27 ` Thomas Huth
2017-01-18 1:16 ` Yang Ziyue [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAHkcwaemKr-d2qZRHYYUR1ry_spP_8ch2B886q6wxqv4WorBYA@mail.gmail.com \
--to=skiver.cloud.yzy@gmail.com \
--cc=aliguori@us.ibm.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=thuth@redhat.com \
--cc=yzylivezh@hotmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).