The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-31514

CVE-2026-31514: Linux Kernel EROFS Short Read Vulnerability

CVE-2026-31514 is a short read handling flaw in Linux Kernel EROFS that causes incorrect folio marking when IO requests are interrupted. This article covers the technical details, affected versions, impact, and mitigation.

Updated: May 16, 2026

CVE-2026-31514 Overview

CVE-2026-31514 is a medium-severity vulnerability in the Linux kernel's EROFS (Enhanced Read-Only File System) implementation. The flaw resides in the file-backed mount path, where vfs_iocb_iter_read() handles I/O requests on behalf of the read-ahead routine erofs_fileio_readahead(). When the read is interrupted by a SIGKILL signal, the function returns the number of bytes actually copied, leaving unused folios in the bio incorrectly marked as uptodate. This results in data integrity issues and potential kernel state corruption affecting availability on file-backed EROFS mounts. The vulnerability requires local access with low privileges and no user interaction.

Critical Impact

A local user can trigger inconsistent kernel page cache state on EROFS file-backed mounts through SIGKILL-interrupted reads, leading to high availability impact.

Affected Products

  • Linux Kernel (mainline) with EROFS file-backed mount support
  • Linux Kernel stable branches prior to commits 5a5f23ef, 5cf3972c, d1ba7d6b, and eade5404
  • Distributions packaging affected kernel versions with EROFS enabled

Discovery Timeline

  • 2026-04-22 - CVE-2026-31514 published to NVD
  • 2026-04-28 - Last updated in NVD database

Technical Details for CVE-2026-31514

Vulnerability Analysis

The vulnerability affects the EROFS file-backed mount read path in the Linux kernel. EROFS uses vfs_iocb_iter_read() to service read I/O against a backing file rather than a block device. This call chain is reachable through vfs_read → filemap_read → filemap_get_pages → filemap_readahead → erofs_fileio_readahead → erofs_fileio_rq_submit.

When the underlying filemap_read inside vfs_iocb_iter_read() detects a pending SIGKILL, it aborts and returns the partial byte count already copied. The completion handler erofs_fileio_ki_complete does not differentiate between full success and a short read. It marks every folio attached to the bio as uptodate, including folios that were never populated with valid data.

Subsequent reads of the affected pages from the page cache return stale or zeroed contents that the kernel believes are valid. This breaks read-only file system integrity guarantees and can cause processes consuming the data to behave incorrectly or crash. The vulnerability is classified under [CWE-noinfo] pending further analysis.

Root Cause

The root cause is missing error propagation in erofs_fileio_ki_complete for short read completions. The completion path assumes that a non-error return from vfs_iocb_iter_read() implies all requested folios were fully populated. SIGKILL-induced short reads violate this assumption, but the bio is still completed as if successful. The fix sets the short read bio with an error directly, preventing unused folios from being marked uptodate.

Attack Vector

Exploitation requires local access on a system that has mounted an EROFS image using file-backed mount. An unprivileged local user issues read requests against the EROFS mount and arranges for SIGKILL delivery during the read-ahead window. The race between the signal and bio completion causes the kernel to cache invalid folio contents. The attack vector is local with low attack complexity and no user interaction required, but the impact is limited to availability of processes relying on the affected mount.

The vulnerability is described in prose only — no public proof-of-concept code is available. Refer to the upstream kernel commits for the canonical fix and technical details.

Detection Methods for CVE-2026-31514

Indicators of Compromise

  • Kernel log entries referencing EROFS read errors, folio inconsistencies, or unexpected page cache states on file-backed EROFS mounts
  • Application crashes or checksum mismatches when reading files from EROFS mounts after processes receive SIGKILL
  • Repeated SIGKILL signals delivered to processes performing reads on EROFS-mounted content

Detection Strategies

  • Inventory all hosts running Linux kernels with EROFS file-backed mount enabled and compare installed versions against the patched commits
  • Audit kernel build configurations for CONFIG_EROFS_FS and file-backed mount support to scope exposure
  • Correlate dmesg output with process termination events to identify suspicious SIGKILL patterns targeting EROFS readers

Monitoring Recommendations

  • Enable kernel audit rules for unusual signal delivery to user processes accessing EROFS file-backed mounts
  • Monitor /proc/mounts for EROFS file-backed mounts on production systems and alert on unexpected additions
  • Track kernel package versions across the fleet and flag systems running unpatched builds

How to Mitigate CVE-2026-31514

Immediate Actions Required

  • Identify systems running affected Linux kernel versions with EROFS file-backed mount in use
  • Apply the upstream kernel patches referenced by commits 5a5f23ef, 5cf3972c, d1ba7d6b, and eade5404 via vendor-supplied stable kernel updates
  • Restrict local shell access on systems mounting untrusted EROFS images until patches are deployed

Patch Information

The fix is committed upstream and backported to stable kernel branches. Apply vendor kernel updates that include one of the following commits: Kernel Git Commit 5a5f23ef, Kernel Git Commit 5cf3972c, Kernel Git Commit d1ba7d6b, and Kernel Git Commit eade5404. The patch modifies erofs_fileio_ki_complete to set the bio status to error when a short read occurs.

Workarounds

  • Avoid using EROFS file-backed mounts on multi-user systems until the patched kernel is deployed
  • Use block-device-backed EROFS mounts rather than file-backed mounts where feasible
  • Limit local user access and constrain the ability to send SIGKILL to processes reading EROFS content

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit 5a5f23ef

  • Kernel Git Commit 5cf3972c

  • Kernel Git Commit d1ba7d6b

  • Kernel Git Commit eade5404
  • Related CVEs
  • CVE-2026-43343: Linux Kernel USB Gadget Vulnerability

  • CVE-2026-43307: Linux Kernel FIFO Read Overflow Vulnerability

  • CVE-2026-43352: Linux Kernel DMA Ring Abort Vulnerability

  • CVE-2026-43308: Linux Kernel BUG Error Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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