PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-45874 Linux CVE debrief

A NULL pointer dereference vulnerability exists in the Linux kernel's Freescale i.MX8QM HSIO PHY driver. The issue occurs when the 'fsl,refclk-pad-mode' device tree property is absent, causing the refclk_pad pointer to remain NULL. The function imx_hsio_configure_clk_pad() subsequently dereferences this pointer without validation, leading to a potential kernel crash. The vulnerability was resolved by adding a NULL pointer check before using refclk_pad.

Vendor
Linux
Product
Unknown
CVSS
MEDIUM 5.5
CISA KEV
Not listed in stored evidence
Original CVE published
2026-05-27
Original CVE updated
2026-06-25
Advisory published
2026-05-27
Advisory updated
2026-06-25

Who should care

Organizations running Linux on NXP i.MX8QM-based embedded systems, particularly those with custom or incomplete device tree configurations. Kernel maintainers and embedded Linux developers working with Freescale/NXP PHY drivers.

Technical summary

The Freescale i.MX8QM HSIO PHY driver (drivers/phy/freescale/phy-fsl-imx8qm-hsio.c) contains a NULL pointer dereference vulnerability. During probe, if the 'fsl,refclk-pad-mode' device tree property is not defined, the refclk_pad pointer is set to NULL. The imx_hsio_configure_clk_pad() function then uses this pointer unconditionally without NULL checking, resulting in a dereference of a NULL pointer. The fix adds a conditional check before using refclk_pad to prevent the crash.

Defensive priority

medium

Recommended defensive actions

  • Review device tree configurations for i.MX8QM-based systems to verify presence of 'fsl,refclk-pad-mode' property
  • Apply kernel updates containing the referenced stable commits to affected systems
  • Monitor kernel logs for NULL pointer dereference errors in the imx8qm-hsio-phy driver during boot
  • Validate PHY driver probe behavior on systems where the device tree property may be omitted

Evidence notes

The vulnerability description is sourced from the official CVE record published on 2026-05-27. The fix involves adding a NULL check for the refclk_pad pointer in imx_hsio_configure_clk_pad() before dereferencing it. Multiple stable kernel commits are referenced, indicating backports to affected kernel versions.

Sources and references

Verified primary and authoritative sources

  • CVE-2026-45874 CVE Program record

    Publisher, destination, and source semantics verified

    URL: https://www.cve.org/CVERecord?id=CVE-2026-45874

    CVE Program - Official CVE Program record with source-provided CVE metadata.

  • CVE-2026-45874 NVD vulnerability detail

    Publisher, destination, and source semantics verified

    URL: https://nvd.nist.gov/vuln/detail/CVE-2026-45874

    NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.

Supplemental references

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/4dd5d4c0361af0a3fd24f45c815996abf4429770

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/8d29e81e9cdec84d4b9acb1736550d35e86c88af

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/a771b386cb6c6e582e7b50f8eeff3347ff887f71

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/dd8b9ba3d9701832cfb5dcefd8b43250df28dbc2

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

Methodology and review provenance

AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.