From: Markus Armbruster <armbru@redhat.com>
To: lukasstraub2@web.de
Cc: alexandr.iarygin@profitbricks.com, qemu-devel@nongnu.org,
Li Zhang <li.zhang@cloud.ionos.com>,
pankaj.gupta@cloud.ionos.com, Li Zhang <zhlcindy@gmail.com>,
marcandre.lureau@redhat.com
Subject: Re: [PATCH 1/2] Fix the segment fault when calling yank_register_instance
Date: Fri, 26 Mar 2021 15:41:11 +0100 [thread overview]
Message-ID: <87sg4ihta0.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20210315170636.704201-1-zhlcindy@gmail.com> (Li Zhang's message of "Mon, 15 Mar 2021 18:06:35 +0100")
Looks like a bug fix. Lukas, can you take care of it in time for 6.0?
Li Zhang <zhlcindy@gmail.com> writes:
> From: Li Zhang <li.zhang@cloud.ionos.com>
>
> When executing the QMP commands "chardev-change" to change the
> backend device to socket, it will cause a segment fault because
> it assumes chr->label as non-NULL in function yank_register_instance.
> The function qmp_chardev_change calls chardev_new, which label
> is NULL when creating a new chardev. The label will be passed to
> yank_register_instance which causes a segment fault. The callchain
> is as the following:
> chardev_new ->
> qemu_char_open ->
> cc->open ->
> qmp_chardev_open_socket ->
> yank_register_instance
>
> Signed-off-by: Li Zhang <li.zhang@cloud.ionos.com>
> ---
> chardev/char-socket.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/chardev/char-socket.c b/chardev/char-socket.c
> index c8bced76b7..26d5172682 100644
> --- a/chardev/char-socket.c
> +++ b/chardev/char-socket.c
> @@ -1421,10 +1421,12 @@ static void qmp_chardev_open_socket(Chardev *chr,
> qemu_chr_set_feature(chr, QEMU_CHAR_FEATURE_FD_PASS);
> }
>
> - if (!yank_register_instance(CHARDEV_YANK_INSTANCE(chr->label), errp)) {
> - return;
> + if (chr->label) {
> + if (!yank_register_instance(CHARDEV_YANK_INSTANCE(chr->label), errp)) {
> + return;
> + }
> + s->registered_yank = true;
> }
> - s->registered_yank = true;
>
> /* be isn't opened until we get a connection */
> *be_opened = false;
next prev parent reply other threads:[~2021-03-26 14:43 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-15 17:06 [PATCH 1/2] Fix the segment fault when calling yank_register_instance Li Zhang
2021-03-15 17:06 ` [PATCH 2/2] Support monitor chardev hotswap with QMP Li Zhang
2021-03-23 13:14 ` Li Zhang
2021-03-26 14:40 ` Markus Armbruster
2021-03-26 15:19 ` Li Zhang
2021-04-12 12:41 ` Li Zhang
2021-04-12 13:10 ` Markus Armbruster
2021-04-12 13:41 ` Li Zhang
2021-04-12 14:19 ` Pankaj Gupta
2021-04-13 6:40 ` Markus Armbruster
2021-04-13 8:51 ` Li Zhang
2021-04-16 9:33 ` Markus Armbruster
2021-04-16 9:52 ` Li Zhang
2021-04-13 8:57 ` Daniel P. Berrangé
2021-04-13 9:33 ` Li Zhang
2021-03-15 18:51 ` [PATCH 1/2] Fix the segment fault when calling yank_register_instance Marc-André Lureau
2021-03-16 9:45 ` Li Zhang
2021-03-16 14:46 ` Li Zhang
2021-03-16 15:24 ` Marc-André Lureau
2021-03-16 15:36 ` Li Zhang
2021-03-17 21:06 ` Lukas Straub
2021-03-26 14:41 ` Markus Armbruster [this message]
2021-03-26 16:02 ` Lukas Straub
2021-03-26 16:13 ` Markus Armbruster
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=87sg4ihta0.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=alexandr.iarygin@profitbricks.com \
--cc=li.zhang@cloud.ionos.com \
--cc=lukasstraub2@web.de \
--cc=marcandre.lureau@redhat.com \
--cc=pankaj.gupta@cloud.ionos.com \
--cc=qemu-devel@nongnu.org \
--cc=zhlcindy@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.