All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: qemu-devel@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>,
	Peter Lieven <pl@kamp.de>,
	qemu-stable@nongnu.org, mdroth@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH] qapi: fix null pointer dereference on invalid parameter
Date: Wed, 07 May 2014 21:32:16 +0200	[thread overview]
Message-ID: <87siols7un.fsf@blackfin.pond.sub.org> (raw)
In-Reply-To: <20140507143941.389c074b@redhat.com> (Luiz Capitulino's message of "Wed, 7 May 2014 14:39:41 -0400")

Luiz Capitulino <lcapitulino@redhat.com> writes:

> On Wed, 07 May 2014 18:55:26 +0200
> Markus Armbruster <armbru@redhat.com> wrote:
>
>> Peter Lieven <pl@kamp.de> writes:
>> 
>> > On 07.05.2014 05:05, Eric Blake wrote:
>> >> On 05/06/2014 06:24 PM, Peter Lieven wrote:
>> >>> qemu segfaults if it receives an invalid parameter via a
>> >>> qmp command instead of throwing an error.
>> >>>
>> >>> For example:
>> >>> { "execute": "blockdev-add",
>> >>>      "arguments": { "options" : { "driver": "invalid-driver" } } }
>> >>>
>> >>> CC: qemu-stable@nongnu.org
>> >>> Signed-off-by: Peter Lieven <pl@kamp.de>
>> >>> ---
>> >>>   qapi/qapi-dealloc-visitor.c |    4 +++-
>> >>>   1 file changed, 3 insertions(+), 1 deletion(-)
>> >> Does this overlap with any of Markus' work? It emphasizes how bad it is
>> >> that our visitor interface callbacks are undocumented on what they can
>> >> be passed and are expected to return.
>> >>
>> >> https://lists.gnu.org/archive/html/qemu-devel/2014-05/msg00225.html
>> >>
>> >>> diff --git a/qapi/qapi-dealloc-visitor.c b/qapi/qapi-dealloc-visitor.c
>> >>> index d0ea118..dc53545 100644
>> >>> --- a/qapi/qapi-dealloc-visitor.c
>> >>> +++ b/qapi/qapi-dealloc-visitor.c
>> >>> @@ -131,7 +131,9 @@ static void qapi_dealloc_end_list(Visitor *v, Error **errp)
>> >>>   static void qapi_dealloc_type_str(Visitor *v, char **obj, const char *name,
>> >>>                                     Error **errp)
>> >>>   {
>> >>> -    g_free(*obj);
>> >>> +    if (obj) {
>> >>> +        g_free(*obj);
>> >>> +    }
>> >>>   }
>> >> As for solving a crash,
>> >> Reviewed-by: Eric Blake <eblake@redhat.com>
>> >>
>> >> But if Markus' cleanups solve the problem by guaranteeing that the
>> >> cleanup visitor is never passed a NULL obj, then this would be a dead
>> >> check.  I'm not familiar enough with the rest of the visitor code to
>> >> know whether the caller is at fault, or whether other callers or visitor
>> >> callbacks have the same bug.
>> >>
>> >
>> >
>> > Markus, can you advise please.
>> 
>> My series doesn't address this problem, and I can in fact reproduce the
>> crash with it applied.
>> 
>> Your fix effectively reverts my commit 25a7017.  Let's turn it into a
>> proper revert:
>
> Which means that Peter has to repost as a real revert, right?

You could also replace Peter's commit message by mine.  I ran
git-revert, double-checked the patch is the same, worked Peter's message
into the commit message, including his S-o-b, and topped it off with
R-bys.

> Peter, I'd appreciate if you do that shortly. I'd like to include that
> fix in my next pull request.

The result should be the same.

      reply	other threads:[~2014-05-07 19:32 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-07  0:24 [Qemu-devel] [PATCH] qapi: fix null pointer dereference on invalid parameter Peter Lieven
2014-05-07  3:05 ` Eric Blake
2014-05-07 14:16   ` Peter Lieven
2014-05-07 16:55     ` Markus Armbruster
2014-05-07 18:39       ` Luiz Capitulino
2014-05-07 19:32         ` Markus Armbruster [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=87siols7un.fsf@blackfin.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=lcapitulino@redhat.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=pbonzini@redhat.com \
    --cc=pl@kamp.de \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-stable@nongnu.org \
    /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.