Bug 60101 - omap4460: Segmentation fault reading /sys/class/hwmon/hwmon0/device/name - sprintf without a format string to blame
Summary: omap4460: Segmentation fault reading /sys/class/hwmon/hwmon0/device/name - sp...
Status: NEW
Alias: None
Product: Drivers
Classification: Unclassified
Component: Other (show other bugs)
Hardware: ARM Linux
: P1 normal
Assignee: drivers_other
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-25 11:49 UTC by Einar Jón
Modified: 2013-06-25 11:57 UTC (History)
0 users

See Also:
Kernel Version: linux-ti-omap4_3.2
Subsystem:
Regression: No
Bisected commit-id:


Attachments
Patch to add a format string to sprintf(). (416 bytes, patch)
2013-06-25 11:49 UTC, Einar Jón
Details | Diff

Description Einar Jón 2013-06-25 11:49:22 UTC
Created attachment 105971 [details]
Patch to add a format string to sprintf().

I was trying to run snmpd on a Pandaboard, but it always got a Segmentation fault.
Strace shows that it stopped when trying to read the "file"
/sys/class/hwmon/hwmon0/device/name 
(redirects to /sys/devices/platform/coretemp.0/name)

On the pandaboard (I tried 3 boards), any read of the file crashes.
Should be reproducable on any omap4460-based CPU, by calling
cat /sys/class/hwmon/hwmon0/device/name 
less /sys/class/hwmon/hwmon0/device/name 
head /sys/class/hwmon/hwmon0/device/name # etc

In the end I saw that the offending file is
ubuntu-precise/drivers/hwmon/omap4460plus_hwmon_temp_sensor.c 
(in any 3.2/3.5 kernel), because it's using sprintf without a format string.
On a linux PC, I read "coretemp\n", but the pandaboards have the tsh->name == NULL, which gives a segmentation fault.

ubuntu-precise/drivers/hwmon/omap4460plus_hwmon_temp_sensor.c: line 44:
	return sprintf(buf, tsh->name);

I have included a tiny patch which replaces that line with
 	return sprintf(buf, "%s", tsh->name);

It doesn't fix the underlying problem (that tsh->name == NULL), but at least the segmentation fault is replaced with a reply of "(null)" (without a trailing newline)
Comment 1 Einar Jón 2013-06-25 11:57:23 UTC
Changed platform and branch, since this only affects ARM CPUs with omap4460.

The 3.5 kernel has changed the format of show_name(), so it shouldn't crash as much.

sprintf is still being used without a format string, so a crash could still occur if (pdev->id < 0 || pdev->id > 2)

Note You need to log in before you can comment on or make changes to this bug.