All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] usb: ulpi: don't register drivers if bus doesn't exist
@ 2015-05-21  8:57 Lu Baolu
  2015-05-21 10:07 ` Lu, Baolu
  2015-05-24 16:26 ` Greg Kroah-Hartman
  0 siblings, 2 replies; 4+ messages in thread
From: Lu Baolu @ 2015-05-21  8:57 UTC (permalink / raw)
  To: Heikki Krogerus, Greg Kroah-Hartman, Sasha Levin, David Cohen
  Cc: linux-usb, linux-kernel, Lu Baolu

ULPI registers its bus at module_init, so if the bus fails to register, the
module will fail to load and all will be well in the world.

However, if the ULPI code is built-in rather than a module, the bus
initialization may fail, but we'd still try to register drivers later onto
a non-existent bus, which will panic the kernel.

Fix that by checking that the bus was indeed initialized before trying to
register drivers on top of it.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Reported-by: Zhuo Qiuxu <qiuxu.zhuo@intel.com>
Reviewed-by: David Cohen <david.a.cohen@linux.intel.com>
---
 drivers/usb/common/ulpi.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c
index 0e6f968..af52b46 100644
--- a/drivers/usb/common/ulpi.c
+++ b/drivers/usb/common/ulpi.c
@@ -132,6 +132,10 @@ int ulpi_register_driver(struct ulpi_driver *drv)
 	if (!drv->probe)
 		return -EINVAL;
 
+	/* Was the bus registered successfully? */
+	if (unlikely(WARN_ON(!ulpi_bus.p)))
+		return -ENODEV;
+
 	drv->driver.bus = &ulpi_bus;
 
 	return driver_register(&drv->driver);
@@ -242,7 +246,7 @@ static int __init ulpi_init(void)
 {
 	return bus_register(&ulpi_bus);
 }
