Skip to content

Commit 6aa84e8

Browse files
Phil Elwellgregkh
authored andcommitted
thermal: bcm2835: Fix crash in bcm2835_thermal_debugfs
[ Upstream commit 3512249 ] "cat /sys/kernel/debug/bcm2835_thermal/regset" causes a NULL pointer dereference in bcm2835_thermal_debugfs. The driver makes use of the implementation details of the thermal framework to retrieve a pointer to its private data from a struct thermal_zone_device, and gets it wrong - leading to the crash. Instead, store its private data as the drvdata and retrieve the thermal_zone_device pointer from it. Fixes: bcb7dd9 ("thermal: bcm2835: add thermal driver for bcm2835 SoC") Signed-off-by: Phil Elwell <[email protected]> Signed-off-by: Zhang Rui <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 643deb5 commit 6aa84e8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

drivers/thermal/broadcom/bcm2835_thermal.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,7 @@ static const struct debugfs_reg32 bcm2835_thermal_regs[] = {
128128

129129
static void bcm2835_thermal_debugfs(struct platform_device *pdev)
130130
{
131-
struct thermal_zone_device *tz = platform_get_drvdata(pdev);
132-
struct bcm2835_thermal_data *data = tz->devdata;
131+
struct bcm2835_thermal_data *data = platform_get_drvdata(pdev);
133132
struct debugfs_regset32 *regset;
134133

135134
data->debugfsdir = debugfs_create_dir("bcm2835_thermal", NULL);
@@ -275,7 +274,7 @@ static int bcm2835_thermal_probe(struct platform_device *pdev)
275274

276275
data->tz = tz;
277276

278-
platform_set_drvdata(pdev, tz);
277+
platform_set_drvdata(pdev, data);
279278

280279
/*
281280
* Thermal_zone doesn't enable hwmon as default,
@@ -299,8 +298,8 @@ static int bcm2835_thermal_probe(struct platform_device *pdev)
299298

300299
static int bcm2835_thermal_remove(struct platform_device *pdev)
301300
{
302-
struct thermal_zone_device *tz = platform_get_drvdata(pdev);
303-
struct bcm2835_thermal_data *data = tz->devdata;
301+
struct bcm2835_thermal_data *data = platform_get_drvdata(pdev);
302+
struct thermal_zone_device *tz = data->tz;
304303

305304
debugfs_remove_recursive(data->debugfsdir);
306305
thermal_zone_of_sensor_unregister(&pdev->dev, tz);

0 commit comments

Comments
 (0)