Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-31456

CVE-2026-31456: Linux Kernel Race Condition Vulnerability

CVE-2026-31456 is a race condition flaw in the Linux kernel's memory management pagewalk subsystem that causes crashes during concurrent operations. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-31456 Overview

A race condition vulnerability has been identified in the Linux kernel's memory management subsystem, specifically within the walk_pud_range() function in mm/pagewalk. The vulnerability occurs when splitting a PUD (Page Upper Directory) entry races with a concurrent thread refaulting the PUD leaf entry, causing the kernel to attempt walking a PMD (Page Middle Directory) range that has been invalidated.

This vulnerability can be triggered when reading numa_maps of a process while VFIO-PCI is setting up DMA (specifically the vfio_pin_pages_remote call) on a large BAR for that process. The race condition results in a kernel BUG and system crash due to an inability to handle a page fault.

Critical Impact

Exploitation can cause kernel panic and system crashes, leading to denial of service conditions on affected Linux systems running concurrent memory operations with VFIO-PCI DMA setup.

Affected Products

  • Linux Kernel (multiple versions with vulnerable mm/pagewalk implementation)
  • Systems using VFIO-PCI for device passthrough
  • Linux distributions running vulnerable kernel versions

Discovery Timeline

  • April 22, 2026 - CVE CVE-2026-31456 published to NVD
  • April 23, 2026 - Last updated in NVD database

Technical Details for CVE-2026-31456

Vulnerability Analysis

The vulnerability resides in the Linux kernel's page table walking infrastructure within the memory management subsystem. When the kernel traverses page tables via walk_pud_range(), it can encounter a race condition where a PUD entry is being split while another thread simultaneously attempts to refault the same PUD leaf entry.

The problematic sequence occurs when:

  1. Thread A initiates a page walk operation (e.g., reading /proc/[pid]/numa_maps)
  2. Thread B performs VFIO-PCI DMA setup, calling vfio_pin_pages_remote() on a large BAR
  3. The PUD entry split in Thread A races with the PUD leaf refault in Thread B
  4. Thread A attempts to descend into a PMD range that no longer exists

This results in the kernel attempting to access invalid memory addresses (as shown in the crash dump at address ffffa23980000000), triggering an Oops with "unable to handle page fault" followed by a kernel BUG.

Root Cause

The root cause is the lack of proper synchronization when reading PUD entries during page table walks. The walk_pud_range() function does not take a stable snapshot of the PUD entry before descending into PMD ranges, allowing the entry to change between the time it's checked and when it's used (a classic Time-of-Check Time-of-Use pattern).

The fix addresses this by:

  1. Using pudp_get() to obtain a stable snapshot of the PUD entry in walk_pmd_range()
  2. Validating that the PUD is present and not a leaf before proceeding
  3. Returning ACTION_AGAIN to retry the walk if validation fails, mirroring the retry logic already present in walk_pte_range()

Attack Vector

The vulnerability is triggered through concurrent memory management operations on Linux systems. While the attack vector requires local access and specific timing conditions, exploitation scenarios include:

  • Reading /proc/[pid]/numa_maps while VFIO-PCI performs DMA setup
  • Concurrent page table modifications during memory-intensive workloads
  • Device passthrough operations with large BAR mappings racing with process introspection

The crash occurs in walk_pgd_range() at RIP 0010:walk_pgd_range+0x3b5/0x7a0, with the call trace showing the path through __walk_page_range(), walk_page_vma(), show_numa_map(), and the VFS read operations. The invalid memory access at CR2: ffffa23980000000 indicates the kernel dereferenced a pointer to freed or unmapped memory.

Detection Methods for CVE-2026-31456

Indicators of Compromise

  • Kernel Oops messages containing "unable to handle page fault for address" with addresses in the kernel virtual address space
  • Crash dumps showing RIP in walk_pgd_range, walk_pud_range, or related page walking functions
  • System logs indicating BUG triggered during numa_maps reads or VFIO-PCI operations
  • Kernel panics occurring during concurrent VFIO device setup and /proc filesystem access

Detection Strategies

  • Monitor system logs (dmesg, /var/log/kern.log) for kernel Oops events involving walk_pgd_range or mm/pagewalk functions
  • Implement kernel crash analysis to identify page fault patterns in memory management code paths
  • Deploy kernel tracing (ftrace, eBPF) to detect concurrent access patterns to numa_maps during VFIO operations
  • Configure kdump/kexec for crash dump collection to enable post-mortem analysis

Monitoring Recommendations

  • Enable kernel panic logging and crash dump collection for affected systems
  • Monitor for elevated VFIO-PCI activity combined with /proc filesystem access patterns
  • Implement system health checks that detect kernel thread crashes in memory management paths
  • Use SentinelOne's kernel-level monitoring capabilities to detect anomalous page table access patterns

How to Mitigate CVE-2026-31456

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the pudp_get() validation fix
  • Review and apply commits from the official kernel git repository addressing this vulnerability
  • Consider temporarily avoiding concurrent numa_maps reads during VFIO-PCI device setup operations
  • Implement system monitoring for kernel crashes to detect exploitation attempts

Patch Information

The vulnerability has been addressed through commits in the stable kernel tree. The fix validates PUD entries using a stable snapshot via pudp_get() in walk_pmd_range() before descending further. If the PUD is not present or is a leaf, the code returns ACTION_AGAIN to retry the walk instead of accessing potentially invalid memory.

Relevant kernel commits:

  • Kernel Git Commit 38ec586
  • Kernel Git Commit 3b89863
  • Kernel Git Commit 9bbbebd

Workarounds

  • Avoid reading /proc/[pid]/numa_maps during VFIO-PCI device initialization with large BAR mappings
  • Implement process isolation to prevent concurrent access to memory introspection interfaces during device passthrough setup
  • Consider using cgroups or other isolation mechanisms to serialize access to affected code paths
  • Deploy kernel live patching solutions if immediate reboot for kernel update is not feasible
bash
# Check current kernel version
uname -r

# Verify if patch is applied by checking commit history
# (requires kernel source or git access)
git log --oneline mm/pagewalk.c | grep -i "fix race"

# Monitor for related kernel crashes
dmesg | grep -E "(walk_pgd_range|walk_pud_range|mm/pagewalk)"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-31466: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31455: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31436: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31523: Linux Kernel Race Condition Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English