CVE-2026-89581
Last modified
CVE-2026-89581 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: bpf, x86: Fix per-CPU address resolution into an extended register The destination of the per-CPU address MOV is encoded in ModRM.reg, which is extended by REX.R, but the REX prefix is built with add_1mod(), which sets REX.B. REX.B extends ModRM.rm and SIB.base, and this instruction addresses memory as disp32 with no base, so the bit has no effect at all and the high register bit is simply lost. Every is_ereg() destination therefore resolves to the wrong register, picking whichever one shares the low three bits: R5 -> RAX R7 -> RBP R8 -> RSI R9 -> RDI With BPF_REG_5, whose reg2hex is 0, the emitted 65 49 03 04 25 <off> add %gs:<off>,%rax adds the per-CPU offset to RAX rather than R8. EPSS estimates a 0.17% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: bpf, x86: Fix per-CPU address resolution into an extended register The destination of the per-CPU address MOV is encoded in ModRM.reg, which is extended by REX.R, but the REX prefix is built with add_1mod(), which sets REX.B. REX.B extends ModRM.rm and SIB.base, and this instruction addresses memory as disp32 with no base, so the bit has no effect at all and the high register bit is simply lost. Every is_ereg() destination therefore resolves to the wrong register, picking whichever one shares the low three bits: R5 -> RAX R7 -> RBP R8 -> RSI R9 -> RDI With BPF_REG_5, whose reg2hex is 0, the emitted 65 49 03 04 25 <off> add %gs:<off>,%rax adds the per-CPU offset to RAX rather than R8. The destination keeps the unadjusted address and RAX is clobbered, so the program goes on to dereference a pointer that was never made per-CPU: BUG: unable to handle page fault for address: 0000607e386a8894 RIP: bpf_prog_707837aafd2aa9ae_update_percpu_data+0x93/0xc9 Call Trace: __bpf_prog_test_run_raw_tp+0x2dc/0x7d0 __flush_smp_call_function_queue+0x1e9/0xc80 Kernel panic - not syncing: Fatal exception in interrupt R5 is the mildest of the four, aliasing a scratch register and faulting at the store. R7 aliases RBP and would corrupt the frame pointer, R8 and R9 alias the argument registers. Use add_2mod() so the register goes through REX.R, matching how add_2reg() places it in ModRM.reg and how emit_priv_frame_ptr() hardcodes 0x4c for the same instruction with R9. Encodings for the non-extended registers are unchanged. Problem showed up when trying to resurrect BPF_GCC CI (selftests built with BPF_GCC). This has gone unnoticed because clang reloads the address into R1 before each per-CPU access, so the destination is never an extended register. GCC keeps several per-CPU addresses live at once, and test_progs-bpf_gcc panics the kernel in global_percpu_data/init, where the address of a .percpu variable ends up in R5.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 7bdbf7446305cb65c510c16d57cde82bc76b234a, < 638bc3aada8ecdece184d5c15b100d489c9cccd7; >= 7bdbf7446305cb65c510c16d57cde82bc76b234a, < 6886642414f59f928728802dc2c972a9859e6310; >= 7bdbf7446305cb65c510c16d57cde82bc76b234a, < 6a19b18d458881bf3269a357cc6dc6db5eef4369; >= 7bdbf7446305cb65c510c16d57cde82bc76b234a, < 5bbbce02e500d47d8e259a45be5a7be9741d0533 |
| Linux | Linux | 6.10 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89581?
How severe is CVE-2026-89581?
How do I fix CVE-2026-89581?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-89576In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89577In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89578In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89579In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-8958Information disclosure, sandbox escape in the Security: Proc…8.6
- CVE-2026-89580In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89582In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89583In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-89584In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89585In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89586In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-89587In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-89581?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
