CVE-2026-64435
Gravedad CVSS v3.1:
ALTA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
25/07/2026
Última modificación:
27/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
audit: Fix data races of skb_queue_len() readers on audit_queue<br />
<br />
Multiple readers access audit_queue.qlen via skb_queue_len() without<br />
holding the queue lock or using READ_ONCE(), while kauditd writes to<br />
this field via the skb_dequeue() → __skb_unlink() path with WRITE_ONCE()<br />
protected by a spinlock. This constitutes data races.<br />
<br />
All affected skb_queue_len(&audit_queue) call sites:<br />
- kauditd_thread() wait_event_freezable() condition<br />
- audit_receive_msg() AUDIT_GET handler (s.backlog assignment)<br />
- audit_receive() backlog check<br />
- audit_log_start() backlog check and pr_warn()<br />
<br />
KCSAN reports the following conflicting access pattern (one example):<br />
==================================================================<br />
BUG: KCSAN: data-race in audit_log_start / skb_dequeue<br />
<br />
write (marked) to 0xffffffff8512ee20 of 4 bytes by task 661 on cpu 57:<br />
skb_dequeue+0x70/0xf0<br />
kauditd_send_queue+0x71/0x220<br />
kauditd_thread+0x1cb/0x430<br />
kthread+0x1c2/0x210<br />
ret_from_fork+0x162/0x1a0<br />
ret_from_fork_asm+0x1a/0x30<br />
<br />
read to 0xffffffff8512ee20 of 4 bytes by task 36586 on cpu 1:<br />
audit_log_start+0x2a0/0x6b0<br />
audit_core_dumps+0x64/0xa0<br />
do_coredump+0x14b/0x1260<br />
get_signal+0xeb2/0xf70<br />
arch_do_signal_or_restart+0x41/0x170<br />
exit_to_user_mode_loop+0xa2/0x1c0<br />
do_syscall_64+0x1a3/0x1c0<br />
entry_SYSCALL_64_after_hwframe+0x76/0xe0<br />
<br />
value changed: 0x00000001 -> 0x00000000<br />
==================================================================<br />
<br />
Resolve the race by switching to lockless helper skb_queue_len_lockless(),<br />
which internally uses READ_ONCE() and properly pairs with the WRITE_ONCE()<br />
write accesses already present on the writer side.<br />
<br />
[PM: line length tweak]
Impacto
Puntuación base 3.x
8.20
Gravedad 3.x
ALTA
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/69f98fff30bdaa72b0cb0e7e078ab6456a0a59b0
- https://git.kernel.org/stable/c/7ff42312ccde549f8c698723822c7db35107a39b
- https://git.kernel.org/stable/c/a3d85dec60bb0622360fc176b2a51abdbe2ff0ad
- https://git.kernel.org/stable/c/b35597bdae1a5d8395da4b9baa993b9b71f74d68
- https://git.kernel.org/stable/c/c5186201fa7030289cc4fe23fae87a3fcb566856
- https://git.kernel.org/stable/c/c9a71daaecb2fb1d8c704545cc0b1c920b9bf5d7
- https://git.kernel.org/stable/c/e575dabb805252e3113fdc3f56f6ecacfde422d0
- https://git.kernel.org/stable/c/fe997a84a385f840b593ead92e575503a5046cee



