linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: chipidea: udc: fix potential kernel panic
@ 2013-06-04 12:17 21cnbao at gmail.com
  2013-08-02  3:13 ` Peter Chen
  0 siblings, 1 reply; 2+ messages in thread
From: 21cnbao at gmail.com @ 2013-06-04 12:17 UTC (permalink / raw)
  To: linux-arm-kernel

From: Rong Wang <Rong.Wang@csr.com>

If global_phy is used when CONFIG_USB_PHY is not defined,
usb_get_phy() returns ERR_PTR(-ENXIO). If we only check
ci->transceiver is NULL or not in vbus_draw callback, it
will return true and continue to dereference ERR_PTR(-ENXIO)
which will cause a kernel panic.

Tested on CSR SiRFatlasVI SoC platform which licensed chipidea.

Signed-off-by: Rong Wang <Rong.Wang@csr.com>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
---
 drivers/usb/chipidea/udc.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/usb/chipidea/udc.c b/drivers/usb/chipidea/udc.c
index 519ead2..822194b 100644
--- a/drivers/usb/chipidea/udc.c
+++ b/drivers/usb/chipidea/udc.c
@@ -1392,7 +1392,7 @@ static int ci13xxx_vbus_draw(struct usb_gadget *_gadget, unsigned mA)
 {
 	struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget);
 
-	if (ci->transceiver)
+	if (!IS_ERR_OR_NULL(ci->transceiver))
 		return usb_phy_set_power(ci->transceiver, mA);
 	return -ENOTSUPP;
 }
@@ -1682,8 +1682,9 @@ static int udc_start(struct ci13xxx *ci)
 		ci->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
 
 	if (ci->platdata->flags & CI13XXX_REQUIRE_TRANSCEIVER) {
-		if (ci->transceiver == NULL) {
-			retval = -ENODEV;
+		if (IS_ERR_OR_NULL(ci->transceiver)) {
+			retval = ci->transceiver ?
+				PTR_ERR(ci->transceiver) : -ENODEV;
 			goto destroy_eps;
 		}
 	}
-- 
1.7.5.4

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

* [PATCH] usb: chipidea: udc: fix potential kernel panic
  2013-06-04 12:17 [PATCH] usb: chipidea: udc: fix potential kernel panic 21cnbao at gmail.com
@ 2013-08-02  3:13 ` Peter Chen
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Chen @ 2013-08-02  3:13 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jun 04, 2013 at 08:17:57PM +0800, 21cnbao at gmail.com wrote:
> From: Rong Wang <Rong.Wang@csr.com>
> 
> If global_phy is used when CONFIG_USB_PHY is not defined,
> usb_get_phy() returns ERR_PTR(-ENXIO). If we only check
> ci->transceiver is NULL or not in vbus_draw callback, it
> will return true and continue to dereference ERR_PTR(-ENXIO)
> which will cause a kernel panic.

If global_phy is used, the ci->transceiver should be NULL,
see below code at drivers/usb/chipidea/udc.c.   

1799         if (ci->global_phy) {
1800                 ci->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
1801                 if (IS_ERR(ci->transceiver))
1802                         ci->transceiver = NULL;
1803         }
> 
> Tested on CSR SiRFatlasVI SoC platform which licensed chipidea.
> 
> Signed-off-by: Rong Wang <Rong.Wang@csr.com>
> Signed-off-by: Barry Song <Baohua.Song@csr.com>
> ---
>  drivers/usb/chipidea/udc.c |    7 ++++---
>  1 files changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/usb/chipidea/udc.c b/drivers/usb/chipidea/udc.c
> index 519ead2..822194b 100644
> --- a/drivers/usb/chipidea/udc.c
> +++ b/drivers/usb/chipidea/udc.c
> @@ -1392,7 +1392,7 @@ static int ci13xxx_vbus_draw(struct usb_gadget *_gadget, unsigned mA)
>  {
>  	struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget);
>  
> -	if (ci->transceiver)
> +	if (!IS_ERR_OR_NULL(ci->transceiver))
>  		return usb_phy_set_power(ci->transceiver, mA);
>  	return -ENOTSUPP;
>  }
> @@ -1682,8 +1682,9 @@ static int udc_start(struct ci13xxx *ci)
>  		ci->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
>  
>  	if (ci->platdata->flags & CI13XXX_REQUIRE_TRANSCEIVER) {
> -		if (ci->transceiver == NULL) {
> -			retval = -ENODEV;
> +		if (IS_ERR_OR_NULL(ci->transceiver)) {
> +			retval = ci->transceiver ?
> +				PTR_ERR(ci->transceiver) : -ENODEV;
>  			goto destroy_eps;
>  		}
>  	}
> -- 
> 1.7.5.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-usb" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

-- 

Best Regards,
Peter Chen

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

end of thread, other threads:[~2013-08-02  3:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-04 12:17 [PATCH] usb: chipidea: udc: fix potential kernel panic 21cnbao at gmail.com
2013-08-02  3:13 ` Peter Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).