Linux USB
 help / color / mirror / Atom feed
* [PATCH v5] usb: gadget: udc: Handle gadget_connect failure during bind operation
@ 2023-09-27  7:30 Krishna Kurapati
  2023-09-27  8:16 ` Greg Kroah-Hartman
  2023-09-27 13:38 ` Alan Stern
  0 siblings, 2 replies; 4+ messages in thread
From: Krishna Kurapati @ 2023-09-27  7:30 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Alan Stern, Francesco Dolcini,
	Badhri Jagan Sridharan, Michael Grzeschik, Ivan Orlov
  Cc: linux-usb, linux-kernel, quic_ppratap, quic_wcheng, quic_jackp,
	Krishna Kurapati

In the event gadget_connect call (which invokes pullup) fails,
propagate the error to udc bind operation which in turn sends the
error to configfs. The userspace can then retry enumeration if
it chooses to.

Signed-off-by: Krishna Kurapati <quic_kriskura@quicinc.com>
---
Changes in v5: Addressed proper unlocking of control_lock mutex

 drivers/usb/gadget/udc/core.c | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/gadget/udc/core.c b/drivers/usb/gadget/udc/core.c
index 7d49d8a0b00c..824fe64e078a 100644
--- a/drivers/usb/gadget/udc/core.c
+++ b/drivers/usb/gadget/udc/core.c
@@ -1125,12 +1125,12 @@ EXPORT_SYMBOL_GPL(usb_gadget_set_state);
 /* ------------------------------------------------------------------------- */
 
 /* Acquire connect_lock before calling this function. */
-static void usb_udc_connect_control_locked(struct usb_udc *udc) __must_hold(&udc->connect_lock)
+static int usb_udc_connect_control_locked(struct usb_udc *udc) __must_hold(&udc->connect_lock)
 {
 	if (udc->vbus)
-		usb_gadget_connect_locked(udc->gadget);
+		return usb_gadget_connect_locked(udc->gadget);
 	else
-		usb_gadget_disconnect_locked(udc->gadget);
+		return usb_gadget_disconnect_locked(udc->gadget);
 }
 
 static void vbus_event_work(struct work_struct *work)
@@ -1604,12 +1604,23 @@ static int gadget_bind_driver(struct device *dev)
 	}
 	usb_gadget_enable_async_callbacks(udc);
 	udc->allow_connect = true;
-	usb_udc_connect_control_locked(udc);
+	ret = usb_udc_connect_control_locked(udc);
+	if (ret)
+		goto err_connect_control;
+
 	mutex_unlock(&udc->connect_lock);
 
 	kobject_uevent(&udc->dev.kobj, KOBJ_CHANGE);
 	return 0;
 
+ err_connect_control:
+	udc->allow_connect = false;
+	usb_gadget_disable_async_callbacks(udc);
+	if (gadget->irq)
+		synchronize_irq(gadget->irq);
+	usb_gadget_udc_stop_locked(udc);
+	mutex_unlock(&udc->connect_lock);
+
  err_start:
 	driver->unbind(udc->gadget);
 
-- 
2.42.0


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

* Re: [PATCH v5] usb: gadget: udc: Handle gadget_connect failure during bind operation
  2023-09-27  7:30 [PATCH v5] usb: gadget: udc: Handle gadget_connect failure during bind operation Krishna Kurapati
@ 2023-09-27  8:16 ` Greg Kroah-Hartman
  2023-09-27  8:47   ` Krishna Kurapati PSSNV
  2023-09-27 13:38 ` Alan Stern
  1 sibling, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2023-09-27  8:16 UTC (permalink / raw)
  To: Krishna Kurapati
  Cc: Alan Stern, Francesco Dolcini, Badhri Jagan Sridharan,
	Michael Grzeschik, Ivan Orlov, linux-usb, linux-kernel,
	quic_ppratap, quic_wcheng, quic_jackp

On Wed, Sep 27, 2023 at 01:00:27PM +0530, Krishna Kurapati wrote:
> In the event gadget_connect call (which invokes pullup) fails,
> propagate the error to udc bind operation which in turn sends the
> error to configfs. The userspace can then retry enumeration if
> it chooses to.

Will this break userspace that is not expecting error codes to be
returned?  What userspace code will now be modified to handle this?
Where is that work happening?

thanks,

greg k-h

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

* Re: [PATCH v5] usb: gadget: udc: Handle gadget_connect failure during bind operation
  2023-09-27  8:16 ` Greg Kroah-Hartman
