CVE-2025-38439
BaseFortify
Publication date: 2025-07-25
Last updated on: 2025-11-03
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| bnxt | bnxt_en | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is in the Linux kernel's bnxt_en driver related to handling XDP_REDIRECT packets. The issue is that when transmitting such a packet, the function dma_unmap_len_set() was called with an incorrect length value of 0 instead of the proper length. This causes a warning and potential improper handling of DMA unmapping on systems with IOMMU enabled, which could lead to system instability or unexpected behavior.
How can this vulnerability impact me? :
The vulnerability can cause warnings and potentially improper DMA unmapping on systems with IOMMU enabled, which may lead to system instability or crashes when transmitting XDP_REDIRECT packets. This could affect network performance or reliability on affected systems.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring system logs for the specific warning message triggered on systems with IOMMU enabled. Look for the warning: 'WARNING: CPU: ... at drivers/iommu/dma-iommu.c:842 __iommu_dma_unmap+0x159/0x170'. You can use commands like 'dmesg | grep __iommu_dma_unmap' or 'journalctl -k | grep __iommu_dma_unmap' to find occurrences of this warning in kernel logs.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves updating the Linux kernel to a version where this vulnerability is fixed, as the issue is resolved by correctly setting dma_unmap_len for XDP_REDIRECT in the bnxt_en driver. Until an update is applied, monitoring for the warning messages and avoiding workloads that trigger XDP_REDIRECT on affected hardware may reduce risk.