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

CVE-2026-43121: Linux Kernel Race Condition Vulnerability

CVE-2026-43121 is a race condition vulnerability in the Linux kernel's io_uring/zcrx subsystem that can cause memory corruption through double-free errors. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43121 Overview

CVE-2026-43121 is a race condition vulnerability in the Linux kernel's io_uring/zcrx (zero-copy receive) subsystem. The flaw exists in the io_zcrx_put_niov_uref() function, which manipulates the user_refs counter using a non-atomic check-then-decrement pattern. While that path is serialized by rq_lock, the concurrent io_zcrx_scrub() function modifies the same counter via atomic_xchg() without holding rq_lock. The resulting race allows the same niov to be pushed onto the freelist twice, producing a double-free and an out-of-bounds write into adjacent slab memory.

Critical Impact

A successful race triggers a double-free in kernel memory and an out-of-bounds u32 write past the kvmalloc'd freelist, corrupting adjacent slab objects and creating conditions suitable for kernel memory corruption.

Affected Products

  • Linux kernel versions implementing io_uring zero-copy receive (zcrx) functionality
  • SMP (symmetric multiprocessing) Linux systems where the race window is reachable
  • Distributions shipping the affected io_uring/zcrx code prior to the upstream fix

Discovery Timeline

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

Technical Details for CVE-2026-43121

Vulnerability Analysis

The vulnerability resides in the io_uring zero-copy receive (zcrx) reference counting logic. The function io_zcrx_put_niov_uref() reads user_refs with atomic_read() and, if the value is greater than zero, performs a separate atomic_dec(). Although callers of this function are serialized by rq_lock, the io_zcrx_scrub() routine resets the same counter using atomic_xchg(uref, 0) without acquiring rq_lock. The split read and decrement opens a window for another CPU to set the counter to zero between the two operations.

Root Cause

The defect is an atomicity violation [CWE-362-class] in the reference counter handling for network I/O vectors (niov). The check-then-act sequence is not a single atomic transaction. When scrub executes atomic_xchg() after the refill path's atomic_read() but before its atomic_dec(), the decrement wraps the counter to -1 while scrub has already returned the niov to the freelist. The refill path then returns the same niov a second time.

Attack Vector

A local attacker with the ability to use io_uring and trigger zcrx scrub and refill paths concurrently on an SMP system can race the two code paths. The double push of an niov causes free_count to exceed nr_iovs. Subsequent freelist pushes write a u32 value past the end of the kvmalloc'd freelist array into an adjacent slab object, corrupting kernel memory. Refer to the kernel commits referenced below for the exact code paths and the upstream fix.

The vulnerability is described in prose only; see the kernel commit a94f096e28bf for the patch that replaces the non-atomic read-then-decrement with an atomic_try_cmpxchg loop.

Detection Methods for CVE-2026-43121

Indicators of Compromise

  • Kernel oops, BUG, or KASAN reports referencing io_zcrx_put_niov_uref, io_zcrx_scrub, or return_niov_freelist in the call trace
  • Slab corruption messages or slab-out-of-bounds warnings adjacent to io_uring zcrx allocations
  • Unexpected process crashes or kernel panics on workloads that heavily use io_uring zero-copy receive

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) on test and pre-production kernels to surface the out-of-bounds write triggered by this race
  • Audit running kernel versions across the fleet and compare against the patched stable releases referenced in the upstream commits
  • Monitor dmesg and journalctl -k for io_uring-related warnings and ref-count anomalies

Monitoring Recommendations

  • Collect kernel crash dumps with kdump and inspect for double-free patterns in io_uring/zcrx paths
  • Track io_uring syscall usage by unprivileged workloads and flag abnormal volumes from non-trusted users
  • Centralize kernel logs in a SIEM and alert on backtraces containing io_zcrx_* symbols

How to Mitigate CVE-2026-43121

Immediate Actions Required

  • Apply the upstream Linux kernel patches that replace the non-atomic read-then-decrement with an atomic_try_cmpxchg loop in io_zcrx_put_niov_uref()
  • Rebuild and deploy distribution kernel packages once vendors publish backported fixes for supported stable trees
  • Restrict io_uring access for untrusted users where the workload allows, using kernel.io_uring_disabled sysctl

Patch Information

The fix is delivered through the following upstream kernel commits: 003049b1c4fb, 485dc691257b, and a94f096e28bf. The patch makes the test-and-decrement on user_refs a single atomic operation, eliminating the race against atomic_xchg() performed by io_zcrx_scrub() without requiring scrub to acquire rq_lock.

Workarounds

  • Disable io_uring system-wide on kernels that support the toggle: sysctl -w kernel.io_uring_disabled=2
  • Avoid using io_uring zero-copy receive (IORING_OP_RECV_ZC and related zcrx interfaces) until the kernel is patched
  • Apply seccomp filters to block io_uring_setup, io_uring_register, and io_uring_enter for sandboxed or untrusted processes
bash
# Disable io_uring for unprivileged users until patched kernel is deployed
sysctl -w kernel.io_uring_disabled=2
echo 'kernel.io_uring_disabled=2' >> /etc/sysctl.d/99-io-uring.conf

# Verify current kernel version against patched stable trees
uname -r

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 Message

  • Kernel Git Commit Message

  • Kernel Git Commit Message
  • Related CVEs
  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

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

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

  • CVE-2026-31700: 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