PT-2026-64697 · Linux · Linux

CVE-2026-64476

·

Published

2026-07-25

·

Updated

2026-07-25

None

No severity ratings or metrics are available. When they are, we'll update the corresponding info on the page.
In the Linux kernel, the following vulnerability has been resolved:
vfio/pci: Latch disable idle d3 per device
When disable idle d3 was introduced in vfio-pci, it directly manipulated the device power state with pci set power state(). There were no refcounts to maintain or balanced operations, we could unconditionally bring the device to D0 and conditionally move it to D3hot. Therefore the module parameter was made writable.
Later, in commit c61302aa48f7 ("vfio/pci: Move module parameters to vfio pci.c"), as part of the vfio-pci-core split, the writable aspect of the module parameter was nullified. The parameter value could still be changed through sysfs, but the vfio-pci driver latched the values into vfio-pci-core globals at module init. Loading the vfio-pci module, or unloading and reloading, with non-default or different values could change the globals relative to existing devices bound to vfio-pci variant drivers.
Runtime PM was introduced in commit 7ab5e10eda02 ("vfio/pci: Move the unused device into low power state with runtime PM"), which marks the point where power states became refcounted. PM get and put operations need to be balanced, but the same module operations noted above can change the global variables relative to those devices already bound to vfio-pci variant drivers. This introduces a window where PM operations can now become unbalanced.
To resolve this with a narrow footprint for stable backports, the disable idle d3 flag is latched into the vfio pci core device at the time of initialization, such that the device always operates with a consistent value.
NB. vfio pci dev set try reset() now unconditionally raises the runtime PM usage count around bus reset to account for disable idle d3 becoming a per-device rather than global flag. When this flag is set, the additional get/put pair is harmless and allows continued use of the shared vfio pci dev set pm runtime get() helper.
Found an issue in the description? Have something to add? Feel free to write us 👾

Related Identifiers

CVE-2026-64476

Affected Products

Linux