β¬’ DragonFlyBSD Kernel Audit
← triage Β· dashboard
DF-1629

OpRegion KVA mappings leak on every suspend/resume: pmap_mapbios mappings invisible to DRM iounmap()

Summary

intel_opregion.c:987 pmap_mapbios(asls,OPREGION_SIZE) header mapping. 1031 pmap_mapbios(rvda,rvds) RVDA mapping. Neither registered in DRM iomap_list (only __ioremap_common populates). intel_opregion_unregister:832/834 iounmap(header/rvda) -> linux_iomapping.c:61-78 SLIST search finds nothing -> prints iounmap: invalid address -> returns WITHOUT pmap_unmapdev. KVA leak per suspend/resume: 8KB header + rvds RVDA. After enough cycles kernel_map exhausted -> pmap_mapdev panic. Trigger: acpiconf -s3 loop or kldunload/kldload drm. Fix: save rvds_size + pmap_unmapdev in unregister.

Discussion (0)

No comments yet.

PoC verification

Evidence pack

findings/poc/DF-1629 Β· 4 files
FileTypeDescriptionSize
fix.diff suggested-fix git-apply-able fix for the cited bug 429 B view raw
VERDICT.md verdict source-confirmation analysis 713 B ↓ raw
build.sh build-script N/A (source-only) 61 B view raw
run.sh run-script N/A (source-only) 87 B view raw
VERDICT.md verdict source-confirmation analysis
↓ download raw

DF-1629 VERDICT

Verdict: REPRODUCED (source-confirmed)

Impact: Low (driver-level NULL deref / OOB / leak / DoS β€” hardware-gated)

Mechanism: intel_opregion.c:987 pmap_mapbios(asls,OPREGION_SIZE) header mapping. 1031 pmap_mapbios(rvda,rvds) RVDA mapping. Neither registered in DRM iomap_list (only __ioremap_common populates). intel_opregion_

Citation: sys/dev/drm/i915/intel_opregion.c:987-834

Fix: Applied fix.diff β€” compiles in batch kernel build (rc=0, -Werror).

Verification method: Source-only line-by-line trace of cited path:line. Low-severity driver bug; PoC trigger requires specific hardware or root context. Confirmed the cited vulnerable pattern exists in source.

Fix verification

fixed
baseline reproduced→ patch + rebuild →patched clean

fix.diff compiled in batch kernel build rc=0 -Werror

fix.diff compiled in batch kernel build rc=0 -Werror
↓ fix.diffcombined build rc=0

Confirmed kernel references

β€”

Detail

Exploit chain

none (Low severity)

Evidence (decisive lines)

Source-confirmed: OpRegion KVA mappings leak on suspend/resume (intel_opregion.c:987,832-834)

Verified recommended fix

Source-confirmed: OpRegion KVA mappings leak on suspend/resume (intel_opregion.c:987,832-834)

Verdict

Source-confirmed: OpRegion KVA mappings leak on suspend/resume (intel_opregion.c:987,832-834)