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

CVE-2026-43141: Linux Kernel NTB Shift Vulnerability

CVE-2026-43141 is a shift-out-of-bounds flaw in the Linux kernel NTB Switchtec driver that occurs when MW LUT count is zero. This post covers the technical details, affected versions, security impact, and mitigation.

Published: May 7, 2026

CVE-2026-43141 Overview

CVE-2026-43141 is a Linux kernel vulnerability in the ntb_hw_switchtec driver. The flaw is a shift-out-of-bounds condition triggered when the number of Memory Window Lookup Tables (MW LUTs) is configured to zero. Under that configuration, the driver invokes rounddown_pow_of_two on a zero value, which produces undefined behavior. The Non-Transparent Bridge (NTB) hardware switch driver is used to enable PCIe-based communication between independent host systems. Kernel maintainers have resolved the issue by ensuring rounddown_pow_of_two is only called on valid, non-zero values.

Critical Impact

A zero-value MW LUT configuration triggers undefined behavior in the kernel driver, potentially leading to system instability or denial of service on hosts using Switchtec NTB hardware.

Affected Products

  • Linux kernel versions containing the ntb_hw_switchtec driver prior to the fix commits
  • Systems using Microsemi/Microchip Switchtec PCIe switches with NTB functionality
  • Distributions shipping affected stable kernel branches referenced in the patch series

Discovery Timeline

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

Technical Details for CVE-2026-43141

Vulnerability Analysis

The vulnerability resides in the Switchtec NTB hardware driver (ntb_hw_switchtec) within the Linux kernel. The driver determines the number of available MW LUTs based on NTB configuration values supplied by the underlying hardware. When this count is zero, the driver still passes the value to rounddown_pow_of_two, a kernel helper that rounds an integer down to the nearest power of two.

The rounddown_pow_of_two macro is undefined for an input of zero. Internally it relies on bit-shift operations whose shift amount becomes negative or out of range when the input is zero. This produces a shift-out-of-bounds condition that the Undefined Behavior Sanitizer (UBSAN) flags at runtime.

The fix adds a guard so rounddown_pow_of_two is invoked only when the MW LUT count is non-zero. This prevents the undefined behavior path from executing during driver initialization on hardware configurations that expose zero MW LUTs.

Root Cause

The root cause is missing input validation before performing a power-of-two reduction. The driver assumed the LUT count would always be a positive integer, but the NTB configuration permits a value of zero. Calling rounddown_pow_of_two(0) evaluates a left-shift by a negative count, which is undefined behavior in C.

Attack Vector

The trigger requires a specific NTB hardware configuration in which the number of MW LUTs is zero. An attacker would generally need local access or the ability to influence NTB configuration to reach the vulnerable code path. The primary observed impact is kernel-level undefined behavior during driver initialization, which can manifest as instability on affected hosts.

The vulnerability is described in prose only because no public proof-of-concept exploit has been released. Refer to the upstream patches for technical specifics, including Kernel Patch Commit 186615f and Kernel Patch Commit d652ef3.

Detection Methods for CVE-2026-43141

Indicators of Compromise

  • UBSAN warnings in kernel logs referencing shift-out-of-bounds originating from ntb_hw_switchtec
  • Kernel stack traces during module load that include rounddown_pow_of_two and Switchtec NTB initialization functions
  • Unexpected reboots or instability on hosts equipped with Switchtec PCIe switches configured for NTB

Detection Strategies

  • Inventory kernels running across the fleet and compare build versions against the fixed commits in the upstream stable branches
  • Enable CONFIG_UBSAN_SHIFT on test kernels to surface the undefined behavior during driver load
  • Audit hosts that load ntb_hw_switchtec and verify their NTB MW LUT configuration

Monitoring Recommendations

  • Forward dmesg and journald kernel logs to a centralized logging or SIEM platform and alert on UBSAN entries
  • Track loaded kernel modules across servers and flag systems still running unpatched ntb_hw_switchtec
  • Monitor host availability and crash telemetry for systems using Switchtec NTB hardware

How to Mitigate CVE-2026-43141

Immediate Actions Required

  • Apply the upstream kernel patches that guard rounddown_pow_of_two against zero-valued MW LUT counts
  • Update to a kernel build that includes the fix from your distribution vendor
  • Restrict local access on systems using Switchtec NTB hardware until the patched kernel is deployed

Patch Information

The fix is distributed across multiple stable branches. Relevant commits include Kernel Patch Commit 186615f, Kernel Patch Commit 1a867d0, Kernel Patch Commit 2e4d5e8, Kernel Patch Commit 5590cd0, Kernel Patch Commit a11d03d, Kernel Patch Commit a133e3c, Kernel Patch Commit d0559d0, and Kernel Patch Commit d652ef3. The patch ensures rounddown_pow_of_two is invoked only on valid non-zero values.

Workarounds

  • Blacklist the ntb_hw_switchtec kernel module on systems that do not require Switchtec NTB functionality
  • Reconfigure NTB hardware to expose a non-zero number of MW LUTs where supported by the platform
  • Limit physical and administrative access to hosts running affected kernels until patches are applied
bash
# Configuration example
# Prevent the affected driver from loading until the patched kernel is deployed
echo "blacklist ntb_hw_switchtec" | sudo tee /etc/modprobe.d/blacklist-ntb-switchtec.conf
sudo update-initramfs -u

# Verify the running kernel and module status
uname -r
lsmod | grep ntb_hw_switchtec

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Commit 186615f

  • Kernel Patch Commit 1a867d0

  • Kernel Patch Commit 2e4d5e8

  • Kernel Patch Commit 5590cd0

  • Kernel Patch Commit a11d03d

  • Kernel Patch Commit a133e3c

  • Kernel Patch Commit d0559d0

  • Kernel Patch Commit d652ef3
  • 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