SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-74646

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 the handling of memory mappings during interrupted invokes does not properly acquire the necessary locks. This oversight can lead to race conditions, potentially allowing unauthorized access to memory or causing system instability. Linux system administrators and developers utilizing the fastrpc feature should prioritize addressing this vulnerability to ensure system integrity and security.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: misc: fastrpc: take fl->lock when moving mmaps on interrupted invoke When an invoke is interrupted by a signal, wait_for_completion_interruptible() returns -ERESTARTSYS and fastrpc_internal_invoke() moves every buffer from fl->mmaps onto cctx->invoke_interrupted_mmaps. This list_del()/list_add_tail() walk runs without holding fl->lock, the lock that serialises fl->mmaps in fastrpc_req_mmap() and fastrpc_req_munmap() everywhere else. Take fl->lock around the move, matching every other fl->mmaps accessor.