All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] tap: fix memory leak on failure to create a multiqueue tap device
Date: Mon, 18 Jul 2016 13:59:33 +0800	[thread overview]
Message-ID: <578C7045.706@redhat.com> (raw)
In-Reply-To: <1468572967-27979-1-git-send-email-pbonzini@redhat.com>



On 2016年07月15日 16:56, Paolo Bonzini wrote:
> Reported by Coverity.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>   net/tap.c | 22 ++++++++++++++++------
>   1 file changed, 16 insertions(+), 6 deletions(-)
>
> diff --git a/net/tap.c b/net/tap.c
> index e9c32f3..6a2cedc 100644
> --- a/net/tap.c
> +++ b/net/tap.c
> @@ -787,8 +787,8 @@ int net_init_tap(const NetClientOptions *opts, const char *name,
>               return -1;
>           }
>       } else if (tap->has_fds) {
> -        char **fds = g_new(char *, MAX_TAP_QUEUES);
> -        char **vhost_fds = g_new(char *, MAX_TAP_QUEUES);
> +        char **fds = g_new0(char *, MAX_TAP_QUEUES);
> +        char **vhost_fds = g_new0(char *, MAX_TAP_QUEUES);
>           int nfds, nvhosts;
>   
>           if (tap->has_ifname || tap->has_script || tap->has_downscript ||
> @@ -806,7 +806,7 @@ int net_init_tap(const NetClientOptions *opts, const char *name,
>               if (nfds != nvhosts) {
>                   error_setg(errp, "The number of fds passed does not match "
>                              "the number of vhostfds passed");
> -                return -1;
> +                goto free_fail;
>               }
>           }
>   
> @@ -814,7 +814,7 @@ int net_init_tap(const NetClientOptions *opts, const char *name,
>               fd = monitor_fd_param(cur_mon, fds[i], &err);
>               if (fd == -1) {
>                   error_propagate(errp, err);
> -                return -1;
> +                goto free_fail;
>               }
>   
>               fcntl(fd, F_SETFL, O_NONBLOCK);
> @@ -824,7 +824,7 @@ int net_init_tap(const NetClientOptions *opts, const char *name,
>               } else if (vnet_hdr != tap_probe_vnet_hdr(fd)) {
>                   error_setg(errp,
>                              "vnet_hdr not consistent across given tap fds");
> -                return -1;
> +                goto free_fail;
>               }
>   
>               net_init_tap_one(tap, peer, "tap", name, ifname,
> @@ -833,11 +833,21 @@ int net_init_tap(const NetClientOptions *opts, const char *name,
>                                vnet_hdr, fd, &err);
>               if (err) {
>                   error_propagate(errp, err);
> -                return -1;
> +                goto free_fail;
>               }
>           }
>           g_free(fds);
>           g_free(vhost_fds);
> +        return 0;
> +
> +free_fail:
> +        for (i = 0; i < nfds; i++) {
> +            g_free(fds[i]);
> +            g_free(vhost_fds[i]);
> +        }
> +        g_free(fds);
> +        g_free(vhost_fds);
> +        return -1;
>       } else if (tap->has_helper) {
>           if (tap->has_ifname || tap->has_script || tap->has_downscript ||
>               tap->has_vnet_hdr || tap->has_queues || tap->has_vhostfds) {

Applied to -net. Thanks

      reply	other threads:[~2016-07-18  5:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-15  8:56 [Qemu-devel] [PATCH] tap: fix memory leak on failure to create a multiqueue tap device Paolo Bonzini
2016-07-18  5:59 ` Jason Wang [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=578C7045.706@redhat.com \
    --to=jasowang@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@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.