From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Udipto Goswami <quic_ugoswami@quicinc.com>
Cc: John Keeping <john@metanate.com>,
linux-usb@vger.kernel.org, Jack Pham <quic_jackp@quicinc.com>,
Pratham Pratap <quic_ppratap@quicinc.com>,
Wesley Cheng <quic_wcheng@quicinc.com>
Subject: Re: [v3] usb: gadget: f_fs: Prevent race between functionfs_unbind & ffs_ep0_queue_wait
Date: Wed, 14 Dec 2022 09:23:36 +0100 [thread overview]
Message-ID: <Y5mICGooaaQJOOQL@kroah.com> (raw)
In-Reply-To: <68e1a725-9343-c7ad-ff70-bcbf11a11bc8@quicinc.com>
On Wed, Dec 14, 2022 at 12:47:17PM +0530, Udipto Goswami wrote:
> Hi All,
>
> On 11/25/22 11:11 AM, Udipto Goswami wrote:
> > While performing fast composition switch, there is a possibility that the
> > process of ffs_ep0_write/ffs_ep0_read get into a race condition
> > due to ep0req being freed up from functionfs_unbind.
> >
> > Consider the scenario that the ffs_ep0_write calls the ffs_ep0_queue_wait
> > by taking a lock &ffs->ev.waitq.lock. However, the functionfs_unbind isn't
> > bounded so it can go ahead and mark the ep0req to NULL, and since there
> > is no NULL check in ffs_ep0_queue_wait we will end up in use-after-free.
> >
> > Fix this by making a serialized execution between the two functions using
> > a mutex_lock(ffs->mutex). Also, dequeue the ep0req to ensure that no
> > other function can use it after the free operation.
> >
> > Fixes: ddf8abd25994 ("USB: f_fs: the FunctionFS driver")
> > Signed-off-by: Udipto Goswami <quic_ugoswami@quicinc.com>
> > ---
> > v3: Moved dequeue out of mutex to prevent deadlock
> >
> > drivers/usb/gadget/function/f_fs.c | 7 +++++++
> > 1 file changed, 7 insertions(+)
> >
> > diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c
> > index 73dc10a77cde..523a961b910b 100644
> > --- a/drivers/usb/gadget/function/f_fs.c
> > +++ b/drivers/usb/gadget/function/f_fs.c
> > @@ -279,6 +279,9 @@ static int __ffs_ep0_queue_wait(struct ffs_data *ffs, char *data, size_t len)
> > struct usb_request *req = ffs->ep0req;
> > int ret;
> > + if (!req)
> > + return -EINVAL;
> > +
> > req->zero = len < le16_to_cpu(ffs->ev.setup.wLength);
> > spin_unlock_irq(&ffs->ev.waitq.lock);
> > @@ -1892,10 +1895,14 @@ static void functionfs_unbind(struct ffs_data *ffs)
> > ENTER();
> > if (!WARN_ON(!ffs->gadget)) {
> > + /* dequeue before freeing ep0req */
> > + usb_ep_dequeue(ffs->gadget->ep0, ffs->ep0req);
> > + mutex_lock(&ffs->mutex);
> > usb_ep_free_request(ffs->gadget->ep0, ffs->ep0req);
> > ffs->ep0req = NULL;
> > ffs->gadget = NULL;
> > clear_bit(FFS_FL_BOUND, &ffs->flags);
> > + mutex_unlock(&ffs->mutex);
> > ffs_data_put(ffs);
> > }
> > }
>
> Gentle reminder for any comments/suggestions on this patch.
It's the middle of the merge window, and you submitted a patch that has
obvious coding style issues, so there's nothing that we can do with it
no matter what...
Also, you are not explaining how this has been tested, or if it really
solves the problem for you or not, and it seems you are mixing two
different things into the same patch.
thanks,
greg k-h
next prev parent reply other threads:[~2022-12-14 8:23 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-25 5:41 [v3] usb: gadget: f_fs: Prevent race between functionfs_unbind & ffs_ep0_queue_wait Udipto Goswami
2022-12-14 7:17 ` Udipto Goswami
2022-12-14 8:23 ` Greg Kroah-Hartman [this message]
2022-12-14 10:12 ` Udipto Goswami
2022-12-14 10:22 ` Greg Kroah-Hartman
2022-12-14 11:06 ` Udipto Goswami
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=Y5mICGooaaQJOOQL@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=john@metanate.com \
--cc=linux-usb@vger.kernel.org \
--cc=quic_jackp@quicinc.com \
--cc=quic_ppratap@quicinc.com \
--cc=quic_ugoswami@quicinc.com \
--cc=quic_wcheng@quicinc.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox