CVE Catalog

CVE-2026-53380

HighCVSS 7.8
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.11%

2th percentile - higher than 2% of all known CVEs

Summary

In the Linux kernel, the rzv2h-ivc driver had a race condition where `list_del()` was called without holding the spinlock, allowing concurrent modification of the buffer list. This could lead to undefined behavior.

Risk Assessment

An attacker could exploit this race condition to cause system instability, kernel panic, or potentially escalate privileges, compromising system security and availability.

Recommendation

Immediately update the Linux kernel to a version containing the fix that moves the `list_del()` operation into the spinlock-protected section.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: media: rzv2h-ivc: Fix concurrent buffer list access The list of buffers (`rzv2h_ivc::buffers.queue`) is protected by a spinlock (`rzv2h_ivc::buffers.lock`). However, in `rzv2h_ivc_transfer_buffer()`, which runs in a separate workqueue, the `list_del()` call is executed without holding the spinlock, which makes it possible for the list to be concurrently modified Fix that by removing a buffer from the list in the lock protected section. [assign ivc->buffers.curr in critical section as reported by Barnabas]

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