CVE Catalog

CVE-2026-89885

HighCVSS 8.4
Published: Updated: Translated: NVD NIST

Summary

In the Linux kernel, the media platform mtk-mdp3 driver's mdp_probe() mishandles SCP device reference counting. The fallback path drops the reference obtained via __get_pdev_by_id() too early, and scp_put() later drops it again, resulting in a double reference release.

Risk Assessment

Double-releasing the SCP device reference can cause memory corruption, kernel crash, or system hang. It affects MediaTek platforms using this driver.

Recommendation

Update the Linux kernel to a version containing the fix that keeps the fallback reference until the existing scp_put() call.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: media: platform: mtk-mdp3: Fix SCP device refcounting mdp_probe() first tries to get the SCP handle with scp_get(). When that fails, it falls back to looking up the SCP platform device with __get_pdev_by_id() and then reads its driver data. The fallback lookup returns the platform device with a reference, just like scp_get() does. However, the fallback path currently drops that reference immediately after platform_get_drvdata(). The driver later still calls scp_put(mdp->scp) unconditionally from the probe error path and from mdp_video_device_release(), which drops the SCP device reference again. Keep the fallback reference until the existing scp_put() call, so that the fallback path follows the same ownership rules as the scp_get() path.

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