0.0
NA
CVE-2026-64352
bpf: Allow LPM map access from sleepable BPF programs
Description

In the Linux kernel, the following vulnerability has been resolved: bpf: Allow LPM map access from sleepable BPF programs trie_lookup_elem() annotates its rcu_dereference_check() walks with only rcu_read_lock_bh_held(). Because rcu_dereference_check(p, c) resolves to "c || rcu_read_lock_held()", this passes for XDP/NAPI and classic RCU readers but fails for sleepable BPF programs, which enter via __bpf_prog_enter_sleepable() and hold only rcu_read_lock_trace(). trie_update_elem() and trie_delete_elem() have the same problem in a different form: they walk the trie with plain rcu_dereference(), which asserts rcu_read_lock_held() unconditionally. Both are reachable from sleepable BPF programs via the bpf_map_update_elem / bpf_map_delete_elem helpers, and from the syscall path under classic rcu_read_lock(). In the writer paths the trie is actually protected by trie->lock (an rqspinlock taken across the walk); we never relied on the RCU read-side lock to keep nodes alive there. A sleepable LSM hook that ends up touching an LPM trie therefore triggers lockdep on debug kernels: ============================= WARNING: suspicious RCU usage 7.1.0-... Tainted: G E ----------------------------- kernel/bpf/lpm_trie.c:249 suspicious rcu_dereference_check() usage! 1 lock held by net_tests/540: #0: (rcu_tasks_trace_srcu_struct){....}-{0:0}, at: __bpf_prog_enter_sleepable+0x26/0x280 Call Trace: dump_stack_lvl lockdep_rcu_suspicious trie_lookup_elem bpf_prog_..._enforce_security_socket_connect bpf_trampoline_... security_socket_connect __sys_connect do_syscall_64 This is lockdep-only -- no UAF, since Tasks Trace RCU does serialize against the trie's reclaim path -- but it spams the console once per distinct callsite on every debug kernel running a sleepable BPF LSM that touches an LPM trie, which is increasingly common. For the lookup path, switch the rcu_dereference_check() annotation from rcu_read_lock_bh_held() to bpf_rcu_lock_held(), which accepts all three contexts (classic, BH, Tasks Trace). Other map types already follow this convention. For trie_update_elem() and trie_delete_elem(), annotate the walks as rcu_dereference_protected(*p, 1) -- matching trie_free() in the same file -- since trie->lock is held across the walk. rqspinlock has no lockdep_map, so the predicate degenerates to '1' rather than lockdep_is_held(&trie->lock); the protection is real but not machine-verifiable. trie_get_next_key() also uses bare rcu_dereference() but is reachable only from the BPF syscall, which holds classic rcu_read_lock() before dispatching, so it is left untouched.

INFO

Published Date :

July 25, 2026, 10:17 a.m.

Last Modified :

Aug. 17, 2026, 5:17 a.m.

Remotely Exploit :

No

Source :

416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Products

The following products are affected by CVE-2026-64352 vulnerability. Even if cvefeed.io is aware of the exact versions of the products that are affected, the information is not represented in the table below.

ID Vendor Product Action
1 Linux linux_kernel
Solution
Update the Linux kernel to a version that resolves the RCU usage issue in BPF programs.
  • Update the Linux kernel to the latest stable version.
  • Apply patches specifically addressing BPF and RCU usage.
  • Verify RCU lock annotations in relevant kernel modules.
  • Test BPF functionality after kernel updates.
CWE - Common Weakness Enumeration

While CVE identifies specific instances of vulnerabilities, CWE categorizes the common flaws or weaknesses that can lead to vulnerabilities. CVE-2026-64352 is associated with the following CWEs:

Common Attack Pattern Enumeration and Classification (CAPEC)

Common Attack Pattern Enumeration and Classification (CAPEC) stores attack patterns, which are descriptions of the common attributes and approaches employed by adversaries to exploit the CVE-2026-64352 weaknesses.

We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).

Results are limited to the first 15 repositories due to potential performance issues.

The following list is the news that have been mention CVE-2026-64352 vulnerability anywhere in the article.

