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)
PoC verification
Evidence pack
findings/poc/DF-1608 Β· 4 files| File | Type | Description | Size | |
|---|---|---|---|---|
| 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 |
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
fixedfix.diff compiled in batch kernel build rc=0 -Werror
fix.diff compiled in batch kernel build rc=0 -Werror
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)
No comments yet.