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

CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

CVE-2026-46235 is a memory mapping flaw in the Linux kernel saa7164 media driver that could lead to null pointer dereferences. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 28, 2026

CVE-2026-46235 Overview

CVE-2026-46235 is a Linux kernel vulnerability in the saa7164 media driver. The flaw exists in the saa7164_dev_setup() function, which fails to validate the return values of ioremap() calls for BAR0 and BAR2 PCI memory regions. When ioremap() returns NULL on failure, the driver continues execution without releasing allocated PCI memory regions or removing the device from the global list. This creates the conditions for a null pointer dereference and leaks kernel resources on memory mapping failures.

Critical Impact

Failed ioremap() calls in the saa7164 driver lead to null pointer dereferences and resource leaks within the Linux kernel, potentially causing kernel crashes and denial of service on affected systems.

Affected Products

  • Linux Kernel (mainline)
  • Linux Kernel stable branches incorporating the saa7164 media driver
  • Distributions shipping kernels with the unpatched drivers/media/pci/saa7164/saa7164-core.c

Discovery Timeline

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

Technical Details for CVE-2026-46235

Vulnerability Analysis

The vulnerability resides in the saa7164_dev_setup() function within the Linux kernel's saa7164 PCI media capture driver. During device initialization, the driver maps PCI Base Address Registers (BAR0 and BAR2) into kernel virtual address space using ioremap(). The original code did not verify that ioremap() succeeded before using the returned pointers.

When physical memory mapping fails, ioremap() returns NULL. Subsequent driver code dereferences these NULL pointers when accessing device registers, triggering a kernel null pointer dereference [CWE-476]. Beyond the immediate crash, the driver also fails to unwind earlier initialization steps. Allocated PCI memory regions remain reserved, the device stays in the global device list, and the device counter is not decremented.

The patch resolves both issues by adding explicit NULL checks after each ioremap() call. On failure, the fix releases PCI memory regions via the appropriate cleanup path, removes the device from the global list, decrements the device count, and returns -ENODEV to the caller.

Root Cause

The root cause is missing return value validation for kernel memory mapping functions. The saa7164_dev_setup() routine assumed ioremap() would always succeed and proceeded to use the returned virtual addresses without checking for NULL. This is a classic missing error check pattern combined with an incomplete cleanup path on the error branch.

Attack Vector

Triggering this flaw requires conditions that cause ioremap() to fail during saa7164 driver probe. Such conditions include resource exhaustion in the kernel virtual address space, conflicting memory mappings, or hardware fault conditions on the PCI bus. Local attackers with the ability to load drivers or attach affected PCI devices may be able to provoke the failure path, resulting in kernel instability or denial of service. The flaw is not reachable through ordinary unprivileged remote network operations.

The vulnerability manifests in the device initialization path of the saa7164 media driver. Refer to the upstream commits referenced below for the exact code changes:

  • Linux Kernel Patch 3ce8f3057
  • Linux Kernel Patch 6047dc542
  • Linux Kernel Patch 6c22a6d8e
  • Linux Kernel Patch a9b83f46e
  • Linux Kernel Patch d51c60a49

Detection Methods for CVE-2026-46235

Indicators of Compromise

  • Kernel oops or panic logs referencing saa7164_dev_setup or null pointer dereferences inside the saa7164 module.
  • dmesg entries showing failed PCI device probe for saa7164-class capture cards without proper cleanup messages.
  • Repeated device count or PCI region allocation anomalies during driver load attempts.

Detection Strategies

  • Inventory running kernels to identify versions that have not received the patches referenced in the upstream commit list.
  • Audit systems with saa7164-based capture hardware to confirm whether the loaded driver corresponds to a patched build.
  • Correlate kernel crash telemetry against module names in the call trace to identify saa7164-related faults.

Monitoring Recommendations

  • Forward dmesg and /var/log/kern.log to a centralized log store and alert on saa7164 module load failures or kernel oops events.
  • Monitor system reboots and kernel crash dumps on hosts equipped with affected PCI media capture cards.
  • Track kernel package versions across the Linux fleet and flag hosts running pre-patch builds.

How to Mitigate CVE-2026-46235

Immediate Actions Required

  • Apply the latest stable kernel update from your Linux distribution that incorporates the upstream saa7164 ioremap return check patches.
  • On systems without saa7164 hardware, blacklist the saa7164 module to remove the vulnerable code from the active kernel surface.
  • Restrict physical and administrative access to systems with saa7164-class PCI capture cards until patched.

Patch Information

The fix is upstreamed in the Linux kernel via multiple stable backports. Reference commits include 3ce8f3057, 6047dc542, 6c22a6d8e, a9b83f46e, and d51c60a49. Update to the kernel version provided by your distribution vendor that incorporates these commits in drivers/media/pci/saa7164/saa7164-core.c.

Workarounds

  • Blacklist the saa7164 kernel module on hosts that do not require the affected capture hardware.
  • Physically remove or disable saa7164-based PCI cards from production servers until patched kernels are deployed.
  • Limit driver load permissions to trusted administrators to reduce the chance of triggering the vulnerable initialization path.
bash
# Blacklist the saa7164 driver to prevent loading the vulnerable module
echo "blacklist saa7164" | sudo tee /etc/modprobe.d/blacklist-saa7164.conf
sudo depmod -a
sudo update-initramfs -u

# Verify the module is not currently loaded
lsmod | grep saa7164

# Confirm installed kernel version after applying distro update
uname -r

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

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Patch 3ce8f3057

  • Linux Kernel Patch 6047dc542

  • Linux Kernel Patch 6c22a6d8e

  • Linux Kernel Patch a9b83f46e

  • Linux Kernel Patch d51c60a49
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug

  • CVE-2026-46207: Linux Kernel vsock/virtio 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