- Reported
-
- Issued
-
- Package
-
futures-intrusive
(crates.io)
- Type
-
INFO
Unsound
- Categories
-
- Keywords
-
#concurrency
- Aliases
-
- References
-
- CVSS Score
- 5.5
MEDIUM
- CVSS Details
-
- Attack vector
- Local
- Attack complexity
- Low
- Privileges required
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- None
- Integrity
- None
- Availability
- High
- CVSS Vector
- CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
- Patched
-
Description
GenericMutexGuard<T>
was given the Sync
auto trait as long as T
is Send
due to its contained members. However, since the guard is supposed to represent
an acquired lock and allows concurrent access to the underlying data from
different threads, it should only be Sync
when the underlying data is.
This is a soundness issue and allows data races, potentially leading to crashes
and segfaults from safe Rust code.
The flaw was corrected by adding a T: Send + Sync
bound for
GenericMutexGuard
's Sync
trait.
This bug is similar to one in
std::sync::Mutex
.
Advisory available under CC0-1.0
license.