CVE-2026-46127
Null Pointer Dereference in Linux Kernel RDMA/ocrdma
Publication date: 2026-05-28
Last updated on: 2026-05-28
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's RDMA ocrdma driver. Specifically, the issue is that the pd->uctx pointer is not initialized until late in the function ocrdma_copy_pd_uresp(). However, error handling code in this function references pd->uctx before it is initialized, which means it dereferences a NULL pointer. This causes the kernel to crash.
The fix involves using a uctx pointer that is guaranteed not to be NULL during error handling, preventing the NULL pointer dereference and subsequent crash.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash due to a NULL pointer dereference in the RDMA ocrdma driver when certain error conditions occur. A kernel crash can lead to system instability, downtime, and potential data loss.