SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-74647

HIGH · CVSS 7.8 EPSS 0.13%

Source: NVD + CISA KEV + EPSS · Published 2026-08-22 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's fastrpc implementation, where a buffer is removed from a list after it has been unmapped, potentially leading to race conditions during concurrent unmap operations. This flaw can result in unpredictable behavior or crashes if multiple threads attempt to unmap the same buffer simultaneously. Organizations using Linux systems, particularly those leveraging fastrpc for inter-process communication, should prioritize applying the fix to mitigate the risk of instability and data corruption.

CVE
CVE-2026-74647
Severity
HIGH
CVSS
7.8
EPSS
0.13%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: misc: fastrpc: Remove buffer from list prior to unmap operation fastrpc_req_munmap_impl() is called to unmap any buffer. The buffer is getting removed from the list after it is unmapped from DSP. This can create potential race conditions if multiple threads invoke unmap concurrently, where one thread may remove the entry from the list while another thread's unmap operation is still ongoing. Fix this by removing the buffer entry from the list before calling the unmap operation. If the unmap fails, the entry is re-added to the list so that userspace can retry the unmap, or alternatively, the buffer will be cleaned up during device release when the DSP process is torn down and all DSP-side mappings are freed along with remaining buffers in the list.