Description
In the Linux kernel, the following vulnerability has been resolved:

media: airspy: Return queued buffers on start_streaming() failure

The vb2 framework hands buffers to the driver via buf_queue() before
calling start_streaming(). If start_streaming() returns an error
without first returning those buffers via vb2_buffer_done(),
vb2_start_streaming() fires WARN_ON(owned_by_drv_count) and the queued
buffers leak.

airspy_start_streaming() returned -ENODEV early when the USB device had
been disconnected (s->udev == NULL) without returning any buffers that
buf_queue() had already accepted. Take v4l2_lock first and jump to the
existing err_clear_bit label, which already drains s->queued_bufs via
vb2_buffer_done(..., VB2_BUF_STATE_QUEUED) before unlocking.

This mirrors the uvcvideo fix in commit 4cf3b6fd54eb ("media: uvcvideo:
Return queued buffers on start_streaming() failure").
Published: 2026-08-10
Score: 3.3 Low
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability involves the Linux kernel media airspy driver; when start_streaming() fails, queued buffers are not returned to the user space, causing a memory leak in the kernel. The result is a loss of memory resources that can degrade system performance or lead to crashes, and the kernel emits a warning when the counter of buffers owned by the driver is non-zero. This weakness is a classic memory‑leak flaw. The likely attack surface is local; an attacker who can interact with the V4L2 airspy device (typically requiring user or root privileges) could trigger the failing start_streaming() call by disconnecting a USB device or otherwise forcing an error path, thereby exhausting kernel memory over time.

Affected Systems

Affected systems are Linux kernel deployments that include the airspy media driver. No specific kernel versions are enumerated in the data; the issue is operative in any kernel that contains the unpatched airspy code path.

Risk and Exploitability

The EPSS score of 0.00209 (approximately 0.2%) and its absence from the CISA KEV catalog indicate a very low likelihood of exploitation. The CVSS score of 3.3 indicates low severity. However, because the flaw can lead to kernel memory exhaustion, the severity can be high when exploited. Exploitation requires channeling an error in start_streaming(), which is generally limited to local users with access to the airspy device; thus privilege escalation could elevate the risk. The impact is primarily availability, with secondary confidentiality and integrity risks if repeated memory exhaustion leads to system instability.

Generated by OpenCVE AI on August 13, 2026 at 06:24 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade to a Linux kernel version that contains the airspy driver fix (commit 877686a74ecdc93dcaee09dbac566e819059c9e7).
  • Apply the upstream patch that drains queued buffers on start_streaming() failure if using a custom or older kernel that does not contain the fix.
  • Monitor kernel logs for the WARN_ON(owned_by_drv_count) message; if seen, ensure the firmware or device driver is correctly handling USB disconnects or disable unused airspy devices to reduce exposure.

Generated by OpenCVE AI on August 13, 2026 at 06:24 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4745-1 linux-6.12 security update
History

Wed, 19 Aug 2026 16:45:00 +0000


Wed, 12 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-772
References
Metrics threat_severity

None

cvssV3_1

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

threat_severity

Low


Mon, 10 Aug 2026 12:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: media: airspy: Return queued buffers on start_streaming() failure The vb2 framework hands buffers to the driver via buf_queue() before calling start_streaming(). If start_streaming() returns an error without first returning those buffers via vb2_buffer_done(), vb2_start_streaming() fires WARN_ON(owned_by_drv_count) and the queued buffers leak. airspy_start_streaming() returned -ENODEV early when the USB device had been disconnected (s->udev == NULL) without returning any buffers that buf_queue() had already accepted. Take v4l2_lock first and jump to the existing err_clear_bit label, which already drains s->queued_bufs via vb2_buffer_done(..., VB2_BUF_STATE_QUEUED) before unlocking. This mirrors the uvcvideo fix in commit 4cf3b6fd54eb ("media: uvcvideo: Return queued buffers on start_streaming() failure").
Title media: airspy: Return queued buffers on start_streaming() failure
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-19T16:32:04.017Z

Reserved: 2026-07-30T09:28:09.376Z

Link: CVE-2026-68231

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-10T13:20:11.370

Modified: 2026-08-19T17:20:38.803

Link: CVE-2026-68231

cve-icon Redhat

Severity : Low

Publid Date: 2026-08-10T12:00:54Z

Links: CVE-2026-68231 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T06:30:05Z

Weaknesses
  • CWE-772

    Missing Release of Resource after Effective Lifetime