From: Florian Faber <faber@faberman.de>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org
Subject: Re: [PATCH] usb: core: Fix possible memleak in usb_add_gadget
Date: Sun, 5 Sep 2021 17:16:36 +0200 [thread overview]
Message-ID: <dda401c9-2a0c-19a8-871e-28f1a903bcd4@faberman.de> (raw)
In-Reply-To: <YTTahtscWqQyY0CU@kroah.com>
Greg,
On 9/5/21 4:56 PM, Greg KH wrote:
> On Sat, Sep 04, 2021 at 05:34:29PM +0200, Florian Faber wrote:
>> The memory for the udc structure allocated via kzalloc in line 1295 is not
>> freed in the error handling code, leading to a memory leak in case of an
>> error.
>>
>> Singed-off-by: Florian Faber <faber@faberman.de>
>>
>> ---
>> drivers/usb/gadget/udc/core.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/usb/gadget/udc/core.c b/drivers/usb/gadget/udc/core.c
>> index 14fdf918ecfe..a1270a44855a 100644
>> --- a/drivers/usb/gadget/udc/core.c
>> +++ b/drivers/usb/gadget/udc/core.c
>> @@ -1346,6 +1346,8 @@ int usb_add_gadget(struct usb_gadget *gadget)
>>
>> err_put_udc:
>> put_device(&udc->dev);
>> + kfree(udc);
>> + gadget->udc = NULL;
>>
>> error:
>> return ret;
>> --
>> 2.33.0
>>
>> Flo
>> --
>> Machines can do the work, so people have time to think.
>
> Did you test this? I think you will find that you just caused a
> use-after-free :(
Correct, please forget about this patch.
This 'leak' was found by Klocwork and seemed plausible at first
oversight. Sorry for wasting your time and not checking it further.
> Please read the documentation for device_initialize() for why this is
> not the correct thing to do here.
I know now :) It was a bit counter intuitive that two different methods
are used for memory allocation and freeing.
Regarding the other patch: I found the real culprit in the meantime. The
UDC driver (broadcom iproc udc, out of tree) did not call composite's
disconnect when VBUS is lost. Out of the three gadgets I am using, only
mass storage misbehaved that badly, which led me on the wrong track there.
Flo
--
Machines can do the work, so people have time to think.
next prev parent reply other threads:[~2021-09-05 15:16 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-04 15:34 [PATCH] usb: core: Fix possible memleak in usb_add_gadget Florian Faber
2021-09-04 16:12 ` Alan Stern
2021-09-05 14:56 ` Greg KH
2021-09-05 15:16 ` Florian Faber [this message]
2021-09-05 16:27 ` Greg KH
2021-09-05 19:58 ` Florian Faber
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=dda401c9-2a0c-19a8-871e-28f1a903bcd4@faberman.de \
--to=faber@faberman.de \
--cc=gregkh@linuxfoundation.org \
--cc=linux-usb@vger.kernel.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