@ 2023-09-27  8:47   ` Krishna Kurapati PSSNV
  0 siblings, 0 replies; 4+ messages in thread
From: Krishna Kurapati PSSNV @ 2023-09-27  8:47 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Alan Stern, Francesco Dolcini, Badhri Jagan Sridharan,
	Michael Grzeschik, Ivan Orlov, linux-usb, linux-kernel,
	quic_ppratap, quic_wcheng, quic_jackp



On 9/27/2023 1:46 PM, Greg Kroah-Hartman wrote:
> On Wed, Sep 27, 2023 at 01:00:27PM +0530, Krishna Kurapati wrote:
>> In the event gadget_connect call (which invokes pullup) fails,
>> propagate the error to udc bind operation which in turn sends the
>> error to configfs. The userspace can then retry enumeration if
>> it chooses to.
> 
> Will this break userspace that is not expecting error codes to be
> returned?  What userspace code will now be modified to handle this?
> Where is that work happening?
> 
> thanks,

Hi Greg,

  This only handles cases where the pullup failed but the error code 
wasn't returned to configfs_udc_store approrpiately. In userspace when 
we do the following:

echo "UDC NAME" > /usb_gadget/<>/UDC

in the issue I was facing, the core soft reset was failing and we return 
-110 from dwc3/core.c to udc's bind_to_driver call, but it is not 
checked any where today and we return 0 to udc_store in configfs. The 
userspace assumes the UDC write went through (and enum happened) but it 
actually doesn't. If we propagate the -ETIMEDOUT coming from dwc3-core 
all the way to configfs_udc_store, it will reach userspace as well 
indicating that the echo command was not successful which then the user 
can choose to retry or not. On Android devices, I saw userspace retry 
happening when we propagate dwc3-core error to userspace. So nothing in 
userspace breaks. It can stay as it but this time, the echo in userspace 
will fail if pullup fails for some reason.

Regards,
Krishna,

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

* Re: [PATCH v5] usb: gadget: udc: Handle gadget_connect failure during bind operation
  2023-09-27  7:30 [PATCH v5] usb: gadget: udc: Handle gadget_connect failure during bind operation Krishna Kurapati
  2023-09-27  8:16 ` Greg Kroah-Hartman
@ 2023-09-27 13:38 ` Alan Stern
  1 sibling, 0 replies; 4+ messages in thread
From: Alan Stern @ 2023-09-27 13:38 UTC (permalink / raw)
  To: Krishna Kurapati
  Cc: Greg Kroah-Hartman, Francesco Dolcini, Badhri Jagan Sridharan,
	Michael Grzeschik, Ivan Orlov, linux-usb, linux-kernel,
	quic_ppratap, quic_wcheng, quic_jackp

On Wed, Sep 27, 2023 at 01:00:27PM +0530, Krishna Kurapati wrote:
> In the event gadget_connect call (which invokes pullup) fails,
> propagate the error to udc bind operation which in turn sends the
> error to configfs. The userspace can then retry enumeration if
> it chooses to.
> 
> Signed-off-by: Krishna Kurapati <quic_kriskura@quicinc.com>
> ---
> Changes in v5: Addressed proper unlocking of control_lock mutex

Reviewed-by: Alan Stern <stern@rowland.harvard.edu>

>  drivers/usb/gadget/udc/core.c | 19 +++++++++++++++----
>  1 file changed, 15 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/usb/gadget/udc/core.c b/drivers/usb/gadget/udc/core.c
> index 7d49d8a0b00c..824fe64e078a 100644
> --- a/drivers/usb/gadget/udc/core.c
> +++ b/drivers/usb/gadget/udc/core.c
> @@ -1125,12 +1125,12 @@ EXPORT_SYMBOL_GPL(usb_gadget_set_state);
>  /* ------------------------------------------------------------------------- */
>  
>  /* Acquire connect_lock before calling this function. */
> -static void usb_udc_connect_control_locked(struct usb_udc *udc) __must_hold(&udc->connect_lock)
> +static int usb_udc_connect_control_locked(struct usb_udc *udc) __must_hold(&udc->connect_lock)
>  {
>  	if (udc->vbus)
> -		usb_gadget_connect_locked(udc->gadget);
> +		return usb_gadget_connect_locked(udc->gadget);
>  	else
> -		usb_gadget_disconnect_locked(udc->gadget);
> +		return usb_gadget_disconnect_locked(udc->gadget);
>  }
>  
>  static void vbus_event_work(struct work_struct *work)
> @@ -1604,12 +1604,23 @@ static int gadget_bind_driver(struct device *dev)
>  	}
>  	usb_gadget_enable_async_callbacks(udc);
>  	udc->allow_connect = true;
> -	usb_udc_connect_control_locked(udc);
> +	ret = usb_udc_connect_control_locked(udc);
> +	if (ret)
> +		goto err_connect_control;
> +
>  	mutex_unlock(&udc->connect_lock);
>  
>  	kobject_uevent(&udc->dev.kobj, KOBJ_CHANGE);
>  	return 0;
>  
> + err_connect_control:
> +	udc->allow_connect = false;
> +	usb_gadget_disable_async_callbacks(udc);
> +	if (gadget->irq)
> +		synchronize_irq(gadget->irq);
> +	usb_gadget_udc_stop_locked(udc);
> +	mutex_unlock(&udc->connect_lock);
> +
>   err_start:
>  	driver->unbind(udc->gadget);
>  
> -- 
> 2.42.0
> 

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

end of thread, other threads:[~2023-09-27 13:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-27  7:30 [PATCH v5] usb: gadget: udc: Handle gadget_connect failure during bind operation Krishna Kurapati
2023-09-27  8:16 ` Greg Kroah-Hartman
2023-09-27  8:47   ` Krishna Kurapati PSSNV
2023-09-27 13:38 ` Alan Stern

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