mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] intel_menlow: set cdev after null device check to avoid null pointer dereference
@ 2016-03-28 16:18 Colin King
  2016-03-28 18:18 ` Darren Hart
  0 siblings, 1 reply; 4+ messages in thread
From: Colin King @ 2016-03-28 16:18 UTC (permalink / raw)
  To: Sujith Thomas, Darren Hart, platform-driver-x86; +Cc: linux-kernel

From: Colin Ian King <colin.king@canonical.com>

intel_menlow_memory_remove sanity checks to see if device is null, however,
this check is performed after we have already passed device into a call
to acpi_driver_data.  If device is null, then acpi_driver_data will produce
a null pointer dereference on device. The correct action is to sanity check
device, then assign cdev, then check if cdev is null.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/platform/x86/intel_menlow.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/platform/x86/intel_menlow.c b/drivers/platform/x86/intel_menlow.c
index 0a919d8..185a1bd 100644
--- a/drivers/platform/x86/intel_menlow.c
+++ b/drivers/platform/x86/intel_menlow.c
@@ -196,9 +196,13 @@ static int intel_menlow_memory_add(struct acpi_device *device)
 
 static int intel_menlow_memory_remove(struct acpi_device *device)
 {
-	struct thermal_cooling_device *cdev = acpi_driver_data(device);
+	struct thermal_cooling_device *cdev;
+
+	if (!device)
+		return -EINVAL;
 
-	if (!device || !cdev)
+	cdev = acpi_driver_data(device);
+	if (!cdev)
 		return -EINVAL;
 
 	sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
-- 
2.7.4

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

* Re: [PATCH] intel_menlow: set cdev after null device check to avoid null pointer dereference
  2016-03-28 16:18 [PATCH] intel_menlow: set cdev after null device check to avoid null pointer dereference Colin King
@ 2016-03-28 18:18 ` Darren Hart
  2016-03-29 13:13   ` Rafael J. Wysocki
  0 siblings, 1 reply; 4+ messages in thread
From: Darren Hart @ 2016-03-28 18:18 UTC (permalink / raw)
  To: Colin King, Rafael Wysocki
  Cc: Sujith Thomas, platform-driver-x86, linux-kernel

On Mon, Mar 28, 2016 at 05:18:39PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> intel_menlow_memory_remove sanity checks to see if device is null, however,
> this check is performed after we have already passed device into a call
> to acpi_driver_data.  If device is null, then acpi_driver_data will produce
> a null pointer dereference on device. The correct action is to sanity check
> device, then assign cdev, then check if cdev is null.
> 

Hrm, looking at this locally, that all makes sense.

Taking a step back however, I notice that intel_menlow_memory_remove is an ops
function pointer inside the acpi_driver structure itself, which is called from
acpi_device_remove() (and probe) (drivers/acpi/bus.c). This already verifies
acpi_driver is not NULL and can't get acpi_driver if acpi_device is NULL. So
unless there is some other use case for this callback I'm unaware of (certainly
possible) it appears to be totally redundant to do this checking here.

+Rafael - is there a best practices for these acpi callbacks with respect to
input validation?

> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/platform/x86/intel_menlow.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/platform/x86/intel_menlow.c b/drivers/platform/x86/intel_menlow.c
> index 0a919d8..185a1bd 100644
> --- a/drivers/platform/x86/intel_menlow.c
> +++ b/drivers/platform/x86/intel_menlow.c
> @@ -196,9 +196,13 @@ static int intel_menlow_memory_add(struct acpi_device *device)
>  
>  static int intel_menlow_memory_remove(struct acpi_device *device)
>  {
> -	struct thermal_cooling_device *cdev = acpi_driver_data(device);
> +	struct thermal_cooling_device *cdev;
> +
> +	if (!device)
> +		return -EINVAL;
>  
> -	if (!device || !cdev)
> +	cdev = acpi_driver_data(device);
> +	if (!cdev)
>  		return -EINVAL;
>  
>  	sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
> -- 
> 2.7.4
> 
> 

-- 
Darren Hart
Intel Open Source Technology Center

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

* Re: [PATCH] intel_menlow: set cdev after null device check to avoid null pointer dereference
  2016-03-28 18:18 ` Darren Hart
