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-31466

CVE-2026-31466: Linux Kernel Race Condition Vulnerability

CVE-2026-31466 is a race condition flaw in the Linux kernel's memory management that causes folio locking issues during mTHP splitting. This article covers the technical details, affected versions, and mitigation strategies.

Published: April 23, 2026

CVE-2026-31466 Overview

CVE-2026-31466 is a race condition vulnerability in the Linux kernel's memory management subsystem, specifically affecting the huge memory (Transparent Huge Pages) handling in mm/huge_memory. The vulnerability exists in the softleaf_to_folio() function where a missing memory barrier allows a race condition between folio splitting operations and page table entry zapping, potentially leading to system instability and kernel warnings.

The issue was discovered on arm64 servers where a folio obtained from a migration entry is not properly locked in softleaf_to_folio(). This race condition occurs when mTHP (multi-size Transparent Huge Pages) splitting and zap_nonpresent_ptes() execute concurrently, caused by a missing smp_rmb() memory barrier that should pair with an existing smp_wmb() in __split_folio_to_order().

Critical Impact

Race condition in Linux kernel memory management can trigger VM_WARN_ON_ONCE() or BUG_ON() assertions, potentially causing kernel panics and system instability on arm64 and other architectures using Transparent Huge Pages.

Affected Products

  • Linux kernel versions with mTHP support
  • Systems running arm64 architecture with Transparent Huge Pages enabled
  • Linux kernel versions prior to the security patches (see kernel commit references)

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-31466 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31466

Vulnerability Analysis

This race condition vulnerability occurs in the interaction between two kernel subsystems: the deferred folio splitting mechanism and the page table entry cleanup process. The fundamental issue stems from improper memory ordering between concurrent CPU operations.

When deferred_split_scan() executes on CPU0, it locks a folio and begins the splitting process through split_folio(). This involves unmapping the folio and changing page table entries (PTEs) to migration entries. During __split_folio_to_order(), page flags (including PG_locked) are set for tail pages, followed by an smp_wmb() (write memory barrier) before preparing the compound page structure for tail pages.

Concurrently, on CPU1, zap_nonpresent_ptes() may call softleaf_to_folio() which retrieves a folio from a migration entry. Without a corresponding smp_rmb() (read memory barrier), CPU1 may observe the updated compound_head of a tail page before observing the updated page flags, including the lock state.

This memory ordering violation results in VM_WARN_ON_ONCE(!folio_test_locked(folio)) being triggered in pfn_swap_entry_folio() because the folio appears to be undergoing modification without holding the folio lock. In kernel versions prior to commit 93976a20345b ("mm: eliminate further swapops predicates"), this condition would trigger a BUG_ON(), causing a kernel panic.

Root Cause

The root cause is a missing smp_rmb() memory barrier in softleaf_to_folio() that should pair with the smp_wmb() in __split_folio_to_order(). Memory barriers are essential in concurrent programming to ensure proper ordering of memory operations across multiple CPUs. The smp_wmb() ensures that writes to page flags are visible before writes to the compound page structure. However, without the corresponding smp_rmb() on the reading side, a concurrent reader may observe these writes in a different order, leading to the observed race condition.

Attack Vector

This is a local kernel vulnerability that can be triggered through normal memory management operations on systems using Transparent Huge Pages. The race condition requires specific timing between:

  1. A process triggering deferred folio splitting (memory pressure scenarios)
  2. Concurrent unmapping of memory regions containing migration entries

While this vulnerability primarily manifests as a reliability and stability issue rather than a security exploit, race conditions in kernel memory management can potentially be leveraged for more severe attacks. The condition could be triggered more reliably by:

  • Creating memory pressure to trigger deferred split scans
  • Simultaneously performing memory unmapping operations
  • Running workloads that heavily utilize mTHP on arm64 systems

The race window exists between the setting of page flags in __split_folio_to_order() and the reading of those flags in softleaf_to_folio() without proper memory barrier synchronization.

Detection Methods for CVE-2026-31466

Indicators of Compromise

  • Kernel log messages containing VM_WARN_ON_ONCE warnings related to folio_test_locked failures
  • Kernel warnings in pfn_swap_entry_folio() function
  • Unexpected BUG_ON() kernel panics on older kernel versions (pre-v6.19-rc1)
  • System instability on arm64 servers under memory pressure with THP enabled

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for warnings containing softleaf_to_folio, zap_nonpresent_ptes, or pfn_swap_entry_folio
  • Enable kernel ftrace or perf tracing on memory management functions to detect anomalous race conditions
  • Deploy kernel live patching detection mechanisms to identify systems running vulnerable kernel versions
  • Utilize SentinelOne's kernel-level monitoring to detect memory management anomalies and kernel warning conditions

Monitoring Recommendations

  • Configure syslog alerting for kernel warning messages matching the race condition patterns
  • Implement automated kernel version auditing across infrastructure to identify unpatched systems
  • Monitor system stability metrics on arm64 servers with Transparent Huge Pages enabled
  • Set up crash dump analysis pipelines to capture and analyze any kernel panics related to memory management

How to Mitigate CVE-2026-31466

Immediate Actions Required

  • Update Linux kernel to a patched version containing the memory barrier fix
  • Review and prioritize patching for arm64 servers and systems heavily utilizing Transparent Huge Pages
  • Consider temporarily disabling THP on critical systems until patches can be applied: echo never > /sys/kernel/mm/transparent_hugepage/enabled
  • Monitor affected systems for kernel warnings and instability while awaiting patch deployment

Patch Information

The fix adds the missing smp_rmb() memory barrier in softleaf_to_folio() and softleaf_to_page() when processing migration entries. Multiple kernel stable branches have received patches:

  • Kernel Commit 426ee107
  • Kernel Commit 4c5e7f0f
  • Kernel Commit 722cfaf6
  • Kernel Commit 7ad1997b
  • Kernel Commit 7ddcf4a2
  • Kernel Commit 8bfb8414
  • Kernel Commit b8c49ad8
  • Kernel Commit f1acf588

Workarounds

  • Disable Transparent Huge Pages system-wide as a temporary mitigation until patching is complete
  • Reduce memory pressure scenarios that trigger deferred split scans
  • Consider limiting workloads on affected arm64 systems until patches are deployed
  • Implement kernel live patching solutions where available for faster remediation
bash
# Temporary workaround: Disable Transparent Huge Pages
echo never > /sys/kernel/mm/transparent_hugepage/enabled
echo never > /sys/kernel/mm/transparent_hugepage/defrag

# To make persistent across reboots, add to /etc/rc.local or create systemd service
# Verify THP status
cat /sys/kernel/mm/transparent_hugepage/enabled

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 Change Log Entry 1

  • Kernel Change Log Entry 2

  • Kernel Change Log Entry 3

  • Kernel Change Log Entry 4

  • Kernel Change Log Entry 5

  • Kernel Change Log Entry 6

  • Kernel Change Log Entry 7

  • Kernel Change Log Entry 8
  • Related CVEs
  • CVE-2026-31456: 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