CVE-2026-43282 Overview
CVE-2026-43282 is a NULL pointer dereference vulnerability in the Linux kernel's RDMA/ionic driver. The flaw exists in the ionic_query_port() function, which calls ib_device_get_netdev() without validating the returned pointer. When the function returns NULL, subsequent dereferences trigger a kernel oops that can crash the affected system.
The issue has been resolved upstream by adding a NULL check on the ndev pointer and returning -ENODEV when no network device is associated with the InfiniBand device. The fix has been merged into the stable Linux kernel tree.
Critical Impact
Local triggering of this NULL pointer dereference in the RDMA/ionic driver can cause a denial-of-service condition through a kernel panic on systems using Pensando ionic RDMA hardware.
Affected Products
- Linux kernel versions containing the RDMA/ionic driver prior to the patch
- Systems using AMD Pensando ionic RDMA-capable network adapters
- Stable kernel branches receiving the backported fix
Discovery Timeline
- 2026-05-06 - CVE-2026-43282 published to NVD
- 2026-05-06 - Last updated in NVD database
Technical Details for CVE-2026-43282
Vulnerability Analysis
The vulnerability resides in the ionic_query_port() function within the Linux kernel's RDMA/ionic driver. This driver supports Remote Direct Memory Access (RDMA) operations on AMD Pensando ionic network adapters. The function is invoked when querying port attributes of an InfiniBand-capable device.
The defective code path calls ib_device_get_netdev() to retrieve the associated network device structure. The returned pointer is consumed without verifying it is non-NULL. When the underlying network device is unavailable or has been removed, ib_device_get_netdev() returns NULL, and the subsequent dereference produces a kernel-mode NULL pointer access.
This class of issue is tracked under [CWE-476: NULL Pointer Dereference]. In kernel context, such dereferences typically result in an oops, potentially escalating to a panic depending on kernel configuration and lockdep state.
Root Cause
The root cause is missing return-value validation. The original implementation of ionic_query_port() assumed ib_device_get_netdev() would always return a valid pointer. The patch introduces an explicit NULL check and returns -ENODEV to propagate a clean error to userspace callers instead of crashing the kernel.
Attack Vector
Triggering the condition requires interaction with the RDMA subsystem on a host running the vulnerable driver. A local user with the ability to issue RDMA queries against an ionic device, or a race involving network device teardown during port queries, can reach the unchecked pointer path. The result is a denial-of-service rather than memory corruption or privilege escalation.
No public exploit code is available, and the vulnerability has not been observed in active exploitation. Refer to the Kernel Git Commit Fix for the precise source-level change.
Detection Methods for CVE-2026-43282
Indicators of Compromise
- Kernel oops or panic messages referencing ionic_query_port in dmesg or /var/log/kern.log
- Stack traces containing ib_device_get_netdev immediately preceding a NULL pointer dereference
- Unexpected reboots on hosts equipped with AMD Pensando ionic RDMA adapters
Detection Strategies
- Inventory hosts running kernels that include the RDMA/ionic driver and compare against the patched commit hashes published on git.kernel.org.
- Monitor kernel logs for crash signatures involving the ionic_rdma or ib_core modules.
- Use configuration management tooling to confirm the running kernel version matches a release containing the upstream fix.
Monitoring Recommendations
- Forward kernel ring-buffer events to a centralized log platform and alert on BUG: unable to handle and Oops strings tied to the ionic driver.
- Track host availability metrics for RDMA-enabled systems to surface crash-restart loops.
- Validate that vendor-supplied kernel updates from distribution maintainers are applied within the standard patch SLA.
How to Mitigate CVE-2026-43282
Immediate Actions Required
- Apply the upstream fix from the Linux stable tree referenced by commits 2b96156c927c, 81932a46dfd0, and fd80bd7105f8.
- Update to a distribution kernel package that incorporates the patched ionic_query_port() implementation.
- Restrict local access on hosts running unpatched kernels with ionic RDMA hardware until updates are deployed.
Patch Information
The fix is available across multiple stable branches. See Kernel Git Commit Changes, Kernel Git Commit Fix, and Kernel Git Commit Update. Distribution vendors typically backport these commits to their long-term support kernels.
Workarounds
- Unload the ionic_rdma kernel module on systems where RDMA functionality is not required, using modprobe -r ionic_rdma.
- Blacklist the module in /etc/modprobe.d/ to prevent automatic loading until a patched kernel is installed.
- Limit which local users can issue RDMA verbs through standard Linux capability and namespace controls.
# Verify running kernel and blacklist ionic_rdma until patched
uname -r
lsmod | grep ionic
echo "blacklist ionic_rdma" | sudo tee /etc/modprobe.d/blacklist-ionic-rdma.conf
sudo modprobe -r ionic_rdma
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


