PatchSiren cyber security CVE debrief
CVE-2026-45882 Linux CVE debrief
A use-after-free vulnerability in the Linux kernel's Qualcomm PM8916 Battery Management System (BMS) driver could allow system crashes or memory corruption. The flaw stems from incorrect devm_ resource ordering where the IRQ handler could execute with a freed or uninitialized power_supply handle during driver probe or removal.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- HIGH 7.8
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-05-27
- Original CVE updated
- 2026-06-25
- Advisory published
- 2026-05-27
- Advisory updated
- 2026-06-25
Who should care
Linux kernel maintainers, embedded/IoT device manufacturers using Qualcomm PM8916 PMIC, Android device vendors, distribution security teams
Technical summary
The pm8916_bms_vm driver used devm_request_irq() before devm_power_supply_register(), causing reverse-order deallocation during driver removal. This created a race where an interrupt could fire after power_supply handle was freed but before IRQ handler was unregistered, leading to use-after-free in power_supply_changed(). A similar race existed during probe() where interrupts could fire before power_supply registration completed. The fix reorders resource allocation to register power_supply before requesting IRQ.
Defensive priority
high
Recommended defensive actions
- Apply kernel patches from stable branches (5.15.y, 5.10.y, 5.4.y, 4.19.y) via distribution security updates
- Verify pm8916_bms_vm driver is not loaded on affected systems if patching is delayed
- Monitor system logs for kernel oops/panic traces referencing power_supply_changed or pm8916_bms_vm
- Review custom kernel builds for devm_ resource ordering in power supply drivers
Evidence notes
Official CVE record published 2026-05-27. Kernel commit references confirm fix backported to stable branches. No CVSS score assigned by NVD at time of disclosure.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-45882 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-45882
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-45882 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-45882
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/17db6b3abd823c9fba3f3413c4f0f432d99d49dc
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/62914959b35e9a1e29cc0f64cb8cfc5075a5366f
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/a8b7117ae3a791c6a328674d05a06cd45d8241bd
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/b69bb88e20c6f8e998dff3e13a316207f49d3fa2
416baaa9-dc9f-4396-8d5f-8c081fb06d67
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.