CVE-2022-50725 Details
Description
In the Linux kernel, the following vulnerability has been resolved: media: vidtv: Fix use-after-free in vidtv_bridge_dvb_init() KASAN reports a use-after-free: BUG: KASAN: use-after-free in dvb_dmxdev_release+0x4d5/0x5d0 [dvb_core] Call Trace: ... dvb_dmxdev_release+0x4d5/0x5d0 [dvb_core] vidtv_bridge_probe+0x7bf/0xa40 [dvb_vidtv_bridge] platform_probe+0xb6/0x170 ... Allocated by task 1238: ... dvb_register_device+0x1a7/0xa70 [dvb_core] dvb_dmxdev_init+0x2af/0x4a0 [dvb_core] vidtv_bridge_probe+0x766/0xa40 [dvb_vidtv_bridge] ... Freed by task 1238: dvb_register_device+0x6d2/0xa70 [dvb_core] dvb_dmxdev_init+0x2af/0x4a0 [dvb_core] vidtv_bridge_probe+0x766/0xa40 [dvb_vidtv_bridge] ... It is because the error handling in vidtv_bridge_dvb_init() is wrong. First, vidtv_bridge_dmx(dev)_init() will clean themselves when fail, but goto fail_dmx(_dev): calls release functions again, which causes use-after-free. Also, in fail_fe, fail_tuner_probe and fail_demod_probe, j = i will cause out-of-bound when i finished its loop (i == NUM_FE). And the loop releasing is wrong, although now NUM_FE is 1 so it won't cause problem. Fix this by correctly releasing everything.
A use-after-free vulnerability has been identified in the Linux kernel's vidtv bridge driver, specifically within the function vidtv_bridge_dvb_init(). This issue arises from improper error handling, which leads to memory being freed while it is still in use. The vulnerability was detected by the Kernel Address Sanitizer (KASAN), which reported a use-after-free error in the dvb_dmxdev_release() function, part of the dvb_core module. The vulnerability occurs when the vidtv_bridge_dvb_init() function encounters an error and attempts to release resources, causing a double-free scenario. Additionally, the error handling loop can lead to out-of-bounds access under certain conditions.
Users can upgrade to the latest version of the Linux kernel where this vulnerability has been fixed. The specific commit addressing this issue is available in the Linux kernel stable tree.
Metrics
CVSS 4.0 Severity and Vector Strings:
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
Volerion
Assessed Dec 24, 2025References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/0369af6fe33d4053899b121b32e91f870b2cf0ae | kernel.org | Source CodeVendor |
| https://git.kernel.org/stable/c/06398ce69571a43a8a0dd0f1bfe35d221f726a6a | kernel.org | Source CodeVendor |
| https://git.kernel.org/stable/c/8a204a0b4a0d105229735222c515759ea2b126c1 | kernel.org | Source CodeVendor |
| https://git.kernel.org/stable/c/ba8d9405935097e296bcf7a942c3a01df0edb865 | kernel.org | Source CodeVendor |
| https://git.kernel.org/stable/c/c290aa527fd832d278c6388a3ba53a9890fbd74a | kernel.org | Source CodeVendor |
Weakness Enumeration
No weakness enumeration is available for this CVE.
Affected Products
| Product | Versions |
|---|---|
| Linux kernel | All versions |
CPE
Remediation
| |
| Linux kernel | All versions |
CPE
Remediation
| |
Change History
2 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jun 17, 2026 | CVE Modified | kernel.org |
| Dec 24, 2025 | New CVE Received | kernel.org |
Volerion