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

CVE-2026-43262: Linux Kernel Privilege Escalation Flaw

CVE-2026-43262 is a privilege escalation vulnerability in the Linux kernel's GFS2 filesystem that can cause recursive glock issues. This article covers technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43262 Overview

CVE-2026-43262 affects the Linux kernel's Global File System 2 (GFS2) implementation. The flaw resides in gfs2_fiemap(), which calls iomap_fiemap() while holding the inode glock. When the user-supplied fiemap buffer is memory-mapped to the same inode, accessing the buffer triggers a page fault that attempts to acquire the same glock recursively. The condition was originally surfaced by the xfstest generic/742 test case. The upstream fix disables page faults for iomap_fiemap() and faults in the buffer manually when required.

Critical Impact

Local users on systems with GFS2 filesystems can trigger recursive glock acquisition, leading to denial-of-service conditions on affected kernels.

Affected Products

  • Linux kernel — GFS2 filesystem subsystem
  • Stable kernel branches referenced by the upstream commits
  • Distributions shipping vulnerable GFS2 builds prior to backport

Discovery Timeline

  • 2026-05-06 - CVE-2026-43262 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43262

Vulnerability Analysis

The defect is a kernel-level locking flaw in the GFS2 fiemap implementation. gfs2_fiemap() acquires the inode glock and then invokes iomap_fiemap() to populate the caller-provided buffer with extent mapping information. If the caller passes a buffer that is mmap()-backed by the same GFS2 inode, the kernel's copy-out path generates a page fault while the glock is still held. The page fault handler then re-enters GFS2 and attempts to take the same glock, producing a recursive lock-acquisition condition. This is a classic file-system [CWE-667] locking-order violation triggered by user-controlled buffer placement.

Root Cause

The root cause is the absence of page-fault disablement around the iomap_fiemap() copy-out while the inode glock is held. The function assumed the destination buffer would not fault back into the same inode, an assumption that breaks when userspace maps the inode and supplies that mapping as the fiemap target.

Attack Vector

A local, unprivileged user with read access to a GFS2 file can issue an ioctl(FS_IOC_FIEMAP) request whose fm_extents buffer is mmap()-mapped to the same file. The resulting recursive glock attempt stalls the filesystem path on the affected inode and can degrade availability on the cluster node. The vulnerability requires local access and a mounted GFS2 filesystem; no network exposure is involved.

The upstream patch disables page faults around the iomap_fiemap() call and faults the user buffer in by hand when a short copy is detected, breaking the recursive acquisition. See the upstream commits referenced below for implementation specifics, including Linux Kernel Commit 9d15fee and Linux Kernel Commit cead3be.

Detection Methods for CVE-2026-43262

Indicators of Compromise

  • Processes blocked in D state with stacks showing gfs2_glock_nq re-entry from a page-fault path during FS_IOC_FIEMAP handling.
  • Kernel hung_task warnings referencing gfs2_fiemap or iomap_fiemap on hosts mounting GFS2.
  • Sudden unresponsiveness of GFS2-backed mounts following user-issued fiemap ioctls.

Detection Strategies

  • Inventory running kernel versions and compare against the fixed stable releases listed in the upstream commit references.
  • Audit local processes invoking FS_IOC_FIEMAP against files on GFS2 mounts, particularly when the calling process also mmap()s those files.
  • Correlate dmesg lock-up messages with auditd syscall records for ioctl operations on GFS2 inodes.

Monitoring Recommendations

  • Enable kernel lockdep on test systems to surface recursive glock acquisitions before production exposure.
  • Forward /var/log/messages and dmesg output to a centralized log platform and alert on gfs2 hung-task traces.
  • Track filesystem latency per-mount on GFS2 nodes to detect stalls indicative of glock contention.

How to Mitigate CVE-2026-43262

Immediate Actions Required

  • Apply the stable-kernel updates that incorporate the GFS2 fiemap page-fault fix on every cluster node mounting GFS2.
  • Reboot affected hosts after package upgrade so that the patched kernel image is the running kernel.
  • Restrict local shell access on GFS2 cluster members to trusted operational accounts until patching completes.

Patch Information

The fix is delivered through multiple stable-tree backports. Reference commits include Linux Kernel Commit 2e121c5, Linux Kernel Commit 5d2c4f1, Linux Kernel Commit 5d5d9ec, Linux Kernel Commit 9d15fee, Linux Kernel Commit cead3be, Linux Kernel Commit e411d74, and Linux Kernel Commit e428670. Consume the corresponding kernel package from your distribution vendor.

Workarounds

  • Where patching is not yet possible, limit GFS2 mount access to trusted users and constrain local logins on cluster nodes.
  • Block or audit application use of FS_IOC_FIEMAP against mmap()-backed buffers on GFS2 paths through SELinux or seccomp policy.
  • Schedule maintenance windows promptly; no fully equivalent runtime workaround exists for the locking flaw itself.
bash
# Verify running kernel and confirm post-patch version
uname -r
rpm -q kernel || dpkg -l | grep linux-image
# Inspect dmesg for prior recursive-glock indications
dmesg | grep -Ei 'gfs2|hung_task|glock'

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 2e121c5

  • Linux Kernel Commit 5d2c4f1

  • Linux Kernel Commit 5d5d9ec

  • Linux Kernel Commit 9d15fee

  • Linux Kernel Commit cead3be

  • Linux Kernel Commit e411d74

  • Linux Kernel Commit e428670
  • Related CVEs
  • CVE-2026-43347: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43289: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43298: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43463: Linux Kernel Privilege Escalation Bug
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