-module_init(ulpi_init);
+subsys_initcall(ulpi_init);
 
 static void __exit ulpi_exit(void)
 {
-- 
2.1.4


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

* Re: [PATCH 1/1] usb: ulpi: don't register drivers if bus doesn't exist
  2015-05-21  8:57 [PATCH 1/1] usb: ulpi: don't register drivers if bus doesn't exist Lu Baolu
@ 2015-05-21 10:07 ` Lu, Baolu
  2015-05-21 10:16   ` Heikki Krogerus
  2015-05-24 16:26 ` Greg Kroah-Hartman
  1 sibling, 1 reply; 4+ messages in thread
From: Lu, Baolu @ 2015-05-21 10:07 UTC (permalink / raw)
  To: Heikki Krogerus, Greg Kroah-Hartman, Sasha Levin, David Cohen
  Cc: linux-usb, linux-kernel

Hi Heikki, Sasha and others,

Please ignore this patch. I should not squash these two patches into one and
sign it off behalf of other people. I apologize for this and I'm sorry 
if this lets
you feel affronted.

Thanks,
Baolu


On 05/21/2015 04:57 PM, Lu Baolu wrote:
> ULPI registers its bus at module_init, so if the bus fails to register, the
> module will fail to load and all will be well in the world.
>
> However, if the ULPI code is built-in rather than a module, the bus
> initialization may fail, but we'd still try to register drivers later onto
> a non-existent bus, which will panic the kernel.
>
> Fix that by checking that the bus was indeed initialized before trying to
> register drivers on top of it.
>
> Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
> Reported-by: Zhuo Qiuxu <qiuxu.zhuo@intel.com>
> Reviewed-by: David Cohen <david.a.cohen@linux.intel.com>
> ---
>   drivers/usb/common/ulpi.c | 6 +++++-
>   1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c
> index 0e6f968..af52b46 100644
> --- a/drivers/usb/common/ulpi.c
> +++ b/drivers/usb/common/ulpi.c
> @@ -132,6 +132,10 @@ int ulpi_register_driver(struct ulpi_driver *drv)
>   	if (!drv->probe)
>   		return -EINVAL;
>   
> +	/* Was the bus registered successfully? */
> +	if (unlikely(WARN_ON(!ulpi_bus.p)))
> +		return -ENODEV;
> +
>   	drv->driver.bus = &ulpi_bus;
>   
>   	return driver_register(&drv->driver);
> @@ -242,7 +246,7 @@ static int __init ulpi_init(void)
>   {
>   	return bus_register(&ulpi_bus);
>   }
> -module_init(ulpi_init);
> +subsys_initcall(ulpi_init);
>   
>   static void __exit ulpi_exit(void)
>   {


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

* Re: [PATCH 1/1] usb: ulpi: don't register drivers if bus doesn't exist
  2015-05-21 10:07 ` Lu, Baolu
@ 2015-05-21 10:16   ` Heikki Krogerus
  0 siblings, 0 replies; 4+ messages in thread
From: Heikki Krogerus @ 2015-05-21 10:16 UTC (permalink / raw)
  To: Lu, Baolu
  Cc: Greg Kroah-Hartman, Sasha Levin, David Cohen, linux-usb, linux-kernel

On Thu, May 21, 2015 at 06:07:25PM +0800, Lu, Baolu wrote:
> Hi Heikki, Sasha and others,
> 
> Please ignore this patch. I should not squash these two patches into one and
> sign it off behalf of other people. I apologize for this and I'm sorry if
> this lets
> you feel affronted.

No worries. So we'll use patch from Sasha to fix the panic when the
bus is missing, and your's to fix the execution order.

If you prepare v2 of your original patch, I'll ACK it.


Thanks,

-- 
heikki

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

* Re: [PATCH 1/1] usb: ulpi: don't register drivers if bus doesn't exist
  2015-05-21  8:57 [PATCH 1/1] usb: ulpi: don't register drivers if bus doesn't exist Lu Baolu
  2015-05-21 10:07 ` Lu, Baolu
@ 2015-05-24 16:26 ` Greg Kroah-Hartman
  1 sibling, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2015-05-24 16:26 UTC (permalink / raw)
  To: Lu Baolu
  Cc: Heikki Krogerus, Sasha Levin, David Cohen, linux-usb, linux-kernel

On Thu, May 21, 2015 at 04:57:52PM +0800, Lu Baolu wrote:
> ULPI registers its bus at module_init, so if the bus fails to register, the
> module will fail to load and all will be well in the world.
> 
> However, if the ULPI code is built-in rather than a module, the bus
> initialization may fail, but we'd still try to register drivers later onto
> a non-existent bus, which will panic the kernel.
> 
> Fix that by checking that the bus was indeed initialized before trying to
> register drivers on top of it.
> 
> Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
> Reported-by: Zhuo Qiuxu <qiuxu.zhuo@intel.com>
> Reviewed-by: David Cohen <david.a.cohen@linux.intel.com>
> ---
>  drivers/usb/common/ulpi.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c
> index 0e6f968..af52b46 100644
> --- a/drivers/usb/common/ulpi.c
> +++ b/drivers/usb/common/ulpi.c
> @@ -132,6 +132,10 @@ int ulpi_register_driver(struct ulpi_driver *drv)
>  	if (!drv->probe)
>  		return -EINVAL;
>  
> +	/* Was the bus registered successfully? */
> +	if (unlikely(WARN_ON(!ulpi_bus.p)))

never use unlikely/likely unless you can actually measure the difference
if the marking is not used.

Hint, on driver probe time, you can't.

thanks,

greg k-h

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

end of thread, other threads:[~2015-05-24 16:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-21  8:57 [PATCH 1/1] usb: ulpi: don't register drivers if bus doesn't exist Lu Baolu
2015-05-21 10:07 ` Lu, Baolu
2015-05-21 10:16   ` Heikki Krogerus
2015-05-24 16:26 ` 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.