PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-45933 Linux CVE debrief

A logic flaw in the Linux kernel's BPF verifier allows incorrect register ID propagation during bounds synchronization, potentially enabling unsafe code paths including division by zero. The vulnerability exists in sync_linked_regs() which incorrectly copies BPF_ADD_CONST state when propagating bounds between linked registers, causing subsequent register links to break and preventing proper bounds propagation. This can lead to the verifier incorrectly approving unsafe BPF programs that should have been rejected.

Vendor
Linux
Product
Unknown
CVSS
HIGH 7.8
CISA KEV
Not listed in stored evidence
Original CVE published
2026-05-27
Original CVE updated
2026-06-24
Advisory published
2026-05-27
Advisory updated
2026-06-24

Who should care

Linux system administrators, kernel security teams, organizations running containerized workloads with BPF support, and security researchers tracking kernel verifier vulnerabilities

Technical summary

The BPF verifier's sync_linked_regs() function propagates bounds from a known register to linked registers but incorrectly copies the BPF_ADD_CONST flag along with the bounds. When a register with BPF_ADD_CONST is later copied to another register, assign_scalar_id_before_mov() assigns a new ID instead of preserving the existing link. This breaks the chain of register relationships, preventing subsequent bounds updates from propagating correctly. The demonstrated impact is a division by zero that passes verification due to stale bounds information. The fix preserves the original register ID during synchronization, maintaining proper register relationships throughout verification.

Defensive priority

high

Recommended defensive actions

  • Apply kernel updates containing the fix for CVE-2026-45933 to affected systems
  • Verify running kernel version includes commit 58059335e46537de682db84984f7716c813208c4 or equivalent backports
  • Review systems allowing unprivileged BPF for exposure assessment
  • Monitor for kernel security advisories from distribution maintainers

Evidence notes

The vulnerability was resolved in the Linux kernel with a fix that preserves register ID in sync_linked_regs() alongside off and subreg_def fields. The issue was demonstrated through a selftest showing how broken register links allowed a division by zero to pass verification. Multiple stable kernel branches received patches.

Sources and references

Verified primary and authoritative sources

  • CVE-2026-45933 CVE Program record

    Publisher, destination, and source semantics verified

    URL: https://www.cve.org/CVERecord?id=CVE-2026-45933

    CVE Program - Official CVE Program record with source-provided CVE metadata.

  • CVE-2026-45933 NVD vulnerability detail

    Publisher, destination, and source semantics verified

    URL: https://nvd.nist.gov/vuln/detail/CVE-2026-45933

    NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.

Supplemental references

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/58059335e46537de682db84984f7716c813208c4

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/65d114b5270b62aefb820ecd6c3b7caeea8f895d

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/92a8cb1806adefb263cf096eab6705705cf7eee1

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/af9e89d8dd39530c8bd14c33ddf6b502df1071b6

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

Methodology and review provenance

AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.