All of lore.kernel.org
 help / color / mirror / Atom feed
From: Julia Lawall <julia.lawall@lip6.fr>
To: Suwan Kim <suwan.kim027@gmail.com>
Cc: shuah@kernel.org, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org,
	julia.lawall@lip6.fr, valentina.manea.m@gmail.com,
	kbuild test robot <lkp@intel.com>
Subject: Re: [PATCH v2] usbip: Fix free of unallocated memory in vhci tx
Date: Tue, 22 Oct 2019 11:51:51 +0200 (CEST)	[thread overview]
Message-ID: <alpine.DEB.2.21.1910221151180.2637@hadrien> (raw)
In-Reply-To: <20191022093017.8027-1-suwan.kim027@gmail.com>



On Tue, 22 Oct 2019, Suwan Kim wrote:

> iso_buffer should be set to NULL after use and free in the while loop.
> In the case of isochronous URB in the while loop, iso_buffer is
> allocated and after sending it to server, buffer is deallocated. And
> then, if the next URB in the while loop is not a isochronous pipe,
> iso_buffer still holds the previously deallocated buffer address and
> kfree tries to free wrong buffer address.
>
> Fixes: ea44d190764b ("usbip: Implement SG support to vhci-hcd and stub driver")
> Reported-by: kbuild test robot <lkp@intel.com>
> Reported-by: Julia Lawall <julia.lawall@lip6.fr>
> Signed-off-by: Suwan Kim <suwan.kim027@gmail.com>

Reviewed-by: Julia Lawall <julia.lawall@lip6.fr>

> ---
> v1 - v2: Move the setting NULL after kfree() and add the comment
> ---
>  drivers/usb/usbip/vhci_tx.c | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/drivers/usb/usbip/vhci_tx.c b/drivers/usb/usbip/vhci_tx.c
> index c3803785f6ef..0ae40a13a9fe 100644
> --- a/drivers/usb/usbip/vhci_tx.c
> +++ b/drivers/usb/usbip/vhci_tx.c
> @@ -147,7 +147,10 @@ static int vhci_send_cmd_submit(struct vhci_device *vdev)
>  		}
>
>  		kfree(iov);
> +		/* This is only for isochronous case */
>  		kfree(iso_buffer);
> +		iso_buffer = NULL;
> +
>  		usbip_dbg_vhci_tx("send txdata\n");
>
>  		total_size += txsize;
> --
> 2.20.1
>
>

  reply	other threads:[~2019-10-22  9:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-22  9:30 [PATCH v2] usbip: Fix free of unallocated memory in vhci tx Suwan Kim
2019-10-22  9:51 ` Julia Lawall [this message]
2019-10-23 15:55   ` shuah

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=alpine.DEB.2.21.1910221151180.2637@hadrien \
    --to=julia.lawall@lip6.fr \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=shuah@kernel.org \
    --cc=suwan.kim027@gmail.com \
    --cc=valentina.manea.m@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.