Database/Kernel, userspace & hypervisor
Linux io_uring: NOP with IOSQE_FIXED_FILE leaks a struct file reference on every submission
Impact
io_nop() decided between a registered file and a real fget() using its own IORING_NOP_FIXED_FILE flag, while the generic IOSQE_FIXED_FILE sqe flag had already set REQ_F_FIXED_FILE on the request. Submitting a NOP with IOSQE_FIXED_FILE but without IORING_NOP_FIXED_FILE takes a genuine file reference on submit that io_put_file() then declines to drop, so each submission permanently leaks a struct file. Any unprivileged process that can create an io_uring ring can repeat this in a tight loop and exhaust kernel memory on the node. On a shared GPU node that is one tenant pod turning a whole box, and every co-tenant's job on it, into an out-of-memory event, and the box then needs a drain and reboot to recover cleanly.
Who can reach it
Local unprivileged user, including any tenant in a container whose seccomp policy still permits io_uring_setup and io_uring_enter. No special capability or device access is needed.
What to do
Update to a stable kernel carrying the fix and reboot each node; the kernel CNA published three stable commits and no fixed version string, so match the commits below to your branch. If you cannot reboot soon, the standard mitigation applies: block io_uring syscalls for tenant workloads via seccomp, or set kernel.io_uring_disabled=2 on nodes where no workload needs it.
References
Related entries
- Linux kernel (drivers/vfio/pci): The disable_idle_d3 power-management flag was a module-wide global that could changeCVE-2026-64476 · Linux kernel (drivers/vfio/pci)Medium
- Linux kernel (drivers/iommu/intel): SVA bind and unbind are asymmetric on VT-d hardware without PCI/PRI - bind skipsCVE-2026-64591 · Linux kernel (drivers/iommu/intel)Medium
- Linux kernel (arch/x86/kvm/vmx): When a nested VM-Enter fails on invalid guest state, KVM took an open-coded exit pathCVE-2026-68081 · Linux kernel (arch/x86/kvm/vmx)Medium
- AMD SEV-ES (CacheWarp): CacheWarp: INVD lets a malicious hypervisor revert SEV-ES guest memory writes, breaking guestCVE-2023-20592 · AMD SEV-ES (CacheWarp)Medium
- Linux kernel (drivers/pci): When the kernel coalesces two adjacent host-bridge apertures it invalidates the absorbedCVE-2023-53814 · Linux kernel (drivers/pci)Medium
- AMD SEV-SNP (BadRAM): BadRAM: improper validation of DIMM SPD metadata lets an attacker with physical access or ring0CVE-2024-21944 · AMD SEV-SNP (BadRAM)Medium
This entry is curated: imported from vendor advisories with machine assistance, not yet individually verified. Confirm against your vendor's advisory before acting, and report anything wrong.