CVE-2026-43005
Awaiting Analysis Awaiting Analysis - Queue
Buffer Overflow Fix in Linux Kernel hwmon tps53679 Driver

Publication date: 2026-05-01

Last updated on: 2026-05-01

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: hwmon: (tps53679) Fix array access with zero-length block read i2c_smbus_read_block_data() can return 0, indicating a zero-length read. When this happens, tps53679_identify_chip() accesses buf[ret - 1] which is buf[-1], reading one byte before the buffer on the stack. Fix by changing the check from "ret < 0" to "ret <= 0", treating a zero-length read as an error (-EIO), which prevents the out-of-bounds array access. Also fix a typo in the adjacent comment: "if present" instead of duplicate "if".
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-05-01
Last Modified
2026-05-01
Generated
2026-05-27
AI Q&A
2026-05-01
EPSS Evaluated
2026-05-25
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?

This vulnerability exists in the Linux kernel's hardware monitoring driver for the tps53679 chip. The function i2c_smbus_read_block_data() can return 0, indicating a zero-length read. However, the code did not properly handle this case and accessed an array element at buf[-1], which is out-of-bounds and reads memory before the buffer on the stack.

The fix involved changing the condition to treat a zero-length read as an error, preventing this out-of-bounds access.


How can this vulnerability impact me? :

The vulnerability can lead to out-of-bounds memory access on the stack, which may cause undefined behavior such as crashes or potentially allow an attacker to read sensitive memory or execute arbitrary code depending on the context and exploitability.


What immediate steps should I take to mitigate this vulnerability?

To mitigate this vulnerability, update the Linux kernel to a version where the issue has been fixed. The fix involves changing the check in the tps53679 driver to treat zero-length reads as errors, preventing out-of-bounds array access.

Applying the latest kernel patches or upgrading to a kernel version released after 2026-05-01 that includes this fix is recommended.


Ask Our AI Assistant
Need more information? Ask your question to get an AI reply (Powered by our expertise)
0/70
EPSS Chart