@ 2016-03-29 13:13   ` Rafael J. Wysocki
  2016-04-10  2:34     ` Darren Hart
  0 siblings, 1 reply; 4+ messages in thread
From: Rafael J. Wysocki @ 2016-03-29 13:13 UTC (permalink / raw)
  To: Darren Hart; +Cc: Colin King, Sujith Thomas, platform-driver-x86, linux-kernel

On Monday, March 28, 2016 11:18:05 AM Darren Hart wrote:
> On Mon, Mar 28, 2016 at 05:18:39PM +0100, Colin King wrote:
> > From: Colin Ian King <colin.king@canonical.com>
> > 
> > intel_menlow_memory_remove sanity checks to see if device is null, however,
> > this check is performed after we have already passed device into a call
> > to acpi_driver_data.  If device is null, then acpi_driver_data will produce
> > a null pointer dereference on device. The correct action is to sanity check
> > device, then assign cdev, then check if cdev is null.
> > 
> 
> Hrm, looking at this locally, that all makes sense.
> 
> Taking a step back however, I notice that intel_menlow_memory_remove is an ops
> function pointer inside the acpi_driver structure itself, which is called from
> acpi_device_remove() (and probe) (drivers/acpi/bus.c). This already verifies
> acpi_driver is not NULL and can't get acpi_driver if acpi_device is NULL. So
> unless there is some other use case for this callback I'm unaware of (certainly
> possible) it appears to be totally redundant to do this checking here.
> 
> +Rafael - is there a best practices for these acpi callbacks with respect to
> input validation?

No best practices I'm aware of, but if the core does this checks anyway before
calling this, they are clearly not necessary here.

Thanks,
Rafael

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

* Re: [PATCH] intel_menlow: set cdev after null device check to avoid null pointer dereference
  2016-03-29 13:13   ` Rafael J. Wysocki
@ 2016-04-10  2:34     ` Darren Hart
  0 siblings, 0 replies; 4+ messages in thread
From: Darren Hart @ 2016-04-10  2:34 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Colin King, Sujith Thomas, platform-driver-x86, linux-kernel

On Tue, Mar 29, 2016 at 03:13:43PM +0200, Rafael Wysocki wrote:
> On Monday, March 28, 2016 11:18:05 AM Darren Hart wrote:
> > On Mon, Mar 28, 2016 at 05:18:39PM +0100, Colin King wrote:
> > > From: Colin Ian King <colin.king@canonical.com>
> > > 
> > > intel_menlow_memory_remove sanity checks to see if device is null, however,
> > > this check is performed after we have already passed device into a call
> > > to acpi_driver_data.  If device is null, then acpi_driver_data will produce
> > > a null pointer dereference on device. The correct action is to sanity check
> > > device, then assign cdev, then check if cdev is null.
> > > 
> > 
> > Hrm, looking at this locally, that all makes sense.
> > 
> > Taking a step back however, I notice that intel_menlow_memory_remove is an ops
> > function pointer inside the acpi_driver structure itself, which is called from
> > acpi_device_remove() (and probe) (drivers/acpi/bus.c). This already verifies
> > acpi_driver is not NULL and can't get acpi_driver if acpi_device is NULL. So
> > unless there is some other use case for this callback I'm unaware of (certainly
> > possible) it appears to be totally redundant to do this checking here.
> > 
> > +Rafael - is there a best practices for these acpi callbacks with respect to
> > input validation?
> 
> No best practices I'm aware of, but if the core does this checks anyway before
> calling this, they are clearly not necessary here.

My position as well.

Colin, would you care to respin these 2?

-- 
Darren Hart
Intel Open Source Technology Center

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

end of thread, other threads:[~2016-04-10  2:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-28 16:18 [PATCH] intel_menlow: set cdev after null device check to avoid null pointer dereference Colin King
2016-03-28 18:18 ` Darren Hart
2016-03-29 13:13   ` Rafael J. Wysocki
2016-04-10  2:34     ` Darren Hart

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

all inboxes | Powered by JetHome®