qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Changlong Xie <xiecl.fnst@cn.fujitsu.com>
To: Eric Blake <eblake@redhat.com>, qemu-devel@nongnu.org
Cc: pbonzini@redhat.com, Luiz Capitulino <lcapitulino@redhat.com>,
	armbru@redhat.com, qemu-stable@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] json-streamer: Don't leak tokens on incomplete parse
Date: Mon, 4 Jul 2016 15:35:35 +0800	[thread overview]
Message-ID: <577A11C7.9030003@cn.fujitsu.com> (raw)
In-Reply-To: <1463608012-12760-1-git-send-email-eblake@redhat.com>

On 05/19/2016 05:46 AM, Eric Blake wrote:
> Valgrind complained about a number of leaks in
> tests/check-qobject-json:
>
> ==12657==    definitely lost: 17,247 bytes in 1,234 blocks
>
> All of which had the same root cause: on an incomplete parse,
> we were abandoning the token queue without cleaning up the
> allocated data within each queue element.  Introduced in
> commit 95385fe, when we switched from QList (which recursively
> frees contents) to g_queue (which does not).
>
> We don't yet require glib 2.32 with its g_queue_free_full(),
> so open-code it instead.
>
> CC: qemu-stable@nongnu.org
> Signed-off-by: Eric Blake <eblake@redhat.com>
> ---
>   qobject/json-streamer.c | 6 ++++++
>   1 file changed, 6 insertions(+)
>
> diff --git a/qobject/json-streamer.c b/qobject/json-streamer.c
> index 0251685..7164390 100644
> --- a/qobject/json-streamer.c
> +++ b/qobject/json-streamer.c
> @@ -20,9 +20,15 @@
>   #define MAX_TOKEN_COUNT (2ULL << 20)
>   #define MAX_NESTING (1ULL << 10)
>
> +static void json_message_free_token(void *token, void *opaque)
> +{
> +    g_free(token);
> +}
> +
>   static void json_message_free_tokens(JSONMessageParser *parser)
>   {
>       if (parser->tokens) {
> +        g_queue_foreach(parser->tokens, json_message_free_token, NULL);
>           g_queue_free(parser->tokens);
>           parser->tokens = NULL;
>       }
>

It seems this commit make tests/qemu-iotests/071 failed on the last 
master branch.

  parent reply	other threads:[~2016-07-04  7:30 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-18 21:46 [Qemu-devel] [PATCH] json-streamer: Don't leak tokens on incomplete parse Eric Blake
2016-05-31 13:45 ` Markus Armbruster
2016-07-04  7:35 ` Changlong Xie [this message]
2016-07-04 12:21   ` Markus Armbruster
2016-07-04 12:31     ` Paolo Bonzini

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=577A11C7.9030003@cn.fujitsu.com \
    --to=xiecl.fnst@cn.fujitsu.com \
    --cc=armbru@redhat.com \
    --cc=eblake@redhat.com \
    --cc=lcapitulino@redhat.com \
    --cc=pbonzini@redhat.com \
    --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 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).