CVE-2026-72089: accel/ivpu: Reject firmware log with size smaller than header
In the Linux kernel, the following vulnerability has been resolved:
accel/ivpu: Reject firmware log with size smaller than header
fwlogfrombo() validates the tracing buffer headersize and that the log fits within the BO, but never checks that log->size is at least log->headersize. fwlogprintbuffer() then computes:
u32 datasize = log->size - log->headersize;
which underflows to a near-U32MAX value when firmware reports a log whose size is smaller than its header. That huge datasize defeats the logstart/logend bounds clamps added by commit dd1311bcf0e6 ("accel/ivpu: Add bounds checks for firmware log indices"), so fwlogprintlines() reads far past the small real data region of the BO. A size of 0 also makes fwlogfrombo() advance the offset by 0, causing the callers to loop forever on the same header.
Reject logs whose size is smaller than the header (which also rejects size == 0).
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2026-72089?
CVE-2026-72089 has a risk score of 37, indicating a moderate level of risk.
How do I fix CVE-2026-72089?
To fix CVE-2026-72089, update your Linux kernel to a version that includes the applied patch for this vulnerability.
What are the potential impacts of CVE-2026-72089?
The potential impacts of CVE-2026-72089 include possible exploitation of the firmware log, leading to stability issues or information disclosure.
Who is affected by CVE-2026-72089?
CVE-2026-72089 affects users and systems running specific versions of the Linux kernel that use the accel/ivpu module.
When was CVE-2026-72089 published?
CVE-2026-72089 was published on August 15, 2026.