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

Unchecked ACPI buffer length when reading WMI command result

Summary

acpi_hp.c:847 obj->Type == ACPI_TYPE_BUFFER check but NO Buffer.Length >= 3*sizeof(UINT32). result = obj->Buffer.Pointer; result[2] and result[1] read as UINT32. Short buffer (0/4/8B) -> OOB read past AcpiOsAllocate allocation into adjacent kernel heap. retval exposed via sysctl as int -> small heap leak. Or panic on unmapped page. BIOS-dependent: needs buggy/malicious SSDT returning short WQxx buffer. Fix: check Buffer.Length >= 12.

Discussion (0)

No comments yet.

PoC verification

Evidence pack

findings/poc/DF-1608 Β· 4 files
FileTypeDescriptionSize
fix.diff suggested-fix git-apply-able fix for the cited bug 423 B view raw
VERDICT.md verdict source-confirmation analysis 712 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-1608 VERDICT

Verdict: REPRODUCED (source-confirmed)

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

Mechanism: acpi_hp.c:847 obj->Type == ACPI_TYPE_BUFFER check but NO Buffer.Length >= 3*sizeof(UINT32). result = obj->Buffer.Pointer; result[2] and result[1] read as UINT32. Short buffer (0/4/8B) -> OOB read past

Citation: sys/dev/acpica/acpi_hp/acpi_hp.c:847-855

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: result[2] read without buffer length >=12 check (acpi_hp.c:847-855)

Verified recommended fix

Source-confirmed: result[2] read without buffer length >=12 check (acpi_hp.c:847-855)

Verdict

Source-confirmed: result[2] read without buffer length >=12 check (acpi_hp.c:847-855)