Answer in brief
CVE-2026-45944 records a Unknown severity vulnerability in iommu/vt-d: Clear Present bit before tearing down context entry. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=ba39592764ed20cee09aae5352e603a27bf56b0d <c716a59e9977d751e5eb54bcfa6a80124cb5067b || >=ba39592764ed20cee09aae5352e603a27bf56b0d <d2138abc8f0a7fce4101b7229b43b06811ed083d || >=ba39592764ed20cee09aae5352e603a27bf56b0d <a922dbafb4a674d958d702038232d09a30daf770 || >=ba39592764ed20cee09aae5352e603a27bf56b0d <c1e4f1dccbe9d7656d1c6872ebeadb5992d0aaa2 | c716a59e9977d751e5eb54bcfa6a80124cb5067b, d2138abc8f0a7fce4101b7229b43b06811ed083d, a922dbafb4a674d958d702038232d09a30daf770, c1e4f1dccbe9d7656d1c6872ebeadb5992d0aaa2 |
| Linux/Linuxgeneric | 2.6.24 | Not reported |
Published upstream
May 27, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: iommu/vt-d: Clear Present bit before tearing down context entry When tearing down a context entry, the current implementation zeros the entire 128-bit entry using multiple 64-bit writes. This creates a window where the hardware can fetch a "torn" entry — where some fields are already zeroed while the 'Present' bit is still set — leading to unpredictable behavior or spurious faults. While x86 provides strong write ordering, the compiler may reorder writes to the two 64-bit halves of the context entry. Even without compiler reordering, the hardware fetch is not guaranteed to be atomic with respect to multiple CPU writes. Align with the "Guidance to Software for Invalidations" in the VT-d spec (Section 6.5.3.3) by implementing the recommended ownership handshake: 1. Clear only the 'Present' (P) bit of the context entry first to signal the transition of ownership from hardware to software. 2. Use dma_wmb() to ensure the cleared bit is visible to the IOMMU. 3. Perform the required cache and context-cache invalidation to ensure hardware no longer has cached references to the entry. 4. Fully zero out the entry only after the invalidation is complete. Also, add a dma_wmb() to context_set_present() to ensure the entry is fully initialized before the 'Present' bit becomes visible.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-45944 records a Unknown severity vulnerability in iommu/vt-d: Clear Present bit before tearing down context entry. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=ba39592764ed20cee09aae5352e603a27bf56b0d <c716a59e9977d751e5eb54bcfa6a80124cb5067b || >=ba39592764ed20cee09aae5352e603a27bf56b0d <d2138abc8f0a7fce4101b7229b43b06811ed083d || >=ba39592764ed20cee09aae5352e603a27bf56b0d <a922dbafb4a674d958d702038232d09a30daf770 || >=ba39592764ed20cee09aae5352e603a27bf56b0d <c1e4f1dccbe9d7656d1c6872ebeadb5992d0aaa2 | c716a59e9977d751e5eb54bcfa6a80124cb5067b, d2138abc8f0a7fce4101b7229b43b06811ed083d, a922dbafb4a674d958d702038232d09a30daf770, c1e4f1dccbe9d7656d1c6872ebeadb5992d0aaa2 |
| Linux/Linuxgeneric | 2.6.24 | Not reported |
Published upstream
May 27, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: iommu/vt-d: Clear Present bit before tearing down context entry When tearing down a context entry, the current implementation zeros the entire 128-bit entry using multiple 64-bit writes. This creates a window where the hardware can fetch a "torn" entry — where some fields are already zeroed while the 'Present' bit is still set — leading to unpredictable behavior or spurious faults. While x86 provides strong write ordering, the compiler may reorder writes to the two 64-bit halves of the context entry. Even without compiler reordering, the hardware fetch is not guaranteed to be atomic with respect to multiple CPU writes. Align with the "Guidance to Software for Invalidations" in the VT-d spec (Section 6.5.3.3) by implementing the recommended ownership handshake: 1. Clear only the 'Present' (P) bit of the context entry first to signal the transition of ownership from hardware to software. 2. Use dma_wmb() to ensure the cleared bit is visible to the IOMMU. 3. Perform the required cache and context-cache invalidation to ensure hardware no longer has cached references to the entry. 4. Fully zero out the entry only after the invalidation is complete. Also, add a dma_wmb() to context_set_present() to ensure the entry is fully initialized before the 'Present' bit becomes visible.
Quoted source text, attributed separately from HOL analysis.