A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-46209

CVE-2026-46209: Linux Kernel Privilege Escalation Flaw

CVE-2026-46209 is a privilege escalation vulnerability in the Linux kernel's DRM GEM subsystem that causes memory corruption through inconsistent plane dimension calculations. This article covers technical details, impact, and mitigation.

Published: May 28, 2026

CVE-2026-46209 Overview

CVE-2026-46209 is a Linux kernel vulnerability in the Direct Rendering Manager (DRM) Graphics Execution Manager (GEM) framebuffer subsystem. The flaw resides in drm_gem_fb_init_with_funcs(), which calculates sub-sampled plane dimensions using plain integer division instead of DIV_ROUND_UP(). This inconsistency corrupts the subsequent GEM object size check for specific pixel format and dimension combinations. An attacker who can submit crafted framebuffer parameters can trigger an integer underflow, allowing a small GEM object to pass size validation while the GPU later accesses memory beyond the object's bounds.

Critical Impact

The size-check bypass enables out-of-bounds memory access by the GPU when processing chroma planes, leading to potential kernel memory corruption or information disclosure.

Affected Products

  • Linux kernel (DRM GEM framebuffer subsystem)
  • Distributions shipping vulnerable drm_gem_fb_init_with_funcs() implementations
  • Systems using sub-sampled pixel formats such as NV12

Discovery Timeline

  • 2026-05-28 - CVE-2026-46209 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46209

Vulnerability Analysis

The vulnerability stems from inconsistent arithmetic between two code paths that validate framebuffer dimensions. drm_gem_fb_init_with_funcs() computes sub-sampled plane width and height using plain integer division:

unsigned int width  = mode_cmd->width  / (i ? info->hsub : 1);
unsigned int height = mode_cmd->height / (i ? info->vsub : 1);

However, the ioctl-level framebuffer_check() in drm_framebuffer.c uses drm_format_info_plane_width() and drm_format_info_plane_height(), which round dimensions up via DIV_ROUND_UP(). The two functions disagree for dimensions that do not divide evenly by the sub-sampling factor.

Root Cause

For NV12 format with a vertical sub-sampling factor (vsub=2) and a 1-pixel-tall framebuffer, the GEM size validation path computes height = 1 / 2 = 0 instead of the expected rounded-up value of 1. The expression (height - 1) then wraps to UINT_MAX as an unsigned integer. This causes min_size to overflow and wrap back to a small value. A tiny GEM object therefore satisfies the size guard despite being insufficient to back the chroma plane.

Attack Vector

A local user with access to the DRM device node can submit a crafted DRM_IOCTL_MODE_ADDFB2 request specifying a sub-sampled pixel format combined with a non-aligned dimension. When the kernel subsequently programs the GPU to access the under-allocated chroma plane, the hardware reads or writes memory beyond the GEM object's allocation. The fix replaces the open-coded divisions with drm_format_info_plane_width() and drm_format_info_plane_height(), aligning the calculations with framebuffer_check().

Detection Methods for CVE-2026-46209

Indicators of Compromise

  • Unexpected GPU faults, page faults, or DMA errors logged in dmesg referencing DRM or GEM subsystems
  • Kernel oops or KASAN reports involving drm_gem_fb_init_with_funcs or related framebuffer paths
  • Unprivileged processes repeatedly issuing DRM_IOCTL_MODE_ADDFB2 with unusual format and dimension combinations

Detection Strategies

  • Audit kernel build versions across the fleet to identify hosts running pre-patch drm_gem_fb code
  • Enable kernel address sanitizer (KASAN) or KFENCE in test environments to surface out-of-bounds GEM access
  • Review auditd records for ioctl calls against /dev/dri/card* from non-graphical user accounts

Monitoring Recommendations

  • Forward kernel ring buffer events to a centralized log platform and alert on DRM and GPU fault patterns
  • Track package and kernel update status across Linux endpoints to confirm patch deployment
  • Correlate process telemetry with DRM device access to detect anomalous use of the graphics stack

How to Mitigate CVE-2026-46209

Immediate Actions Required

  • Apply the upstream Linux kernel patches that replace the open-coded divisions with drm_format_info_plane_width() and drm_format_info_plane_height()
  • Update to a distribution kernel that incorporates the stable backport for your release branch
  • Restrict access to /dev/dri/* device nodes to trusted user groups where graphics access is not required

Patch Information

The fix has been merged into the mainline Linux kernel and backported to stable branches. Refer to the upstream commits: Kernel.org Commit 1a17ea98, Kernel.org Commit 1da4ab71, Kernel.org Commit 3d4c2268, Kernel.org Commit 6b992591, and Kernel.org Commit c5fc49d8.

Workarounds

  • Tighten permissions on DRM device nodes to limit ioctl access to trusted accounts and services
  • Disable or unload graphics drivers on headless servers where DRM functionality is not required
  • Apply mandatory access control profiles (SELinux, AppArmor) to restrict which processes can call DRM ioctls
bash
# Verify running kernel version and DRM device permissions
uname -r
ls -l /dev/dri/
# Restrict DRM device access to the video group only
chgrp video /dev/dri/card*
chmod 0660 /dev/dri/card*

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
  • Kernel.org Commit Patch 1

  • Kernel.org Commit Patch 2

  • Kernel.org Commit Patch 3

  • Kernel.org Commit Patch 4

  • Kernel.org Commit Patch 5
  • Related CVEs
  • CVE-2026-46238: Linux Kernel Privilege Escalation Flaw

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

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

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