Database/Kernel, userspace & hypervisor
Linux kernel BPF verifier: map-in-map lookup nullness elided using the wrong max_entries
Impact
An ARRAY_OF_MAPS built on a BPF_F_INNER_MAP template can have the template replaced at runtime by a concrete inner array with a different max_entries. The verifier still reasoned about the inner map using the template, so its const-key nullness elision concluded a lookup could not return NULL, while the runtime helper bounds-checks against the smaller concrete map and returns NULL. The program then dereferences a pointer the verifier promised was non-NULL - a kernel oops, scored AV:L/PR:L with availability impact only. On a GPU node this is a node-availability bug rather than a tenancy bug: BPF map-in-map is loaded by the CNI dataplane and observability agents that sit on every node, so a crash takes down the host and every GPU pod on it. The fix stops eliding nullness for maps flagged BPF_F_INNER_MAP.
Who can reach it
Local: a user or workload able to load BPF programs and create map-in-map objects - CAP_BPF/CAP_SYS_ADMIN, or any context where unprivileged BPF is enabled. An ordinary unprivileged GPU pod cannot reach this unless it has been granted BPF capabilities.
What to do
Take the stable kernel update with the verifier fix (d57db0d97505 and backports), then drain and reboot each node. As an interim control, confirm kernel.unprivileged_bpf_disabled is set and that no tenant workload holds CAP_BPF or CAP_SYS_ADMIN.
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.