PatchSiren cyber security CVE debrief
CVE-2026-46084 Linux CVE debrief
A vulnerability in the Linux kernel's RDMA/mana_ib driver allows stale RX steering configuration to persist after RSS QP destruction, potentially causing RX completions to be delivered to incorrect TX CQs when the VF interface is subsequently brought up. The fix disables vPort RX steering before destroying RX WQ objects and refactors the disable logic into a shared function.
- 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
Organizations running Linux kernels with MANA (Microsoft Azure Network Adapter) RDMA support, particularly those using DPDK with RSS QPs on Azure VMs. Cloud operators and kernel maintainers responsible for stable branch backports.
Technical summary
The mana_ib_destroy_qp_rss() function in the Linux kernel's RDMA/mana_ib driver destroys RX WQ objects without first disabling vPort RX steering in firmware. This leaves stale steering configuration that continues to reference destroyed RX objects. If traffic arrives while the VF interface is down and the interface is subsequently brought up via mana_open(), the firmware may deliver completions using stale CQ IDs from the old RX objects. These CQ IDs can be reused by the ethernet driver for new TX CQs, causing RX completions to land on TX CQs and triggering warnings in mana_poll_tx_cq() (is_sq == false) and mana_gd_process_eq_events() (cq_table lookup fails). The fix introduces mana_disable_vport_rx() in mana_en, exported for use by mana_ib, to disable RX steering before WQ destruction. The mana_fence_rqs() approach is unsuitable here because fence completions are delivered on CQs polled by user-mode (e.g., DPDK) and are not visible to the kernel driver.
Defensive priority
medium
Recommended defensive actions
- Apply kernel patches from stable branches when available
- Monitor NVD for CVSS scoring updates
- Review DPDK deployments using MANA RDMA for exposure
- Validate VF interface bring-up procedures include proper QP cleanup
Evidence notes
CVE published 2026-05-27. Kernel commit references provided for stable branches. No CVSS score or severity assigned by NVD at time of disclosure.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-46084 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-46084
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-46084 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-46084
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/3be5ed233de03b00ae868cfc06e95331d8d9007c
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/6a2d6273b6c3581ce7b90ce17b5cbb4efd19438f
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/8ba804869382ce307f2a15f5f6f2adfd791f41dc
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/dbeb256e8dd87233d891b170c0b32a6466467036
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/f1ccc4d500a0b87a5599343fc2f798048836e184
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.