CVE-2026-89579
Last modified
CVE-2026-89579 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: bpf: Harden bloom filter sizing and indexing on 32-bit kernels bloom_map_alloc() has two 32-bit-specific problems when the computed bitmap reaches the U32_MAX fallback case. First, BITS_TO_BYTES(U32_MAX) is evaluated with 32-bit arithmetic. The addition performed by DIV_ROUND_UP wraps, so the map allocates only the fixed-size bloom filter object while keeping bitset_mask == U32_MAX. Subsequent updates can then write past the allocated object. Second, fixing only the allocation size is not sufficient. 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: Harden bloom filter sizing and indexing on 32-bit kernels bloom_map_alloc() has two 32-bit-specific problems when the computed bitmap reaches the U32_MAX fallback case. First, BITS_TO_BYTES(U32_MAX) is evaluated with 32-bit arithmetic. The addition performed by DIV_ROUND_UP wraps, so the map allocates only the fixed-size bloom filter object while keeping bitset_mask == U32_MAX. Subsequent updates can then write past the allocated object. Second, fixing only the allocation size is not sufficient. The bloom hash is a u32, but set_bit() takes a signed long bit number and x86 test_bit() eventually feeds the index to variable_test_bit(long, ...). On 32-bit kernels, hashes in [0x80000000, U32_MAX] therefore become negative bit offsets. x86 bt/bts with a memory operand interpret those offsets relative to the supplied base, so a map with bitset_mask == U32_MAX can read or write before bloom->bitset even after allocating the full 512 MiB bitmap. Keep the U32_MAX fallback, but split each hash into a word pointer and an in-word bit number before calling test_bit() or set_bit(). The bitops argument is then always in [0, BITS_PER_LONG - 1], while BIT_WORD(h) still selects the intended word in the full bitmap. Compute the bitset size from (u64)bitset_mask + 1 before passing the final size to bpf_map_area_alloc(). This fixes the original under-allocation and keeps the allocated storage consistent with the addressable bitset. Exploitation note: local privilege escalation is possible on a 32-bit x86 kernel using the under-allocation bug from a binary with CAP_BPF.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 9330986c03006ab1d33d243b7cfe598a7a3c1baa, < a6183bc683f97f4317f7e84939ca7fff37c5688b; >= 9330986c03006ab1d33d243b7cfe598a7a3c1baa, < 80551bf8912c42d1e3d55eec6fa3c40f306c3de8; >= 9330986c03006ab1d33d243b7cfe598a7a3c1baa, < 3b7a13eccfcf97714ffc1ca6aa663d66d4a30e29; >= 9330986c03006ab1d33d243b7cfe598a7a3c1baa, < 272fcb4ba6fab678db0eb966dc81c4c804bef64a; >= 9330986c03006ab1d33d243b7cfe598a7a3c1baa, < dff481e12b3f127739f6a4ea7cef2c25dc12e056; >= 9330986c03006ab1d33d243b7cfe598a7a3c1baa, < 11c1e836710dcba03e50454a4eedfdbaf8d3050e |
| Linux | Linux | 5.16 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89579?
How severe is CVE-2026-89579?
How do I fix CVE-2026-89579?
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-89573In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89574In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89575In the Linux kernel, the following vulnerability has been re…
- 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-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-89581In 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
Are you affected by CVE-2026-89579?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
