Description
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]
Published: 2026-07-19
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability is a race condition between the workqueue task rzv2h_ivc_transfer_buffer() and other contexts that manipulate rzv2h_ivc::buffers.queue without holding the spinlock. This allows the list to be concurrently modified, potentially causing list corruption and leading to kernel panics or uncontrolled memory states. The flaw is identified as CWE-821, highlighting the lack of proper mutual exclusion. Based on the description, the likely attack vector is a privileged kernel context that can trigger the race condition.

Affected Systems

All Linux kernel installations that contain the rzv2h-ivc media driver and have not incorporated the patch committed in 2026 are affected. The patch identifiers point to commits 72773ff1cdfaebc593f53b1719b2c1773ecf8c43 and c746522bd3264132ab2e2382e96e19cdb8a6c1ba, indicating that the issue was addressed in a kernel release after those changes. Users of any distribution employing the default kernel, the standard kernel maintenance stream, or backported kernel branches before the fix are potentially impacted.

Risk and Exploitability

The CVSS score of 7.8 indicates moderate to high severity, while an EPSS score of less than 1% suggests exploitation attempts are currently rare. The vulnerability is not listed in the CISA KEV catalog, indicating limited active exploitation. There is no known public exploit, and the flaw requires a privileged, kernel-level context to trigger the race condition. Based on the description, the likely attack vector is a privileged kernel context. Therefore the real-world risk is low to moderate, but patching remains recommended to eliminate the possibility of a kernel crash.

Generated by OpenCVE AI on July 30, 2026 at 22:33 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply an updated Linux kernel that includes the rzv2h-ivc race condition fix.
  • If a kernel update is not immediately feasible, disable or unload the rzv2h-ivc media driver until an updated kernel is available.
  • Monitor kernel logs for any WARN or BUG entries related to the media driver or workqueue activity.

Generated by OpenCVE AI on July 30, 2026 at 22:33 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Ubuntu USN Ubuntu USN USN-8593-1 Linux kernel vulnerabilities
Ubuntu USN Ubuntu USN USN-8603-1 Linux kernel (Azure) vulnerabilities
Ubuntu USN Ubuntu USN USN-8618-1 Linux kernel vulnerabilities
History

Tue, 21 Jul 2026 00:15:00 +0000


Mon, 20 Jul 2026 14:45:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.8, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Sun, 19 Jul 2026 10:30:00 +0000

Type Values Removed Values Added
Description 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]
Title media: rzv2h-ivc: Fix concurrent buffer list access
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-05T12:35:20.740Z

Reserved: 2026-06-09T07:44:35.401Z

Link: CVE-2026-53380

cve-icon Vulnrichment

No data.

cve-icon NVD

No data.

cve-icon Redhat

Severity :

Publid Date: 2026-07-19T00:00:00Z

Links: CVE-2026-53380 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-07-30T22:45:04Z

Weaknesses
  • CWE-821

    Incorrect Synchronization