๐Ÿ” CVE Alert

CVE-2025-38217

UNKNOWN 0.0

hwmon: (ftsteutates) Fix TOCTOU race in fts_read()

CVSS Score
0.0
EPSS Score
0.0%
EPSS Percentile
0th

In the Linux kernel, the following vulnerability has been resolved: hwmon: (ftsteutates) Fix TOCTOU race in fts_read() In the fts_read() function, when handling hwmon_pwm_auto_channels_temp, the code accesses the shared variable data->fan_source[channel] twice without holding any locks. It is first checked against FTS_FAN_SOURCE_INVALID, and if the check passes, it is read again when used as an argument to the BIT() macro. This creates a Time-of-Check to Time-of-Use (TOCTOU) race condition. Another thread executing fts_update_device() can modify the value of data->fan_source[channel] between the check and its use. If the value is changed to FTS_FAN_SOURCE_INVALID (0xff) during this window, the BIT() macro will be called with a large shift value (BIT(255)). A bit shift by a value greater than or equal to the type width is undefined behavior and can lead to a crash or incorrect values being returned to userspace. Fix this by reading data->fan_source[channel] into a local variable once, eliminating the race condition. Additionally, add a bounds check to ensure the value is less than BITS_PER_LONG before passing it to the BIT() macro, making the code more robust against undefined behavior. This possible bug was found by an experimental static analysis tool developed by our team.

Vendor linux
Product linux
Ecosystems
Industries
Technology
Published Jul 4, 2025
Last Updated May 11, 2026
Stay Ahead of the Next One

Get instant alerts for linux linux

Be the first to know when new unknown vulnerabilities affecting linux linux are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

Affected Versions

Linux / Linux
1c5759d8ce054961b454af69568a41e7e3210ee1 < d95d87841d2a575bed3691884e8fedef57d7710d 1c5759d8ce054961b454af69568a41e7e3210ee1 < 83e2ba8971ccd8fc08319fc7593288f070d80a76 1c5759d8ce054961b454af69568a41e7e3210ee1 < 4d646f627d3b7ed1cacca66e598af8bcd632d465 1c5759d8ce054961b454af69568a41e7e3210ee1 < 14c9ede9ca4cd078ad76a6ab9617b81074eb58bf
Linux / Linux
6.3

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
git.kernel.org: https://git.kernel.org/stable/c/d95d87841d2a575bed3691884e8fedef57d7710d git.kernel.org: https://git.kernel.org/stable/c/83e2ba8971ccd8fc08319fc7593288f070d80a76 git.kernel.org: https://git.kernel.org/stable/c/4d646f627d3b7ed1cacca66e598af8bcd632d465 git.kernel.org: https://git.kernel.org/stable/c/14c9ede9ca4cd078ad76a6ab9617b81074eb58bf