aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/scan.c
diff options
context:
space:
mode:
authorToshi Kani <toshi.kani@hp.com>2012-10-26 07:38:57 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2012-11-14 18:16:01 -0500
commitb3c450c38075f414077e58439cff6bdce9e47df8 (patch)
treeef1144223a556a10ad5f2ee06f2cfca456d2e156 /drivers/acpi/scan.c
parent594df89a59cf2a2afc22fe27f508dd864d1edb5f (diff)
ACPI: Fix stale pointer access to flags.lockable
During hot-remove, acpi_bus_hot_remove_device() calls ACPI _LCK method when device->flags.lockable is set. However, this device pointer is stale since the target acpi_device object has been already kfree'd by acpi_bus_trim(). The flags.lockable indicates whether or not this ACPI object implements _LCK method. Fix the stable pointer access by replacing it with acpi_get_handle() to check if _LCK is implemented. Signed-off-by: Toshi Kani <toshi.kani@hp.com> Reviewed-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/scan.c')
-rw-r--r--drivers/acpi/scan.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c
index 1fcb8678665c..ed87f433cec2 100644
--- a/drivers/acpi/scan.c
+++ b/drivers/acpi/scan.c
@@ -97,6 +97,7 @@ void acpi_bus_hot_remove_device(void *context)
97 struct acpi_eject_event *ej_event = (struct acpi_eject_event *) context; 97 struct acpi_eject_event *ej_event = (struct acpi_eject_event *) context;
98 struct acpi_device *device; 98 struct acpi_device *device;
99 acpi_handle handle = ej_event->handle; 99 acpi_handle handle = ej_event->handle;
100 acpi_handle temp;
100 struct acpi_object_list arg_list; 101 struct acpi_object_list arg_list;
101 union acpi_object arg; 102 union acpi_object arg;
102 acpi_status status = AE_OK; 103 acpi_status status = AE_OK;
@@ -117,13 +118,16 @@ void acpi_bus_hot_remove_device(void *context)
117 goto err_out; 118 goto err_out;
118 } 119 }
119 120
121 /* device has been freed */
122 device = NULL;
123
120 /* power off device */ 124 /* power off device */
121 status = acpi_evaluate_object(handle, "_PS3", NULL, NULL); 125 status = acpi_evaluate_object(handle, "_PS3", NULL, NULL);
122 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) 126 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
123 printk(KERN_WARNING PREFIX 127 printk(KERN_WARNING PREFIX
124 "Power-off device failed\n"); 128 "Power-off device failed\n");
125 129
126 if (device->flags.lockable) { 130 if (ACPI_SUCCESS(acpi_get_handle(handle, "_LCK", &temp))) {
127 arg_list.count = 1; 131 arg_list.count = 1;
128 arg_list.pointer = &arg; 132 arg_list.pointer = &arg;
129 arg.type = ACPI_TYPE_INTEGER; 133 arg.type = ACPI_TYPE_INTEGER;