The following table lists the changes that have been made to the CVE-2026-64352 vulnerability over time.

Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.

  • CVE Modified by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    Aug. 17, 2026

    Action Type Old Value New Value
    Changed Affected [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'f0967d4f1ba4323a3cb7dc8fdba74dd3a8caaf04', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '304ca50582f0c047370f85e13caec456f78c9fcc', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'ec662a8b2cde01e76b37ccd4b992d0342299e69c', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '9bfdf4b81b0e56d47bc6c46c34a46638be716695', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '57454944737f3ad9a8703aecbbb79713b513a94b', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'bd6ad9a6b30498d845413e863fb95c6fab3babe3', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '2f884d371fafea137afea504d49ee4a7c8d7985b', 'versionType': 'git'}], 'programFiles': ['kernel/bpf/lpm_trie.c'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '5.14'}, {'status': 'unaffected', 'version': '0', 'lessThan': '5.14', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '5.15.212', 'versionType': 'semver', 'lessThanOrEqual': '5.15.*'}, {'status': 'unaffected', 'version': '6.1.178', 'versionType': 'semver', 'lessThanOrEqual': '6.1.*'}, {'status': 'unaffected', 'version': '6.6.145', 'versionType': 'semver', 'lessThanOrEqual': '6.6.*'}, {'status': 'unaffected', 'version': '6.12.97', 'versionType': 'semver', 'lessThanOrEqual': '6.12.*'}, {'status': 'unaffected', 'version': '6.18.40', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.4', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2-rc1', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['kernel/bpf/lpm_trie.c'], 'defaultStatus': 'affected'}] [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'f0967d4f1ba4323a3cb7dc8fdba74dd3a8caaf04', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '304ca50582f0c047370f85e13caec456f78c9fcc', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'ec662a8b2cde01e76b37ccd4b992d0342299e69c', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '9bfdf4b81b0e56d47bc6c46c34a46638be716695', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '57454944737f3ad9a8703aecbbb79713b513a94b', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'bd6ad9a6b30498d845413e863fb95c6fab3babe3', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '2f884d371fafea137afea504d49ee4a7c8d7985b', 'versionType': 'git'}], 'programFiles': ['kernel/bpf/lpm_trie.c'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '5.14'}, {'status': 'unaffected', 'version': '0', 'lessThan': '5.14', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '5.15.212', 'versionType': 'semver', 'lessThanOrEqual': '5.15.*'}, {'status': 'unaffected', 'version': '6.1.178', 'versionType': 'semver', 'lessThanOrEqual': '6.1.*'}, {'status': 'unaffected', 'version': '6.6.145', 'versionType': 'semver', 'lessThanOrEqual': '6.6.*'}, {'status': 'unaffected', 'version': '6.12.97', 'versionType': 'semver', 'lessThanOrEqual': '6.12.*'}, {'status': 'unaffected', 'version': '6.18.40', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.4', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['kernel/bpf/lpm_trie.c'], 'defaultStatus': 'affected'}]
  • New CVE Received by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    Jul. 25, 2026

    Action Type Old Value New Value
    Added Affected [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'f0967d4f1ba4323a3cb7dc8fdba74dd3a8caaf04', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '304ca50582f0c047370f85e13caec456f78c9fcc', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'ec662a8b2cde01e76b37ccd4b992d0342299e69c', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '9bfdf4b81b0e56d47bc6c46c34a46638be716695', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '57454944737f3ad9a8703aecbbb79713b513a94b', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': 'bd6ad9a6b30498d845413e863fb95c6fab3babe3', 'versionType': 'git'}, {'status': 'affected', 'version': '694cea395fded425008e93cd90cfdf7a451674af', 'lessThan': '2f884d371fafea137afea504d49ee4a7c8d7985b', 'versionType': 'git'}], 'programFiles': ['kernel/bpf/lpm_trie.c'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '5.14'}, {'status': 'unaffected', 'version': '0', 'lessThan': '5.14', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '5.15.212', 'versionType': 'semver', 'lessThanOrEqual': '5.15.*'}, {'status': 'unaffected', 'version': '6.1.178', 'versionType': 'semver', 'lessThanOrEqual': '6.1.*'}, {'status': 'unaffected', 'version': '6.6.145', 'versionType': 'semver', 'lessThanOrEqual': '6.6.*'}, {'status': 'unaffected', 'version': '6.12.97', 'versionType': 'semver', 'lessThanOrEqual': '6.12.*'}, {'status': 'unaffected', 'version': '6.18.40', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.4', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2-rc1', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['kernel/bpf/lpm_trie.c'], 'defaultStatus': 'affected'}]
    Added Description In the Linux kernel, the following vulnerability has been resolved: bpf: Allow LPM map access from sleepable BPF programs trie_lookup_elem() annotates its rcu_dereference_check() walks with only rcu_read_lock_bh_held(). Because rcu_dereference_check(p, c) resolves to "c || rcu_read_lock_held()", this passes for XDP/NAPI and classic RCU readers but fails for sleepable BPF programs, which enter via __bpf_prog_enter_sleepable() and hold only rcu_read_lock_trace(). trie_update_elem() and trie_delete_elem() have the same problem in a different form: they walk the trie with plain rcu_dereference(), which asserts rcu_read_lock_held() unconditionally. Both are reachable from sleepable BPF programs via the bpf_map_update_elem / bpf_map_delete_elem helpers, and from the syscall path under classic rcu_read_lock(). In the writer paths the trie is actually protected by trie->lock (an rqspinlock taken across the walk); we never relied on the RCU read-side lock to keep nodes alive there. A sleepable LSM hook that ends up touching an LPM trie therefore triggers lockdep on debug kernels: ============================= WARNING: suspicious RCU usage 7.1.0-... Tainted: G E ----------------------------- kernel/bpf/lpm_trie.c:249 suspicious rcu_dereference_check() usage! 1 lock held by net_tests/540: #0: (rcu_tasks_trace_srcu_struct){....}-{0:0}, at: __bpf_prog_enter_sleepable+0x26/0x280 Call Trace: dump_stack_lvl lockdep_rcu_suspicious trie_lookup_elem bpf_prog_..._enforce_security_socket_connect bpf_trampoline_... security_socket_connect __sys_connect do_syscall_64 This is lockdep-only -- no UAF, since Tasks Trace RCU does serialize against the trie's reclaim path -- but it spams the console once per distinct callsite on every debug kernel running a sleepable BPF LSM that touches an LPM trie, which is increasingly common. For the lookup path, switch the rcu_dereference_check() annotation from rcu_read_lock_bh_held() to bpf_rcu_lock_held(), which accepts all three contexts (classic, BH, Tasks Trace). Other map types already follow this convention. For trie_update_elem() and trie_delete_elem(), annotate the walks as rcu_dereference_protected(*p, 1) -- matching trie_free() in the same file -- since trie->lock is held across the walk. rqspinlock has no lockdep_map, so the predicate degenerates to '1' rather than lockdep_is_held(&trie->lock); the protection is real but not machine-verifiable. trie_get_next_key() also uses bare rcu_dereference() but is reachable only from the BPF syscall, which holds classic rcu_read_lock() before dispatching, so it is left untouched.
    Added Reference https://git.kernel.org/stable/c/2f884d371fafea137afea504d49ee4a7c8d7985b
    Added Reference https://git.kernel.org/stable/c/304ca50582f0c047370f85e13caec456f78c9fcc
    Added Reference https://git.kernel.org/stable/c/57454944737f3ad9a8703aecbbb79713b513a94b
    Added Reference https://git.kernel.org/stable/c/9bfdf4b81b0e56d47bc6c46c34a46638be716695
    Added Reference https://git.kernel.org/stable/c/bd6ad9a6b30498d845413e863fb95c6fab3babe3
    Added Reference https://git.kernel.org/stable/c/ec662a8b2cde01e76b37ccd4b992d0342299e69c
    Added Reference https://git.kernel.org/stable/c/f0967d4f1ba4323a3cb7dc8fdba74dd3a8caaf04
EPSS is a daily estimate of the probability of exploitation activity being observed over the next 30 days. Following chart shows the EPSS score history of the vulnerability.