PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-64149 Linux CVE debrief

A Linux kernel vulnerability, CVE-2026-64149, was resolved by moving the dma_map_resource() sanity check into debug code to prevent false positives for MMIO regions. The check was using pfn_valid(), which does not ensure that a PFN is backed by RAM, causing a WARNING on Raspberry Pi 4 during spi_bcm2835 probe. This change affects users of Linux kernel, particularly those using ARM64 with SPARSEMEM and Raspberry Pi 4. The vulnerability has a medium defensive priority.

Vendor
Linux
Product
Unknown
CVSS
Unknown
CISA KEV
Not listed in stored evidence
Original CVE published
2026-07-19
Original CVE updated
2026-07-19
Advisory published
2026-07-19
Advisory updated
2026-07-19

Who should care

Users of Linux kernel, particularly those using ARM64 with SPARSEMEM and Raspberry Pi 4, should be aware of this vulnerability and ensure they apply the necessary patches. This includes operators, platform administrators, vulnerability management teams, and security teams who need to review the affected scope and severity.

Technical summary

The dma_map_resource() function in the Linux kernel was using pfn_valid() to check if a range is not RAM. However, pfn_valid() only checks for the availability of the memory map for a PFN, not that it's backed by RAM. This caused false positives for MMIO regions sharing a section with RAM on ARM64 with SPARSEMEM, leading to a WARNING on Raspberry Pi 4. The fix moves the sanity check into debug_dma_map_phys() and uses pfn_valid() && !PageReserved() to correctly identify usable RAM.

Defensive priority

Medium

Recommended defensive actions

  • Apply the kernel patch moving dma_map_resource() sanity check into debug code
  • Use dma-debug filtering to integrate with err_printk()
  • Verify and update Linux kernel to the latest version
  • Review compensating controls for exposed systems while remediation is scheduled and verified
  • Check relevant monitoring, detection, and logs for exposed assets that need extra review
  • Track exceptions, retest remediated assets, and close the item only after evidence is documented
  • Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up

Evidence notes

The CVE record was published on 2026-07-19T16:17:56.860Z and has not been modified since then. The NVD entry is currently Received. There is limited information available about the vulnerability, and defenders should verify the affected scope and severity with the official advisory. The Linux kernel vulnerability, CVE-2026-64149, was resolved by moving the dma_map_resource() sanity check into debug code to prevent false positives for MMIO regions. Users should review the official advisory for more details.

Official resources

AI-assisted PatchSiren debrief based on the supplied source corpus. The CVE record was published on 2026-07-19T16:17:56.860Z and has not been modified since then.