All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw
@ 2023-04-05 18:18 Jon Hunter
  2023-04-05 18:18 ` [PATCH 2/2] usb: gadget: tegra-xudc: Remove unneeded return variable Jon Hunter
  2023-04-06  8:05 ` [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw Thierry Reding
  0 siblings, 2 replies; 8+ messages in thread
From: Jon Hunter @ 2023-04-05 18:18 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Thierry Reding, Nagarjuna Kristam
  Cc: linux-usb, linux-tegra, Jon Hunter

Commit ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
populated the vbus_draw callback for the Tegra XUDC driver. The function
tegra_xudc_gadget_vbus_draw(), that was added by this commit, assumes
that the pointer 'curr_usbphy' has been initialised, which is not always
the case because this is only initialised when the USB role is updated.
Fix this crash, by checking that the 'curr_usbphy' is valid before
dereferencing.

Fixes: ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
---
 drivers/usb/gadget/udc/tegra-xudc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/gadget/udc/tegra-xudc.c b/drivers/usb/gadget/udc/tegra-xudc.c
index 2b71b33725f1..5bccd64847ff 100644
--- a/drivers/usb/gadget/udc/tegra-xudc.c
+++ b/drivers/usb/gadget/udc/tegra-xudc.c
@@ -2167,7 +2167,7 @@ static int tegra_xudc_gadget_vbus_draw(struct usb_gadget *gadget,
 
 	dev_dbg(xudc->dev, "%s: %u mA\n", __func__, m_a);
 
-	if (xudc->curr_usbphy->chg_type == SDP_TYPE)
+	if (xudc->curr_usbphy && xudc->curr_usbphy->chg_type == SDP_TYPE)
 		ret = usb_phy_set_power(xudc->curr_usbphy, m_a);
 
 	return ret;
-- 
2.34.1


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

* [PATCH 2/2] usb: gadget: tegra-xudc: Remove unneeded return variable
  2023-04-05 18:18 [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw Jon Hunter
@ 2023-04-05 18:18 ` Jon Hunter
  2023-04-06  8:06   ` Thierry Reding
  2023-04-06  8:05 ` [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw Thierry Reding
  1 sibling, 1 reply; 8+ messages in thread
From: Jon Hunter @ 2023-04-05 18:18 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Thierry Reding, Nagarjuna Kristam
  Cc: linux-usb, linux-tegra, Jon Hunter

The 'ret' variable in the function tegra_xudc_gadget_vbus_draw() is not
needed and so remove this variable.

Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
---
 drivers/usb/gadget/udc/tegra-xudc.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/usb/gadget/udc/tegra-xudc.c b/drivers/usb/gadget/udc/tegra-xudc.c
index 5bccd64847ff..34e9c1df54c7 100644
--- a/drivers/usb/gadget/udc/tegra-xudc.c
+++ b/drivers/usb/gadget/udc/tegra-xudc.c
@@ -2162,15 +2162,14 @@ static int tegra_xudc_gadget_stop(struct usb_gadget *gadget)
 static int tegra_xudc_gadget_vbus_draw(struct usb_gadget *gadget,
 						unsigned int m_a)
 {
-	int ret = 0;
 	struct tegra_xudc *xudc = to_xudc(gadget);
 
 	dev_dbg(xudc->dev, "%s: %u mA\n", __func__, m_a);
 
 	if (xudc->curr_usbphy && xudc->curr_usbphy->chg_type == SDP_TYPE)
-		ret = usb_phy_set_power(xudc->curr_usbphy, m_a);
+		return usb_phy_set_power(xudc->curr_usbphy, m_a);
 
-	return ret;
+	return 0;
 }
 
 static int tegra_xudc_set_selfpowered(struct usb_gadget *gadget, int is_on)
-- 
2.34.1


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

* Re: [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw
  2023-04-05 18:18 [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw Jon Hunter
  2023-04-05 18:18 ` [PATCH 2/2] usb: gadget: tegra-xudc: Remove unneeded return variable Jon Hunter
@ 2023-04-06  8:05 ` Thierry Reding
  2023-04-06  9:35   ` Jon Hunter
  1 sibling, 1 reply; 8+ messages in thread
From: Thierry Reding @ 2023-04-06  8:05 UTC (permalink / raw)
  To: Jon Hunter; +Cc: Greg Kroah-Hartman, Nagarjuna Kristam, linux-usb, linux-tegra

[-- Attachment #1: Type: text/plain, Size: 1734 bytes --]

On Wed, Apr 05, 2023 at 07:18:53PM +0100, Jon Hunter wrote:
> Commit ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
> populated the vbus_draw callback for the Tegra XUDC driver. The function
> tegra_xudc_gadget_vbus_draw(), that was added by this commit, assumes
> that the pointer 'curr_usbphy' has been initialised, which is not always
> the case because this is only initialised when the USB role is updated.
> Fix this crash, by checking that the 'curr_usbphy' is valid before
> dereferencing.
> 
> Fixes: ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
> Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
> ---
>  drivers/usb/gadget/udc/tegra-xudc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/gadget/udc/tegra-xudc.c b/drivers/usb/gadget/udc/tegra-xudc.c
> index 2b71b33725f1..5bccd64847ff 100644
> --- a/drivers/usb/gadget/udc/tegra-xudc.c
> +++ b/drivers/usb/gadget/udc/tegra-xudc.c
> @@ -2167,7 +2167,7 @@ static int tegra_xudc_gadget_vbus_draw(struct usb_gadget *gadget,
>  
>  	dev_dbg(xudc->dev, "%s: %u mA\n", __func__, m_a);
>  
> -	if (xudc->curr_usbphy->chg_type == SDP_TYPE)
> +	if (xudc->curr_usbphy && xudc->curr_usbphy->chg_type == SDP_TYPE)
>  		ret = usb_phy_set_power(xudc->curr_usbphy, m_a);
>  
>  	return ret;

Looking at tegra_xudc_probe(), that calls tegra_xudc_update_data_role()
for all PHYs, so shouldn't that be enough to get curr_usbphy set? Or is
there perhaps a race between ->vbus_draw() and the data role update? Is
->vbus_draw() perhaps called as part of usb_add_gadget_udc()? Should we
reorder those to make sure the role is properly updated before the
gadget is registered?

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 2/2] usb: gadget: tegra-xudc: Remove unneeded return variable
  2023-04-05 18:18 ` [PATCH 2/2] usb: gadget: tegra-xudc: Remove unneeded return variable Jon Hunter
@ 2023-04-06  8:06   ` Thierry Reding
  0 siblings, 0 replies; 8+ messages in thread
From: Thierry Reding @ 2023-04-06  8:06 UTC (permalink / raw)
  To: Jon Hunter; +Cc: Greg Kroah-Hartman, Nagarjuna Kristam, linux-usb, linux-tegra

[-- Attachment #1: Type: text/plain, Size: 392 bytes --]

On Wed, Apr 05, 2023 at 07:18:54PM +0100, Jon Hunter wrote:
> The 'ret' variable in the function tegra_xudc_gadget_vbus_draw() is not
> needed and so remove this variable.
> 
> Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
> ---
>  drivers/usb/gadget/udc/tegra-xudc.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)

Reviewed-by: Thierry Reding <treding@nvidia.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw
  2023-04-06  8:05 ` [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw Thierry Reding
@ 2023-04-06  9:35   ` Jon Hunter
  2023-04-06 12:00     ` Thierry Reding
  0 siblings, 1 reply; 8+ messages in thread
From: Jon Hunter @ 2023-04-06  9:35 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Greg Kroah-Hartman, Nagarjuna Kristam, linux-usb, linux-tegra


On 06/04/2023 09:05, Thierry Reding wrote:
> On Wed, Apr 05, 2023 at 07:18:53PM +0100, Jon Hunter wrote:
>> Commit ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
>> populated the vbus_draw callback for the Tegra XUDC driver. The function
>> tegra_xudc_gadget_vbus_draw(), that was added by this commit, assumes
>> that the pointer 'curr_usbphy' has been initialised, which is not always
>> the case because this is only initialised when the USB role is updated.
>> Fix this crash, by checking that the 'curr_usbphy' is valid before
>> dereferencing.
>>
>> Fixes: ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
>> ---
>>   drivers/usb/gadget/udc/tegra-xudc.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/usb/gadget/udc/tegra-xudc.c b/drivers/usb/gadget/udc/tegra-xudc.c
>> index 2b71b33725f1..5bccd64847ff 100644
>> --- a/drivers/usb/gadget/udc/tegra-xudc.c
>> +++ b/drivers/usb/gadget/udc/tegra-xudc.c
>> @@ -2167,7 +2167,7 @@ static int tegra_xudc_gadget_vbus_draw(struct usb_gadget *gadget,
>>   
>>   	dev_dbg(xudc->dev, "%s: %u mA\n", __func__, m_a);
>>   
>> -	if (xudc->curr_usbphy->chg_type == SDP_TYPE)
>> +	if (xudc->curr_usbphy && xudc->curr_usbphy->chg_type == SDP_TYPE)
>>   		ret = usb_phy_set_power(xudc->curr_usbphy, m_a);
>>   
>>   	return ret;
> 
> Looking at tegra_xudc_probe(), that calls tegra_xudc_update_data_role()
> for all PHYs, so shouldn't that be enough to get curr_usbphy set? Or is
> there perhaps a race between ->vbus_draw() and the data role update? Is
> ->vbus_draw() perhaps called as part of usb_add_gadget_udc()? Should we
> reorder those to make sure the role is properly updated before the
> gadget is registered?

Yes it does call it, but it still does not set the curr_usbphy. If you 
look at the function it may not set it.

In the backtrace I saw, which was happening on reboot, it was in the 
unregister of the gadget ...

[ 1102.047896] Call trace:
[ 1102.050402]  0xffffde9fd18c0878
[ 1102.053602]  usb_gadget_vbus_draw+0x28/0x50
[ 1102.057879]  composite_disconnect+0x1c/0x40 [libcomposite]
[ 1102.063509]  usb_get_function_instance+0x1808/0x27b0 [libcomposite]
[ 1102.069935]  usb_gadget_disconnect+0x64/0xa0
[ 1102.074304]  usb_gadget_remove_driver+0x2c/0xc0
[ 1102.078942]  usb_gadget_unregister_driver+0x70/0xf0
[ 1102.083927]  usb_get_function_instance+0x2774/0x27b0 [libcomposite]
[ 1102.090339]  unregister_gadget_item+0x280/0x470 [libcomposite]
[ 1102.096314]  configfs_write_iter+0xc4/0x120
[ 1102.100609]  new_sync_write+0xe8/0x190
[ 1102.104461]  vfs_write+0x234/0x380
[ 1102.107938]  ksys_write+0x6c/0x100
[ 1102.111417]  __arm64_sys_write+0x1c/0x30
[ 1102.115427]  invoke_syscall.constprop.0+0x4c/0xe0
[ 1102.120245]  do_el0_svc+0x50/0x150
[ 1102.123723]  el0_svc+0x28/0xc0
[ 1102.126854]  el0t_64_sync_handler+0xb0/0xc0
[ 1102.131138]  el0t_64_sync+0x1a0/0x1a4
[ 1102.134889] Code: 910003fd a90153f3 f94ce413 f100027f (b9409a60)
[ 1102.141139] ---[ end trace cdf6612bd43fcbf2 ]---

Jon

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

* Re: [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw
  2023-04-06  9:35   ` Jon Hunter
@ 2023-04-06 12:00     ` Thierry Reding
  2023-04-19 21:53       ` Jon Hunter
  0 siblings, 1 reply; 8+ messages in thread
From: Thierry Reding @ 2023-04-06 12:00 UTC (permalink / raw)
  To: Jon Hunter; +Cc: Greg Kroah-Hartman, Nagarjuna Kristam, linux-usb, linux-tegra

[-- Attachment #1: Type: text/plain, Size: 3617 bytes --]

On Thu, Apr 06, 2023 at 10:35:15AM +0100, Jon Hunter wrote:
> 
> On 06/04/2023 09:05, Thierry Reding wrote:
> > On Wed, Apr 05, 2023 at 07:18:53PM +0100, Jon Hunter wrote:
> > > Commit ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
> > > populated the vbus_draw callback for the Tegra XUDC driver. The function
> > > tegra_xudc_gadget_vbus_draw(), that was added by this commit, assumes
> > > that the pointer 'curr_usbphy' has been initialised, which is not always
> > > the case because this is only initialised when the USB role is updated.
> > > Fix this crash, by checking that the 'curr_usbphy' is valid before
> > > dereferencing.
> > > 
> > > Fixes: ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
> > > Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
> > > ---
> > >   drivers/usb/gadget/udc/tegra-xudc.c | 2 +-
> > >   1 file changed, 1 insertion(+), 1 deletion(-)
> > > 
> > > diff --git a/drivers/usb/gadget/udc/tegra-xudc.c b/drivers/usb/gadget/udc/tegra-xudc.c
> > > index 2b71b33725f1..5bccd64847ff 100644
> > > --- a/drivers/usb/gadget/udc/tegra-xudc.c
> > > +++ b/drivers/usb/gadget/udc/tegra-xudc.c
> > > @@ -2167,7 +2167,7 @@ static int tegra_xudc_gadget_vbus_draw(struct usb_gadget *gadget,
> > >   	dev_dbg(xudc->dev, "%s: %u mA\n", __func__, m_a);
> > > -	if (xudc->curr_usbphy->chg_type == SDP_TYPE)
> > > +	if (xudc->curr_usbphy && xudc->curr_usbphy->chg_type == SDP_TYPE)
> > >   		ret = usb_phy_set_power(xudc->curr_usbphy, m_a);
> > >   	return ret;
> > 
> > Looking at tegra_xudc_probe(), that calls tegra_xudc_update_data_role()
> > for all PHYs, so shouldn't that be enough to get curr_usbphy set? Or is
> > there perhaps a race between ->vbus_draw() and the data role update? Is
> > ->vbus_draw() perhaps called as part of usb_add_gadget_udc()? Should we
> > reorder those to make sure the role is properly updated before the
> > gadget is registered?
> 
> Yes it does call it, but it still does not set the curr_usbphy. If you look
> at the function it may not set it.
> 
> In the backtrace I saw, which was happening on reboot, it was in the
> unregister of the gadget ...
> 
> [ 1102.047896] Call trace:
> [ 1102.050402]  0xffffde9fd18c0878
> [ 1102.053602]  usb_gadget_vbus_draw+0x28/0x50
> [ 1102.057879]  composite_disconnect+0x1c/0x40 [libcomposite]
> [ 1102.063509]  usb_get_function_instance+0x1808/0x27b0 [libcomposite]
> [ 1102.069935]  usb_gadget_disconnect+0x64/0xa0
> [ 1102.074304]  usb_gadget_remove_driver+0x2c/0xc0
> [ 1102.078942]  usb_gadget_unregister_driver+0x70/0xf0
> [ 1102.083927]  usb_get_function_instance+0x2774/0x27b0 [libcomposite]
> [ 1102.090339]  unregister_gadget_item+0x280/0x470 [libcomposite]
> [ 1102.096314]  configfs_write_iter+0xc4/0x120
> [ 1102.100609]  new_sync_write+0xe8/0x190
> [ 1102.104461]  vfs_write+0x234/0x380
> [ 1102.107938]  ksys_write+0x6c/0x100
> [ 1102.111417]  __arm64_sys_write+0x1c/0x30
> [ 1102.115427]  invoke_syscall.constprop.0+0x4c/0xe0
> [ 1102.120245]  do_el0_svc+0x50/0x150
> [ 1102.123723]  el0_svc+0x28/0xc0
> [ 1102.126854]  el0t_64_sync_handler+0xb0/0xc0
> [ 1102.131138]  el0t_64_sync+0x1a0/0x1a4
> [ 1102.134889] Code: 910003fd a90153f3 f94ce413 f100027f (b9409a60)
> [ 1102.141139] ---[ end trace cdf6612bd43fcbf2 ]---

Alright. There are a lot of cases where we can run into this and it all
looks a little complicated, so I think it would be good to unwind this
at some point. But I can't think of an easy way to do that, so for a fix
this looks good:

Reviewed-by: Thierry Reding <treding@nvidia.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw
  2023-04-06 12:00     ` Thierry Reding
@ 2023-04-19 21:53       ` Jon Hunter
  2023-04-20  6:43         ` Greg Kroah-Hartman
  0 siblings, 1 reply; 8+ messages in thread
From: Jon Hunter @ 2023-04-19 21:53 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Nagarjuna Kristam, linux-usb, linux-tegra, Thierry Reding

Hi Greg,

On 06/04/2023 13:00, Thierry Reding wrote:
> On Thu, Apr 06, 2023 at 10:35:15AM +0100, Jon Hunter wrote:
>>
>> On 06/04/2023 09:05, Thierry Reding wrote:
>>> On Wed, Apr 05, 2023 at 07:18:53PM +0100, Jon Hunter wrote:
>>>> Commit ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
>>>> populated the vbus_draw callback for the Tegra XUDC driver. The function
>>>> tegra_xudc_gadget_vbus_draw(), that was added by this commit, assumes
>>>> that the pointer 'curr_usbphy' has been initialised, which is not always
>>>> the case because this is only initialised when the USB role is updated.
>>>> Fix this crash, by checking that the 'curr_usbphy' is valid before
>>>> dereferencing.
>>>>
>>>> Fixes: ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
>>>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
>>>> ---
>>>>    drivers/usb/gadget/udc/tegra-xudc.c | 2 +-
>>>>    1 file changed, 1 insertion(+), 1 deletion(-)
>>>>
>>>> diff --git a/drivers/usb/gadget/udc/tegra-xudc.c b/drivers/usb/gadget/udc/tegra-xudc.c
>>>> index 2b71b33725f1..5bccd64847ff 100644
>>>> --- a/drivers/usb/gadget/udc/tegra-xudc.c
>>>> +++ b/drivers/usb/gadget/udc/tegra-xudc.c
>>>> @@ -2167,7 +2167,7 @@ static int tegra_xudc_gadget_vbus_draw(struct usb_gadget *gadget,
>>>>    	dev_dbg(xudc->dev, "%s: %u mA\n", __func__, m_a);
>>>> -	if (xudc->curr_usbphy->chg_type == SDP_TYPE)
>>>> +	if (xudc->curr_usbphy && xudc->curr_usbphy->chg_type == SDP_TYPE)
>>>>    		ret = usb_phy_set_power(xudc->curr_usbphy, m_a);
>>>>    	return ret;
>>>
>>> Looking at tegra_xudc_probe(), that calls tegra_xudc_update_data_role()
>>> for all PHYs, so shouldn't that be enough to get curr_usbphy set? Or is
>>> there perhaps a race between ->vbus_draw() and the data role update? Is
>>> ->vbus_draw() perhaps called as part of usb_add_gadget_udc()? Should we
>>> reorder those to make sure the role is properly updated before the
>>> gadget is registered?
>>
>> Yes it does call it, but it still does not set the curr_usbphy. If you look
>> at the function it may not set it.
>>
>> In the backtrace I saw, which was happening on reboot, it was in the
>> unregister of the gadget ...
>>
>> [ 1102.047896] Call trace:
>> [ 1102.050402]  0xffffde9fd18c0878
>> [ 1102.053602]  usb_gadget_vbus_draw+0x28/0x50
>> [ 1102.057879]  composite_disconnect+0x1c/0x40 [libcomposite]
>> [ 1102.063509]  usb_get_function_instance+0x1808/0x27b0 [libcomposite]
>> [ 1102.069935]  usb_gadget_disconnect+0x64/0xa0
>> [ 1102.074304]  usb_gadget_remove_driver+0x2c/0xc0
>> [ 1102.078942]  usb_gadget_unregister_driver+0x70/0xf0
>> [ 1102.083927]  usb_get_function_instance+0x2774/0x27b0 [libcomposite]
>> [ 1102.090339]  unregister_gadget_item+0x280/0x470 [libcomposite]
>> [ 1102.096314]  configfs_write_iter+0xc4/0x120
>> [ 1102.100609]  new_sync_write+0xe8/0x190
>> [ 1102.104461]  vfs_write+0x234/0x380
>> [ 1102.107938]  ksys_write+0x6c/0x100
>> [ 1102.111417]  __arm64_sys_write+0x1c/0x30
>> [ 1102.115427]  invoke_syscall.constprop.0+0x4c/0xe0
>> [ 1102.120245]  do_el0_svc+0x50/0x150
>> [ 1102.123723]  el0_svc+0x28/0xc0
>> [ 1102.126854]  el0t_64_sync_handler+0xb0/0xc0
>> [ 1102.131138]  el0t_64_sync+0x1a0/0x1a4
>> [ 1102.134889] Code: 910003fd a90153f3 f94ce413 f100027f (b9409a60)
>> [ 1102.141139] ---[ end trace cdf6612bd43fcbf2 ]---
> 
> Alright. There are a lot of cases where we can run into this and it all
> looks a little complicated, so I think it would be good to unwind this
> at some point. But I can't think of an easy way to do that, so for a fix
> this looks good:
> 
> Reviewed-by: Thierry Reding <treding@nvidia.com>

OK for pick this up v6.4?

Thanks
Jon

-- 
nvpublic

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

* Re: [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw
  2023-04-19 21:53       ` Jon Hunter
@ 2023-04-20  6:43         ` Greg Kroah-Hartman
  0 siblings, 0 replies; 8+ messages in thread
From: Greg Kroah-Hartman @ 2023-04-20  6:43 UTC (permalink / raw)
  To: Jon Hunter; +Cc: Nagarjuna Kristam, linux-usb, linux-tegra, Thierry Reding

On Wed, Apr 19, 2023 at 10:53:42PM +0100, Jon Hunter wrote:
> Hi Greg,
> 
> On 06/04/2023 13:00, Thierry Reding wrote:
> > On Thu, Apr 06, 2023 at 10:35:15AM +0100, Jon Hunter wrote:
> > > 
> > > On 06/04/2023 09:05, Thierry Reding wrote:
> > > > On Wed, Apr 05, 2023 at 07:18:53PM +0100, Jon Hunter wrote:
> > > > > Commit ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
> > > > > populated the vbus_draw callback for the Tegra XUDC driver. The function
> > > > > tegra_xudc_gadget_vbus_draw(), that was added by this commit, assumes
> > > > > that the pointer 'curr_usbphy' has been initialised, which is not always
> > > > > the case because this is only initialised when the USB role is updated.
> > > > > Fix this crash, by checking that the 'curr_usbphy' is valid before
> > > > > dereferencing.
> > > > > 
> > > > > Fixes: ac82b56bda5f ("usb: gadget: tegra-xudc: Add vbus_draw support")
> > > > > Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
> > > > > ---
> > > > >    drivers/usb/gadget/udc/tegra-xudc.c | 2 +-
> > > > >    1 file changed, 1 insertion(+), 1 deletion(-)
> > > > > 
> > > > > diff --git a/drivers/usb/gadget/udc/tegra-xudc.c b/drivers/usb/gadget/udc/tegra-xudc.c
> > > > > index 2b71b33725f1..5bccd64847ff 100644
> > > > > --- a/drivers/usb/gadget/udc/tegra-xudc.c
> > > > > +++ b/drivers/usb/gadget/udc/tegra-xudc.c
> > > > > @@ -2167,7 +2167,7 @@ static int tegra_xudc_gadget_vbus_draw(struct usb_gadget *gadget,
> > > > >    	dev_dbg(xudc->dev, "%s: %u mA\n", __func__, m_a);
> > > > > -	if (xudc->curr_usbphy->chg_type == SDP_TYPE)
> > > > > +	if (xudc->curr_usbphy && xudc->curr_usbphy->chg_type == SDP_TYPE)
> > > > >    		ret = usb_phy_set_power(xudc->curr_usbphy, m_a);
> > > > >    	return ret;
> > > > 
> > > > Looking at tegra_xudc_probe(), that calls tegra_xudc_update_data_role()
> > > > for all PHYs, so shouldn't that be enough to get curr_usbphy set? Or is
> > > > there perhaps a race between ->vbus_draw() and the data role update? Is
> > > > ->vbus_draw() perhaps called as part of usb_add_gadget_udc()? Should we
> > > > reorder those to make sure the role is properly updated before the
> > > > gadget is registered?
> > > 
> > > Yes it does call it, but it still does not set the curr_usbphy. If you look
> > > at the function it may not set it.
> > > 
> > > In the backtrace I saw, which was happening on reboot, it was in the
> > > unregister of the gadget ...
> > > 
> > > [ 1102.047896] Call trace:
> > > [ 1102.050402]  0xffffde9fd18c0878
> > > [ 1102.053602]  usb_gadget_vbus_draw+0x28/0x50
> > > [ 1102.057879]  composite_disconnect+0x1c/0x40 [libcomposite]
> > > [ 1102.063509]  usb_get_function_instance+0x1808/0x27b0 [libcomposite]
> > > [ 1102.069935]  usb_gadget_disconnect+0x64/0xa0
> > > [ 1102.074304]  usb_gadget_remove_driver+0x2c/0xc0
> > > [ 1102.078942]  usb_gadget_unregister_driver+0x70/0xf0
> > > [ 1102.083927]  usb_get_function_instance+0x2774/0x27b0 [libcomposite]
> > > [ 1102.090339]  unregister_gadget_item+0x280/0x470 [libcomposite]
> > > [ 1102.096314]  configfs_write_iter+0xc4/0x120
> > > [ 1102.100609]  new_sync_write+0xe8/0x190
> > > [ 1102.104461]  vfs_write+0x234/0x380
> > > [ 1102.107938]  ksys_write+0x6c/0x100
> > > [ 1102.111417]  __arm64_sys_write+0x1c/0x30
> > > [ 1102.115427]  invoke_syscall.constprop.0+0x4c/0xe0
> > > [ 1102.120245]  do_el0_svc+0x50/0x150
> > > [ 1102.123723]  el0_svc+0x28/0xc0
> > > [ 1102.126854]  el0t_64_sync_handler+0xb0/0xc0
> > > [ 1102.131138]  el0t_64_sync+0x1a0/0x1a4
> > > [ 1102.134889] Code: 910003fd a90153f3 f94ce413 f100027f (b9409a60)
> > > [ 1102.141139] ---[ end trace cdf6612bd43fcbf2 ]---
> > 
> > Alright. There are a lot of cases where we can run into this and it all
> > looks a little complicated, so I think it would be good to unwind this
> > at some point. But I can't think of an easy way to do that, so for a fix
> > this looks good:
> > 
> > Reviewed-by: Thierry Reding <treding@nvidia.com>
> 
> OK for pick this up v6.4?

It's in my queue, which is big, I'm at a conference this week but will
try to get to it today on the train ride...

greg k-h

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

end of thread, other threads:[~2023-04-20  6:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-05 18:18 [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw Jon Hunter
2023-04-05 18:18 ` [PATCH 2/2] usb: gadget: tegra-xudc: Remove unneeded return variable Jon Hunter
2023-04-06  8:06   ` Thierry Reding
2023-04-06  8:05 ` [PATCH 1/2] usb: gadget: tegra-xudc: Fix crash in vbus_draw Thierry Reding
2023-04-06  9:35   ` Jon Hunter
2023-04-06 12:00     ` Thierry Reding
2023-04-19 21:53       ` Jon Hunter
2023-04-20  6:43         ` Greg Kroah-Hartman

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.