CVE-2025-68260: rust_binder: fix race condition on death_list
lore.kernel.org·4h·
Discuss: Hacker News
🦀Rust Scientific
Preview
Report Post
* CVE-2025-68260: rust_binder: fix race condition on death_list
@ 2025-12-16 14:45 Greg Kroah-Hartman
0 siblings, 0 replies; only message in thread
From: Greg Kroah-Hartman @ 2025-12-16 14:45 UTC (permalink / raw)
To: linux-cve-announce; +Cc: Greg Kroah-Hartman

From: Greg Kroah-Hartman <gregkh@kernel.org>

Description
===========

In the Linux kernel, the following vulnerability has been resolved:

rust_binder: fix race condition on death_list

Rust Binder contains the following unsafe operation:

// SAFETY: A `NodeDeath` is never inserted into the death list
// of any node other than its owner, so it is either in this
// death list or in no death list.
unsafe { node_inner.death_list.remove(self) };

This operation is unsafe because when touching the prev/next pointers of
a list eleme...

Similar Posts

Loading similar posts...