CVE Catalog

CVE-2026-89936

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, the m62332 digital-to-analog converter driver does not track the current channel state when enabling and disabling the Vcc regulator. This causes a regulator reference count imbalance, leaving the regulator enabled indefinitely after changing a channel from one non-zero value to another.

Risk Assessment

The regulator remains enabled indefinitely, leading to unnecessary power consumption and potential device overheating. This may affect system stability and hardware longevity.

Recommendation

Update the Linux kernel to a version containing the fix that only enables the regulator on the zero-to-non-zero transition and disables it on the non-zero-to-zero transition, while balancing the regulator on the I2C error path.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: iio: dac: m62332: Fix regulator reference count imbalance m62332_set_value() enables the Vcc regulator on every write of a non-zero value and disables it on every write of zero, without tracking the channel's current state. Because the regulator is reference counted, changing a channel directly from one non-zero value to another enables it more than once, while a later write of zero disables it only once. The reference count never returns to zero and the regulator is left enabled indefinitely. Only enable the regulator on the transition from zero to non-zero, and only disable it on the transition from non-zero to zero, using the previously stored channel value to detect the edge. Balance the regulator on the I2C error path so the reference count stays consistent if the write fails.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS