public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb-gadget: unlock data->lock mutex on error path in  ep_read()
@ 2011-03-04 22:54 Alexey Khoroshilov
  2011-03-07 20:13 ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Khoroshilov @ 2011-03-04 22:54 UTC (permalink / raw)
  To: David Brownell; +Cc: Greg Kroah-Hartman, linux-usb, linux-kernel

ep_read() acquires data->lock mutex in get_ready_ep() and releases it on
all paths except for one: when usb_endpoint_xfer_isoc() failed. The patch
adds mutex_unlock(&data->lock) at that path.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru>
---
 drivers/usb/gadget/inode.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/gadget/inode.c b/drivers/usb/gadget/inode.c
index 3ed73f4..a01383f 100644
--- a/drivers/usb/gadget/inode.c
+++ b/drivers/usb/gadget/inode.c
@@ -386,8 +386,10 @@ ep_read (struct file *fd, char __user *buf, size_t
len, loff_t *ptr)

        /* halt any endpoint by doing a "wrong direction" i/o call */
        if (usb_endpoint_dir_in(&data->desc)) {
-               if (usb_endpoint_xfer_isoc(&data->desc))
+               if (usb_endpoint_xfer_isoc(&data->desc)) {
+                       mutex_unlock(&data->lock);
                        return -EINVAL;
+               }
                DBG (data->dev, "%s halt\n", data->name);
                spin_lock_irq (&data->dev->lock);
                if (likely (data->ep != NULL))
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] usb-gadget: unlock data->lock mutex on error path in ep_read()
  2011-03-04 22:54 [PATCH] usb-gadget: unlock data->lock mutex on error path in ep_read() Alexey Khoroshilov
@ 2011-03-07 20:13 ` Greg KH
  2011-03-09  7:43   ` Alexey Khoroshilov
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2011-03-07 20:13 UTC (permalink / raw)
  To: Alexey Khoroshilov
  Cc: David Brownell, Greg Kroah-Hartman, linux-usb, linux-kernel

On Sat, Mar 05, 2011 at 01:54:50AM +0300, Alexey Khoroshilov wrote:
> ep_read() acquires data->lock mutex in get_ready_ep() and releases it on
> all paths except for one: when usb_endpoint_xfer_isoc() failed. The patch
> adds mutex_unlock(&data->lock) at that path.
> 
> Found by Linux Driver Verification project (linuxtesting.org).
> 
> Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru>
> ---
>  drivers/usb/gadget/inode.c |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/usb/gadget/inode.c b/drivers/usb/gadget/inode.c
> index 3ed73f4..a01383f 100644
> --- a/drivers/usb/gadget/inode.c
> +++ b/drivers/usb/gadget/inode.c
> @@ -386,8 +386,10 @@ ep_read (struct file *fd, char __user *buf, size_t
> len, loff_t *ptr)
> 
>         /* halt any endpoint by doing a "wrong direction" i/o call */
>         if (usb_endpoint_dir_in(&data->desc)) {
> -               if (usb_endpoint_xfer_isoc(&data->desc))

Your patch is line-wrapped and all of the tabs are converted to spaces,
making it impossible to apply :(

Care to fix your email client and try again?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] usb-gadget: unlock data->lock mutex on error path in ep_read()
@ 2011-03-09  7:41 Alexey Khoroshilov
  2011-03-09 23:39 ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Khoroshilov @ 2011-03-09  7:41 UTC (permalink / raw)
  To: dbrownell; +Cc: gregkh, linux-usb, linux-kernel

ep_read() acquires data->lock mutex in get_ready_ep() and releases it on
all paths except for one: when usb_endpoint_xfer_isoc() failed. The
patch adds mutex_unlock(&data->lock) at that path.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Alexey Khoroshilov<khoroshilov@ispras.ru>
---
 drivers/usb/gadget/inode.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/gadget/inode.c b/drivers/usb/gadget/inode.c
index 3ed73f4..a01383f 100644
--- a/drivers/usb/gadget/inode.c
+++ b/drivers/usb/gadget/inode.c
@@ -386,8 +386,10 @@ ep_read (struct file *fd, char __user *buf, size_t
len, loff_t *ptr)

	/* halt any endpoint by doing a "wrong direction" i/o call */
	if (usb_endpoint_dir_in(&data->desc)) {
-		if (usb_endpoint_xfer_isoc(&data->desc))
+		if (usb_endpoint_xfer_isoc(&data->desc)) {
+			mutex_unlock(&data->lock);
			return -EINVAL;
+		}
	DBG (data->dev, "%s halt\n", data->name);
	spin_lock_irq (&data->dev->lock);
	if (likely (data->ep != NULL))
-- 1.7.0.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] usb-gadget: unlock data->lock mutex on error path in ep_read()
  2011-03-07 20:13 ` Greg KH
@ 2011-03-09  7:43   ` Alexey Khoroshilov
  0 siblings, 0 replies; 5+ messages in thread
From: Alexey Khoroshilov @ 2011-03-09  7:43 UTC (permalink / raw)
  To: Greg KH; +Cc: David Brownell, linux-usb, linux-kernel

On 03/07/2011 11:13 PM, Greg KH wrote:
> 
> Your patch is line-wrapped and all of the tabs are converted to spaces,
> making it impossible to apply :(
> 
> Care to fix your email client and try again?
> 
> thanks,
> 
> greg k-h
> 

Greg,

Thank you very much for your reply!
Done.

Alexey

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] usb-gadget: unlock data->lock mutex on error path in ep_read()
  2011-03-09  7:41 Alexey Khoroshilov
@ 2011-03-09 23:39 ` Greg KH
  0 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2011-03-09 23:39 UTC (permalink / raw)
  To: Alexey Khoroshilov; +Cc: dbrownell, gregkh, linux-usb, linux-kernel

On Wed, Mar 09, 2011 at 10:41:31AM +0300, Alexey Khoroshilov wrote:
> ep_read() acquires data->lock mutex in get_ready_ep() and releases it on
> all paths except for one: when usb_endpoint_xfer_isoc() failed. The
> patch adds mutex_unlock(&data->lock) at that path.
> 
> Found by Linux Driver Verification project (linuxtesting.org).
> 
> Signed-off-by: Alexey Khoroshilov<khoroshilov@ispras.ru>

Need a space after your name and before the email address.

Anyway, your patch is still line-wrapped and the leading spaces stripped
off, making it impossible to apply.  After hand-editing it, it still
fails, are you sure you made this against the linux-next tree?

Care to try again?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-03-09 23:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-04 22:54 [PATCH] usb-gadget: unlock data->lock mutex on error path in ep_read() Alexey Khoroshilov
2011-03-07 20:13 ` Greg KH
2011-03-09  7:43   ` Alexey Khoroshilov
  -- strict thread matches above, loose matches on Subject: below --
2011-03-09  7:41 Alexey Khoroshilov
2011-03-09 23:39 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox