目標達成 すべての支援者に感謝 — 100%達成しました!

目標: 1000 CNY · 調達済み: 1336 CNY

100%

CVE-2026-64352— bpf: 允许睡眠态BPF程序访问LPM映射漏洞

AI Predicted 5.5 Difficulty: Theoretical EPSS 0.17% · P7

Affected Version Matrix 16

ベンダープロダクトVersion Rangeステータス
LinuxLinux694cea395fded425008e93cd90cfdf7a451674af< f0967d4f1ba4323a3cb7dc8fdba74dd3a8caaf04affected
694cea395fded425008e93cd90cfdf7a451674af< 304ca50582f0c047370f85e13caec456f78c9fccaffected
694cea395fded425008e93cd90cfdf7a451674af< ec662a8b2cde01e76b37ccd4b992d0342299e69caffected
694cea395fded425008e93cd90cfdf7a451674af< 9bfdf4b81b0e56d47bc6c46c34a46638be716695affected
694cea395fded425008e93cd90cfdf7a451674af< 57454944737f3ad9a8703aecbbb79713b513a94baffected
694cea395fded425008e93cd90cfdf7a451674af< bd6ad9a6b30498d845413e863fb95c6fab3babe3affected
694cea395fded425008e93cd90cfdf7a451674af< 2f884d371fafea137afea504d49ee4a7c8d7985baffected
5.14affected
… +8 more rows
新しい脆弱性情報の通知を購読するログインして購読

I. CVE-2026-64352の基本情報

脆弱性情報

脆弱性についてご質問がありますか?Shenlongの分析が参考になるかご確認ください!
Shenlongの10の質問を表示 ↗

高度な大規模言語モデル技術を使用していますが、出力には不正確または古い情報が含まれる可能性があります。Shenlongはデータの正確性を確保するよう努めていますが、実際の状況に基づいて検証・判断してください。

脆弱性タイトル
bpf: Allow LPM map access from sleepable BPF programs
ソース: CVE Program / CVE List V5
脆弱性説明
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.
ソース: CVE Program / CVE List V5
CVSS情報
N/A
ソース: CVE Program / CVE List V5
脆弱性タイプ
N/A
ソース: CVE Program / CVE List V5

影響を受ける製品

ベンダープロダクト影響を受けるバージョンCPE購読
LinuxLinux 694cea395fded425008e93cd90cfdf7a451674af ~ f0967d4f1ba4323a3cb7dc8fdba74dd3a8caaf04 -
LinuxLinux 5.14 -

II. CVE-2026-64352の公開POC

#POC説明ソースリンクShenlongリンク
AI生成POCプレミアム

公開POCは見つかりませんでした。

ログインしてAI POCを生成

III. CVE-2026-64352のインテリジェンス情報

登录查看更多情报信息。

CVE-2026-64352 补丁与修复 (7)

Same Patch Batch · Linux · 2026-07-25 · 274 CVEs total

CVE-2026-64340USB: legousbtower: fix use-after-free on disconnect race
CVE-2026-64357xfs: fix exchmaps reservation limit check
CVE-2026-64358media: mtk-jpeg: cancel workqueue on release for supported platforms only
CVE-2026-64356xfs: fix memory leak in xfs_dqinode_metadir_create()
CVE-2026-64354bpf: Validate BTF repeated field counts before expansion
CVE-2026-64355bpf: Reject fragmented frames in devmap
CVE-2026-64353bpf: Keep dynamic inner array lookups nullable
CVE-2026-64351net: usb: kalmia: bound RX frame length in kalmia_rx_fixup()
CVE-2026-64350usb: cdnsp: fix stream context array leak in cdnsp_alloc_stream_info()
CVE-2026-64349usb: dwc3: fix dwc3_readl() and dwc3_writel() calls in dwc3_ulpi_setup()
CVE-2026-64348usb: free iso schedules on failed submit
CVE-2026-64347usb: gadget: composite: fix dead empty check in the USB_DT_OTG handler
CVE-2026-64346usb: gadget: udc: Fix use-after-free in gadget_match_driver
CVE-2026-64345usb: gadget: f_printer: take kref only for successful open
CVE-2026-64344USB: idmouse: fix use-after-free on disconnect race
CVE-2026-64343USB: ldusb: fix use-after-free on disconnect race
CVE-2026-64341USB: iowarrior: fix use-after-free on disconnect race
CVE-2026-64342USB: iowarrior: fix use-after-free on disconnect
CVE-2026-64331usbip: vudc: fix NULL deref in vep_dequeue()
CVE-2026-64328usb: gadget: f_fs: Fix DMA fence leak

Showing 20 of 274 CVEs. View all on vendor page →

IV. 関連脆弱性

V. CVE-2026-64352へのコメント

まだコメントはありません


コメントを残す