CVE-2026-68213
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
10/08/2026
Last modified:
19/08/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
media: rtl2832_sdr: Return queued buffers on start_streaming() failure<br />
<br />
The vb2 framework hands buffers to the driver via buf_queue() before<br />
calling start_streaming(). If start_streaming() returns an error<br />
without first returning those buffers via vb2_buffer_done(),<br />
vb2_start_streaming() fires WARN_ON(owned_by_drv_count) and the queued<br />
buffers leak.<br />
<br />
rtl2832_sdr_start_streaming() had multiple error paths that hit this<br />
trap: two direct early returns (-ENODEV, -ERESTARTSYS), plus six<br />
`goto err` paths covering subdev s_power, tuner setup, ADC setup,<br />
stream-buffer allocation, urb allocation, and urb submission failures.<br />
None of them returned the queued buffers.<br />
<br />
The original function had no distinct success exit and fell straight<br />
through into the err label, which previously only did mutex_unlock and<br />
"return ret". Adding queued-buffer cleanup at err must therefore be<br />
paired with an explicit success return; otherwise every successful<br />
start would also drain the buffer queue and kill streaming. Add that<br />
success return, then add rtl2832_sdr_cleanup_queued_bufs() at the err<br />
label and before each early return.<br />
<br />
The cleanup helper takes a vb2_buffer_state argument so that the<br />
start_streaming error paths can pass VB2_BUF_STATE_QUEUED (as<br />
expected by userspace on start_streaming failure) while stop_streaming<br />
keeps its existing VB2_BUF_STATE_ERROR semantics.<br />
<br />
This mirrors the uvcvideo fix in commit 4cf3b6fd54eb ("media: uvcvideo:<br />
Return queued buffers on start_streaming() failure").<br />
<br />
The err label still does not roll back power_ctrl(), frontend_ctrl(),<br />
the POWER_ON flag, or stream/URB allocations that may have happened<br />
before the failing step. Those are pre-existing leaks of a different<br />
class and are not addressed here.
Impact
Base Score 3.x
7.80
Severity 3.x
HIGH
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/0b08c0403cf672a121ace4eff647a9b240bd4e1b
- https://git.kernel.org/stable/c/33ca0aab6f4bd90921fc1395478f38f72c4d19af
- https://git.kernel.org/stable/c/465dc8e71d2db2ed603e749fa71392bcdccf07eb
- https://git.kernel.org/stable/c/772f2550fe32357557d3b2f88e02f7cf477f0789
- https://git.kernel.org/stable/c/894e83509c66910112b9eaeaa8cd66cd9806db91
- https://git.kernel.org/stable/c/a248273f8af6e630a03e823274385725974009b5
- https://git.kernel.org/stable/c/fc0b18782aab4e35078efe72863df8eab46560a8
- https://git.kernel.org/stable/c/fd1e11fc3849169285e48b2d4ec441614ad2ea74


