SEPTEMBER 20, 2026
Live Feed
Back to database
Case File

CVE-2026-80567

UNKNOWN · CVSS N/A EPSS 0.16%

Source: NVD + CISA KEV + EPSS · Published 2026-08-26 · Last synced 2026-09-20

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's synaptics-rmi4 driver, specifically in the handling of worker thread errors during buffer queue operations. If the worker fails, the system may deliver stale or uninitialized memory to userspace, potentially leading to data corruption or unpredictable behavior. Organizations using affected Linux systems, particularly those relying on the synaptics-rmi4 driver, should prioritize addressing this issue to mitigate risks associated with memory handling errors.

CVE
CVE-2026-80567
Severity
UNKNOWN
CVSS
N/A
EPSS
0.16%
Linux F5

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: Input: synaptics-rmi4 - propagate F54 worker errors to V4L2 queue Previously, rmi_f54_buffer_queue() waited for the worker thread to finish but ignored whether it succeeded. If the worker failed (e.g., due to a timeout or register read failure), the queue thread would silently return success, delivering stale or uninitialized memory to userspace. Add a 'report_error' field to struct f54_data to store the worker's exit status. Check this field in rmi_f54_buffer_queue() after the worker finishes, and mark the buffer as VB2_BUF_STATE_ERROR if an error occurred.