CVE-2026-93227
Received Received - Intake

Memory Corruption in Linux Kernel mm_init

Vulnerability report for CVE-2026-93227, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-24

Last updated on: 2026-09-24

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: mm/mm_init: deferred_grow_zone(): fix out-of-range first_deferred_pfn With CONFIG_DEFERRED_STRUCT_PAGE_INIT enabled, deferred_grow_zone() initializes struct pages early in boot to satisfy an allocation. With a large CMA reservation in place, the ranges deferred_init_memmap() finds may not add up to the allocation it was asked for, and the function ends up initializing the memory map of the entire zone and still falls short. That is fine in itself: the function accounts for it and leaves the caller to decide whether it now has enough memory. However, the update of pgdat->first_deferred_pfn that tracks where uninitialized memory map starts could overflow. If the node's RAM end is not aligned on PAGES_PER_SECTION boundaries and some deferred struct pages were initialized, pgdat->first_deferred_pfn would point past the end of the node's memory. deferred_init_memmap() later picks up from pgdat->first_deferred_pfn and hits a BUG_ON(), because it expects a pfn within its node. For example, when running a kernel with CONFIG_DEFERRED_STRUCT_PAGE_INIT=y and CONFIG_CMA=y using the following qemu command line qemu-system-x86_64 -enable-kvm -m 8032M -kernel bzImage \ -append "nokaslr cma=4768M@0x100000000" the kernel panics: kernel BUG at mm/mm_init.c:2131! CPU: 3 UID: 0 PID: 36 Comm: pgdatinit0 Not tainted 7.2.0-rc6 #1 RIP: 0010:deferred_init_memmap+0x1b8/0x1c0 RAX: 0000000000236000 R13: 0000000000238000 Call Trace: kthread+0xdf/0x120 ret_from_fork+0x187/0x250 Make sure that the update of pgdta->first_deferred_pfn does not overflow when the entire zone's (and therefore node's) memory map is initialized. [rppt: massaged the changelog]

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-24
Last Modified
2026-09-24
Generated
2026-09-25
AI Q&A
2026-09-24
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel 7.2.0-rc6

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel occurs when CONFIG_DEFERRED_STRUCT_PAGE_INIT is enabled. It involves an overflow in pgdat->first_deferred_pfn, which tracks uninitialized memory. When a large CMA reservation is present, the memory map initialization may not meet allocation demands, causing the pointer to exceed the node's memory range. This leads to a kernel panic during boot when deferred_init_memmap() encounters an invalid pfn.

Detection Guidance

This vulnerability is specific to the Linux kernel with CONFIG_DEFERRED_STRUCT_PAGE_INIT and CONFIG_CMA enabled. Detection requires checking kernel configuration and boot logs. Use 'cat /proc/cmdline' to verify CMA and kernel parameters, 'zcat /proc/config.gz' to check kernel configs, and 'dmesg | grep -i BUG' to look for kernel panics.

Impact Analysis

This vulnerability can cause a system crash (kernel panic) during boot if specific kernel configurations (CONFIG_DEFERRED_STRUCT_PAGE_INIT and CONFIG_CMA) are enabled and a large CMA reservation is used. It disrupts normal system operation by preventing successful initialization of memory structures.

Compliance Impact

This vulnerability does not directly affect compliance with standards like GDPR or HIPAA as it is a low-level kernel memory management issue. Compliance impacts would only occur if the kernel panic or system instability caused by this vulnerability led to data corruption or unauthorized access, which is not specified in the provided context.

Mitigation Strategies

Disable CONFIG_DEFERRED_STRUCT_PAGE_INIT or CONFIG_CMA in the kernel configuration and recompile. Alternatively, avoid using large CMA reservations. Update to a patched kernel version if available.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-93227. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart